Show / Hide Table of Contents

Class CredentialRelatedResource

A related resource for a credential.

Inheritance
object
CredentialRelatedResource
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatabasetoolsruntimeService.Models
Assembly: OCI.DotNetSDK.Databasetoolsruntime.dll
Syntax
public class CredentialRelatedResource

Properties

Identifier

Declaration
[Required(ErrorMessage = "Identifier is required.")]
[JsonProperty(PropertyName = "identifier")]
public string Identifier { get; set; }
Property Value
Type Description
string

The OCID of the related resource.

Remarks

Required

Type

Declaration
[Required(ErrorMessage = "Type is required.")]
[JsonProperty(PropertyName = "type")]
[JsonConverter(typeof(ResponseEnumConverter))]
public CredentialRelatedResourceType? Type { get; set; }
Property Value
Type Description
CredentialRelatedResourceType?

The related resource type.

Remarks

Required

In this article
Back to top