/AWS1/IF_TNB=>LISTLANGUAGEMODELS()¶
About ListLanguageModels¶
Provides a list of custom language models that match the specified criteria. If no criteria are specified, all custom language models are returned.
To get detailed information about a specific custom language model, use the operation.
Method Signature¶
METHODS /AWS1/IF_TNB~LISTLANGUAGEMODELS
  IMPORTING
    !IV_STATUSEQUALS TYPE /AWS1/TNBMODELSTATUS OPTIONAL
    !IV_NAMECONTAINS TYPE /AWS1/TNBMODELNAME OPTIONAL
    !IV_NEXTTOKEN TYPE /AWS1/TNBNEXTTOKEN OPTIONAL
    !IV_MAXRESULTS TYPE /AWS1/TNBMAXRESULTS OPTIONAL
  RETURNING
    VALUE(OO_OUTPUT) TYPE REF TO /aws1/cl_tnblstlanguagemdels01
  RAISING
    /AWS1/CX_TNBBADREQUESTEX
    /AWS1/CX_TNBINTERNALFAILUREEX
    /AWS1/CX_TNBLIMITEXCEEDEDEX
    /AWS1/CX_TNBCLIENTEXC
    /AWS1/CX_TNBSERVEREXC
    /AWS1/CX_RT_TECHNICAL_GENERIC
    /AWS1/CX_RT_SERVICE_GENERIC.
IMPORTING¶
Optional arguments:¶
iv_statusequals TYPE /AWS1/TNBMODELSTATUS /AWS1/TNBMODELSTATUS¶
Returns only custom language models with the specified status. Language models are ordered by creation date, with the newest model first. If you do not include
StatusEquals, all custom language models are returned.
iv_namecontains TYPE /AWS1/TNBMODELNAME /AWS1/TNBMODELNAME¶
Returns only the custom language models that contain the specified string. The search is not case sensitive.
iv_nexttoken TYPE /AWS1/TNBNEXTTOKEN /AWS1/TNBNEXTTOKEN¶
If your
ListLanguageModelsrequest returns more results than can be displayed,NextTokenis displayed in the response with an associated string. To get the next page of results, copy this string and repeat your request, includingNextTokenwith the value of the copied string. Repeat as needed to view all your results.
iv_maxresults TYPE /AWS1/TNBMAXRESULTS /AWS1/TNBMAXRESULTS¶
The maximum number of custom language models to return in each page of results. If there are fewer results than the value that you specify, only the actual results are returned. If you do not specify a value, a default of 5 is used.
RETURNING¶
oo_output TYPE REF TO /aws1/cl_tnblstlanguagemdels01 /AWS1/CL_TNBLSTLANGUAGEMDELS01¶
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->listlanguagemodels(
  iv_maxresults = 123
  iv_namecontains = |string|
  iv_nexttoken = |string|
  iv_statusequals = |string|
).
This is an example of reading all possible response values
lo_result = lo_result.
IF lo_result IS NOT INITIAL.
  lv_nexttoken = lo_result->get_nexttoken( ).
  LOOP AT lo_result->get_models( ) into lo_row.
    lo_row_1 = lo_row.
    IF lo_row_1 IS NOT INITIAL.
      lv_modelname = lo_row_1->get_modelname( ).
      lv_datetime = lo_row_1->get_createtime( ).
      lv_datetime = lo_row_1->get_lastmodifiedtime( ).
      lv_clmlanguagecode = lo_row_1->get_languagecode( ).
      lv_basemodelname = lo_row_1->get_basemodelname( ).
      lv_modelstatus = lo_row_1->get_modelstatus( ).
      lv_boolean = lo_row_1->get_upgradeavailability( ).
      lv_failurereason = lo_row_1->get_failurereason( ).
      lo_inputdataconfig = lo_row_1->get_inputdataconfig( ).
      IF lo_inputdataconfig IS NOT INITIAL.
        lv_uri = lo_inputdataconfig->get_s3uri( ).
        lv_uri = lo_inputdataconfig->get_tuningdatas3uri( ).
        lv_dataaccessrolearn = lo_inputdataconfig->get_dataaccessrolearn( ).
      ENDIF.
    ENDIF.
  ENDLOOP.
ENDIF.