Show / Hide Table of Contents

Class CreateDbHomeWithDbSystemIdDetails

Note that a valid dbSystemId value must be supplied for the CreateDbHomeWithDbSystemId API operation to successfully complete.

Inheritance
object
CreateDbHomeBase
CreateDbHomeWithDbSystemIdDetails
Inherited Members
CreateDbHomeBase.DisplayName
CreateDbHomeBase.KmsKeyId
CreateDbHomeBase.KmsKeyVersionId
CreateDbHomeBase.DatabaseSoftwareImageId
CreateDbHomeBase.FreeformTags
CreateDbHomeBase.DefinedTags
CreateDbHomeBase.IsDesupportedVersion
CreateDbHomeBase.IsUnifiedAuditingEnabled
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatabaseService.Models
Assembly: OCI.DotNetSDK.Database.dll
Syntax
public class CreateDbHomeWithDbSystemIdDetails : CreateDbHomeBase

Properties

Database

Declaration
[JsonProperty(PropertyName = "database")]
public CreateDatabaseDetails Database { get; set; }
Property Value
Type Description
CreateDatabaseDetails

DbSystemId

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

The OCID of the DB system.

Remarks

Required

DbVersion

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

A valid Oracle Database version. For a list of supported versions, use the ListDbVersions operation.
This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, adminPassword, whitelistedIps, isMTLSConnectionRequired, openMode, permissionLevel, dbWorkload, privateEndpointLabel, nsgIds, isRefreshable, dbName, scheduledOperations, dbToolsDetails, isLocalDataGuardEnabled, or isFreeTier.

In this article
Back to top