From 8a4698c54825dbdd48b0693c6d7647269c398863 Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Wed, 7 Aug 2024 15:11:43 +0000 Subject: [PATCH] Deploying to gh-pages from main --- docs/configuration-guide/trat/index.html | 13 ++++++----- docs/index.html | 4 ++-- sitemap.xml | 28 ++++++++++++------------ 3 files changed, 23 insertions(+), 22 deletions(-) diff --git a/docs/configuration-guide/trat/index.html b/docs/configuration-guide/trat/index.html index d4472b2..5aa75b8 100644 --- a/docs/configuration-guide/trat/index.html +++ b/docs/configuration-guide/trat/index.html @@ -279,7 +279,7 @@

TraT

subject: id: "${subject_token.email}" action: - name: "${purp}" + name: "${body.orderType}" resource: stockId: "${stockId}"

Below are the four sections of the above TraT:

@@ -317,6 +317,7 @@

  1. Request Body (referenced using ${body})
  2. Request Header (referenced using ${header})
  3. +
  4. Query Parameters (referenced using ${queryParameters})
  5. Variables defined in the API specification section (referenced using ${variable_name})
  6. Literal string constants
@@ -372,13 +373,13 @@

This section is optional. If access evaluation is enabled, then this section details how to construct the access evaluation request body for the external API.

accessEvaluation:
-subject:
+  subject:
     id: "${subject_token.email}"
-action:
-    name: "${purp}"
-resource:
+  action:
+    name: "${body.orderType}"
+  resource:
     stockId: "${stockId}"
-

This section supports referencing all default azdMapping references (${body}, ${header}, and ${variable_name}) as well as transaction-token request components (grant_type, requested_token_type, audience, purpose, subject-token, subject-token-type, request-details, and request-context).

+

This section supports referencing all default azdMapping references (${body}, ${header}, ${queryParameters}, and ${variable_name}) as well as transaction-token request components (subject-token, request-details, and request-context).

The configuration above generates an access evaluation request body as follows:

{
     "subject": {
diff --git a/docs/index.html b/docs/index.html
index 93de86a..c08eab3 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -324,9 +324,9 @@ 

subject: id: "${subject_token.email}" action: - name: "${purp}" + name: "${body.orderType}" resource: - stockId: "${request_details.body.stockId}"Tratteria can call out to an AuthZEN API to evaluate whether execution should proceed. This specifies how to construct the request for access evaluation. + stockId: "${stockId}"Tratteria can call out to an AuthZEN API to evaluate whether execution should proceed. This specifies how to construct the request for access evaluation.