deleteInitScripts

Prev Next

Can be used in a VPC environment.

Overview

This deletes the list of initialization scripts.

Request

Request parameters

Parameter name Required Type Restrictions Description
regionCode No String Region code
You can decide the region of the initialization script to be deleted.
regionCode can be obtained through the getRegionList action.
Default: Select the first region of the getRegionList search results
initScriptNoList.N Yes List<String> List of initialization script numbers to be deleted
initScriptNo can be obtained through the getInitScriptList action.
ex) initScriptNoList.1=1234&initScriptNoList.2=2345
responseFormatType No String Format type of the response results
Options : xml | json
Default : xml

Response

Response body

Example

Request Example

GET {API_URL}/deleteInitScripts
?regionCode=KR
&initScriptNoList.1=***44

Response Example

<deleteInitScriptsResponse>
  <requestId></requestId>
  <returnCode>0</returnCode>
  <returnMessage>success</returnMessage>
  <totalRows>1</totalRows>
  <initScriptList>
    <initScript>
      <initScriptNo>***44</initScriptNo>
      <initScriptName>test-***</initScriptName>
      <createDate>2020-08-20T15:03:37+0900</createDate>
      <initScriptDescription></initScriptDescription>
      <initScriptContent></initScriptContent>
      <osType>
        <code>LNX</code>
        <codeName>LINUX</codeName>
      </osType>
    </initScript>
  </initScriptList>
</deleteInitScriptsResponse>