Show / Hide Table of Contents

Class PrivilegedApiRequestOperationDetails

It represents the api details of the service

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

Properties

ApiName

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

name of the api which needs to be protected.

Remarks

Required

AttributeNames

Declaration
[JsonProperty(PropertyName = "attributeNames")]
public List<string> AttributeNames { get; set; }
Property Value
Type Description
List<string>

list of attributes belonging to the above api which needs to be protected.

In this article
Back to top