UNPKG

@pulumiverse/fortios

Version:

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

246 lines (245 loc) 6.92 kB
import * as pulumi from "@pulumi/pulumi"; /** * Provides a resource to configure access profiles of FortiOS. * * !> **Warning:** The resource will be deprecated and replaced by new resource `fortios.system.Accprofile`, we recommend that you use the new resource. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as fortios from "@pulumiverse/fortios"; * * const test1 = new fortios.system.AdminProfiles("test1", { * admintimeoutOverride: "disable", * authgrp: "none", * comments: "test", * ftviewgrp: "read", * fwgrp: "none", * loggrp: "none", * netgrp: "none", * scope: "vdom", * secfabgrp: "read-write", * sysgrp: "read", * utmgrp: "none", * vpngrp: "none", * wanoptgrp: "none", * wifi: "none", * }); * ``` */ export declare class AdminProfiles extends pulumi.CustomResource { /** * Get an existing AdminProfiles resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: AdminProfilesState, opts?: pulumi.CustomResourceOptions): AdminProfiles; /** * Returns true if the given object is an instance of AdminProfiles. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is AdminProfiles; /** * Enable/disable overriding the global administrator idle timeout. */ readonly admintimeoutOverride: pulumi.Output<string>; /** * Administrator access to Users and Devices. */ readonly authgrp: pulumi.Output<string>; /** * Comment. */ readonly comments: pulumi.Output<string | undefined>; /** * FortiView. */ readonly ftviewgrp: pulumi.Output<string>; /** * Administrator access to the Firewall configuration. */ readonly fwgrp: pulumi.Output<string>; /** * Administrator access to Logging and Reporting including viewing log messages. */ readonly loggrp: pulumi.Output<string>; /** * Profile name. */ readonly name: pulumi.Output<string>; /** * Network Configuration. */ readonly netgrp: pulumi.Output<string>; /** * Scope of admin access. */ readonly scope: pulumi.Output<string>; /** * Security Fabric. */ readonly secfabgrp: pulumi.Output<string>; /** * System Configuration. */ readonly sysgrp: pulumi.Output<string>; /** * Administrator access to Security Profiles. */ readonly utmgrp: pulumi.Output<string>; /** * Administrator access to IPsec, SSL, PPTP, and L2TP VPN. */ readonly vpngrp: pulumi.Output<string>; /** * Administrator access to WAN Opt & Cache. */ readonly wanoptgrp: pulumi.Output<string>; /** * Administrator access to the WiFi controller and Switch controller. */ readonly wifi: pulumi.Output<string>; /** * Create a AdminProfiles resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args?: AdminProfilesArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering AdminProfiles resources. */ export interface AdminProfilesState { /** * Enable/disable overriding the global administrator idle timeout. */ admintimeoutOverride?: pulumi.Input<string>; /** * Administrator access to Users and Devices. */ authgrp?: pulumi.Input<string>; /** * Comment. */ comments?: pulumi.Input<string>; /** * FortiView. */ ftviewgrp?: pulumi.Input<string>; /** * Administrator access to the Firewall configuration. */ fwgrp?: pulumi.Input<string>; /** * Administrator access to Logging and Reporting including viewing log messages. */ loggrp?: pulumi.Input<string>; /** * Profile name. */ name?: pulumi.Input<string>; /** * Network Configuration. */ netgrp?: pulumi.Input<string>; /** * Scope of admin access. */ scope?: pulumi.Input<string>; /** * Security Fabric. */ secfabgrp?: pulumi.Input<string>; /** * System Configuration. */ sysgrp?: pulumi.Input<string>; /** * Administrator access to Security Profiles. */ utmgrp?: pulumi.Input<string>; /** * Administrator access to IPsec, SSL, PPTP, and L2TP VPN. */ vpngrp?: pulumi.Input<string>; /** * Administrator access to WAN Opt & Cache. */ wanoptgrp?: pulumi.Input<string>; /** * Administrator access to the WiFi controller and Switch controller. */ wifi?: pulumi.Input<string>; } /** * The set of arguments for constructing a AdminProfiles resource. */ export interface AdminProfilesArgs { /** * Enable/disable overriding the global administrator idle timeout. */ admintimeoutOverride?: pulumi.Input<string>; /** * Administrator access to Users and Devices. */ authgrp?: pulumi.Input<string>; /** * Comment. */ comments?: pulumi.Input<string>; /** * FortiView. */ ftviewgrp?: pulumi.Input<string>; /** * Administrator access to the Firewall configuration. */ fwgrp?: pulumi.Input<string>; /** * Administrator access to Logging and Reporting including viewing log messages. */ loggrp?: pulumi.Input<string>; /** * Profile name. */ name?: pulumi.Input<string>; /** * Network Configuration. */ netgrp?: pulumi.Input<string>; /** * Scope of admin access. */ scope?: pulumi.Input<string>; /** * Security Fabric. */ secfabgrp?: pulumi.Input<string>; /** * System Configuration. */ sysgrp?: pulumi.Input<string>; /** * Administrator access to Security Profiles. */ utmgrp?: pulumi.Input<string>; /** * Administrator access to IPsec, SSL, PPTP, and L2TP VPN. */ vpngrp?: pulumi.Input<string>; /** * Administrator access to WAN Opt & Cache. */ wanoptgrp?: pulumi.Input<string>; /** * Administrator access to the WiFi controller and Switch controller. */ wifi?: pulumi.Input<string>; }