UNPKG

@pulumiverse/fortios

Version:

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

63 lines (62 loc) 2.35 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Use this data source to get information on an fortios system automationdestination */ export declare function getAutomationdestination(args: GetAutomationdestinationArgs, opts?: pulumi.InvokeOptions): Promise<GetAutomationdestinationResult>; /** * A collection of arguments for invoking getAutomationdestination. */ export interface GetAutomationdestinationArgs { /** * Specify the name of the desired system automationdestination. */ name: 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 getAutomationdestination. */ export interface GetAutomationdestinationResult { /** * Destinations. The structure of `destination` block is documented below. */ readonly destinations: outputs.system.GetAutomationdestinationDestination[]; /** * Cluster group ID set for this destination (default = 0). */ readonly haGroupId: number; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Destination. */ readonly name: string; /** * Destination type. */ readonly type: string; readonly vdomparam?: string; } /** * Use this data source to get information on an fortios system automationdestination */ export declare function getAutomationdestinationOutput(args: GetAutomationdestinationOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetAutomationdestinationResult>; /** * A collection of arguments for invoking getAutomationdestination. */ export interface GetAutomationdestinationOutputArgs { /** * Specify the name of the desired system automationdestination. */ name: 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>; }