Microsoft.LoadTestService (preview:2024-07-01)

2025/01/24 • 2 updated methods

TestProfileRunAdministration_ListTestProfileRuns (updated)
Description Get all test profile runs for the given filters.
Reference Link ¶

⚶ Changes

{
  "#id": "TestProfileRunAdministration_ListTestProfileRuns",
  "$parameters": [
    {
      "#name": "testProfileRunIds",
      "Type": {
        "new": "array",
        "old": "string"
      }
    },
    {
      "#name": "testProfileIds",
      "Type": {
        "new": "array",
        "old": "string"
      }
    },
    {
      "#name": "statuses",
      "Type": {
        "new": "array",
        "old": "string"
      }
    }
  ]
}

⚼ Request

GET:  /test-profile-runs
{
api-version: string ,
maxpagesize: integer ,
minStartDateTime: string ,
maxStartDateTime: string ,
minEndDateTime: string ,
maxEndDateTime: string ,
createdDateStartTime: string ,
createdDateEndTime: string ,
testProfileRunIds: array ,
testProfileIds: array ,
statuses: array ,
}

⚐ Response (200)

{
value:
[
{
testProfileRunId: string ,
displayName: string ,
description: string ,
testProfileId: string ,
targetResourceId: string ,
targetResourceConfigurations:
{
kind: enum ,
}
,
status: enum ,
errorDetails:
[
{
message: string ,
}
,
]
,
startDateTime: string ,
endDateTime: string ,
durationInSeconds: integer ,
testRunDetails: object ,
recommendations:
[
{
category: enum ,
configurations:
[
string ,
]
,
}
,
]
,
createdDateTime: string ,
createdBy: string ,
lastModifiedDateTime: string ,
lastModifiedBy: string ,
}
,
]
,
nextLink: string ,
}

⚐ Response (default)

{
$headers:
{
x-ms-error-code: string ,
}
,
$schema:
{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
innererror:
{
code: string ,
innererror: string ,
}
,
}
,
}
,
}
TestProfileAdministration_ListTestProfiles (updated)
Description Get all test profiles for the given filters.
Reference Link ¶

⚶ Changes

{
  "#id": "TestProfileAdministration_ListTestProfiles",
  "$parameters": [
    {
      "#name": "testProfileIds",
      "Type": {
        "new": "array",
        "old": "string"
      }
    }
  ]
}

⚼ Request

GET:  /test-profiles
{
api-version: string ,
maxpagesize: integer ,
lastModifiedStartTime: string ,
lastModifiedEndTime: string ,
testProfileIds: array ,
testIds: string ,
}

⚐ Response (200)

{
value:
[
{
testProfileId: string ,
displayName: string ,
description: string ,
testId: string ,
targetResourceId: string ,
targetResourceConfigurations:
{
kind: enum ,
}
,
createdDateTime: string ,
createdBy: string ,
lastModifiedDateTime: string ,
lastModifiedBy: string ,
}
,
]
,
nextLink: string ,
}

⚐ Response (default)

{
$headers:
{
x-ms-error-code: string ,
}
,
$schema:
{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
innererror:
{
code: string ,
innererror: string ,
}
,
}
,
}
,
}