UNPKG

@pulumi/pulumiservice

Version:

[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com) [![NPM version](https://badge.fury.io/js/%40pulumi%2Fpulumiservice.svg)](https://www.npmjs.com/package/@pulumi/pulumiservice) [![Python version](https://badge.fury.io

26 lines 1.57 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * Lists all members of a Pulumi Cloud organization, including their role assignments. Merges Pulumi Cloud's identity-provider roster (paginated; includes users who haven't signed in to Pulumi yet) with the seat-count roster, deduped by username, so SAML- and non-SAML-provisioned members both appear regardless of which roster they're tracked in. */ export declare function getOrganizationMembers(args: GetOrganizationMembersArgs, opts?: pulumi.InvokeOptions): Promise<GetOrganizationMembersResult>; export interface GetOrganizationMembersArgs { /** * The name of the Pulumi organization. */ organizationName: string; } export interface GetOrganizationMembersResult { readonly members: outputs.OrganizationMemberInfo[]; } /** * Lists all members of a Pulumi Cloud organization, including their role assignments. Merges Pulumi Cloud's identity-provider roster (paginated; includes users who haven't signed in to Pulumi yet) with the seat-count roster, deduped by username, so SAML- and non-SAML-provisioned members both appear regardless of which roster they're tracked in. */ export declare function getOrganizationMembersOutput(args: GetOrganizationMembersOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetOrganizationMembersResult>; export interface GetOrganizationMembersOutputArgs { /** * The name of the Pulumi organization. */ organizationName: pulumi.Input<string>; } //# sourceMappingURL=getOrganizationMembers.d.ts.map