UNPKG

@pierskarsenbarg/sdm

Version:

A Pulumi package for creating and managing StrongDM cloud resources.

78 lines (77 loc) 2.25 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * A RemoteIdentityGroup defines a group of remote identities. * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdm from "@pierskarsenbarg/sdm"; * * const _default = sdm.getRemoteIdentityGroup({ * name: "default", * }); * ``` */ export declare function getRemoteIdentityGroup(args?: GetRemoteIdentityGroupArgs, opts?: pulumi.InvokeOptions): Promise<GetRemoteIdentityGroupResult>; /** * A collection of arguments for invoking getRemoteIdentityGroup. */ export interface GetRemoteIdentityGroupArgs { /** * Unique identifier of the RemoteIdentityGroup. */ id?: string; /** * Unique human-readable name of the RemoteIdentityGroup. */ name?: string; } /** * A collection of values returned by getRemoteIdentityGroup. */ export interface GetRemoteIdentityGroupResult { /** * Unique identifier of the RemoteIdentityGroup. */ readonly id?: string; /** * a list of strings of ids of data sources that match the given arguments. */ readonly ids: string[]; /** * Unique human-readable name of the RemoteIdentityGroup. */ readonly name?: string; /** * A list where each element has the following attributes: */ readonly remoteIdentityGroups: outputs.GetRemoteIdentityGroupRemoteIdentityGroup[]; } /** * A RemoteIdentityGroup defines a group of remote identities. * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdm from "@pierskarsenbarg/sdm"; * * const _default = sdm.getRemoteIdentityGroup({ * name: "default", * }); * ``` */ export declare function getRemoteIdentityGroupOutput(args?: GetRemoteIdentityGroupOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetRemoteIdentityGroupResult>; /** * A collection of arguments for invoking getRemoteIdentityGroup. */ export interface GetRemoteIdentityGroupOutputArgs { /** * Unique identifier of the RemoteIdentityGroup. */ id?: pulumi.Input<string>; /** * Unique human-readable name of the RemoteIdentityGroup. */ name?: pulumi.Input<string>; }