@pulumiverse/fortios
Version:
A Pulumi package for creating and managing Fortios resources. Based on terraform-provider-fortios: version v1.16.0
51 lines (50 loc) • 1.93 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Provides a list of `fortios.system.Objecttagging`.
*/
export declare function getObjecttagginglist(args?: GetObjecttagginglistArgs, opts?: pulumi.InvokeOptions): Promise<GetObjecttagginglistResult>;
/**
* A collection of arguments for invoking getObjecttagginglist.
*/
export interface GetObjecttagginglistArgs {
/**
* A filter used to scope the list. See Filter results of datasource.
*/
filter?: string;
/**
* 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 getObjecttagginglist.
*/
export interface GetObjecttagginglistResult {
/**
* A list of the `fortios.system.Objecttagging`.
*/
readonly categorylists: string[];
readonly filter?: string;
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
readonly vdomparam?: string;
}
/**
* Provides a list of `fortios.system.Objecttagging`.
*/
export declare function getObjecttagginglistOutput(args?: GetObjecttagginglistOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetObjecttagginglistResult>;
/**
* A collection of arguments for invoking getObjecttagginglist.
*/
export interface GetObjecttagginglistOutputArgs {
/**
* A filter used to scope the list. See Filter results of datasource.
*/
filter?: pulumi.Input<string>;
/**
* 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>;
}