published on Monday, Jul 27, 2026 by Byteplus
published on Monday, Jul 27, 2026 by Byteplus
VMP Integration Task Resource for Managing Monitoring Data Integration Tasks
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as bytepluscc from "@byteplus/pulumi-bytepluscc";
const example = new bytepluscc.vmp.IntegrationTask("Example", {
name: "tf_test_1001",
workspaceId: "f2e31ff4-01e2-4cef-8da5-4bxxxxxx",
type: "ECS",
environment: "Managed",
createParams: JSON.stringify({
VPCId: "vpc-25oeebv0e4g06pyvxxxxxx",
SubnetIds: ["subnet-2ouq84mwautc06oqj0xxxxxx"],
SecurityGroupIds: ["sg-25oeevlbio746pyvxxxxxx"],
EnableSubnetFilter: true,
ScrapeConfig: `global:
scrape_interval: 15s
scrape_timeout: 10s
scrape_configs:
- job_name: ecs
scheme: http
metrics_path: /metrics
volc_sd_configs:
- port: 9091`,
}),
enabled: false,
tags: [{
key: "env",
value: "test",
}],
});
import pulumi
import json
import pulumi_bytepluscc as bytepluscc
example = bytepluscc.vmp.IntegrationTask("Example",
name="tf_test_1001",
workspace_id="f2e31ff4-01e2-4cef-8da5-4bxxxxxx",
type="ECS",
environment="Managed",
create_params=json.dumps({
"VPCId": "vpc-25oeebv0e4g06pyvxxxxxx",
"SubnetIds": ["subnet-2ouq84mwautc06oqj0xxxxxx"],
"SecurityGroupIds": ["sg-25oeevlbio746pyvxxxxxx"],
"EnableSubnetFilter": True,
"ScrapeConfig": """global:
scrape_interval: 15s
scrape_timeout: 10s
scrape_configs:
- job_name: ecs
scheme: http
metrics_path: /metrics
volc_sd_configs:
- port: 9091""",
}),
enabled=False,
tags=[{
"key": "env",
"value": "test",
}])
package main
import (
"encoding/json"
"github.com/byteplus-sdk/pulumi-bytepluscc/sdk/go/bytepluscc/vmp"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
tmpJSON0, err := json.Marshal(map[string]interface{}{
"VPCId": "vpc-25oeebv0e4g06pyvxxxxxx",
"SubnetIds": []string{
"subnet-2ouq84mwautc06oqj0xxxxxx",
},
"SecurityGroupIds": []string{
"sg-25oeevlbio746pyvxxxxxx",
},
"EnableSubnetFilter": true,
"ScrapeConfig": `global:
scrape_interval: 15s
scrape_timeout: 10s
scrape_configs:
- job_name: ecs
scheme: http
metrics_path: /metrics
volc_sd_configs:
- port: 9091`,
})
if err != nil {
return err
}
json0 := string(tmpJSON0)
_, err = vmp.NewIntegrationTask(ctx, "Example", &vmp.IntegrationTaskArgs{
Name: pulumi.String("tf_test_1001"),
WorkspaceId: pulumi.String("f2e31ff4-01e2-4cef-8da5-4bxxxxxx"),
Type: pulumi.String("ECS"),
Environment: pulumi.String("Managed"),
CreateParams: pulumi.String(json0),
Enabled: pulumi.Bool(false),
Tags: vmp.IntegrationTaskTagArray{
&vmp.IntegrationTaskTagArgs{
Key: pulumi.String("env"),
Value: pulumi.String("test"),
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using System.Text.Json;
using Pulumi;
using Bytepluscc = Byteplus.Pulumi.Bytepluscc;
return await Deployment.RunAsync(() =>
{
var example = new Bytepluscc.Vmp.IntegrationTask("Example", new()
{
Name = "tf_test_1001",
WorkspaceId = "f2e31ff4-01e2-4cef-8da5-4bxxxxxx",
Type = "ECS",
Environment = "Managed",
CreateParams = JsonSerializer.Serialize(new Dictionary<string, object?>
{
["VPCId"] = "vpc-25oeebv0e4g06pyvxxxxxx",
["SubnetIds"] = new[]
{
"subnet-2ouq84mwautc06oqj0xxxxxx",
},
["SecurityGroupIds"] = new[]
{
"sg-25oeevlbio746pyvxxxxxx",
},
["EnableSubnetFilter"] = true,
["ScrapeConfig"] = @"global:
scrape_interval: 15s
scrape_timeout: 10s
scrape_configs:
- job_name: ecs
scheme: http
metrics_path: /metrics
volc_sd_configs:
- port: 9091",
}),
Enabled = false,
Tags = new[]
{
new Bytepluscc.Vmp.Inputs.IntegrationTaskTagArgs
{
Key = "env",
Value = "test",
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.byteplus.bytepluscc.vmp.IntegrationTask;
import com.byteplus.bytepluscc.vmp.IntegrationTaskArgs;
import com.pulumi.bytepluscc.vmp.inputs.IntegrationTaskTagArgs;
import static com.pulumi.codegen.internal.Serialization.*;
import java.util.ArrayList;
import java.util.Arrays;
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 example = new IntegrationTask("example", IntegrationTaskArgs.builder()
.name("tf_test_1001")
.workspaceId("f2e31ff4-01e2-4cef-8da5-4bxxxxxx")
.type("ECS")
.environment("Managed")
.createParams(serializeJson(
jsonObject(
jsonProperty("VPCId", "vpc-25oeebv0e4g06pyvxxxxxx"),
jsonProperty("SubnetIds", jsonArray("subnet-2ouq84mwautc06oqj0xxxxxx")),
jsonProperty("SecurityGroupIds", jsonArray("sg-25oeevlbio746pyvxxxxxx")),
jsonProperty("EnableSubnetFilter", true),
jsonProperty("ScrapeConfig", """
global:
scrape_interval: 15s
scrape_timeout: 10s
scrape_configs:
- job_name: ecs
scheme: http
metrics_path: /metrics
volc_sd_configs:
- port: 9091 """)
)))
.enabled(false)
.tags(IntegrationTaskTagArgs.builder()
.key("env")
.value("test")
.build())
.build());
}
}
resources:
example:
type: bytepluscc:vmp:IntegrationTask
name: Example
properties:
name: tf_test_1001
workspaceId: f2e31ff4-01e2-4cef-8da5-4bxxxxxx
type: ECS
environment: Managed
createParams:
fn::toJSON:
VPCId: vpc-25oeebv0e4g06pyvxxxxxx
SubnetIds:
- subnet-2ouq84mwautc06oqj0xxxxxx
SecurityGroupIds:
- sg-25oeevlbio746pyvxxxxxx
EnableSubnetFilter: true
ScrapeConfig: |-
global:
scrape_interval: 15s
scrape_timeout: 10s
scrape_configs:
- job_name: ecs
scheme: http
metrics_path: /metrics
volc_sd_configs:
- port: 9091
enabled: false
tags:
- key: env
value: test
pulumi {
required_providers {
bytepluscc = {
source = "pulumi/bytepluscc"
}
}
}
resource "bytepluscc_vmp_integrationtask" "Example" {
name = "tf_test_1001"
workspace_id = "f2e31ff4-01e2-4cef-8da5-4bxxxxxx"
type = "ECS"
environment = "Managed"
create_params = jsonencode({
"VPCId" = "vpc-25oeebv0e4g06pyvxxxxxx"
"SubnetIds" = ["subnet-2ouq84mwautc06oqj0xxxxxx"]
"SecurityGroupIds" = ["sg-25oeevlbio746pyvxxxxxx"]
"EnableSubnetFilter" = true
"ScrapeConfig" = "global:\n scrape_interval: 15s\n scrape_timeout: 10s\nscrape_configs:\n- job_name: ecs\n scheme: http\n metrics_path: /metrics\n volc_sd_configs:\n - port: 9091"
})
enabled = false
tags {
key = "env"
value = "test"
}
}
Create IntegrationTask Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new IntegrationTask(name: string, args: IntegrationTaskArgs, opts?: CustomResourceOptions);@overload
def IntegrationTask(resource_name: str,
args: IntegrationTaskArgs,
opts: Optional[ResourceOptions] = None)
@overload
def IntegrationTask(resource_name: str,
opts: Optional[ResourceOptions] = None,
create_params: Optional[str] = None,
name: Optional[str] = None,
type: Optional[str] = None,
enabled: Optional[bool] = None,
environment: Optional[str] = None,
project_name: Optional[str] = None,
sub_type: Optional[str] = None,
tags: Optional[Sequence[IntegrationTaskTagArgs]] = None,
vke_cluster_id: Optional[str] = None,
workspace_id: Optional[str] = None)func NewIntegrationTask(ctx *Context, name string, args IntegrationTaskArgs, opts ...ResourceOption) (*IntegrationTask, error)public IntegrationTask(string name, IntegrationTaskArgs args, CustomResourceOptions? opts = null)
public IntegrationTask(String name, IntegrationTaskArgs args)
public IntegrationTask(String name, IntegrationTaskArgs args, CustomResourceOptions options)
type: bytepluscc:vmp:IntegrationTask
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "bytepluscc_vmp_integration_task" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args IntegrationTaskArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args IntegrationTaskArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args IntegrationTaskArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args IntegrationTaskArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args IntegrationTaskArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var integrationTaskResource = new Bytepluscc.Vmp.IntegrationTask("integrationTaskResource", new()
{
CreateParams = "string",
Name = "string",
Type = "string",
Enabled = false,
Environment = "string",
ProjectName = "string",
SubType = "string",
Tags = new[]
{
new Bytepluscc.Vmp.Inputs.IntegrationTaskTagArgs
{
Key = "string",
Value = "string",
},
},
VkeClusterId = "string",
WorkspaceId = "string",
});
example, err := vmp.NewIntegrationTask(ctx, "integrationTaskResource", &vmp.IntegrationTaskArgs{
CreateParams: pulumi.String("string"),
Name: pulumi.String("string"),
Type: pulumi.String("string"),
Enabled: pulumi.Bool(false),
Environment: pulumi.String("string"),
ProjectName: pulumi.String("string"),
SubType: pulumi.String("string"),
Tags: vmp.IntegrationTaskTagArray{
&vmp.IntegrationTaskTagArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
VkeClusterId: pulumi.String("string"),
WorkspaceId: pulumi.String("string"),
})
resource "bytepluscc_vmp_integration_task" "integrationTaskResource" {
lifecycle {
create_before_destroy = true
}
create_params = "string"
name = "string"
type = "string"
enabled = false
environment = "string"
project_name = "string"
sub_type = "string"
tags {
key = "string"
value = "string"
}
vke_cluster_id = "string"
workspace_id = "string"
}
var integrationTaskResource = new IntegrationTask("integrationTaskResource", IntegrationTaskArgs.builder()
.createParams("string")
.name("string")
.type("string")
.enabled(false)
.environment("string")
.projectName("string")
.subType("string")
.tags(IntegrationTaskTagArgs.builder()
.key("string")
.value("string")
.build())
.vkeClusterId("string")
.workspaceId("string")
.build());
integration_task_resource = bytepluscc.vmp.IntegrationTask("integrationTaskResource",
create_params="string",
name="string",
type="string",
enabled=False,
environment="string",
project_name="string",
sub_type="string",
tags=[{
"key": "string",
"value": "string",
}],
vke_cluster_id="string",
workspace_id="string")
const integrationTaskResource = new bytepluscc.vmp.IntegrationTask("integrationTaskResource", {
createParams: "string",
name: "string",
type: "string",
enabled: false,
environment: "string",
projectName: "string",
subType: "string",
tags: [{
key: "string",
value: "string",
}],
vkeClusterId: "string",
workspaceId: "string",
});
type: bytepluscc:vmp:IntegrationTask
properties:
createParams: string
enabled: false
environment: string
name: string
projectName: string
subType: string
tags:
- key: string
value: string
type: string
vkeClusterId: string
workspaceId: string
IntegrationTask Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The IntegrationTask resource accepts the following input properties:
- Create
Params string - Integration Task Parameters in JSON Format (provided during creation/update)
- Name string
- Integration Task Name
- Type string
- Integration Task Type
- Enabled bool
- Enable Switch for Integration Task. True means enabled, false means disabled
- Environment string
- Integration Task Environment
- Project
Name string - Project Name to Which Integration Task Belongs
- Sub
Type string - Integration Task Subtype
-
List<Byteplus.
Integration Task Tag> - Integration Task Tag List Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- Vke
Cluster stringId - VKE Cluster ID Associated with Integration Task
- Workspace
Id string - Workspace ID Associated with Integration Task
- Create
Params string - Integration Task Parameters in JSON Format (provided during creation/update)
- Name string
- Integration Task Name
- Type string
- Integration Task Type
- Enabled bool
- Enable Switch for Integration Task. True means enabled, false means disabled
- Environment string
- Integration Task Environment
- Project
Name string - Project Name to Which Integration Task Belongs
- Sub
Type string - Integration Task Subtype
-
[]Integration
Task Tag Args - Integration Task Tag List Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- Vke
Cluster stringId - VKE Cluster ID Associated with Integration Task
- Workspace
Id string - Workspace ID Associated with Integration Task
- create_
params string - Integration Task Parameters in JSON Format (provided during creation/update)
- name string
- Integration Task Name
- type string
- Integration Task Type
- enabled bool
- Enable Switch for Integration Task. True means enabled, false means disabled
- environment string
- Integration Task Environment
- project_
name string - Project Name to Which Integration Task Belongs
- sub_
type string - Integration Task Subtype
- list(object)
- Integration Task Tag List Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- vke_
cluster_ stringid - VKE Cluster ID Associated with Integration Task
- workspace_
id string - Workspace ID Associated with Integration Task
- create
Params String - Integration Task Parameters in JSON Format (provided during creation/update)
- name String
- Integration Task Name
- type String
- Integration Task Type
- enabled Boolean
- Enable Switch for Integration Task. True means enabled, false means disabled
- environment String
- Integration Task Environment
- project
Name String - Project Name to Which Integration Task Belongs
- sub
Type String - Integration Task Subtype
-
List<Integration
Task Tag> - Integration Task Tag List Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- vke
Cluster StringId - VKE Cluster ID Associated with Integration Task
- workspace
Id String - Workspace ID Associated with Integration Task
- create
Params string - Integration Task Parameters in JSON Format (provided during creation/update)
- name string
- Integration Task Name
- type string
- Integration Task Type
- enabled boolean
- Enable Switch for Integration Task. True means enabled, false means disabled
- environment string
- Integration Task Environment
- project
Name string - Project Name to Which Integration Task Belongs
- sub
Type string - Integration Task Subtype
-
Integration
Task Tag[] - Integration Task Tag List Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- vke
Cluster stringId - VKE Cluster ID Associated with Integration Task
- workspace
Id string - Workspace ID Associated with Integration Task
- create_
params str - Integration Task Parameters in JSON Format (provided during creation/update)
- name str
- Integration Task Name
- type str
- Integration Task Type
- enabled bool
- Enable Switch for Integration Task. True means enabled, false means disabled
- environment str
- Integration Task Environment
- project_
name str - Project Name to Which Integration Task Belongs
- sub_
type str - Integration Task Subtype
-
Sequence[Integration
Task Tag Args] - Integration Task Tag List Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- vke_
cluster_ strid - VKE Cluster ID Associated with Integration Task
- workspace_
id str - Workspace ID Associated with Integration Task
- create
Params String - Integration Task Parameters in JSON Format (provided during creation/update)
- name String
- Integration Task Name
- type String
- Integration Task Type
- enabled Boolean
- Enable Switch for Integration Task. True means enabled, false means disabled
- environment String
- Integration Task Environment
- project
Name String - Project Name to Which Integration Task Belongs
- sub
Type String - Integration Task Subtype
- List<Property Map>
- Integration Task Tag List Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- vke
Cluster StringId - VKE Cluster ID Associated with Integration Task
- workspace
Id String - Workspace ID Associated with Integration Task
Outputs
All input properties are implicitly available as output properties. Additionally, the IntegrationTask resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Integration
Task stringId - Integration Task Unique Identifier
- Read
Params string - Integration Task Parameters in JSON Format (read-only, returned data)
- Status string
- Actual Running Status of Integration Task (read-only). Values: Creating, Updating, Active, Disabled, Error, Deleting
- Id string
- The provider-assigned unique ID for this managed resource.
- Integration
Task stringId - Integration Task Unique Identifier
- Read
Params string - Integration Task Parameters in JSON Format (read-only, returned data)
- Status string
- Actual Running Status of Integration Task (read-only). Values: Creating, Updating, Active, Disabled, Error, Deleting
- id string
- The provider-assigned unique ID for this managed resource.
- integration_
task_ stringid - Integration Task Unique Identifier
- read_
params string - Integration Task Parameters in JSON Format (read-only, returned data)
- status string
- Actual Running Status of Integration Task (read-only). Values: Creating, Updating, Active, Disabled, Error, Deleting
- id String
- The provider-assigned unique ID for this managed resource.
- integration
Task StringId - Integration Task Unique Identifier
- read
Params String - Integration Task Parameters in JSON Format (read-only, returned data)
- status String
- Actual Running Status of Integration Task (read-only). Values: Creating, Updating, Active, Disabled, Error, Deleting
- id string
- The provider-assigned unique ID for this managed resource.
- integration
Task stringId - Integration Task Unique Identifier
- read
Params string - Integration Task Parameters in JSON Format (read-only, returned data)
- status string
- Actual Running Status of Integration Task (read-only). Values: Creating, Updating, Active, Disabled, Error, Deleting
- id str
- The provider-assigned unique ID for this managed resource.
- integration_
task_ strid - Integration Task Unique Identifier
- read_
params str - Integration Task Parameters in JSON Format (read-only, returned data)
- status str
- Actual Running Status of Integration Task (read-only). Values: Creating, Updating, Active, Disabled, Error, Deleting
- id String
- The provider-assigned unique ID for this managed resource.
- integration
Task StringId - Integration Task Unique Identifier
- read
Params String - Integration Task Parameters in JSON Format (read-only, returned data)
- status String
- Actual Running Status of Integration Task (read-only). Values: Creating, Updating, Active, Disabled, Error, Deleting
Look up Existing IntegrationTask Resource
Get an existing IntegrationTask resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: IntegrationTaskState, opts?: CustomResourceOptions): IntegrationTask@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
create_params: Optional[str] = None,
enabled: Optional[bool] = None,
environment: Optional[str] = None,
integration_task_id: Optional[str] = None,
name: Optional[str] = None,
project_name: Optional[str] = None,
read_params: Optional[str] = None,
status: Optional[str] = None,
sub_type: Optional[str] = None,
tags: Optional[Sequence[IntegrationTaskTagArgs]] = None,
type: Optional[str] = None,
vke_cluster_id: Optional[str] = None,
workspace_id: Optional[str] = None) -> IntegrationTaskfunc GetIntegrationTask(ctx *Context, name string, id IDInput, state *IntegrationTaskState, opts ...ResourceOption) (*IntegrationTask, error)public static IntegrationTask Get(string name, Input<string> id, IntegrationTaskState? state, CustomResourceOptions? opts = null)public static IntegrationTask get(String name, Output<String> id, IntegrationTaskState state, CustomResourceOptions options)resources: _: type: bytepluscc:vmp:IntegrationTask get: id: ${id}import {
to = bytepluscc_vmp_integration_task.example
id = "${id}"
}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Create
Params string - Integration Task Parameters in JSON Format (provided during creation/update)
- Enabled bool
- Enable Switch for Integration Task. True means enabled, false means disabled
- Environment string
- Integration Task Environment
- Integration
Task stringId - Integration Task Unique Identifier
- Name string
- Integration Task Name
- Project
Name string - Project Name to Which Integration Task Belongs
- Read
Params string - Integration Task Parameters in JSON Format (read-only, returned data)
- Status string
- Actual Running Status of Integration Task (read-only). Values: Creating, Updating, Active, Disabled, Error, Deleting
- Sub
Type string - Integration Task Subtype
-
List<Byteplus.
Integration Task Tag> - Integration Task Tag List Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- Type string
- Integration Task Type
- Vke
Cluster stringId - VKE Cluster ID Associated with Integration Task
- Workspace
Id string - Workspace ID Associated with Integration Task
- Create
Params string - Integration Task Parameters in JSON Format (provided during creation/update)
- Enabled bool
- Enable Switch for Integration Task. True means enabled, false means disabled
- Environment string
- Integration Task Environment
- Integration
Task stringId - Integration Task Unique Identifier
- Name string
- Integration Task Name
- Project
Name string - Project Name to Which Integration Task Belongs
- Read
Params string - Integration Task Parameters in JSON Format (read-only, returned data)
- Status string
- Actual Running Status of Integration Task (read-only). Values: Creating, Updating, Active, Disabled, Error, Deleting
- Sub
Type string - Integration Task Subtype
-
[]Integration
Task Tag Args - Integration Task Tag List Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- Type string
- Integration Task Type
- Vke
Cluster stringId - VKE Cluster ID Associated with Integration Task
- Workspace
Id string - Workspace ID Associated with Integration Task
- create_
params string - Integration Task Parameters in JSON Format (provided during creation/update)
- enabled bool
- Enable Switch for Integration Task. True means enabled, false means disabled
- environment string
- Integration Task Environment
- integration_
task_ stringid - Integration Task Unique Identifier
- name string
- Integration Task Name
- project_
name string - Project Name to Which Integration Task Belongs
- read_
params string - Integration Task Parameters in JSON Format (read-only, returned data)
- status string
- Actual Running Status of Integration Task (read-only). Values: Creating, Updating, Active, Disabled, Error, Deleting
- sub_
type string - Integration Task Subtype
- list(object)
- Integration Task Tag List Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- type string
- Integration Task Type
- vke_
cluster_ stringid - VKE Cluster ID Associated with Integration Task
- workspace_
id string - Workspace ID Associated with Integration Task
- create
Params String - Integration Task Parameters in JSON Format (provided during creation/update)
- enabled Boolean
- Enable Switch for Integration Task. True means enabled, false means disabled
- environment String
- Integration Task Environment
- integration
Task StringId - Integration Task Unique Identifier
- name String
- Integration Task Name
- project
Name String - Project Name to Which Integration Task Belongs
- read
Params String - Integration Task Parameters in JSON Format (read-only, returned data)
- status String
- Actual Running Status of Integration Task (read-only). Values: Creating, Updating, Active, Disabled, Error, Deleting
- sub
Type String - Integration Task Subtype
-
List<Integration
Task Tag> - Integration Task Tag List Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- type String
- Integration Task Type
- vke
Cluster StringId - VKE Cluster ID Associated with Integration Task
- workspace
Id String - Workspace ID Associated with Integration Task
- create
Params string - Integration Task Parameters in JSON Format (provided during creation/update)
- enabled boolean
- Enable Switch for Integration Task. True means enabled, false means disabled
- environment string
- Integration Task Environment
- integration
Task stringId - Integration Task Unique Identifier
- name string
- Integration Task Name
- project
Name string - Project Name to Which Integration Task Belongs
- read
Params string - Integration Task Parameters in JSON Format (read-only, returned data)
- status string
- Actual Running Status of Integration Task (read-only). Values: Creating, Updating, Active, Disabled, Error, Deleting
- sub
Type string - Integration Task Subtype
-
Integration
Task Tag[] - Integration Task Tag List Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- type string
- Integration Task Type
- vke
Cluster stringId - VKE Cluster ID Associated with Integration Task
- workspace
Id string - Workspace ID Associated with Integration Task
- create_
params str - Integration Task Parameters in JSON Format (provided during creation/update)
- enabled bool
- Enable Switch for Integration Task. True means enabled, false means disabled
- environment str
- Integration Task Environment
- integration_
task_ strid - Integration Task Unique Identifier
- name str
- Integration Task Name
- project_
name str - Project Name to Which Integration Task Belongs
- read_
params str - Integration Task Parameters in JSON Format (read-only, returned data)
- status str
- Actual Running Status of Integration Task (read-only). Values: Creating, Updating, Active, Disabled, Error, Deleting
- sub_
type str - Integration Task Subtype
-
Sequence[Integration
Task Tag Args] - Integration Task Tag List Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- type str
- Integration Task Type
- vke_
cluster_ strid - VKE Cluster ID Associated with Integration Task
- workspace_
id str - Workspace ID Associated with Integration Task
- create
Params String - Integration Task Parameters in JSON Format (provided during creation/update)
- enabled Boolean
- Enable Switch for Integration Task. True means enabled, false means disabled
- environment String
- Integration Task Environment
- integration
Task StringId - Integration Task Unique Identifier
- name String
- Integration Task Name
- project
Name String - Project Name to Which Integration Task Belongs
- read
Params String - Integration Task Parameters in JSON Format (read-only, returned data)
- status String
- Actual Running Status of Integration Task (read-only). Values: Creating, Updating, Active, Disabled, Error, Deleting
- sub
Type String - Integration Task Subtype
- List<Property Map>
- Integration Task Tag List Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- type String
- Integration Task Type
- vke
Cluster StringId - VKE Cluster ID Associated with Integration Task
- workspace
Id String - Workspace ID Associated with Integration Task
Supporting Types
IntegrationTaskTag, IntegrationTaskTagArgs
Import
$ pulumi import bytepluscc:vmp/integrationTask:IntegrationTask example "integration_task_id"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- bytepluscc byteplus-sdk/pulumi-bytepluscc
- License
- MPL-2.0
- Notes
- This Pulumi package is based on the
byteplusccTerraform Provider.
published on Monday, Jul 27, 2026 by Byteplus