Viewing docs for sysdig 3.5.0
published on Friday, Mar 6, 2026 by sysdiglabs
published on Friday, Mar 6, 2026 by sysdiglabs
Viewing docs for sysdig 3.5.0
published on Friday, Mar 6, 2026 by sysdiglabs
published on Friday, Mar 6, 2026 by sysdiglabs
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as sysdig from "@pulumi/sysdig";
const ncSlack = sysdig.getMonitorNotificationChannelSlack({
name: "some notification channel name",
});
import pulumi
import pulumi_sysdig as sysdig
nc_slack = sysdig.get_monitor_notification_channel_slack(name="some notification channel name")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/sysdig/v3/sysdig"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := sysdig.LookupMonitorNotificationChannelSlack(ctx, &sysdig.LookupMonitorNotificationChannelSlackArgs{
Name: "some notification channel name",
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Sysdig = Pulumi.Sysdig;
return await Deployment.RunAsync(() =>
{
var ncSlack = Sysdig.GetMonitorNotificationChannelSlack.Invoke(new()
{
Name = "some notification channel name",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.sysdig.SysdigFunctions;
import com.pulumi.sysdig.inputs.GetMonitorNotificationChannelSlackArgs;
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) {
final var ncSlack = SysdigFunctions.getMonitorNotificationChannelSlack(GetMonitorNotificationChannelSlackArgs.builder()
.name("some notification channel name")
.build());
}
}
variables:
ncSlack:
fn::invoke:
function: sysdig:getMonitorNotificationChannelSlack
arguments:
name: some notification channel name
Using getMonitorNotificationChannelSlack
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getMonitorNotificationChannelSlack(args: GetMonitorNotificationChannelSlackArgs, opts?: InvokeOptions): Promise<GetMonitorNotificationChannelSlackResult>
function getMonitorNotificationChannelSlackOutput(args: GetMonitorNotificationChannelSlackOutputArgs, opts?: InvokeOptions): Output<GetMonitorNotificationChannelSlackResult>def get_monitor_notification_channel_slack(enabled: Optional[bool] = None,
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[GetMonitorNotificationChannelSlackTimeouts] = None,
opts: Optional[InvokeOptions] = None) -> GetMonitorNotificationChannelSlackResult
def get_monitor_notification_channel_slack_output(enabled: Optional[pulumi.Input[bool]] = None,
id: Optional[pulumi.Input[str]] = None,
name: Optional[pulumi.Input[str]] = None,
notify_when_ok: Optional[pulumi.Input[bool]] = None,
notify_when_resolved: Optional[pulumi.Input[bool]] = None,
send_test_notification: Optional[pulumi.Input[bool]] = None,
share_with_current_team: Optional[pulumi.Input[bool]] = None,
timeouts: Optional[pulumi.Input[GetMonitorNotificationChannelSlackTimeoutsArgs]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetMonitorNotificationChannelSlackResult]func LookupMonitorNotificationChannelSlack(ctx *Context, args *LookupMonitorNotificationChannelSlackArgs, opts ...InvokeOption) (*LookupMonitorNotificationChannelSlackResult, error)
func LookupMonitorNotificationChannelSlackOutput(ctx *Context, args *LookupMonitorNotificationChannelSlackOutputArgs, opts ...InvokeOption) LookupMonitorNotificationChannelSlackResultOutput> Note: This function is named LookupMonitorNotificationChannelSlack in the Go SDK.
public static class GetMonitorNotificationChannelSlack
{
public static Task<GetMonitorNotificationChannelSlackResult> InvokeAsync(GetMonitorNotificationChannelSlackArgs args, InvokeOptions? opts = null)
public static Output<GetMonitorNotificationChannelSlackResult> Invoke(GetMonitorNotificationChannelSlackInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetMonitorNotificationChannelSlackResult> getMonitorNotificationChannelSlack(GetMonitorNotificationChannelSlackArgs args, InvokeOptions options)
public static Output<GetMonitorNotificationChannelSlackResult> getMonitorNotificationChannelSlack(GetMonitorNotificationChannelSlackArgs args, InvokeOptions options)
fn::invoke:
function: sysdig:index/getMonitorNotificationChannelSlack:getMonitorNotificationChannelSlack
arguments:
# arguments dictionaryThe following arguments are supported:
- Name string
- The name of the Notification Channel to retrieve.
- Enabled bool
- Whether the Notification Channel is active or not.
- Id string
- The Notification Channel ID.
- Notify
When boolOk - Whether the Notification Channel sends a notification when the condition is no longer triggered.
- Notify
When boolResolved - Whether the Notification Channel sends a notification if it's manually acknowledged by a user.
- Send
Test boolNotification - Whether the Notification Channel has enabled the test notification.
- bool
- Timeouts
Get
Monitor Notification Channel Slack Timeouts
- Name string
- The name of the Notification Channel to retrieve.
- Enabled bool
- Whether the Notification Channel is active or not.
- Id string
- The Notification Channel ID.
- Notify
When boolOk - Whether the Notification Channel sends a notification when the condition is no longer triggered.
- Notify
When boolResolved - Whether the Notification Channel sends a notification if it's manually acknowledged by a user.
- Send
Test boolNotification - Whether the Notification Channel has enabled the test notification.
- bool
- Timeouts
Get
Monitor Notification Channel Slack Timeouts
- name String
- The name of the Notification Channel to retrieve.
- enabled Boolean
- Whether the Notification Channel is active or not.
- id String
- The Notification Channel ID.
- notify
When BooleanOk - Whether the Notification Channel sends a notification when the condition is no longer triggered.
- notify
When BooleanResolved - Whether the Notification Channel sends a notification if it's manually acknowledged by a user.
- send
Test BooleanNotification - Whether the Notification Channel has enabled the test notification.
- Boolean
- timeouts
Get
Monitor Notification Channel Slack Timeouts
- name string
- The name of the Notification Channel to retrieve.
- enabled boolean
- Whether the Notification Channel is active or not.
- id string
- The Notification Channel ID.
- notify
When booleanOk - Whether the Notification Channel sends a notification when the condition is no longer triggered.
- notify
When booleanResolved - Whether the Notification Channel sends a notification if it's manually acknowledged by a user.
- send
Test booleanNotification - Whether the Notification Channel has enabled the test notification.
- boolean
- timeouts
Get
Monitor Notification Channel Slack Timeouts
- name str
- The name of the Notification Channel to retrieve.
- enabled bool
- Whether the Notification Channel is active or not.
- id str
- The Notification Channel ID.
- notify_
when_ boolok - Whether the Notification Channel sends a notification when the condition is no longer triggered.
- notify_
when_ boolresolved - Whether the Notification Channel sends a notification if it's manually acknowledged by a user.
- send_
test_ boolnotification - Whether the Notification Channel has enabled the test notification.
- bool
- timeouts
Get
Monitor Notification Channel Slack Timeouts
- name String
- The name of the Notification Channel to retrieve.
- enabled Boolean
- Whether the Notification Channel is active or not.
- id String
- The Notification Channel ID.
- notify
When BooleanOk - Whether the Notification Channel sends a notification when the condition is no longer triggered.
- notify
When BooleanResolved - Whether the Notification Channel sends a notification if it's manually acknowledged by a user.
- send
Test BooleanNotification - Whether the Notification Channel has enabled the test notification.
- Boolean
- timeouts Property Map
getMonitorNotificationChannelSlack Result
The following output properties are available:
- Channel string
- Name of the Slack channel.
- Id string
- The Notification Channel ID.
- Is
Private boolChannel - Whether the Slack Channel has been marked as private or not.
- Name string
- Private
Channel stringUrl - The channel URL, i.e. the link that is referencing the channel (not to be confused with the webhook url), if the channel is private.
- Show
Section boolAlert Details - Whether to include the alert details section in the Slack messages.
- Show
Section boolCapturing Information - Whether to include the capturing information section in the Slack messages.
- Show
Section boolDashboard Links - Whether to include the dashboard links section in the Slack messages.
- Show
Section boolEvent Details - Whether to include the event details section in the Slack messages.
- Show
Section boolNotification Chart - Whether to include the notification chart section in the Slack messages.
- Show
Section boolRunbook Links - Whether to include the runbook links section in the Slack messages.
- Show
Section boolUser Defined Content - Whether to include the user defined section in the Slack messages.
- Url string
- URL of the Slack webhook.
- Version double
- The version of the Notification Channel.
- Enabled bool
- Whether the Notification Channel is active or not.
- Notify
When boolOk - Whether the Notification Channel sends a notification when the condition is no longer triggered.
- Notify
When boolResolved - Whether the Notification Channel sends a notification if it's manually acknowledged by a user.
- Send
Test boolNotification - Whether the Notification Channel has enabled the test notification.
- bool
- Timeouts
Get
Monitor Notification Channel Slack Timeouts
- Channel string
- Name of the Slack channel.
- Id string
- The Notification Channel ID.
- Is
Private boolChannel - Whether the Slack Channel has been marked as private or not.
- Name string
- Private
Channel stringUrl - The channel URL, i.e. the link that is referencing the channel (not to be confused with the webhook url), if the channel is private.
- Show
Section boolAlert Details - Whether to include the alert details section in the Slack messages.
- Show
Section boolCapturing Information - Whether to include the capturing information section in the Slack messages.
- Show
Section boolDashboard Links - Whether to include the dashboard links section in the Slack messages.
- Show
Section boolEvent Details - Whether to include the event details section in the Slack messages.
- Show
Section boolNotification Chart - Whether to include the notification chart section in the Slack messages.
- Show
Section boolRunbook Links - Whether to include the runbook links section in the Slack messages.
- Show
Section boolUser Defined Content - Whether to include the user defined section in the Slack messages.
- Url string
- URL of the Slack webhook.
- Version float64
- The version of the Notification Channel.
- Enabled bool
- Whether the Notification Channel is active or not.
- Notify
When boolOk - Whether the Notification Channel sends a notification when the condition is no longer triggered.
- Notify
When boolResolved - Whether the Notification Channel sends a notification if it's manually acknowledged by a user.
- Send
Test boolNotification - Whether the Notification Channel has enabled the test notification.
- bool
- Timeouts
Get
Monitor Notification Channel Slack Timeouts
- channel String
- Name of the Slack channel.
- id String
- The Notification Channel ID.
- is
Private BooleanChannel - Whether the Slack Channel has been marked as private or not.
- name String
- private
Channel StringUrl - The channel URL, i.e. the link that is referencing the channel (not to be confused with the webhook url), if the channel is private.
- show
Section BooleanAlert Details - Whether to include the alert details section in the Slack messages.
- show
Section BooleanCapturing Information - Whether to include the capturing information section in the Slack messages.
- show
Section BooleanDashboard Links - Whether to include the dashboard links section in the Slack messages.
- show
Section BooleanEvent Details - Whether to include the event details section in the Slack messages.
- show
Section BooleanNotification Chart - Whether to include the notification chart section in the Slack messages.
- show
Section BooleanRunbook Links - Whether to include the runbook links section in the Slack messages.
- show
Section BooleanUser Defined Content - Whether to include the user defined section in the Slack messages.
- url String
- URL of the Slack webhook.
- version Double
- The version of the Notification Channel.
- enabled Boolean
- Whether the Notification Channel is active or not.
- notify
When BooleanOk - Whether the Notification Channel sends a notification when the condition is no longer triggered.
- notify
When BooleanResolved - Whether the Notification Channel sends a notification if it's manually acknowledged by a user.
- send
Test BooleanNotification - Whether the Notification Channel has enabled the test notification.
- Boolean
- timeouts
Get
Monitor Notification Channel Slack Timeouts
- channel string
- Name of the Slack channel.
- id string
- The Notification Channel ID.
- is
Private booleanChannel - Whether the Slack Channel has been marked as private or not.
- name string
- private
Channel stringUrl - The channel URL, i.e. the link that is referencing the channel (not to be confused with the webhook url), if the channel is private.
- show
Section booleanAlert Details - Whether to include the alert details section in the Slack messages.
- show
Section booleanCapturing Information - Whether to include the capturing information section in the Slack messages.
- show
Section booleanDashboard Links - Whether to include the dashboard links section in the Slack messages.
- show
Section booleanEvent Details - Whether to include the event details section in the Slack messages.
- show
Section booleanNotification Chart - Whether to include the notification chart section in the Slack messages.
- show
Section booleanRunbook Links - Whether to include the runbook links section in the Slack messages.
- show
Section booleanUser Defined Content - Whether to include the user defined section in the Slack messages.
- url string
- URL of the Slack webhook.
- version number
- The version of the Notification Channel.
- enabled boolean
- Whether the Notification Channel is active or not.
- notify
When booleanOk - Whether the Notification Channel sends a notification when the condition is no longer triggered.
- notify
When booleanResolved - Whether the Notification Channel sends a notification if it's manually acknowledged by a user.
- send
Test booleanNotification - Whether the Notification Channel has enabled the test notification.
- boolean
- timeouts
Get
Monitor Notification Channel Slack Timeouts
- channel str
- Name of the Slack channel.
- id str
- The Notification Channel ID.
- is_
private_ boolchannel - Whether the Slack Channel has been marked as private or not.
- name str
- private_
channel_ strurl - The channel URL, i.e. the link that is referencing the channel (not to be confused with the webhook url), if the channel is private.
- show_
section_ boolalert_ details - Whether to include the alert details section in the Slack messages.
- show_
section_ boolcapturing_ information - Whether to include the capturing information section in the Slack messages.
- show_
section_ booldashboard_ links - Whether to include the dashboard links section in the Slack messages.
- show_
section_ boolevent_ details - Whether to include the event details section in the Slack messages.
- show_
section_ boolnotification_ chart - Whether to include the notification chart section in the Slack messages.
- show_
section_ boolrunbook_ links - Whether to include the runbook links section in the Slack messages.
- show_
section_ booluser_ defined_ content - Whether to include the user defined section in the Slack messages.
- url str
- URL of the Slack webhook.
- version float
- The version of the Notification Channel.
- enabled bool
- Whether the Notification Channel is active or not.
- notify_
when_ boolok - Whether the Notification Channel sends a notification when the condition is no longer triggered.
- notify_
when_ boolresolved - Whether the Notification Channel sends a notification if it's manually acknowledged by a user.
- send_
test_ boolnotification - Whether the Notification Channel has enabled the test notification.
- bool
- timeouts
Get
Monitor Notification Channel Slack Timeouts
- channel String
- Name of the Slack channel.
- id String
- The Notification Channel ID.
- is
Private BooleanChannel - Whether the Slack Channel has been marked as private or not.
- name String
- private
Channel StringUrl - The channel URL, i.e. the link that is referencing the channel (not to be confused with the webhook url), if the channel is private.
- show
Section BooleanAlert Details - Whether to include the alert details section in the Slack messages.
- show
Section BooleanCapturing Information - Whether to include the capturing information section in the Slack messages.
- show
Section BooleanDashboard Links - Whether to include the dashboard links section in the Slack messages.
- show
Section BooleanEvent Details - Whether to include the event details section in the Slack messages.
- show
Section BooleanNotification Chart - Whether to include the notification chart section in the Slack messages.
- show
Section BooleanRunbook Links - Whether to include the runbook links section in the Slack messages.
- show
Section BooleanUser Defined Content - Whether to include the user defined section in the Slack messages.
- url String
- URL of the Slack webhook.
- version Number
- The version of the Notification Channel.
- enabled Boolean
- Whether the Notification Channel is active or not.
- notify
When BooleanOk - Whether the Notification Channel sends a notification when the condition is no longer triggered.
- notify
When BooleanResolved - Whether the Notification Channel sends a notification if it's manually acknowledged by a user.
- send
Test BooleanNotification - Whether the Notification Channel has enabled the test notification.
- Boolean
- timeouts Property Map
Supporting Types
GetMonitorNotificationChannelSlackTimeouts
- Read string
- Read string
- read String
- read string
- read str
- read String
Package Details
- Repository
- sysdig sysdiglabs/terraform-provider-sysdig
- License
- Notes
- This Pulumi package is based on the
sysdigTerraform Provider.
Viewing docs for sysdig 3.5.0
published on Friday, Mar 6, 2026 by sysdiglabs
published on Friday, Mar 6, 2026 by sysdiglabs
