Show / Hide Table of Contents

Class UpdateSecurityAttributeDetails

Details of the security attribute to be updated for a specific security attribute namespace.

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

Properties

Description

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

The description of the security attribute during creation.

IsRetired

Declaration
[JsonProperty(PropertyName = "isRetired")]
public bool? IsRetired { get; set; }
Property Value
Type Description
bool?

Whether the security attribute is retired. See Managing Security Attributes.

Validator

Declaration
[JsonProperty(PropertyName = "validator")]
public BaseSecurityAttributeValidator Validator { get; set; }
Property Value
Type Description
BaseSecurityAttributeValidator
In this article
Back to top