Oracle Cloud Infrastructure v3.9.0 published on Wednesday, Sep 24, 2025 by Pulumi
oci.Functions.getFunctions
This data source provides the list of Functions in Oracle Cloud Infrastructure Functions service.
Lists functions for an application.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testFunctions = oci.Functions.getFunctions({
    applicationId: testApplication.id,
    displayName: functionDisplayName,
    id: functionId,
    state: functionState,
});
import pulumi
import pulumi_oci as oci
test_functions = oci.Functions.get_functions(application_id=test_application["id"],
    display_name=function_display_name,
    id=function_id,
    state=function_state)
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v3/go/oci/functions"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := functions.GetFunctions(ctx, &functions.GetFunctionsArgs{
			ApplicationId: testApplication.Id,
			DisplayName:   pulumi.StringRef(functionDisplayName),
			Id:            pulumi.StringRef(functionId),
			State:         pulumi.StringRef(functionState),
		}, nil)
		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 testFunctions = Oci.Functions.GetFunctions.Invoke(new()
    {
        ApplicationId = testApplication.Id,
        DisplayName = functionDisplayName,
        Id = functionId,
        State = functionState,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Functions.FunctionsFunctions;
import com.pulumi.oci.Functions.inputs.GetFunctionsArgs;
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) {
        final var testFunctions = FunctionsFunctions.getFunctions(GetFunctionsArgs.builder()
            .applicationId(testApplication.id())
            .displayName(functionDisplayName)
            .id(functionId)
            .state(functionState)
            .build());
    }
}
variables:
  testFunctions:
    fn::invoke:
      function: oci:Functions:getFunctions
      arguments:
        applicationId: ${testApplication.id}
        displayName: ${functionDisplayName}
        id: ${functionId}
        state: ${functionState}
Using getFunctions
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getFunctions(args: GetFunctionsArgs, opts?: InvokeOptions): Promise<GetFunctionsResult>
function getFunctionsOutput(args: GetFunctionsOutputArgs, opts?: InvokeOptions): Output<GetFunctionsResult>def get_functions(application_id: Optional[str] = None,
                  display_name: Optional[str] = None,
                  filters: Optional[Sequence[GetFunctionsFilter]] = None,
                  id: Optional[str] = None,
                  state: Optional[str] = None,
                  opts: Optional[InvokeOptions] = None) -> GetFunctionsResult
def get_functions_output(application_id: Optional[pulumi.Input[str]] = None,
                  display_name: Optional[pulumi.Input[str]] = None,
                  filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetFunctionsFilterArgs]]]] = None,
                  id: Optional[pulumi.Input[str]] = None,
                  state: Optional[pulumi.Input[str]] = None,
                  opts: Optional[InvokeOptions] = None) -> Output[GetFunctionsResult]func GetFunctions(ctx *Context, args *GetFunctionsArgs, opts ...InvokeOption) (*GetFunctionsResult, error)
