/AWS1/IF_EC2=>IMPORTVOLUME00()¶
About ImportVolume¶
This API action supports only single-volume VMs. To import multi-volume VMs, use ImportImage instead. To import a disk to a snapshot, use ImportSnapshot instead.
Creates an import volume task using metadata from the specified disk image.
For information about the import manifest referenced by this API action, see VM Import Manifest.
This API action is not supported by the Command Line Interface (CLI).
Method Signature¶
METHODS /AWS1/IF_EC2~IMPORTVOLUME00
IMPORTING
!IV_AVAILABILITYZONEID TYPE /AWS1/EC2AVAILABILITYZONEID OPTIONAL
!IV_DRYRUN TYPE /AWS1/EC2BOOLEAN OPTIONAL
!IV_AVAILABILITYZONE TYPE /AWS1/EC2STRING OPTIONAL
!IO_IMAGE TYPE REF TO /AWS1/CL_EC2DISKIMAGEDETAIL OPTIONAL
!IV_DESCRIPTION TYPE /AWS1/EC2STRING OPTIONAL
!IO_VOLUME TYPE REF TO /AWS1/CL_EC2VOLUMEDETAIL OPTIONAL
RETURNING
VALUE(OO_OUTPUT) TYPE REF TO /aws1/cl_ec2importvolumeresult
RAISING
/AWS1/CX_EC2CLIENTEXC
/AWS1/CX_EC2SERVEREXC
/AWS1/CX_RT_TECHNICAL_GENERIC
/AWS1/CX_RT_SERVICE_GENERIC.
IMPORTING¶
Required arguments:¶
io_image TYPE REF TO /AWS1/CL_EC2DISKIMAGEDETAIL /AWS1/CL_EC2DISKIMAGEDETAIL¶
The disk image.
io_volume TYPE REF TO /AWS1/CL_EC2VOLUMEDETAIL /AWS1/CL_EC2VOLUMEDETAIL¶
The volume size.
Optional arguments:¶
iv_availabilityzoneid TYPE /AWS1/EC2AVAILABILITYZONEID /AWS1/EC2AVAILABILITYZONEID¶
The ID of the Availability Zone for the resulting EBS volume.
Either
AvailabilityZoneorAvailabilityZoneIdmust be specified, but not both.
iv_dryrun TYPE /AWS1/EC2BOOLEAN /AWS1/EC2BOOLEAN¶
Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is
DryRunOperation. Otherwise, it isUnauthorizedOperation.
iv_availabilityzone TYPE /AWS1/EC2STRING /AWS1/EC2STRING¶
The Availability Zone for the resulting EBS volume.
Either
AvailabilityZoneorAvailabilityZoneIdmust be specified, but not both.
iv_description TYPE /AWS1/EC2STRING /AWS1/EC2STRING¶
A description of the volume.
RETURNING¶
oo_output TYPE REF TO /aws1/cl_ec2importvolumeresult /AWS1/CL_EC2IMPORTVOLUMERESULT¶
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->importvolume00(
io_image = new /aws1/cl_ec2diskimagedetail(
iv_bytes = 123
iv_format = |string|
iv_importmanifesturl = |string|
)
io_volume = new /aws1/cl_ec2volumedetail( 123 )
iv_availabilityzone = |string|
iv_availabilityzoneid = |string|
iv_description = |string|
iv_dryrun = ABAP_TRUE
).
This is an example of reading all possible response values
lo_result = lo_result.
IF lo_result IS NOT INITIAL.
lo_conversiontask = lo_result->get_conversiontask( ).
IF lo_conversiontask IS NOT INITIAL.
lv_string = lo_conversiontask->get_conversiontaskid( ).
lv_string = lo_conversiontask->get_expirationtime( ).
lo_importinstancetaskdetai = lo_conversiontask->get_importinstance( ).
IF lo_importinstancetaskdetai IS NOT INITIAL.
lv_string = lo_importinstancetaskdetai->get_description( ).
lv_string = lo_importinstancetaskdetai->get_instanceid( ).
lv_platformvalues = lo_importinstancetaskdetai->get_platform( ).
LOOP AT lo_importinstancetaskdetai->get_volumes( ) into lo_row.
lo_row_1 = lo_row.
IF lo_row_1 IS NOT INITIAL.
lv_string = lo_row_1->get_availabilityzone( ).
lv_string = lo_row_1->get_availabilityzoneid( ).
lv_long = lo_row_1->get_bytesconverted( ).
lv_string = lo_row_1->get_description( ).
lo_diskimagedescription = lo_row_1->get_image( ).
IF lo_diskimagedescription IS NOT INITIAL.
lv_string = lo_diskimagedescription->get_checksum( ).
lv_diskimageformat = lo_diskimagedescription->get_format( ).
lv_importmanifesturl = lo_diskimagedescription->get_importmanifesturl( ).
lv_long = lo_diskimagedescription->get_size( ).
ENDIF.
lv_string = lo_row_1->get_status( ).
lv_string = lo_row_1->get_statusmessage( ).
lo_diskimagevolumedescript = lo_row_1->get_volume( ).
IF lo_diskimagevolumedescript IS NOT INITIAL.
lv_string = lo_diskimagevolumedescript->get_id( ).
lv_long = lo_diskimagevolumedescript->get_size( ).
ENDIF.
ENDIF.
ENDLOOP.
ENDIF.
lo_importvolumetaskdetails = lo_conversiontask->get_importvolume( ).
IF lo_importvolumetaskdetails IS NOT INITIAL.
lv_string = lo_importvolumetaskdetails->get_availabilityzone( ).
lv_string = lo_importvolumetaskdetails->get_availabilityzoneid( ).
lv_long = lo_importvolumetaskdetails->get_bytesconverted( ).
lv_string = lo_importvolumetaskdetails->get_description( ).
lo_diskimagedescription = lo_importvolumetaskdetails->get_image( ).
IF lo_diskimagedescription IS NOT INITIAL.
lv_string = lo_diskimagedescription->get_checksum( ).
lv_diskimageformat = lo_diskimagedescription->get_format( ).
lv_importmanifesturl = lo_diskimagedescription->get_importmanifesturl( ).
lv_long = lo_diskimagedescription->get_size( ).
ENDIF.
lo_diskimagevolumedescript = lo_importvolumetaskdetails->get_volume( ).
IF lo_diskimagevolumedescript IS NOT INITIAL.
lv_string = lo_diskimagevolumedescript->get_id( ).
lv_long = lo_diskimagevolumedescript->get_size( ).
ENDIF.
ENDIF.
lv_conversiontaskstate = lo_conversiontask->get_state( ).
lv_string = lo_conversiontask->get_statusmessage( ).
LOOP AT lo_conversiontask->get_tags( ) into lo_row_2.
lo_row_3 = lo_row_2.
IF lo_row_3 IS NOT INITIAL.
lv_string = lo_row_3->get_key( ).
lv_string = lo_row_3->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
ENDIF.