/AWS1/IF_BDO=>GETGATEWAY()¶
About GetGateway¶
Retrieves information about a specific Gateway.
Method Signature¶
METHODS /AWS1/IF_BDO~GETGATEWAY
IMPORTING
!IV_GATEWAYIDENTIFIER TYPE /AWS1/BDOGATEWAYIDENTIFIER OPTIONAL
RETURNING
VALUE(OO_OUTPUT) TYPE REF TO /aws1/cl_bdogetgatewayresponse
RAISING
/AWS1/CX_BDOACCESSDENIEDEX
/AWS1/CX_BDOINTERNALSERVEREX
/AWS1/CX_BDORESOURCENOTFOUNDEX
/AWS1/CX_BDOTHROTTLINGEX
/AWS1/CX_BDOVALIDATIONEX
/AWS1/CX_BDOCLIENTEXC
/AWS1/CX_BDOSERVEREXC
/AWS1/CX_RT_TECHNICAL_GENERIC
/AWS1/CX_RT_SERVICE_GENERIC.
IMPORTING¶
Required arguments:¶
iv_gatewayidentifier TYPE /AWS1/BDOGATEWAYIDENTIFIER /AWS1/BDOGATEWAYIDENTIFIER¶
The identifier of the gateway to retrieve.
RETURNING¶
oo_output TYPE REF TO /aws1/cl_bdogetgatewayresponse /AWS1/CL_BDOGETGATEWAYRESPONSE¶
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->getgateway( |string| ).
This is an example of reading all possible response values
lo_result = lo_result.
IF lo_result IS NOT INITIAL.
lv_gatewayarn = lo_result->get_gatewayarn( ).
lv_gatewayid = lo_result->get_gatewayid( ).
lv_gatewayurl = lo_result->get_gatewayurl( ).
lv_datetimestamp = lo_result->get_createdat( ).
lv_datetimestamp = lo_result->get_updatedat( ).
lv_gatewaystatus = lo_result->get_status( ).
LOOP AT lo_result->get_statusreasons( ) into lo_row.
lo_row_1 = lo_row.
IF lo_row_1 IS NOT INITIAL.
lv_statusreason = lo_row_1->get_value( ).
ENDIF.
ENDLOOP.
lv_gatewayname = lo_result->get_name( ).
lv_gatewaydescription = lo_result->get_description( ).
lv_rolearn = lo_result->get_rolearn( ).
lv_gatewayprotocoltype = lo_result->get_protocoltype( ).
lo_gatewayprotocolconfigur = lo_result->get_protocolconfiguration( ).
IF lo_gatewayprotocolconfigur IS NOT INITIAL.
lo_mcpgatewayconfiguration = lo_gatewayprotocolconfigur->get_mcp( ).
IF lo_mcpgatewayconfiguration IS NOT INITIAL.
LOOP AT lo_mcpgatewayconfiguration->get_supportedversions( ) into lo_row_2.
lo_row_3 = lo_row_2.
IF lo_row_3 IS NOT INITIAL.
lv_mcpversion = lo_row_3->get_value( ).
ENDIF.
ENDLOOP.
lv_mcpinstructions = lo_mcpgatewayconfiguration->get_instructions( ).
lv_searchtype = lo_mcpgatewayconfiguration->get_searchtype( ).
ENDIF.
ENDIF.
lv_authorizertype = lo_result->get_authorizertype( ).
lo_authorizerconfiguration = lo_result->get_authorizerconfiguration( ).
IF lo_authorizerconfiguration IS NOT INITIAL.
lo_customjwtauthorizerconf = lo_authorizerconfiguration->get_customjwtauthorizer( ).
IF lo_customjwtauthorizerconf IS NOT INITIAL.
lv_discoveryurl = lo_customjwtauthorizerconf->get_discoveryurl( ).
LOOP AT lo_customjwtauthorizerconf->get_allowedaudience( ) into lo_row_4.
lo_row_5 = lo_row_4.
IF lo_row_5 IS NOT INITIAL.
lv_allowedaudience = lo_row_5->get_value( ).
ENDIF.
ENDLOOP.
LOOP AT lo_customjwtauthorizerconf->get_allowedclients( ) into lo_row_6.
lo_row_7 = lo_row_6.
IF lo_row_7 IS NOT INITIAL.
lv_allowedclient = lo_row_7->get_value( ).
ENDIF.
ENDLOOP.
LOOP AT lo_customjwtauthorizerconf->get_allowedscopes( ) into lo_row_8.
lo_row_9 = lo_row_8.
IF lo_row_9 IS NOT INITIAL.
lv_allowedscopetype = lo_row_9->get_value( ).
ENDIF.
ENDLOOP.
LOOP AT lo_customjwtauthorizerconf->get_customclaims( ) into lo_row_10.
lo_row_11 = lo_row_10.
IF lo_row_11 IS NOT INITIAL.
lv_inboundtokenclaimnamety = lo_row_11->get_inboundtokenclaimname( ).
lv_inboundtokenclaimvaluet = lo_row_11->get_indbtokenclaimvaluetype( ).
lo_authorizingclaimmatchva = lo_row_11->get_authorizingclaimmatchval( ).
IF lo_authorizingclaimmatchva IS NOT INITIAL.
lo_claimmatchvaluetype = lo_authorizingclaimmatchva->get_claimmatchvalue( ).
IF lo_claimmatchvaluetype IS NOT INITIAL.
lv_matchvaluestring = lo_claimmatchvaluetype->get_matchvaluestring( ).
LOOP AT lo_claimmatchvaluetype->get_matchvaluestringlist( ) into lo_row_12.
lo_row_13 = lo_row_12.
IF lo_row_13 IS NOT INITIAL.
lv_matchvaluestring = lo_row_13->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
lv_claimmatchoperatortype = lo_authorizingclaimmatchva->get_claimmatchoperator( ).
ENDIF.
ENDIF.
ENDLOOP.
ENDIF.
ENDIF.
lv_kmskeyarn = lo_result->get_kmskeyarn( ).
LOOP AT lo_result->get_interceptorconfs( ) into lo_row_14.
lo_row_15 = lo_row_14.
IF lo_row_15 IS NOT INITIAL.
lo_interceptorconfiguratio = lo_row_15->get_interceptor( ).
IF lo_interceptorconfiguratio IS NOT INITIAL.
lo_lambdainterceptorconfig = lo_interceptorconfiguratio->get_lambda( ).
IF lo_lambdainterceptorconfig IS NOT INITIAL.
lv_lambdafunctionarn = lo_lambdainterceptorconfig->get_arn( ).
ENDIF.
ENDIF.
LOOP AT lo_row_15->get_interceptionpoints( ) into lo_row_16.
lo_row_17 = lo_row_16.
IF lo_row_17 IS NOT INITIAL.
lv_gatewayinterceptionpoin = lo_row_17->get_value( ).
ENDIF.
ENDLOOP.
lo_interceptorinputconfigu = lo_row_15->get_inputconfiguration( ).
IF lo_interceptorinputconfigu IS NOT INITIAL.
lv_boolean = lo_interceptorinputconfigu->get_passrequestheaders( ).
ENDIF.
ENDIF.
ENDLOOP.
lo_gatewaypolicyengineconf = lo_result->get_policyengineconf( ).
IF lo_gatewaypolicyengineconf IS NOT INITIAL.
lv_gatewaypolicyenginearn = lo_gatewaypolicyengineconf->get_arn( ).
lv_gatewaypolicyenginemode = lo_gatewaypolicyengineconf->get_mode( ).
ENDIF.
lo_workloadidentitydetails = lo_result->get_workloadidentitydetails( ).
IF lo_workloadidentitydetails IS NOT INITIAL.
lv_workloadidentityarn = lo_workloadidentitydetails->get_workloadidentityarn( ).
ENDIF.
lv_exceptionlevel = lo_result->get_exceptionlevel( ).
ENDIF.