@osmit-gmbh/pulumi-authentik
Version:
A Pulumi package for creating and managing authentik cloud resources.
65 lines (64 loc) • 1.55 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Get stages by name
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as authentik from "@pulumi/authentik";
*
* // To get the ID of a stage by name
* const default-authentication-identification = authentik.getStage({
* name: "default-authentication-identification",
* });
* ```
*/
export declare function getStage(args?: GetStageArgs, opts?: pulumi.InvokeOptions): Promise<GetStageResult>;
/**
* A collection of arguments for invoking getStage.
*/
export interface GetStageArgs {
/**
* Generated.
*/
name?: string;
}
/**
* A collection of values returned by getStage.
*/
export interface GetStageResult {
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
/**
* Generated.
*/
readonly name: string;
}
/**
* Get stages by name
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as authentik from "@pulumi/authentik";
*
* // To get the ID of a stage by name
* const default-authentication-identification = authentik.getStage({
* name: "default-authentication-identification",
* });
* ```
*/
export declare function getStageOutput(args?: GetStageOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetStageResult>;
/**
* A collection of arguments for invoking getStage.
*/
export interface GetStageOutputArgs {
/**
* Generated.
*/
name?: pulumi.Input<string>;
}