Show / Hide Table of Contents

Class ListServicesRequest

Inheritance
object
ListServicesRequest
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.AnnouncementsService.Requests
Assembly: OCI.DotNetSDK.Announcementsservice.dll
Syntax
public class ListServicesRequest : IOciRequest
Examples

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

Properties

CommsManagerName

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

Filter by comms manager name

CompartmentId

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

The OCID of the compartment.

Remarks

Required

Limit

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

The maximum number of items to return in a paginated "List" call.

OpcRequestId

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

The unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the complete request ID.

Page

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

The value of the opc-next-page response header from the previous "List" call.

PlatformType

Declaration
[HttpConverter(TargetEnum.Query, "platformType")]
public ListServicesRequest.PlatformTypeEnum? PlatformType { get; set; }
Property Value
Type Description
ListServicesRequest.PlatformTypeEnum?

A filter to return only announcements affecting a specific platform.

SortBy

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

Sort by service name parameter

SortOrder

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

The sort order to use, whether ascending ('ASC') or descending ('DESC').

Implements

IOciRequest
In this article
Back to top