Show / Hide Table of Contents

Class ListDbVersionsRequest

Inheritance
object
ListDbVersionsRequest
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 ListDbVersionsRequest : IOciRequest
Examples

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

Properties

CompartmentId

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

The compartment OCID.

Remarks

Required

DbSystemId

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

The DB system OCID. If provided, filters the results to the set of database versions which are supported for the DB system.

DbSystemShape

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

If provided, filters the results to the set of database versions which are supported for the given shape.

IsDatabaseSoftwareImageSupported

Declaration
[HttpConverter(TargetEnum.Query, "isDatabaseSoftwareImageSupported")]
public bool? IsDatabaseSoftwareImageSupported { get; set; }
Property Value
Type Description
bool?

If true, filters the results to the set of Oracle Database versions that are supported for OCI database software images.

IsUpgradeSupported

Declaration
[HttpConverter(TargetEnum.Query, "isUpgradeSupported")]
public bool? IsUpgradeSupported { get; set; }
Property Value
Type Description
bool?

If provided, filters the results to the set of database versions which are supported for Upgrade.

Limit

Declaration
[HttpConverter(TargetEnum.Query, "limit")]
public int? Limit { get; set; }
Property Value
Type Description
int?

The maximum number of items to return per page.

Page

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

The pagination token to continue listing from.

StorageManagement

Declaration
[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.

Implements

IOciRequest
In this article
Back to top