Get an Access Guardrail

get

/access-governance/access-controls/20250331/accessGuardrails/{accessGuardrailId}

Returns details of an access guardrail with a given ID.

Request

Path Parameters
Header Parameters
  • The client request ID for tracing. The only valid characters for request IDs are letters, numbers, underscore, and dash.
Back to Top

Response

Supported Media Types

200 Response

The Access Guardrail for the given id
Headers
  • Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.
Body ()
Root Schema : AccessGuardrail
Type: object
Description of AccessGuardrail.
Show Source
Nested Schema : ActionOnFailure
Type: object
The information about remediation in case of condition failure.
Show Source
Nested Schema : owners
Type: array
List of owner entities
Show Source
Nested Schema : RuleCollection
Type: object
Collection of rule.
Show Source
Nested Schema : tags
Type: array
Tags for the AccessGuardrail.
Show Source
Nested Schema : OwnerSummary
Type: object
Owner entity object
Show Source
Nested Schema : items
Type: array
List of rule.
Show Source
Nested Schema : Rule
Type: object
The information about Rule.
Show Source
Nested Schema : ConditionCollection
Type: object
Collection of conditions.
Show Source
Nested Schema : items
Type: array
List of condition.
Show Source
Nested Schema : Condition
Type: object
The information about Condition.
Show Source
Nested Schema : additionalAttributes
Type: object
Additional Properties Allowed
Show Source
Additional attributes for additional information related to the condition.
Nested Schema : BasicCondition
Type: object
The information about Condition.
Show Source
  • Allowed Values: [ "STRING", "NUMBER", "BOOLEAN", "DATE" ]
    Data type for the condition Identifier
  • Minimum Length: 1
    Maximum Length: 255
    Access Guardrails Identifier
  • Minimum Length: 1
    Maximum Length: 512
    Left hand side of the condition.
  • Allowed Values: [ "EQ", "NE", "GT", "LT", "GTE", "LTE", "BEFORE", "AFTER", "TILL", "FROM", "BETWEEN", "NOT_BETWEEN", "IN", "NOT_IN", "CONTAINS", "NOT_CONTAINS", "BEGINS_WITH", "NOT_BEGINS_WITH", "ENDS_WITH", "NOT_ENDS_WITH", "IS_NULL", "IS_NOT_NULL", "EQUAL_WITH_NULL" ]
    The operator for a access guardrail.
  • rhs
    Right hand side of the condition.
  • rhsUiDetails
    Right hand side details of the condition.
Nested Schema : BasicConditionCollection
Type: object
Collection of conditions.
Show Source
Nested Schema : rhs
Type: array
Right hand side of the condition.
Show Source
Nested Schema : rhsUiDetails
Type: array
Right hand side details of the condition.
Show Source
Nested Schema : UiDetail
Type: object
Ui detail for rendering values on UI
Show Source
Nested Schema : items
Type: array
List of condition.
Show Source

400 Response

Bad Request
Headers
  • Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.
Body ()
Root Schema : Error
Type: object
Error Information.
Show Source

401 Response

Unauthorized
Headers
  • Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.
Body ()
Root Schema : Error
Type: object
Error Information.
Show Source

404 Response

Not Found
Headers
  • Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.
Body ()
Root Schema : Error
Type: object
Error Information.
Show Source

429 Response

Too Many Requests
Headers
  • Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.
Body ()
Root Schema : Error
Type: object
Error Information.
Show Source

500 Response

Internal Server Error
Headers
  • Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.
Body ()
Root Schema : Error
Type: object
Error Information.
Show Source

Default Response

Unknown Error
Headers
  • Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.
Body ()
Root Schema : Error
Type: object
Error Information.
Show Source
Back to Top

Examples

The following example shows how to retrieve a details for a specific Access Guardrail. Replace placeholder values with actual values before running the sample command.

cURL Example - Without Query Parameters

curl -i -X GET \
   -H "Authorization:Bearer <your access token>" \
 '${service-instance-url}/access-governance/access-controls/${version}/accessGuardrails/${accessGuardrailsID}'

Example of the Response Body

The following example shows the contents of the response body in JSON format:

{
  "id" : "01ffca11-xxxx-4d8f-bd89-b04xxxxxb0b",
  "name" : "ITS_Ownership_AccessGuardrail",
  "description" : "ITS_Ownership_AccessGuardrail",
  "timeCreated" : "2025-03-25T06:31:58.548Z",
  "timeUpdated" : "2025-03-25T06:31:58.548Z",
  "lifecycleState" : "ACTIVE",
  "isDetectiveViolationCheckEnabled" : false,
  "tags" : [ ],
  "rules" : {
    "items" : [ {
      "id" : "87e3286f-2273-4860-xxxx-4da56e2cdba6",
      "type" : "DEFAULT",
      "operator" : "OR",
      "conditions" : {
        "items" : [ {
          "type" : "IDENTITY_ATTRIBUTE",
          "basicCondition" : {
            "displayName" : "Status",
            "operator" : "EQ",
            "lhs" : "status",
            "rhs" : [ "Active" ],
            "rhsUiDetails" : [ ],
            "dataType" : "STRING"
          },
          "childConditions" : {
            "items" : [ ]
          },
          "additionalAttributes" : null
        } ]
      }
    } ]
  },
  "actionOnFailure" : {
    "actionType" : "REVOKE_IMMEDIATELY",
    "risk" : "HIGH",
    "revokeLaterAfterNumberOfDays" : 0,
    "shouldUserManagerBeNotified" : false
  },
  "ownershipCollectionId" : "cb40e8bd-2a1f-4ef5-9202-1a6cxxxxa0",
  "primaryOwnerDisplayName" : "Amel Maclead",
  "owners" : [ {
    "id" : "globalId.125123c3-eedc-4d6a-b6d4-6c0f6537bad2.18.02e36bbb4b20142xxxxxx3ceb16a",
    "name" : "Amel Maclead",
    "isPrimary" : true
  } ],
  "createdBy" : "Amel Maclead",
  "updatedBy" : "Amel Maclead"
}
Back to Top