UNPKG

@pulumi/scm

Version:

A Pulumi package for managing resources on Strata Cloud Manager.. Based on terraform-provider-scm: version v0.2.1

88 lines (87 loc) 2.16 kB
import * as pulumi from "@pulumi/pulumi"; /** * Retrieves a config item. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * const example = scm.getAuthenticationPortal({ * id: "1234-56-789", * }); * ``` */ export declare function getAuthenticationPortal(args: GetAuthenticationPortalArgs, opts?: pulumi.InvokeOptions): Promise<GetAuthenticationPortalResult>; /** * A collection of arguments for invoking getAuthenticationPortal. */ export interface GetAuthenticationPortalArgs { /** * The Id param. */ id: string; } /** * A collection of values returned by getAuthenticationPortal. */ export interface GetAuthenticationPortalResult { /** * The AuthenticationProfile param. */ readonly authenticationProfile: string; /** * The CertificateProfile param. */ readonly certificateProfile: string; /** * The GpUdpPort param. Value must be between 1 and 65535. */ readonly gpUdpPort: number; /** * The Id param. */ readonly id: string; /** * The IdleTimer param. Value must be between 1 and 1440. */ readonly idleTimer: number; /** * The RedirectHost param. */ readonly redirectHost: string; readonly tfid: string; /** * The Timer param. Value must be between 1 and 1440. */ readonly timer: number; /** * The TlsServiceProfile param. */ readonly tlsServiceProfile: string; } /** * Retrieves a config item. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * const example = scm.getAuthenticationPortal({ * id: "1234-56-789", * }); * ``` */ export declare function getAuthenticationPortalOutput(args: GetAuthenticationPortalOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetAuthenticationPortalResult>; /** * A collection of arguments for invoking getAuthenticationPortal. */ export interface GetAuthenticationPortalOutputArgs { /** * The Id param. */ id: pulumi.Input<string>; }