Show / Hide Table of Contents

Class DisableDatabaseManagementFeatureDetails

The details required to disable Database Management features for an Oracle cloud database.

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

Properties

CanDisableAllPdbs

Declaration
[JsonProperty(PropertyName = "canDisableAllPdbs")]
public bool? CanDisableAllPdbs { get; set; }
Property Value
Type Description
bool?

Feature

Declaration
[Required(ErrorMessage = "Feature is required.")]
[JsonProperty(PropertyName = "feature")]
[JsonConverter(typeof(StringEnumConverter))]
public DbManagementFeature? Feature { get; set; }
Property Value
Type Description
DbManagementFeature?

The name of the Database Management feature.

Remarks

Required

In this article
Back to top