Show / Hide Table of Contents

Class ListSecurityAttributesRequest

Inheritance
object
ListSecurityAttributesRequest
Implements
IOciRequest
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.SecurityattributeService.Requests
Assembly: OCI.DotNetSDK.Securityattribute.dll
Syntax
public class ListSecurityAttributesRequest : IOciRequest
Examples

Click here to see an example of how to use ListSecurityAttributes request.

Properties

LifecycleState

Declaration
[HttpConverter(TargetEnum.Query, "lifecycleState")]
public SecurityAttribute.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type Description
SecurityAttribute.LifecycleStateEnum?

A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.

Limit

Declaration
[HttpConverter(TargetEnum.Query, "limit")]
public int? Limit { get; set; }
Property Value
Type Description
int?

The maximum number of items to return in a paginated "List" call.

OpcRequestId

Declaration
[HttpConverter(TargetEnum.Header, "opc-request-id")]
public string OpcRequestId { get; set; }
Property Value
Type Description
string

Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. The only valid characters for request IDs are letters, numbers, underscore, and dash.

Page

Declaration
[HttpConverter(TargetEnum.Query, "page")]
public string Page { get; set; }
Property Value
Type Description
string

The value of the opc-next-page response header from the previous "List" call.

SecurityAttributeNamespaceId

Declaration
[Required(ErrorMessage = "SecurityAttributeNamespaceId is required.")]
[HttpConverter(TargetEnum.Path, "securityAttributeNamespaceId")]
public string SecurityAttributeNamespaceId { get; set; }
Property Value
Type Description
string

The OCID of the security attribute namespace.

Remarks

Required

Implements

IOciRequest
In this article
Back to top