Show / Hide Table of Contents

Class ListScriptsRequest

Inheritance
object
ListScriptsRequest
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 ListScriptsRequest : IOciRequest
Examples

Click here to see an example of how to use ListScripts 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

ContentType

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

A filter to return only resources that match the content type given.

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.

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 ListScriptsRequest.SortByEnum? SortBy { get; set; }
Property Value
Type Description
ListScriptsRequest.SortByEnum?

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

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.

Implements

IOciRequest
In this article
Back to top