Show / Hide Table of Contents

Class ObjectStorageJobExecutionResultDetails

The details of the job execution result stored in Object Storage. The job execution result could be accessed using the Object Storage API.

Inheritance
object
JobExecutionResultDetails
ObjectStorageJobExecutionResultDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatabasemanagementService.Models
Assembly: OCI.DotNetSDK.Databasemanagement.dll
Syntax
public class ObjectStorageJobExecutionResultDetails : JobExecutionResultDetails

Properties

BucketName

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

The name of the bucket used for job execution result storage.

NamespaceName

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

The Object Storage namespace used for job execution result storage.

ObjectName

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

The name of the object containing the job execution result.

RowCount

Declaration
[JsonProperty(PropertyName = "rowCount")]
public int? RowCount { get; set; }
Property Value
Type Description
int?

The number of rows returned in the result for the Query SqlType.

In this article
Back to top