Show / Hide Table of Contents

Class UpdatePrivilegedApiControlDetails

The data to update a PrivilegedApiControl.

Inheritance
object
UpdatePrivilegedApiControlDetails
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 UpdatePrivilegedApiControlDetails

Properties

ApproverGroupIdList

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

List of user IAM group ids who can approve an privilegedApi request associated with a target resource under the governance of this privilegedApi control.

DefinedTags

Declaration
[JsonProperty(PropertyName = "definedTags")]
public Dictionary<string, Dictionary<string, object>> DefinedTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
Example: {"Operations": {"CostCenter": "42"}}

Description

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

Description of the privilegedApi control.

DisplayName

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

Name of the privilegedApi control. Needs to be unique.

FreeformTags

Declaration
[JsonProperty(PropertyName = "freeformTags")]
public Dictionary<string, string> FreeformTags { get; set; }
Property Value
Type Description
Dictionary<string, string>

Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags.
Example: {"Department": "Finance"}

NotificationTopicId

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

The OCID of the OCI Notification topic to publish messages related to this Delegation Control.

NumberOfApprovers

Declaration
[JsonProperty(PropertyName = "numberOfApprovers")]
public int? NumberOfApprovers { get; set; }
Property Value
Type Description
int?

Number of approvers required to approve an privilegedApi request.

PrivilegedOperationList

Declaration
[JsonProperty(PropertyName = "privilegedOperationList")]
public List<PrivilegedApiDetails> PrivilegedOperationList { get; set; }
Property Value
Type Description
List<PrivilegedApiDetails>

List of privileged operator operations. If Privileged API Managment is enabled for a resource it will be validated whether the operation done by the operator is a part of privileged operation.

ResourceType

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

resourceType for which the PrivilegedApiControl is applicable

Resources

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

contains Resource details

In this article
Back to top