import * as pulumi from "@pulumi/pulumi"; /** * Manage an association between an organization role and a team. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as github from "@pulumi/github"; * * const example = new github.OrganizationRoleTeam("example", { * roleId: 1234, * teamSlug: "example-team", * }); * ``` * * ## Import * * An organization role team association can be imported using the role ID and the team slug separated by a `:`. * * ```sh * $ pulumi import github:index/organizationRoleTeam:OrganizationRoleTeam example "1234:example-team" * ``` */ export declare class OrganizationRoleTeam extends pulumi.CustomResource { /** * Get an existing OrganizationRoleTeam 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?: OrganizationRoleTeamState, opts?: pulumi.CustomResourceOptions): OrganizationRoleTeam; /** * Returns true if the given object is an instance of OrganizationRoleTeam. 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 OrganizationRoleTeam; /** * The ID of the organization role. */ readonly roleId: pulumi.Output; /** * The slug of the team name. */ readonly teamSlug: pulumi.Output; /** * Create a OrganizationRoleTeam 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: OrganizationRoleTeamArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering OrganizationRoleTeam resources. */ export interface OrganizationRoleTeamState { /** * The ID of the organization role. */ roleId?: pulumi.Input; /** * The slug of the team name. */ teamSlug?: pulumi.Input; } /** * The set of arguments for constructing a OrganizationRoleTeam resource. */ export interface OrganizationRoleTeamArgs { /** * The ID of the organization role. */ roleId: pulumi.Input; /** * The slug of the team name. */ teamSlug: pulumi.Input; } //# sourceMappingURL=organizationRoleTeam.d.ts.map