Class ListUserCredentialsRequest
Implements
Inherited Members
Namespace: Oci.DatabasetoolsruntimeService.Requests
Assembly: OCI.DotNetSDK.Databasetoolsruntime.dll
Syntax
public class ListUserCredentialsRequest : IOciRequest
Examples
Click here to see an example of how to use ListUserCredentials request.
Properties
DatabaseToolsConnectionId
Declaration
[Required(ErrorMessage = "DatabaseToolsConnectionId is required.")]
[HttpConverter(TargetEnum.Path, "databaseToolsConnectionId")]
public string DatabaseToolsConnectionId { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The OCID of a Database Tools connection. |
Remarks
Required
IfMatch
Declaration
[HttpConverter(TargetEnum.Header, "if-match")]
public string IfMatch { get; set; }
Property Value
| Type | Description |
|---|---|
| string | If-Match is most often used with state-changing methods (e.g., POST, PUT, DELETE) to prevent
accidental overwrites when multiple user agentss might be acting in parallel on the same
resource (i.e., to prevent the "lost update" problem). In general, it can be used with any
method that involves the selection or modification of a representation to abort the request
if the selected representation's current entity tag is not a member within the If-Match field value. |
Limit
Declaration
[HttpConverter(TargetEnum.Query, "limit")]
public int? Limit { get; set; }
Property Value
| Type | Description |
|---|---|
| int? | The maximum number of items to return. |
OpcRequestId
Declaration
[HttpConverter(TargetEnum.Header, "opc-request-id")]
public string OpcRequestId { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The client request ID for tracing. |
Page
Declaration
[HttpConverter(TargetEnum.Query, "page")]
public string Page { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The page token representing the page at which to start retrieving results. This is usually retrieved from a previous list call. |
SortOrder
Declaration
[HttpConverter(TargetEnum.Query, "sortOrder")]
public SortOrder? SortOrder { get; set; }
Property Value
| Type | Description |
|---|---|
| SortOrder? | The sort order to use, either 'asc' or 'desc'. |
UserKey
Declaration
[Required(ErrorMessage = "UserKey is required.")]
[HttpConverter(TargetEnum.Path, "userKey")]
public string UserKey { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The name of the database user. |
Remarks
Required