fastly.NgwafAlertPagerdutyIntegration
Explore with Pulumi AI
Provides Fastly Next-Gen WAF Alert PagerDuty integrations, which provide a connection to PagerDuty.
Example Usage
Basic usage:
import * as pulumi from "@pulumi/pulumi";
import * as fastly from "@pulumi/fastly";
const demoPagerdutyAlert = new fastly.NgwafAlertPagerdutyIntegration("demo_pagerduty_alert", {
description: "Some Description",
key: "1234567890abcdef1234567890abcdef",
workspaceId: demo.id,
});
import pulumi
import pulumi_fastly as fastly
demo_pagerduty_alert = fastly.NgwafAlertPagerdutyIntegration("demo_pagerduty_alert",
description="Some Description",
key="1234567890abcdef1234567890abcdef",
workspace_id=demo["id"])
package main
import (
"github.com/pulumi/pulumi-fastly/sdk/v11/go/fastly"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := fastly.NewNgwafAlertPagerdutyIntegration(ctx, "demo_pagerduty_alert", &fastly.NgwafAlertPagerdutyIntegrationArgs{
Description: pulumi.String("Some Description"),
Key: pulumi.String("1234567890abcdef1234567890abcdef"),
WorkspaceId: pulumi.Any(demo.Id),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Fastly = Pulumi.Fastly;
return await Deployment.RunAsync(() =>
{
var demoPagerdutyAlert = new Fastly.NgwafAlertPagerdutyIntegration("demo_pagerduty_alert", new()
{
Description = "Some Description",
Key = "1234567890abcdef1234567890abcdef",
WorkspaceId = demo.Id,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fastly.NgwafAlertPagerdutyIntegration;
import com.pulumi.fastly.NgwafAlertPagerdutyIntegrationArgs;
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 demoPagerdutyAlert = new NgwafAlertPagerdutyIntegration("demoPagerdutyAlert", NgwafAlertPagerdutyIntegrationArgs.builder()
.description("Some Description")
.key("1234567890abcdef1234567890abcdef")
.workspaceId(demo.id())
.build());
}
}
resources:
demoPagerdutyAlert:
type: fastly:NgwafAlertPagerdutyIntegration
name: demo_pagerduty_alert
properties:
description: Some Description
key: 1234567890abcdef1234567890abcdef
workspaceId: ${demo.id}
Create NgwafAlertPagerdutyIntegration Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new NgwafAlertPagerdutyIntegration(name: string, args: NgwafAlertPagerdutyIntegrationArgs, opts?: CustomResourceOptions);
@overload
def NgwafAlertPagerdutyIntegration(resource_name: str,
args: NgwafAlertPagerdutyIntegrationArgs,
opts: Optional[ResourceOptions] = None)
@overload
def NgwafAlertPagerdutyIntegration(resource_name: str,
opts: Optional[ResourceOptions] = None,
key: Optional[str] = None,
workspace_id: Optional[str] = None,
description: Optional[str] = None)
func NewNgwafAlertPagerdutyIntegration(ctx *Context, name string, args NgwafAlertPagerdutyIntegrationArgs, opts ...ResourceOption) (*NgwafAlertPagerdutyIntegration, error)
public NgwafAlertPagerdutyIntegration(string name, NgwafAlertPagerdutyIntegrationArgs args, CustomResourceOptions? opts = null)
public NgwafAlertPagerdutyIntegration(String name, NgwafAlertPagerdutyIntegrationArgs args)
public NgwafAlertPagerdutyIntegration(String name, NgwafAlertPagerdutyIntegrationArgs args, CustomResourceOptions options)
type: fastly:NgwafAlertPagerdutyIntegration
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 NgwafAlertPagerdutyIntegrationArgs
- 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 NgwafAlertPagerdutyIntegrationArgs
- 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 NgwafAlertPagerdutyIntegrationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args NgwafAlertPagerdutyIntegrationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args NgwafAlertPagerdutyIntegrationArgs
- 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 ngwafAlertPagerdutyIntegrationResource = new Fastly.NgwafAlertPagerdutyIntegration("ngwafAlertPagerdutyIntegrationResource", new()
{
Key = "string",
WorkspaceId = "string",
Description = "string",
});
example, err := fastly.NewNgwafAlertPagerdutyIntegration(ctx, "ngwafAlertPagerdutyIntegrationResource", &fastly.NgwafAlertPagerdutyIntegrationArgs{
Key: pulumi.String("string"),
WorkspaceId: pulumi.String("string"),
Description: pulumi.String("string"),
})
var ngwafAlertPagerdutyIntegrationResource = new NgwafAlertPagerdutyIntegration("ngwafAlertPagerdutyIntegrationResource", NgwafAlertPagerdutyIntegrationArgs.builder()
.key("string")
.workspaceId("string")
.description("string")
.build());
ngwaf_alert_pagerduty_integration_resource = fastly.NgwafAlertPagerdutyIntegration("ngwafAlertPagerdutyIntegrationResource",
key="string",
workspace_id="string",
description="string")
const ngwafAlertPagerdutyIntegrationResource = new fastly.NgwafAlertPagerdutyIntegration("ngwafAlertPagerdutyIntegrationResource", {
key: "string",
workspaceId: "string",
description: "string",
});
type: fastly:NgwafAlertPagerdutyIntegration
properties:
description: string
key: string
workspaceId: string
NgwafAlertPagerdutyIntegration 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 NgwafAlertPagerdutyIntegration resource accepts the following input properties:
- Key string
- The PagerDuty integration key.
- Workspace
Id string - The ID of the workspace.
- Description string
- The description of the alert.
- Key string
- The PagerDuty integration key.
- Workspace
Id string - The ID of the workspace.
- Description string
- The description of the alert.
- key String
- The PagerDuty integration key.
- workspace
Id String - The ID of the workspace.
- description String
- The description of the alert.
- key string
- The PagerDuty integration key.
- workspace
Id string - The ID of the workspace.
- description string
- The description of the alert.
- key str
- The PagerDuty integration key.
- workspace_
id str - The ID of the workspace.
- description str
- The description of the alert.
- key String
- The PagerDuty integration key.
- workspace
Id String - The ID of the workspace.
- description String
- The description of the alert.
Outputs
All input properties are implicitly available as output properties. Additionally, the NgwafAlertPagerdutyIntegration resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing NgwafAlertPagerdutyIntegration Resource
Get an existing NgwafAlertPagerdutyIntegration 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?: NgwafAlertPagerdutyIntegrationState, opts?: CustomResourceOptions): NgwafAlertPagerdutyIntegration
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
description: Optional[str] = None,
key: Optional[str] = None,
workspace_id: Optional[str] = None) -> NgwafAlertPagerdutyIntegration
func GetNgwafAlertPagerdutyIntegration(ctx *Context, name string, id IDInput, state *NgwafAlertPagerdutyIntegrationState, opts ...ResourceOption) (*NgwafAlertPagerdutyIntegration, error)
public static NgwafAlertPagerdutyIntegration Get(string name, Input<string> id, NgwafAlertPagerdutyIntegrationState? state, CustomResourceOptions? opts = null)
public static NgwafAlertPagerdutyIntegration get(String name, Output<String> id, NgwafAlertPagerdutyIntegrationState state, CustomResourceOptions options)
resources: _: type: fastly:NgwafAlertPagerdutyIntegration 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.
- Description string
- The description of the alert.
- Key string
- The PagerDuty integration key.
- Workspace
Id string - The ID of the workspace.
- Description string
- The description of the alert.
- Key string
- The PagerDuty integration key.
- Workspace
Id string - The ID of the workspace.
- description String
- The description of the alert.
- key String
- The PagerDuty integration key.
- workspace
Id String - The ID of the workspace.
- description string
- The description of the alert.
- key string
- The PagerDuty integration key.
- workspace
Id string - The ID of the workspace.
- description str
- The description of the alert.
- key str
- The PagerDuty integration key.
- workspace_
id str - The ID of the workspace.
- description String
- The description of the alert.
- key String
- The PagerDuty integration key.
- workspace
Id String - The ID of the workspace.
Import
Fastly Next-Gen WAF Alert PagerDuty integrations can be imported using their ID and the ID of the workspace they belong to.
$ pulumi import fastly:index/ngwafAlertPagerdutyIntegration:NgwafAlertPagerdutyIntegration example <workspace_id>/<alert_id>
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Fastly pulumi/pulumi-fastly
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
fastly
Terraform Provider.