import * as pulumi from "@pulumi/pulumi";
/**
 * Gets information about an existing IAM group.
 *
 * For more information, refer to the [IAM API documentation](https://developers.scaleway.com/en/products/iam/api/v1alpha1/#applications-83ce5e)
 *
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as scaleway from "@pulumi/scaleway";
 *
 * // Get info by name
 * const findByName = scaleway.iam.getGroup({
 *     name: "foobar",
 * });
 * // Get info by group ID
 * const findById = scaleway.iam.getGroup({
 *     groupId: "11111111-1111-1111-1111-111111111111",
 * });
 * ```
 */
/** @deprecated scaleway.index/getiamgroup.getIamGroup has been deprecated in favor of scaleway.iam/getgroup.getGroup */
export declare function getIamGroup(args?: GetIamGroupArgs, opts?: pulumi.InvokeOptions): Promise<GetIamGroupResult>;
/**
 * A collection of arguments for invoking getIamGroup.
 */
export interface GetIamGroupArgs {
    /**
     * The ID of the IAM group.
     *
     * > **Note** You must specify at least one: `name` and/or `groupId`.
     */
    groupId?: string;
    /**
     * The name of the IAM group.
     */
    name?: string;
    /**
     * `organizationId`) The ID of the
     * organization the group is associated with.
     */
    organizationId?: string;
}
/**
 * A collection of values returned by getIamGroup.
 */
export interface GetIamGroupResult {
    readonly applicationIds: string[];
    readonly createdAt: string;
    readonly description: string;
    readonly externalMembership: boolean;
    readonly groupId?: string;
    /**
     * The provider-assigned unique ID for this managed resource.
     */
    readonly id: string;
    readonly name?: string;
    readonly organizationId?: string;
    readonly tags: string[];
    readonly updatedAt: string;
    readonly userIds: string[];
}
/**
 * Gets information about an existing IAM group.
 *
 * For more information, refer to the [IAM API documentation](https://developers.scaleway.com/en/products/iam/api/v1alpha1/#applications-83ce5e)
 *
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as scaleway from "@pulumi/scaleway";
 *
 * // Get info by name
 * const findByName = scaleway.iam.getGroup({
 *     name: "foobar",
 * });
 * // Get info by group ID
 * const findById = scaleway.iam.getGroup({
 *     groupId: "11111111-1111-1111-1111-111111111111",
 * });
 * ```
 */
/** @deprecated scaleway.index/getiamgroup.getIamGroup has been deprecated in favor of scaleway.iam/getgroup.getGroup */
export declare function getIamGroupOutput(args?: GetIamGroupOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetIamGroupResult>;
/**
 * A collection of arguments for invoking getIamGroup.
 */
export interface GetIamGroupOutputArgs {
    /**
     * The ID of the IAM group.
     *
     * > **Note** You must specify at least one: `name` and/or `groupId`.
     */
    groupId?: pulumi.Input<string>;
    /**
     * The name of the IAM group.
     */
    name?: pulumi.Input<string>;
    /**
     * `organizationId`) The ID of the
     * organization the group is associated with.
     */
    organizationId?: pulumi.Input<string>;
}
