@mikarinneoracle/oci-cdk-code-only-preview 0.0.20 → 0.0.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -132,10 +132,10 @@ The exact `OCI_CODE_ONLY_RUNTIME_NAME` values are enabled per tenancy and region
|
|
|
132
132
|
# List every runtime available to the active OCI profile
|
|
133
133
|
"$OCI_CLI_PATH" fn runtime list --all --output table
|
|
134
134
|
|
|
135
|
-
# Narrow the list
|
|
136
|
-
"$OCI_CLI_PATH" fn runtime list --all --
|
|
137
|
-
"$OCI_CLI_PATH" fn runtime list --all --
|
|
138
|
-
"$OCI_CLI_PATH" fn runtime list --all --
|
|
135
|
+
# Narrow the list by runtime-name prefix, for example Python, Node.js, or Java
|
|
136
|
+
"$OCI_CLI_PATH" fn runtime list --all --name-starts-with python --output table
|
|
137
|
+
"$OCI_CLI_PATH" fn runtime list --all --name-starts-with node --output table
|
|
138
|
+
"$OCI_CLI_PATH" fn runtime list --all --name-starts-with java --output table
|
|
139
139
|
```
|
|
140
140
|
|
|
141
141
|
OCI Functions supports Java, Python, Node.js, Go, Ruby, and C# FDKs in general; code-only availability is limited to the runtimes returned by the command above. See Oracle's [supported language versions](https://docs.oracle.com/en-us/iaas/Content/Functions/Tasks/languagessupportedbyfunctions.htm).
|