@pierskarsenbarg/sdm
Version:
A Pulumi package for creating and managing StrongDM cloud resources.
78 lines (77 loc) • 2.05 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "./types/output";
/**
* A IdentitySet defines a group of identity aliases.
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as sdm from "@pierskarsenbarg/sdm";
*
* const _default = sdm.getIdentitySet({
* name: "default",
* });
* ```
*/
export declare function getIdentitySet(args?: GetIdentitySetArgs, opts?: pulumi.InvokeOptions): Promise<GetIdentitySetResult>;
/**
* A collection of arguments for invoking getIdentitySet.
*/
export interface GetIdentitySetArgs {
/**
* Unique identifier of the IdentitySet.
*/
id?: string;
/**
* Unique human-readable name of the IdentitySet.
*/
name?: string;
}
/**
* A collection of values returned by getIdentitySet.
*/
export interface GetIdentitySetResult {
/**
* Unique identifier of the IdentitySet.
*/
readonly id?: string;
/**
* A list where each element has the following attributes:
*/
readonly identitySets: outputs.GetIdentitySetIdentitySet[];
/**
* a list of strings of ids of data sources that match the given arguments.
*/
readonly ids: string[];
/**
* Unique human-readable name of the IdentitySet.
*/
readonly name?: string;
}
/**
* A IdentitySet defines a group of identity aliases.
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as sdm from "@pierskarsenbarg/sdm";
*
* const _default = sdm.getIdentitySet({
* name: "default",
* });
* ```
*/
export declare function getIdentitySetOutput(args?: GetIdentitySetOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetIdentitySetResult>;
/**
* A collection of arguments for invoking getIdentitySet.
*/
export interface GetIdentitySetOutputArgs {
/**
* Unique identifier of the IdentitySet.
*/
id?: pulumi.Input<string>;
/**
* Unique human-readable name of the IdentitySet.
*/
name?: pulumi.Input<string>;
}