fortimanager.ObjectWebfilterProfileFtgdwf
Explore with Pulumi AI
FortiGuard Web Filter settings.
This resource is a sub resource for variable
ftgd_wf
of resourcefortimanager.ObjectWebfilterProfile
. Conflict and overwrite may occur if use both of them. The following variables have sub resource. Avoid using them together, otherwise conflicts and overwrites may occur.
filters
:fortimanager.ObjectWebfilterProfileFtgdwfFilters
quota
:fortimanager_object_webfilter_profile_ftgdwf_quota
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";
const trname5 = new fortimanager.ObjectWebfilterProfile("trname5", {});
const trname = new fortimanager.ObjectWebfilterProfileFtgdwf("trname", {
rateCssUrls: "disable",
rateCrlUrls: "enable",
profile: trname5.name,
}, {
dependsOn: [trname5],
});
import pulumi
import pulumi_fortimanager as fortimanager
trname5 = fortimanager.ObjectWebfilterProfile("trname5")
trname = fortimanager.ObjectWebfilterProfileFtgdwf("trname",
rate_css_urls="disable",
rate_crl_urls="enable",
profile=trname5.name,
opts = pulumi.ResourceOptions(depends_on=[trname5]))
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/fortimanager/fortimanager"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
trname5, err := fortimanager.NewObjectWebfilterProfile(ctx, "trname5", nil)
if err != nil {
return err
}
_, err = fortimanager.NewObjectWebfilterProfileFtgdwf(ctx, "trname", &fortimanager.ObjectWebfilterProfileFtgdwfArgs{
RateCssUrls: pulumi.String("disable"),
RateCrlUrls: pulumi.String("enable"),
Profile: trname5.Name,
}, pulumi.DependsOn([]pulumi.Resource{
trname5,
}))
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Fortimanager = Pulumi.Fortimanager;
return await Deployment.RunAsync(() =>
{
var trname5 = new Fortimanager.ObjectWebfilterProfile("trname5");
var trname = new Fortimanager.ObjectWebfilterProfileFtgdwf("trname", new()
{
RateCssUrls = "disable",
RateCrlUrls = "enable",
Profile = trname5.Name,
}, new CustomResourceOptions
{
DependsOn =
{
trname5,
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectWebfilterProfile;
import com.pulumi.fortimanager.ObjectWebfilterProfileFtgdwf;
import com.pulumi.fortimanager.ObjectWebfilterProfileFtgdwfArgs;
import com.pulumi.resources.CustomResourceOptions;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var trname5 = new ObjectWebfilterProfile("trname5");
var trname = new ObjectWebfilterProfileFtgdwf("trname", ObjectWebfilterProfileFtgdwfArgs.builder()
.rateCssUrls("disable")
.rateCrlUrls("enable")
.profile(trname5.name())
.build(), CustomResourceOptions.builder()
.dependsOn(trname5)
.build());
}
}
resources:
trname:
type: fortimanager:ObjectWebfilterProfileFtgdwf
properties:
rateCssUrls: disable
rateCrlUrls: enable
profile: ${trname5.name}
options:
dependsOn:
- ${trname5}
trname5:
type: fortimanager:ObjectWebfilterProfile
Create ObjectWebfilterProfileFtgdwf Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectWebfilterProfileFtgdwf(name: string, args: ObjectWebfilterProfileFtgdwfArgs, opts?: CustomResourceOptions);
@overload
def ObjectWebfilterProfileFtgdwf(resource_name: str,
args: ObjectWebfilterProfileFtgdwfArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectWebfilterProfileFtgdwf(resource_name: str,
opts: Optional[ResourceOptions] = None,
profile: Optional[str] = None,
options: Optional[Sequence[str]] = None,
dynamic_sort_subtable: Optional[str] = None,
filters: Optional[Sequence[ObjectWebfilterProfileFtgdwfFilterArgs]] = None,
max_quota_timeout: Optional[float] = None,
object_webfilter_profile_ftgdwf_id: Optional[str] = None,
adom: Optional[str] = None,
ovrds: Optional[Sequence[str]] = None,
exempt_quotas: Optional[Sequence[str]] = None,
quotas: Optional[Sequence[ObjectWebfilterProfileFtgdwfQuotaArgs]] = None,
rate_crl_urls: Optional[str] = None,
rate_css_urls: Optional[str] = None,
rate_image_urls: Optional[str] = None,
rate_javascript_urls: Optional[str] = None,
scopetype: Optional[str] = None)
func NewObjectWebfilterProfileFtgdwf(ctx *Context, name string, args ObjectWebfilterProfileFtgdwfArgs, opts ...ResourceOption) (*ObjectWebfilterProfileFtgdwf, error)
public ObjectWebfilterProfileFtgdwf(string name, ObjectWebfilterProfileFtgdwfArgs args, CustomResourceOptions? opts = null)
public ObjectWebfilterProfileFtgdwf(String name, ObjectWebfilterProfileFtgdwfArgs args)
public ObjectWebfilterProfileFtgdwf(String name, ObjectWebfilterProfileFtgdwfArgs args, CustomResourceOptions options)
type: fortimanager:ObjectWebfilterProfileFtgdwf
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ObjectWebfilterProfileFtgdwfArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ObjectWebfilterProfileFtgdwfArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ObjectWebfilterProfileFtgdwfArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectWebfilterProfileFtgdwfArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectWebfilterProfileFtgdwfArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var objectWebfilterProfileFtgdwfResource = new Fortimanager.ObjectWebfilterProfileFtgdwf("objectWebfilterProfileFtgdwfResource", new()
{
Profile = "string",
Options = new[]
{
"string",
},
DynamicSortSubtable = "string",
Filters = new[]
{
new Fortimanager.Inputs.ObjectWebfilterProfileFtgdwfFilterArgs
{
Action = "string",
AuthUsrGrp = "string",
Category = "string",
Id = 0,
Log = "string",
OverrideReplacemsg = "string",
WarnDuration = "string",
WarningDurationType = "string",
WarningPrompt = "string",
},
},
MaxQuotaTimeout = 0,
ObjectWebfilterProfileFtgdwfId = "string",
Adom = "string",
Ovrds = new[]
{
"string",
},
ExemptQuotas = new[]
{
"string",
},
Quotas = new[]
{
new Fortimanager.Inputs.ObjectWebfilterProfileFtgdwfQuotaArgs
{
Category = "string",
Duration = "string",
Id = 0,
OverrideReplacemsg = "string",
Type = "string",
Unit = "string",
Value = 0,
},
},
RateCrlUrls = "string",
RateCssUrls = "string",
RateImageUrls = "string",
RateJavascriptUrls = "string",
Scopetype = "string",
});
example, err := fortimanager.NewObjectWebfilterProfileFtgdwf(ctx, "objectWebfilterProfileFtgdwfResource", &fortimanager.ObjectWebfilterProfileFtgdwfArgs{
Profile: pulumi.String("string"),
Options: pulumi.StringArray{
pulumi.String("string"),
},
DynamicSortSubtable: pulumi.String("string"),
Filters: .ObjectWebfilterProfileFtgdwfFilterArray{
&.ObjectWebfilterProfileFtgdwfFilterArgs{
Action: pulumi.String("string"),
AuthUsrGrp: pulumi.String("string"),
Category: pulumi.String("string"),
Id: pulumi.Float64(0),
Log: pulumi.String("string"),
OverrideReplacemsg: pulumi.String("string"),
WarnDuration: pulumi.String("string"),
WarningDurationType: pulumi.String("string"),
WarningPrompt: pulumi.String("string"),
},
},
MaxQuotaTimeout: pulumi.Float64(0),
ObjectWebfilterProfileFtgdwfId: pulumi.String("string"),
Adom: pulumi.String("string"),
Ovrds: pulumi.StringArray{
pulumi.String("string"),
},
ExemptQuotas: pulumi.StringArray{
pulumi.String("string"),
},
Quotas: .ObjectWebfilterProfileFtgdwfQuotaArray{
&.ObjectWebfilterProfileFtgdwfQuotaArgs{
Category: pulumi.String("string"),
Duration: pulumi.String("string"),
Id: pulumi.Float64(0),
OverrideReplacemsg: pulumi.String("string"),
Type: pulumi.String("string"),
Unit: pulumi.String("string"),
Value: pulumi.Float64(0),
},
},
RateCrlUrls: pulumi.String("string"),
RateCssUrls: pulumi.String("string"),
RateImageUrls: pulumi.String("string"),
RateJavascriptUrls: pulumi.String("string"),
Scopetype: pulumi.String("string"),
})
var objectWebfilterProfileFtgdwfResource = new ObjectWebfilterProfileFtgdwf("objectWebfilterProfileFtgdwfResource", ObjectWebfilterProfileFtgdwfArgs.builder()
.profile("string")
.options("string")
.dynamicSortSubtable("string")
.filters(ObjectWebfilterProfileFtgdwfFilterArgs.builder()
.action("string")
.authUsrGrp("string")
.category("string")
.id(0)
.log("string")
.overrideReplacemsg("string")
.warnDuration("string")
.warningDurationType("string")
.warningPrompt("string")
.build())
.maxQuotaTimeout(0)
.objectWebfilterProfileFtgdwfId("string")
.adom("string")
.ovrds("string")
.exemptQuotas("string")
.quotas(ObjectWebfilterProfileFtgdwfQuotaArgs.builder()
.category("string")
.duration("string")
.id(0)
.overrideReplacemsg("string")
.type("string")
.unit("string")
.value(0)
.build())
.rateCrlUrls("string")
.rateCssUrls("string")
.rateImageUrls("string")
.rateJavascriptUrls("string")
.scopetype("string")
.build());
object_webfilter_profile_ftgdwf_resource = fortimanager.ObjectWebfilterProfileFtgdwf("objectWebfilterProfileFtgdwfResource",
profile="string",
options=["string"],
dynamic_sort_subtable="string",
filters=[{
"action": "string",
"auth_usr_grp": "string",
"category": "string",
"id": 0,
"log": "string",
"override_replacemsg": "string",
"warn_duration": "string",
"warning_duration_type": "string",
"warning_prompt": "string",
}],
max_quota_timeout=0,
object_webfilter_profile_ftgdwf_id="string",
adom="string",
ovrds=["string"],
exempt_quotas=["string"],
quotas=[{
"category": "string",
"duration": "string",
"id": 0,
"override_replacemsg": "string",
"type": "string",
"unit": "string",
"value": 0,
}],
rate_crl_urls="string",
rate_css_urls="string",
rate_image_urls="string",
rate_javascript_urls="string",
scopetype="string")
const objectWebfilterProfileFtgdwfResource = new fortimanager.ObjectWebfilterProfileFtgdwf("objectWebfilterProfileFtgdwfResource", {
profile: "string",
options: ["string"],
dynamicSortSubtable: "string",
filters: [{
action: "string",
authUsrGrp: "string",
category: "string",
id: 0,
log: "string",
overrideReplacemsg: "string",
warnDuration: "string",
warningDurationType: "string",
warningPrompt: "string",
}],
maxQuotaTimeout: 0,
objectWebfilterProfileFtgdwfId: "string",
adom: "string",
ovrds: ["string"],
exemptQuotas: ["string"],
quotas: [{
category: "string",
duration: "string",
id: 0,
overrideReplacemsg: "string",
type: "string",
unit: "string",
value: 0,
}],
rateCrlUrls: "string",
rateCssUrls: "string",
rateImageUrls: "string",
rateJavascriptUrls: "string",
scopetype: "string",
});
type: fortimanager:ObjectWebfilterProfileFtgdwf
properties:
adom: string
dynamicSortSubtable: string
exemptQuotas:
- string
filters:
- action: string
authUsrGrp: string
category: string
id: 0
log: string
overrideReplacemsg: string
warnDuration: string
warningDurationType: string
warningPrompt: string
maxQuotaTimeout: 0
objectWebfilterProfileFtgdwfId: string
options:
- string
ovrds:
- string
profile: string
quotas:
- category: string
duration: string
id: 0
overrideReplacemsg: string
type: string
unit: string
value: 0
rateCrlUrls: string
rateCssUrls: string
rateImageUrls: string
rateJavascriptUrls: string
scopetype: string
ObjectWebfilterProfileFtgdwf Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The ObjectWebfilterProfileFtgdwf resource accepts the following input properties:
- Profile string
- Profile.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- Exempt
Quotas List<string> - Do not stop quota for these categories.
- Filters
List<Object
Webfilter Profile Ftgdwf Filter> - Filters. The structure of
filters
block is documented below. - Max
Quota doubleTimeout - Maximum FortiGuard quota used by single page view in seconds (excludes streams).
- Object
Webfilter stringProfile Ftgdwf Id - an identifier for the resource.
- Options List<string>
- Options for FortiGuard Web Filter. Valid values:
error-allow
,http-err-detail
,rate-image-urls
,strict-blocking
,rate-server-ip
,redir-block
,connect-request-bypass
,log-all-url
,ftgd-disable
. - Ovrds List<string>
- Allow web filter profile overrides.
- Quotas
List<Object
Webfilter Profile Ftgdwf Quota> - Quota. The structure of
quota
block is documented below. - Rate
Crl stringUrls - Enable/disable rating CRL by URL. Valid values:
disable
,enable
. - Rate
Css stringUrls - Enable/disable rating CSS by URL. Valid values:
disable
,enable
. - Rate
Image stringUrls - Enable/disable rating images by URL. Valid values:
disable
,enable
. - Rate
Javascript stringUrls - Enable/disable rating JavaScript by URL. Valid values:
disable
,enable
. - Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- Profile string
- Profile.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- Exempt
Quotas []string - Do not stop quota for these categories.
- Filters
[]Object
Webfilter Profile Ftgdwf Filter Args - Filters. The structure of
filters
block is documented below. - Max
Quota float64Timeout - Maximum FortiGuard quota used by single page view in seconds (excludes streams).
- Object
Webfilter stringProfile Ftgdwf Id - an identifier for the resource.
- Options []string
- Options for FortiGuard Web Filter. Valid values:
error-allow
,http-err-detail
,rate-image-urls
,strict-blocking
,rate-server-ip
,redir-block
,connect-request-bypass
,log-all-url
,ftgd-disable
. - Ovrds []string
- Allow web filter profile overrides.
- Quotas
[]Object
Webfilter Profile Ftgdwf Quota Args - Quota. The structure of
quota
block is documented below. - Rate
Crl stringUrls - Enable/disable rating CRL by URL. Valid values:
disable
,enable
. - Rate
Css stringUrls - Enable/disable rating CSS by URL. Valid values:
disable
,enable
. - Rate
Image stringUrls - Enable/disable rating images by URL. Valid values:
disable
,enable
. - Rate
Javascript stringUrls - Enable/disable rating JavaScript by URL. Valid values:
disable
,enable
. - Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- profile String
- Profile.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - dynamic
Sort StringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- exempt
Quotas List<String> - Do not stop quota for these categories.
- filters
List<Object
Webfilter Profile Ftgdwf Filter> - Filters. The structure of
filters
block is documented below. - max
Quota DoubleTimeout - Maximum FortiGuard quota used by single page view in seconds (excludes streams).
- object
Webfilter StringProfile Ftgdwf Id - an identifier for the resource.
- options List<String>
- Options for FortiGuard Web Filter. Valid values:
error-allow
,http-err-detail
,rate-image-urls
,strict-blocking
,rate-server-ip
,redir-block
,connect-request-bypass
,log-all-url
,ftgd-disable
. - ovrds List<String>
- Allow web filter profile overrides.
- quotas
List<Object
Webfilter Profile Ftgdwf Quota> - Quota. The structure of
quota
block is documented below. - rate
Crl StringUrls - Enable/disable rating CRL by URL. Valid values:
disable
,enable
. - rate
Css StringUrls - Enable/disable rating CSS by URL. Valid values:
disable
,enable
. - rate
Image StringUrls - Enable/disable rating images by URL. Valid values:
disable
,enable
. - rate
Javascript StringUrls - Enable/disable rating JavaScript by URL. Valid values:
disable
,enable
. - scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- profile string
- Profile.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- exempt
Quotas string[] - Do not stop quota for these categories.
- filters
Object
Webfilter Profile Ftgdwf Filter[] - Filters. The structure of
filters
block is documented below. - max
Quota numberTimeout - Maximum FortiGuard quota used by single page view in seconds (excludes streams).
- object
Webfilter stringProfile Ftgdwf Id - an identifier for the resource.
- options string[]
- Options for FortiGuard Web Filter. Valid values:
error-allow
,http-err-detail
,rate-image-urls
,strict-blocking
,rate-server-ip
,redir-block
,connect-request-bypass
,log-all-url
,ftgd-disable
. - ovrds string[]
- Allow web filter profile overrides.
- quotas
Object
Webfilter Profile Ftgdwf Quota[] - Quota. The structure of
quota
block is documented below. - rate
Crl stringUrls - Enable/disable rating CRL by URL. Valid values:
disable
,enable
. - rate
Css stringUrls - Enable/disable rating CSS by URL. Valid values:
disable
,enable
. - rate
Image stringUrls - Enable/disable rating images by URL. Valid values:
disable
,enable
. - rate
Javascript stringUrls - Enable/disable rating JavaScript by URL. Valid values:
disable
,enable
. - scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- profile str
- Profile.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - dynamic_
sort_ strsubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- exempt_
quotas Sequence[str] - Do not stop quota for these categories.
- filters
Sequence[Object
Webfilter Profile Ftgdwf Filter Args] - Filters. The structure of
filters
block is documented below. - max_
quota_ floattimeout - Maximum FortiGuard quota used by single page view in seconds (excludes streams).
- object_
webfilter_ strprofile_ ftgdwf_ id - an identifier for the resource.
- options Sequence[str]
- Options for FortiGuard Web Filter. Valid values:
error-allow
,http-err-detail
,rate-image-urls
,strict-blocking
,rate-server-ip
,redir-block
,connect-request-bypass
,log-all-url
,ftgd-disable
. - ovrds Sequence[str]
- Allow web filter profile overrides.
- quotas
Sequence[Object
Webfilter Profile Ftgdwf Quota Args] - Quota. The structure of
quota
block is documented below. - rate_
crl_ strurls - Enable/disable rating CRL by URL. Valid values:
disable
,enable
. - rate_
css_ strurls - Enable/disable rating CSS by URL. Valid values:
disable
,enable
. - rate_
image_ strurls - Enable/disable rating images by URL. Valid values:
disable
,enable
. - rate_
javascript_ strurls - Enable/disable rating JavaScript by URL. Valid values:
disable
,enable
. - scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- profile String
- Profile.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - dynamic
Sort StringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- exempt
Quotas List<String> - Do not stop quota for these categories.
- filters List<Property Map>
- Filters. The structure of
filters
block is documented below. - max
Quota NumberTimeout - Maximum FortiGuard quota used by single page view in seconds (excludes streams).
- object
Webfilter StringProfile Ftgdwf Id - an identifier for the resource.
- options List<String>
- Options for FortiGuard Web Filter. Valid values:
error-allow
,http-err-detail
,rate-image-urls
,strict-blocking
,rate-server-ip
,redir-block
,connect-request-bypass
,log-all-url
,ftgd-disable
. - ovrds List<String>
- Allow web filter profile overrides.
- quotas List<Property Map>
- Quota. The structure of
quota
block is documented below. - rate
Crl StringUrls - Enable/disable rating CRL by URL. Valid values:
disable
,enable
. - rate
Css StringUrls - Enable/disable rating CSS by URL. Valid values:
disable
,enable
. - rate
Image StringUrls - Enable/disable rating images by URL. Valid values:
disable
,enable
. - rate
Javascript StringUrls - Enable/disable rating JavaScript by URL. Valid values:
disable
,enable
. - scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectWebfilterProfileFtgdwf resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing ObjectWebfilterProfileFtgdwf Resource
Get an existing ObjectWebfilterProfileFtgdwf resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: ObjectWebfilterProfileFtgdwfState, opts?: CustomResourceOptions): ObjectWebfilterProfileFtgdwf
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
dynamic_sort_subtable: Optional[str] = None,
exempt_quotas: Optional[Sequence[str]] = None,
filters: Optional[Sequence[ObjectWebfilterProfileFtgdwfFilterArgs]] = None,
max_quota_timeout: Optional[float] = None,
object_webfilter_profile_ftgdwf_id: Optional[str] = None,
options: Optional[Sequence[str]] = None,
ovrds: Optional[Sequence[str]] = None,
profile: Optional[str] = None,
quotas: Optional[Sequence[ObjectWebfilterProfileFtgdwfQuotaArgs]] = None,
rate_crl_urls: Optional[str] = None,
rate_css_urls: Optional[str] = None,
rate_image_urls: Optional[str] = None,
rate_javascript_urls: Optional[str] = None,
scopetype: Optional[str] = None) -> ObjectWebfilterProfileFtgdwf
func GetObjectWebfilterProfileFtgdwf(ctx *Context, name string, id IDInput, state *ObjectWebfilterProfileFtgdwfState, opts ...ResourceOption) (*ObjectWebfilterProfileFtgdwf, error)
public static ObjectWebfilterProfileFtgdwf Get(string name, Input<string> id, ObjectWebfilterProfileFtgdwfState? state, CustomResourceOptions? opts = null)
public static ObjectWebfilterProfileFtgdwf get(String name, Output<String> id, ObjectWebfilterProfileFtgdwfState state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectWebfilterProfileFtgdwf get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- Exempt
Quotas List<string> - Do not stop quota for these categories.
- Filters
List<Object
Webfilter Profile Ftgdwf Filter> - Filters. The structure of
filters
block is documented below. - Max
Quota doubleTimeout - Maximum FortiGuard quota used by single page view in seconds (excludes streams).
- Object
Webfilter stringProfile Ftgdwf Id - an identifier for the resource.
- Options List<string>
- Options for FortiGuard Web Filter. Valid values:
error-allow
,http-err-detail
,rate-image-urls
,strict-blocking
,rate-server-ip
,redir-block
,connect-request-bypass
,log-all-url
,ftgd-disable
. - Ovrds List<string>
- Allow web filter profile overrides.
- Profile string
- Profile.
- Quotas
List<Object
Webfilter Profile Ftgdwf Quota> - Quota. The structure of
quota
block is documented below. - Rate
Crl stringUrls - Enable/disable rating CRL by URL. Valid values:
disable
,enable
. - Rate
Css stringUrls - Enable/disable rating CSS by URL. Valid values:
disable
,enable
. - Rate
Image stringUrls - Enable/disable rating images by URL. Valid values:
disable
,enable
. - Rate
Javascript stringUrls - Enable/disable rating JavaScript by URL. Valid values:
disable
,enable
. - Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- Exempt
Quotas []string - Do not stop quota for these categories.
- Filters
[]Object
Webfilter Profile Ftgdwf Filter Args - Filters. The structure of
filters
block is documented below. - Max
Quota float64Timeout - Maximum FortiGuard quota used by single page view in seconds (excludes streams).
- Object
Webfilter stringProfile Ftgdwf Id - an identifier for the resource.
- Options []string
- Options for FortiGuard Web Filter. Valid values:
error-allow
,http-err-detail
,rate-image-urls
,strict-blocking
,rate-server-ip
,redir-block
,connect-request-bypass
,log-all-url
,ftgd-disable
. - Ovrds []string
- Allow web filter profile overrides.
- Profile string
- Profile.
- Quotas
[]Object
Webfilter Profile Ftgdwf Quota Args - Quota. The structure of
quota
block is documented below. - Rate
Crl stringUrls - Enable/disable rating CRL by URL. Valid values:
disable
,enable
. - Rate
Css stringUrls - Enable/disable rating CSS by URL. Valid values:
disable
,enable
. - Rate
Image stringUrls - Enable/disable rating images by URL. Valid values:
disable
,enable
. - Rate
Javascript stringUrls - Enable/disable rating JavaScript by URL. Valid values:
disable
,enable
. - Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - dynamic
Sort StringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- exempt
Quotas List<String> - Do not stop quota for these categories.
- filters
List<Object
Webfilter Profile Ftgdwf Filter> - Filters. The structure of
filters
block is documented below. - max
Quota DoubleTimeout - Maximum FortiGuard quota used by single page view in seconds (excludes streams).
- object
Webfilter StringProfile Ftgdwf Id - an identifier for the resource.
- options List<String>
- Options for FortiGuard Web Filter. Valid values:
error-allow
,http-err-detail
,rate-image-urls
,strict-blocking
,rate-server-ip
,redir-block
,connect-request-bypass
,log-all-url
,ftgd-disable
. - ovrds List<String>
- Allow web filter profile overrides.
- profile String
- Profile.
- quotas
List<Object
Webfilter Profile Ftgdwf Quota> - Quota. The structure of
quota
block is documented below. - rate
Crl StringUrls - Enable/disable rating CRL by URL. Valid values:
disable
,enable
. - rate
Css StringUrls - Enable/disable rating CSS by URL. Valid values:
disable
,enable
. - rate
Image StringUrls - Enable/disable rating images by URL. Valid values:
disable
,enable
. - rate
Javascript StringUrls - Enable/disable rating JavaScript by URL. Valid values:
disable
,enable
. - scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- exempt
Quotas string[] - Do not stop quota for these categories.
- filters
Object
Webfilter Profile Ftgdwf Filter[] - Filters. The structure of
filters
block is documented below. - max
Quota numberTimeout - Maximum FortiGuard quota used by single page view in seconds (excludes streams).
- object
Webfilter stringProfile Ftgdwf Id - an identifier for the resource.
- options string[]
- Options for FortiGuard Web Filter. Valid values:
error-allow
,http-err-detail
,rate-image-urls
,strict-blocking
,rate-server-ip
,redir-block
,connect-request-bypass
,log-all-url
,ftgd-disable
. - ovrds string[]
- Allow web filter profile overrides.
- profile string
- Profile.
- quotas
Object
Webfilter Profile Ftgdwf Quota[] - Quota. The structure of
quota
block is documented below. - rate
Crl stringUrls - Enable/disable rating CRL by URL. Valid values:
disable
,enable
. - rate
Css stringUrls - Enable/disable rating CSS by URL. Valid values:
disable
,enable
. - rate
Image stringUrls - Enable/disable rating images by URL. Valid values:
disable
,enable
. - rate
Javascript stringUrls - Enable/disable rating JavaScript by URL. Valid values:
disable
,enable
. - scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - dynamic_
sort_ strsubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- exempt_
quotas Sequence[str] - Do not stop quota for these categories.
- filters
Sequence[Object
Webfilter Profile Ftgdwf Filter Args] - Filters. The structure of
filters
block is documented below. - max_
quota_ floattimeout - Maximum FortiGuard quota used by single page view in seconds (excludes streams).
- object_
webfilter_ strprofile_ ftgdwf_ id - an identifier for the resource.
- options Sequence[str]
- Options for FortiGuard Web Filter. Valid values:
error-allow
,http-err-detail
,rate-image-urls
,strict-blocking
,rate-server-ip
,redir-block
,connect-request-bypass
,log-all-url
,ftgd-disable
. - ovrds Sequence[str]
- Allow web filter profile overrides.
- profile str
- Profile.
- quotas
Sequence[Object
Webfilter Profile Ftgdwf Quota Args] - Quota. The structure of
quota
block is documented below. - rate_
crl_ strurls - Enable/disable rating CRL by URL. Valid values:
disable
,enable
. - rate_
css_ strurls - Enable/disable rating CSS by URL. Valid values:
disable
,enable
. - rate_
image_ strurls - Enable/disable rating images by URL. Valid values:
disable
,enable
. - rate_
javascript_ strurls - Enable/disable rating JavaScript by URL. Valid values:
disable
,enable
. - scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - dynamic
Sort StringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- exempt
Quotas List<String> - Do not stop quota for these categories.
- filters List<Property Map>
- Filters. The structure of
filters
block is documented below. - max
Quota NumberTimeout - Maximum FortiGuard quota used by single page view in seconds (excludes streams).
- object
Webfilter StringProfile Ftgdwf Id - an identifier for the resource.
- options List<String>
- Options for FortiGuard Web Filter. Valid values:
error-allow
,http-err-detail
,rate-image-urls
,strict-blocking
,rate-server-ip
,redir-block
,connect-request-bypass
,log-all-url
,ftgd-disable
. - ovrds List<String>
- Allow web filter profile overrides.
- profile String
- Profile.
- quotas List<Property Map>
- Quota. The structure of
quota
block is documented below. - rate
Crl StringUrls - Enable/disable rating CRL by URL. Valid values:
disable
,enable
. - rate
Css StringUrls - Enable/disable rating CSS by URL. Valid values:
disable
,enable
. - rate
Image StringUrls - Enable/disable rating images by URL. Valid values:
disable
,enable
. - rate
Javascript StringUrls - Enable/disable rating JavaScript by URL. Valid values:
disable
,enable
. - scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
Supporting Types
ObjectWebfilterProfileFtgdwfFilter, ObjectWebfilterProfileFtgdwfFilterArgs
- Action string
- Action to take for matches. Valid values:
block
,monitor
,warning
,authenticate
. - Auth
Usr stringGrp - Groups with permission to authenticate.
- Category string
- Categories and groups the filter examines.
- Id double
- ID number.
- Log string
- Enable/disable logging. Valid values:
disable
,enable
. - Override
Replacemsg string - Override replacement message.
- Warn
Duration string - Duration of warnings.
- Warning
Duration stringType - Re-display warning after closing browser or after a timeout. Valid values:
session
,timeout
. - Warning
Prompt string - Warning prompts in each category or each domain. Valid values:
per-domain
,per-category
.
- Action string
- Action to take for matches. Valid values:
block
,monitor
,warning
,authenticate
. - Auth
Usr stringGrp - Groups with permission to authenticate.
- Category string
- Categories and groups the filter examines.
- Id float64
- ID number.
- Log string
- Enable/disable logging. Valid values:
disable
,enable
. - Override
Replacemsg string - Override replacement message.
- Warn
Duration string - Duration of warnings.
- Warning
Duration stringType - Re-display warning after closing browser or after a timeout. Valid values:
session
,timeout
. - Warning
Prompt string - Warning prompts in each category or each domain. Valid values:
per-domain
,per-category
.
- action String
- Action to take for matches. Valid values:
block
,monitor
,warning
,authenticate
. - auth
Usr StringGrp - Groups with permission to authenticate.
- category String
- Categories and groups the filter examines.
- id Double
- ID number.
- log String
- Enable/disable logging. Valid values:
disable
,enable
. - override
Replacemsg String - Override replacement message.
- warn
Duration String - Duration of warnings.
- warning
Duration StringType - Re-display warning after closing browser or after a timeout. Valid values:
session
,timeout
. - warning
Prompt String - Warning prompts in each category or each domain. Valid values:
per-domain
,per-category
.
- action string
- Action to take for matches. Valid values:
block
,monitor
,warning
,authenticate
. - auth
Usr stringGrp - Groups with permission to authenticate.
- category string
- Categories and groups the filter examines.
- id number
- ID number.
- log string
- Enable/disable logging. Valid values:
disable
,enable
. - override
Replacemsg string - Override replacement message.
- warn
Duration string - Duration of warnings.
- warning
Duration stringType - Re-display warning after closing browser or after a timeout. Valid values:
session
,timeout
. - warning
Prompt string - Warning prompts in each category or each domain. Valid values:
per-domain
,per-category
.
- action str
- Action to take for matches. Valid values:
block
,monitor
,warning
,authenticate
. - auth_
usr_ strgrp - Groups with permission to authenticate.
- category str
- Categories and groups the filter examines.
- id float
- ID number.
- log str
- Enable/disable logging. Valid values:
disable
,enable
. - override_
replacemsg str - Override replacement message.
- warn_
duration str - Duration of warnings.
- warning_
duration_ strtype - Re-display warning after closing browser or after a timeout. Valid values:
session
,timeout
. - warning_
prompt str - Warning prompts in each category or each domain. Valid values:
per-domain
,per-category
.
- action String
- Action to take for matches. Valid values:
block
,monitor
,warning
,authenticate
. - auth
Usr StringGrp - Groups with permission to authenticate.
- category String
- Categories and groups the filter examines.
- id Number
- ID number.
- log String
- Enable/disable logging. Valid values:
disable
,enable
. - override
Replacemsg String - Override replacement message.
- warn
Duration String - Duration of warnings.
- warning
Duration StringType - Re-display warning after closing browser or after a timeout. Valid values:
session
,timeout
. - warning
Prompt String - Warning prompts in each category or each domain. Valid values:
per-domain
,per-category
.
ObjectWebfilterProfileFtgdwfQuota, ObjectWebfilterProfileFtgdwfQuotaArgs
- Category string
- FortiGuard categories to apply quota to (category action must be set to monitor).
- Duration string
- Duration of quota.
- Id double
- ID number.
- Override
Replacemsg string - Override replacement message.
- Type string
- Quota type. Valid values:
time
,traffic
. - Unit string
- Traffic quota unit of measurement. Valid values:
B
,KB
,MB
,GB
. - Value double
- Traffic quota value.
- Category string
- FortiGuard categories to apply quota to (category action must be set to monitor).
- Duration string
- Duration of quota.
- Id float64
- ID number.
- Override
Replacemsg string - Override replacement message.
- Type string
- Quota type. Valid values:
time
,traffic
. - Unit string
- Traffic quota unit of measurement. Valid values:
B
,KB
,MB
,GB
. - Value float64
- Traffic quota value.
- category String
- FortiGuard categories to apply quota to (category action must be set to monitor).
- duration String
- Duration of quota.
- id Double
- ID number.
- override
Replacemsg String - Override replacement message.
- type String
- Quota type. Valid values:
time
,traffic
. - unit String
- Traffic quota unit of measurement. Valid values:
B
,KB
,MB
,GB
. - value Double
- Traffic quota value.
- category string
- FortiGuard categories to apply quota to (category action must be set to monitor).
- duration string
- Duration of quota.
- id number
- ID number.
- override
Replacemsg string - Override replacement message.
- type string
- Quota type. Valid values:
time
,traffic
. - unit string
- Traffic quota unit of measurement. Valid values:
B
,KB
,MB
,GB
. - value number
- Traffic quota value.
- category str
- FortiGuard categories to apply quota to (category action must be set to monitor).
- duration str
- Duration of quota.
- id float
- ID number.
- override_
replacemsg str - Override replacement message.
- type str
- Quota type. Valid values:
time
,traffic
. - unit str
- Traffic quota unit of measurement. Valid values:
B
,KB
,MB
,GB
. - value float
- Traffic quota value.
- category String
- FortiGuard categories to apply quota to (category action must be set to monitor).
- duration String
- Duration of quota.
- id Number
- ID number.
- override
Replacemsg String - Override replacement message.
- type String
- Quota type. Valid values:
time
,traffic
. - unit String
- Traffic quota unit of measurement. Valid values:
B
,KB
,MB
,GB
. - value Number
- Traffic quota value.
Import
ObjectWebfilter ProfileFtgdWf can be imported using any of these accepted formats:
Set import_options = [“profile=YOUR_VALUE”] in the provider section.
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectWebfilterProfileFtgdwf:ObjectWebfilterProfileFtgdwf labelname ObjectWebfilterProfileFtgdWf
$ unset “FORTIMANAGER_IMPORT_TABLE”
-> Hint: The scopetype and adom for import will directly inherit the scopetype and adom configuration of the provider.
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- fortimanager fortinetdev/terraform-provider-fortimanager
- License
- Notes
- This Pulumi package is based on the
fortimanager
Terraform Provider.