@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.
Files changed (2) hide show
  1. package/README.md +4 -4
  2. 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 to one language, for example Python, Node.js, or Java
136
- "$OCI_CLI_PATH" fn runtime list --all --language python --output table
137
- "$OCI_CLI_PATH" fn runtime list --all --language node --output table
138
- "$OCI_CLI_PATH" fn runtime list --all --language java --output table
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).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mikarinneoracle/oci-cdk-code-only-preview",
3
- "version": "0.0.20",
3
+ "version": "0.0.21",
4
4
  "description": "OCI CDK stack for OCI Functions, API Gateway, and related infrastructure",
5
5
  "main": "lib/index.js",
6
6
  "bin": {