/AWS1/IF_OMX=>UPDATEVARIANTSTORE()¶
About UpdateVariantStore¶
Amazon Web Services HealthOmics variant stores and annotation stores are no longer open to new customers. Existing customers can continue to use the service as normal. For more information, see Amazon Web Services HealthOmics variant store and annotation store availability change.
Updates a variant store.
Method Signature¶
METHODS /AWS1/IF_OMX~UPDATEVARIANTSTORE
IMPORTING
!IV_NAME TYPE /AWS1/OMXSTRING OPTIONAL
!IV_DESCRIPTION TYPE /AWS1/OMXDESCRIPTION OPTIONAL
RETURNING
VALUE(OO_OUTPUT) TYPE REF TO /aws1/cl_omxupdvariantstorersp
RAISING
/AWS1/CX_OMXACCESSDENIEDEX
/AWS1/CX_OMXINTERNALSERVEREX
/AWS1/CX_OMXRESOURCENOTFOUNDEX
/AWS1/CX_OMXTHROTTLINGEX
/AWS1/CX_OMXVALIDATIONEX
/AWS1/CX_OMXCLIENTEXC
/AWS1/CX_OMXSERVEREXC
/AWS1/CX_RT_TECHNICAL_GENERIC
/AWS1/CX_RT_SERVICE_GENERIC.
IMPORTING¶
Required arguments:¶
iv_name TYPE /AWS1/OMXSTRING /AWS1/OMXSTRING¶
A name for the store.
Optional arguments:¶
iv_description TYPE /AWS1/OMXDESCRIPTION /AWS1/OMXDESCRIPTION¶
A description for the store.
RETURNING¶
oo_output TYPE REF TO /aws1/cl_omxupdvariantstorersp /AWS1/CL_OMXUPDVARIANTSTORERSP¶
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->updatevariantstore(
iv_description = |string|
iv_name = |string|
).
This is an example of reading all possible response values
lo_result = lo_result.
IF lo_result IS NOT INITIAL.
lv_resourceid = lo_result->get_id( ).
lo_referenceitem = lo_result->get_reference( ).
IF lo_referenceitem IS NOT INITIAL.
lv_referencearn = lo_referenceitem->get_referencearn( ).
ENDIF.
lv_storestatus = lo_result->get_status( ).
lv_string = lo_result->get_name( ).
lv_description = lo_result->get_description( ).
lv_creationtime = lo_result->get_creationtime( ).
lv_updatetime = lo_result->get_updatetime( ).
ENDIF.