Show / Hide Table of Contents

Class ListDedicatedVantagePointsRequest

Inheritance
object
ListDedicatedVantagePointsRequest
Implements
IOciRequest
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.ApmsyntheticsService.Requests
Assembly: OCI.DotNetSDK.Apmsynthetics.dll
Syntax
public class ListDedicatedVantagePointsRequest : IOciRequest
Examples

Click here to see an example of how to use ListDedicatedVantagePoints request.

Properties

ApmDomainId

Declaration
[Required(ErrorMessage = "ApmDomainId is required.")]
[HttpConverter(TargetEnum.Query, "apmDomainId")]
public string ApmDomainId { get; set; }
Property Value
Type Description
string

The APM domain ID the request is intended for.

Remarks

Required

DisplayName

Declaration
[HttpConverter(TargetEnum.Query, "displayName")]
public string DisplayName { get; set; }
Property Value
Type Description
string

A filter to return only the resources that match the entire display name.

Limit

Declaration
[HttpConverter(TargetEnum.Query, "limit")]
public int? Limit { get; set; }
Property Value
Type Description
int?

The maximum number of items to return.

Name

Declaration
[HttpConverter(TargetEnum.Query, "name")]
public string Name { get; set; }
Property Value
Type Description
string

A filter to return only the resources that match the entire name.

OpcRequestId

Declaration
[HttpConverter(TargetEnum.Header, "opc-request-id")]
public string OpcRequestId { get; set; }
Property Value
Type Description
string

Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.

Page

Declaration
[HttpConverter(TargetEnum.Query, "page")]
public string Page { get; set; }
Property Value
Type Description
string

The maximum number of results per page, or items to return in a paginated "List" call. For information on how pagination works, see List Pagination.
Example: 50

SortBy

Declaration
[HttpConverter(TargetEnum.Query, "sortBy")]
public ListDedicatedVantagePointsRequest.SortByEnum? SortBy { get; set; }
Property Value
Type Description
ListDedicatedVantagePointsRequest.SortByEnum?

The field to sort by. Only one sort order may be provided. Default order of displayName is ascending. Default order of timeCreated and timeUpdated is descending. The displayName sort by is case-sensitive.

SortOrder

Declaration
[HttpConverter(TargetEnum.Query, "sortOrder")]
public SortOrders? SortOrder { get; set; }
Property Value
Type Description
SortOrders?

The sort order to use, either ascending (ASC) or descending (DESC). Default sort order is ascending.

Status

Declaration
[HttpConverter(TargetEnum.Query, "status")]
public DedicatedVantagePointStatus? Status { get; set; }
Property Value
Type Description
DedicatedVantagePointStatus?

A filter to return only the dedicated vantage points that match a given status.

Implements

IOciRequest
In this article
Back to top