ibm.LogsOutgoingWebhook
Explore with Pulumi AI
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:
- Instance
Id string - Cloud Logs Instance GUID.
- Type string
- The type of the deployed Outbound Integrations to list.
- Constraints: Allowable values are:
ibm_event_notifications
.
- Constraints: Allowable values are:
- Endpoint
Type string - Cloud Logs Instance Endpoint type. Allowed values
public
andprivate
. - Ibm
Event LogsNotifications Outgoing Webhook Ibm Event Notifications - The configuration of the IBM Event Notifications Outbound Integration. Nested schema for ibm_event_notifications:
- Logs
Outgoing stringWebhook Id - 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 is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- 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 is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Instance
Id string - Cloud Logs Instance GUID.
- Type string
- The type of the deployed Outbound Integrations to list.
- Constraints: Allowable values are:
ibm_event_notifications
.
- Constraints: Allowable values are:
- Endpoint
Type string - Cloud Logs Instance Endpoint type. Allowed values
public
andprivate
. - Ibm
Event LogsNotifications Outgoing Webhook Ibm Event Notifications Args - The configuration of the IBM Event Notifications Outbound Integration. Nested schema for ibm_event_notifications:
- Logs
Outgoing stringWebhook Id - 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 is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- 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 is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- instance
Id String - Cloud Logs Instance GUID.
- type String
- The type of the deployed Outbound Integrations to list.
- Constraints: Allowable values are:
ibm_event_notifications
.
- Constraints: Allowable values are:
- endpoint
Type String - Cloud Logs Instance Endpoint type. Allowed values
public
andprivate
. - ibm
Event LogsNotifications Outgoing Webhook Ibm Event Notifications - The configuration of the IBM Event Notifications Outbound Integration. Nested schema for ibm_event_notifications:
- logs
Outgoing StringWebhook Id - 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 is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- 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 is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- instance
Id string - Cloud Logs Instance GUID.
- type string
- The type of the deployed Outbound Integrations to list.
- Constraints: Allowable values are:
ibm_event_notifications
.
- Constraints: Allowable values are:
- endpoint
Type string - Cloud Logs Instance Endpoint type. Allowed values
public
andprivate
. - ibm
Event LogsNotifications Outgoing Webhook Ibm Event Notifications - The configuration of the IBM Event Notifications Outbound Integration. Nested schema for ibm_event_notifications:
- logs
Outgoing stringWebhook Id - 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 is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- 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 is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- 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
.
- Constraints: Allowable values are:
- endpoint_
type str - Cloud Logs Instance Endpoint type. Allowed values
public
andprivate
. - ibm_
event_ Logsnotifications Outgoing Webhook Ibm Event Notifications Args - The configuration of the IBM Event Notifications Outbound Integration. Nested schema for ibm_event_notifications:
- logs_
outgoing_ strwebhook_ id - 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 is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- 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 is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- instance
Id String - Cloud Logs Instance GUID.
- type String
- The type of the deployed Outbound Integrations to list.
- Constraints: Allowable values are:
ibm_event_notifications
.
- Constraints: Allowable values are:
- endpoint
Type String - Cloud Logs Instance Endpoint type. Allowed values
public
andprivate
. - ibm
Event Property MapNotifications - The configuration of the IBM Event Notifications Outbound Integration. Nested schema for ibm_event_notifications:
- logs
Outgoing StringWebhook Id - 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 is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- 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 is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
Outputs
All input properties are implicitly available as output properties. Additionally, the LogsOutgoingWebhook resource produces the following output properties:
- Created
At string - (String) The creation time of the Outbound Integration.
- External
Id 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 is0
.
- Constraints: The maximum value is
- Id string
- The provider-assigned unique ID for this managed resource.
- Updated
At string - (String) The update time of the Outbound Integration.
- Webhook
Id string - The unique identifier of the logs_outgoing_webhook.
- Created
At string - (String) The creation time of the Outbound Integration.
- External
Id 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 is0
.
- Constraints: The maximum value is
- Id string
- The provider-assigned unique ID for this managed resource.
- Updated
At string - (String) The update time of the Outbound Integration.
- Webhook
Id string - The unique identifier of the logs_outgoing_webhook.
- created
At String - (String) The creation time of the Outbound Integration.
- external
Id 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 is0
.
- Constraints: The maximum value is
- id String
- The provider-assigned unique ID for this managed resource.
- updated
At String - (String) The update time of the Outbound Integration.
- webhook
Id String - The unique identifier of the logs_outgoing_webhook.
- created
At string - (String) The creation time of the Outbound Integration.
- external
Id 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 is0
.
- Constraints: The maximum value is
- id string
- The provider-assigned unique ID for this managed resource.
- updated
At string - (String) The update time of the Outbound Integration.
- webhook
Id 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 is0
.
- Constraints: The maximum value is
- 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.
- created
At String - (String) The creation time of the Outbound Integration.
- external
Id 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 is0
.
- Constraints: The maximum value is
- id String
- The provider-assigned unique ID for this managed resource.
- updated
At String - (String) The update time of the Outbound Integration.
- webhook
Id 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.
- Created
At string - (String) The creation time of the Outbound Integration.
- Endpoint
Type string - Cloud Logs Instance Endpoint type. Allowed values
public
andprivate
. - External
Id 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 is0
.
- Constraints: The maximum value is
- Ibm
Event LogsNotifications Outgoing Webhook Ibm Event Notifications - The configuration of the IBM Event Notifications Outbound Integration. Nested schema for ibm_event_notifications:
- Instance
Id string - Cloud Logs Instance GUID.
- Logs
Outgoing stringWebhook Id - 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 is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Region string
- Cloud Logs Instance Region.
- Type string
- The type of the deployed Outbound Integrations to list.
- Constraints: Allowable values are:
ibm_event_notifications
.
- Constraints: Allowable values are:
- Updated
At 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 is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Webhook
Id string - The unique identifier of the logs_outgoing_webhook.
- Created
At string - (String) The creation time of the Outbound Integration.
- Endpoint
Type string - Cloud Logs Instance Endpoint type. Allowed values
public
andprivate
. - External
Id 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 is0
.
- Constraints: The maximum value is
- Ibm
Event LogsNotifications Outgoing Webhook Ibm Event Notifications Args - The configuration of the IBM Event Notifications Outbound Integration. Nested schema for ibm_event_notifications:
- Instance
Id string - Cloud Logs Instance GUID.
- Logs
Outgoing stringWebhook Id - 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 is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Region string
- Cloud Logs Instance Region.
- Type string
- The type of the deployed Outbound Integrations to list.
- Constraints: Allowable values are:
ibm_event_notifications
.
- Constraints: Allowable values are:
- Updated
At 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 is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Webhook
Id string - The unique identifier of the logs_outgoing_webhook.
- created
At String - (String) The creation time of the Outbound Integration.
- endpoint
Type String - Cloud Logs Instance Endpoint type. Allowed values
public
andprivate
. - external
Id 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 is0
.
- Constraints: The maximum value is
- ibm
Event LogsNotifications Outgoing Webhook Ibm Event Notifications - The configuration of the IBM Event Notifications Outbound Integration. Nested schema for ibm_event_notifications:
- instance
Id String - Cloud Logs Instance GUID.
- logs
Outgoing StringWebhook Id - 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 is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- region String
- Cloud Logs Instance Region.
- type String
- The type of the deployed Outbound Integrations to list.
- Constraints: Allowable values are:
ibm_event_notifications
.
- Constraints: Allowable values are:
- updated
At 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 is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- webhook
Id String - The unique identifier of the logs_outgoing_webhook.
- created
At string - (String) The creation time of the Outbound Integration.
- endpoint
Type string - Cloud Logs Instance Endpoint type. Allowed values
public
andprivate
. - external
Id 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 is0
.
- Constraints: The maximum value is
- ibm
Event LogsNotifications Outgoing Webhook Ibm Event Notifications - The configuration of the IBM Event Notifications Outbound Integration. Nested schema for ibm_event_notifications:
- instance
Id string - Cloud Logs Instance GUID.
- logs
Outgoing stringWebhook Id - 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 is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- region string
- Cloud Logs Instance Region.
- type string
- The type of the deployed Outbound Integrations to list.
- Constraints: Allowable values are:
ibm_event_notifications
.
- Constraints: Allowable values are:
- updated
At 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 is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- webhook
Id 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
andprivate
. - 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 is0
.
- Constraints: The maximum value is
- ibm_
event_ Logsnotifications Outgoing Webhook Ibm Event Notifications Args - The configuration of the IBM Event Notifications Outbound Integration. Nested schema for ibm_event_notifications:
- instance_
id str - Cloud Logs Instance GUID.
- logs_
outgoing_ strwebhook_ id - 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 is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- region str
- Cloud Logs Instance Region.
- type str
- The type of the deployed Outbound Integrations to list.
- Constraints: Allowable values are:
ibm_event_notifications
.
- Constraints: Allowable values are:
- 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 is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- webhook_
id str - The unique identifier of the logs_outgoing_webhook.
- created
At String - (String) The creation time of the Outbound Integration.
- endpoint
Type String - Cloud Logs Instance Endpoint type. Allowed values
public
andprivate
. - external
Id 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 is0
.
- Constraints: The maximum value is
- ibm
Event Property MapNotifications - The configuration of the IBM Event Notifications Outbound Integration. Nested schema for ibm_event_notifications:
- instance
Id String - Cloud Logs Instance GUID.
- logs
Outgoing StringWebhook Id - 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 is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- region String
- Cloud Logs Instance Region.
- type String
- The type of the deployed Outbound Integrations to list.
- Constraints: Allowable values are:
ibm_event_notifications
.
- Constraints: Allowable values are:
- updated
At 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 is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- webhook
Id String - The unique identifier of the logs_outgoing_webhook.
Supporting Types
LogsOutgoingWebhookIbmEventNotifications, LogsOutgoingWebhookIbmEventNotificationsArgs
- Event
Notifications stringInstance Id - The ID of the selected IBM Event Notifications instance.
- Constraints: The maximum length is
36
characters. The minimum length is36
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}$/
.
- Constraints: The maximum length is
- Region
Id string - The region ID of the selected IBM Event Notifications instance.
- Constraints: The maximum length is
4096
characters. The minimum length is4
characters. The value must match regular expression/^[a-z]{2}-[a-z]+$/
.
- Constraints: The maximum length is
- Endpoint
Type string - The endpoint type of integration. Allowed values:
private
andpublic
. Default ispublic
. - Source
Id 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 is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Source
Name 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 is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Event
Notifications stringInstance Id - The ID of the selected IBM Event Notifications instance.
- Constraints: The maximum length is
36
characters. The minimum length is36
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}$/
.
- Constraints: The maximum length is
- Region
Id string - The region ID of the selected IBM Event Notifications instance.
- Constraints: The maximum length is
4096
characters. The minimum length is4
characters. The value must match regular expression/^[a-z]{2}-[a-z]+$/
.
- Constraints: The maximum length is
- Endpoint
Type string - The endpoint type of integration. Allowed values:
private
andpublic
. Default ispublic
. - Source
Id 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 is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- Source
Name 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 is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- event
Notifications StringInstance Id - The ID of the selected IBM Event Notifications instance.
- Constraints: The maximum length is
36
characters. The minimum length is36
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}$/
.
- Constraints: The maximum length is
- region
Id String - The region ID of the selected IBM Event Notifications instance.
- Constraints: The maximum length is
4096
characters. The minimum length is4
characters. The value must match regular expression/^[a-z]{2}-[a-z]+$/
.
- Constraints: The maximum length is
- endpoint
Type String - The endpoint type of integration. Allowed values:
private
andpublic
. Default ispublic
. - source
Id 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 is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- source
Name 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 is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- event
Notifications stringInstance Id - The ID of the selected IBM Event Notifications instance.
- Constraints: The maximum length is
36
characters. The minimum length is36
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}$/
.
- Constraints: The maximum length is
- region
Id string - The region ID of the selected IBM Event Notifications instance.
- Constraints: The maximum length is
4096
characters. The minimum length is4
characters. The value must match regular expression/^[a-z]{2}-[a-z]+$/
.
- Constraints: The maximum length is
- endpoint
Type string - The endpoint type of integration. Allowed values:
private
andpublic
. Default ispublic
. - source
Id 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 is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- source
Name 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 is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- event_
notifications_ strinstance_ id - The ID of the selected IBM Event Notifications instance.
- Constraints: The maximum length is
36
characters. The minimum length is36
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}$/
.
- Constraints: The maximum length is
- region_
id str - The region ID of the selected IBM Event Notifications instance.
- Constraints: The maximum length is
4096
characters. The minimum length is4
characters. The value must match regular expression/^[a-z]{2}-[a-z]+$/
.
- Constraints: The maximum length is
- endpoint_
type str - The endpoint type of integration. Allowed values:
private
andpublic
. Default ispublic
. - 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 is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- 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 is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- event
Notifications StringInstance Id - The ID of the selected IBM Event Notifications instance.
- Constraints: The maximum length is
36
characters. The minimum length is36
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}$/
.
- Constraints: The maximum length is
- region
Id String - The region ID of the selected IBM Event Notifications instance.
- Constraints: The maximum length is
4096
characters. The minimum length is4
characters. The value must match regular expression/^[a-z]{2}-[a-z]+$/
.
- Constraints: The maximum length is
- endpoint
Type String - The endpoint type of integration. Allowed values:
private
andpublic
. Default ispublic
. - source
Id 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 is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
- source
Name 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 is1
character. The value must match regular expression^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$
.
- Constraints: The maximum length is
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.