Show / Hide Table of Contents

Class ListDbSystemStoragePerformancesRequest

Inheritance
object
ListDbSystemStoragePerformancesRequest
Implements
IOciRequest
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatabaseService.Requests
Assembly: OCI.DotNetSDK.Database.dll
Syntax
public class ListDbSystemStoragePerformancesRequest : IOciRequest
Examples

Click here to see an example of how to use ListDbSystemStoragePerformances request.

Properties

DatabaseEdition

Declaration
[HttpConverter(TargetEnum.Query, "databaseEdition")]
public ListDbSystemStoragePerformancesRequest.DatabaseEditionEnum? DatabaseEdition { get; set; }
Property Value
Type Description
ListDbSystemStoragePerformancesRequest.DatabaseEditionEnum?

The database edition of quota (STANDARD_EDITION/ENTERPRISE_EDITION/ENTERPRISE_EDITION_HIGH_PERFORMANCE/ENTERPRISE_EDITION_EXTREME/ENTERPRISE_EDITION_DEVELOPER)

OpcRequestId

Declaration
[HttpConverter(TargetEnum.Header, "opc-request-id")]
public string OpcRequestId { get; set; }
Property Value
Type Description
string

Unique identifier for the request.

ShapeType

Declaration
[HttpConverter(TargetEnum.Query, "shapeType")]
public string ShapeType { get; set; }
Property Value
Type Description
string

Optional. Filters the performance results by shape type.

StorageManagement

Declaration
[Required(ErrorMessage = "StorageManagement is required.")]
[HttpConverter(TargetEnum.Query, "storageManagement")]
public DbSystemOptions.StorageManagementEnum? StorageManagement { get; set; }
Property Value
Type Description
DbSystemOptions.StorageManagementEnum?

The DB system storage management option. Used to list database versions available for that storage manager. Valid values are ASM and LVM.

  • ASM specifies Oracle Automatic Storage Management
  • LVM specifies logical volume manager, sometimes called logical disk manager.
Remarks

Required

Implements

IOciRequest
In this article
Back to top