/AWS1/IF_GLU=>DESCRIBECONNECTIONTYPE()¶
About DescribeConnectionType¶
The DescribeConnectionType API provides full details of the supported options for a given connection type in Glue. The response includes authentication configuration details that show supported authentication types and properties, and RestConfiguration for custom REST-based connection types registered via RegisterConnectionType.
See also: ListConnectionTypes, RegisterConnectionType, DeleteConnectionType
Method Signature¶
METHODS /AWS1/IF_GLU~DESCRIBECONNECTIONTYPE
IMPORTING
!IV_CONNECTIONTYPE TYPE /AWS1/GLUNAMESTRING OPTIONAL
RETURNING
VALUE(OO_OUTPUT) TYPE REF TO /aws1/cl_gludescrconntypersp
RAISING
/AWS1/CX_GLUACCESSDENIEDEX
/AWS1/CX_GLUINTERNALSERVICEEX
/AWS1/CX_GLUINVALIDINPUTEX
/AWS1/CX_GLUVALIDATIONEX
/AWS1/CX_GLUCLIENTEXC
/AWS1/CX_GLUSERVEREXC
/AWS1/CX_RT_TECHNICAL_GENERIC
/AWS1/CX_RT_SERVICE_GENERIC.
IMPORTING¶
Required arguments:¶
iv_connectiontype TYPE /AWS1/GLUNAMESTRING /AWS1/GLUNAMESTRING¶
The name of the connection type to be described.
RETURNING¶
oo_output TYPE REF TO /aws1/cl_gludescrconntypersp /AWS1/CL_GLUDESCRCONNTYPERSP¶
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->describeconnectiontype( |string| ).
This is an example of reading all possible response values
lo_result = lo_result.
IF lo_result IS NOT INITIAL.
lv_namestring = lo_result->get_connectiontype( ).
lv_description = lo_result->get_description( ).
lo_capabilities = lo_result->get_capabilities( ).
IF lo_capabilities IS NOT INITIAL.
LOOP AT lo_capabilities->get_supportedauthntctntypes( ) into lo_row.
lo_row_1 = lo_row.
IF lo_row_1 IS NOT INITIAL.
lv_authenticationtype = lo_row_1->get_value( ).
ENDIF.
ENDLOOP.
LOOP AT lo_capabilities->get_supporteddataoperations( ) into lo_row_2.
lo_row_3 = lo_row_2.
IF lo_row_3 IS NOT INITIAL.
lv_dataoperation = lo_row_3->get_value( ).
ENDIF.
ENDLOOP.
LOOP AT lo_capabilities->get_suppedcomputeenvironme00( ) into lo_row_4.
lo_row_5 = lo_row_4.
IF lo_row_5 IS NOT INITIAL.
lv_computeenvironment = lo_row_5->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
LOOP AT lo_result->get_connectionproperties( ) into ls_row_6.
lv_key = ls_row_6-key.
lo_value = ls_row_6-value.
IF lo_value IS NOT INITIAL.
lv_propertyname = lo_value->get_name( ).
lv_propertydescriptionstri = lo_value->get_description( ).
lv_bool = lo_value->get_required( ).
lv_string = lo_value->get_defaultvalue( ).
LOOP AT lo_value->get_propertytypes( ) into lo_row_7.
lo_row_8 = lo_row_7.
IF lo_row_8 IS NOT INITIAL.
lv_propertytype = lo_row_8->get_value( ).
ENDIF.
ENDLOOP.
LOOP AT lo_value->get_allowedvalues( ) into lo_row_9.
lo_row_10 = lo_row_9.
IF lo_row_10 IS NOT INITIAL.
lv_allowedvaluedescription = lo_row_10->get_description( ).
lv_allowedvaluevaluestring = lo_row_10->get_value( ).
ENDIF.
ENDLOOP.
LOOP AT lo_value->get_dataoperationscopes( ) into lo_row_2.
lo_row_3 = lo_row_2.
IF lo_row_3 IS NOT INITIAL.
lv_dataoperation = lo_row_3->get_value( ).
ENDIF.
ENDLOOP.
lv_string = lo_value->get_keyoverride( ).
lv_propertylocation = lo_value->get_propertylocation( ).
ENDIF.
ENDLOOP.
LOOP AT lo_result->get_connectionoptions( ) into ls_row_6.
lv_key = ls_row_6-key.
lo_value = ls_row_6-value.
IF lo_value IS NOT INITIAL.
lv_propertyname = lo_value->get_name( ).
lv_propertydescriptionstri = lo_value->get_description( ).
lv_bool = lo_value->get_required( ).
lv_string = lo_value->get_defaultvalue( ).
LOOP AT lo_value->get_propertytypes( ) into lo_row_7.
lo_row_8 = lo_row_7.
IF lo_row_8 IS NOT INITIAL.
lv_propertytype = lo_row_8->get_value( ).
ENDIF.
ENDLOOP.
LOOP AT lo_value->get_allowedvalues( ) into lo_row_9.
lo_row_10 = lo_row_9.
IF lo_row_10 IS NOT INITIAL.
lv_allowedvaluedescription = lo_row_10->get_description( ).
lv_allowedvaluevaluestring = lo_row_10->get_value( ).
ENDIF.
ENDLOOP.
LOOP AT lo_value->get_dataoperationscopes( ) into lo_row_2.
lo_row_3 = lo_row_2.
IF lo_row_3 IS NOT INITIAL.
lv_dataoperation = lo_row_3->get_value( ).
ENDIF.
ENDLOOP.
lv_string = lo_value->get_keyoverride( ).
lv_propertylocation = lo_value->get_propertylocation( ).
ENDIF.
ENDLOOP.
lo_authconfiguration = lo_result->get_authntctnconfiguration( ).
IF lo_authconfiguration IS NOT INITIAL.
lo_property = lo_authconfiguration->get_authenticationtype( ).
IF lo_property IS NOT INITIAL.
lv_propertyname = lo_property->get_name( ).
lv_propertydescriptionstri = lo_property->get_description( ).
lv_bool = lo_property->get_required( ).
lv_string = lo_property->get_defaultvalue( ).
LOOP AT lo_property->get_propertytypes( ) into lo_row_7.
lo_row_8 = lo_row_7.
IF lo_row_8 IS NOT INITIAL.
lv_propertytype = lo_row_8->get_value( ).
ENDIF.
ENDLOOP.
LOOP AT lo_property->get_allowedvalues( ) into lo_row_9.
lo_row_10 = lo_row_9.
IF lo_row_10 IS NOT INITIAL.
lv_allowedvaluedescription = lo_row_10->get_description( ).
lv_allowedvaluevaluestring = lo_row_10->get_value( ).
ENDIF.
ENDLOOP.
LOOP AT lo_property->get_dataoperationscopes( ) into lo_row_2.
lo_row_3 = lo_row_2.
IF lo_row_3 IS NOT INITIAL.
lv_dataoperation = lo_row_3->get_value( ).
ENDIF.
ENDLOOP.
lv_string = lo_property->get_keyoverride( ).
lv_propertylocation = lo_property->get_propertylocation( ).
ENDIF.
lo_property = lo_authconfiguration->get_secretarn( ).
IF lo_property IS NOT INITIAL.
lv_propertyname = lo_property->get_name( ).
lv_propertydescriptionstri = lo_property->get_description( ).
lv_bool = lo_property->get_required( ).
lv_string = lo_property->get_defaultvalue( ).
LOOP AT lo_property->get_propertytypes( ) into lo_row_7.
lo_row_8 = lo_row_7.
IF lo_row_8 IS NOT INITIAL.
lv_propertytype = lo_row_8->get_value( ).
ENDIF.
ENDLOOP.
LOOP AT lo_property->get_allowedvalues( ) into lo_row_9.
lo_row_10 = lo_row_9.
IF lo_row_10 IS NOT INITIAL.
lv_allowedvaluedescription = lo_row_10->get_description( ).
lv_allowedvaluevaluestring = lo_row_10->get_value( ).
ENDIF.
ENDLOOP.
LOOP AT lo_property->get_dataoperationscopes( ) into lo_row_2.
lo_row_3 = lo_row_2.
IF lo_row_3 IS NOT INITIAL.
lv_dataoperation = lo_row_3->get_value( ).
ENDIF.
ENDLOOP.
lv_string = lo_property->get_keyoverride( ).
lv_propertylocation = lo_property->get_propertylocation( ).
ENDIF.
LOOP AT lo_authconfiguration->get_oauth2properties( ) into ls_row_6.
lv_key = ls_row_6-key.
lo_value = ls_row_6-value.
IF lo_value IS NOT INITIAL.
lv_propertyname = lo_value->get_name( ).
lv_propertydescriptionstri = lo_value->get_description( ).
lv_bool = lo_value->get_required( ).
lv_string = lo_value->get_defaultvalue( ).
LOOP AT lo_value->get_propertytypes( ) into lo_row_7.
lo_row_8 = lo_row_7.
IF lo_row_8 IS NOT INITIAL.
lv_propertytype = lo_row_8->get_value( ).
ENDIF.
ENDLOOP.
LOOP AT lo_value->get_allowedvalues( ) into lo_row_9.
lo_row_10 = lo_row_9.
IF lo_row_10 IS NOT INITIAL.
lv_allowedvaluedescription = lo_row_10->get_description( ).
lv_allowedvaluevaluestring = lo_row_10->get_value( ).
ENDIF.
ENDLOOP.
LOOP AT lo_value->get_dataoperationscopes( ) into lo_row_2.
lo_row_3 = lo_row_2.
IF lo_row_3 IS NOT INITIAL.
lv_dataoperation = lo_row_3->get_value( ).
ENDIF.
ENDLOOP.
lv_string = lo_value->get_keyoverride( ).
lv_propertylocation = lo_value->get_propertylocation( ).
ENDIF.
ENDLOOP.
LOOP AT lo_authconfiguration->get_basicauthntctnproperties( ) into ls_row_6.
lv_key = ls_row_6-key.
lo_value = ls_row_6-value.
IF lo_value IS NOT INITIAL.
lv_propertyname = lo_value->get_name( ).
lv_propertydescriptionstri = lo_value->get_description( ).
lv_bool = lo_value->get_required( ).
lv_string = lo_value->get_defaultvalue( ).
LOOP AT lo_value->get_propertytypes( ) into lo_row_7.
lo_row_8 = lo_row_7.
IF lo_row_8 IS NOT INITIAL.
lv_propertytype = lo_row_8->get_value( ).
ENDIF.
ENDLOOP.
LOOP AT lo_value->get_allowedvalues( ) into lo_row_9.
lo_row_10 = lo_row_9.
IF lo_row_10 IS NOT INITIAL.
lv_allowedvaluedescription = lo_row_10->get_description( ).
lv_allowedvaluevaluestring = lo_row_10->get_value( ).
ENDIF.
ENDLOOP.
LOOP AT lo_value->get_dataoperationscopes( ) into lo_row_2.
lo_row_3 = lo_row_2.
IF lo_row_3 IS NOT INITIAL.
lv_dataoperation = lo_row_3->get_value( ).
ENDIF.
ENDLOOP.
lv_string = lo_value->get_keyoverride( ).
lv_propertylocation = lo_value->get_propertylocation( ).
ENDIF.
ENDLOOP.
LOOP AT lo_authconfiguration->get_customauthntctnprps( ) into ls_row_6.
lv_key = ls_row_6-key.
lo_value = ls_row_6-value.
IF lo_value IS NOT INITIAL.
lv_propertyname = lo_value->get_name( ).
lv_propertydescriptionstri = lo_value->get_description( ).
lv_bool = lo_value->get_required( ).
lv_string = lo_value->get_defaultvalue( ).
LOOP AT lo_value->get_propertytypes( ) into lo_row_7.
lo_row_8 = lo_row_7.
IF lo_row_8 IS NOT INITIAL.
lv_propertytype = lo_row_8->get_value( ).
ENDIF.
ENDLOOP.
LOOP AT lo_value->get_allowedvalues( ) into lo_row_9.
lo_row_10 = lo_row_9.
IF lo_row_10 IS NOT INITIAL.
lv_allowedvaluedescription = lo_row_10->get_description( ).
lv_allowedvaluevaluestring = lo_row_10->get_value( ).
ENDIF.
ENDLOOP.
LOOP AT lo_value->get_dataoperationscopes( ) into lo_row_2.
lo_row_3 = lo_row_2.
IF lo_row_3 IS NOT INITIAL.
lv_dataoperation = lo_row_3->get_value( ).
ENDIF.
ENDLOOP.
lv_string = lo_value->get_keyoverride( ).
lv_propertylocation = lo_value->get_propertylocation( ).
ENDIF.
ENDLOOP.
ENDIF.
LOOP AT lo_result->get_computeenvironmentconfs( ) into ls_row_11.
lv_key_1 = ls_row_11-key.
lo_value_1 = ls_row_11-value.
IF lo_value_1 IS NOT INITIAL.
lv_computeenvironmentname = lo_value_1->get_name( ).
lv_computeenvironmentconfi = lo_value_1->get_description( ).
lv_computeenvironment = lo_value_1->get_computeenvironment( ).
LOOP AT lo_value_1->get_supportedauthntctntypes( ) into lo_row.
lo_row_1 = lo_row.
IF lo_row_1 IS NOT INITIAL.
lv_authenticationtype = lo_row_1->get_value( ).
ENDIF.
ENDLOOP.
LOOP AT lo_value_1->get_connectionoptions( ) into ls_row_6.
lv_key = ls_row_6-key.
lo_value = ls_row_6-value.
IF lo_value IS NOT INITIAL.
lv_propertyname = lo_value->get_name( ).
lv_propertydescriptionstri = lo_value->get_description( ).
lv_bool = lo_value->get_required( ).
lv_string = lo_value->get_defaultvalue( ).
LOOP AT lo_value->get_propertytypes( ) into lo_row_7.
lo_row_8 = lo_row_7.
IF lo_row_8 IS NOT INITIAL.
lv_propertytype = lo_row_8->get_value( ).
ENDIF.
ENDLOOP.
LOOP AT lo_value->get_allowedvalues( ) into lo_row_9.
lo_row_10 = lo_row_9.
IF lo_row_10 IS NOT INITIAL.
lv_allowedvaluedescription = lo_row_10->get_description( ).
lv_allowedvaluevaluestring = lo_row_10->get_value( ).
ENDIF.
ENDLOOP.
LOOP AT lo_value->get_dataoperationscopes( ) into lo_row_2.
lo_row_3 = lo_row_2.
IF lo_row_3 IS NOT INITIAL.
lv_dataoperation = lo_row_3->get_value( ).
ENDIF.
ENDLOOP.
lv_string = lo_value->get_keyoverride( ).
lv_propertylocation = lo_value->get_propertylocation( ).
ENDIF.
ENDLOOP.
LOOP AT lo_value_1->get_connprpnameoverrides( ) into ls_row_12.
lv_key = ls_row_12-key.
lo_value_2 = ls_row_12-value.
IF lo_value_2 IS NOT INITIAL.
lv_propertyname = lo_value_2->get_value( ).
ENDIF.
ENDLOOP.
LOOP AT lo_value_1->get_connoptionnameoverrides( ) into ls_row_12.
lv_key = ls_row_12-key.
lo_value_2 = ls_row_12-value.
IF lo_value_2 IS NOT INITIAL.
lv_propertyname = lo_value_2->get_value( ).
ENDIF.
ENDLOOP.
LOOP AT lo_value_1->get_connprpsrequiredoverri00( ) into lo_row_13.
lo_row_14 = lo_row_13.
IF lo_row_14 IS NOT INITIAL.
lv_string = lo_row_14->get_value( ).
ENDIF.
ENDLOOP.
lv_bool = lo_value_1->get_physicalconnprpsrequired( ).
ENDIF.
ENDLOOP.
LOOP AT lo_result->get_physicalconnrequirements( ) into ls_row_6.
lv_key = ls_row_6-key.
lo_value = ls_row_6-value.
IF lo_value IS NOT INITIAL.
lv_propertyname = lo_value->get_name( ).
lv_propertydescriptionstri = lo_value->get_description( ).
lv_bool = lo_value->get_required( ).
lv_string = lo_value->get_defaultvalue( ).
LOOP AT lo_value->get_propertytypes( ) into lo_row_7.
lo_row_8 = lo_row_7.
IF lo_row_8 IS NOT INITIAL.
lv_propertytype = lo_row_8->get_value( ).
ENDIF.
ENDLOOP.
LOOP AT lo_value->get_allowedvalues( ) into lo_row_9.
lo_row_10 = lo_row_9.
IF lo_row_10 IS NOT INITIAL.
lv_allowedvaluedescription = lo_row_10->get_description( ).
lv_allowedvaluevaluestring = lo_row_10->get_value( ).
ENDIF.
ENDLOOP.
LOOP AT lo_value->get_dataoperationscopes( ) into lo_row_2.
lo_row_3 = lo_row_2.
IF lo_row_3 IS NOT INITIAL.
lv_dataoperation = lo_row_3->get_value( ).
ENDIF.
ENDLOOP.
lv_string = lo_value->get_keyoverride( ).
lv_propertylocation = lo_value->get_propertylocation( ).
ENDIF.
ENDLOOP.
LOOP AT lo_result->get_athenaconnproperties( ) into ls_row_6.
lv_key = ls_row_6-key.
lo_value = ls_row_6-value.
IF lo_value IS NOT INITIAL.
lv_propertyname = lo_value->get_name( ).
lv_propertydescriptionstri = lo_value->get_description( ).
lv_bool = lo_value->get_required( ).
lv_string = lo_value->get_defaultvalue( ).
LOOP AT lo_value->get_propertytypes( ) into lo_row_7.
lo_row_8 = lo_row_7.
IF lo_row_8 IS NOT INITIAL.
lv_propertytype = lo_row_8->get_value( ).
ENDIF.
ENDLOOP.
LOOP AT lo_value->get_allowedvalues( ) into lo_row_9.
lo_row_10 = lo_row_9.
IF lo_row_10 IS NOT INITIAL.
lv_allowedvaluedescription = lo_row_10->get_description( ).
lv_allowedvaluevaluestring = lo_row_10->get_value( ).
ENDIF.
ENDLOOP.
LOOP AT lo_value->get_dataoperationscopes( ) into lo_row_2.
lo_row_3 = lo_row_2.
IF lo_row_3 IS NOT INITIAL.
lv_dataoperation = lo_row_3->get_value( ).
ENDIF.
ENDLOOP.
lv_string = lo_value->get_keyoverride( ).
lv_propertylocation = lo_value->get_propertylocation( ).
ENDIF.
ENDLOOP.
LOOP AT lo_result->get_pythonconnproperties( ) into ls_row_6.
lv_key = ls_row_6-key.
lo_value = ls_row_6-value.
IF lo_value IS NOT INITIAL.
lv_propertyname = lo_value->get_name( ).
lv_propertydescriptionstri = lo_value->get_description( ).
lv_bool = lo_value->get_required( ).
lv_string = lo_value->get_defaultvalue( ).
LOOP AT lo_value->get_propertytypes( ) into lo_row_7.
lo_row_8 = lo_row_7.
IF lo_row_8 IS NOT INITIAL.
lv_propertytype = lo_row_8->get_value( ).
ENDIF.
ENDLOOP.
LOOP AT lo_value->get_allowedvalues( ) into lo_row_9.
lo_row_10 = lo_row_9.
IF lo_row_10 IS NOT INITIAL.
lv_allowedvaluedescription = lo_row_10->get_description( ).
lv_allowedvaluevaluestring = lo_row_10->get_value( ).
ENDIF.
ENDLOOP.
LOOP AT lo_value->get_dataoperationscopes( ) into lo_row_2.
lo_row_3 = lo_row_2.
IF lo_row_3 IS NOT INITIAL.
lv_dataoperation = lo_row_3->get_value( ).
ENDIF.
ENDLOOP.
lv_string = lo_value->get_keyoverride( ).
lv_propertylocation = lo_value->get_propertylocation( ).
ENDIF.
ENDLOOP.
LOOP AT lo_result->get_sparkconnproperties( ) into ls_row_6.
lv_key = ls_row_6-key.
lo_value = ls_row_6-value.
IF lo_value IS NOT INITIAL.
lv_propertyname = lo_value->get_name( ).
lv_propertydescriptionstri = lo_value->get_description( ).
lv_bool = lo_value->get_required( ).
lv_string = lo_value->get_defaultvalue( ).
LOOP AT lo_value->get_propertytypes( ) into lo_row_7.
lo_row_8 = lo_row_7.
IF lo_row_8 IS NOT INITIAL.
lv_propertytype = lo_row_8->get_value( ).
ENDIF.
ENDLOOP.
LOOP AT lo_value->get_allowedvalues( ) into lo_row_9.
lo_row_10 = lo_row_9.
IF lo_row_10 IS NOT INITIAL.
lv_allowedvaluedescription = lo_row_10->get_description( ).
lv_allowedvaluevaluestring = lo_row_10->get_value( ).
ENDIF.
ENDLOOP.
LOOP AT lo_value->get_dataoperationscopes( ) into lo_row_2.
lo_row_3 = lo_row_2.
IF lo_row_3 IS NOT INITIAL.
lv_dataoperation = lo_row_3->get_value( ).
ENDIF.
ENDLOOP.
lv_string = lo_value->get_keyoverride( ).
lv_propertylocation = lo_value->get_propertylocation( ).
ENDIF.
ENDLOOP.
lo_restconfiguration = lo_result->get_restconfiguration( ).
IF lo_restconfiguration IS NOT INITIAL.
lo_sourceconfiguration = lo_restconfiguration->get_globalsourceconf( ).
IF lo_sourceconfiguration IS NOT INITIAL.
lv_httpmethod = lo_sourceconfiguration->get_requestmethod( ).
lv_pathstring = lo_sourceconfiguration->get_requestpath( ).
LOOP AT lo_sourceconfiguration->get_requestparameters( ) into lo_row_15.
lo_row_16 = lo_row_15.
IF lo_row_16 IS NOT INITIAL.
lv_propertyname = lo_row_16->get_name( ).
lv_connectorpropertykey = lo_row_16->get_keyoverride( ).
lv_bool = lo_row_16->get_required( ).
lv_string = lo_row_16->get_defaultvalue( ).
LOOP AT lo_row_16->get_allowedvalues( ) into lo_row_13.
lo_row_14 = lo_row_13.
IF lo_row_14 IS NOT INITIAL.
lv_string = lo_row_14->get_value( ).
ENDIF.
ENDLOOP.
lv_propertylocation = lo_row_16->get_propertylocation( ).
lv_propertytype = lo_row_16->get_propertytype( ).
ENDIF.
ENDLOOP.
lo_responseconfiguration = lo_sourceconfiguration->get_responseconfiguration( ).
IF lo_responseconfiguration IS NOT INITIAL.
lv_jsonpathstring = lo_responseconfiguration->get_resultpath( ).
lv_jsonpathstring = lo_responseconfiguration->get_errorpath( ).
ENDIF.
lo_paginationconfiguration = lo_sourceconfiguration->get_paginationconfiguration( ).
IF lo_paginationconfiguration IS NOT INITIAL.
lo_cursorconfiguration = lo_paginationconfiguration->get_cursorconfiguration( ).
IF lo_cursorconfiguration IS NOT INITIAL.
lo_extractedparameter = lo_cursorconfiguration->get_nextpage( ).
IF lo_extractedparameter IS NOT INITIAL.
lv_connectorpropertykey = lo_extractedparameter->get_key( ).
lv_defaultvalue = lo_extractedparameter->get_defaultvalue( ).
lv_propertylocation = lo_extractedparameter->get_propertylocation( ).
lo_responseextractionmappi = lo_extractedparameter->get_value( ).
IF lo_responseextractionmappi IS NOT INITIAL.
lv_jsonpathstring = lo_responseextractionmappi->get_contentpath( ).
lv_connectorpropertykey = lo_responseextractionmappi->get_headerkey( ).
ENDIF.
ENDIF.
lo_extractedparameter = lo_cursorconfiguration->get_limitparameter( ).
IF lo_extractedparameter IS NOT INITIAL.
lv_connectorpropertykey = lo_extractedparameter->get_key( ).
lv_defaultvalue = lo_extractedparameter->get_defaultvalue( ).
lv_propertylocation = lo_extractedparameter->get_propertylocation( ).
lo_responseextractionmappi = lo_extractedparameter->get_value( ).
IF lo_responseextractionmappi IS NOT INITIAL.
lv_jsonpathstring = lo_responseextractionmappi->get_contentpath( ).
lv_connectorpropertykey = lo_responseextractionmappi->get_headerkey( ).
ENDIF.
ENDIF.
ENDIF.
lo_offsetconfiguration = lo_paginationconfiguration->get_offsetconfiguration( ).
IF lo_offsetconfiguration IS NOT INITIAL.
lo_extractedparameter = lo_offsetconfiguration->get_offsetparameter( ).
IF lo_extractedparameter IS NOT INITIAL.
lv_connectorpropertykey = lo_extractedparameter->get_key( ).
lv_defaultvalue = lo_extractedparameter->get_defaultvalue( ).
lv_propertylocation = lo_extractedparameter->get_propertylocation( ).
lo_responseextractionmappi = lo_extractedparameter->get_value( ).
IF lo_responseextractionmappi IS NOT INITIAL.
lv_jsonpathstring = lo_responseextractionmappi->get_contentpath( ).
lv_connectorpropertykey = lo_responseextractionmappi->get_headerkey( ).
ENDIF.
ENDIF.
lo_extractedparameter = lo_offsetconfiguration->get_limitparameter( ).
IF lo_extractedparameter IS NOT INITIAL.
lv_connectorpropertykey = lo_extractedparameter->get_key( ).
lv_defaultvalue = lo_extractedparameter->get_defaultvalue( ).
lv_propertylocation = lo_extractedparameter->get_propertylocation( ).
lo_responseextractionmappi = lo_extractedparameter->get_value( ).
IF lo_responseextractionmappi IS NOT INITIAL.
lv_jsonpathstring = lo_responseextractionmappi->get_contentpath( ).
lv_connectorpropertykey = lo_responseextractionmappi->get_headerkey( ).
ENDIF.
ENDIF.
ENDIF.
ENDIF.
ENDIF.
lo_sourceconfiguration = lo_restconfiguration->get_validationendpointconf( ).
IF lo_sourceconfiguration IS NOT INITIAL.
lv_httpmethod = lo_sourceconfiguration->get_requestmethod( ).
lv_pathstring = lo_sourceconfiguration->get_requestpath( ).
LOOP AT lo_sourceconfiguration->get_requestparameters( ) into lo_row_15.
lo_row_16 = lo_row_15.
IF lo_row_16 IS NOT INITIAL.
lv_propertyname = lo_row_16->get_name( ).
lv_connectorpropertykey = lo_row_16->get_keyoverride( ).
lv_bool = lo_row_16->get_required( ).
lv_string = lo_row_16->get_defaultvalue( ).
LOOP AT lo_row_16->get_allowedvalues( ) into lo_row_13.
lo_row_14 = lo_row_13.
IF lo_row_14 IS NOT INITIAL.
lv_string = lo_row_14->get_value( ).
ENDIF.
ENDLOOP.
lv_propertylocation = lo_row_16->get_propertylocation( ).
lv_propertytype = lo_row_16->get_propertytype( ).
ENDIF.
ENDLOOP.
lo_responseconfiguration = lo_sourceconfiguration->get_responseconfiguration( ).
IF lo_responseconfiguration IS NOT INITIAL.
lv_jsonpathstring = lo_responseconfiguration->get_resultpath( ).
lv_jsonpathstring = lo_responseconfiguration->get_errorpath( ).
ENDIF.
lo_paginationconfiguration = lo_sourceconfiguration->get_paginationconfiguration( ).
IF lo_paginationconfiguration IS NOT INITIAL.
lo_cursorconfiguration = lo_paginationconfiguration->get_cursorconfiguration( ).
IF lo_cursorconfiguration IS NOT INITIAL.
lo_extractedparameter = lo_cursorconfiguration->get_nextpage( ).
IF lo_extractedparameter IS NOT INITIAL.
lv_connectorpropertykey = lo_extractedparameter->get_key( ).
lv_defaultvalue = lo_extractedparameter->get_defaultvalue( ).
lv_propertylocation = lo_extractedparameter->get_propertylocation( ).
lo_responseextractionmappi = lo_extractedparameter->get_value( ).
IF lo_responseextractionmappi IS NOT INITIAL.
lv_jsonpathstring = lo_responseextractionmappi->get_contentpath( ).
lv_connectorpropertykey = lo_responseextractionmappi->get_headerkey( ).
ENDIF.
ENDIF.
lo_extractedparameter = lo_cursorconfiguration->get_limitparameter( ).
IF lo_extractedparameter IS NOT INITIAL.
lv_connectorpropertykey = lo_extractedparameter->get_key( ).
lv_defaultvalue = lo_extractedparameter->get_defaultvalue( ).
lv_propertylocation = lo_extractedparameter->get_propertylocation( ).
lo_responseextractionmappi = lo_extractedparameter->get_value( ).
IF lo_responseextractionmappi IS NOT INITIAL.
lv_jsonpathstring = lo_responseextractionmappi->get_contentpath( ).
lv_connectorpropertykey = lo_responseextractionmappi->get_headerkey( ).
ENDIF.
ENDIF.
ENDIF.
lo_offsetconfiguration = lo_paginationconfiguration->get_offsetconfiguration( ).
IF lo_offsetconfiguration IS NOT INITIAL.
lo_extractedparameter = lo_offsetconfiguration->get_offsetparameter( ).
IF lo_extractedparameter IS NOT INITIAL.
lv_connectorpropertykey = lo_extractedparameter->get_key( ).
lv_defaultvalue = lo_extractedparameter->get_defaultvalue( ).
lv_propertylocation = lo_extractedparameter->get_propertylocation( ).
lo_responseextractionmappi = lo_extractedparameter->get_value( ).
IF lo_responseextractionmappi IS NOT INITIAL.
lv_jsonpathstring = lo_responseextractionmappi->get_contentpath( ).
lv_connectorpropertykey = lo_responseextractionmappi->get_headerkey( ).
ENDIF.
ENDIF.
lo_extractedparameter = lo_offsetconfiguration->get_limitparameter( ).
IF lo_extractedparameter IS NOT INITIAL.
lv_connectorpropertykey = lo_extractedparameter->get_key( ).
lv_defaultvalue = lo_extractedparameter->get_defaultvalue( ).
lv_propertylocation = lo_extractedparameter->get_propertylocation( ).
lo_responseextractionmappi = lo_extractedparameter->get_value( ).
IF lo_responseextractionmappi IS NOT INITIAL.
lv_jsonpathstring = lo_responseextractionmappi->get_contentpath( ).
lv_connectorpropertykey = lo_responseextractionmappi->get_headerkey( ).
ENDIF.
ENDIF.
ENDIF.
ENDIF.
ENDIF.
LOOP AT lo_restconfiguration->get_entityconfigurations( ) into ls_row_17.
lv_key_2 = ls_row_17-key.
lo_value_3 = ls_row_17-value.
IF lo_value_3 IS NOT INITIAL.
lo_sourceconfiguration = lo_value_3->get_sourceconfiguration( ).
IF lo_sourceconfiguration IS NOT INITIAL.
lv_httpmethod = lo_sourceconfiguration->get_requestmethod( ).
lv_pathstring = lo_sourceconfiguration->get_requestpath( ).
LOOP AT lo_sourceconfiguration->get_requestparameters( ) into lo_row_15.
lo_row_16 = lo_row_15.
IF lo_row_16 IS NOT INITIAL.
lv_propertyname = lo_row_16->get_name( ).
lv_connectorpropertykey = lo_row_16->get_keyoverride( ).
lv_bool = lo_row_16->get_required( ).
lv_string = lo_row_16->get_defaultvalue( ).
LOOP AT lo_row_16->get_allowedvalues( ) into lo_row_13.
lo_row_14 = lo_row_13.
IF lo_row_14 IS NOT INITIAL.
lv_string = lo_row_14->get_value( ).
ENDIF.
ENDLOOP.
lv_propertylocation = lo_row_16->get_propertylocation( ).
lv_propertytype = lo_row_16->get_propertytype( ).
ENDIF.
ENDLOOP.
lo_responseconfiguration = lo_sourceconfiguration->get_responseconfiguration( ).
IF lo_responseconfiguration IS NOT INITIAL.
lv_jsonpathstring = lo_responseconfiguration->get_resultpath( ).
lv_jsonpathstring = lo_responseconfiguration->get_errorpath( ).
ENDIF.
lo_paginationconfiguration = lo_sourceconfiguration->get_paginationconfiguration( ).
IF lo_paginationconfiguration IS NOT INITIAL.
lo_cursorconfiguration = lo_paginationconfiguration->get_cursorconfiguration( ).
IF lo_cursorconfiguration IS NOT INITIAL.
lo_extractedparameter = lo_cursorconfiguration->get_nextpage( ).
IF lo_extractedparameter IS NOT INITIAL.
lv_connectorpropertykey = lo_extractedparameter->get_key( ).
lv_defaultvalue = lo_extractedparameter->get_defaultvalue( ).
lv_propertylocation = lo_extractedparameter->get_propertylocation( ).
lo_responseextractionmappi = lo_extractedparameter->get_value( ).
IF lo_responseextractionmappi IS NOT INITIAL.
lv_jsonpathstring = lo_responseextractionmappi->get_contentpath( ).
lv_connectorpropertykey = lo_responseextractionmappi->get_headerkey( ).
ENDIF.
ENDIF.
lo_extractedparameter = lo_cursorconfiguration->get_limitparameter( ).
IF lo_extractedparameter IS NOT INITIAL.
lv_connectorpropertykey = lo_extractedparameter->get_key( ).
lv_defaultvalue = lo_extractedparameter->get_defaultvalue( ).
lv_propertylocation = lo_extractedparameter->get_propertylocation( ).
lo_responseextractionmappi = lo_extractedparameter->get_value( ).
IF lo_responseextractionmappi IS NOT INITIAL.
lv_jsonpathstring = lo_responseextractionmappi->get_contentpath( ).
lv_connectorpropertykey = lo_responseextractionmappi->get_headerkey( ).
ENDIF.
ENDIF.
ENDIF.
lo_offsetconfiguration = lo_paginationconfiguration->get_offsetconfiguration( ).
IF lo_offsetconfiguration IS NOT INITIAL.
lo_extractedparameter = lo_offsetconfiguration->get_offsetparameter( ).
IF lo_extractedparameter IS NOT INITIAL.
lv_connectorpropertykey = lo_extractedparameter->get_key( ).
lv_defaultvalue = lo_extractedparameter->get_defaultvalue( ).
lv_propertylocation = lo_extractedparameter->get_propertylocation( ).
lo_responseextractionmappi = lo_extractedparameter->get_value( ).
IF lo_responseextractionmappi IS NOT INITIAL.
lv_jsonpathstring = lo_responseextractionmappi->get_contentpath( ).
lv_connectorpropertykey = lo_responseextractionmappi->get_headerkey( ).
ENDIF.
ENDIF.
lo_extractedparameter = lo_offsetconfiguration->get_limitparameter( ).
IF lo_extractedparameter IS NOT INITIAL.
lv_connectorpropertykey = lo_extractedparameter->get_key( ).
lv_defaultvalue = lo_extractedparameter->get_defaultvalue( ).
lv_propertylocation = lo_extractedparameter->get_propertylocation( ).
lo_responseextractionmappi = lo_extractedparameter->get_value( ).
IF lo_responseextractionmappi IS NOT INITIAL.
lv_jsonpathstring = lo_responseextractionmappi->get_contentpath( ).
lv_connectorpropertykey = lo_responseextractionmappi->get_headerkey( ).
ENDIF.
ENDIF.
ENDIF.
ENDIF.
ENDIF.
LOOP AT lo_value_3->get_schema( ) into ls_row_18.
lv_key_3 = ls_row_18-key.
lo_value_4 = ls_row_18-value.
IF lo_value_4 IS NOT INITIAL.
lv_string = lo_value_4->get_name( ).
lv_fielddatatype = lo_value_4->get_fielddatatype( ).
ENDIF.
ENDLOOP.
ENDIF.
ENDLOOP.
ENDIF.
ENDIF.