Show / Hide Table of Contents

Class GetCredentialExecuteGranteeRequest

Inheritance
object
GetCredentialExecuteGranteeRequest
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.DatabasetoolsruntimeService.Requests
Assembly: OCI.DotNetSDK.Databasetoolsruntime.dll
Syntax
public class GetCredentialExecuteGranteeRequest : IOciRequest
Examples

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

Properties

CredentialKey

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

The name of the credential

Remarks

Required

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

ExecuteGranteeKey

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

The name of the user granted the EXECUTE privilege on the credential.

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.
When specified on an action-specific subresource, the ETag value of the resource on which the action is requested should be provided.

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