@pulumiverse/fortios
Version:
A Pulumi package for creating and managing Fortios resources. Based on terraform-provider-fortios: version v1.16.0
59 lines (58 loc) • 2.03 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Use this data source to get information on an fortios router accesslist6
*/
export declare function getAccesslist6(args: GetAccesslist6Args, opts?: pulumi.InvokeOptions): Promise<GetAccesslist6Result>;
/**
* A collection of arguments for invoking getAccesslist6.
*/
export interface GetAccesslist6Args {
/**
* Specify the name of the desired router accesslist6.
*/
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 getAccesslist6.
*/
export interface GetAccesslist6Result {
/**
* Comment.
*/
readonly comments: string;
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
/**
* Name.
*/
readonly name: string;
/**
* Rule. The structure of `rule` block is documented below.
*/
readonly rules: outputs.router.GetAccesslist6Rule[];
readonly vdomparam?: string;
}
/**
* Use this data source to get information on an fortios router accesslist6
*/
export declare function getAccesslist6Output(args: GetAccesslist6OutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetAccesslist6Result>;
/**
* A collection of arguments for invoking getAccesslist6.
*/
export interface GetAccesslist6OutputArgs {
/**
* Specify the name of the desired router accesslist6.
*/
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>;
}