@pulumiverse/fortios
Version:
A Pulumi package for creating and managing Fortios resources. Based on terraform-provider-fortios: version v1.16.0
54 lines (53 loc) • 1.82 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Use this data source to get information on fortios system fipscc
*/
export declare function getFipscc(args?: GetFipsccArgs, opts?: pulumi.InvokeOptions): Promise<GetFipsccResult>;
/**
* A collection of arguments for invoking getFipscc.
*/
export interface GetFipsccArgs {
/**
* Specifies the vdom to which the data source will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
*/
vdomparam?: string;
}
/**
* A collection of values returned by getFipscc.
*/
export interface GetFipsccResult {
/**
* Enable/disable/dynamic entropy token.
*/
readonly entropyToken: string;
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
/**
* Enable/disable self tests after key generation.
*/
readonly keyGenerationSelfTest: string;
/**
* Self test period.
*/
readonly selfTestPeriod: number;
/**
* Enable/disable FIPS-CC mode.
*/
readonly status: string;
readonly vdomparam?: string;
}
/**
* Use this data source to get information on fortios system fipscc
*/
export declare function getFipsccOutput(args?: GetFipsccOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetFipsccResult>;
/**
* A collection of arguments for invoking getFipscc.
*/
export interface GetFipsccOutputArgs {
/**
* Specifies the vdom to which the data source will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
*/
vdomparam?: pulumi.Input<string>;
}