Show / Hide Table of Contents

Class GenerateCustomerInstanceReportExportDetails

Details to generate a Customer Instance Report export.

Inheritance
object
GenerateCustomerInstanceReportExportDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.MarketplacepublisherService.Models
Assembly: OCI.DotNetSDK.Marketplacepublisher.dll
Syntax
public class GenerateCustomerInstanceReportExportDetails

Properties

CompartmentId

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

The OCID of the compartment for the export.

Remarks

Required

InstanceId

Declaration
[JsonProperty(PropertyName = "instanceId")]
public string InstanceId { get; set; }
Property Value
Type Description
string

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

ListingId

Declaration
[JsonProperty(PropertyName = "listingId")]
public string ListingId { get; set; }
Property Value
Type Description
string

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

Name

Declaration
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
Property Value
Type Description
string

A filter to return only report records that match the listing name.

PackageVersion

Declaration
[JsonProperty(PropertyName = "packageVersion")]
public string PackageVersion { get; set; }
Property Value
Type Description
string

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

Realm

Declaration
[JsonProperty(PropertyName = "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
[JsonProperty(PropertyName = "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
[JsonProperty(PropertyName = "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
[JsonProperty(PropertyName = "sortBy")]
[JsonConverter(typeof(StringEnumConverter))]
public GenerateCustomerInstanceReportExportDetails.SortByEnum? SortBy { get; set; }
Property Value
Type Description
GenerateCustomerInstanceReportExportDetails.SortByEnum?

The field to sort by.

SortOrder

Declaration
[JsonProperty(PropertyName = "sortOrder")]
[JsonConverter(typeof(StringEnumConverter))]
public GenerateCustomerInstanceReportExportDetails.SortOrderEnum? SortOrder { get; set; }
Property Value
Type Description
GenerateCustomerInstanceReportExportDetails.SortOrderEnum?

The sort order for the generated export.

Status

Declaration
[JsonProperty(PropertyName = "status")]
[JsonConverter(typeof(StringEnumConverter))]
public GenerateCustomerInstanceReportExportDetails.StatusEnum? Status { get; set; }
Property Value
Type Description
GenerateCustomerInstanceReportExportDetails.StatusEnum?

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

TenantAdminDomain

Declaration
[JsonProperty(PropertyName = "tenantAdminDomain")]
public string TenantAdminDomain { get; set; }
Property Value
Type Description
string

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

TimeInstanceCreationFromDate

Declaration
[JsonProperty(PropertyName = "timeInstanceCreationFromDate")]
public DateTime? TimeInstanceCreationFromDate { get; set; }
Property Value
Type Description
DateTime?

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

TimeInstanceCreationToDate

Declaration
[JsonProperty(PropertyName = "timeInstanceCreationToDate")]
public DateTime? TimeInstanceCreationToDate { get; set; }
Property Value
Type Description
DateTime?

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

TimeInstanceTerminationFromDate

Declaration
[JsonProperty(PropertyName = "timeInstanceTerminationFromDate")]
public DateTime? TimeInstanceTerminationFromDate { get; set; }
Property Value
Type Description
DateTime?

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

TimeInstanceTerminationToDate

Declaration
[JsonProperty(PropertyName = "timeInstanceTerminationToDate")]
public DateTime? TimeInstanceTerminationToDate { get; set; }
Property Value
Type Description
DateTime?

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

In this article
Back to top