@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.31 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 Microsoft Teams 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 getNgwafAlertMicrosoftTeamsIntegration(args: GetNgwafAlertMicrosoftTeamsIntegrationArgs, opts?: pulumi.InvokeOptions): Promise<GetNgwafAlertMicrosoftTeamsIntegrationResult>;
/**
* A collection of arguments for invoking getNgwafAlertMicrosoftTeamsIntegration.
*/
export interface GetNgwafAlertMicrosoftTeamsIntegrationArgs {
/**
* The ID of the workspace.
*/
workspaceId: string;
}
/**
* A collection of values returned by getNgwafAlertMicrosoftTeamsIntegration.
*/
export interface GetNgwafAlertMicrosoftTeamsIntegrationResult {
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
/**
* List of all Microsoft Teams alerts for a workspace.
*/
readonly microsoftTeamsAlerts: outputs.GetNgwafAlertMicrosoftTeamsIntegrationMicrosoftTeamsAlert[];
/**
* The ID of the workspace.
*/
readonly workspaceId: string;
}
/**
* Use this data source to get a Fastly Next-Gen WAF Alert Microsoft Teams 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 getNgwafAlertMicrosoftTeamsIntegrationOutput(args: GetNgwafAlertMicrosoftTeamsIntegrationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetNgwafAlertMicrosoftTeamsIntegrationResult>;
/**
* A collection of arguments for invoking getNgwafAlertMicrosoftTeamsIntegration.
*/
export interface GetNgwafAlertMicrosoftTeamsIntegrationOutputArgs {
/**
* The ID of the workspace.
*/
workspaceId: pulumi.Input<string>;
}