/AWS1/IF_SSA=>UPDATETRUSTEDTOKENISSUER()
¶
About UpdateTrustedTokenIssuer¶
Updates the name of the trusted token issuer, or the path of a source attribute or destination attribute for a trusted token issuer configuration.
Updating this trusted token issuer configuration might cause users to lose access to any applications that are configured to use the trusted token issuer.
Method Signature¶
IMPORTING¶
Required arguments:¶
iv_trustedtokenissuerarn
TYPE /AWS1/SSATRUSTEDTOKENISSUERARN
/AWS1/SSATRUSTEDTOKENISSUERARN
¶
Specifies the ARN of the trusted token issuer configuration that you want to update.
Optional arguments:¶
iv_name
TYPE /AWS1/SSATRUSTEDTOKISSUERNAME
/AWS1/SSATRUSTEDTOKISSUERNAME
¶
Specifies the updated name to be applied to the trusted token issuer configuration.
io_trustedtokenissuerconf
TYPE REF TO /AWS1/CL_SSATRUSTEDTOKISSUER02
/AWS1/CL_SSATRUSTEDTOKISSUER02
¶
Specifies a structure with settings to apply to the specified trusted token issuer. The settings that you can provide are determined by the type of the trusted token issuer that you are updating.
RETURNING¶
oo_output
TYPE REF TO /aws1/cl_ssauptrustedtokissu01
/AWS1/CL_SSAUPTRUSTEDTOKISSU01
¶
Domain /AWS1/RT_ACCOUNT_ID Primitive Type NUMC
Examples¶
Syntax Example¶
This is an example of the syntax for calling the method. It includes every possible argument and initializes every possible value. The data provided is not necessarily semantically accurate (for example the value "string" may be provided for something that is intended to be an instance ID, or in some cases two arguments may be mutually exclusive). The syntax shows the ABAP syntax for creating the various data structures.
DATA(lo_result) = lo_client->/aws1/if_ssa~updatetrustedtokenissuer(
io_trustedtokenissuerconf = new /aws1/cl_ssatrustedtokissuer02(
io_oidcjwtconfiguration = new /aws1/cl_ssaoidcjwtupdateconf(
iv_claimattributepath = |string|
iv_identitystoreattrpath = |string|
iv_jwksretrievaloption = |string|
)
)
iv_name = |string|
iv_trustedtokenissuerarn = |string|
).
This is an example of reading all possible response values
lo_result = lo_result.
IF lo_result IS NOT INITIAL.
ENDIF.