@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.43 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../../types/output";
/**
* Use this data source to get information on an fortios firewallservice group
*/
export declare function getGroup(args: GetGroupArgs, opts?: pulumi.InvokeOptions): Promise<GetGroupResult>;
/**
* A collection of arguments for invoking getGroup.
*/
export interface GetGroupArgs {
/**
* Specify the name of the desired firewallservice group.
*/
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 getGroup.
*/
export interface GetGroupResult {
/**
* Color of icon on the GUI.
*/
readonly color: number;
/**
* Comment.
*/
readonly comment: string;
/**
* Security Fabric global object setting.
*/
readonly fabricObject: string;
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
/**
* Service objects contained within the group. The structure of `member` block is documented below.
*/
readonly members: outputs.firewall.service.GetGroupMember[];
/**
* Address name.
*/
readonly name: string;
/**
* Enable/disable web proxy service group.
*/
readonly proxy: string;
/**
* Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
*/
readonly uuid: string;
readonly vdomparam?: string;
}
/**
* Use this data source to get information on an fortios firewallservice group
*/
export declare function getGroupOutput(args: GetGroupOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetGroupResult>;
/**
* A collection of arguments for invoking getGroup.
*/
export interface GetGroupOutputArgs {
/**
* Specify the name of the desired firewallservice group.
*/
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>;
}