import * as pulumi from "@pulumi/pulumi"; /** * Provides a Datadog TeamHierarchyLinks resource. This can be used to create and manage Datadog Team Hierarchy Links. */ export declare class TeamHierarchyLinks extends pulumi.CustomResource { /** * Get an existing TeamHierarchyLinks 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?: TeamHierarchyLinksState, opts?: pulumi.CustomResourceOptions): TeamHierarchyLinks; /** * Returns true if the given object is an instance of TeamHierarchyLinks. 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 TeamHierarchyLinks; /** * Timestamp when the team hierarchy link was created. */ readonly createdAt: pulumi.Output; /** * ID of the parent team the team hierarchy link is associated with. */ readonly parentTeamId: pulumi.Output; /** * The user who created the team hierarchy link. */ readonly provisionedBy: pulumi.Output; /** * ID of the sub team the team hierarchy link is associated with. */ readonly subTeamId: pulumi.Output; /** * Create a TeamHierarchyLinks 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: TeamHierarchyLinksArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering TeamHierarchyLinks resources. */ export interface TeamHierarchyLinksState { /** * Timestamp when the team hierarchy link was created. */ createdAt?: pulumi.Input; /** * ID of the parent team the team hierarchy link is associated with. */ parentTeamId?: pulumi.Input; /** * The user who created the team hierarchy link. */ provisionedBy?: pulumi.Input; /** * ID of the sub team the team hierarchy link is associated with. */ subTeamId?: pulumi.Input; } /** * The set of arguments for constructing a TeamHierarchyLinks resource. */ export interface TeamHierarchyLinksArgs { /** * ID of the parent team the team hierarchy link is associated with. */ parentTeamId: pulumi.Input; /** * ID of the sub team the team hierarchy link is associated with. */ subTeamId: pulumi.Input; }