Show / Hide Table of Contents

Class ListGiVersionMinorVersionsRequest

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

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

Properties

AvailabilityDomain

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

The target availability domain. Only passed if the limit is AD-specific.

CompartmentId

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

The compartment OCID.

IsGiVersionForProvisioning

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

If true, returns the Grid Infrastructure versions that can be used for provisioning a cluster

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.

OpcRequestId

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

Unique identifier for the request.

Page

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

The pagination token to continue listing from.

Shape

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

If provided, filters the results for the given shape.

ShapeFamily

Declaration
[HttpConverter(TargetEnum.Query, "shapeFamily")]
public ListGiVersionMinorVersionsRequest.ShapeFamilyEnum? ShapeFamily { get; set; }
Property Value
Type Description
ListGiVersionMinorVersionsRequest.ShapeFamilyEnum?

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

SortBy

Declaration
[HttpConverter(TargetEnum.Query, "sortBy")]
public ListGiVersionMinorVersionsRequest.SortByEnum? SortBy { get; set; }
Property Value
Type Description
ListGiVersionMinorVersionsRequest.SortByEnum?

Sort by VERSION. Default order for VERSION is descending.

SortOrder

Declaration
[HttpConverter(TargetEnum.Query, "sortOrder")]
public ListGiVersionMinorVersionsRequest.SortOrderEnum? SortOrder { get; set; }
Property Value
Type Description
ListGiVersionMinorVersionsRequest.SortOrderEnum?

The sort order to use, either ascending (ASC) or descending (DESC).

Version

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

The Oracle Grid Infrastructure major version.

Remarks

Required

Implements

IOciRequest
In this article
Back to top