1. Packages
  2. Tencentcloud Provider
  3. API Docs
  4. getScfFunctions
tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack

tencentcloud.getScfFunctions

Explore with Pulumi AI

tencentcloud logo
tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack

    Use this data source to query SCF functions.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as tencentcloud from "@pulumi/tencentcloud";
    
    const fooScfFunction = new tencentcloud.ScfFunction("fooScfFunction", {
        handler: "main.do_it",
        runtime: "Python3.6",
        cosBucketName: "scf-code-1234567890",
        cosObjectName: "code.zip",
        cosBucketRegion: "ap-guangzhou",
    });
    const fooScfFunctions = tencentcloud.getScfFunctionsOutput({
        name: fooScfFunction.name,
    });
    
    import pulumi
    import pulumi_tencentcloud as tencentcloud
    
    foo_scf_function = tencentcloud.ScfFunction("fooScfFunction",
        handler="main.do_it",
        runtime="Python3.6",
        cos_bucket_name="scf-code-1234567890",
        cos_object_name="code.zip",
        cos_bucket_region="ap-guangzhou")
    foo_scf_functions = tencentcloud.get_scf_functions_output(name=foo_scf_function.name)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/tencentcloud/tencentcloud"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		fooScfFunction, err := tencentcloud.NewScfFunction(ctx, "fooScfFunction", &tencentcloud.ScfFunctionArgs{
    			Handler:         pulumi.String("main.do_it"),
    			Runtime:         pulumi.String("Python3.6"),
    			CosBucketName:   pulumi.String("scf-code-1234567890"),
    			CosObjectName:   pulumi.String("code.zip"),
    			CosBucketRegion: pulumi.String("ap-guangzhou"),
    		})
    		if err != nil {
    			return err
    		}
    		_ = tencentcloud.GetScfFunctionsOutput(ctx, tencentcloud.GetScfFunctionsOutputArgs{
    			Name: fooScfFunction.Name,
    		}, nil)
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Tencentcloud = Pulumi.Tencentcloud;
    
    return await Deployment.RunAsync(() => 
    {
        var fooScfFunction = new Tencentcloud.ScfFunction("fooScfFunction", new()
        {
            Handler = "main.do_it",
            Runtime = "Python3.6",
            CosBucketName = "scf-code-1234567890",
            CosObjectName = "code.zip",
            CosBucketRegion = "ap-guangzhou",
        });
    
        var fooScfFunctions = Tencentcloud.GetScfFunctions.Invoke(new()
        {
            Name = fooScfFunction.Name,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.tencentcloud.ScfFunction;
    import com.pulumi.tencentcloud.ScfFunctionArgs;
    import com.pulumi.tencentcloud.TencentcloudFunctions;
    import com.pulumi.tencentcloud.inputs.GetScfFunctionsArgs;
    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 fooScfFunction = new ScfFunction("fooScfFunction", ScfFunctionArgs.builder()
                .handler("main.do_it")
                .runtime("Python3.6")
                .cosBucketName("scf-code-1234567890")
                .cosObjectName("code.zip")
                .cosBucketRegion("ap-guangzhou")
                .build());
    
            final var fooScfFunctions = TencentcloudFunctions.getScfFunctions(GetScfFunctionsArgs.builder()
                .name(fooScfFunction.name())
                .build());
    
        }
    }
    
    resources:
      fooScfFunction:
        type: tencentcloud:ScfFunction
        properties:
          handler: main.do_it
          runtime: Python3.6
          cosBucketName: scf-code-1234567890
          cosObjectName: code.zip
          cosBucketRegion: ap-guangzhou
    variables:
      fooScfFunctions:
        fn::invoke:
          function: tencentcloud:getScfFunctions
          arguments:
            name: ${fooScfFunction.name}
    

    Using getScfFunctions

    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 getScfFunctions(args: GetScfFunctionsArgs, opts?: InvokeOptions): Promise<GetScfFunctionsResult>
    function getScfFunctionsOutput(args: GetScfFunctionsOutputArgs, opts?: InvokeOptions): Output<GetScfFunctionsResult>
    def get_scf_functions(description: Optional[str] = None,
                          id: Optional[str] = None,
                          name: Optional[str] = None,
                          namespace: Optional[str] = None,
                          result_output_file: Optional[str] = None,
                          tags: Optional[Mapping[str, str]] = None,
                          opts: Optional[InvokeOptions] = None) -> GetScfFunctionsResult
    def get_scf_functions_output(description: Optional[pulumi.Input[str]] = None,
                          id: Optional[pulumi.Input[str]] = None,
                          name: Optional[pulumi.Input[str]] = None,
                          namespace: Optional[pulumi.Input[str]] = None,
                          result_output_file: Optional[pulumi.Input[str]] = None,
                          tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
                          opts: Optional[InvokeOptions] = None) -> Output[GetScfFunctionsResult]
    func GetScfFunctions(ctx *Context, args *GetScfFunctionsArgs, opts ...InvokeOption) (*GetScfFunctionsResult, error)
    func GetScfFunctionsOutput(ctx *Context, args *GetScfFunctionsOutputArgs, opts ...InvokeOption) GetScfFunctionsResultOutput

    > Note: This function is named GetScfFunctions in the Go SDK.

    public static class GetScfFunctions 
    {
        public static Task<GetScfFunctionsResult> InvokeAsync(GetScfFunctionsArgs args, InvokeOptions? opts = null)
        public static Output<GetScfFunctionsResult> Invoke(GetScfFunctionsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetScfFunctionsResult> getScfFunctions(GetScfFunctionsArgs args, InvokeOptions options)
    public static Output<GetScfFunctionsResult> getScfFunctions(GetScfFunctionsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: tencentcloud:index/getScfFunctions:getScfFunctions
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Description string
    Description of the SCF function to be queried.
    Id string
    Name string
    Name of the SCF function to be queried.
    Namespace string
    Namespace of the SCF function to be queried.
    ResultOutputFile string
    Used to save results.
    Tags Dictionary<string, string>
    Tags of the SCF function to be queried, can use up to 10 tags.
    Description string
    Description of the SCF function to be queried.
    Id string
    Name string
    Name of the SCF function to be queried.
    Namespace string
    Namespace of the SCF function to be queried.
    ResultOutputFile string
    Used to save results.
    Tags map[string]string
    Tags of the SCF function to be queried, can use up to 10 tags.
    description String
    Description of the SCF function to be queried.
    id String
    name String
    Name of the SCF function to be queried.
    namespace String
    Namespace of the SCF function to be queried.
    resultOutputFile String
    Used to save results.
    tags Map<String,String>
    Tags of the SCF function to be queried, can use up to 10 tags.
    description string
    Description of the SCF function to be queried.
    id string
    name string
    Name of the SCF function to be queried.
    namespace string
    Namespace of the SCF function to be queried.
    resultOutputFile string
    Used to save results.
    tags {[key: string]: string}
    Tags of the SCF function to be queried, can use up to 10 tags.
    description str
    Description of the SCF function to be queried.
    id str
    name str
    Name of the SCF function to be queried.
    namespace str
    Namespace of the SCF function to be queried.
    result_output_file str
    Used to save results.
    tags Mapping[str, str]
    Tags of the SCF function to be queried, can use up to 10 tags.
    description String
    Description of the SCF function to be queried.
    id String
    name String
    Name of the SCF function to be queried.
    namespace String
    Namespace of the SCF function to be queried.
    resultOutputFile String
    Used to save results.
    tags Map<String>
    Tags of the SCF function to be queried, can use up to 10 tags.

    getScfFunctions Result

    The following output properties are available:

    Functions List<GetScfFunctionsFunction>
    An information list of functions. Each element contains the following attributes:
    Id string
    Description string
    Description of the SCF function.
    Name string
    Name of the SCF function trigger.
    Namespace string
    Namespace of the SCF function.
    ResultOutputFile string
    Tags Dictionary<string, string>
    Tags of the SCF function.
    Functions []GetScfFunctionsFunction
    An information list of functions. Each element contains the following attributes:
    Id string
    Description string
    Description of the SCF function.
    Name string
    Name of the SCF function trigger.
    Namespace string
    Namespace of the SCF function.
    ResultOutputFile string
    Tags map[string]string
    Tags of the SCF function.
    functions List<GetScfFunctionsFunction>
    An information list of functions. Each element contains the following attributes:
    id String
    description String
    Description of the SCF function.
    name String
    Name of the SCF function trigger.
    namespace String
    Namespace of the SCF function.
    resultOutputFile String
    tags Map<String,String>
    Tags of the SCF function.
    functions GetScfFunctionsFunction[]
    An information list of functions. Each element contains the following attributes:
    id string
    description string
    Description of the SCF function.
    name string
    Name of the SCF function trigger.
    namespace string
    Namespace of the SCF function.
    resultOutputFile string
    tags {[key: string]: string}
    Tags of the SCF function.
    functions Sequence[GetScfFunctionsFunction]
    An information list of functions. Each element contains the following attributes:
    id str
    description str
    Description of the SCF function.
    name str
    Name of the SCF function trigger.
    namespace str
    Namespace of the SCF function.
    result_output_file str
    tags Mapping[str, str]
    Tags of the SCF function.
    functions List<Property Map>
    An information list of functions. Each element contains the following attributes:
    id String
    description String
    Description of the SCF function.
    name String
    Name of the SCF function trigger.
    namespace String
    Namespace of the SCF function.
    resultOutputFile String
    tags Map<String>
    Tags of the SCF function.

    Supporting Types

    GetScfFunctionsFunction

    AsyncRunEnable string
    Whether asynchronous attribute is enabled.
    ClsLogsetId string
    CLS logset ID of the SCF function.
    ClsTopicId string
    CLS topic ID of the SCF function.
    CodeError string
    Code error of the SCF function.
    CodeResult string
    Code result of the SCF function.
    CodeSize double
    Code size of the SCF function.
    CreateTime string
    Create time of the SCF function trigger.
    Description string
    Description of the SCF function to be queried.
    DnsCache bool
    Whether to enable Dns caching capability, only the EVENT function is supported. Default is false.
    EipFixed bool
    Whether EIP is a fixed IP.
    Eips List<string>
    EIP list of the SCF function.
    EnableEipConfig bool
    Whether the EIP enabled.
    EnablePublicNet bool
    Whether the public net enabled.
    Environment Dictionary<string, string>
    Environment variable of the SCF function.
    ErrNo double
    Errno of the SCF function.
    Handler string
    Handler of the SCF function.
    Host string
    Host of the SCF function.
    ImageConfigs List<GetScfFunctionsFunctionImageConfig>
    Image of the SCF function, conflict with cos_bucket_name, cos_object_name, cos_bucket_region, zip_file.
    InstallDependency bool
    Whether to automatically install dependencies.
    IntranetConfigs List<GetScfFunctionsFunctionIntranetConfig>
    Intranet access configuration.
    L5Enable bool
    Whether to enable L5.
    MemSize double
    Memory size of the SCF function runtime, unit is M.
    ModifyTime string
    Modify time of the SCF function trigger.
    Name string
    Name of the SCF function to be queried.
    Namespace string
    Namespace of the SCF function to be queried.
    Role string
    CAM role of the SCF function.
    Runtime string
    Runtime of the SCF function.
    Status string
    Status of the SCF function.
    StatusDesc string
    Status description of the SCF function.
    SubnetId string
    Subnet ID of the SCF function.
    Tags Dictionary<string, string>
    Tags of the SCF function to be queried, can use up to 10 tags.
    Timeout double
    Timeout of the SCF function maximum execution time, unit is second.
    TriggerInfos List<GetScfFunctionsFunctionTriggerInfo>
    Trigger details list the SCF function. Each element contains the following attributes:
    Vip string
    Vip of the SCF function.
    VpcId string
    VPC ID of the SCF function.
    AsyncRunEnable string
    Whether asynchronous attribute is enabled.
    ClsLogsetId string
    CLS logset ID of the SCF function.
    ClsTopicId string
    CLS topic ID of the SCF function.
    CodeError string
    Code error of the SCF function.
    CodeResult string
    Code result of the SCF function.
    CodeSize float64
    Code size of the SCF function.
    CreateTime string
    Create time of the SCF function trigger.
    Description string
    Description of the SCF function to be queried.
    DnsCache bool
    Whether to enable Dns caching capability, only the EVENT function is supported. Default is false.
    EipFixed bool
    Whether EIP is a fixed IP.
    Eips []string
    EIP list of the SCF function.
    EnableEipConfig bool
    Whether the EIP enabled.
    EnablePublicNet bool
    Whether the public net enabled.
    Environment map[string]string
    Environment variable of the SCF function.
    ErrNo float64
    Errno of the SCF function.
    Handler string
    Handler of the SCF function.
    Host string
    Host of the SCF function.
    ImageConfigs []GetScfFunctionsFunctionImageConfig
    Image of the SCF function, conflict with cos_bucket_name, cos_object_name, cos_bucket_region, zip_file.
    InstallDependency bool
    Whether to automatically install dependencies.
    IntranetConfigs []GetScfFunctionsFunctionIntranetConfig
    Intranet access configuration.
    L5Enable bool
    Whether to enable L5.
    MemSize float64
    Memory size of the SCF function runtime, unit is M.
    ModifyTime string
    Modify time of the SCF function trigger.
    Name string
    Name of the SCF function to be queried.
    Namespace string
    Namespace of the SCF function to be queried.
    Role string
    CAM role of the SCF function.
    Runtime string
    Runtime of the SCF function.
    Status string
    Status of the SCF function.
    StatusDesc string
    Status description of the SCF function.
    SubnetId string
    Subnet ID of the SCF function.
    Tags map[string]string
    Tags of the SCF function to be queried, can use up to 10 tags.
    Timeout float64
    Timeout of the SCF function maximum execution time, unit is second.
    TriggerInfos []GetScfFunctionsFunctionTriggerInfo
    Trigger details list the SCF function. Each element contains the following attributes:
    Vip string
    Vip of the SCF function.
    VpcId string
    VPC ID of the SCF function.
    asyncRunEnable String
    Whether asynchronous attribute is enabled.
    clsLogsetId String
    CLS logset ID of the SCF function.
    clsTopicId String
    CLS topic ID of the SCF function.
    codeError String
    Code error of the SCF function.
    codeResult String
    Code result of the SCF function.
    codeSize Double
    Code size of the SCF function.
    createTime String
    Create time of the SCF function trigger.
    description String
    Description of the SCF function to be queried.
    dnsCache Boolean
    Whether to enable Dns caching capability, only the EVENT function is supported. Default is false.
    eipFixed Boolean
    Whether EIP is a fixed IP.
    eips List<String>
    EIP list of the SCF function.
    enableEipConfig Boolean
    Whether the EIP enabled.
    enablePublicNet Boolean
    Whether the public net enabled.
    environment Map<String,String>
    Environment variable of the SCF function.
    errNo Double
    Errno of the SCF function.
    handler String
    Handler of the SCF function.
    host String
    Host of the SCF function.
    imageConfigs List<GetScfFunctionsFunctionImageConfig>
    Image of the SCF function, conflict with cos_bucket_name, cos_object_name, cos_bucket_region, zip_file.
    installDependency Boolean
    Whether to automatically install dependencies.
    intranetConfigs List<GetScfFunctionsFunctionIntranetConfig>
    Intranet access configuration.
    l5Enable Boolean
    Whether to enable L5.
    memSize Double
    Memory size of the SCF function runtime, unit is M.
    modifyTime String
    Modify time of the SCF function trigger.
    name String
    Name of the SCF function to be queried.
    namespace String
    Namespace of the SCF function to be queried.
    role String
    CAM role of the SCF function.
    runtime String
    Runtime of the SCF function.
    status String
    Status of the SCF function.
    statusDesc String
    Status description of the SCF function.
    subnetId String
    Subnet ID of the SCF function.
    tags Map<String,String>
    Tags of the SCF function to be queried, can use up to 10 tags.
    timeout Double
    Timeout of the SCF function maximum execution time, unit is second.
    triggerInfos List<GetScfFunctionsFunctionTriggerInfo>
    Trigger details list the SCF function. Each element contains the following attributes:
    vip String
    Vip of the SCF function.
    vpcId String
    VPC ID of the SCF function.
    asyncRunEnable string
    Whether asynchronous attribute is enabled.
    clsLogsetId string
    CLS logset ID of the SCF function.
    clsTopicId string
    CLS topic ID of the SCF function.
    codeError string
    Code error of the SCF function.
    codeResult string
    Code result of the SCF function.
    codeSize number
    Code size of the SCF function.
    createTime string
    Create time of the SCF function trigger.
    description string
    Description of the SCF function to be queried.
    dnsCache boolean
    Whether to enable Dns caching capability, only the EVENT function is supported. Default is false.
    eipFixed boolean
    Whether EIP is a fixed IP.
    eips string[]
    EIP list of the SCF function.
    enableEipConfig boolean
    Whether the EIP enabled.
    enablePublicNet boolean
    Whether the public net enabled.
    environment {[key: string]: string}
    Environment variable of the SCF function.
    errNo number
    Errno of the SCF function.
    handler string
    Handler of the SCF function.
    host string
    Host of the SCF function.
    imageConfigs GetScfFunctionsFunctionImageConfig[]
    Image of the SCF function, conflict with cos_bucket_name, cos_object_name, cos_bucket_region, zip_file.
    installDependency boolean
    Whether to automatically install dependencies.
    intranetConfigs GetScfFunctionsFunctionIntranetConfig[]
    Intranet access configuration.
    l5Enable boolean
    Whether to enable L5.
    memSize number
    Memory size of the SCF function runtime, unit is M.
    modifyTime string
    Modify time of the SCF function trigger.
    name string
    Name of the SCF function to be queried.
    namespace string
    Namespace of the SCF function to be queried.
    role string
    CAM role of the SCF function.
    runtime string
    Runtime of the SCF function.
    status string
    Status of the SCF function.
    statusDesc string
    Status description of the SCF function.
    subnetId string
    Subnet ID of the SCF function.
    tags {[key: string]: string}
    Tags of the SCF function to be queried, can use up to 10 tags.
    timeout number
    Timeout of the SCF function maximum execution time, unit is second.
    triggerInfos GetScfFunctionsFunctionTriggerInfo[]
    Trigger details list the SCF function. Each element contains the following attributes:
    vip string
    Vip of the SCF function.
    vpcId string
    VPC ID of the SCF function.
    async_run_enable str
    Whether asynchronous attribute is enabled.
    cls_logset_id str
    CLS logset ID of the SCF function.
    cls_topic_id str
    CLS topic ID of the SCF function.
    code_error str
    Code error of the SCF function.
    code_result str
    Code result of the SCF function.
    code_size float
    Code size of the SCF function.
    create_time str
    Create time of the SCF function trigger.
    description str
    Description of the SCF function to be queried.
    dns_cache bool
    Whether to enable Dns caching capability, only the EVENT function is supported. Default is false.
    eip_fixed bool
    Whether EIP is a fixed IP.
    eips Sequence[str]
    EIP list of the SCF function.
    enable_eip_config bool
    Whether the EIP enabled.
    enable_public_net bool
    Whether the public net enabled.
    environment Mapping[str, str]
    Environment variable of the SCF function.
    err_no float
    Errno of the SCF function.
    handler str
    Handler of the SCF function.
    host str
    Host of the SCF function.
    image_configs Sequence[GetScfFunctionsFunctionImageConfig]
    Image of the SCF function, conflict with cos_bucket_name, cos_object_name, cos_bucket_region, zip_file.
    install_dependency bool
    Whether to automatically install dependencies.
    intranet_configs Sequence[GetScfFunctionsFunctionIntranetConfig]
    Intranet access configuration.
    l5_enable bool
    Whether to enable L5.
    mem_size float
    Memory size of the SCF function runtime, unit is M.
    modify_time str
    Modify time of the SCF function trigger.
    name str
    Name of the SCF function to be queried.
    namespace str
    Namespace of the SCF function to be queried.
    role str
    CAM role of the SCF function.
    runtime str
    Runtime of the SCF function.
    status str
    Status of the SCF function.
    status_desc str
    Status description of the SCF function.
    subnet_id str
    Subnet ID of the SCF function.
    tags Mapping[str, str]
    Tags of the SCF function to be queried, can use up to 10 tags.
    timeout float
    Timeout of the SCF function maximum execution time, unit is second.
    trigger_infos Sequence[GetScfFunctionsFunctionTriggerInfo]
    Trigger details list the SCF function. Each element contains the following attributes:
    vip str
    Vip of the SCF function.
    vpc_id str
    VPC ID of the SCF function.
    asyncRunEnable String
    Whether asynchronous attribute is enabled.
    clsLogsetId String
    CLS logset ID of the SCF function.
    clsTopicId String
    CLS topic ID of the SCF function.
    codeError String
    Code error of the SCF function.
    codeResult String
    Code result of the SCF function.
    codeSize Number
    Code size of the SCF function.
    createTime String
    Create time of the SCF function trigger.
    description String
    Description of the SCF function to be queried.
    dnsCache Boolean
    Whether to enable Dns caching capability, only the EVENT function is supported. Default is false.
    eipFixed Boolean
    Whether EIP is a fixed IP.
    eips List<String>
    EIP list of the SCF function.
    enableEipConfig Boolean
    Whether the EIP enabled.
    enablePublicNet Boolean
    Whether the public net enabled.
    environment Map<String>
    Environment variable of the SCF function.
    errNo Number
    Errno of the SCF function.
    handler String
    Handler of the SCF function.
    host String
    Host of the SCF function.
    imageConfigs List<Property Map>
    Image of the SCF function, conflict with cos_bucket_name, cos_object_name, cos_bucket_region, zip_file.
    installDependency Boolean
    Whether to automatically install dependencies.
    intranetConfigs List<Property Map>
    Intranet access configuration.
    l5Enable Boolean
    Whether to enable L5.
    memSize Number
    Memory size of the SCF function runtime, unit is M.
    modifyTime String
    Modify time of the SCF function trigger.
    name String
    Name of the SCF function to be queried.
    namespace String
    Namespace of the SCF function to be queried.
    role String
    CAM role of the SCF function.
    runtime String
    Runtime of the SCF function.
    status String
    Status of the SCF function.
    statusDesc String
    Status description of the SCF function.
    subnetId String
    Subnet ID of the SCF function.
    tags Map<String>
    Tags of the SCF function to be queried, can use up to 10 tags.
    timeout Number
    Timeout of the SCF function maximum execution time, unit is second.
    triggerInfos List<Property Map>
    Trigger details list the SCF function. Each element contains the following attributes:
    vip String
    Vip of the SCF function.
    vpcId String
    VPC ID of the SCF function.

    GetScfFunctionsFunctionImageConfig

    Args string
    the parameters of command.
    Command string
    The command of entrypoint.
    ContainerImageAccelerate bool
    Image accelerate switch.
    EntryPoint string
    The entrypoint of app.
    ImagePort double
    Image function port setting. Default is 9000, -1 indicates no port mirroring function. Other value ranges 0 ~ 65535.
    ImageType string
    The image type. personal or enterprise.
    ImageUri string
    The uri of image.
    RegistryId string
    The registry id of TCR. When image type is enterprise, it must be set.
    Args string
    the parameters of command.
    Command string
    The command of entrypoint.
    ContainerImageAccelerate bool
    Image accelerate switch.
    EntryPoint string
    The entrypoint of app.
    ImagePort float64
    Image function port setting. Default is 9000, -1 indicates no port mirroring function. Other value ranges 0 ~ 65535.
    ImageType string
    The image type. personal or enterprise.
    ImageUri string
    The uri of image.
    RegistryId string
    The registry id of TCR. When image type is enterprise, it must be set.
    args String
    the parameters of command.
    command String
    The command of entrypoint.
    containerImageAccelerate Boolean
    Image accelerate switch.
    entryPoint String
    The entrypoint of app.
    imagePort Double
    Image function port setting. Default is 9000, -1 indicates no port mirroring function. Other value ranges 0 ~ 65535.
    imageType String
    The image type. personal or enterprise.
    imageUri String
    The uri of image.
    registryId String
    The registry id of TCR. When image type is enterprise, it must be set.
    args string
    the parameters of command.
    command string
    The command of entrypoint.
    containerImageAccelerate boolean
    Image accelerate switch.
    entryPoint string
    The entrypoint of app.
    imagePort number
    Image function port setting. Default is 9000, -1 indicates no port mirroring function. Other value ranges 0 ~ 65535.
    imageType string
    The image type. personal or enterprise.
    imageUri string
    The uri of image.
    registryId string
    The registry id of TCR. When image type is enterprise, it must be set.
    args str
    the parameters of command.
    command str
    The command of entrypoint.
    container_image_accelerate bool
    Image accelerate switch.
    entry_point str
    The entrypoint of app.
    image_port float
    Image function port setting. Default is 9000, -1 indicates no port mirroring function. Other value ranges 0 ~ 65535.
    image_type str
    The image type. personal or enterprise.
    image_uri str
    The uri of image.
    registry_id str
    The registry id of TCR. When image type is enterprise, it must be set.
    args String
    the parameters of command.
    command String
    The command of entrypoint.
    containerImageAccelerate Boolean
    Image accelerate switch.
    entryPoint String
    The entrypoint of app.
    imagePort Number
    Image function port setting. Default is 9000, -1 indicates no port mirroring function. Other value ranges 0 ~ 65535.
    imageType String
    The image type. personal or enterprise.
    imageUri String
    The uri of image.
    registryId String
    The registry id of TCR. When image type is enterprise, it must be set.

    GetScfFunctionsFunctionIntranetConfig

    IpAddresses List<string>
    If fixed intranet IP is enabled, this field returns the IP list used.
    IpFixed string
    Whether to enable fixed intranet IP, ENABLE is enabled, DISABLE is disabled.
    IpAddresses []string
    If fixed intranet IP is enabled, this field returns the IP list used.
    IpFixed string
    Whether to enable fixed intranet IP, ENABLE is enabled, DISABLE is disabled.
    ipAddresses List<String>
    If fixed intranet IP is enabled, this field returns the IP list used.
    ipFixed String
    Whether to enable fixed intranet IP, ENABLE is enabled, DISABLE is disabled.
    ipAddresses string[]
    If fixed intranet IP is enabled, this field returns the IP list used.
    ipFixed string
    Whether to enable fixed intranet IP, ENABLE is enabled, DISABLE is disabled.
    ip_addresses Sequence[str]
    If fixed intranet IP is enabled, this field returns the IP list used.
    ip_fixed str
    Whether to enable fixed intranet IP, ENABLE is enabled, DISABLE is disabled.
    ipAddresses List<String>
    If fixed intranet IP is enabled, this field returns the IP list used.
    ipFixed String
    Whether to enable fixed intranet IP, ENABLE is enabled, DISABLE is disabled.

    GetScfFunctionsFunctionTriggerInfo

    CreateTime string
    Create time of the SCF function trigger.
    CustomArgument string
    user-defined parameter of the SCF function trigger.
    Enable bool
    Whether to enable SCF function trigger.
    ModifyTime string
    Modify time of the SCF function trigger.
    Name string
    Name of the SCF function to be queried.
    TriggerDesc string
    TriggerDesc of the SCF function trigger.
    Type string
    Type of the SCF function trigger.
    CreateTime string
    Create time of the SCF function trigger.
    CustomArgument string
    user-defined parameter of the SCF function trigger.
    Enable bool
    Whether to enable SCF function trigger.
    ModifyTime string
    Modify time of the SCF function trigger.
    Name string
    Name of the SCF function to be queried.
    TriggerDesc string
    TriggerDesc of the SCF function trigger.
    Type string
    Type of the SCF function trigger.
    createTime String
    Create time of the SCF function trigger.
    customArgument String
    user-defined parameter of the SCF function trigger.
    enable Boolean
    Whether to enable SCF function trigger.
    modifyTime String
    Modify time of the SCF function trigger.
    name String
    Name of the SCF function to be queried.
    triggerDesc String
    TriggerDesc of the SCF function trigger.
    type String
    Type of the SCF function trigger.
    createTime string
    Create time of the SCF function trigger.
    customArgument string
    user-defined parameter of the SCF function trigger.
    enable boolean
    Whether to enable SCF function trigger.
    modifyTime string
    Modify time of the SCF function trigger.
    name string
    Name of the SCF function to be queried.
    triggerDesc string
    TriggerDesc of the SCF function trigger.
    type string
    Type of the SCF function trigger.
    create_time str
    Create time of the SCF function trigger.
    custom_argument str
    user-defined parameter of the SCF function trigger.
    enable bool
    Whether to enable SCF function trigger.
    modify_time str
    Modify time of the SCF function trigger.
    name str
    Name of the SCF function to be queried.
    trigger_desc str
    TriggerDesc of the SCF function trigger.
    type str
    Type of the SCF function trigger.
    createTime String
    Create time of the SCF function trigger.
    customArgument String
    user-defined parameter of the SCF function trigger.
    enable Boolean
    Whether to enable SCF function trigger.
    modifyTime String
    Modify time of the SCF function trigger.
    name String
    Name of the SCF function to be queried.
    triggerDesc String
    TriggerDesc of the SCF function trigger.
    type String
    Type of the SCF function trigger.

    Package Details

    Repository
    tencentcloud tencentcloudstack/terraform-provider-tencentcloud
    License
    Notes
    This Pulumi package is based on the tencentcloud Terraform Provider.
    tencentcloud logo
    tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack