UNPKG

@pulumiverse/fortios

Version:

A Pulumi package for creating and managing Fortios resources. Based on terraform-provider-fortios: version v1.16.0

75 lines (74 loc) 2.37 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Use this data source to get information on an fortios system objecttagging */ export declare function getObjecttagging(args: GetObjecttaggingArgs, opts?: pulumi.InvokeOptions): Promise<GetObjecttaggingResult>; /** * A collection of arguments for invoking getObjecttagging. */ export interface GetObjecttaggingArgs { /** * Specify the category of the desired system objecttagging. */ category: 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 getObjecttagging. */ export interface GetObjecttaggingResult { /** * Address. */ readonly address: string; /** * Tag Category. */ readonly category: string; /** * Color of icon on the GUI. */ readonly color: number; /** * Device. */ readonly device: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Interface. */ readonly interface: string; /** * Allow multiple tag selection. */ readonly multiple: string; /** * Tags. The structure of `tags` block is documented below. */ readonly tags: outputs.system.GetObjecttaggingTag[]; readonly vdomparam?: string; } /** * Use this data source to get information on an fortios system objecttagging */ export declare function getObjecttaggingOutput(args: GetObjecttaggingOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetObjecttaggingResult>; /** * A collection of arguments for invoking getObjecttagging. */ export interface GetObjecttaggingOutputArgs { /** * Specify the category of the desired system objecttagging. */ category: 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>; }