Show / Hide Table of Contents

Class CustomerInstanceReportExportSummary

Summary model for a Customer Instance Report export.

Inheritance
object
CustomerInstanceReportExportSummary
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 CustomerInstanceReportExportSummary

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

DefinedTags

Declaration
[JsonProperty(PropertyName = "definedTags")]
public Dictionary<string, Dictionary<string, object>> DefinedTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace": {"bar-key": "value"}}

FileName

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

The generated CSV file name.

FreeformTags

Declaration
[JsonProperty(PropertyName = "freeformTags")]
public Dictionary<string, string> FreeformTags { get; set; }
Property Value
Type Description
Dictionary<string, string>

Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

Id

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

Customer Instance Report export identifier.

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.

LifecycleState

Declaration
[Required(ErrorMessage = "LifecycleState is required.")]
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public CustomerInstanceReportExport.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type Description
CustomerInstanceReportExport.LifecycleStateEnum?

Customer Instance Report export lifecycle state.

Remarks

Required

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(ResponseEnumConverter))]
public CustomerInstanceReportExportSummary.SortByEnum? SortBy { get; set; }
Property Value
Type Description
CustomerInstanceReportExportSummary.SortByEnum?

The field to sort by.

SortOrder

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

The sort order for the generated export.

Status

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

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

SystemTags

Declaration
[JsonProperty(PropertyName = "systemTags")]
public Dictionary<string, Dictionary<string, object>> SystemTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud": {"free-tier-retained": "true"}}

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.

TimeCreated

Declaration
[Required(ErrorMessage = "TimeCreated is required.")]
[JsonProperty(PropertyName = "timeCreated")]
public DateTime? TimeCreated { get; set; }
Property Value
Type Description
DateTime?

The date and time that the export was created, expressed in RFC 3339 timestamp format. Example: 2016-08-25T21:10:29.600Z

Remarks

Required

TimeExpires

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

The date and time that the export expires, expressed in RFC 3339 timestamp format. Example: 2016-08-25T21:10:29.600Z

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.

WorkRequestId

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

The work request identifier associated with the export generation.

In this article
Back to top