/AWS1/IF_SQT=>PUTSVCQUOTAINCREQINTOTMPL()¶
About PutServiceQuotaIncreaseRequestIntoTemplate¶
Adds a quota increase request to your quota request template.
Method Signature¶
METHODS /AWS1/IF_SQT~PUTSVCQUOTAINCREQINTOTMPL
  IMPORTING
    !IV_QUOTACODE TYPE /AWS1/SQTQUOTACODE OPTIONAL
    !IV_SERVICECODE TYPE /AWS1/SQTSERVICECODE OPTIONAL
    !IV_AWSREGION TYPE /AWS1/SQTAWSREGION OPTIONAL
    !IV_DESIREDVALUE TYPE /AWS1/RT_DOUBLE_AS_STRING OPTIONAL
  RETURNING
    VALUE(OO_OUTPUT) TYPE REF TO /aws1/cl_sqtputsvcquotaincre01
  RAISING
    /AWS1/CX_SQTACCESSDENIEDEX
    /AWS1/CX_SQTAWSSVCACCNOTENBDEX
    /AWS1/CX_SQTDEPENDENCYACCDEN00
    /AWS1/CX_SQTILLEGALARGUMENTEX
    /AWS1/CX_SQTNOAVAILABLEORGEX
    /AWS1/CX_SQTNOSUCHRESOURCEEX
    /AWS1/CX_SQTQUOTAEXCEEDEDEX
    /AWS1/CX_SQTSERVICEEXCEPTION
    /AWS1/CX_SQTTMPLSNOTAVAILABL00
    /AWS1/CX_SQTTOOMANYREQUESTSEX
    /AWS1/CX_SQTCLIENTEXC
    /AWS1/CX_SQTSERVEREXC
    /AWS1/CX_RT_TECHNICAL_GENERIC
    /AWS1/CX_RT_SERVICE_GENERIC.
IMPORTING¶
Required arguments:¶
iv_quotacode TYPE /AWS1/SQTQUOTACODE /AWS1/SQTQUOTACODE¶
Specifies the quota identifier. To find the quota code for a specific quota, use the ListServiceQuotas operation, and look for the
QuotaCoderesponse in the output for the quota you want.
iv_servicecode TYPE /AWS1/SQTSERVICECODE /AWS1/SQTSERVICECODE¶
Specifies the service identifier. To find the service code value for an Amazon Web Services service, use the ListServices operation.
iv_awsregion TYPE /AWS1/SQTAWSREGION /AWS1/SQTAWSREGION¶
Specifies the Amazon Web Services Region to which the template applies.
iv_desiredvalue TYPE /AWS1/RT_DOUBLE_AS_STRING /AWS1/RT_DOUBLE_AS_STRING¶
Specifies the new, increased value for the quota.
RETURNING¶
oo_output TYPE REF TO /aws1/cl_sqtputsvcquotaincre01 /AWS1/CL_SQTPUTSVCQUOTAINCRE01¶
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->putsvcquotaincreqintotmpl(
  iv_awsregion = |string|
  iv_desiredvalue = |0.1|
  iv_quotacode = |string|
  iv_servicecode = |string|
).
This is an example of reading all possible response values
lo_result = lo_result.
IF lo_result IS NOT INITIAL.
  lo_servicequotaincreasereq = lo_result->get_svcquotaincrequestintmpl( ).
  IF lo_servicequotaincreasereq IS NOT INITIAL.
    lv_servicecode = lo_servicequotaincreasereq->get_servicecode( ).
    lv_servicename = lo_servicequotaincreasereq->get_servicename( ).
    lv_quotacode = lo_servicequotaincreasereq->get_quotacode( ).
    lv_quotaname = lo_servicequotaincreasereq->get_quotaname( ).
    lv_quotavalue = lo_servicequotaincreasereq->get_desiredvalue( ).
    lv_awsregion = lo_servicequotaincreasereq->get_awsregion( ).
    lv_quotaunit = lo_servicequotaincreasereq->get_unit( ).
    lv_globalquota = lo_servicequotaincreasereq->get_globalquota( ).
  ENDIF.
ENDIF.