/AWS1/IF_DZN=>CREATEASSET()¶
About CreateAsset¶
Creates an asset in Amazon DataZone catalog.
Before creating assets, make sure that the following requirements are met:
-
--domain-identifiermust refer to an existing domain. -
--owning-project-identifiermust be a valid project within the domain. -
Asset type must be created beforehand using
create-asset-type, or be a supported system-defined type. For more information, see create-asset-type. -
--type-revision(if used) must match a valid revision of the asset type. -
formsInputis required when it is associated as required in theasset-type. For more information, see create-form-type. -
Form content must include all required fields as per the form schema (e.g.,
bucketArn).
You must invoke the following pre-requisite commands before invoking this API:
Method Signature¶
METHODS /AWS1/IF_DZN~CREATEASSET
IMPORTING
!IV_NAME TYPE /AWS1/DZNASSETNAME OPTIONAL
!IV_DOMAINIDENTIFIER TYPE /AWS1/DZNDOMAINID OPTIONAL
!IV_EXTERNALIDENTIFIER TYPE /AWS1/DZNEXTERNALIDENTIFIER OPTIONAL
!IV_TYPEIDENTIFIER TYPE /AWS1/DZNASSETTYPEIDENTIFIER OPTIONAL
!IV_TYPEREVISION TYPE /AWS1/DZNREVISION OPTIONAL
!IV_DESCRIPTION TYPE /AWS1/DZNDESCRIPTION OPTIONAL
!IT_GLOSSARYTERMS TYPE /AWS1/CL_DZNGLOSSARYTERMS_W=>TT_GLOSSARYTERMS OPTIONAL
!IT_FORMSINPUT TYPE /AWS1/CL_DZNFORMINPUT=>TT_FORMINPUTLIST OPTIONAL
!IV_OWNINGPROJECTIDENTIFIER TYPE /AWS1/DZNPROJECTID OPTIONAL
!IO_PREDICTIONCONFIGURATION TYPE REF TO /AWS1/CL_DZNPREDICTIONCONF OPTIONAL
!IV_CLIENTTOKEN TYPE /AWS1/DZNCLIENTTOKEN OPTIONAL
RETURNING
VALUE(OO_OUTPUT) TYPE REF TO /aws1/cl_dzncreateassetoutput
RAISING
/AWS1/CX_DZNACCESSDENIEDEX
/AWS1/CX_DZNTHROTTLINGEX
/AWS1/CX_DZNUNAUTHORIZEDEX
/AWS1/CX_DZNCONFLICTEXCEPTION
/AWS1/CX_DZNINTERNALSERVEREX
/AWS1/CX_DZNRESOURCENOTFOUNDEX
/AWS1/CX_DZNSERVICEQUOTAEXCDEX
/AWS1/CX_DZNVALIDATIONEX
/AWS1/CX_DZNCLIENTEXC
/AWS1/CX_DZNSERVEREXC
/AWS1/CX_RT_TECHNICAL_GENERIC
/AWS1/CX_RT_SERVICE_GENERIC.
IMPORTING¶
Required arguments:¶
iv_name TYPE /AWS1/DZNASSETNAME /AWS1/DZNASSETNAME¶
Asset name.
iv_domainidentifier TYPE /AWS1/DZNDOMAINID /AWS1/DZNDOMAINID¶
Amazon DataZone domain where the asset is created.
iv_typeidentifier TYPE /AWS1/DZNASSETTYPEIDENTIFIER /AWS1/DZNASSETTYPEIDENTIFIER¶
The unique identifier of this asset's type.
iv_owningprojectidentifier TYPE /AWS1/DZNPROJECTID /AWS1/DZNPROJECTID¶
The unique identifier of the project that owns this asset.
Optional arguments:¶
iv_externalidentifier TYPE /AWS1/DZNEXTERNALIDENTIFIER /AWS1/DZNEXTERNALIDENTIFIER¶
The external identifier of the asset.
If the value for the
externalIdentifierparameter is specified, it must be a unique value.
iv_typerevision TYPE /AWS1/DZNREVISION /AWS1/DZNREVISION¶
The revision of this asset's type.
iv_description TYPE /AWS1/DZNDESCRIPTION /AWS1/DZNDESCRIPTION¶
Asset description.
it_glossaryterms TYPE /AWS1/CL_DZNGLOSSARYTERMS_W=>TT_GLOSSARYTERMS TT_GLOSSARYTERMS¶
Glossary terms attached to the asset.
it_formsinput TYPE /AWS1/CL_DZNFORMINPUT=>TT_FORMINPUTLIST TT_FORMINPUTLIST¶
Metadata forms attached to the asset.
io_predictionconfiguration TYPE REF TO /AWS1/CL_DZNPREDICTIONCONF /AWS1/CL_DZNPREDICTIONCONF¶
The configuration of the automatically generated business-friendly metadata for the asset.
iv_clienttoken TYPE /AWS1/DZNCLIENTTOKEN /AWS1/DZNCLIENTTOKEN¶
A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.
RETURNING¶
oo_output TYPE REF TO /aws1/cl_dzncreateassetoutput /AWS1/CL_DZNCREATEASSETOUTPUT¶
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->createasset(
io_predictionconfiguration = new /aws1/cl_dznpredictionconf( new /aws1/cl_dznbusinessnamegene00( ABAP_TRUE ) )
it_formsinput = VALUE /aws1/cl_dznforminput=>tt_forminputlist(
(
new /aws1/cl_dznforminput(
iv_content = |string|
iv_formname = |string|
iv_typeidentifier = |string|
iv_typerevision = |string|
)
)
)
it_glossaryterms = VALUE /aws1/cl_dznglossaryterms_w=>tt_glossaryterms(
( new /aws1/cl_dznglossaryterms_w( |string| ) )
)
iv_clienttoken = |string|
iv_description = |string|
iv_domainidentifier = |string|
iv_externalidentifier = |string|
iv_name = |string|
iv_owningprojectidentifier = |string|
iv_typeidentifier = |string|
iv_typerevision = |string|
).
This is an example of reading all possible response values
lo_result = lo_result.
IF lo_result IS NOT INITIAL.
lv_assetid = lo_result->get_id( ).
lv_assetname = lo_result->get_name( ).
lv_assettypeidentifier = lo_result->get_typeidentifier( ).
lv_revision = lo_result->get_typerevision( ).
lv_externalidentifier = lo_result->get_externalidentifier( ).
lv_revision = lo_result->get_revision( ).
lv_description = lo_result->get_description( ).
lv_createdat = lo_result->get_createdat( ).
lv_createdby = lo_result->get_createdby( ).
lv_createdat = lo_result->get_firstrevisioncreatedat( ).
lv_createdby = lo_result->get_firstrevisioncreatedby( ).
LOOP AT lo_result->get_glossaryterms( ) into lo_row.
lo_row_1 = lo_row.
IF lo_row_1 IS NOT INITIAL.
lv_glossarytermid = lo_row_1->get_value( ).
ENDIF.
ENDLOOP.
LOOP AT lo_result->get_governedglossaryterms( ) into lo_row_2.
lo_row_3 = lo_row_2.
IF lo_row_3 IS NOT INITIAL.
lv_glossarytermid = lo_row_3->get_value( ).
ENDIF.
ENDLOOP.
lv_projectid = lo_result->get_owningprojectid( ).
lv_domainid = lo_result->get_domainid( ).
lo_assetlistingdetails = lo_result->get_listing( ).
IF lo_assetlistingdetails IS NOT INITIAL.
lv_listingid = lo_assetlistingdetails->get_listingid( ).
lv_listingstatus = lo_assetlistingdetails->get_listingstatus( ).
ENDIF.
LOOP AT lo_result->get_formsoutput( ) into lo_row_4.
lo_row_5 = lo_row_4.
IF lo_row_5 IS NOT INITIAL.
lv_formname = lo_row_5->get_formname( ).
lv_formtypename = lo_row_5->get_typename( ).
lv_revision = lo_row_5->get_typerevision( ).
lv_string = lo_row_5->get_content( ).
ENDIF.
ENDLOOP.
LOOP AT lo_result->get_readonlyformsoutput( ) into lo_row_4.
lo_row_5 = lo_row_4.
IF lo_row_5 IS NOT INITIAL.
lv_formname = lo_row_5->get_formname( ).
lv_formtypename = lo_row_5->get_typename( ).
lv_revision = lo_row_5->get_typerevision( ).
lv_string = lo_row_5->get_content( ).
ENDIF.
ENDLOOP.
LOOP AT lo_result->get_latsttimeseriesdataptf01( ) into lo_row_6.
lo_row_7 = lo_row_6.
IF lo_row_7 IS NOT INITIAL.
lv_timeseriesformname = lo_row_7->get_formname( ).
lv_formtypeidentifier = lo_row_7->get_typeidentifier( ).
lv_revision = lo_row_7->get_typerevision( ).
lv_timestamp = lo_row_7->get_timestamp( ).
lv_string = lo_row_7->get_contentsummary( ).
lv_datapointidentifier = lo_row_7->get_id( ).
ENDIF.
ENDLOOP.
lo_predictionconfiguration = lo_result->get_predictionconfiguration( ).
IF lo_predictionconfiguration IS NOT INITIAL.
lo_businessnamegenerationc = lo_predictionconfiguration->get_businessnamegeneration( ).
IF lo_businessnamegenerationc IS NOT INITIAL.
lv_boolean = lo_businessnamegenerationc->get_enabled( ).
ENDIF.
ENDIF.
ENDIF.