import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * Manages phone notification templates used for SMS and voice communications in Auth0. */ export declare class PhoneNotificationTemplate extends pulumi.CustomResource { /** * Get an existing PhoneNotificationTemplate 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 state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: PhoneNotificationTemplateState, opts?: pulumi.CustomResourceOptions): PhoneNotificationTemplate; /** * Returns true if the given object is an instance of PhoneNotificationTemplate. 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 PhoneNotificationTemplate; /** * The channel of the phone notification template (e.g., `sms`, `voice`). */ readonly channel: pulumi.Output; /** * The content of the phone notification template. */ readonly content: pulumi.Output; /** * Indicates whether the phone notification template is customizable. */ readonly customizable: pulumi.Output; /** * Indicates whether the phone notification template is disabled. */ readonly disabled: pulumi.Output; /** * The ID of the phone notification template. */ readonly templateId: pulumi.Output; /** * The tenant of the phone notification template. */ readonly tenant: pulumi.Output; /** * The type of the phone notification template. */ readonly type: pulumi.Output; /** * Create a PhoneNotificationTemplate 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: PhoneNotificationTemplateArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering PhoneNotificationTemplate resources. */ export interface PhoneNotificationTemplateState { /** * The channel of the phone notification template (e.g., `sms`, `voice`). */ channel?: pulumi.Input; /** * The content of the phone notification template. */ content?: pulumi.Input; /** * Indicates whether the phone notification template is customizable. */ customizable?: pulumi.Input; /** * Indicates whether the phone notification template is disabled. */ disabled?: pulumi.Input; /** * The ID of the phone notification template. */ templateId?: pulumi.Input; /** * The tenant of the phone notification template. */ tenant?: pulumi.Input; /** * The type of the phone notification template. */ type?: pulumi.Input; } /** * The set of arguments for constructing a PhoneNotificationTemplate resource. */ export interface PhoneNotificationTemplateArgs { /** * The content of the phone notification template. */ content?: pulumi.Input; /** * Indicates whether the phone notification template is disabled. */ disabled?: pulumi.Input; /** * The type of the phone notification template. */ type: pulumi.Input; }