Show / Hide Table of Contents

Class CreateDbHomeWithVmClusterIdDetails

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

Inheritance
object
CreateDbHomeBase
CreateDbHomeWithVmClusterIdDetails
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 CreateDbHomeWithVmClusterIdDetails : CreateDbHomeBase

Properties

Database

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

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.

VmClusterId

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

The OCID of the VM cluster.

Remarks

Required

In this article
Back to top