/AWS1/IF_TBD=>CREATELICENSEENDPOINT()¶
About CreateLicenseEndpoint¶
Creates a license endpoint to integrate your various licensed software used for rendering on Deadline Cloud.
Method Signature¶
METHODS /AWS1/IF_TBD~CREATELICENSEENDPOINT
IMPORTING
!IV_CLIENTTOKEN TYPE /AWS1/TBDCLIENTTOKEN OPTIONAL
!IV_VPCID TYPE /AWS1/TBDVPCID OPTIONAL
!IT_SUBNETIDS TYPE /AWS1/CL_TBDSUBNETIDLIST_W=>TT_SUBNETIDLIST OPTIONAL
!IT_SECURITYGROUPIDS TYPE /AWS1/CL_TBDSECGROUPIDLIST_W=>TT_SECURITYGROUPIDLIST OPTIONAL
!IT_TAGS TYPE /AWS1/CL_TBDTAGS_W=>TT_TAGS OPTIONAL
RETURNING
VALUE(OO_OUTPUT) TYPE REF TO /aws1/cl_tbdcrelicenseendptrsp
RAISING
/AWS1/CX_TBDACCESSDENIEDEX
/AWS1/CX_TBDCONFLICTEXCEPTION
/AWS1/CX_TBDINTERNALSERVERER00
/AWS1/CX_TBDSERVICEQUOTAEXCDEX
/AWS1/CX_TBDTHROTTLINGEX
/AWS1/CX_TBDVALIDATIONEX
/AWS1/CX_TBDCLIENTEXC
/AWS1/CX_TBDSERVEREXC
/AWS1/CX_RT_TECHNICAL_GENERIC
/AWS1/CX_RT_SERVICE_GENERIC.
IMPORTING¶
Required arguments:¶
iv_vpcid TYPE /AWS1/TBDVPCID /AWS1/TBDVPCID¶
The VPC (virtual private cloud) ID to use with the license endpoint.
it_subnetids TYPE /AWS1/CL_TBDSUBNETIDLIST_W=>TT_SUBNETIDLIST TT_SUBNETIDLIST¶
The subnet IDs.
it_securitygroupids TYPE /AWS1/CL_TBDSECGROUPIDLIST_W=>TT_SECURITYGROUPIDLIST TT_SECURITYGROUPIDLIST¶
The security group IDs.
Optional arguments:¶
iv_clienttoken TYPE /AWS1/TBDCLIENTTOKEN /AWS1/TBDCLIENTTOKEN¶
The unique token which the server uses to recognize retries of the same request.
it_tags TYPE /AWS1/CL_TBDTAGS_W=>TT_TAGS TT_TAGS¶
Each tag consists of a tag key and a tag value. Tag keys and values are both required, but tag values can be empty strings.
RETURNING¶
oo_output TYPE REF TO /aws1/cl_tbdcrelicenseendptrsp /AWS1/CL_TBDCRELICENSEENDPTRSP¶
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->createlicenseendpoint(
it_securitygroupids = VALUE /aws1/cl_tbdsecgroupidlist_w=>tt_securitygroupidlist(
( new /aws1/cl_tbdsecgroupidlist_w( |string| ) )
)
it_subnetids = VALUE /aws1/cl_tbdsubnetidlist_w=>tt_subnetidlist(
( new /aws1/cl_tbdsubnetidlist_w( |string| ) )
)
it_tags = VALUE /aws1/cl_tbdtags_w=>tt_tags(
(
VALUE /aws1/cl_tbdtags_w=>ts_tags_maprow(
value = new /aws1/cl_tbdtags_w( |string| )
key = |string|
)
)
)
iv_clienttoken = |string|
iv_vpcid = |string|
).
This is an example of reading all possible response values
lo_result = lo_result.
IF lo_result IS NOT INITIAL.
lv_licenseendpointid = lo_result->get_licenseendpointid( ).
ENDIF.