func GetFunctionsOutput(ctx *Context, args *GetFunctionsOutputArgs, opts ...InvokeOption) GetFunctionsResultOutput> Note: This function is named GetFunctions in the Go SDK.
public static class GetFunctions 
{
    public static Task<GetFunctionsResult> InvokeAsync(GetFunctionsArgs args, InvokeOptions? opts = null)
    public static Output<GetFunctionsResult> Invoke(GetFunctionsInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetFunctionsResult> getFunctions(GetFunctionsArgs args, InvokeOptions options)
public static Output<GetFunctionsResult> getFunctions(GetFunctionsArgs args, InvokeOptions options)
fn::invoke:
  function: oci:Functions/getFunctions:getFunctions
  arguments:
    # arguments dictionaryThe following arguments are supported:
- ApplicationId string
- The OCID of the application to which this function belongs.
- DisplayName string
- A filter to return only functions with display names that match the display name string. Matching is exact.
- Filters
List<GetFunctions Filter> 
- Id string
- A filter to return only functions with the specified OCID.
- State string
- A filter to return only functions that match the lifecycle state in this parameter. Example: Creating
- ApplicationId string
- The OCID of the application to which this function belongs.
- DisplayName string
- A filter to return only functions with display names that match the display name string. Matching is exact.
- Filters
[]GetFunctions Filter 
- Id string
- A filter to return only functions with the specified OCID.
- State string
- A filter to return only functions that match the lifecycle state in this parameter. Example: Creating
- applicationId String
- The OCID of the application to which this function belongs.
- displayName String
- A filter to return only functions with display names that match the display name string. Matching is exact.
- filters
List<GetFilter> 
- id String
- A filter to return only functions with the specified OCID.
- state String
- A filter to return only functions that match the lifecycle state in this parameter. Example: Creating
- applicationId string
- The OCID of the application to which this function belongs.
- displayName string
- A filter to return only functions with display names that match the display name string. Matching is exact.
- filters
GetFunctions Filter[] 
- id string
- A filter to return only functions with the specified OCID.
- state string
- A filter to return only functions that match the lifecycle state in this parameter. Example: Creating
- application_id str
- The OCID of the application to which this function belongs.
- display_name str
- A filter to return only functions with display names that match the display name string. Matching is exact.
- filters
Sequence[GetFunctions Filter] 
- id str
- A filter to return only functions with the specified OCID.
- state str
- A filter to return only functions that match the lifecycle state in this parameter. Example: Creating
- applicationId String
- The OCID of the application to which this function belongs.
- displayName String
- A filter to return only functions with display names that match the display name string. Matching is exact.
- filters List<Property Map>
- id String
- A filter to return only functions with the specified OCID.
- state String
- A filter to return only functions that match the lifecycle state in this parameter. Example: Creating
getFunctions Result
The following output properties are available:
- ApplicationId string
- The OCID of the application the function belongs to.
- Functions
List<GetFunctions Function> 
- The list of functions.
- DisplayName string
- The display name of the function. The display name is unique within the application containing the function.
- Filters
List<GetFunctions Filter> 
- Id string
- The OCID of the function.
- State string
- The current state of the function.
- ApplicationId string
- The OCID of the application the function belongs to.
- Functions
[]GetFunctions Function 
- The list of functions.
- DisplayName string
- The display name of the function. The display name is unique within the application containing the function.
- Filters
[]GetFunctions Filter 
- Id string
- The OCID of the function.
- State string
- The current state of the function.
- applicationId String
- The OCID of the application the function belongs to.
- functions
List<GetFunction> 
- The list of functions.
- displayName String
- The display name of the function. The display name is unique within the application containing the function.
- filters
List<GetFilter> 
- id String
- The OCID of the function.
- state String
- The current state of the function.
- applicationId string
- The OCID of the application the function belongs to.
- functions
GetFunctions Function[] 
- The list of functions.
- displayName string
- The display name of the function. The display name is unique within the application containing the function.
- filters
GetFunctions Filter[] 
- id string
- The OCID of the function.
- state string
- The current state of the function.
- application_id str
- The OCID of the application the function belongs to.
- functions
Sequence[GetFunctions Function] 
- The list of functions.
- display_name str
- The display name of the function. The display name is unique within the application containing the function.
- filters
Sequence[GetFunctions Filter] 
- id str
- The OCID of the function.
- state str
- The current state of the function.
- applicationId String
- The OCID of the application the function belongs to.
- functions List<Property Map>
- The list of functions.
- displayName String
- The display name of the function. The display name is unique within the application containing the function.
- filters List<Property Map>
- id String
- The OCID of the function.
- state String
- The current state of the function.
Supporting Types
GetFunctionsFilter  
GetFunctionsFunction  
- ApplicationId string
- The OCID of the application to which this function belongs.
- CompartmentId string
- The OCID of the compartment that contains the function.
- Config Dictionary<string, string>
- Function configuration. Overrides application configuration. Keys must be ASCII strings consisting solely of letters, digits, and the '_' (underscore) character, and must not begin with a digit. Values should be limited to printable unicode characters. Example: {"MY_FUNCTION_CONFIG": "ConfVal"}
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- DisplayName string
- A filter to return only functions with display names that match the display name string. Matching is exact.
- Dictionary<string, string>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- Id string
- A filter to return only functions with the specified OCID.
- Image string
- The qualified name of the Docker image to use in the function, including the image tag. The image should be in the Oracle Cloud Infrastructure Registry that is in the same region as the function itself. Example: phx.ocir.io/ten/functions/function:0.0.1
- ImageDigest string
- The image digest for the version of the image that will be pulled when invoking this function. If no value is specified, the digest currently associated with the image in the Oracle Cloud Infrastructure Registry will be used. Example: sha256:ca0eeb6fb05351dfc8759c20733c91def84cb8007aa89a5bf606bc8b315b9fc7
- InvokeEndpoint string
- The base https invoke URL to set on a client in order to invoke a function. This URL will never change over the lifetime of the function and can be cached.
- MemoryIn stringMbs 
- Maximum usable memory for the function (MiB).
- ProvisionedConcurrency List<GetConfigs Functions Function Provisioned Concurrency Config> 
- Define the strategy for provisioned concurrency for the function.
- Shape string
- The processor shape (GENERIC_X86/GENERIC_ARM) on which to run functions in the application, extracted from the image manifest.
- SourceDetails List<GetFunctions Function Source Detail> 
- The source details for the Function. The function can be created from various sources.
- State string
- A filter to return only functions that match the lifecycle state in this parameter. Example: Creating
- TimeCreated string
- The time the function was created, expressed in RFC 3339 timestamp format. Example: 2018-09-12T22:47:12.613Z
- TimeUpdated string
- The time the function was updated, expressed in RFC 3339 timestamp format. Example: 2018-09-12T22:47:12.613Z
- TimeoutIn intSeconds 
- Timeout for executions of the function. Value in seconds.
- TraceConfigs List<GetFunctions Function Trace Config> 
- Define the tracing configuration for a function.
- ApplicationId string
- The OCID of the application to which this function belongs.
- CompartmentId string
- The OCID of the compartment that contains the function.
- Config map[string]string
- Function configuration. Overrides application configuration. Keys must be ASCII strings consisting solely of letters, digits, and the '_' (underscore) character, and must not begin with a digit. Values should be limited to printable unicode characters. Example: {"MY_FUNCTION_CONFIG": "ConfVal"}
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- DisplayName string
- A filter to return only functions with display names that match the display name string. Matching is exact.
- map[string]string
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- Id string
- A filter to return only functions with the specified OCID.
- Image string
- The qualified name of the Docker image to use in the function, including the image tag. The image should be in the Oracle Cloud Infrastructure Registry that is in the same region as the function itself. Example: phx.ocir.io/ten/functions/function:0.0.1
- ImageDigest string
- The image digest for the version of the image that will be pulled when invoking this function. If no value is specified, the digest currently associated with the image in the Oracle Cloud Infrastructure Registry will be used. Example: sha256:ca0eeb6fb05351dfc8759c20733c91def84cb8007aa89a5bf606bc8b315b9fc7
- InvokeEndpoint string
- The base https invoke URL to set on a client in order to invoke a function. This URL will never change over the lifetime of the function and can be cached.
- MemoryIn stringMbs 
- Maximum usable memory for the function (MiB).
- ProvisionedConcurrency []GetConfigs Functions Function Provisioned Concurrency Config 
- Define the strategy for provisioned concurrency for the function.
- Shape string
- The processor shape (GENERIC_X86/GENERIC_ARM) on which to run functions in the application, extracted from the image manifest.
- SourceDetails []GetFunctions Function Source Detail 
- The source details for the Function. The function can be created from various sources.
- State string
- A filter to return only functions that match the lifecycle state in this parameter. Example: Creating
- TimeCreated string
- The time the function was created, expressed in RFC 3339 timestamp format. Example: 2018-09-12T22:47:12.613Z
- TimeUpdated string
- The time the function was updated, expressed in RFC 3339 timestamp format. Example: 2018-09-12T22:47:12.613Z
- TimeoutIn intSeconds 
- Timeout for executions of the function. Value in seconds.
- TraceConfigs []GetFunctions Function Trace Config 
- Define the tracing configuration for a function.
- applicationId String
- The OCID of the application to which this function belongs.
- compartmentId String
- The OCID of the compartment that contains the function.
- config Map<String,String>
- Function configuration. Overrides application configuration. Keys must be ASCII strings consisting solely of letters, digits, and the '_' (underscore) character, and must not begin with a digit. Values should be limited to printable unicode characters. Example: {"MY_FUNCTION_CONFIG": "ConfVal"}
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- displayName String
- A filter to return only functions with display names that match the display name string. Matching is exact.
- Map<String,String>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- id String
- A filter to return only functions with the specified OCID.
- image String
- The qualified name of the Docker image to use in the function, including the image tag. The image should be in the Oracle Cloud Infrastructure Registry that is in the same region as the function itself. Example: phx.ocir.io/ten/functions/function:0.0.1
- imageDigest String
- The image digest for the version of the image that will be pulled when invoking this function. If no value is specified, the digest currently associated with the image in the Oracle Cloud Infrastructure Registry will be used. Example: sha256:ca0eeb6fb05351dfc8759c20733c91def84cb8007aa89a5bf606bc8b315b9fc7
- invokeEndpoint String
- The base https invoke URL to set on a client in order to invoke a function. This URL will never change over the lifetime of the function and can be cached.
- memoryIn StringMbs 
- Maximum usable memory for the function (MiB).
- provisionedConcurrency List<GetConfigs Function Provisioned Concurrency Config> 
- Define the strategy for provisioned concurrency for the function.
- shape String
- The processor shape (GENERIC_X86/GENERIC_ARM) on which to run functions in the application, extracted from the image manifest.
- sourceDetails List<GetFunction Source Detail> 
- The source details for the Function. The function can be created from various sources.
- state String
- A filter to return only functions that match the lifecycle state in this parameter. Example: Creating
- timeCreated String
- The time the function was created, expressed in RFC 3339 timestamp format. Example: 2018-09-12T22:47:12.613Z
- timeUpdated String
- The time the function was updated, expressed in RFC 3339 timestamp format. Example: 2018-09-12T22:47:12.613Z
- timeoutIn IntegerSeconds 
- Timeout for executions of the function. Value in seconds.
- traceConfigs List<GetFunction Trace Config> 
- Define the tracing configuration for a function.
- applicationId string
- The OCID of the application to which this function belongs.
- compartmentId string
- The OCID of the compartment that contains the function.
- config {[key: string]: string}
- Function configuration. Overrides application configuration. Keys must be ASCII strings consisting solely of letters, digits, and the '_' (underscore) character, and must not begin with a digit. Values should be limited to printable unicode characters. Example: {"MY_FUNCTION_CONFIG": "ConfVal"}
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- displayName string
- A filter to return only functions with display names that match the display name string. Matching is exact.
- {[key: string]: string}
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- id string
- A filter to return only functions with the specified OCID.
- image string
- The qualified name of the Docker image to use in the function, including the image tag. The image should be in the Oracle Cloud Infrastructure Registry that is in the same region as the function itself. Example: phx.ocir.io/ten/functions/function:0.0.1
- imageDigest string
- The image digest for the version of the image that will be pulled when invoking this function. If no value is specified, the digest currently associated with the image in the Oracle Cloud Infrastructure Registry will be used. Example: sha256:ca0eeb6fb05351dfc8759c20733c91def84cb8007aa89a5bf606bc8b315b9fc7
- invokeEndpoint string
- The base https invoke URL to set on a client in order to invoke a function. This URL will never change over the lifetime of the function and can be cached.
- memoryIn stringMbs 
- Maximum usable memory for the function (MiB).
- provisionedConcurrency GetConfigs Functions Function Provisioned Concurrency Config[] 
- Define the strategy for provisioned concurrency for the function.
- shape string
- The processor shape (GENERIC_X86/GENERIC_ARM) on which to run functions in the application, extracted from the image manifest.
- sourceDetails GetFunctions Function Source Detail[] 
- The source details for the Function. The function can be created from various sources.
- state string
- A filter to return only functions that match the lifecycle state in this parameter. Example: Creating
- timeCreated string
- The time the function was created, expressed in RFC 3339 timestamp format. Example: 2018-09-12T22:47:12.613Z
- timeUpdated string
- The time the function was updated, expressed in RFC 3339 timestamp format. Example: 2018-09-12T22:47:12.613Z
- timeoutIn numberSeconds 
- Timeout for executions of the function. Value in seconds.
- traceConfigs GetFunctions Function Trace Config[] 
- Define the tracing configuration for a function.
- application_id str
- The OCID of the application to which this function belongs.
- compartment_id str
- The OCID of the compartment that contains the function.
- config Mapping[str, str]
- Function configuration. Overrides application configuration. Keys must be ASCII strings consisting solely of letters, digits, and the '_' (underscore) character, and must not begin with a digit. Values should be limited to printable unicode characters. Example: {"MY_FUNCTION_CONFIG": "ConfVal"}
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- display_name str
- A filter to return only functions with display names that match the display name string. Matching is exact.
- Mapping[str, str]
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- id str
- A filter to return only functions with the specified OCID.
- image str
- The qualified name of the Docker image to use in the function, including the image tag. The image should be in the Oracle Cloud Infrastructure Registry that is in the same region as the function itself. Example: phx.ocir.io/ten/functions/function:0.0.1
- image_digest str
- The image digest for the version of the image that will be pulled when invoking this function. If no value is specified, the digest currently associated with the image in the Oracle Cloud Infrastructure Registry will be used. Example: sha256:ca0eeb6fb05351dfc8759c20733c91def84cb8007aa89a5bf606bc8b315b9fc7
- invoke_endpoint str
- The base https invoke URL to set on a client in order to invoke a function. This URL will never change over the lifetime of the function and can be cached.
- memory_in_ strmbs 
- Maximum usable memory for the function (MiB).
- provisioned_concurrency_ Sequence[Getconfigs Functions Function Provisioned Concurrency Config] 
- Define the strategy for provisioned concurrency for the function.
- shape str
- The processor shape (GENERIC_X86/GENERIC_ARM) on which to run functions in the application, extracted from the image manifest.
- source_details Sequence[GetFunctions Function Source Detail] 
- The source details for the Function. The function can be created from various sources.
- state str
- A filter to return only functions that match the lifecycle state in this parameter. Example: Creating
- time_created str
- The time the function was created, expressed in RFC 3339 timestamp format. Example: 2018-09-12T22:47:12.613Z
- time_updated str
- The time the function was updated, expressed in RFC 3339 timestamp format. Example: 2018-09-12T22:47:12.613Z
- timeout_in_ intseconds 
- Timeout for executions of the function. Value in seconds.
- trace_configs Sequence[GetFunctions Function Trace Config] 
- Define the tracing configuration for a function.
- applicationId String
- The OCID of the application to which this function belongs.
- compartmentId String
- The OCID of the compartment that contains the function.
- config Map<String>
- Function configuration. Overrides application configuration. Keys must be ASCII strings consisting solely of letters, digits, and the '_' (underscore) character, and must not begin with a digit. Values should be limited to printable unicode characters. Example: {"MY_FUNCTION_CONFIG": "ConfVal"}
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- displayName String
- A filter to return only functions with display names that match the display name string. Matching is exact.
- Map<String>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- id String
- A filter to return only functions with the specified OCID.
- image String
- The qualified name of the Docker image to use in the function, including the image tag. The image should be in the Oracle Cloud Infrastructure Registry that is in the same region as the function itself. Example: phx.ocir.io/ten/functions/function:0.0.1
- imageDigest String
- The image digest for the version of the image that will be pulled when invoking this function. If no value is specified, the digest currently associated with the image in the Oracle Cloud Infrastructure Registry will be used. Example: sha256:ca0eeb6fb05351dfc8759c20733c91def84cb8007aa89a5bf606bc8b315b9fc7
- invokeEndpoint String
- The base https invoke URL to set on a client in order to invoke a function. This URL will never change over the lifetime of the function and can be cached.
- memoryIn StringMbs 
- Maximum usable memory for the function (MiB).
- provisionedConcurrency List<Property Map>Configs 
- Define the strategy for provisioned concurrency for the function.
- shape String
- The processor shape (GENERIC_X86/GENERIC_ARM) on which to run functions in the application, extracted from the image manifest.
- sourceDetails List<Property Map>
- The source details for the Function. The function can be created from various sources.
- state String
- A filter to return only functions that match the lifecycle state in this parameter. Example: Creating
- timeCreated String
- The time the function was created, expressed in RFC 3339 timestamp format. Example: 2018-09-12T22:47:12.613Z
- timeUpdated String
- The time the function was updated, expressed in RFC 3339 timestamp format. Example: 2018-09-12T22:47:12.613Z
- timeoutIn NumberSeconds 
- Timeout for executions of the function. Value in seconds.
- traceConfigs List<Property Map>
- Define the tracing configuration for a function.
GetFunctionsFunctionProvisionedConcurrencyConfig     
GetFunctionsFunctionSourceDetail    
- PbfListing stringId 
- The OCID of the PbfListing this function is sourced from.
- SourceType string
- Type of the Function Source. Possible values: PRE_BUILT_FUNCTIONS.
- PbfListing stringId 
- The OCID of the PbfListing this function is sourced from.
- SourceType string
- Type of the Function Source. Possible values: PRE_BUILT_FUNCTIONS.
- pbfListing StringId 
- The OCID of the PbfListing this function is sourced from.
- sourceType String
- Type of the Function Source. Possible values: PRE_BUILT_FUNCTIONS.
- pbfListing stringId 
- The OCID of the PbfListing this function is sourced from.
- sourceType string
- Type of the Function Source. Possible values: PRE_BUILT_FUNCTIONS.
- pbf_listing_ strid 
- The OCID of the PbfListing this function is sourced from.
- source_type str
- Type of the Function Source. Possible values: PRE_BUILT_FUNCTIONS.
- pbfListing StringId 
- The OCID of the PbfListing this function is sourced from.
- sourceType String
- Type of the Function Source. Possible values: PRE_BUILT_FUNCTIONS.
GetFunctionsFunctionTraceConfig    
- IsEnabled bool
- Define if tracing is enabled for the resource.
- IsEnabled bool
- Define if tracing is enabled for the resource.
- isEnabled Boolean
- Define if tracing is enabled for the resource.
- isEnabled boolean
- Define if tracing is enabled for the resource.
- is_enabled bool
- Define if tracing is enabled for the resource.
- isEnabled Boolean
- Define if tracing is enabled for the resource.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.
