Show / Hide Table of Contents

Class AutonomousDataWarehouseSummary

Deprecated. See {@link #autonomousDatabase(AutonomousDatabaseRequest) autonomousDatabase} for reference information about Autonomous Databases with the warehouse workload type.
Warning: Oracle recommends that you avoid using any confidential information when you supply string values using the API.

Inheritance
object
AutonomousDataWarehouseSummary
Inherited Members
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 AutonomousDataWarehouseSummary

Properties

CompartmentId

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

The OCID of the compartment.

Remarks

Required

ConnectionStrings

Declaration
[JsonProperty(PropertyName = "connectionStrings")]
public AutonomousDataWarehouseConnectionStrings ConnectionStrings { get; set; }
Property Value
Type Description
AutonomousDataWarehouseConnectionStrings

The connection string used to connect to the Data Warehouse. The username for the Service Console is ADMIN. Use the password you entered when creating the Autonomous Data Warehouse for the password value.

CpuCoreCount

Declaration
[Required(ErrorMessage = "CpuCoreCount is required.")]
[JsonProperty(PropertyName = "cpuCoreCount")]
public int? CpuCoreCount { get; set; }
Property Value
Type Description
int?

The number of CPU cores to be made available to the database.

Remarks

Required

DataStorageSizeInTBs

Declaration
[Required(ErrorMessage = "DataStorageSizeInTBs is required.")]
[JsonProperty(PropertyName = "dataStorageSizeInTBs")]
public int? DataStorageSizeInTBs { get; set; }
Property Value
Type Description
int?

The quantity of data in the database, in terabytes.

Remarks

Required

DbName

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

The database name.

Remarks

Required

DbVersion

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

A valid Oracle Database version for Autonomous Data Warehouse.

DefinedTags

Declaration
[JsonProperty(PropertyName = "definedTags")]
public Dictionary<string, Dictionary<string, object>> DefinedTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.

DisplayName

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

The user-friendly name for the Autonomous Data Warehouse. The name does not have to be unique.

FreeformTags

Declaration
[JsonProperty(PropertyName = "freeformTags")]
public Dictionary<string, string> FreeformTags { get; set; }
Property Value
Type Description
Dictionary<string, string>

Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags.
Example: {"Department": "Finance"}

Id

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

The OCID of the Autonomous Data Warehouse.

Remarks

Required

LicenseModel

Declaration
[JsonProperty(PropertyName = "licenseModel")]
[JsonConverter(typeof(StringEnumConverter))]
public AutonomousDataWarehouseSummary.LicenseModelEnum? LicenseModel { get; set; }
Property Value
Type Description
AutonomousDataWarehouseSummary.LicenseModelEnum?

The Oracle license model that applies to the Oracle Autonomous Data Warehouse. The default is BRING_YOUR_OWN_LICENSE.

LifecycleDetails

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

Information about the current lifecycle state.

LifecycleState

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

The current state of the database.

Remarks

Required

ServiceConsoleUrl

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

The URL of the Service Console for the Data Warehouse.

TimeCreated

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

The date and time the database was created.

In this article
Back to top