Show / Hide Table of Contents

Class ListOccmDemandSignalItemsRequest

Inheritance
object
ListOccmDemandSignalItemsRequest
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.CapacitymanagementService.Requests
Assembly: OCI.DotNetSDK.Capacitymanagement.dll
Syntax
public class ListOccmDemandSignalItemsRequest : IOciRequest
Examples

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

Properties

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 or tenancy in which resources are to be listed. This will also be used for authorization purposes.

Remarks

Required

DemandSignalNamespace

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

A query parameter to filter the list of demand signal details based on the namespace.

Limit

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

The maximum number of items to return.

OccmDemandSignalId

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

A query parameter to filter the list of demand signal items based on a demand signal id.

OpcRequestId

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

The client request ID for tracing. The only valid characters for request IDs are letters, numbers, underscore, and dash.

Page

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

A token representing the position at which to start retrieving results. This must come from opc-next-page header field of a previous response.

ResourceName

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

A query parameter to filter the list of demand signal details based on the resource name.

SortBy

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

The field to sort the response of List Demand Signal Details API. Only one sort order may be provided. The default order for resource name is case sensitive alphabetical order.

SortOrder

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

The sort order to use, either 'ASC' or 'DESC'.

Implements

IOciRequest
In this article
Back to top