import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * Creates and manages a [user group](https://aiven.io/docs/platform/howto/list-groups) in an organization. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as aiven from "@pulumi/aiven"; * * const example = new aiven.OrganizationUserGroup("example", { * organizationId: "org1a23f456789", * description: "The group of admins for the organization", * name: "Admin Users", * }); * ``` * * ## Import * * ```sh * $ pulumi import aiven:index/organizationUserGroup:OrganizationUserGroup example ORGANIZATION_ID/GROUP_ID * ``` */ export declare class OrganizationUserGroup extends pulumi.CustomResource { /** * Get an existing OrganizationUserGroup 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?: OrganizationUserGroupState, opts?: pulumi.CustomResourceOptions): OrganizationUserGroup; /** * Returns true if the given object is an instance of OrganizationUserGroup. 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 OrganizationUserGroup; /** * User group creation time. */ readonly createTime: pulumi.Output; /** * Description. Maximum length: `4096`. */ readonly description: pulumi.Output; /** * ID of the user group. */ readonly groupId: pulumi.Output; /** * Managed By Scim. */ readonly managedByScim: pulumi.Output; /** * User Group Name. Maximum length: `128`. */ readonly name: pulumi.Output; /** * ID of an organization. Changing this property forces recreation of the resource. */ readonly organizationId: pulumi.Output; readonly timeouts: pulumi.Output; /** * User group last update time. */ readonly updateTime: pulumi.Output; /** * Create a OrganizationUserGroup 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: OrganizationUserGroupArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering OrganizationUserGroup resources. */ export interface OrganizationUserGroupState { /** * User group creation time. */ createTime?: pulumi.Input; /** * Description. Maximum length: `4096`. */ description?: pulumi.Input; /** * ID of the user group. */ groupId?: pulumi.Input; /** * Managed By Scim. */ managedByScim?: pulumi.Input; /** * User Group Name. Maximum length: `128`. */ name?: pulumi.Input; /** * ID of an organization. Changing this property forces recreation of the resource. */ organizationId?: pulumi.Input; timeouts?: pulumi.Input; /** * User group last update time. */ updateTime?: pulumi.Input; } /** * The set of arguments for constructing a OrganizationUserGroup resource. */ export interface OrganizationUserGroupArgs { /** * Description. Maximum length: `4096`. */ description: pulumi.Input; /** * User Group Name. Maximum length: `128`. */ name?: pulumi.Input; /** * ID of an organization. Changing this property forces recreation of the resource. */ organizationId: pulumi.Input; timeouts?: pulumi.Input; } //# sourceMappingURL=organizationUserGroup.d.ts.map