@pulumi/fastly
Version:
A Pulumi package for creating and managing fastly cloud resources.. Based on terraform-provider-fastly: version v4
70 lines (69 loc) • 2.26 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "./types/output";
/**
* Use this data source to get a Fastly Next-Gen WAF Alert Mailing List integration.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as fastly from "@pulumi/fastly";
*
* const ngwafJiraAlerts = fastly.getNgwafAlertJiraIntegration({
* workspaceId: testRedactionsWorkspace.id,
* });
* export const ngwafJiraAlertsAll = jiraAlerts;
* ```
*/
export declare function getNgwafAlertMailingListIntegration(args: GetNgwafAlertMailingListIntegrationArgs, opts?: pulumi.InvokeOptions): Promise<GetNgwafAlertMailingListIntegrationResult>;
/**
* A collection of arguments for invoking getNgwafAlertMailingListIntegration.
*/
export interface GetNgwafAlertMailingListIntegrationArgs {
/**
* The ID of the workspace.
*/
workspaceId: string;
}
/**
* A collection of values returned by getNgwafAlertMailingListIntegration.
*/
export interface GetNgwafAlertMailingListIntegrationResult {
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
/**
* List of all Mailing List alerts for a workspace.
*/
readonly mailingListAlerts: outputs.GetNgwafAlertMailingListIntegrationMailingListAlert[];
/**
* The ID of the workspace.
*/
readonly workspaceId: string;
}
/**
* Use this data source to get a Fastly Next-Gen WAF Alert Mailing List integration.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as fastly from "@pulumi/fastly";
*
* const ngwafJiraAlerts = fastly.getNgwafAlertJiraIntegration({
* workspaceId: testRedactionsWorkspace.id,
* });
* export const ngwafJiraAlertsAll = jiraAlerts;
* ```
*/
export declare function getNgwafAlertMailingListIntegrationOutput(args: GetNgwafAlertMailingListIntegrationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetNgwafAlertMailingListIntegrationResult>;
/**
* A collection of arguments for invoking getNgwafAlertMailingListIntegration.
*/
export interface GetNgwafAlertMailingListIntegrationOutputArgs {
/**
* The ID of the workspace.
*/
workspaceId: pulumi.Input<string>;
}