tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack
tencentcloud.getScfFunctions
Explore with Pulumi AI
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.
- Result
Output stringFile - Used to save results.
- 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.
- Result
Output stringFile - Used to save results.
- 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.
- result
Output StringFile - Used to save results.
- 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.
- result
Output stringFile - Used to save results.
- {[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_ strfile - Used to save results.
- 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.
- result
Output StringFile - Used to save results.
- 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<Get
Scf Functions Function> - 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.
- Result
Output stringFile - Dictionary<string, string>
- Tags of the SCF function.
- Functions
[]Get
Scf Functions Function - 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.
- Result
Output stringFile - map[string]string
- Tags of the SCF function.
- functions
List<Get
Scf Functions Function> - 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.
- result
Output StringFile - Map<String,String>
- Tags of the SCF function.
- functions
Get
Scf Functions Function[] - 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.
- result
Output stringFile - {[key: string]: string}
- Tags of the SCF function.
- functions
Sequence[Get
Scf Functions Function] - 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_ strfile - 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.
- result
Output StringFile - Map<String>
- Tags of the SCF function.
Supporting Types
GetScfFunctionsFunction
- Async
Run stringEnable - Whether asynchronous attribute is enabled.
- Cls
Logset stringId - CLS logset ID of the SCF function.
- Cls
Topic stringId - CLS topic ID of the SCF function.
- Code
Error string - Code error of the SCF function.
- Code
Result string - Code result of the SCF function.
- Code
Size double - Code size of the SCF function.
- Create
Time string - Create time of the SCF function trigger.
- Description string
- 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 List<string>
- EIP list of the SCF function.
- Enable
Eip boolConfig - Whether the EIP enabled.
- Enable
Public boolNet - Whether the public net enabled.
- Environment Dictionary<string, string>
- Environment variable of the SCF function.
- Err
No double - Errno of the SCF function.
- Handler string
- Handler of the SCF function.
- Host string
- Host of the SCF function.
- Image
Configs List<GetScf Functions Function Image Config> - 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 List<GetScf Functions Function Intranet Config> - Intranet access configuration.
- L5Enable bool
- Whether to enable L5.
- Mem
Size double - Memory size of the SCF function runtime, unit is M.
- Modify
Time 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.
- Status
Desc string - Status description of the SCF function.
- Subnet
Id string - Subnet ID of the SCF function.
- 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.
- Trigger
Infos List<GetScf Functions Function Trigger Info> - Trigger details list the SCF function. Each element contains the following attributes:
- Vip string
- Vip of the SCF function.
- Vpc
Id string - VPC ID of the SCF function.
- Async
Run stringEnable - Whether asynchronous attribute is enabled.
- Cls
Logset stringId - CLS logset ID of the SCF function.
- Cls
Topic stringId - CLS topic ID of the SCF function.
- Code
Error string - Code error of the SCF function.
- Code
Result string - Code result of the SCF function.
- Code
Size float64 - Code size of the SCF function.
- Create
Time string - Create time of the SCF function trigger.
- Description string
- 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 []string
- EIP list of the SCF function.
- Enable
Eip boolConfig - Whether the EIP enabled.
- Enable
Public boolNet - Whether the public net enabled.
- Environment map[string]string
- Environment variable of the SCF function.
- Err
No float64 - Errno of the SCF function.
- Handler string
- Handler of the SCF function.
- Host string
- Host of the SCF function.
- Image
Configs []GetScf Functions Function Image Config - 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 []GetScf Functions Function Intranet Config - Intranet access configuration.
- L5Enable bool
- Whether to enable L5.
- Mem
Size float64 - Memory size of the SCF function runtime, unit is M.
- Modify
Time 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.
- Status
Desc string - Status description of the SCF function.
- Subnet
Id string - Subnet ID of the SCF function.
- 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.
- Trigger
Infos []GetScf Functions Function Trigger Info - Trigger details list the SCF function. Each element contains the following attributes:
- Vip string
- Vip of the SCF function.
- Vpc
Id string - VPC ID of the SCF function.
- async
Run StringEnable - Whether asynchronous attribute is enabled.
- cls
Logset StringId - CLS logset ID of the SCF function.
- cls
Topic StringId - CLS topic ID of the SCF function.
- code
Error String - Code error of the SCF function.
- code
Result String - Code result of the SCF function.
- code
Size Double - Code size of the SCF function.
- create
Time String - Create time of the SCF function trigger.
- description String
- Description of the SCF function to be queried.
- dns
Cache Boolean - Whether to enable Dns caching capability, only the EVENT function is supported. Default is false.
- eip
Fixed Boolean - Whether EIP is a fixed IP.
- eips List<String>
- EIP list of the SCF function.
- enable
Eip BooleanConfig - Whether the EIP enabled.
- enable
Public BooleanNet - Whether the public net enabled.
- environment Map<String,String>
- Environment variable of the SCF function.
- err
No Double - Errno of the SCF function.
- handler String
- Handler of the SCF function.
- host String
- Host of the SCF function.
- image
Configs List<GetScf Functions Function Image Config> - Image of the SCF function, conflict with
cos_bucket_name
,cos_object_name
,cos_bucket_region
,zip_file
. - install
Dependency Boolean - Whether to automatically install dependencies.
- intranet
Configs List<GetScf Functions Function Intranet Config> - Intranet access configuration.
- l5Enable Boolean
- Whether to enable L5.
- mem
Size Double - Memory size of the SCF function runtime, unit is M.
- modify
Time 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.
- status
Desc String - Status description of the SCF function.
- subnet
Id String - Subnet ID of the SCF function.
- 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.
- trigger
Infos List<GetScf Functions Function Trigger Info> - Trigger details list the SCF function. Each element contains the following attributes:
- vip String
- Vip of the SCF function.
- vpc
Id String - VPC ID of the SCF function.
- async
Run stringEnable - Whether asynchronous attribute is enabled.
- cls
Logset stringId - CLS logset ID of the SCF function.
- cls
Topic stringId - CLS topic ID of the SCF function.
- code
Error string - Code error of the SCF function.
- code
Result string - Code result of the SCF function.
- code
Size number - Code size of the SCF function.
- create
Time string - Create time of the SCF function trigger.
- description string
- Description of the SCF function to be queried.
- dns
Cache boolean - Whether to enable Dns caching capability, only the EVENT function is supported. Default is false.
- eip
Fixed boolean - Whether EIP is a fixed IP.
- eips string[]
- EIP list of the SCF function.
- enable
Eip booleanConfig - Whether the EIP enabled.
- enable
Public booleanNet - Whether the public net enabled.
- environment {[key: string]: string}
- Environment variable of the SCF function.
- err
No number - Errno of the SCF function.
- handler string
- Handler of the SCF function.
- host string
- Host of the SCF function.
- image
Configs GetScf Functions Function Image Config[] - Image of the SCF function, conflict with
cos_bucket_name
,cos_object_name
,cos_bucket_region
,zip_file
. - install
Dependency boolean - Whether to automatically install dependencies.
- intranet
Configs GetScf Functions Function Intranet Config[] - Intranet access configuration.
- l5Enable boolean
- Whether to enable L5.
- mem
Size number - Memory size of the SCF function runtime, unit is M.
- modify
Time 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.
- status
Desc string - Status description of the SCF function.
- subnet
Id string - Subnet ID of the SCF function.
- {[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.
- trigger
Infos GetScf Functions Function Trigger Info[] - Trigger details list the SCF function. Each element contains the following attributes:
- vip string
- Vip of the SCF function.
- vpc
Id string - VPC ID of the SCF function.
- async_
run_ strenable - Whether asynchronous attribute is enabled.
- cls_
logset_ strid - CLS logset ID of the SCF function.
- cls_
topic_ strid - 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_ boolconfig - Whether the EIP enabled.
- enable_
public_ boolnet - 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[GetScf Functions Function Image Config] - 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[GetScf Functions Function Intranet Config] - 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.
- 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[GetScf Functions Function Trigger Info] - 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.
- async
Run StringEnable - Whether asynchronous attribute is enabled.
- cls
Logset StringId - CLS logset ID of the SCF function.
- cls
Topic StringId - CLS topic ID of the SCF function.
- code
Error String - Code error of the SCF function.
- code
Result String - Code result of the SCF function.
- code
Size Number - Code size of the SCF function.
- create
Time String - Create time of the SCF function trigger.
- description String
- Description of the SCF function to be queried.
- dns
Cache Boolean - Whether to enable Dns caching capability, only the EVENT function is supported. Default is false.
- eip
Fixed Boolean - Whether EIP is a fixed IP.
- eips List<String>
- EIP list of the SCF function.
- enable
Eip BooleanConfig - Whether the EIP enabled.
- enable
Public BooleanNet - Whether the public net enabled.
- environment Map<String>
- Environment variable of the SCF function.
- err
No Number - Errno of the SCF function.
- handler String
- Handler of the SCF function.
- host String
- Host of the SCF function.
- image
Configs List<Property Map> - Image of the SCF function, conflict with
cos_bucket_name
,cos_object_name
,cos_bucket_region
,zip_file
. - install
Dependency Boolean - Whether to automatically install dependencies.
- intranet
Configs List<Property Map> - Intranet access configuration.
- l5Enable Boolean
- Whether to enable L5.
- mem
Size Number - Memory size of the SCF function runtime, unit is M.
- modify
Time 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.
- status
Desc String - Status description of the SCF function.
- subnet
Id String - Subnet ID of the SCF function.
- 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.
- trigger
Infos List<Property Map> - Trigger details list the SCF function. Each element contains the following attributes:
- vip String
- Vip of the SCF function.
- vpc
Id String - VPC ID of the SCF function.
GetScfFunctionsFunctionImageConfig
- Args string
- the parameters of command.
- Command string
- The command of entrypoint.
- Container
Image boolAccelerate - Image accelerate switch.
- Entry
Point string - The entrypoint of app.
- Image
Port double - Image function port setting. Default is
9000
, -1 indicates no port mirroring function. Other value ranges 0 ~ 65535. - Image
Type string - The image type. personal or enterprise.
- Image
Uri string - The uri of image.
- Registry
Id 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.
- Container
Image boolAccelerate - Image accelerate switch.
- Entry
Point string - The entrypoint of app.
- Image
Port float64 - Image function port setting. Default is
9000
, -1 indicates no port mirroring function. Other value ranges 0 ~ 65535. - Image
Type string - The image type. personal or enterprise.
- Image
Uri string - The uri of image.
- Registry
Id 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.
- container
Image BooleanAccelerate - Image accelerate switch.
- entry
Point String - The entrypoint of app.
- image
Port Double - Image function port setting. Default is
9000
, -1 indicates no port mirroring function. Other value ranges 0 ~ 65535. - image
Type String - The image type. personal or enterprise.
- image
Uri String - The uri of image.
- registry
Id 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.
- container
Image booleanAccelerate - Image accelerate switch.
- entry
Point string - The entrypoint of app.
- image
Port number - Image function port setting. Default is
9000
, -1 indicates no port mirroring function. Other value ranges 0 ~ 65535. - image
Type string - The image type. personal or enterprise.
- image
Uri string - The uri of image.
- registry
Id 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_ boolaccelerate - 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.
- container
Image BooleanAccelerate - Image accelerate switch.
- entry
Point String - The entrypoint of app.
- image
Port Number - Image function port setting. Default is
9000
, -1 indicates no port mirroring function. Other value ranges 0 ~ 65535. - image
Type String - The image type. personal or enterprise.
- image
Uri String - The uri of image.
- registry
Id String - The registry id of TCR. When image type is enterprise, it must be set.
GetScfFunctionsFunctionIntranetConfig
- Ip
Addresses List<string> - If fixed intranet IP is enabled, this field returns the IP list used.
- Ip
Fixed string - Whether to enable fixed intranet IP, ENABLE is enabled, DISABLE is disabled.
- Ip
Addresses []string - If fixed intranet IP is enabled, this field returns the IP list used.
- Ip
Fixed string - Whether to enable fixed intranet IP, ENABLE is enabled, DISABLE is disabled.
- ip
Addresses List<String> - If fixed intranet IP is enabled, this field returns the IP list used.
- ip
Fixed String - Whether to enable fixed intranet IP, ENABLE is enabled, DISABLE is disabled.
- ip
Addresses string[] - If fixed intranet IP is enabled, this field returns the IP list used.
- ip
Fixed 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.
- ip
Addresses List<String> - If fixed intranet IP is enabled, this field returns the IP list used.
- ip
Fixed String - Whether to enable fixed intranet IP, ENABLE is enabled, DISABLE is disabled.
GetScfFunctionsFunctionTriggerInfo
- Create
Time string - Create time of the SCF function trigger.
- Custom
Argument string - user-defined parameter of the SCF function trigger.
- Enable bool
- Whether to enable SCF function trigger.
- Modify
Time string - Modify time of the SCF function trigger.
- Name string
- Name of the SCF function to be queried.
- Trigger
Desc string - TriggerDesc of the SCF function trigger.
- Type string
- Type of the SCF function trigger.
- Create
Time string - Create time of the SCF function trigger.
- Custom
Argument string - user-defined parameter of the SCF function trigger.
- Enable bool
- Whether to enable SCF function trigger.
- Modify
Time string - Modify time of the SCF function trigger.
- Name string
- Name of the SCF function to be queried.
- Trigger
Desc string - TriggerDesc of the SCF function trigger.
- Type string
- Type of the SCF function trigger.
- create
Time String - Create time of the SCF function trigger.
- custom
Argument String - user-defined parameter of the SCF function trigger.
- enable Boolean
- Whether to enable SCF function trigger.
- modify
Time String - Modify time of the SCF function trigger.
- name String
- Name of the SCF function to be queried.
- trigger
Desc String - TriggerDesc of the SCF function trigger.
- type String
- Type of the SCF function trigger.
- create
Time string - Create time of the SCF function trigger.
- custom
Argument string - user-defined parameter of the SCF function trigger.
- enable boolean
- Whether to enable SCF function trigger.
- modify
Time string - Modify time of the SCF function trigger.
- name string
- Name of the SCF function to be queried.
- trigger
Desc 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.
- create
Time String - Create time of the SCF function trigger.
- custom
Argument String - user-defined parameter of the SCF function trigger.
- enable Boolean
- Whether to enable SCF function trigger.
- modify
Time String - Modify time of the SCF function trigger.
- name String
- Name of the SCF function to be queried.
- trigger
Desc 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 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack