Deleting a Function
Find out how to delete a function with OCI Functions.
For prerequisites and more information, see Deleting Functions.
When using the Console to delete functions, note the following points:
- You can delete functions individually, or you can delete all the functions in an application by deleting the application itself (hence the potential requirement for the FN_APP_DELETE permission).
- You're always prompted to confirm deletion because you cannot undelete an application or function later.
To delete an individual function without deleting the application:
- On the Applications list page, select the application that contains the function that you want to delete. If you need help finding the list page or the application, see Listing Applications.
-
Under Resources, select Functions.
The Functions list page opens. All functions in the selected application are displayed in a table.
- From the
Deleting a function doesn't delete the Docker image on which the function is based. To delete the image, you must delete it explicitly. See Deleting and Undeleting an Image.
for the function, select Delete and confirm that you want to delete the function.
To delete all the functions in an application by deleting the application:
- On the Applications list page, select the application that contains the functions that you want to delete. If you need help finding the list page or the application, see Listing Applications.
-
On the details page, select Delete and confirm that you want to delete the application:
- If the application doesn't contain functions, select Delete to confirm that you want to delete the application.
- If the application does contain functions, a list of the functions in the application is shown. To delete the application, enter
DELETE <APPLICATION-NAME>
in the text box, and select Delete.
Deleting an application and all its functions doesn't delete the Docker images on which the functions are based. To delete the images, you must delete them explicitly. For more information, see Deleting and Undeleting an Image.
Using the Fn Project CLI
Tip
From time to time, new versions of the Fn Project CLI are released. We recommend you regularly check that the latest version is installed. For more information, see Steps to upgrade the Fn Project CLI.When using the Fn Project CLI to delete functions, note that you cannot delete an application if it contains functions (you must delete the functions first).
To delete a function in OCI Functions using the Fn Project CLI:
-
Log in to your development environment as a functions developer.
-
Enter the following command to delete the function:
fn delete function <app-name> <function-name>
where:
<app-name>
is the name of the application containing the function you want to delete.<function-name>
is the name of the function you want to delete.
For example:
fn delete function acmeapp acme-func
-
Verify that the function has been deleted by entering:
fn list functions <app-name>
For example:
fn list functions acmeapp
Using the OCI CLI
Use the oci fn function delete command and required parameters to delete a function:
oci fn function delete --function-id <function-ocid> [OPTIONS]
For a complete list of flags and variable options for OCI CLI commands, see the Command Line Reference.
-
Run the DeleteFunction operation to delete a function.