/AWS1/IF_MDX=>CREATEGATEWAY()¶
About CreateGateway¶
Creates a new gateway. The request must include at least one network (up to four).
Method Signature¶
METHODS /AWS1/IF_MDX~CREATEGATEWAY
  IMPORTING
    !IT_EGRESSCIDRBLOCKS TYPE /AWS1/CL_MDX__LISTOFSTRING_W=>TT___LISTOFSTRING OPTIONAL
    !IV_NAME TYPE /AWS1/MDXSTRING OPTIONAL
    !IT_NETWORKS TYPE /AWS1/CL_MDXGATEWAYNETWORK=>TT___LISTOFGATEWAYNETWORK OPTIONAL
  RETURNING
    VALUE(OO_OUTPUT) TYPE REF TO /aws1/cl_mdxcreategatewayrsp
  RAISING
    /AWS1/CX_MDXBADREQUESTEX
    /AWS1/CX_MDXCONFLICTEXCEPTION
    /AWS1/CX_MDXCREATEGATEWAY420EX
    /AWS1/CX_MDXFORBIDDENEXCEPTION
    /AWS1/CX_MDXINTERNALSERVERER00
    /AWS1/CX_MDXSERVICEUNAVAILEX
    /AWS1/CX_MDXTOOMANYREQUESTSEX
    /AWS1/CX_MDXCLIENTEXC
    /AWS1/CX_MDXSERVEREXC
    /AWS1/CX_RT_TECHNICAL_GENERIC
    /AWS1/CX_RT_SERVICE_GENERIC.
IMPORTING¶
Required arguments:¶
it_egresscidrblocks TYPE /AWS1/CL_MDX__LISTOFSTRING_W=>TT___LISTOFSTRING TT___LISTOFSTRING¶
The range of IP addresses that are allowed to contribute content or initiate output requests for flows communicating with this gateway. These IP addresses should be in the form of a Classless Inter-Domain Routing (CIDR) block; for example, 10.0.0.0/16.
iv_name TYPE /AWS1/MDXSTRING /AWS1/MDXSTRING¶
The name of the gateway. This name can not be modified after the gateway is created.
it_networks TYPE /AWS1/CL_MDXGATEWAYNETWORK=>TT___LISTOFGATEWAYNETWORK TT___LISTOFGATEWAYNETWORK¶
The list of networks that you want to add to the gateway.
RETURNING¶
oo_output TYPE REF TO /aws1/cl_mdxcreategatewayrsp /AWS1/CL_MDXCREATEGATEWAYRSP¶
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->creategateway(
  it_egresscidrblocks = VALUE /aws1/cl_mdx__listofstring_w=>tt___listofstring(
    ( new /aws1/cl_mdx__listofstring_w( |string| ) )
  )
  it_networks = VALUE /aws1/cl_mdxgatewaynetwork=>tt___listofgatewaynetwork(
    (
      new /aws1/cl_mdxgatewaynetwork(
        iv_cidrblock = |string|
        iv_name = |string|
      )
    )
  )
  iv_name = |string|
).
This is an example of reading all possible response values
lo_result = lo_result.
IF lo_result IS NOT INITIAL.
  lo_gateway = lo_result->get_gateway( ).
  IF lo_gateway IS NOT INITIAL.
    LOOP AT lo_gateway->get_egresscidrblocks( ) into lo_row.
      lo_row_1 = lo_row.
      IF lo_row_1 IS NOT INITIAL.
        lv_string = lo_row_1->get_value( ).
      ENDIF.
    ENDLOOP.
    lv_string = lo_gateway->get_gatewayarn( ).
    LOOP AT lo_gateway->get_gatewaymessages( ) into lo_row_2.
      lo_row_3 = lo_row_2.
      IF lo_row_3 IS NOT INITIAL.
        lv_string = lo_row_3->get_code( ).
        lv_string = lo_row_3->get_message( ).
        lv_string = lo_row_3->get_resourcename( ).
      ENDIF.
    ENDLOOP.
    lv_gatewaystate = lo_gateway->get_gatewaystate( ).
    lv_string = lo_gateway->get_name( ).
    LOOP AT lo_gateway->get_networks( ) into lo_row_4.
      lo_row_5 = lo_row_4.
      IF lo_row_5 IS NOT INITIAL.
        lv_string = lo_row_5->get_cidrblock( ).
        lv_string = lo_row_5->get_name( ).
      ENDIF.
    ENDLOOP.
  ENDIF.
ENDIF.