LoadTestAdministrationClient.GetTestProfiles Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
GetTestProfiles(Nullable<DateTimeOffset>, Nullable<DateTimeOffset>, IEnumerable<String>, IEnumerable<String>, RequestContext) |
[Protocol Method] List test profiles.
|
GetTestProfiles(Nullable<DateTimeOffset>, Nullable<DateTimeOffset>, IEnumerable<String>, IEnumerable<String>, CancellationToken) |
List test profiles. |
GetTestProfiles(Nullable<DateTimeOffset>, Nullable<DateTimeOffset>, IEnumerable<String>, IEnumerable<String>, RequestContext)
[Protocol Method] List test profiles.
- This protocol method allows explicit creation of the request and processing of the response for advanced scenarios.
- Please try the simpler GetTestProfiles(Nullable<DateTimeOffset>, Nullable<DateTimeOffset>, IEnumerable<String>, IEnumerable<String>, CancellationToken) convenience overload with strongly typed models first.
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)
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.