@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 5.11 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as inputs from "../types/input";
import * as outputs from "../types/output";
/**
* A tenant action group resource.
*
* Uses Azure REST API version 2023-05-01-preview.
*/
export declare class TenantActionGroup extends pulumi.CustomResource {
/**
* Get an existing TenantActionGroup resource's state with the given name, ID, and optional extra
* properties used to qualify the lookup.
*
* @param name The _unique_ name of the resulting resource.
* @param id The _unique_ provider ID of the resource to lookup.
* @param opts Optional settings to control the behavior of the CustomResource.
*/
static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): TenantActionGroup;
/**
* Returns true if the given object is an instance of TenantActionGroup. This is designed to work even
* when multiple copies of the Pulumi SDK have been loaded into the same process.
*/
static isInstance(obj: any): obj is TenantActionGroup;
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: pulumi.Output<string>;
/**
* The list of AzureAppPush receivers that are part of this tenant action group.
*/
readonly azureAppPushReceivers: pulumi.Output<outputs.monitor.AzureAppPushReceiverResponse[] | undefined>;
/**
* The list of email receivers that are part of this tenant action group.
*/
readonly emailReceivers: pulumi.Output<outputs.monitor.EmailReceiverResponse[] | undefined>;
/**
* Indicates whether this tenant action group is enabled. If a tenant action group is not enabled, then none of its receivers will receive communications.
*/
readonly enabled: pulumi.Output<boolean>;
/**
* The short name of the action group. This will be used in SMS messages.
*/
readonly groupShortName: pulumi.Output<string>;
/**
* Resource location
*/
readonly location: pulumi.Output<string>;
/**
* Azure resource name
*/
readonly name: pulumi.Output<string>;
/**
* The list of SMS receivers that are part of this tenant action group.
*/
readonly smsReceivers: pulumi.Output<outputs.monitor.SmsReceiverResponse[] | undefined>;
/**
* Resource tags
*/
readonly tags: pulumi.Output<{
[key: string]: string;
} | undefined>;
/**
* Azure resource type
*/
readonly type: pulumi.Output<string>;
/**
* The list of voice receivers that are part of this tenant action group.
*/
readonly voiceReceivers: pulumi.Output<outputs.monitor.VoiceReceiverResponse[] | undefined>;
/**
* The list of webhook receivers that are part of this tenant action group.
*/
readonly webhookReceivers: pulumi.Output<outputs.monitor.WebhookReceiverResponse[] | undefined>;
/**
* Create a TenantActionGroup resource with the given unique name, arguments, and options.
*
* @param name The _unique_ name of the resource.
* @param args The arguments to use to populate this resource's properties.
* @param opts A bag of options that control this resource's behavior.
*/
constructor(name: string, args: TenantActionGroupArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* The set of arguments for constructing a TenantActionGroup resource.
*/
export interface TenantActionGroupArgs {
/**
* The list of AzureAppPush receivers that are part of this tenant action group.
*/
azureAppPushReceivers?: pulumi.Input<pulumi.Input<inputs.monitor.AzureAppPushReceiverArgs>[]>;
/**
* The list of email receivers that are part of this tenant action group.
*/
emailReceivers?: pulumi.Input<pulumi.Input<inputs.monitor.EmailReceiverArgs>[]>;
/**
* Indicates whether this tenant action group is enabled. If a tenant action group is not enabled, then none of its receivers will receive communications.
*/
enabled: pulumi.Input<boolean>;
/**
* The short name of the action group. This will be used in SMS messages.
*/
groupShortName: pulumi.Input<string>;
/**
* Resource location
*/
location?: pulumi.Input<string>;
/**
* The management group id.
*/
managementGroupId: pulumi.Input<string>;
/**
* The list of SMS receivers that are part of this tenant action group.
*/
smsReceivers?: pulumi.Input<pulumi.Input<inputs.monitor.SmsReceiverArgs>[]>;
/**
* Resource tags
*/
tags?: pulumi.Input<{
[key: string]: pulumi.Input<string>;
}>;
/**
* The name of the action group.
*/
tenantActionGroupName?: pulumi.Input<string>;
/**
* The list of voice receivers that are part of this tenant action group.
*/
voiceReceivers?: pulumi.Input<pulumi.Input<inputs.monitor.VoiceReceiverArgs>[]>;
/**
* The list of webhook receivers that are part of this tenant action group.
*/
webhookReceivers?: pulumi.Input<pulumi.Input<inputs.monitor.WebhookReceiverArgs>[]>;
}