Show / Hide Table of Contents

Class DeploymentDiagnosticData

Information regarding the deployment diagnostic collection

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

Properties

BucketName

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

Name of the bucket where the object is to be uploaded in the object storage

Remarks

Required

DiagnosticState

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

The state of the deployment diagnostic collection.

Remarks

Required

NamespaceName

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

Name of namespace that serves as a container for all of your buckets

Remarks

Required

ObjectName

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

Name of the diagnostic collected and uploaded to object storage

Remarks

Required

TimeDiagnosticEnd

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

The time until which the diagnostic collection should collect the logs. The format is defined by RFC3339, such as 2016-08-25T21:10:29.600Z.

TimeDiagnosticStart

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

The time from which the diagnostic collection should collect the logs. The format is defined by RFC3339, such as 2016-08-25T21:10:29.600Z.

In this article
Back to top