@pulumiverse/fortios
Version:
A Pulumi package for creating and managing Fortios resources. Based on terraform-provider-fortios: version v1.16.0
66 lines (65 loc) • 2.28 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Use this data source to get information on fortios system managementtunnel
*/
export declare function getManagementtunnel(args?: GetManagementtunnelArgs, opts?: pulumi.InvokeOptions): Promise<GetManagementtunnelResult>;
/**
* A collection of arguments for invoking getManagementtunnel.
*/
export interface GetManagementtunnelArgs {
/**
* 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 getManagementtunnel.
*/
export interface GetManagementtunnelResult {
/**
* Enable/disable collection of run time statistics.
*/
readonly allowCollectStatistics: string;
/**
* Enable/disable allow config restore.
*/
readonly allowConfigRestore: string;
/**
* Enable/disable push configuration.
*/
readonly allowPushConfiguration: string;
/**
* Enable/disable push firmware.
*/
readonly allowPushFirmware: string;
/**
* Enable/disable restriction of authorized manager only.
*/
readonly authorizedManagerOnly: string;
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
/**
* Serial number.
*/
readonly serialNumber: string;
/**
* Enable/disable FGFM tunnel.
*/
readonly status: string;
readonly vdomparam?: string;
}
/**
* Use this data source to get information on fortios system managementtunnel
*/
export declare function getManagementtunnelOutput(args?: GetManagementtunnelOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetManagementtunnelResult>;
/**
* A collection of arguments for invoking getManagementtunnel.
*/
export interface GetManagementtunnelOutputArgs {
/**
* 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>;
}