1. Packages
  2. Sysdig Provider
  3. API Docs
  4. MonitorNotificationChannelVictorops
sysdig 1.53.0 published on Thursday, Apr 17, 2025 by sysdiglabs

sysdig.MonitorNotificationChannelVictorops

Explore with Pulumi AI

Example Usage

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

const sample_victorops = new sysdig.MonitorNotificationChannelVictorops("sample-victorops", {
    apiKey: "1234342-4234243-4234-2",
    enabled: true,
    notifyWhenOk: false,
    notifyWhenResolved: false,
    routingKey: "My team",
    sendTestNotification: false,
});
Copy
import pulumi
import pulumi_sysdig as sysdig

sample_victorops = sysdig.MonitorNotificationChannelVictorops("sample-victorops",
    api_key="1234342-4234243-4234-2",
    enabled=True,
    notify_when_ok=False,
    notify_when_resolved=False,
    routing_key="My team",
    send_test_notification=False)
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 {
		_, err := sysdig.NewMonitorNotificationChannelVictorops(ctx, "sample-victorops", &sysdig.MonitorNotificationChannelVictoropsArgs{
			ApiKey:               pulumi.String("1234342-4234243-4234-2"),
			Enabled:              pulumi.Bool(true),
			NotifyWhenOk:         pulumi.Bool(false),
			NotifyWhenResolved:   pulumi.Bool(false),
			RoutingKey:           pulumi.String("My team"),
			SendTestNotification: pulumi.Bool(false),
		})
		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(() => 
{
    var sample_victorops = new Sysdig.MonitorNotificationChannelVictorops("sample-victorops", new()
    {
        ApiKey = "1234342-4234243-4234-2",
        Enabled = true,
        NotifyWhenOk = false,
        NotifyWhenResolved = false,
        RoutingKey = "My team",
        SendTestNotification = false,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.sysdig.MonitorNotificationChannelVictorops;
import com.pulumi.sysdig.MonitorNotificationChannelVictoropsArgs;
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 sample_victorops = new MonitorNotificationChannelVictorops("sample-victorops", MonitorNotificationChannelVictoropsArgs.builder()
            .apiKey("1234342-4234243-4234-2")
            .enabled(true)
            .notifyWhenOk(false)
            .notifyWhenResolved(false)
            .routingKey("My team")
            .sendTestNotification(false)
            .build());

    }
}
Copy
resources:
  sample-victorops:
    type: sysdig:MonitorNotificationChannelVictorops
    properties:
      apiKey: 1234342-4234243-4234-2
      enabled: true
      notifyWhenOk: false
      notifyWhenResolved: false
      routingKey: My team
      sendTestNotification: false
Copy

Create MonitorNotificationChannelVictorops Resource

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

Constructor syntax

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

@overload
def MonitorNotificationChannelVictorops(resource_name: str,
                                        opts: Optional[ResourceOptions] = None,
                                        api_key: Optional[str] = None,
                                        routing_key: Optional[str] = None,
                                        enabled: Optional[bool] = None,
                                        monitor_notification_channel_victorops_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[MonitorNotificationChannelVictoropsTimeoutsArgs] = None)
func NewMonitorNotificationChannelVictorops(ctx *Context, name string, args MonitorNotificationChannelVictoropsArgs, opts ...ResourceOption) (*MonitorNotificationChannelVictorops, error)
public MonitorNotificationChannelVictorops(string name, MonitorNotificationChannelVictoropsArgs args, CustomResourceOptions? opts = null)
public MonitorNotificationChannelVictorops(String name, MonitorNotificationChannelVictoropsArgs args)
public MonitorNotificationChannelVictorops(String name, MonitorNotificationChannelVictoropsArgs args, CustomResourceOptions options)
type: sysdig:MonitorNotificationChannelVictorops
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. MonitorNotificationChannelVictoropsArgs
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. MonitorNotificationChannelVictoropsArgs
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. MonitorNotificationChannelVictoropsArgs
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. MonitorNotificationChannelVictoropsArgs
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. MonitorNotificationChannelVictoropsArgs
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 monitorNotificationChannelVictoropsResource = new Sysdig.MonitorNotificationChannelVictorops("monitorNotificationChannelVictoropsResource", new()
{
    ApiKey = "string",
    RoutingKey = "string",
    Enabled = false,
    MonitorNotificationChannelVictoropsId = "string",
    Name = "string",
    NotifyWhenOk = false,
    NotifyWhenResolved = false,
    SendTestNotification = false,
    ShareWithCurrentTeam = false,
    Timeouts = new Sysdig.Inputs.MonitorNotificationChannelVictoropsTimeoutsArgs
    {
        Create = "string",
        Delete = "string",
        Read = "string",
        Update = "string",
    },
});
Copy
example, err := sysdig.NewMonitorNotificationChannelVictorops(ctx, "monitorNotificationChannelVictoropsResource", &sysdig.MonitorNotificationChannelVictoropsArgs{
ApiKey: pulumi.String("string"),
RoutingKey: pulumi.String("string"),
Enabled: pulumi.Bool(false),
MonitorNotificationChannelVictoropsId: pulumi.String("string"),
Name: pulumi.String("string"),
NotifyWhenOk: pulumi.Bool(false),
NotifyWhenResolved: pulumi.Bool(false),
SendTestNotification: pulumi.Bool(false),
ShareWithCurrentTeam: pulumi.Bool(false),
Timeouts: &.MonitorNotificationChannelVictoropsTimeoutsArgs{
Create: pulumi.String("string"),
Delete: pulumi.String("string"),
Read: pulumi.String("string"),
Update: pulumi.String("string"),
},
})
Copy
var monitorNotificationChannelVictoropsResource = new MonitorNotificationChannelVictorops("monitorNotificationChannelVictoropsResource", MonitorNotificationChannelVictoropsArgs.builder()
    .apiKey("string")
    .routingKey("string")
    .enabled(false)
    .monitorNotificationChannelVictoropsId("string")
    .name("string")
    .notifyWhenOk(false)
    .notifyWhenResolved(false)
    .sendTestNotification(false)
    .shareWithCurrentTeam(false)
    .timeouts(MonitorNotificationChannelVictoropsTimeoutsArgs.builder()
        .create("string")
        .delete("string")
        .read("string")
        .update("string")
        .build())
    .build());
Copy
monitor_notification_channel_victorops_resource = sysdig.MonitorNotificationChannelVictorops("monitorNotificationChannelVictoropsResource",
    api_key="string",
    routing_key="string",
    enabled=False,
    monitor_notification_channel_victorops_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 monitorNotificationChannelVictoropsResource = new sysdig.MonitorNotificationChannelVictorops("monitorNotificationChannelVictoropsResource", {
    apiKey: "string",
    routingKey: "string",
    enabled: false,
    monitorNotificationChannelVictoropsId: "string",
    name: "string",
    notifyWhenOk: false,
    notifyWhenResolved: false,
    sendTestNotification: false,
    shareWithCurrentTeam: false,
    timeouts: {
        create: "string",
        "delete": "string",
        read: "string",
        update: "string",
    },
});
Copy
type: sysdig:MonitorNotificationChannelVictorops
properties:
    apiKey: string
    enabled: false
    monitorNotificationChannelVictoropsId: string
    name: string
    notifyWhenOk: false
    notifyWhenResolved: false
    routingKey: string
    sendTestNotification: false
    shareWithCurrentTeam: false
    timeouts:
        create: string
        delete: string
        read: string
        update: string
Copy

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

ApiKey This property is required. string
Key for the API.
RoutingKey This property is required. string
Routing key for VictorOps.
Enabled bool
If false, the channel will not emit notifications. Default is true.
MonitorNotificationChannelVictoropsId 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 MonitorNotificationChannelVictoropsTimeouts
ApiKey This property is required. string
Key for the API.
RoutingKey This property is required. string
Routing key for VictorOps.
Enabled bool
If false, the channel will not emit notifications. Default is true.
MonitorNotificationChannelVictoropsId 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 MonitorNotificationChannelVictoropsTimeoutsArgs
apiKey This property is required. String
Key for the API.
routingKey This property is required. String
Routing key for VictorOps.
enabled Boolean
If false, the channel will not emit notifications. Default is true.
monitorNotificationChannelVictoropsId 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 MonitorNotificationChannelVictoropsTimeouts
apiKey This property is required. string
Key for the API.
routingKey This property is required. string
Routing key for VictorOps.
enabled boolean
If false, the channel will not emit notifications. Default is true.
monitorNotificationChannelVictoropsId 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 MonitorNotificationChannelVictoropsTimeouts
api_key This property is required. str
Key for the API.
routing_key This property is required. str
Routing key for VictorOps.
enabled bool
If false, the channel will not emit notifications. Default is true.
monitor_notification_channel_victorops_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 MonitorNotificationChannelVictoropsTimeoutsArgs
apiKey This property is required. String
Key for the API.
routingKey This property is required. String
Routing key for VictorOps.
enabled Boolean
If false, the channel will not emit notifications. Default is true.
monitorNotificationChannelVictoropsId 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 MonitorNotificationChannelVictorops 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 MonitorNotificationChannelVictorops Resource

Get an existing MonitorNotificationChannelVictorops 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?: MonitorNotificationChannelVictoropsState, opts?: CustomResourceOptions): MonitorNotificationChannelVictorops
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        api_key: Optional[str] = None,
        enabled: Optional[bool] = None,
        monitor_notification_channel_victorops_id: Optional[str] = None,
        name: Optional[str] = None,
        notify_when_ok: Optional[bool] = None,
        notify_when_resolved: Optional[bool] = None,
        routing_key: Optional[str] = None,
        send_test_notification: Optional[bool] = None,
        share_with_current_team: Optional[bool] = None,
        timeouts: Optional[MonitorNotificationChannelVictoropsTimeoutsArgs] = None,
        version: Optional[float] = None) -> MonitorNotificationChannelVictorops
func GetMonitorNotificationChannelVictorops(ctx *Context, name string, id IDInput, state *MonitorNotificationChannelVictoropsState, opts ...ResourceOption) (*MonitorNotificationChannelVictorops, error)
public static MonitorNotificationChannelVictorops Get(string name, Input<string> id, MonitorNotificationChannelVictoropsState? state, CustomResourceOptions? opts = null)
public static MonitorNotificationChannelVictorops get(String name, Output<String> id, MonitorNotificationChannelVictoropsState state, CustomResourceOptions options)
resources:  _:    type: sysdig:MonitorNotificationChannelVictorops    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:
ApiKey string
Key for the API.
Enabled bool
If false, the channel will not emit notifications. Default is true.
MonitorNotificationChannelVictoropsId 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.
RoutingKey string
Routing key for VictorOps.
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 MonitorNotificationChannelVictoropsTimeouts
Version double
(Computed) The current version of the Notification Channel.
ApiKey string
Key for the API.
Enabled bool
If false, the channel will not emit notifications. Default is true.
MonitorNotificationChannelVictoropsId 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.
RoutingKey string
Routing key for VictorOps.
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 MonitorNotificationChannelVictoropsTimeoutsArgs
Version float64
(Computed) The current version of the Notification Channel.
apiKey String
Key for the API.
enabled Boolean
If false, the channel will not emit notifications. Default is true.
monitorNotificationChannelVictoropsId 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.
routingKey String
Routing key for VictorOps.
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 MonitorNotificationChannelVictoropsTimeouts
version Double
(Computed) The current version of the Notification Channel.
apiKey string
Key for the API.
enabled boolean
If false, the channel will not emit notifications. Default is true.
monitorNotificationChannelVictoropsId 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.
routingKey string
Routing key for VictorOps.
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 MonitorNotificationChannelVictoropsTimeouts
version number
(Computed) The current version of the Notification Channel.
api_key str
Key for the API.
enabled bool
If false, the channel will not emit notifications. Default is true.
monitor_notification_channel_victorops_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.
routing_key str
Routing key for VictorOps.
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 MonitorNotificationChannelVictoropsTimeoutsArgs
version float
(Computed) The current version of the Notification Channel.
apiKey String
Key for the API.
enabled Boolean
If false, the channel will not emit notifications. Default is true.
monitorNotificationChannelVictoropsId 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.
routingKey String
Routing key for VictorOps.
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

MonitorNotificationChannelVictoropsTimeouts
, MonitorNotificationChannelVictoropsTimeoutsArgs

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

VictorOPS notification channels for Monitor can be imported using the ID, e.g.

$ pulumi import sysdig:index/monitorNotificationChannelVictorops:MonitorNotificationChannelVictorops 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.