1. Packages
  2. Sysdig Provider
  3. API Docs
  4. MonitorNotificationChannelIbmEventNotification
sysdig 1.52.0 published on Monday, Apr 14, 2025 by sysdiglabs

sysdig.MonitorNotificationChannelIbmEventNotification

Explore with Pulumi AI

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as sysdig from "@pulumi/sysdig";

// IBM event notification registering in the same account
const sample = new sysdig.MonitorNotificationChannelIbmEventNotification("sample", {
    enabled: true,
    instanceId: "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
    notifyWhenOk: false,
    notifyWhenResolved: false,
    shareWithCurrentTeam: true,
});
Copy
import pulumi
import pulumi_sysdig as sysdig

# IBM event notification registering in the same account
sample = sysdig.MonitorNotificationChannelIbmEventNotification("sample",
    enabled=True,
    instance_id="xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
    notify_when_ok=False,
    notify_when_resolved=False,
    share_with_current_team=True)
Copy
package main

import (
	"github.com/pulumi/pulumi-terraform-provider/sdks/go/sysdig/sysdig"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		// IBM event notification registering in the same account
		_, err := sysdig.NewMonitorNotificationChannelIbmEventNotification(ctx, "sample", &sysdig.MonitorNotificationChannelIbmEventNotificationArgs{
			Enabled:              pulumi.Bool(true),
			InstanceId:           pulumi.String("xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"),
			NotifyWhenOk:         pulumi.Bool(false),
			NotifyWhenResolved:   pulumi.Bool(false),
			ShareWithCurrentTeam: pulumi.Bool(true),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Sysdig = Pulumi.Sysdig;

return await Deployment.RunAsync(() => 
{
    // IBM event notification registering in the same account
    var sample = new Sysdig.MonitorNotificationChannelIbmEventNotification("sample", new()
    {
        Enabled = true,
        InstanceId = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
        NotifyWhenOk = false,
        NotifyWhenResolved = false,
        ShareWithCurrentTeam = true,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.sysdig.MonitorNotificationChannelIbmEventNotification;
import com.pulumi.sysdig.MonitorNotificationChannelIbmEventNotificationArgs;
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) {
        // IBM event notification registering in the same account
        var sample = new MonitorNotificationChannelIbmEventNotification("sample", MonitorNotificationChannelIbmEventNotificationArgs.builder()
            .enabled(true)
            .instanceId("xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx")
            .notifyWhenOk(false)
            .notifyWhenResolved(false)
            .shareWithCurrentTeam(true)
            .build());

    }
}
Copy
resources:
  # IBM event notification registering in the same account
  sample:
    type: sysdig:MonitorNotificationChannelIbmEventNotification
    properties:
      enabled: true
      instanceId: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
      notifyWhenOk: false
      notifyWhenResolved: false
      shareWithCurrentTeam: true
Copy
import * as pulumi from "@pulumi/pulumi";
import * as sysdig from "@pulumi/sysdig";

// IBM event notification registering in different account
const sample = new sysdig.MonitorNotificationChannelIbmEventNotification("sample", {
    enabled: true,
    instanceId: "crn:v1:bluemix:public:event-notifications:global:a/59bcbfa6ea2f006b4ed7094c1a08dcdd:1a0ec336-f391-4091-a6fb-5e084a4c56f4::",
    notifyWhenOk: false,
    notifyWhenResolved: false,
    shareWithCurrentTeam: true,
});
Copy
import pulumi
import pulumi_sysdig as sysdig

# IBM event notification registering in different account
sample = sysdig.MonitorNotificationChannelIbmEventNotification("sample",
    enabled=True,
    instance_id="crn:v1:bluemix:public:event-notifications:global:a/59bcbfa6ea2f006b4ed7094c1a08dcdd:1a0ec336-f391-4091-a6fb-5e084a4c56f4::",
    notify_when_ok=False,
    notify_when_resolved=False,
    share_with_current_team=True)
Copy
package main

import (
	"github.com/pulumi/pulumi-terraform-provider/sdks/go/sysdig/sysdig"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		// IBM event notification registering in different account
		_, err := sysdig.NewMonitorNotificationChannelIbmEventNotification(ctx, "sample", &sysdig.MonitorNotificationChannelIbmEventNotificationArgs{
			Enabled:              pulumi.Bool(true),
			InstanceId:           pulumi.String("crn:v1:bluemix:public:event-notifications:global:a/59bcbfa6ea2f006b4ed7094c1a08dcdd:1a0ec336-f391-4091-a6fb-5e084a4c56f4::"),
			NotifyWhenOk:         pulumi.Bool(false),
			NotifyWhenResolved:   pulumi.Bool(false),
			ShareWithCurrentTeam: pulumi.Bool(true),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Sysdig = Pulumi.Sysdig;

return await Deployment.RunAsync(() => 
{
    // IBM event notification registering in different account
    var sample = new Sysdig.MonitorNotificationChannelIbmEventNotification("sample", new()
    {
        Enabled = true,
        InstanceId = "crn:v1:bluemix:public:event-notifications:global:a/59bcbfa6ea2f006b4ed7094c1a08dcdd:1a0ec336-f391-4091-a6fb-5e084a4c56f4::",
        NotifyWhenOk = false,
        NotifyWhenResolved = false,
        ShareWithCurrentTeam = true,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.sysdig.MonitorNotificationChannelIbmEventNotification;
import com.pulumi.sysdig.MonitorNotificationChannelIbmEventNotificationArgs;
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) {
        // IBM event notification registering in different account
        var sample = new MonitorNotificationChannelIbmEventNotification("sample", MonitorNotificationChannelIbmEventNotificationArgs.builder()
            .enabled(true)
            .instanceId("crn:v1:bluemix:public:event-notifications:global:a/59bcbfa6ea2f006b4ed7094c1a08dcdd:1a0ec336-f391-4091-a6fb-5e084a4c56f4::")
            .notifyWhenOk(false)
            .notifyWhenResolved(false)
            .shareWithCurrentTeam(true)
            .build());

    }
}
Copy
resources:
  # IBM event notification registering in different account
  sample:
    type: sysdig:MonitorNotificationChannelIbmEventNotification
    properties:
      enabled: true
      instanceId: 'crn:v1:bluemix:public:event-notifications:global:a/59bcbfa6ea2f006b4ed7094c1a08dcdd:1a0ec336-f391-4091-a6fb-5e084a4c56f4::'
      notifyWhenOk: false
      notifyWhenResolved: false
      shareWithCurrentTeam: true
Copy

Create MonitorNotificationChannelIbmEventNotification Resource

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

Constructor syntax

new MonitorNotificationChannelIbmEventNotification(name: string, args: MonitorNotificationChannelIbmEventNotificationArgs, opts?: CustomResourceOptions);
@overload
def MonitorNotificationChannelIbmEventNotification(resource_name: str,
                                                   args: MonitorNotificationChannelIbmEventNotificationArgs,
                                                   opts: Optional[ResourceOptions] = None)

@overload
def MonitorNotificationChannelIbmEventNotification(resource_name: str,
                                                   opts: Optional[ResourceOptions] = None,
                                                   instance_id: Optional[str] = None,
                                                   enabled: Optional[bool] = None,
                                                   monitor_notification_channel_ibm_event_notification_id: Optional[str] = None,
                                                   name: Optional[str] = None,
                                                   notify_when_ok: Optional[bool] = None,
                                                   notify_when_resolved: Optional[bool] = None,
                                                   send_test_notification: Optional[bool] = None,
                                                   share_with_current_team: Optional[bool] = None,
                                                   timeouts: Optional[MonitorNotificationChannelIbmEventNotificationTimeoutsArgs] = None)
func NewMonitorNotificationChannelIbmEventNotification(ctx *Context, name string, args MonitorNotificationChannelIbmEventNotificationArgs, opts ...ResourceOption) (*MonitorNotificationChannelIbmEventNotification, error)
public MonitorNotificationChannelIbmEventNotification(string name, MonitorNotificationChannelIbmEventNotificationArgs args, CustomResourceOptions? opts = null)
public MonitorNotificationChannelIbmEventNotification(String name, MonitorNotificationChannelIbmEventNotificationArgs args)
public MonitorNotificationChannelIbmEventNotification(String name, MonitorNotificationChannelIbmEventNotificationArgs args, CustomResourceOptions options)
type: sysdig:MonitorNotificationChannelIbmEventNotification
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. MonitorNotificationChannelIbmEventNotificationArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. MonitorNotificationChannelIbmEventNotificationArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. MonitorNotificationChannelIbmEventNotificationArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. MonitorNotificationChannelIbmEventNotificationArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. MonitorNotificationChannelIbmEventNotificationArgs
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 monitorNotificationChannelIbmEventNotificationResource = new Sysdig.MonitorNotificationChannelIbmEventNotification("monitorNotificationChannelIbmEventNotificationResource", new()
{
    InstanceId = "string",
    Enabled = false,
    MonitorNotificationChannelIbmEventNotificationId = "string",
    Name = "string",
    NotifyWhenOk = false,
    NotifyWhenResolved = false,
    SendTestNotification = false,
    ShareWithCurrentTeam = false,
    Timeouts = new Sysdig.Inputs.MonitorNotificationChannelIbmEventNotificationTimeoutsArgs
    {
        Create = "string",
        Delete = "string",
        Read = "string",
        Update = "string",
    },
});
Copy
example, err := sysdig.NewMonitorNotificationChannelIbmEventNotification(ctx, "monitorNotificationChannelIbmEventNotificationResource", &sysdig.MonitorNotificationChannelIbmEventNotificationArgs{
InstanceId: pulumi.String("string"),
Enabled: pulumi.Bool(false),
MonitorNotificationChannelIbmEventNotificationId: pulumi.String("string"),
Name: pulumi.String("string"),
NotifyWhenOk: pulumi.Bool(false),
NotifyWhenResolved: pulumi.Bool(false),
SendTestNotification: pulumi.Bool(false),
ShareWithCurrentTeam: pulumi.Bool(false),
Timeouts: &.MonitorNotificationChannelIbmEventNotificationTimeoutsArgs{
Create: pulumi.String("string"),
Delete: pulumi.String("string"),
Read: pulumi.String("string"),
Update: pulumi.String("string"),
},
})
Copy
var monitorNotificationChannelIbmEventNotificationResource = new MonitorNotificationChannelIbmEventNotification("monitorNotificationChannelIbmEventNotificationResource", MonitorNotificationChannelIbmEventNotificationArgs.builder()
    .instanceId("string")
    .enabled(false)
    .monitorNotificationChannelIbmEventNotificationId("string")
    .name("string")
    .notifyWhenOk(false)
    .notifyWhenResolved(false)
    .sendTestNotification(false)
    .shareWithCurrentTeam(false)
    .timeouts(MonitorNotificationChannelIbmEventNotificationTimeoutsArgs.builder()
        .create("string")
        .delete("string")
        .read("string")
        .update("string")
        .build())
    .build());
Copy
monitor_notification_channel_ibm_event_notification_resource = sysdig.MonitorNotificationChannelIbmEventNotification("monitorNotificationChannelIbmEventNotificationResource",
    instance_id="string",
    enabled=False,
    monitor_notification_channel_ibm_event_notification_id="string",
    name="string",
    notify_when_ok=False,
    notify_when_resolved=False,
    send_test_notification=False,
    share_with_current_team=False,
    timeouts={
        "create": "string",
        "delete": "string",
        "read": "string",
        "update": "string",
    })
Copy
const monitorNotificationChannelIbmEventNotificationResource = new sysdig.MonitorNotificationChannelIbmEventNotification("monitorNotificationChannelIbmEventNotificationResource", {
    instanceId: "string",
    enabled: false,
    monitorNotificationChannelIbmEventNotificationId: "string",
    name: "string",
    notifyWhenOk: false,
    notifyWhenResolved: false,
    sendTestNotification: false,
    shareWithCurrentTeam: false,
    timeouts: {
        create: "string",
        "delete": "string",
        read: "string",
        update: "string",
    },
});
Copy
type: sysdig:MonitorNotificationChannelIbmEventNotification
properties:
    enabled: false
    instanceId: string
    monitorNotificationChannelIbmEventNotificationId: string
    name: string
    notifyWhenOk: false
    notifyWhenResolved: false
    sendTestNotification: false
    shareWithCurrentTeam: false
    timeouts:
        create: string
        delete: string
        read: string
        update: string
Copy

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

InstanceId This property is required. string
id of the Event Notifications Instance. Id value can be either an instance id or CRN. If the event notification instance is within the same account, use the actual instance id. If it is in a different account, then use the Event Notifications Instance's CRN.
Enabled bool
If false, the channel will not emit notifications. Default is true.
MonitorNotificationChannelIbmEventNotificationId string
(Computed) The ID of the Notification Channel.
Name string
The name of the Notification Channel. Must be unique.
NotifyWhenOk bool
Send a new notification when the alert condition is no longer triggered. Default is false.
NotifyWhenResolved bool
Send a new notification when the alert is manually acknowledged by a user. Default is false.
SendTestNotification bool
Send an initial test notification to check if the notification channel is working. Default is false.
ShareWithCurrentTeam bool
If set to true it will share notification channel only with current team (in which user is logged in). Otherwise, it will share it with all teams, which is the default behaviour. Although this is an optional setting, beware that if you have lower permissions than admin you may see a error: 403 Forbidden if this is not set to true.
Timeouts MonitorNotificationChannelIbmEventNotificationTimeouts
InstanceId This property is required. string
id of the Event Notifications Instance. Id value can be either an instance id or CRN. If the event notification instance is within the same account, use the actual instance id. If it is in a different account, then use the Event Notifications Instance's CRN.
Enabled bool
If false, the channel will not emit notifications. Default is true.
MonitorNotificationChannelIbmEventNotificationId string
(Computed) The ID of the Notification Channel.
Name string
The name of the Notification Channel. Must be unique.
NotifyWhenOk bool
Send a new notification when the alert condition is no longer triggered. Default is false.
NotifyWhenResolved bool
Send a new notification when the alert is manually acknowledged by a user. Default is false.
SendTestNotification bool
Send an initial test notification to check if the notification channel is working. Default is false.
ShareWithCurrentTeam bool
If set to true it will share notification channel only with current team (in which user is logged in). Otherwise, it will share it with all teams, which is the default behaviour. Although this is an optional setting, beware that if you have lower permissions than admin you may see a error: 403 Forbidden if this is not set to true.
Timeouts MonitorNotificationChannelIbmEventNotificationTimeoutsArgs
instanceId This property is required. String
id of the Event Notifications Instance. Id value can be either an instance id or CRN. If the event notification instance is within the same account, use the actual instance id. If it is in a different account, then use the Event Notifications Instance's CRN.
enabled Boolean
If false, the channel will not emit notifications. Default is true.
monitorNotificationChannelIbmEventNotificationId String
(Computed) The ID of the Notification Channel.
name String
The name of the Notification Channel. Must be unique.
notifyWhenOk Boolean
Send a new notification when the alert condition is no longer triggered. Default is false.
notifyWhenResolved Boolean
Send a new notification when the alert is manually acknowledged by a user. Default is false.
sendTestNotification Boolean
Send an initial test notification to check if the notification channel is working. Default is false.
shareWithCurrentTeam Boolean
If set to true it will share notification channel only with current team (in which user is logged in). Otherwise, it will share it with all teams, which is the default behaviour. Although this is an optional setting, beware that if you have lower permissions than admin you may see a error: 403 Forbidden if this is not set to true.
timeouts MonitorNotificationChannelIbmEventNotificationTimeouts
instanceId This property is required. string
id of the Event Notifications Instance. Id value can be either an instance id or CRN. If the event notification instance is within the same account, use the actual instance id. If it is in a different account, then use the Event Notifications Instance's CRN.
enabled boolean
If false, the channel will not emit notifications. Default is true.
monitorNotificationChannelIbmEventNotificationId string
(Computed) The ID of the Notification Channel.
name string
The name of the Notification Channel. Must be unique.
notifyWhenOk boolean
Send a new notification when the alert condition is no longer triggered. Default is false.
notifyWhenResolved boolean
Send a new notification when the alert is manually acknowledged by a user. Default is false.
sendTestNotification boolean
Send an initial test notification to check if the notification channel is working. Default is false.
shareWithCurrentTeam boolean
If set to true it will share notification channel only with current team (in which user is logged in). Otherwise, it will share it with all teams, which is the default behaviour. Although this is an optional setting, beware that if you have lower permissions than admin you may see a error: 403 Forbidden if this is not set to true.
timeouts MonitorNotificationChannelIbmEventNotificationTimeouts
instance_id This property is required. str
id of the Event Notifications Instance. Id value can be either an instance id or CRN. If the event notification instance is within the same account, use the actual instance id. If it is in a different account, then use the Event Notifications Instance's CRN.
enabled bool
If false, the channel will not emit notifications. Default is true.
monitor_notification_channel_ibm_event_notification_id str
(Computed) The ID of the Notification Channel.
name str
The name of the Notification Channel. Must be unique.
notify_when_ok bool
Send a new notification when the alert condition is no longer triggered. Default is false.
notify_when_resolved bool
Send a new notification when the alert is manually acknowledged by a user. Default is false.
send_test_notification bool
Send an initial test notification to check if the notification channel is working. Default is false.
share_with_current_team bool
If set to true it will share notification channel only with current team (in which user is logged in). Otherwise, it will share it with all teams, which is the default behaviour. Although this is an optional setting, beware that if you have lower permissions than admin you may see a error: 403 Forbidden if this is not set to true.
timeouts MonitorNotificationChannelIbmEventNotificationTimeoutsArgs
instanceId This property is required. String
id of the Event Notifications Instance. Id value can be either an instance id or CRN. If the event notification instance is within the same account, use the actual instance id. If it is in a different account, then use the Event Notifications Instance's CRN.
enabled Boolean
If false, the channel will not emit notifications. Default is true.
monitorNotificationChannelIbmEventNotificationId String
(Computed) The ID of the Notification Channel.
name String
The name of the Notification Channel. Must be unique.
notifyWhenOk Boolean
Send a new notification when the alert condition is no longer triggered. Default is false.
notifyWhenResolved Boolean
Send a new notification when the alert is manually acknowledged by a user. Default is false.
sendTestNotification Boolean
Send an initial test notification to check if the notification channel is working. Default is false.
shareWithCurrentTeam Boolean
If set to true it will share notification channel only with current team (in which user is logged in). Otherwise, it will share it with all teams, which is the default behaviour. Although this is an optional setting, beware that if you have lower permissions than admin you may see a error: 403 Forbidden if this is not set to true.
timeouts Property Map

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
Version double
(Computed) The current version of the Notification Channel.
Id string
The provider-assigned unique ID for this managed resource.
Version float64
(Computed) The current version of the Notification Channel.
id String
The provider-assigned unique ID for this managed resource.
version Double
(Computed) The current version of the Notification Channel.
id string
The provider-assigned unique ID for this managed resource.
version number
(Computed) The current version of the Notification Channel.
id str
The provider-assigned unique ID for this managed resource.
version float
(Computed) The current version of the Notification Channel.
id String
The provider-assigned unique ID for this managed resource.
version Number
(Computed) The current version of the Notification Channel.

Look up Existing MonitorNotificationChannelIbmEventNotification Resource

Get an existing MonitorNotificationChannelIbmEventNotification 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?: MonitorNotificationChannelIbmEventNotificationState, opts?: CustomResourceOptions): MonitorNotificationChannelIbmEventNotification
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        enabled: Optional[bool] = None,
        instance_id: Optional[str] = None,
        monitor_notification_channel_ibm_event_notification_id: Optional[str] = None,
        name: Optional[str] = None,
        notify_when_ok: Optional[bool] = None,
        notify_when_resolved: Optional[bool] = None,
        send_test_notification: Optional[bool] = None,
        share_with_current_team: Optional[bool] = None,
        timeouts: Optional[MonitorNotificationChannelIbmEventNotificationTimeoutsArgs] = None,
        version: Optional[float] = None) -> MonitorNotificationChannelIbmEventNotification
func GetMonitorNotificationChannelIbmEventNotification(ctx *Context, name string, id IDInput, state *MonitorNotificationChannelIbmEventNotificationState, opts ...ResourceOption) (*MonitorNotificationChannelIbmEventNotification, error)
public static MonitorNotificationChannelIbmEventNotification Get(string name, Input<string> id, MonitorNotificationChannelIbmEventNotificationState? state, CustomResourceOptions? opts = null)
public static MonitorNotificationChannelIbmEventNotification get(String name, Output<String> id, MonitorNotificationChannelIbmEventNotificationState state, CustomResourceOptions options)
resources:  _:    type: sysdig:MonitorNotificationChannelIbmEventNotification    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
Enabled bool
If false, the channel will not emit notifications. Default is true.
InstanceId string
id of the Event Notifications Instance. Id value can be either an instance id or CRN. If the event notification instance is within the same account, use the actual instance id. If it is in a different account, then use the Event Notifications Instance's CRN.
MonitorNotificationChannelIbmEventNotificationId string
(Computed) The ID of the Notification Channel.
Name string
The name of the Notification Channel. Must be unique.
NotifyWhenOk bool
Send a new notification when the alert condition is no longer triggered. Default is false.
NotifyWhenResolved bool
Send a new notification when the alert is manually acknowledged by a user. Default is false.
SendTestNotification bool
Send an initial test notification to check if the notification channel is working. Default is false.
ShareWithCurrentTeam bool
If set to true it will share notification channel only with current team (in which user is logged in). Otherwise, it will share it with all teams, which is the default behaviour. Although this is an optional setting, beware that if you have lower permissions than admin you may see a error: 403 Forbidden if this is not set to true.
Timeouts MonitorNotificationChannelIbmEventNotificationTimeouts
Version double
(Computed) The current version of the Notification Channel.
Enabled bool
If false, the channel will not emit notifications. Default is true.
InstanceId string
id of the Event Notifications Instance. Id value can be either an instance id or CRN. If the event notification instance is within the same account, use the actual instance id. If it is in a different account, then use the Event Notifications Instance's CRN.
MonitorNotificationChannelIbmEventNotificationId string
(Computed) The ID of the Notification Channel.
Name string
The name of the Notification Channel. Must be unique.
NotifyWhenOk bool
Send a new notification when the alert condition is no longer triggered. Default is false.
NotifyWhenResolved bool
Send a new notification when the alert is manually acknowledged by a user. Default is false.
SendTestNotification bool
Send an initial test notification to check if the notification channel is working. Default is false.
ShareWithCurrentTeam bool
If set to true it will share notification channel only with current team (in which user is logged in). Otherwise, it will share it with all teams, which is the default behaviour. Although this is an optional setting, beware that if you have lower permissions than admin you may see a error: 403 Forbidden if this is not set to true.
Timeouts MonitorNotificationChannelIbmEventNotificationTimeoutsArgs
Version float64
(Computed) The current version of the Notification Channel.
enabled Boolean
If false, the channel will not emit notifications. Default is true.
instanceId String
id of the Event Notifications Instance. Id value can be either an instance id or CRN. If the event notification instance is within the same account, use the actual instance id. If it is in a different account, then use the Event Notifications Instance's CRN.
monitorNotificationChannelIbmEventNotificationId String
(Computed) The ID of the Notification Channel.
name String
The name of the Notification Channel. Must be unique.
notifyWhenOk Boolean
Send a new notification when the alert condition is no longer triggered. Default is false.
notifyWhenResolved Boolean
Send a new notification when the alert is manually acknowledged by a user. Default is false.
sendTestNotification Boolean
Send an initial test notification to check if the notification channel is working. Default is false.
shareWithCurrentTeam Boolean
If set to true it will share notification channel only with current team (in which user is logged in). Otherwise, it will share it with all teams, which is the default behaviour. Although this is an optional setting, beware that if you have lower permissions than admin you may see a error: 403 Forbidden if this is not set to true.
timeouts MonitorNotificationChannelIbmEventNotificationTimeouts
version Double
(Computed) The current version of the Notification Channel.
enabled boolean
If false, the channel will not emit notifications. Default is true.
instanceId string
id of the Event Notifications Instance. Id value can be either an instance id or CRN. If the event notification instance is within the same account, use the actual instance id. If it is in a different account, then use the Event Notifications Instance's CRN.
monitorNotificationChannelIbmEventNotificationId string
(Computed) The ID of the Notification Channel.
name string
The name of the Notification Channel. Must be unique.
notifyWhenOk boolean
Send a new notification when the alert condition is no longer triggered. Default is false.
notifyWhenResolved boolean
Send a new notification when the alert is manually acknowledged by a user. Default is false.
sendTestNotification boolean
Send an initial test notification to check if the notification channel is working. Default is false.
shareWithCurrentTeam boolean
If set to true it will share notification channel only with current team (in which user is logged in). Otherwise, it will share it with all teams, which is the default behaviour. Although this is an optional setting, beware that if you have lower permissions than admin you may see a error: 403 Forbidden if this is not set to true.
timeouts MonitorNotificationChannelIbmEventNotificationTimeouts
version number
(Computed) The current version of the Notification Channel.
enabled bool
If false, the channel will not emit notifications. Default is true.
instance_id str
id of the Event Notifications Instance. Id value can be either an instance id or CRN. If the event notification instance is within the same account, use the actual instance id. If it is in a different account, then use the Event Notifications Instance's CRN.
monitor_notification_channel_ibm_event_notification_id str
(Computed) The ID of the Notification Channel.
name str
The name of the Notification Channel. Must be unique.
notify_when_ok bool
Send a new notification when the alert condition is no longer triggered. Default is false.
notify_when_resolved bool
Send a new notification when the alert is manually acknowledged by a user. Default is false.
send_test_notification bool
Send an initial test notification to check if the notification channel is working. Default is false.
share_with_current_team bool
If set to true it will share notification channel only with current team (in which user is logged in). Otherwise, it will share it with all teams, which is the default behaviour. Although this is an optional setting, beware that if you have lower permissions than admin you may see a error: 403 Forbidden if this is not set to true.
timeouts MonitorNotificationChannelIbmEventNotificationTimeoutsArgs
version float
(Computed) The current version of the Notification Channel.
enabled Boolean
If false, the channel will not emit notifications. Default is true.
instanceId String
id of the Event Notifications Instance. Id value can be either an instance id or CRN. If the event notification instance is within the same account, use the actual instance id. If it is in a different account, then use the Event Notifications Instance's CRN.
monitorNotificationChannelIbmEventNotificationId String
(Computed) The ID of the Notification Channel.
name String
The name of the Notification Channel. Must be unique.
notifyWhenOk Boolean
Send a new notification when the alert condition is no longer triggered. Default is false.
notifyWhenResolved Boolean
Send a new notification when the alert is manually acknowledged by a user. Default is false.
sendTestNotification Boolean
Send an initial test notification to check if the notification channel is working. Default is false.
shareWithCurrentTeam Boolean
If set to true it will share notification channel only with current team (in which user is logged in). Otherwise, it will share it with all teams, which is the default behaviour. Although this is an optional setting, beware that if you have lower permissions than admin you may see a error: 403 Forbidden if this is not set to true.
timeouts Property Map
version Number
(Computed) The current version of the Notification Channel.

Supporting Types

MonitorNotificationChannelIbmEventNotificationTimeouts
, MonitorNotificationChannelIbmEventNotificationTimeoutsArgs

Create string
Delete string
Read string
Update string
Create string
Delete string
Read string
Update string
create String
delete String
read String
update String
create string
delete string
read string
update string
create str
delete str
read str
update str
create String
delete String
read String
update String

Import

IBM Event Notification notification channels for Monitor can be imported using the ID, e.g.

$ pulumi import sysdig:index/monitorNotificationChannelIbmEventNotification:MonitorNotificationChannelIbmEventNotification example 12345
Copy

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

Package Details

Repository
sysdig sysdiglabs/terraform-provider-sysdig
License
Notes
This Pulumi package is based on the sysdig Terraform Provider.