Show / Hide Table of Contents

Class CollectTracesData

Information regarding the DB trace and alert log collection

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

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 containing the file.

Remarks

Required

CollectTracesState

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

Status of trace collection process.

Remarks

Required

Namespace

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

Object Storage namespace.

Remarks

Required

ObjectName

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

Object name.

Remarks

Required

In this article
Back to top