/AWS1/IF_LIS=>DELETELICENSESERVERENDPOINT()¶
About DeleteLicenseServerEndpoint¶
Deletes a LicenseServerEndpoint resource.
Method Signature¶
METHODS /AWS1/IF_LIS~DELETELICENSESERVERENDPOINT
IMPORTING
!IV_LICENSESERVERENDPOINTARN TYPE /AWS1/LISARN OPTIONAL
!IV_SERVERTYPE TYPE /AWS1/LISSERVERTYPE OPTIONAL
RETURNING
VALUE(OO_OUTPUT) TYPE REF TO /aws1/cl_lisdellicenseserver01
RAISING
/AWS1/CX_LISACCESSDENIEDEX
/AWS1/CX_LISCONFLICTEXCEPTION
/AWS1/CX_LISINTERNALSERVEREX
/AWS1/CX_LISRESOURCENOTFOUNDEX
/AWS1/CX_LISSERVICEQUOTAEXCDEX
/AWS1/CX_LISTHROTTLINGEX
/AWS1/CX_LISVALIDATIONEX
/AWS1/CX_LISCLIENTEXC
/AWS1/CX_LISSERVEREXC
/AWS1/CX_RT_TECHNICAL_GENERIC
/AWS1/CX_RT_SERVICE_GENERIC.
IMPORTING¶
Required arguments:¶
iv_licenseserverendpointarn TYPE /AWS1/LISARN /AWS1/LISARN¶
The Amazon Resource Name (ARN) that identifies the
LicenseServerEndpointresource to delete.
iv_servertype TYPE /AWS1/LISSERVERTYPE /AWS1/LISSERVERTYPE¶
The type of License Server that the delete request refers to.
RETURNING¶
oo_output TYPE REF TO /aws1/cl_lisdellicenseserver01 /AWS1/CL_LISDELLICENSESERVER01¶
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->deletelicenseserverendpoint(
iv_licenseserverendpointarn = |string|
iv_servertype = |string|
).
This is an example of reading all possible response values
lo_result = lo_result.
IF lo_result IS NOT INITIAL.
lo_licenseserverendpoint = lo_result->get_licenseserverendpoint( ).
IF lo_licenseserverendpoint IS NOT INITIAL.
lv_string = lo_licenseserverendpoint->get_identityproviderarn( ).
lv_servertype = lo_licenseserverendpoint->get_servertype( ).
lo_serverendpoint = lo_licenseserverendpoint->get_serverendpoint( ).
IF lo_serverendpoint IS NOT INITIAL.
lv_string = lo_serverendpoint->get_endpoint( ).
ENDIF.
lv_string = lo_licenseserverendpoint->get_statusmessage( ).
lv_licenseserverendpointid = lo_licenseserverendpoint->get_licenseserverendpointid( ).
lv_arn = lo_licenseserverendpoint->get_licenseserverendpointarn( ).
lv_licenseserverendpointpr = lo_licenseserverendpoint->get_licenseserverendptprov00( ).
LOOP AT lo_licenseserverendpoint->get_licenseservers( ) into lo_row.
lo_row_1 = lo_row.
IF lo_row_1 IS NOT INITIAL.
lv_licenseserverendpointpr = lo_row_1->get_provisioningstatus( ).
lv_licenseserverhealthstat = lo_row_1->get_healthstatus( ).
lv_string = lo_row_1->get_ipv4address( ).
lv_string = lo_row_1->get_ipv6address( ).
ENDIF.
ENDLOOP.
lv_timestamp = lo_licenseserverendpoint->get_creationtime( ).
ENDIF.
ENDIF.