Show / Hide Table of Contents

Class ListAutonomousDatabaseCharacterSetsRequest

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

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

Properties

CharacterSetType

Declaration
[HttpConverter(TargetEnum.Query, "characterSetType")]
public ListAutonomousDatabaseCharacterSetsRequest.CharacterSetTypeEnum? CharacterSetType { get; set; }
Property Value
Type Description
ListAutonomousDatabaseCharacterSetsRequest.CharacterSetTypeEnum?

Specifies whether this request pertains to database character sets or national character sets.

IsDedicated

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

Specifies if the request is for an Autonomous Database Dedicated instance. The default request is for an Autonomous Database Dedicated instance.

IsShared

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

Specifies whether this request is for an Autonomous Database Serverless instance. By default, this request will be for Autonomous Database on Dedicated Exadata Infrastructure.

OpcRequestId

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

Unique identifier for the request.

Implements

IOciRequest
In this article
Back to top