1. Packages
  2. Ibm Provider
  3. API Docs
  4. LogsOutgoingWebhook
ibm 1.78.0 published on Wednesday, Apr 30, 2025 by ibm-cloud

ibm.LogsOutgoingWebhook

Explore with Pulumi AI

ibm logo
ibm 1.78.0 published on Wednesday, Apr 30, 2025 by ibm-cloud

    Create, update, and delete logs_outgoing_webhooks with this resource.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as ibm from "@pulumi/ibm";
    
    const logsOutgoingWebhookInstance = new ibm.LogsOutgoingWebhook("logsOutgoingWebhookInstance", {
        instanceId: ibm_resource_instance.logs_instance.guid,
        region: ibm_resource_instance.logs_instance.location,
        type: "ibm_event_notifications",
        ibmEventNotifications: {
            eventNotificationsInstanceId: "6b33da73-28b6-4201-bfea-b2054bb6ae8a",
            regionId: "us-south",
        },
    });
    
    import pulumi
    import pulumi_ibm as ibm
    
    logs_outgoing_webhook_instance = ibm.LogsOutgoingWebhook("logsOutgoingWebhookInstance",
        instance_id=ibm_resource_instance["logs_instance"]["guid"],
        region=ibm_resource_instance["logs_instance"]["location"],
        type="ibm_event_notifications",
        ibm_event_notifications={
            "event_notifications_instance_id": "6b33da73-28b6-4201-bfea-b2054bb6ae8a",
            "region_id": "us-south",
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/ibm/ibm"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := ibm.NewLogsOutgoingWebhook(ctx, "logsOutgoingWebhookInstance", &ibm.LogsOutgoingWebhookArgs{
    			InstanceId: pulumi.Any(ibm_resource_instance.Logs_instance.Guid),
    			Region:     pulumi.Any(ibm_resource_instance.Logs_instance.Location),
    			Type:       pulumi.String("ibm_event_notifications"),
    			IbmEventNotifications: &ibm.LogsOutgoingWebhookIbmEventNotificationsArgs{
    				EventNotificationsInstanceId: pulumi.String("6b33da73-28b6-4201-bfea-b2054bb6ae8a"),
    				RegionId:                     pulumi.String("us-south"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Ibm = Pulumi.Ibm;
    
    return await Deployment.RunAsync(() => 
    {
        var logsOutgoingWebhookInstance = new Ibm.LogsOutgoingWebhook("logsOutgoingWebhookInstance", new()
        {
            InstanceId = ibm_resource_instance.Logs_instance.Guid,
            Region = ibm_resource_instance.Logs_instance.Location,
            Type = "ibm_event_notifications",
            IbmEventNotifications = new Ibm.Inputs.LogsOutgoingWebhookIbmEventNotificationsArgs
            {
                EventNotificationsInstanceId = "6b33da73-28b6-4201-bfea-b2054bb6ae8a",
                RegionId = "us-south",
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.ibm.LogsOutgoingWebhook;
    import com.pulumi.ibm.LogsOutgoingWebhookArgs;
    import com.pulumi.ibm.inputs.LogsOutgoingWebhookIbmEventNotificationsArgs;
    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 logsOutgoingWebhookInstance = new LogsOutgoingWebhook("logsOutgoingWebhookInstance", LogsOutgoingWebhookArgs.builder()
                .instanceId(ibm_resource_instance.logs_instance().guid())
                .region(ibm_resource_instance.logs_instance().location())
                .type("ibm_event_notifications")
                .ibmEventNotifications(LogsOutgoingWebhookIbmEventNotificationsArgs.builder()
                    .eventNotificationsInstanceId("6b33da73-28b6-4201-bfea-b2054bb6ae8a")
                    .regionId("us-south")
                    .build())
                .build());
    
        }
    }
    
    resources:
      logsOutgoingWebhookInstance:
        type: ibm:LogsOutgoingWebhook
        properties:
          instanceId: ${ibm_resource_instance.logs_instance.guid}
          region: ${ibm_resource_instance.logs_instance.location}
          type: ibm_event_notifications
          ibmEventNotifications:
            eventNotificationsInstanceId: 6b33da73-28b6-4201-bfea-b2054bb6ae8a
            regionId: us-south
    

    Create LogsOutgoingWebhook Resource

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

    Constructor syntax

    new LogsOutgoingWebhook(name: string, args: LogsOutgoingWebhookArgs, opts?: CustomResourceOptions);
    @overload
    def LogsOutgoingWebhook(resource_name: str,
                            args: LogsOutgoingWebhookArgs,
                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def LogsOutgoingWebhook(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            instance_id: Optional[str] = None,
                            type: Optional[str] = None,
                            endpoint_type: Optional[str] = None,
                            ibm_event_notifications: Optional[LogsOutgoingWebhookIbmEventNotificationsArgs] = None,
                            logs_outgoing_webhook_id: Optional[str] = None,
                            name: Optional[str] = None,
                            region: Optional[str] = None,
                            url: Optional[str] = None)
    func NewLogsOutgoingWebhook(ctx *Context, name string, args LogsOutgoingWebhookArgs, opts ...ResourceOption) (*LogsOutgoingWebhook, error)
    public LogsOutgoingWebhook(string name, LogsOutgoingWebhookArgs args, CustomResourceOptions? opts = null)
    public LogsOutgoingWebhook(String name, LogsOutgoingWebhookArgs args)
    public LogsOutgoingWebhook(String name, LogsOutgoingWebhookArgs args, CustomResourceOptions options)
    
    type: ibm:LogsOutgoingWebhook
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args LogsOutgoingWebhookArgs
    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 LogsOutgoingWebhookArgs
    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 LogsOutgoingWebhookArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args LogsOutgoingWebhookArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args LogsOutgoingWebhookArgs
    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 logsOutgoingWebhookResource = new Ibm.LogsOutgoingWebhook("logsOutgoingWebhookResource", new()
    {
        InstanceId = "string",
        Type = "string",
        EndpointType = "string",
        IbmEventNotifications = new Ibm.Inputs.LogsOutgoingWebhookIbmEventNotificationsArgs
        {
            EventNotificationsInstanceId = "string",
            RegionId = "string",
            EndpointType = "string",
            SourceId = "string",
            SourceName = "string",
        },
        LogsOutgoingWebhookId = "string",
        Name = "string",
        Region = "string",
        Url = "string",
    });
    
    example, err := ibm.NewLogsOutgoingWebhook(ctx, "logsOutgoingWebhookResource", &ibm.LogsOutgoingWebhookArgs{
    	InstanceId:   pulumi.String("string"),
    	Type:         pulumi.String("string"),
    	EndpointType: pulumi.String("string"),
    	IbmEventNotifications: &ibm.LogsOutgoingWebhookIbmEventNotificationsArgs{
    		EventNotificationsInstanceId: pulumi.String("string"),
    		RegionId:                     pulumi.String("string"),
    		EndpointType:                 pulumi.String("string"),
    		SourceId:                     pulumi.String("string"),
    		SourceName:                   pulumi.String("string"),
    	},
    	LogsOutgoingWebhookId: pulumi.String("string"),
    	Name:                  pulumi.String("string"),
    	Region:                pulumi.String("string"),
    	Url:                   pulumi.String("string"),
    })
    
    var logsOutgoingWebhookResource = new LogsOutgoingWebhook("logsOutgoingWebhookResource", LogsOutgoingWebhookArgs.builder()
        .instanceId("string")
        .type("string")
        .endpointType("string")
        .ibmEventNotifications(LogsOutgoingWebhookIbmEventNotificationsArgs.builder()
            .eventNotificationsInstanceId("string")
            .regionId("string")
            .endpointType("string")
            .sourceId("string")
            .sourceName("string")
            .build())
        .logsOutgoingWebhookId("string")
        .name("string")
        .region("string")
        .url("string")
        .build());
    
    logs_outgoing_webhook_resource = ibm.LogsOutgoingWebhook("logsOutgoingWebhookResource",
        instance_id="string",
        type="string",
        endpoint_type="string",
        ibm_event_notifications={
            "event_notifications_instance_id": "string",
            "region_id": "string",
            "endpoint_type": "string",
            "source_id": "string",
            "source_name": "string",
        },
        logs_outgoing_webhook_id="string",
        name="string",
        region="string",
        url="string")
    
    const logsOutgoingWebhookResource = new ibm.LogsOutgoingWebhook("logsOutgoingWebhookResource", {
        instanceId: "string",
        type: "string",
        endpointType: "string",
        ibmEventNotifications: {
            eventNotificationsInstanceId: "string",
            regionId: "string",
            endpointType: "string",
            sourceId: "string",
            sourceName: "string",
        },
        logsOutgoingWebhookId: "string",
        name: "string",
        region: "string",
        url: "string",
    });
    
    type: ibm:LogsOutgoingWebhook
    properties:
        endpointType: string
        ibmEventNotifications:
            endpointType: string
            eventNotificationsInstanceId: string
            regionId: string
            sourceId: string
            sourceName: string
        instanceId: string
        logsOutgoingWebhookId: string
        name: string
        region: string
        type: string
        url: string
    

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

    InstanceId string
    Cloud Logs Instance GUID.
    Type string
    The type of the deployed Outbound Integrations to list.

    • Constraints: Allowable values are: ibm_event_notifications.
    EndpointType string
    Cloud Logs Instance Endpoint type. Allowed values public and private.
    IbmEventNotifications LogsOutgoingWebhookIbmEventNotifications
    The configuration of the IBM Event Notifications Outbound Integration. Nested schema for ibm_event_notifications:
    LogsOutgoingWebhookId string
    The unique identifier of the logs_outgoing_webhook resource.
    Name string
    The name of the Outbound Integration.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    Region string
    Cloud Logs Instance Region.
    Url string
    The URL of the Outbound Integration. Null for IBM Event Notifications integration.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    InstanceId string
    Cloud Logs Instance GUID.
    Type string
    The type of the deployed Outbound Integrations to list.

    • Constraints: Allowable values are: ibm_event_notifications.
    EndpointType string
    Cloud Logs Instance Endpoint type. Allowed values public and private.
    IbmEventNotifications LogsOutgoingWebhookIbmEventNotificationsArgs
    The configuration of the IBM Event Notifications Outbound Integration. Nested schema for ibm_event_notifications:
    LogsOutgoingWebhookId string
    The unique identifier of the logs_outgoing_webhook resource.
    Name string
    The name of the Outbound Integration.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    Region string
    Cloud Logs Instance Region.
    Url string
    The URL of the Outbound Integration. Null for IBM Event Notifications integration.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    instanceId String
    Cloud Logs Instance GUID.
    type String
    The type of the deployed Outbound Integrations to list.

    • Constraints: Allowable values are: ibm_event_notifications.
    endpointType String
    Cloud Logs Instance Endpoint type. Allowed values public and private.
    ibmEventNotifications LogsOutgoingWebhookIbmEventNotifications
    The configuration of the IBM Event Notifications Outbound Integration. Nested schema for ibm_event_notifications:
    logsOutgoingWebhookId String
    The unique identifier of the logs_outgoing_webhook resource.
    name String
    The name of the Outbound Integration.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    region String
    Cloud Logs Instance Region.
    url String
    The URL of the Outbound Integration. Null for IBM Event Notifications integration.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    instanceId string
    Cloud Logs Instance GUID.
    type string
    The type of the deployed Outbound Integrations to list.

    • Constraints: Allowable values are: ibm_event_notifications.
    endpointType string
    Cloud Logs Instance Endpoint type. Allowed values public and private.
    ibmEventNotifications LogsOutgoingWebhookIbmEventNotifications
    The configuration of the IBM Event Notifications Outbound Integration. Nested schema for ibm_event_notifications:
    logsOutgoingWebhookId string
    The unique identifier of the logs_outgoing_webhook resource.
    name string
    The name of the Outbound Integration.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    region string
    Cloud Logs Instance Region.
    url string
    The URL of the Outbound Integration. Null for IBM Event Notifications integration.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    instance_id str
    Cloud Logs Instance GUID.
    type str
    The type of the deployed Outbound Integrations to list.

    • Constraints: Allowable values are: ibm_event_notifications.
    endpoint_type str
    Cloud Logs Instance Endpoint type. Allowed values public and private.
    ibm_event_notifications LogsOutgoingWebhookIbmEventNotificationsArgs
    The configuration of the IBM Event Notifications Outbound Integration. Nested schema for ibm_event_notifications:
    logs_outgoing_webhook_id str
    The unique identifier of the logs_outgoing_webhook resource.
    name str
    The name of the Outbound Integration.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    region str
    Cloud Logs Instance Region.
    url str
    The URL of the Outbound Integration. Null for IBM Event Notifications integration.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    instanceId String
    Cloud Logs Instance GUID.
    type String
    The type of the deployed Outbound Integrations to list.

    • Constraints: Allowable values are: ibm_event_notifications.
    endpointType String
    Cloud Logs Instance Endpoint type. Allowed values public and private.
    ibmEventNotifications Property Map
    The configuration of the IBM Event Notifications Outbound Integration. Nested schema for ibm_event_notifications:
    logsOutgoingWebhookId String
    The unique identifier of the logs_outgoing_webhook resource.
    name String
    The name of the Outbound Integration.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    region String
    Cloud Logs Instance Region.
    url String
    The URL of the Outbound Integration. Null for IBM Event Notifications integration.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.

    Outputs

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

    CreatedAt string
    (String) The creation time of the Outbound Integration.
    ExternalId double
    (Integer) The external ID of the Outbound Integration, for connecting with other parts of the system.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    Id string
    The provider-assigned unique ID for this managed resource.
    UpdatedAt string
    (String) The update time of the Outbound Integration.
    WebhookId string
    The unique identifier of the logs_outgoing_webhook.
    CreatedAt string
    (String) The creation time of the Outbound Integration.
    ExternalId float64
    (Integer) The external ID of the Outbound Integration, for connecting with other parts of the system.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    Id string
    The provider-assigned unique ID for this managed resource.
    UpdatedAt string
    (String) The update time of the Outbound Integration.
    WebhookId string
    The unique identifier of the logs_outgoing_webhook.
    createdAt String
    (String) The creation time of the Outbound Integration.
    externalId Double
    (Integer) The external ID of the Outbound Integration, for connecting with other parts of the system.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    id String
    The provider-assigned unique ID for this managed resource.
    updatedAt String
    (String) The update time of the Outbound Integration.
    webhookId String
    The unique identifier of the logs_outgoing_webhook.
    createdAt string
    (String) The creation time of the Outbound Integration.
    externalId number
    (Integer) The external ID of the Outbound Integration, for connecting with other parts of the system.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    id string
    The provider-assigned unique ID for this managed resource.
    updatedAt string
    (String) The update time of the Outbound Integration.
    webhookId string
    The unique identifier of the logs_outgoing_webhook.
    created_at str
    (String) The creation time of the Outbound Integration.
    external_id float
    (Integer) The external ID of the Outbound Integration, for connecting with other parts of the system.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    id str
    The provider-assigned unique ID for this managed resource.
    updated_at str
    (String) The update time of the Outbound Integration.
    webhook_id str
    The unique identifier of the logs_outgoing_webhook.
    createdAt String
    (String) The creation time of the Outbound Integration.
    externalId Number
    (Integer) The external ID of the Outbound Integration, for connecting with other parts of the system.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    id String
    The provider-assigned unique ID for this managed resource.
    updatedAt String
    (String) The update time of the Outbound Integration.
    webhookId String
    The unique identifier of the logs_outgoing_webhook.

    Look up Existing LogsOutgoingWebhook Resource

    Get an existing LogsOutgoingWebhook 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?: LogsOutgoingWebhookState, opts?: CustomResourceOptions): LogsOutgoingWebhook
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            created_at: Optional[str] = None,
            endpoint_type: Optional[str] = None,
            external_id: Optional[float] = None,
            ibm_event_notifications: Optional[LogsOutgoingWebhookIbmEventNotificationsArgs] = None,
            instance_id: Optional[str] = None,
            logs_outgoing_webhook_id: Optional[str] = None,
            name: Optional[str] = None,
            region: Optional[str] = None,
            type: Optional[str] = None,
            updated_at: Optional[str] = None,
            url: Optional[str] = None,
            webhook_id: Optional[str] = None) -> LogsOutgoingWebhook
    func GetLogsOutgoingWebhook(ctx *Context, name string, id IDInput, state *LogsOutgoingWebhookState, opts ...ResourceOption) (*LogsOutgoingWebhook, error)
    public static LogsOutgoingWebhook Get(string name, Input<string> id, LogsOutgoingWebhookState? state, CustomResourceOptions? opts = null)
    public static LogsOutgoingWebhook get(String name, Output<String> id, LogsOutgoingWebhookState state, CustomResourceOptions options)
    resources:  _:    type: ibm:LogsOutgoingWebhook    get:      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:
    CreatedAt string
    (String) The creation time of the Outbound Integration.
    EndpointType string
    Cloud Logs Instance Endpoint type. Allowed values public and private.
    ExternalId double
    (Integer) The external ID of the Outbound Integration, for connecting with other parts of the system.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    IbmEventNotifications LogsOutgoingWebhookIbmEventNotifications
    The configuration of the IBM Event Notifications Outbound Integration. Nested schema for ibm_event_notifications:
    InstanceId string
    Cloud Logs Instance GUID.
    LogsOutgoingWebhookId string
    The unique identifier of the logs_outgoing_webhook resource.
    Name string
    The name of the Outbound Integration.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    Region string
    Cloud Logs Instance Region.
    Type string
    The type of the deployed Outbound Integrations to list.

    • Constraints: Allowable values are: ibm_event_notifications.
    UpdatedAt string
    (String) The update time of the Outbound Integration.
    Url string
    The URL of the Outbound Integration. Null for IBM Event Notifications integration.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    WebhookId string
    The unique identifier of the logs_outgoing_webhook.
    CreatedAt string
    (String) The creation time of the Outbound Integration.
    EndpointType string
    Cloud Logs Instance Endpoint type. Allowed values public and private.
    ExternalId float64
    (Integer) The external ID of the Outbound Integration, for connecting with other parts of the system.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    IbmEventNotifications LogsOutgoingWebhookIbmEventNotificationsArgs
    The configuration of the IBM Event Notifications Outbound Integration. Nested schema for ibm_event_notifications:
    InstanceId string
    Cloud Logs Instance GUID.
    LogsOutgoingWebhookId string
    The unique identifier of the logs_outgoing_webhook resource.
    Name string
    The name of the Outbound Integration.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    Region string
    Cloud Logs Instance Region.
    Type string
    The type of the deployed Outbound Integrations to list.

    • Constraints: Allowable values are: ibm_event_notifications.
    UpdatedAt string
    (String) The update time of the Outbound Integration.
    Url string
    The URL of the Outbound Integration. Null for IBM Event Notifications integration.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    WebhookId string
    The unique identifier of the logs_outgoing_webhook.
    createdAt String
    (String) The creation time of the Outbound Integration.
    endpointType String
    Cloud Logs Instance Endpoint type. Allowed values public and private.
    externalId Double
    (Integer) The external ID of the Outbound Integration, for connecting with other parts of the system.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    ibmEventNotifications LogsOutgoingWebhookIbmEventNotifications
    The configuration of the IBM Event Notifications Outbound Integration. Nested schema for ibm_event_notifications:
    instanceId String
    Cloud Logs Instance GUID.
    logsOutgoingWebhookId String
    The unique identifier of the logs_outgoing_webhook resource.
    name String
    The name of the Outbound Integration.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    region String
    Cloud Logs Instance Region.
    type String
    The type of the deployed Outbound Integrations to list.

    • Constraints: Allowable values are: ibm_event_notifications.
    updatedAt String
    (String) The update time of the Outbound Integration.
    url String
    The URL of the Outbound Integration. Null for IBM Event Notifications integration.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    webhookId String
    The unique identifier of the logs_outgoing_webhook.
    createdAt string
    (String) The creation time of the Outbound Integration.
    endpointType string
    Cloud Logs Instance Endpoint type. Allowed values public and private.
    externalId number
    (Integer) The external ID of the Outbound Integration, for connecting with other parts of the system.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    ibmEventNotifications LogsOutgoingWebhookIbmEventNotifications
    The configuration of the IBM Event Notifications Outbound Integration. Nested schema for ibm_event_notifications:
    instanceId string
    Cloud Logs Instance GUID.
    logsOutgoingWebhookId string
    The unique identifier of the logs_outgoing_webhook resource.
    name string
    The name of the Outbound Integration.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    region string
    Cloud Logs Instance Region.
    type string
    The type of the deployed Outbound Integrations to list.

    • Constraints: Allowable values are: ibm_event_notifications.
    updatedAt string
    (String) The update time of the Outbound Integration.
    url string
    The URL of the Outbound Integration. Null for IBM Event Notifications integration.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    webhookId string
    The unique identifier of the logs_outgoing_webhook.
    created_at str
    (String) The creation time of the Outbound Integration.
    endpoint_type str
    Cloud Logs Instance Endpoint type. Allowed values public and private.
    external_id float
    (Integer) The external ID of the Outbound Integration, for connecting with other parts of the system.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    ibm_event_notifications LogsOutgoingWebhookIbmEventNotificationsArgs
    The configuration of the IBM Event Notifications Outbound Integration. Nested schema for ibm_event_notifications:
    instance_id str
    Cloud Logs Instance GUID.
    logs_outgoing_webhook_id str
    The unique identifier of the logs_outgoing_webhook resource.
    name str
    The name of the Outbound Integration.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    region str
    Cloud Logs Instance Region.
    type str
    The type of the deployed Outbound Integrations to list.

    • Constraints: Allowable values are: ibm_event_notifications.
    updated_at str
    (String) The update time of the Outbound Integration.
    url str
    The URL of the Outbound Integration. Null for IBM Event Notifications integration.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    webhook_id str
    The unique identifier of the logs_outgoing_webhook.
    createdAt String
    (String) The creation time of the Outbound Integration.
    endpointType String
    Cloud Logs Instance Endpoint type. Allowed values public and private.
    externalId Number
    (Integer) The external ID of the Outbound Integration, for connecting with other parts of the system.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    ibmEventNotifications Property Map
    The configuration of the IBM Event Notifications Outbound Integration. Nested schema for ibm_event_notifications:
    instanceId String
    Cloud Logs Instance GUID.
    logsOutgoingWebhookId String
    The unique identifier of the logs_outgoing_webhook resource.
    name String
    The name of the Outbound Integration.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    region String
    Cloud Logs Instance Region.
    type String
    The type of the deployed Outbound Integrations to list.

    • Constraints: Allowable values are: ibm_event_notifications.
    updatedAt String
    (String) The update time of the Outbound Integration.
    url String
    The URL of the Outbound Integration. Null for IBM Event Notifications integration.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    webhookId String
    The unique identifier of the logs_outgoing_webhook.

    Supporting Types

    LogsOutgoingWebhookIbmEventNotifications, LogsOutgoingWebhookIbmEventNotificationsArgs

    EventNotificationsInstanceId string
    The ID of the selected IBM Event Notifications instance.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/.
    RegionId string
    The region ID of the selected IBM Event Notifications instance.

    • Constraints: The maximum length is 4096 characters. The minimum length is 4 characters. The value must match regular expression /^[a-z]{2}-[a-z]+$/.
    EndpointType string
    The endpoint type of integration. Allowed values: private and public. Default is public.
    SourceId string
    The ID of the created source in the IBM Event Notifications instance. Corresponds to the Cloud Logs instance crn. Not required when creating an Outbound Integration.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    SourceName string
    The name of the created source in the IBM Event Notifications instance. Not required when creating an Outbound Integration.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    EventNotificationsInstanceId string
    The ID of the selected IBM Event Notifications instance.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/.
    RegionId string
    The region ID of the selected IBM Event Notifications instance.

    • Constraints: The maximum length is 4096 characters. The minimum length is 4 characters. The value must match regular expression /^[a-z]{2}-[a-z]+$/.
    EndpointType string
    The endpoint type of integration. Allowed values: private and public. Default is public.
    SourceId string
    The ID of the created source in the IBM Event Notifications instance. Corresponds to the Cloud Logs instance crn. Not required when creating an Outbound Integration.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    SourceName string
    The name of the created source in the IBM Event Notifications instance. Not required when creating an Outbound Integration.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    eventNotificationsInstanceId String
    The ID of the selected IBM Event Notifications instance.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/.
    regionId String
    The region ID of the selected IBM Event Notifications instance.

    • Constraints: The maximum length is 4096 characters. The minimum length is 4 characters. The value must match regular expression /^[a-z]{2}-[a-z]+$/.
    endpointType String
    The endpoint type of integration. Allowed values: private and public. Default is public.
    sourceId String
    The ID of the created source in the IBM Event Notifications instance. Corresponds to the Cloud Logs instance crn. Not required when creating an Outbound Integration.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    sourceName String
    The name of the created source in the IBM Event Notifications instance. Not required when creating an Outbound Integration.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    eventNotificationsInstanceId string
    The ID of the selected IBM Event Notifications instance.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/.
    regionId string
    The region ID of the selected IBM Event Notifications instance.

    • Constraints: The maximum length is 4096 characters. The minimum length is 4 characters. The value must match regular expression /^[a-z]{2}-[a-z]+$/.
    endpointType string
    The endpoint type of integration. Allowed values: private and public. Default is public.
    sourceId string
    The ID of the created source in the IBM Event Notifications instance. Corresponds to the Cloud Logs instance crn. Not required when creating an Outbound Integration.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    sourceName string
    The name of the created source in the IBM Event Notifications instance. Not required when creating an Outbound Integration.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    event_notifications_instance_id str
    The ID of the selected IBM Event Notifications instance.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/.
    region_id str
    The region ID of the selected IBM Event Notifications instance.

    • Constraints: The maximum length is 4096 characters. The minimum length is 4 characters. The value must match regular expression /^[a-z]{2}-[a-z]+$/.
    endpoint_type str
    The endpoint type of integration. Allowed values: private and public. Default is public.
    source_id str
    The ID of the created source in the IBM Event Notifications instance. Corresponds to the Cloud Logs instance crn. Not required when creating an Outbound Integration.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    source_name str
    The name of the created source in the IBM Event Notifications instance. Not required when creating an Outbound Integration.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    eventNotificationsInstanceId String
    The ID of the selected IBM Event Notifications instance.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/.
    regionId String
    The region ID of the selected IBM Event Notifications instance.

    • Constraints: The maximum length is 4096 characters. The minimum length is 4 characters. The value must match regular expression /^[a-z]{2}-[a-z]+$/.
    endpointType String
    The endpoint type of integration. Allowed values: private and public. Default is public.
    sourceId String
    The ID of the created source in the IBM Event Notifications instance. Corresponds to the Cloud Logs instance crn. Not required when creating an Outbound Integration.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    sourceName String
    The name of the created source in the IBM Event Notifications instance. Not required when creating an Outbound Integration.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.

    Import

    You can import the ibm_logs_outgoing_webhook resource by using id. id combination of region, instance_id and webhook_id.

    Syntax

    
    ```sh
    $ pulumi import ibm:index/logsOutgoingWebhook:LogsOutgoingWebhook logs_outgoing_webhook < region >/< instance_id >/< webhook_id >;
    ```
    
    

    Example

    $ pulumi import ibm:index/logsOutgoingWebhook:LogsOutgoingWebhook logs_outgoing_webhook eu-gb/3dc02998-0b50-4ea8-b68a-4779d716fa1f/585bea36-bdd1-4bfb-9a26-51f1f8a12660
    

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

    Package Details

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