@pierskarsenbarg/sdm
Version:
A Pulumi package for creating and managing StrongDM cloud resources.
82 lines • 2.47 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "./types/output";
/**
* A RemoteIdentityGroup defines a group of remote identities.
* ## Example Usage
*
* <!--Start PulumiCodeChooser -->
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as sdm from "@pierskarsenbarg/sdm";
*
* const _default = sdm.getRemoteIdentityGroup({
* name: "default",
* });
* ```
* <!--End PulumiCodeChooser -->
*/
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
*
* <!--Start PulumiCodeChooser -->
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as sdm from "@pierskarsenbarg/sdm";
*
* const _default = sdm.getRemoteIdentityGroup({
* name: "default",
* });
* ```
* <!--End PulumiCodeChooser -->
*/
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 | undefined>;
/**
* Unique human-readable name of the RemoteIdentityGroup.
*/
name?: pulumi.Input<string | undefined>;
}
//# sourceMappingURL=getRemoteIdentityGroup.d.ts.map