oci.Functions.InvokeFunction
Explore with Pulumi AI
This resource provides the Invoke Function resource in Oracle Cloud Infrastructure Functions service.
Invokes a function
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testInvokeFunction = new oci.functions.InvokeFunction("test_invoke_function", {
functionId: testFunction.id,
invokeFunctionBody: invokeFunctionInvokeFunctionBody,
fnIntent: invokeFunctionFnIntent,
fnInvokeType: invokeFunctionFnInvokeType,
base64EncodeContent: false,
});
import pulumi
import pulumi_oci as oci
test_invoke_function = oci.functions.InvokeFunction("test_invoke_function",
function_id=test_function["id"],
invoke_function_body=invoke_function_invoke_function_body,
fn_intent=invoke_function_fn_intent,
fn_invoke_type=invoke_function_fn_invoke_type,
base64_encode_content=False)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/Functions"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := Functions.NewInvokeFunction(ctx, "test_invoke_function", &Functions.InvokeFunctionArgs{
FunctionId: pulumi.Any(testFunction.Id),
InvokeFunctionBody: pulumi.Any(invokeFunctionInvokeFunctionBody),
FnIntent: pulumi.Any(invokeFunctionFnIntent),
FnInvokeType: pulumi.Any(invokeFunctionFnInvokeType),
Base64EncodeContent: pulumi.Bool(false),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testInvokeFunction = new Oci.Functions.InvokeFunction("test_invoke_function", new()
{
FunctionId = testFunction.Id,
InvokeFunctionBody = invokeFunctionInvokeFunctionBody,
FnIntent = invokeFunctionFnIntent,
FnInvokeType = invokeFunctionFnInvokeType,
Base64EncodeContent = false,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Functions.InvokeFunction;
import com.pulumi.oci.Functions.InvokeFunctionArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var testInvokeFunction = new InvokeFunction("testInvokeFunction", InvokeFunctionArgs.builder()
.functionId(testFunction.id())
.invokeFunctionBody(invokeFunctionInvokeFunctionBody)
.fnIntent(invokeFunctionFnIntent)
.fnInvokeType(invokeFunctionFnInvokeType)
.base64EncodeContent(false)
.build());
}
}
resources:
testInvokeFunction:
type: oci:Functions:InvokeFunction
name: test_invoke_function
properties:
functionId: ${testFunction.id}
invokeFunctionBody: ${invokeFunctionInvokeFunctionBody}
fnIntent: ${invokeFunctionFnIntent}
fnInvokeType: ${invokeFunctionFnInvokeType}
base64EncodeContent: false
Create InvokeFunction Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new InvokeFunction(name: string, args: InvokeFunctionArgs, opts?: CustomResourceOptions);
@overload
def InvokeFunction(resource_name: str,
args: InvokeFunctionArgs,
opts: Optional[ResourceOptions] = None)
@overload
def InvokeFunction(resource_name: str,
opts: Optional[ResourceOptions] = None,
function_id: Optional[str] = None,
base64_encode_content: Optional[bool] = None,
fn_intent: Optional[str] = None,
fn_invoke_type: Optional[str] = None,
input_body_source_path: Optional[str] = None,
invoke_function_body: Optional[str] = None,
invoke_function_body_base64_encoded: Optional[str] = None)
func NewInvokeFunction(ctx *Context, name string, args InvokeFunctionArgs, opts ...ResourceOption) (*InvokeFunction, error)
public InvokeFunction(string name, InvokeFunctionArgs args, CustomResourceOptions? opts = null)
public InvokeFunction(String name, InvokeFunctionArgs args)
public InvokeFunction(String name, InvokeFunctionArgs args, CustomResourceOptions options)
type: oci:Functions:InvokeFunction
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args InvokeFunctionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args InvokeFunctionArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args InvokeFunctionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args InvokeFunctionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args InvokeFunctionArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var invokeFunctionResource = new Oci.Functions.InvokeFunction("invokeFunctionResource", new()
{
FunctionId = "string",
Base64EncodeContent = false,
FnIntent = "string",
FnInvokeType = "string",
InputBodySourcePath = "string",
InvokeFunctionBody = "string",
InvokeFunctionBodyBase64Encoded = "string",
});
example, err := Functions.NewInvokeFunction(ctx, "invokeFunctionResource", &Functions.InvokeFunctionArgs{
FunctionId: pulumi.String("string"),
Base64EncodeContent: pulumi.Bool(false),
FnIntent: pulumi.String("string"),
FnInvokeType: pulumi.String("string"),
InputBodySourcePath: pulumi.String("string"),
InvokeFunctionBody: pulumi.String("string"),
InvokeFunctionBodyBase64Encoded: pulumi.String("string"),
})
var invokeFunctionResource = new InvokeFunction("invokeFunctionResource", InvokeFunctionArgs.builder()
.functionId("string")
.base64EncodeContent(false)
.fnIntent("string")
.fnInvokeType("string")
.inputBodySourcePath("string")
.invokeFunctionBody("string")
.invokeFunctionBodyBase64Encoded("string")
.build());
invoke_function_resource = oci.functions.InvokeFunction("invokeFunctionResource",
function_id="string",
base64_encode_content=False,
fn_intent="string",
fn_invoke_type="string",
input_body_source_path="string",
invoke_function_body="string",
invoke_function_body_base64_encoded="string")
const invokeFunctionResource = new oci.functions.InvokeFunction("invokeFunctionResource", {
functionId: "string",
base64EncodeContent: false,
fnIntent: "string",
fnInvokeType: "string",
inputBodySourcePath: "string",
invokeFunctionBody: "string",
invokeFunctionBodyBase64Encoded: "string",
});
type: oci:Functions:InvokeFunction
properties:
base64EncodeContent: false
fnIntent: string
fnInvokeType: string
functionId: string
inputBodySourcePath: string
invokeFunctionBody: string
invokeFunctionBodyBase64Encoded: string
InvokeFunction Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The InvokeFunction resource accepts the following input properties:
- Function
Id string - The OCID of this function.
- Base64Encode
Content bool - Fn
Intent string - An optional intent header that indicates to the FDK the way the event should be interpreted. E.g. 'httprequest', 'cloudevent'.
- Fn
Invoke stringType - Indicates whether Oracle Functions should execute the request and return the result ('sync') of the execution, or whether Oracle Functions should return as soon as processing has begun ('detached') and leave result handling to the function.
- Input
Body stringSource Path An absolute path to a file on the local system that contains the input to be provided to the function. Cannot be defined if
invoke_function_body
orinvoke_function_body_base64_encoded
is defined. Note: The maximum size of the request is limited. This limit is currently 6MB and the endpoint will not accept requests that are bigger than this limit.** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Invoke
Function stringBody - The body of the function invocation. Note: The maximum size of the request is limited. This limit is currently 6MB and the endpoint will not accept requests that are bigger than this limit. Cannot be defined if
input_body_source_path
orinvoke_function_body_base64_encoded
is defined. - Invoke
Function stringBody Base64Encoded
- Function
Id string - The OCID of this function.
- Base64Encode
Content bool - Fn
Intent string - An optional intent header that indicates to the FDK the way the event should be interpreted. E.g. 'httprequest', 'cloudevent'.
- Fn
Invoke stringType - Indicates whether Oracle Functions should execute the request and return the result ('sync') of the execution, or whether Oracle Functions should return as soon as processing has begun ('detached') and leave result handling to the function.
- Input
Body stringSource Path An absolute path to a file on the local system that contains the input to be provided to the function. Cannot be defined if
invoke_function_body
orinvoke_function_body_base64_encoded
is defined. Note: The maximum size of the request is limited. This limit is currently 6MB and the endpoint will not accept requests that are bigger than this limit.** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Invoke
Function stringBody - The body of the function invocation. Note: The maximum size of the request is limited. This limit is currently 6MB and the endpoint will not accept requests that are bigger than this limit. Cannot be defined if
input_body_source_path
orinvoke_function_body_base64_encoded
is defined. - Invoke
Function stringBody Base64Encoded
- function
Id String - The OCID of this function.
- base64Encode
Content Boolean - fn
Intent String - An optional intent header that indicates to the FDK the way the event should be interpreted. E.g. 'httprequest', 'cloudevent'.
- fn
Invoke StringType - Indicates whether Oracle Functions should execute the request and return the result ('sync') of the execution, or whether Oracle Functions should return as soon as processing has begun ('detached') and leave result handling to the function.
- input
Body StringSource Path An absolute path to a file on the local system that contains the input to be provided to the function. Cannot be defined if
invoke_function_body
orinvoke_function_body_base64_encoded
is defined. Note: The maximum size of the request is limited. This limit is currently 6MB and the endpoint will not accept requests that are bigger than this limit.** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- invoke
Function StringBody - The body of the function invocation. Note: The maximum size of the request is limited. This limit is currently 6MB and the endpoint will not accept requests that are bigger than this limit. Cannot be defined if
input_body_source_path
orinvoke_function_body_base64_encoded
is defined. - invoke
Function StringBody Base64Encoded
- function
Id string - The OCID of this function.
- base64Encode
Content boolean - fn
Intent string - An optional intent header that indicates to the FDK the way the event should be interpreted. E.g. 'httprequest', 'cloudevent'.
- fn
Invoke stringType - Indicates whether Oracle Functions should execute the request and return the result ('sync') of the execution, or whether Oracle Functions should return as soon as processing has begun ('detached') and leave result handling to the function.
- input
Body stringSource Path An absolute path to a file on the local system that contains the input to be provided to the function. Cannot be defined if
invoke_function_body
orinvoke_function_body_base64_encoded
is defined. Note: The maximum size of the request is limited. This limit is currently 6MB and the endpoint will not accept requests that are bigger than this limit.** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- invoke
Function stringBody - The body of the function invocation. Note: The maximum size of the request is limited. This limit is currently 6MB and the endpoint will not accept requests that are bigger than this limit. Cannot be defined if
input_body_source_path
orinvoke_function_body_base64_encoded
is defined. - invoke
Function stringBody Base64Encoded
- function_
id str - The OCID of this function.
- base64_
encode_ boolcontent - fn_
intent str - An optional intent header that indicates to the FDK the way the event should be interpreted. E.g. 'httprequest', 'cloudevent'.
- fn_
invoke_ strtype - Indicates whether Oracle Functions should execute the request and return the result ('sync') of the execution, or whether Oracle Functions should return as soon as processing has begun ('detached') and leave result handling to the function.
- input_
body_ strsource_ path An absolute path to a file on the local system that contains the input to be provided to the function. Cannot be defined if
invoke_function_body
orinvoke_function_body_base64_encoded
is defined. Note: The maximum size of the request is limited. This limit is currently 6MB and the endpoint will not accept requests that are bigger than this limit.** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- invoke_
function_ strbody - The body of the function invocation. Note: The maximum size of the request is limited. This limit is currently 6MB and the endpoint will not accept requests that are bigger than this limit. Cannot be defined if
input_body_source_path
orinvoke_function_body_base64_encoded
is defined. - invoke_
function_ strbody_ base64_ encoded
- function
Id String - The OCID of this function.
- base64Encode
Content Boolean - fn
Intent String - An optional intent header that indicates to the FDK the way the event should be interpreted. E.g. 'httprequest', 'cloudevent'.
- fn
Invoke StringType - Indicates whether Oracle Functions should execute the request and return the result ('sync') of the execution, or whether Oracle Functions should return as soon as processing has begun ('detached') and leave result handling to the function.
- input
Body StringSource Path An absolute path to a file on the local system that contains the input to be provided to the function. Cannot be defined if
invoke_function_body
orinvoke_function_body_base64_encoded
is defined. Note: The maximum size of the request is limited. This limit is currently 6MB and the endpoint will not accept requests that are bigger than this limit.** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- invoke
Function StringBody - The body of the function invocation. Note: The maximum size of the request is limited. This limit is currently 6MB and the endpoint will not accept requests that are bigger than this limit. Cannot be defined if
input_body_source_path
orinvoke_function_body_base64_encoded
is defined. - invoke
Function StringBody Base64Encoded
Outputs
All input properties are implicitly available as output properties. Additionally, the InvokeFunction resource produces the following output properties:
- Content string
- Content of the response string, if any. If
base64_encode_content
is set totrue
, then this content will be base64 encoded. - Id string
- The provider-assigned unique ID for this managed resource.
- Invoke
Endpoint string
- Content string
- Content of the response string, if any. If
base64_encode_content
is set totrue
, then this content will be base64 encoded. - Id string
- The provider-assigned unique ID for this managed resource.
- Invoke
Endpoint string
- content String
- Content of the response string, if any. If
base64_encode_content
is set totrue
, then this content will be base64 encoded. - id String
- The provider-assigned unique ID for this managed resource.
- invoke
Endpoint String
- content string
- Content of the response string, if any. If
base64_encode_content
is set totrue
, then this content will be base64 encoded. - id string
- The provider-assigned unique ID for this managed resource.
- invoke
Endpoint string
- content str
- Content of the response string, if any. If
base64_encode_content
is set totrue
, then this content will be base64 encoded. - id str
- The provider-assigned unique ID for this managed resource.
- invoke_
endpoint str
- content String
- Content of the response string, if any. If
base64_encode_content
is set totrue
, then this content will be base64 encoded. - id String
- The provider-assigned unique ID for this managed resource.
- invoke
Endpoint String
Look up Existing InvokeFunction Resource
Get an existing InvokeFunction resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: InvokeFunctionState, opts?: CustomResourceOptions): InvokeFunction
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
base64_encode_content: Optional[bool] = None,
content: Optional[str] = None,
fn_intent: Optional[str] = None,
fn_invoke_type: Optional[str] = None,
function_id: Optional[str] = None,
input_body_source_path: Optional[str] = None,
invoke_endpoint: Optional[str] = None,
invoke_function_body: Optional[str] = None,
invoke_function_body_base64_encoded: Optional[str] = None) -> InvokeFunction
func GetInvokeFunction(ctx *Context, name string, id IDInput, state *InvokeFunctionState, opts ...ResourceOption) (*InvokeFunction, error)
public static InvokeFunction Get(string name, Input<string> id, InvokeFunctionState? state, CustomResourceOptions? opts = null)
public static InvokeFunction get(String name, Output<String> id, InvokeFunctionState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Base64Encode
Content bool - Content string
- Content of the response string, if any. If
base64_encode_content
is set totrue
, then this content will be base64 encoded. - Fn
Intent string - An optional intent header that indicates to the FDK the way the event should be interpreted. E.g. 'httprequest', 'cloudevent'.
- Fn
Invoke stringType - Indicates whether Oracle Functions should execute the request and return the result ('sync') of the execution, or whether Oracle Functions should return as soon as processing has begun ('detached') and leave result handling to the function.
- Function
Id string - The OCID of this function.
- Input
Body stringSource Path An absolute path to a file on the local system that contains the input to be provided to the function. Cannot be defined if
invoke_function_body
orinvoke_function_body_base64_encoded
is defined. Note: The maximum size of the request is limited. This limit is currently 6MB and the endpoint will not accept requests that are bigger than this limit.** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Invoke
Endpoint string - Invoke
Function stringBody - The body of the function invocation. Note: The maximum size of the request is limited. This limit is currently 6MB and the endpoint will not accept requests that are bigger than this limit. Cannot be defined if
input_body_source_path
orinvoke_function_body_base64_encoded
is defined. - Invoke
Function stringBody Base64Encoded
- Base64Encode
Content bool - Content string
- Content of the response string, if any. If
base64_encode_content
is set totrue
, then this content will be base64 encoded. - Fn
Intent string - An optional intent header that indicates to the FDK the way the event should be interpreted. E.g. 'httprequest', 'cloudevent'.
- Fn
Invoke stringType - Indicates whether Oracle Functions should execute the request and return the result ('sync') of the execution, or whether Oracle Functions should return as soon as processing has begun ('detached') and leave result handling to the function.
- Function
Id string - The OCID of this function.
- Input
Body stringSource Path An absolute path to a file on the local system that contains the input to be provided to the function. Cannot be defined if
invoke_function_body
orinvoke_function_body_base64_encoded
is defined. Note: The maximum size of the request is limited. This limit is currently 6MB and the endpoint will not accept requests that are bigger than this limit.** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Invoke
Endpoint string - Invoke
Function stringBody - The body of the function invocation. Note: The maximum size of the request is limited. This limit is currently 6MB and the endpoint will not accept requests that are bigger than this limit. Cannot be defined if
input_body_source_path
orinvoke_function_body_base64_encoded
is defined. - Invoke
Function stringBody Base64Encoded
- base64Encode
Content Boolean - content String
- Content of the response string, if any. If
base64_encode_content
is set totrue
, then this content will be base64 encoded. - fn
Intent String - An optional intent header that indicates to the FDK the way the event should be interpreted. E.g. 'httprequest', 'cloudevent'.
- fn
Invoke StringType - Indicates whether Oracle Functions should execute the request and return the result ('sync') of the execution, or whether Oracle Functions should return as soon as processing has begun ('detached') and leave result handling to the function.
- function
Id String - The OCID of this function.
- input
Body StringSource Path An absolute path to a file on the local system that contains the input to be provided to the function. Cannot be defined if
invoke_function_body
orinvoke_function_body_base64_encoded
is defined. Note: The maximum size of the request is limited. This limit is currently 6MB and the endpoint will not accept requests that are bigger than this limit.** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- invoke
Endpoint String - invoke
Function StringBody - The body of the function invocation. Note: The maximum size of the request is limited. This limit is currently 6MB and the endpoint will not accept requests that are bigger than this limit. Cannot be defined if
input_body_source_path
orinvoke_function_body_base64_encoded
is defined. - invoke
Function StringBody Base64Encoded
- base64Encode
Content boolean - content string
- Content of the response string, if any. If
base64_encode_content
is set totrue
, then this content will be base64 encoded. - fn
Intent string - An optional intent header that indicates to the FDK the way the event should be interpreted. E.g. 'httprequest', 'cloudevent'.
- fn
Invoke stringType - Indicates whether Oracle Functions should execute the request and return the result ('sync') of the execution, or whether Oracle Functions should return as soon as processing has begun ('detached') and leave result handling to the function.
- function
Id string - The OCID of this function.
- input
Body stringSource Path An absolute path to a file on the local system that contains the input to be provided to the function. Cannot be defined if
invoke_function_body
orinvoke_function_body_base64_encoded
is defined. Note: The maximum size of the request is limited. This limit is currently 6MB and the endpoint will not accept requests that are bigger than this limit.** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- invoke
Endpoint string - invoke
Function stringBody - The body of the function invocation. Note: The maximum size of the request is limited. This limit is currently 6MB and the endpoint will not accept requests that are bigger than this limit. Cannot be defined if
input_body_source_path
orinvoke_function_body_base64_encoded
is defined. - invoke
Function stringBody Base64Encoded
- base64_
encode_ boolcontent - content str
- Content of the response string, if any. If
base64_encode_content
is set totrue
, then this content will be base64 encoded. - fn_
intent str - An optional intent header that indicates to the FDK the way the event should be interpreted. E.g. 'httprequest', 'cloudevent'.
- fn_
invoke_ strtype - Indicates whether Oracle Functions should execute the request and return the result ('sync') of the execution, or whether Oracle Functions should return as soon as processing has begun ('detached') and leave result handling to the function.
- function_
id str - The OCID of this function.
- input_
body_ strsource_ path An absolute path to a file on the local system that contains the input to be provided to the function. Cannot be defined if
invoke_function_body
orinvoke_function_body_base64_encoded
is defined. Note: The maximum size of the request is limited. This limit is currently 6MB and the endpoint will not accept requests that are bigger than this limit.** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- invoke_
endpoint str - invoke_
function_ strbody - The body of the function invocation. Note: The maximum size of the request is limited. This limit is currently 6MB and the endpoint will not accept requests that are bigger than this limit. Cannot be defined if
input_body_source_path
orinvoke_function_body_base64_encoded
is defined. - invoke_
function_ strbody_ base64_ encoded
- base64Encode
Content Boolean - content String
- Content of the response string, if any. If
base64_encode_content
is set totrue
, then this content will be base64 encoded. - fn
Intent String - An optional intent header that indicates to the FDK the way the event should be interpreted. E.g. 'httprequest', 'cloudevent'.
- fn
Invoke StringType - Indicates whether Oracle Functions should execute the request and return the result ('sync') of the execution, or whether Oracle Functions should return as soon as processing has begun ('detached') and leave result handling to the function.
- function
Id String - The OCID of this function.
- input
Body StringSource Path An absolute path to a file on the local system that contains the input to be provided to the function. Cannot be defined if
invoke_function_body
orinvoke_function_body_base64_encoded
is defined. Note: The maximum size of the request is limited. This limit is currently 6MB and the endpoint will not accept requests that are bigger than this limit.** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- invoke
Endpoint String - invoke
Function StringBody - The body of the function invocation. Note: The maximum size of the request is limited. This limit is currently 6MB and the endpoint will not accept requests that are bigger than this limit. Cannot be defined if
input_body_source_path
orinvoke_function_body_base64_encoded
is defined. - invoke
Function StringBody Base64Encoded
Import
Import is not supported for this resource.
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.