UNPKG

@pulumi/azuread

Version:

A Pulumi package for creating and managing Azure Active Directory (Azure AD) cloud resources.

104 lines (103 loc) 5.65 kB
import * as pulumi from "@pulumi/pulumi"; /** * Manages a single administrative unit membership within Azure Active Directory. * * > **Warning** Do not use this resource at the same time as the `members` property of the `azuread.AdministrativeUnit` resource for the same administrative unit. Doing so will cause a conflict and administrative unit members will be removed. * * ## API Permissions * * The following API permissions are required in order to use this resource. * * When authenticated with a service principal, this resource requires one of the following application roles: `AdministrativeUnit.ReadWrite.All` or `Directory.ReadWrite.All` * * When authenticated with a user principal, this resource requires one of the following directory roles: `Privileged Role Administrator` or `Global Administrator` * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azuread from "@pulumi/azuread"; * * const example = azuread.getUser({ * userPrincipalName: "jdoe@example.com", * }); * const exampleAdministrativeUnit = new azuread.AdministrativeUnit("example", {displayName: "Example-AU"}); * const exampleAdministrativeUnitMember = new azuread.AdministrativeUnitMember("example", { * administrativeUnitObjectId: exampleAdministrativeUnit.id, * memberObjectId: example.then(example => example.id), * }); * ``` * * ## Import * * Administrative unit members can be imported using the object ID of the administrative unit and the object ID of the member, e.g. * * ```sh * $ pulumi import azuread:index/administrativeUnitMember:AdministrativeUnitMember example /directory/administrativeUnits/00000000-0000-0000-0000-000000000000/members/11111111-1111-1111-1111-111111111111 * ``` */ export declare class AdministrativeUnitMember extends pulumi.CustomResource { /** * Get an existing AdministrativeUnitMember 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?: AdministrativeUnitMemberState, opts?: pulumi.CustomResourceOptions): AdministrativeUnitMember; /** * Returns true if the given object is an instance of AdministrativeUnitMember. 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 AdministrativeUnitMember; /** * The object ID of the administrative unit you want to add the member to. Changing this forces a new resource to be created. */ readonly administrativeUnitObjectId: pulumi.Output<string | undefined>; /** * The object ID of the user or group you want to add as a member of the administrative unit. Changing this forces a new resource to be created. * * > **Caution** When using the azuread.AdministrativeUnitMember resource to manage Administrative Unit membership for a group, you will need to use an `ignoreChanges = [administrativeUnitIds]` lifecycle meta argument for the `azuread.Group` resource, in order to avoid a persistent diff. */ readonly memberObjectId: pulumi.Output<string | undefined>; /** * Create a AdministrativeUnitMember 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?: AdministrativeUnitMemberArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering AdministrativeUnitMember resources. */ export interface AdministrativeUnitMemberState { /** * The object ID of the administrative unit you want to add the member to. Changing this forces a new resource to be created. */ administrativeUnitObjectId?: pulumi.Input<string>; /** * The object ID of the user or group you want to add as a member of the administrative unit. Changing this forces a new resource to be created. * * > **Caution** When using the azuread.AdministrativeUnitMember resource to manage Administrative Unit membership for a group, you will need to use an `ignoreChanges = [administrativeUnitIds]` lifecycle meta argument for the `azuread.Group` resource, in order to avoid a persistent diff. */ memberObjectId?: pulumi.Input<string>; } /** * The set of arguments for constructing a AdministrativeUnitMember resource. */ export interface AdministrativeUnitMemberArgs { /** * The object ID of the administrative unit you want to add the member to. Changing this forces a new resource to be created. */ administrativeUnitObjectId?: pulumi.Input<string>; /** * The object ID of the user or group you want to add as a member of the administrative unit. Changing this forces a new resource to be created. * * > **Caution** When using the azuread.AdministrativeUnitMember resource to manage Administrative Unit membership for a group, you will need to use an `ignoreChanges = [administrativeUnitIds]` lifecycle meta argument for the `azuread.Group` resource, in order to avoid a persistent diff. */ memberObjectId?: pulumi.Input<string>; }