Show / Hide Table of Contents

Class ExternalAsmUserSummary

The summary of an ASM user.

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

Properties

AsmId

Declaration
[JsonProperty(PropertyName = "asmId")]
public string AsmId { get; set; }
Property Value
Type Description
string

The OCID of the external ASM.

Name

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

The name of the ASM user.

Remarks

Required

Privileges

Declaration
[Required(ErrorMessage = "Privileges is required.")]
[JsonProperty(PropertyName = "privileges")]
public List<string> Privileges { get; set; }
Property Value
Type Description
List<string>

The list of privileges of the ASM user.

Remarks

Required

In this article
Back to top