UNPKG

@pulumi/signalfx

Version:

A Pulumi package for creating and managing SignalFx resources.

33 lines (32 loc) 1.21 kB
import * as pulumi from "@pulumi/pulumi"; /** * Allows for members to be queried and used as part of other resources. Requires the supplied token to have Admin priviledges. */ export declare function organizationMembers(args: OrganizationMembersArgs, opts?: pulumi.InvokeOptions): Promise<OrganizationMembersResult>; /** * A collection of arguments for invoking OrganizationMembers. */ export interface OrganizationMembersArgs { emails: string[]; } /** * A collection of values returned by OrganizationMembers. */ export interface OrganizationMembersResult { readonly emails: string[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly users: string[]; } /** * Allows for members to be queried and used as part of other resources. Requires the supplied token to have Admin priviledges. */ export declare function organizationMembersOutput(args: OrganizationMembersOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<OrganizationMembersResult>; /** * A collection of arguments for invoking OrganizationMembers. */ export interface OrganizationMembersOutputArgs { emails: pulumi.Input<pulumi.Input<string>[]>; }