Skip to content

Commit bc17d20

Browse files
authored
Renamed the function
Renamed the function to oci-objectstorage-put-object-python
1 parent 096597e commit bc17d20

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

oci-objectstorage-put-object-python/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ As you make your way through this tutorial, look out for this icon ![user input
1212
Whenever you see it, it's time for you to perform an action.
1313

1414

15-
## Pre-requisites
15+
## Prerequisites
1616
1. Start by making sure all of your policies are correct from this [guide](https://docs.cloud.oracle.com/iaas/Content/Functions/Tasks/functionscreatingpolicies.htm?tocpath=Services%7CFunctions%7CPreparing%20for%20Oracle%20Functions%7CConfiguring%20Your%20Tenancy%20for%20Function%20Development%7C_____4)
1717

1818
2. Have [Fn CLI setup with Oracle Functions](https://docs.cloud.oracle.com/iaas/Content/Functions/Tasks/functionsconfiguringclient.htm?tocpath=Services%7CFunctions%7CPreparing%20for%20Oracle%20Functions%7CConfiguring%20Your%20Client%20Environment%20for%20Function%20Development%7C_____0)
@@ -105,7 +105,7 @@ Review the following files in the current folder:
105105
- [func.yaml](./func.yaml) that contains metadata about your function and declares properties
106106
- [func.py](./func.py) which is your actual Python function
107107

108-
The name of your function *oci-objectstorage-put-object* is specified in [func.yaml](./func.yaml).
108+
The name of your function *oci-objectstorage-put-object-python* is specified in [func.yaml](./func.yaml).
109109

110110

111111
## Deploy the function
@@ -128,6 +128,6 @@ echo -n <JSON object> | fn invoke <your app name> <your function name>
128128
```
129129
e.g.
130130
```
131-
echo -n '{"objectName": "<object-name>", "bucketName": "<bucket-name>", "content": "<content>"}' | fn invoke object-crud oci-objectstorage-put-object
131+
echo -n '{"objectName": "<object-name>", "bucketName": "<bucket-name>", "content": "<content>"}' | fn invoke object-crud oci-objectstorage-put-object-python
132132
```
133133
Upon success, you should see a success message appear in your terminal.

0 commit comments

Comments
 (0)