1. Packages
  2. Packages
  3. Volcenginecc Provider
  4. API Docs
  5. tls
  6. AlarmWebhookIntegrationType
Viewing docs for volcenginecc v0.0.49
published on Thursday, Jul 16, 2026 by Volcengine
volcenginecc logo
Viewing docs for volcenginecc v0.0.49
published on Thursday, Jul 16, 2026 by Volcengine

    Webhook integration configuration is used to manage alert notification channels such as DingTalk, Feishu, WeCom, and custom Webhooks

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as volcenginecc from "@volcengine/pulumi-volcenginecc";
    
    const example = new volcenginecc.tls.AlarmWebhookIntegrationType("Example", {
        webhookName: "ccapi-test-1002replace",
        webhookSecret: "",
        webhookType: "custom",
        webhookUrl: "https://open.feishu.cn/open-apis/bot/v2/hook/79a2f8dxxxxxxx",
        webhookHeaders: [
            {
                key: "Content-Type",
                value: "application/json",
            },
            {
                key: "env",
                value: "pre",
            },
        ],
        webhookMethod: "PUT",
    });
    
    import pulumi
    import pulumi_volcenginecc as volcenginecc
    
    example = volcenginecc.tls.AlarmWebhookIntegrationType("Example",
        webhook_name="ccapi-test-1002replace",
        webhook_secret="",
        webhook_type="custom",
        webhook_url="https://open.feishu.cn/open-apis/bot/v2/hook/79a2f8dxxxxxxx",
        webhook_headers=[
            {
                "key": "Content-Type",
                "value": "application/json",
            },
            {
                "key": "env",
                "value": "pre",
            },
        ],
        webhook_method="PUT")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/volcengine/pulumi-volcenginecc/sdk/go/volcenginecc/tls"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := tls.NewAlarmWebhookIntegrationType(ctx, "Example", &tls.AlarmWebhookIntegrationTypeArgs{
    			WebhookName:   pulumi.String("ccapi-test-1002replace"),
    			WebhookSecret: pulumi.String(""),
    			WebhookType:   pulumi.String("custom"),
    			WebhookUrl:    pulumi.String("https://open.feishu.cn/open-apis/bot/v2/hook/79a2f8dxxxxxxx"),
    			WebhookHeaders: tls.AlarmWebhookIntegrationTypeWebhookHeaderArray{
    				&tls.AlarmWebhookIntegrationTypeWebhookHeaderArgs{
    					Key:   pulumi.String("Content-Type"),
    					Value: pulumi.String("application/json"),
    				},
    				&tls.AlarmWebhookIntegrationTypeWebhookHeaderArgs{
    					Key:   pulumi.String("env"),
    					Value: pulumi.String("pre"),
    				},
    			},
    			WebhookMethod: pulumi.String("PUT"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Volcenginecc = Volcengine.Pulumi.Volcenginecc;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Volcenginecc.Tls.AlarmWebhookIntegrationType("Example", new()
        {
            WebhookName = "ccapi-test-1002replace",
            WebhookSecret = "",
            WebhookType = "custom",
            WebhookUrl = "https://open.feishu.cn/open-apis/bot/v2/hook/79a2f8dxxxxxxx",
            WebhookHeaders = new[]
            {
                new Volcenginecc.Tls.Inputs.AlarmWebhookIntegrationTypeWebhookHeaderArgs
                {
                    Key = "Content-Type",
                    Value = "application/json",
                },
                new Volcenginecc.Tls.Inputs.AlarmWebhookIntegrationTypeWebhookHeaderArgs
                {
                    Key = "env",
                    Value = "pre",
                },
            },
            WebhookMethod = "PUT",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.volcengine.volcenginecc.tls.AlarmWebhookIntegrationType;
    import com.volcengine.volcenginecc.tls.AlarmWebhookIntegrationTypeArgs;
    import com.pulumi.volcenginecc.tls.inputs.AlarmWebhookIntegrationTypeWebhookHeaderArgs;
    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 AlarmWebhookIntegrationType("example", AlarmWebhookIntegrationTypeArgs.builder()
                .webhookName("ccapi-test-1002replace")
                .webhookSecret("")
                .webhookType("custom")
                .webhookUrl("https://open.feishu.cn/open-apis/bot/v2/hook/79a2f8dxxxxxxx")
                .webhookHeaders(            
                    AlarmWebhookIntegrationTypeWebhookHeaderArgs.builder()
                        .key("Content-Type")
                        .value("application/json")
                        .build(),
                    AlarmWebhookIntegrationTypeWebhookHeaderArgs.builder()
                        .key("env")
                        .value("pre")
                        .build())
                .webhookMethod("PUT")
                .build());
    
        }
    }
    
    resources:
      example:
        type: volcenginecc:tls:AlarmWebhookIntegrationType
        name: Example
        properties:
          webhookName: ccapi-test-1002replace
          webhookSecret: ""
          webhookType: custom
          webhookUrl: https://open.feishu.cn/open-apis/bot/v2/hook/79a2f8dxxxxxxx
          webhookHeaders:
            - key: Content-Type
              value: application/json
            - key: env
              value: pre
          webhookMethod: PUT
    
    pulumi {
      required_providers {
        volcenginecc = {
          source = "pulumi/volcenginecc"
        }
      }
    }
    
    resource "volcenginecc_tls_alarmwebhookintegrationtype" "Example" {
      webhook_name   = "ccapi-test-1002replace"
      webhook_secret = ""
      webhook_type   = "custom"
      webhook_url    = "https://open.feishu.cn/open-apis/bot/v2/hook/79a2f8dxxxxxxx"
      webhook_headers {
        key   = "Content-Type"
        value = "application/json"
      }
      webhook_headers {
        key   = "env"
        value = "pre"
      }
      webhook_method = "PUT"
    }
    

    Create AlarmWebhookIntegrationType Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new AlarmWebhookIntegrationType(name: string, args: AlarmWebhookIntegrationTypeArgs, opts?: CustomResourceOptions);
    @overload
    def AlarmWebhookIntegrationType(resource_name: str,
                                    args: AlarmWebhookIntegrationTypeArgs,
                                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def AlarmWebhookIntegrationType(resource_name: str,
                                    opts: Optional[ResourceOptions] = None,
                                    webhook_name: Optional[str] = None,
                                    webhook_type: Optional[str] = None,
                                    webhook_url: Optional[str] = None,
                                    webhook_headers: Optional[Sequence[AlarmWebhookIntegrationTypeWebhookHeaderArgs]] = None,
                                    webhook_method: Optional[str] = None,
                                    webhook_secret: Optional[str] = None)
    func NewAlarmWebhookIntegrationType(ctx *Context, name string, args AlarmWebhookIntegrationTypeArgs, opts ...ResourceOption) (*AlarmWebhookIntegrationType, error)
    public AlarmWebhookIntegrationType(string name, AlarmWebhookIntegrationTypeArgs args, CustomResourceOptions? opts = null)
    public AlarmWebhookIntegrationType(String name, AlarmWebhookIntegrationTypeArgs args)
    public AlarmWebhookIntegrationType(String name, AlarmWebhookIntegrationTypeArgs args, CustomResourceOptions options)
    
    type: volcenginecc:tls:AlarmWebhookIntegrationType
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "volcenginecc_tls_alarmwebhookintegrationtype" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args AlarmWebhookIntegrationTypeArgs
    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 AlarmWebhookIntegrationTypeArgs
    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 AlarmWebhookIntegrationTypeArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AlarmWebhookIntegrationTypeArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AlarmWebhookIntegrationTypeArgs
    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 alarmWebhookIntegrationTypeResource = new Volcenginecc.Tls.AlarmWebhookIntegrationType("alarmWebhookIntegrationTypeResource", new()
    {
        WebhookName = "string",
        WebhookType = "string",
        WebhookUrl = "string",
        WebhookHeaders = new[]
        {
            new Volcenginecc.Tls.Inputs.AlarmWebhookIntegrationTypeWebhookHeaderArgs
            {
                Key = "string",
                Value = "string",
            },
        },
        WebhookMethod = "string",
        WebhookSecret = "string",
    });
    
    example, err := tls.NewAlarmWebhookIntegrationType(ctx, "alarmWebhookIntegrationTypeResource", &tls.AlarmWebhookIntegrationTypeArgs{
    	WebhookName: pulumi.String("string"),
    	WebhookType: pulumi.String("string"),
    	WebhookUrl:  pulumi.String("string"),
    	WebhookHeaders: tls.AlarmWebhookIntegrationTypeWebhookHeaderArray{
    		&tls.AlarmWebhookIntegrationTypeWebhookHeaderArgs{
    			Key:   pulumi.String("string"),
    			Value: pulumi.String("string"),
    		},
    	},
    	WebhookMethod: pulumi.String("string"),
    	WebhookSecret: pulumi.String("string"),
    })
    
    resource "volcenginecc_tls_alarmwebhookintegrationtype" "alarmWebhookIntegrationTypeResource" {
      webhook_name = "string"
      webhook_type = "string"
      webhook_url  = "string"
      webhook_headers {
        key   = "string"
        value = "string"
      }
      webhook_method = "string"
      webhook_secret = "string"
    }
    
    var alarmWebhookIntegrationTypeResource = new AlarmWebhookIntegrationType("alarmWebhookIntegrationTypeResource", AlarmWebhookIntegrationTypeArgs.builder()
        .webhookName("string")
        .webhookType("string")
        .webhookUrl("string")
        .webhookHeaders(AlarmWebhookIntegrationTypeWebhookHeaderArgs.builder()
            .key("string")
            .value("string")
            .build())
        .webhookMethod("string")
        .webhookSecret("string")
        .build());
    
    alarm_webhook_integration_type_resource = volcenginecc.tls.AlarmWebhookIntegrationType("alarmWebhookIntegrationTypeResource",
        webhook_name="string",
        webhook_type="string",
        webhook_url="string",
        webhook_headers=[{
            "key": "string",
            "value": "string",
        }],
        webhook_method="string",
        webhook_secret="string")
    
    const alarmWebhookIntegrationTypeResource = new volcenginecc.tls.AlarmWebhookIntegrationType("alarmWebhookIntegrationTypeResource", {
        webhookName: "string",
        webhookType: "string",
        webhookUrl: "string",
        webhookHeaders: [{
            key: "string",
            value: "string",
        }],
        webhookMethod: "string",
        webhookSecret: "string",
    });
    
    type: volcenginecc:tls:AlarmWebhookIntegrationType
    properties:
        webhookHeaders:
            - key: string
              value: string
        webhookMethod: string
        webhookName: string
        webhookSecret: string
        webhookType: string
        webhookUrl: string
    

    AlarmWebhookIntegrationType 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 AlarmWebhookIntegrationType resource accepts the following input properties:

    WebhookName string
    Webhook integration configuration name
    WebhookType string
    Webhook type. custom: custom Webhook address. lark: Feishu. dingtalk: DingTalk. wechat: WeCom
    WebhookUrl string
    Webhook request URL
    WebhookHeaders List<Volcengine.AlarmWebhookIntegrationTypeWebhookHeader>
    Custom Webhook request headers. Required when WebhookType is set to custom 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.
    WebhookMethod string
    Custom Webhook request methods; only POST and PUT are supported
    WebhookSecret string
    Webhook encryption key. If WebhookType is set to lark and signature verification is enabled in the Feishu bot security settings, enter the Feishu bot signature key here. For details, refer to the custom bot usage guide. If WebhookType is set to dingtalk and a signature value is configured in the DingTalk bot, enter the DingTalk bot signature value here. For details, refer to bot development documentation
    WebhookName string
    Webhook integration configuration name
    WebhookType string
    Webhook type. custom: custom Webhook address. lark: Feishu. dingtalk: DingTalk. wechat: WeCom
    WebhookUrl string
    Webhook request URL
    WebhookHeaders []AlarmWebhookIntegrationTypeWebhookHeaderArgs
    Custom Webhook request headers. Required when WebhookType is set to custom 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.
    WebhookMethod string
    Custom Webhook request methods; only POST and PUT are supported
    WebhookSecret string
    Webhook encryption key. If WebhookType is set to lark and signature verification is enabled in the Feishu bot security settings, enter the Feishu bot signature key here. For details, refer to the custom bot usage guide. If WebhookType is set to dingtalk and a signature value is configured in the DingTalk bot, enter the DingTalk bot signature value here. For details, refer to bot development documentation
    webhook_name string
    Webhook integration configuration name
    webhook_type string
    Webhook type. custom: custom Webhook address. lark: Feishu. dingtalk: DingTalk. wechat: WeCom
    webhook_url string
    Webhook request URL
    webhook_headers list(object)
    Custom Webhook request headers. Required when WebhookType is set to custom 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.
    webhook_method string
    Custom Webhook request methods; only POST and PUT are supported
    webhook_secret string
    Webhook encryption key. If WebhookType is set to lark and signature verification is enabled in the Feishu bot security settings, enter the Feishu bot signature key here. For details, refer to the custom bot usage guide. If WebhookType is set to dingtalk and a signature value is configured in the DingTalk bot, enter the DingTalk bot signature value here. For details, refer to bot development documentation
    webhookName String
    Webhook integration configuration name
    webhookType String
    Webhook type. custom: custom Webhook address. lark: Feishu. dingtalk: DingTalk. wechat: WeCom
    webhookUrl String
    Webhook request URL
    webhookHeaders List<AlarmWebhookIntegrationTypeWebhookHeader>
    Custom Webhook request headers. Required when WebhookType is set to custom 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.
    webhookMethod String
    Custom Webhook request methods; only POST and PUT are supported
    webhookSecret String
    Webhook encryption key. If WebhookType is set to lark and signature verification is enabled in the Feishu bot security settings, enter the Feishu bot signature key here. For details, refer to the custom bot usage guide. If WebhookType is set to dingtalk and a signature value is configured in the DingTalk bot, enter the DingTalk bot signature value here. For details, refer to bot development documentation
    webhookName string
    Webhook integration configuration name
    webhookType string
    Webhook type. custom: custom Webhook address. lark: Feishu. dingtalk: DingTalk. wechat: WeCom
    webhookUrl string
    Webhook request URL
    webhookHeaders AlarmWebhookIntegrationTypeWebhookHeader[]
    Custom Webhook request headers. Required when WebhookType is set to custom 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.
    webhookMethod string
    Custom Webhook request methods; only POST and PUT are supported
    webhookSecret string
    Webhook encryption key. If WebhookType is set to lark and signature verification is enabled in the Feishu bot security settings, enter the Feishu bot signature key here. For details, refer to the custom bot usage guide. If WebhookType is set to dingtalk and a signature value is configured in the DingTalk bot, enter the DingTalk bot signature value here. For details, refer to bot development documentation
    webhook_name str
    Webhook integration configuration name
    webhook_type str
    Webhook type. custom: custom Webhook address. lark: Feishu. dingtalk: DingTalk. wechat: WeCom
    webhook_url str
    Webhook request URL
    webhook_headers Sequence[AlarmWebhookIntegrationTypeWebhookHeaderArgs]
    Custom Webhook request headers. Required when WebhookType is set to custom 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.
    webhook_method str
    Custom Webhook request methods; only POST and PUT are supported
    webhook_secret str
    Webhook encryption key. If WebhookType is set to lark and signature verification is enabled in the Feishu bot security settings, enter the Feishu bot signature key here. For details, refer to the custom bot usage guide. If WebhookType is set to dingtalk and a signature value is configured in the DingTalk bot, enter the DingTalk bot signature value here. For details, refer to bot development documentation
    webhookName String
    Webhook integration configuration name
    webhookType String
    Webhook type. custom: custom Webhook address. lark: Feishu. dingtalk: DingTalk. wechat: WeCom
    webhookUrl String
    Webhook request URL
    webhookHeaders List<Property Map>
    Custom Webhook request headers. Required when WebhookType is set to custom 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.
    webhookMethod String
    Custom Webhook request methods; only POST and PUT are supported
    webhookSecret String
    Webhook encryption key. If WebhookType is set to lark and signature verification is enabled in the Feishu bot security settings, enter the Feishu bot signature key here. For details, refer to the custom bot usage guide. If WebhookType is set to dingtalk and a signature value is configured in the DingTalk bot, enter the DingTalk bot signature value here. For details, refer to bot development documentation

    Outputs

    All input properties are implicitly available as output properties. Additionally, the AlarmWebhookIntegrationType resource produces the following output properties:

    CreateTime string
    Webhook integration configuration creation time
    Id string
    The provider-assigned unique ID for this managed resource.
    ModifyTime string
    Webhook integration configuration last modified time
    WebhookId string
    Webhook integration configuration ID
    CreateTime string
    Webhook integration configuration creation time
    Id string
    The provider-assigned unique ID for this managed resource.
    ModifyTime string
    Webhook integration configuration last modified time
    WebhookId string
    Webhook integration configuration ID
    create_time string
    Webhook integration configuration creation time
    id string
    The provider-assigned unique ID for this managed resource.
    modify_time string
    Webhook integration configuration last modified time
    webhook_id string
    Webhook integration configuration ID
    createTime String
    Webhook integration configuration creation time
    id String
    The provider-assigned unique ID for this managed resource.
    modifyTime String
    Webhook integration configuration last modified time
    webhookId String
    Webhook integration configuration ID
    createTime string
    Webhook integration configuration creation time
    id string
    The provider-assigned unique ID for this managed resource.
    modifyTime string
    Webhook integration configuration last modified time
    webhookId string
    Webhook integration configuration ID
    create_time str
    Webhook integration configuration creation time
    id str
    The provider-assigned unique ID for this managed resource.
    modify_time str
    Webhook integration configuration last modified time
    webhook_id str
    Webhook integration configuration ID
    createTime String
    Webhook integration configuration creation time
    id String
    The provider-assigned unique ID for this managed resource.
    modifyTime String
    Webhook integration configuration last modified time
    webhookId String
    Webhook integration configuration ID

    Look up Existing AlarmWebhookIntegrationType Resource

    Get an existing AlarmWebhookIntegrationType 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?: AlarmWebhookIntegrationTypeState, opts?: CustomResourceOptions): AlarmWebhookIntegrationType
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            create_time: Optional[str] = None,
            modify_time: Optional[str] = None,
            webhook_headers: Optional[Sequence[AlarmWebhookIntegrationTypeWebhookHeaderArgs]] = None,
            webhook_id: Optional[str] = None,
            webhook_method: Optional[str] = None,
            webhook_name: Optional[str] = None,
            webhook_secret: Optional[str] = None,
            webhook_type: Optional[str] = None,
            webhook_url: Optional[str] = None) -> AlarmWebhookIntegrationType
    func GetAlarmWebhookIntegrationType(ctx *Context, name string, id IDInput, state *AlarmWebhookIntegrationTypeState, opts ...ResourceOption) (*AlarmWebhookIntegrationType, error)
    public static AlarmWebhookIntegrationType Get(string name, Input<string> id, AlarmWebhookIntegrationTypeState? state, CustomResourceOptions? opts = null)
    public static AlarmWebhookIntegrationType get(String name, Output<String> id, AlarmWebhookIntegrationTypeState state, CustomResourceOptions options)
    resources:  _:    type: volcenginecc:tls:AlarmWebhookIntegrationType    get:      id: ${id}
    import {
      to = volcenginecc_tls_alarmwebhookintegrationtype.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.
    The following state arguments are supported:
    CreateTime string
    Webhook integration configuration creation time
    ModifyTime string
    Webhook integration configuration last modified time
    WebhookHeaders List<Volcengine.AlarmWebhookIntegrationTypeWebhookHeader>
    Custom Webhook request headers. Required when WebhookType is set to custom 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.
    WebhookId string
    Webhook integration configuration ID
    WebhookMethod string
    Custom Webhook request methods; only POST and PUT are supported
    WebhookName string
    Webhook integration configuration name
    WebhookSecret string
    Webhook encryption key. If WebhookType is set to lark and signature verification is enabled in the Feishu bot security settings, enter the Feishu bot signature key here. For details, refer to the custom bot usage guide. If WebhookType is set to dingtalk and a signature value is configured in the DingTalk bot, enter the DingTalk bot signature value here. For details, refer to bot development documentation
    WebhookType string
    Webhook type. custom: custom Webhook address. lark: Feishu. dingtalk: DingTalk. wechat: WeCom
    WebhookUrl string
    Webhook request URL
    CreateTime string
    Webhook integration configuration creation time
    ModifyTime string
    Webhook integration configuration last modified time
    WebhookHeaders []AlarmWebhookIntegrationTypeWebhookHeaderArgs
    Custom Webhook request headers. Required when WebhookType is set to custom 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.
    WebhookId string
    Webhook integration configuration ID
    WebhookMethod string
    Custom Webhook request methods; only POST and PUT are supported
    WebhookName string
    Webhook integration configuration name
    WebhookSecret string
    Webhook encryption key. If WebhookType is set to lark and signature verification is enabled in the Feishu bot security settings, enter the Feishu bot signature key here. For details, refer to the custom bot usage guide. If WebhookType is set to dingtalk and a signature value is configured in the DingTalk bot, enter the DingTalk bot signature value here. For details, refer to bot development documentation
    WebhookType string
    Webhook type. custom: custom Webhook address. lark: Feishu. dingtalk: DingTalk. wechat: WeCom
    WebhookUrl string
    Webhook request URL
    create_time string
    Webhook integration configuration creation time
    modify_time string
    Webhook integration configuration last modified time
    webhook_headers list(object)
    Custom Webhook request headers. Required when WebhookType is set to custom 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.
    webhook_id string
    Webhook integration configuration ID
    webhook_method string
    Custom Webhook request methods; only POST and PUT are supported
    webhook_name string
    Webhook integration configuration name
    webhook_secret string
    Webhook encryption key. If WebhookType is set to lark and signature verification is enabled in the Feishu bot security settings, enter the Feishu bot signature key here. For details, refer to the custom bot usage guide. If WebhookType is set to dingtalk and a signature value is configured in the DingTalk bot, enter the DingTalk bot signature value here. For details, refer to bot development documentation
    webhook_type string
    Webhook type. custom: custom Webhook address. lark: Feishu. dingtalk: DingTalk. wechat: WeCom
    webhook_url string
    Webhook request URL
    createTime String
    Webhook integration configuration creation time
    modifyTime String
    Webhook integration configuration last modified time
    webhookHeaders List<AlarmWebhookIntegrationTypeWebhookHeader>
    Custom Webhook request headers. Required when WebhookType is set to custom 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.
    webhookId String
    Webhook integration configuration ID
    webhookMethod String
    Custom Webhook request methods; only POST and PUT are supported
    webhookName String
    Webhook integration configuration name
    webhookSecret String
    Webhook encryption key. If WebhookType is set to lark and signature verification is enabled in the Feishu bot security settings, enter the Feishu bot signature key here. For details, refer to the custom bot usage guide. If WebhookType is set to dingtalk and a signature value is configured in the DingTalk bot, enter the DingTalk bot signature value here. For details, refer to bot development documentation
    webhookType String
    Webhook type. custom: custom Webhook address. lark: Feishu. dingtalk: DingTalk. wechat: WeCom
    webhookUrl String
    Webhook request URL
    createTime string
    Webhook integration configuration creation time
    modifyTime string
    Webhook integration configuration last modified time
    webhookHeaders AlarmWebhookIntegrationTypeWebhookHeader[]
    Custom Webhook request headers. Required when WebhookType is set to custom 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.
    webhookId string
    Webhook integration configuration ID
    webhookMethod string
    Custom Webhook request methods; only POST and PUT are supported
    webhookName string
    Webhook integration configuration name
    webhookSecret string
    Webhook encryption key. If WebhookType is set to lark and signature verification is enabled in the Feishu bot security settings, enter the Feishu bot signature key here. For details, refer to the custom bot usage guide. If WebhookType is set to dingtalk and a signature value is configured in the DingTalk bot, enter the DingTalk bot signature value here. For details, refer to bot development documentation
    webhookType string
    Webhook type. custom: custom Webhook address. lark: Feishu. dingtalk: DingTalk. wechat: WeCom
    webhookUrl string
    Webhook request URL
    create_time str
    Webhook integration configuration creation time
    modify_time str
    Webhook integration configuration last modified time
    webhook_headers Sequence[AlarmWebhookIntegrationTypeWebhookHeaderArgs]
    Custom Webhook request headers. Required when WebhookType is set to custom 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.
    webhook_id str
    Webhook integration configuration ID
    webhook_method str
    Custom Webhook request methods; only POST and PUT are supported
    webhook_name str
    Webhook integration configuration name
    webhook_secret str
    Webhook encryption key. If WebhookType is set to lark and signature verification is enabled in the Feishu bot security settings, enter the Feishu bot signature key here. For details, refer to the custom bot usage guide. If WebhookType is set to dingtalk and a signature value is configured in the DingTalk bot, enter the DingTalk bot signature value here. For details, refer to bot development documentation
    webhook_type str
    Webhook type. custom: custom Webhook address. lark: Feishu. dingtalk: DingTalk. wechat: WeCom
    webhook_url str
    Webhook request URL
    createTime String
    Webhook integration configuration creation time
    modifyTime String
    Webhook integration configuration last modified time
    webhookHeaders List<Property Map>
    Custom Webhook request headers. Required when WebhookType is set to custom 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.
    webhookId String
    Webhook integration configuration ID
    webhookMethod String
    Custom Webhook request methods; only POST and PUT are supported
    webhookName String
    Webhook integration configuration name
    webhookSecret String
    Webhook encryption key. If WebhookType is set to lark and signature verification is enabled in the Feishu bot security settings, enter the Feishu bot signature key here. For details, refer to the custom bot usage guide. If WebhookType is set to dingtalk and a signature value is configured in the DingTalk bot, enter the DingTalk bot signature value here. For details, refer to bot development documentation
    webhookType String
    Webhook type. custom: custom Webhook address. lark: Feishu. dingtalk: DingTalk. wechat: WeCom
    webhookUrl String
    Webhook request URL

    Supporting Types

    AlarmWebhookIntegrationTypeWebhookHeader, AlarmWebhookIntegrationTypeWebhookHeaderArgs

    Key string
    Key for custom request header
    Value string
    Value for custom request header
    Key string
    Key for custom request header
    Value string
    Value for custom request header
    key string
    Key for custom request header
    value string
    Value for custom request header
    key String
    Key for custom request header
    value String
    Value for custom request header
    key string
    Key for custom request header
    value string
    Value for custom request header
    key str
    Key for custom request header
    value str
    Value for custom request header
    key String
    Key for custom request header
    value String
    Value for custom request header

    Import

    $ pulumi import volcenginecc:tls/alarmWebhookIntegrationType:AlarmWebhookIntegrationType example "webhook_id"
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    volcenginecc volcengine/pulumi-volcenginecc
    License
    MPL-2.0
    Notes
    This Pulumi package is based on the volcenginecc Terraform Provider.
    volcenginecc logo
    Viewing docs for volcenginecc v0.0.49
    published on Thursday, Jul 16, 2026 by Volcengine

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial