Show / Hide Table of Contents

Class BulkUploadResponse

The bulk upload response.

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

Properties

FailedLicenseRecordInfo

Declaration
[Required(ErrorMessage = "FailedLicenseRecordInfo is required.")]
[JsonProperty(PropertyName = "failedLicenseRecordInfo")]
public List<BulkUploadFailedRecordInfo> FailedLicenseRecordInfo { get; set; }
Property Value
Type Description
List<BulkUploadFailedRecordInfo>

Error information corresponding to the supported records which are valid but could not be created.

Remarks

Required

Message

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

Response message for bulk upload.

Remarks

Required

TotalSupportedDuplicateRecords

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

The number of supported license records that were valid but not uploaded since they were duplicates.

Remarks

Required

TotalSupportedFailedLicenseRecords

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

The number of supported license records that were valid but failed with errors during upload.

Remarks

Required

TotalSupportedInvalidRecords

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

The number of supported license records that could not be uploaded since they were invalid.

Remarks

Required

TotalSupportedRecords

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

The number of license records which were supported.

Remarks

Required

TotalSupportedRecordsSaved

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

The number of supported license records that were uploaded successfully.

Remarks

Required

ValidationErrorInfo

Declaration
[Required(ErrorMessage = "ValidationErrorInfo is required.")]
[JsonProperty(PropertyName = "validationErrorInfo")]
public List<BulkUploadValidationErrorInfo> ValidationErrorInfo { get; set; }
Property Value
Type Description
List<BulkUploadValidationErrorInfo>

Detailed error information corresponding to each supported but invalid row for the uploaded file.

Remarks

Required

In this article
Back to top