@pulumiverse/fortios
Version:
A Pulumi package for creating and managing Fortios resources. Based on terraform-provider-fortios: version v1.16.0
67 lines (66 loc) • 2.41 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Use this data source to get information on an fortios system vdomexception
*/
export declare function getVdomexception(args: GetVdomexceptionArgs, opts?: pulumi.InvokeOptions): Promise<GetVdomexceptionResult>;
/**
* A collection of arguments for invoking getVdomexception.
*/
export interface GetVdomexceptionArgs {
/**
* Specify the fosid of the desired system vdomexception.
*/
fosid: number;
/**
* 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 getVdomexception.
*/
export interface GetVdomexceptionResult {
/**
* Index <1-4096>.
*/
readonly fosid: number;
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
/**
* Name of the configuration object that can be configured independently for all VDOMs.
*/
readonly object: string;
/**
* Object ID.
*/
readonly oid: number;
/**
* Determine whether the configuration object can be configured separately for all VDOMs or if some VDOMs share the same configuration.
*/
readonly scope: string;
readonly vdomparam?: string;
/**
* Names of the VDOMs. The structure of `vdom` block is documented below.
*/
readonly vdoms: outputs.system.GetVdomexceptionVdom[];
}
/**
* Use this data source to get information on an fortios system vdomexception
*/
export declare function getVdomexceptionOutput(args: GetVdomexceptionOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetVdomexceptionResult>;
/**
* A collection of arguments for invoking getVdomexception.
*/
export interface GetVdomexceptionOutputArgs {
/**
* Specify the fosid of the desired system vdomexception.
*/
fosid: pulumi.Input<number>;
/**
* 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>;
}