Show / Hide Table of Contents

Class ListCustomerInstanceReportExportsRequest

Inheritance
object
ListCustomerInstanceReportExportsRequest
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.MarketplacepublisherService.Requests
Assembly: OCI.DotNetSDK.Marketplacepublisher.dll
Syntax
public class ListCustomerInstanceReportExportsRequest : IOciRequest
Examples

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

Properties

CompartmentId

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

The ID of the compartment in which to list resources.

Remarks

Required

InstanceOcid

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

A filter to return only report records that match the instance OCID.

Limit

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

The maximum number of items to return.

ListingId

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

Listing OCID to query resource against.

Name

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

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

OpcRequestId

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

The client request ID for tracing.

PackageVersion

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

A filter to return only report records that match the package version.

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 the opc-next-page header field of a previous response.

Realm

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

A filter to return only report records that match the instance realm.

Region

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

A filter to return only report records that match the instance region.

Shape

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

A filter to return only report records that match the instance shape.

SortBy

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

The field to sort by. Only one sort order may be provided. Default order for timeCreated is descending. Default order for fileName is ascending.

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'.

Status

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

A filter to return only report records that match the instance status.

TenantAdminDomain

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

A filter to return only report records that match the tenant administrator domain.

TimeInstanceCreationFromDate

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

The inclusive earliest instance creation time, in RFC 3339 format.

TimeInstanceCreationToDate

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

The inclusive latest instance creation time, in RFC 3339 format.

TimeInstanceTerminationFromDate

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

The inclusive earliest instance termination time, in RFC 3339 format.

TimeInstanceTerminationToDate

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

The inclusive latest instance termination time, in RFC 3339 format.

Implements

IOciRequest
In this article
Back to top