/AWS1/IF_EBN=>DELETEENVIRONMENTCONF()¶
About DeleteEnvironmentConfiguration¶
Deletes the draft configuration associated with the running environment.
Updating a running environment with any configuration changes creates a draft
configuration set. You can get the draft configuration using DescribeConfigurationSettings while the update is in progress or if the update
fails. The DeploymentStatus for the draft configuration indicates whether the
deployment is in process or has failed. The draft configuration remains in existence until it
is deleted with this action.
Method Signature¶
METHODS /AWS1/IF_EBN~DELETEENVIRONMENTCONF
IMPORTING
!IV_APPLICATIONNAME TYPE /AWS1/EBNAPPLICATIONNAME OPTIONAL
!IV_ENVIRONMENTNAME TYPE /AWS1/EBNENVIRONMENTNAME OPTIONAL
RAISING
/AWS1/CX_EBNCLIENTEXC
/AWS1/CX_EBNSERVEREXC
/AWS1/CX_RT_TECHNICAL_GENERIC
/AWS1/CX_RT_SERVICE_GENERIC.
IMPORTING¶
Required arguments:¶
iv_applicationname TYPE /AWS1/EBNAPPLICATIONNAME /AWS1/EBNAPPLICATIONNAME¶
The name of the application the environment is associated with.
iv_environmentname TYPE /AWS1/EBNENVIRONMENTNAME /AWS1/EBNENVIRONMENTNAME¶
The name of the environment to delete the draft configuration from.
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.
lo_client->deleteenvironmentconf(
iv_applicationname = |string|
iv_environmentname = |string|
).
To delete a draft configuration¶
The following operation deletes a draft configuration for an environment named my-env:
lo_client->deleteenvironmentconf(
iv_applicationname = |my-app|
iv_environmentname = |my-env|
).