Show / Hide Table of Contents

Class BulkUploadLicenseRecordsDetails

Details required for bulk uploading of license records.

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

Properties

CompartmentId

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

The compartment OCID where license records are created.

Remarks

Required

FileContent

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

The file to be uploaded.

Remarks

Required

FileName

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

Name of the file that is being uploaded.

Remarks

Required

In this article
Back to top