@pulumiverse/dynatrace
Version:
A Pulumi package for creating and managing Dynatrace cloud resources.
109 lines (108 loc) • 3.89 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
export declare class Ms365EmailConnection extends pulumi.CustomResource {
/**
* Get an existing Ms365EmailConnection 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<pulumi.ID>, state?: Ms365EmailConnectionState, opts?: pulumi.CustomResourceOptions): Ms365EmailConnection;
/**
* Returns true if the given object is an instance of Ms365EmailConnection. 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 Ms365EmailConnection;
/**
* Application (client) ID of your app registered in Microsoft Azure App registrations
*/
readonly clientId: pulumi.Output<string>;
/**
* Client secret of your app registered in Microsoft Azure App registrations
*/
readonly clientSecret: pulumi.Output<string | undefined>;
/**
* The email address from which the messages will be sent
*/
readonly fromAddress: pulumi.Output<string>;
/**
* A unique name for the Microsoft 365 email connection
*/
readonly name: pulumi.Output<string>;
/**
* Directory (tenant) ID of your Azure Active Directory
*/
readonly tenantId: pulumi.Output<string>;
/**
* Possible Values: `clientSecret`
*/
readonly type: pulumi.Output<string>;
/**
* Create a Ms365EmailConnection 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: Ms365EmailConnectionArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* Input properties used for looking up and filtering Ms365EmailConnection resources.
*/
export interface Ms365EmailConnectionState {
/**
* Application (client) ID of your app registered in Microsoft Azure App registrations
*/
clientId?: pulumi.Input<string>;
/**
* Client secret of your app registered in Microsoft Azure App registrations
*/
clientSecret?: pulumi.Input<string>;
/**
* The email address from which the messages will be sent
*/
fromAddress?: pulumi.Input<string>;
/**
* A unique name for the Microsoft 365 email connection
*/
name?: pulumi.Input<string>;
/**
* Directory (tenant) ID of your Azure Active Directory
*/
tenantId?: pulumi.Input<string>;
/**
* Possible Values: `clientSecret`
*/
type?: pulumi.Input<string>;
}
/**
* The set of arguments for constructing a Ms365EmailConnection resource.
*/
export interface Ms365EmailConnectionArgs {
/**
* Application (client) ID of your app registered in Microsoft Azure App registrations
*/
clientId: pulumi.Input<string>;
/**
* Client secret of your app registered in Microsoft Azure App registrations
*/
clientSecret?: pulumi.Input<string>;
/**
* The email address from which the messages will be sent
*/
fromAddress: pulumi.Input<string>;
/**
* A unique name for the Microsoft 365 email connection
*/
name?: pulumi.Input<string>;
/**
* Directory (tenant) ID of your Azure Active Directory
*/
tenantId: pulumi.Input<string>;
/**
* Possible Values: `clientSecret`
*/
type: pulumi.Input<string>;
}