import * as pulumi from "@pulumi/pulumi"; /** * Provides a Datadog TeamLink resource. This can be used to create and manage Datadog team_link. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as datadog from "@pulumi/datadog"; * * const foo = new datadog.Team("foo", { * description: "Example team", * handle: "example-team-updated", * name: "Example Team-updated", * }); * // Create new team_link resource * const fooTeamLink = new datadog.TeamLink("foo", { * teamId: foo.id, * label: "Link label", * position: 0, * url: "https://example.com", * }); * ``` * * ## Import * * The `pulumi import` command can be used, for example: * * ```sh * $ pulumi import datadog:index/teamLink:TeamLink new_list "${team_id}:${resource_id}" * ``` */ export declare class TeamLink extends pulumi.CustomResource { /** * Get an existing TeamLink 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?: TeamLinkState, opts?: pulumi.CustomResourceOptions): TeamLink; /** * Returns true if the given object is an instance of TeamLink. 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 TeamLink; /** * The link's label. */ readonly label: pulumi.Output; /** * The link's position, used to sort links for the team. */ readonly position: pulumi.Output; /** * ID of the team the link is associated with. */ readonly teamId: pulumi.Output; /** * The URL for the link. */ readonly url: pulumi.Output; /** * Create a TeamLink 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: TeamLinkArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering TeamLink resources. */ export interface TeamLinkState { /** * The link's label. */ label?: pulumi.Input; /** * The link's position, used to sort links for the team. */ position?: pulumi.Input; /** * ID of the team the link is associated with. */ teamId?: pulumi.Input; /** * The URL for the link. */ url?: pulumi.Input; } /** * The set of arguments for constructing a TeamLink resource. */ export interface TeamLinkArgs { /** * The link's label. */ label: pulumi.Input; /** * The link's position, used to sort links for the team. */ position?: pulumi.Input; /** * ID of the team the link is associated with. */ teamId: pulumi.Input; /** * The URL for the link. */ url: pulumi.Input; }