import * as pulumi from "@pulumi/pulumi";
import * as inputs from "../types/input";
import * as outputs from "../types/output";
/**
 * This resource manages Org SSO Roles for Admin Authentication.
 *
 * SSO roles refer to the different functions assigned to users within a Single Sign-On (SSO) system.\
 * These roles determine the tasks and actions that users can perform within the SSO system. There are typically predefined roles and custom roles in an SSO system.\
 * Roles in SSO provide a well-defined separation of responsibility and visibility, allowing for granular-level access control on SSO objects.
 *
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as junipermist from "@pulumi/juniper-mist";
 *
 * const ssoRoleOne = new junipermist.org.SsoRole("sso_role_one", {
 *     orgId: terraformTest.id,
 *     name: "admin_sso",
 *     privileges: [{
 *         scope: "site",
 *         role: "read",
 *         siteId: terraformSite.id,
 *     }],
 * });
 * ```
 *
 * ## Import
 *
 * Using `pulumi import`, import `junipermist.org.SsoRole` with:
 * Org PSK can be imported by specifying the orgId and the ssoRoleId
 *
 * ```sh
 * $ pulumi import junipermist:org/ssoRole:SsoRole sso_role_one 17b46405-3a6d-4715-8bb4-6bb6d06f316a.d3c42998-9012-4859-9743-6b9bee475309
 * ```
 */
export declare class SsoRole extends pulumi.CustomResource {
    /**
     * Get an existing SsoRole 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?: SsoRoleState, opts?: pulumi.CustomResourceOptions): SsoRole;
    /**
     * Returns true if the given object is an instance of SsoRole.  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 SsoRole;
    /**
     * Display name of the organization SSO role
     */
    readonly name: pulumi.Output<string>;
    /**
     * Owning organization identifier for this SSO role
     */
    readonly orgId: pulumi.Output<string>;
    /**
     * Access privileges granted by this organization SSO role
     */
    readonly privileges: pulumi.Output<outputs.org.SsoRolePrivilege[]>;
    /**
     * Create a SsoRole 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: SsoRoleArgs, opts?: pulumi.CustomResourceOptions);
}
/**
 * Input properties used for looking up and filtering SsoRole resources.
 */
export interface SsoRoleState {
    /**
     * Display name of the organization SSO role
     */
    name?: pulumi.Input<string | undefined>;
    /**
     * Owning organization identifier for this SSO role
     */
    orgId?: pulumi.Input<string | undefined>;
    /**
     * Access privileges granted by this organization SSO role
     */
    privileges?: pulumi.Input<pulumi.Input<inputs.org.SsoRolePrivilege>[] | undefined>;
}
/**
 * The set of arguments for constructing a SsoRole resource.
 */
export interface SsoRoleArgs {
    /**
     * Display name of the organization SSO role
     */
    name?: pulumi.Input<string | undefined>;
    /**
     * Owning organization identifier for this SSO role
     */
    orgId: pulumi.Input<string>;
    /**
     * Access privileges granted by this organization SSO role
     */
    privileges: pulumi.Input<pulumi.Input<inputs.org.SsoRolePrivilege>[]>;
}
//# sourceMappingURL=ssoRole.d.ts.map