import * as pulumi from "@pulumi/pulumi"; /** * Create am IAM permissions group. * * ## Import * * An IAM permissions group can be imported using the `id` E.g., * * bash * * ```sh * $ pulumi import ovh:Iam/permissionsGroup:PermissionsGroup read_vps permissions_group_id * ``` */ export declare class PermissionsGroup extends pulumi.CustomResource { /** * Get an existing PermissionsGroup 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?: PermissionsGroupState, opts?: pulumi.CustomResourceOptions): PermissionsGroup; /** * Returns true if the given object is an instance of PermissionsGroup. 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 PermissionsGroup; /** * Set of actions allowed by the permissions group. */ readonly allows: pulumi.Output; /** * Creation date of this group. */ readonly createdAt: pulumi.Output; /** * Set of actions that will be denied no matter what permissions group exists. */ readonly denies: pulumi.Output; /** * Group description. */ readonly description: pulumi.Output; /** * Set of actions that will be subtracted from the `allow` list. */ readonly excepts: pulumi.Output; /** * Name of the permissions group. */ readonly name: pulumi.Output; /** * Owner of the permissions group. */ readonly owner: pulumi.Output; /** * Date of the last update of this group. */ readonly updatedAt: pulumi.Output; /** * URN of the permissions group. */ readonly urn: pulumi.Output; /** * Create a PermissionsGroup 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: PermissionsGroupArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering PermissionsGroup resources. */ export interface PermissionsGroupState { /** * Set of actions allowed by the permissions group. */ allows?: pulumi.Input[]>; /** * Creation date of this group. */ createdAt?: pulumi.Input; /** * Set of actions that will be denied no matter what permissions group exists. */ denies?: pulumi.Input[]>; /** * Group description. */ description?: pulumi.Input; /** * Set of actions that will be subtracted from the `allow` list. */ excepts?: pulumi.Input[]>; /** * Name of the permissions group. */ name?: pulumi.Input; /** * Owner of the permissions group. */ owner?: pulumi.Input; /** * Date of the last update of this group. */ updatedAt?: pulumi.Input; /** * URN of the permissions group. */ urn?: pulumi.Input; } /** * The set of arguments for constructing a PermissionsGroup resource. */ export interface PermissionsGroupArgs { /** * Set of actions allowed by the permissions group. */ allows?: pulumi.Input[]>; /** * Set of actions that will be denied no matter what permissions group exists. */ denies?: pulumi.Input[]>; /** * Group description. */ description: pulumi.Input; /** * Set of actions that will be subtracted from the `allow` list. */ excepts?: pulumi.Input[]>; /** * Name of the permissions group. */ name?: pulumi.Input; /** * Date of the last update of this group. */ updatedAt?: pulumi.Input; }