Show / Hide Table of Contents

Class FileValidationResponse

Response object containing details about file upload eligibility.

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

Properties

Files

Declaration
[JsonProperty(PropertyName = "files")]
public List<UploadFileStatus> Files { get; set; }
Property Value
Type Description
List<UploadFileStatus>

List of files inside the given archive file and their corresponding status information.

InputFile

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

Input File Name.

Remarks

Required

ObjectLocation

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

Object Location where file content is available.

Remarks

Required

In this article
Back to top