UNPKG

@pulumi/juniper-mist

Version:

A Pulumi package for creating and managing Juniper Mist resources.

58 lines 2.45 kB
"use strict"; // *** WARNING: this file was generated by pulumi-language-nodejs. *** // *** Do not edit by hand unless you're certain you know what you are doing! *** Object.defineProperty(exports, "__esModule", { value: true }); exports.getSsoRolesOutput = exports.getSsoRoles = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * 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", * }); * ``` */ function getSsoRoles(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("junipermist:org/getSsoRoles:getSsoRoles", { "orgId": args.orgId, }, opts); } exports.getSsoRoles = getSsoRoles; /** * 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", * }); * ``` */ function getSsoRolesOutput(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("junipermist:org/getSsoRoles:getSsoRoles", { "orgId": args.orgId, }, opts); } exports.getSsoRolesOutput = getSsoRolesOutput; //# sourceMappingURL=getSsoRoles.js.map