Show / Hide Table of Contents

Class ListReportsRequest

Inheritance
object
ListReportsRequest
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.MarketplaceService.Requests
Assembly: OCI.DotNetSDK.Marketplace.dll
Syntax
public class ListReportsRequest : IOciRequest
Examples

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

Properties

CompartmentId

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

The unique identifier for the compartment.

Remarks

Required

Date

Declaration
[Required(ErrorMessage = "Date is required.")]
[HttpConverter(TargetEnum.Query, "date")]
public DateTime? Date { get; set; }
Property Value
Type Description
DateTime?

Date, expressed in RFC 3339 timestamp format. The service only interprets the year, month, and day parts in the input value, and ignores the hour, minute, and second parts.

Remarks

Required

OpcRequestId

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

Unique Oracle-assigned 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 value of the opc-next-page response header from the previous "List" call.

ReportType

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

The type of the report.

Remarks

Required

Implements

IOciRequest
In this article
Back to top