From da290fa2baf9dc3244034ce50e6247ae43ef0c5c Mon Sep 17 00:00:00 2001 From: Venkat Ragavan <50309787+venkatr21@users.noreply.github.com> Date: Wed, 27 Nov 2024 10:05:25 +0530 Subject: [PATCH] [Azure Load Testing] Add NOT_VALIDATED to list of terminal states (#47329) * Add not validated to list of terminal states * update SDK version * unreleased version --------- Co-authored-by: Venkat Ragavan S --- sdk/loadtestservice/Azure.Developer.LoadTesting/CHANGELOG.md | 3 ++- .../src/Azure.Developer.LoadTesting.csproj | 2 +- .../src/FileUploadResultOperation.cs | 1 + 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/sdk/loadtestservice/Azure.Developer.LoadTesting/CHANGELOG.md b/sdk/loadtestservice/Azure.Developer.LoadTesting/CHANGELOG.md index 677d614ead98f..b1bbb8b11681e 100644 --- a/sdk/loadtestservice/Azure.Developer.LoadTesting/CHANGELOG.md +++ b/sdk/loadtestservice/Azure.Developer.LoadTesting/CHANGELOG.md @@ -1,6 +1,6 @@ # Release History -## 1.1.0-beta.1 (Unreleased) +## 1.0.2 (Unreleased) ### Features Added @@ -9,6 +9,7 @@ ### Bugs Fixed ### Other Changes +- Add NOT_VALIDATED to the list of terminal states for the file validation poller. ## 1.0.1 (2023-03-11) diff --git a/sdk/loadtestservice/Azure.Developer.LoadTesting/src/Azure.Developer.LoadTesting.csproj b/sdk/loadtestservice/Azure.Developer.LoadTesting/src/Azure.Developer.LoadTesting.csproj index 7909176cc8cec..588e4d4bea81d 100644 --- a/sdk/loadtestservice/Azure.Developer.LoadTesting/src/Azure.Developer.LoadTesting.csproj +++ b/sdk/loadtestservice/Azure.Developer.LoadTesting/src/Azure.Developer.LoadTesting.csproj @@ -2,7 +2,7 @@ This is the LoadTestService client library for developing .NET applications with rich experience. Azure SDK Code Generation LoadTestService for Azure Data Plane - 1.1.0-beta.1 + 1.0.2 1.0.1 Azure LoadTestService diff --git a/sdk/loadtestservice/Azure.Developer.LoadTesting/src/FileUploadResultOperation.cs b/sdk/loadtestservice/Azure.Developer.LoadTesting/src/FileUploadResultOperation.cs index 0d4fde87e89a8..513450da10321 100644 --- a/sdk/loadtestservice/Azure.Developer.LoadTesting/src/FileUploadResultOperation.cs +++ b/sdk/loadtestservice/Azure.Developer.LoadTesting/src/FileUploadResultOperation.cs @@ -29,6 +29,7 @@ public class FileUploadResultOperation : Operation { "VALIDATION_SUCCESS", "VALIDATION_FAILURE", + "NOT_VALIDATED", "VALIDATION_NOT_REQUIRED" };