Show / Hide Table of Contents

Class GetDbSystemRequest

Inheritance
object
GetDbSystemRequest
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.PsqlService.Requests
Assembly: OCI.DotNetSDK.Psql.dll
Syntax
public class GetDbSystemRequest : IOciRequest
Examples

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

Properties

DbSystemId

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

A unique identifier for the database system.

Remarks

Required

ExcludedFields

Declaration
[HttpConverter(TargetEnum.Query, "excludedFields", CollectionFormatType.Multi)]
public List<GetDbSystemRequest.ExcludedFieldsEnum> ExcludedFields { get; set; }
Property Value
Type Description
List<GetDbSystemRequest.ExcludedFieldsEnum>

A filter to exclude database configuration when this query parameter is set to OverrideDbConfig.

OpcRequestId

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

The client request ID for tracing.

Implements

IOciRequest
In this article
Back to top