/AWS1/IF_SGM=>UPDATEINFERENCECOMPONENT()¶
About UpdateInferenceComponent¶
Updates an inference component.
Method Signature¶
METHODS /AWS1/IF_SGM~UPDATEINFERENCECOMPONENT
IMPORTING
!IV_INFERENCECOMPONENTNAME TYPE /AWS1/SGMINFERENCECOMPONENTN00 OPTIONAL
!IO_SPECIFICATION TYPE REF TO /AWS1/CL_SGMINFERENCECOMPONE00 OPTIONAL
!IO_RUNTIMECONFIG TYPE REF TO /AWS1/CL_SGMINFERENCECOMPONE04 OPTIONAL
!IO_DEPLOYMENTCONFIG TYPE REF TO /AWS1/CL_SGMINFERENCECOMPONE09 OPTIONAL
RETURNING
VALUE(OO_OUTPUT) TYPE REF TO /aws1/cl_sgmupinferencecompo01
RAISING
/AWS1/CX_SGMRESOURCELIMITEXCD
/AWS1/CX_SGMCLIENTEXC
/AWS1/CX_SGMSERVEREXC
/AWS1/CX_RT_TECHNICAL_GENERIC
/AWS1/CX_RT_SERVICE_GENERIC.
IMPORTING¶
Required arguments:¶
iv_inferencecomponentname TYPE /AWS1/SGMINFERENCECOMPONENTN00 /AWS1/SGMINFERENCECOMPONENTN00¶
The name of the inference component.
Optional arguments:¶
io_specification TYPE REF TO /AWS1/CL_SGMINFERENCECOMPONE00 /AWS1/CL_SGMINFERENCECOMPONE00¶
Details about the resources to deploy with this inference component, including the model, container, and compute resources.
io_runtimeconfig TYPE REF TO /AWS1/CL_SGMINFERENCECOMPONE04 /AWS1/CL_SGMINFERENCECOMPONE04¶
Runtime settings for a model that is deployed with an inference component.
io_deploymentconfig TYPE REF TO /AWS1/CL_SGMINFERENCECOMPONE09 /AWS1/CL_SGMINFERENCECOMPONE09¶
The deployment configuration for the inference component. The configuration contains the desired deployment strategy and rollback settings.
RETURNING¶
oo_output TYPE REF TO /aws1/cl_sgmupinferencecompo01 /AWS1/CL_SGMUPINFERENCECOMPO01¶
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->updateinferencecomponent(
io_deploymentconfig = new /aws1/cl_sgminferencecompone09(
io_autorollbackconfiguration = new /aws1/cl_sgmautorollbackconfig(
it_alarms = VALUE /aws1/cl_sgmalarm=>tt_alarmlist(
( new /aws1/cl_sgmalarm( |string| ) )
)
)
io_rollingupdatepolicy = new /aws1/cl_sgminferencecompone10(
io_maximumbatchsize = new /aws1/cl_sgminferencecompone11(
iv_type = |string|
iv_value = 123
)
io_rollbackmaximumbatchsize = new /aws1/cl_sgminferencecompone11(
iv_type = |string|
iv_value = 123
)
iv_maxexectimeoutinseconds = 123
iv_waitintervalinseconds = 123
)
)
io_runtimeconfig = new /aws1/cl_sgminferencecompone04( 123 )
io_specification = new /aws1/cl_sgminferencecompone00(
io_computeresrcrequirements = new /aws1/cl_sgminferencecompone03(
iv_maxmemoryrequiredinmb = 123
iv_minmemoryrequiredinmb = 123
iv_numberofcpucoresrequired = '0.1'
iv_numofacceleratordevsreq00 = '0.1'
)
io_container = new /aws1/cl_sgminferencecompone01(
it_environment = VALUE /aws1/cl_sgmenvironmentmap_w=>tt_environmentmap(
(
VALUE /aws1/cl_sgmenvironmentmap_w=>ts_environmentmap_maprow(
key = |string|
value = new /aws1/cl_sgmenvironmentmap_w( |string| )
)
)
)
iv_artifacturl = |string|
iv_image = |string|
)
io_datacacheconfig = new /aws1/cl_sgminferencecompone12( ABAP_TRUE )
io_startupparameters = new /aws1/cl_sgminferencecompone02(
iv_containerstrtuphealthch00 = 123
iv_mdeldatadownloadtmoutin00 = 123
)
iv_baseinferencecomponentn00 = |string|
iv_modelname = |string|
)
iv_inferencecomponentname = |string|
).
This is an example of reading all possible response values
lo_result = lo_result.
IF lo_result IS NOT INITIAL.
lv_inferencecomponentarn = lo_result->get_inferencecomponentarn( ).
ENDIF.