Share via


LoadTestAdministrationClient.GetTestProfiles Method

Definition

Overloads

GetTestProfiles(Nullable<DateTimeOffset>, Nullable<DateTimeOffset>, IEnumerable<String>, IEnumerable<String>, RequestContext)

Source:
LoadTestAdministrationClient.cs

[Protocol Method] List test profiles.

public virtual Azure.Pageable<BinaryData> GetTestProfiles(DateTimeOffset? lastModifiedStartTime, DateTimeOffset? lastModifiedEndTime, System.Collections.Generic.IEnumerable<string> testProfileIds, System.Collections.Generic.IEnumerable<string> testIds, Azure.RequestContext context);
abstract member GetTestProfiles : Nullable<DateTimeOffset> * Nullable<DateTimeOffset> * seq<string> * seq<string> * Azure.RequestContext -> Azure.Pageable<BinaryData>
override this.GetTestProfiles : Nullable<DateTimeOffset> * Nullable<DateTimeOffset> * seq<string> * seq<string> * Azure.RequestContext -> Azure.Pageable<BinaryData>
Public Overridable Function GetTestProfiles (lastModifiedStartTime As Nullable(Of DateTimeOffset), lastModifiedEndTime As Nullable(Of DateTimeOffset), testProfileIds As IEnumerable(Of String), testIds As IEnumerable(Of String), context As RequestContext) As Pageable(Of BinaryData)

Parameters

lastModifiedStartTime
Nullable<DateTimeOffset>

Start DateTime(RFC 3339 literal format) of the last updated time range to filter test profiles.

lastModifiedEndTime
Nullable<DateTimeOffset>

End DateTime(RFC 3339 literal format) of the last updated time range to filter test profiles.

testProfileIds
IEnumerable<String>

Comma separated list of IDs of the test profiles to filter.

testIds
IEnumerable<String>

Comma separated list IDs of the tests which should be associated with the test profiles to fetch.

context
RequestContext

The request context, which can override default behaviors of the client pipeline on a per-call basis.

Returns

The Pageable<T> from the service containing a list of BinaryData objects. Details of the body schema for each item in the collection are in the Remarks section below.

Exceptions

Service returned a non-success status code.

Applies to

GetTestProfiles(Nullable<DateTimeOffset>, Nullable<DateTimeOffset>, IEnumerable<String>, IEnumerable<String>, CancellationToken)

Source:
LoadTestAdministrationClient.cs

List test profiles.

public virtual Azure.Pageable<Azure.Developer.LoadTesting.TestProfile> GetTestProfiles(DateTimeOffset? lastModifiedStartTime = default, DateTimeOffset? lastModifiedEndTime = default, System.Collections.Generic.IEnumerable<string> testProfileIds = default, System.Collections.Generic.IEnumerable<string> testIds = default, System.Threading.CancellationToken cancellationToken = default);
abstract member GetTestProfiles : Nullable<DateTimeOffset> * Nullable<DateTimeOffset> * seq<string> * seq<string> * System.Threading.CancellationToken -> Azure.Pageable<Azure.Developer.LoadTesting.TestProfile>
override this.GetTestProfiles : Nullable<DateTimeOffset> * Nullable<DateTimeOffset> * seq<string> * seq<string> * System.Threading.CancellationToken -> Azure.Pageable<Azure.Developer.LoadTesting.TestProfile>
Public Overridable Function GetTestProfiles (Optional lastModifiedStartTime As Nullable(Of DateTimeOffset) = Nothing, Optional lastModifiedEndTime As Nullable(Of DateTimeOffset) = Nothing, Optional testProfileIds As IEnumerable(Of String) = Nothing, Optional testIds As IEnumerable(Of String) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Pageable(Of TestProfile)

Parameters

lastModifiedStartTime
Nullable<DateTimeOffset>

Start DateTime(RFC 3339 literal format) of the last updated time range to filter test profiles.

lastModifiedEndTime
Nullable<DateTimeOffset>

End DateTime(RFC 3339 literal format) of the last updated time range to filter test profiles.

testProfileIds
IEnumerable<String>

Comma separated list of IDs of the test profiles to filter.

testIds
IEnumerable<String>

Comma separated list IDs of the tests which should be associated with the test profiles to fetch.

cancellationToken
CancellationToken

The cancellation token to use.

Returns

Remarks

Get all test profiles for the given filters.

Applies to