UNPKG

@pulumi/juniper-mist

Version:

A Pulumi package for creating and managing Juniper Mist resources.

64 lines (63 loc) 2.37 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This resource provides the list of SSO Roles. * * 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 ssoRoles = junipermist.org.getSsoRoles({ * orgId: "15fca2ac-b1a6-47cc-9953-cc6906281550", * }); * ``` */ export declare function getSsoRoles(args: GetSsoRolesArgs, opts?: pulumi.InvokeOptions): Promise<GetSsoRolesResult>; /** * A collection of arguments for invoking getSsoRoles. */ export interface GetSsoRolesArgs { orgId: string; } /** * A collection of values returned by getSsoRoles. */ export interface GetSsoRolesResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly orgId: string; readonly orgSsoRoles: outputs.org.GetSsoRolesOrgSsoRole[]; } /** * This resource provides the list of SSO Roles. * * 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 ssoRoles = junipermist.org.getSsoRoles({ * orgId: "15fca2ac-b1a6-47cc-9953-cc6906281550", * }); * ``` */ export declare function getSsoRolesOutput(args: GetSsoRolesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSsoRolesResult>; /** * A collection of arguments for invoking getSsoRoles. */ export interface GetSsoRolesOutputArgs { orgId: pulumi.Input<string>; }