@pulumi/scm
Version:
A Pulumi package for managing resources on Strata Cloud Manager.. Based on terraform-provider-scm: version v0.2.1
87 lines (86 loc) • 2.52 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* AuthenticationSequence data source
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as scm from "@pulumi/scm";
*
* const sequenceData = scm.getAuthenticationSequence({
* id: "1ee14ac7-760c-401f-8dbc-c887db16106a",
* });
* export const scmAuthenticationSequence = sequenceData.then(sequenceData => sequenceData.id);
* export const fetchedSequence = sequenceData;
* ```
*/
export declare function getAuthenticationSequence(args: GetAuthenticationSequenceArgs, opts?: pulumi.InvokeOptions): Promise<GetAuthenticationSequenceResult>;
/**
* A collection of arguments for invoking getAuthenticationSequence.
*/
export interface GetAuthenticationSequenceArgs {
/**
* The UUID of the authentication sequence
*/
id: string;
/**
* The name of the authentication sequence
*/
name?: string;
}
/**
* A collection of values returned by getAuthenticationSequence.
*/
export interface GetAuthenticationSequenceResult {
/**
* An ordered list of authentication profiles
*/
readonly authenticationProfiles: string[];
/**
* The device in which the resource is defined
*/
readonly device: string;
readonly folder: string;
/**
* The UUID of the authentication sequence
*/
readonly id: string;
/**
* The name of the authentication sequence
*/
readonly name: string;
readonly snippet: string;
readonly tfid: string;
readonly useDomainFindProfile: boolean;
}
/**
* AuthenticationSequence data source
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as scm from "@pulumi/scm";
*
* const sequenceData = scm.getAuthenticationSequence({
* id: "1ee14ac7-760c-401f-8dbc-c887db16106a",
* });
* export const scmAuthenticationSequence = sequenceData.then(sequenceData => sequenceData.id);
* export const fetchedSequence = sequenceData;
* ```
*/
export declare function getAuthenticationSequenceOutput(args: GetAuthenticationSequenceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetAuthenticationSequenceResult>;
/**
* A collection of arguments for invoking getAuthenticationSequence.
*/
export interface GetAuthenticationSequenceOutputArgs {
/**
* The UUID of the authentication sequence
*/
id: pulumi.Input<string>;
/**
* The name of the authentication sequence
*/
name?: pulumi.Input<string>;
}