UrlAccessProfile resource
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as scm from "@pulumi/scm";
//
// Creates a URL Access Profile object.
//
const example = new scm.UrlAccessProfile("example", {
folder: "Shared",
name: "example_url_access_profile",
description: "Test URL Access Profile for create API",
blocks: [
"adult",
"gambling",
],
alerts: [
"high-risk",
"phishing",
],
});
import pulumi
import pulumi_scm as scm
#
# Creates a URL Access Profile object.
#
example = scm.UrlAccessProfile("example",
folder="Shared",
name="example_url_access_profile",
description="Test URL Access Profile for create API",
blocks=[
"adult",
"gambling",
],
alerts=[
"high-risk",
"phishing",
])
package main
import (
"github.com/pulumi/pulumi-scm/sdk/go/scm"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
// Creates a URL Access Profile object.
_, err := scm.NewUrlAccessProfile(ctx, "example", &scm.UrlAccessProfileArgs{
Folder: pulumi.String("Shared"),
Name: pulumi.String("example_url_access_profile"),
Description: pulumi.String("Test URL Access Profile for create API"),
Blocks: pulumi.StringArray{
pulumi.String("adult"),
pulumi.String("gambling"),
},
Alerts: pulumi.StringArray{
pulumi.String("high-risk"),
pulumi.String("phishing"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Scm = Pulumi.Scm;
return await Deployment.RunAsync(() =>
{
//
// Creates a URL Access Profile object.
//
var example = new Scm.UrlAccessProfile("example", new()
{
Folder = "Shared",
Name = "example_url_access_profile",
Description = "Test URL Access Profile for create API",
Blocks = new[]
{
"adult",
"gambling",
},
Alerts = new[]
{
"high-risk",
"phishing",
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.scm.UrlAccessProfile;
import com.pulumi.scm.UrlAccessProfileArgs;
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) {
//
// Creates a URL Access Profile object.
//
var example = new UrlAccessProfile("example", UrlAccessProfileArgs.builder()
.folder("Shared")
.name("example_url_access_profile")
.description("Test URL Access Profile for create API")
.blocks(
"adult",
"gambling")
.alerts(
"high-risk",
"phishing")
.build());
}
}
resources:
#
# Creates a URL Access Profile object.
#
example:
type: scm:UrlAccessProfile
properties:
folder: Shared
name: example_url_access_profile
description: Test URL Access Profile for create API
blocks:
- adult
- gambling
alerts:
- high-risk
- phishing
Create UrlAccessProfile Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new UrlAccessProfile(name: string, args?: UrlAccessProfileArgs, opts?: CustomResourceOptions);@overload
def UrlAccessProfile(resource_name: str,
args: Optional[UrlAccessProfileArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def UrlAccessProfile(resource_name: str,
opts: Optional[ResourceOptions] = None,
alerts: Optional[Sequence[str]] = None,
allows: Optional[Sequence[str]] = None,
blocks: Optional[Sequence[str]] = None,
cloud_inline_cat: Optional[bool] = None,
continues: Optional[Sequence[str]] = None,
credential_enforcement: Optional[UrlAccessProfileCredentialEnforcementArgs] = None,
description: Optional[str] = None,
device: Optional[str] = None,
folder: Optional[str] = None,
local_inline_cat: Optional[bool] = None,
log_container_page_only: Optional[bool] = None,
log_http_hdr_referer: Optional[bool] = None,
log_http_hdr_user_agent: Optional[bool] = None,
log_http_hdr_xff: Optional[bool] = None,
mlav_category_exceptions: Optional[Sequence[str]] = None,
name: Optional[str] = None,
redirects: Optional[Sequence[str]] = None,
safe_search_enforcement: Optional[bool] = None,
snippet: Optional[str] = None)func NewUrlAccessProfile(ctx *Context, name string, args *UrlAccessProfileArgs, opts ...ResourceOption) (*UrlAccessProfile, error)public UrlAccessProfile(string name, UrlAccessProfileArgs? args = null, CustomResourceOptions? opts = null)
public UrlAccessProfile(String name, UrlAccessProfileArgs args)
public UrlAccessProfile(String name, UrlAccessProfileArgs args, CustomResourceOptions options)
type: scm:UrlAccessProfile
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 UrlAccessProfileArgs
- 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 UrlAccessProfileArgs
- 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 UrlAccessProfileArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args UrlAccessProfileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args UrlAccessProfileArgs
- 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 urlAccessProfileResource = new Scm.UrlAccessProfile("urlAccessProfileResource", new()
{
Alerts = new[]
{
"string",
},
Allows = new[]
{
"string",
},
Blocks = new[]
{
"string",
},
CloudInlineCat = false,
Continues = new[]
{
"string",
},
CredentialEnforcement = new Scm.Inputs.UrlAccessProfileCredentialEnforcementArgs
{
Alerts = new[]
{
"string",
},
Allows = new[]
{
"string",
},
Blocks = new[]
{
"string",
},
Continues = new[]
{
"string",
},
LogSeverity = "string",
Mode = new Scm.Inputs.UrlAccessProfileCredentialEnforcementModeArgs
{
Disabled = null,
DomainCredentials = null,
GroupMapping = "string",
IpUser = null,
},
},
Description = "string",
Device = "string",
Folder = "string",
LocalInlineCat = false,
LogContainerPageOnly = false,
LogHttpHdrReferer = false,
LogHttpHdrUserAgent = false,
LogHttpHdrXff = false,
MlavCategoryExceptions = new[]
{
"string",
},
Name = "string",
Redirects = new[]
{
"string",
},
SafeSearchEnforcement = false,
Snippet = "string",
});
example, err := scm.NewUrlAccessProfile(ctx, "urlAccessProfileResource", &scm.UrlAccessProfileArgs{
Alerts: pulumi.StringArray{
pulumi.String("string"),
},
Allows: pulumi.StringArray{
pulumi.String("string"),
},
Blocks: pulumi.StringArray{
pulumi.String("string"),
},
CloudInlineCat: pulumi.Bool(false),
Continues: pulumi.StringArray{
pulumi.String("string"),
},
CredentialEnforcement: &scm.UrlAccessProfileCredentialEnforcementArgs{
Alerts: pulumi.StringArray{
pulumi.String("string"),
},
Allows: pulumi.StringArray{
pulumi.String("string"),
},
Blocks: pulumi.StringArray{
pulumi.String("string"),
},
Continues: pulumi.StringArray{
pulumi.String("string"),
},
LogSeverity: pulumi.String("string"),
Mode: &scm.UrlAccessProfileCredentialEnforcementModeArgs{
Disabled: &scm.UrlAccessProfileCredentialEnforcementModeDisabledArgs{},
DomainCredentials: &scm.UrlAccessProfileCredentialEnforcementModeDomainCredentialsArgs{},
GroupMapping: pulumi.String("string"),
IpUser: &scm.UrlAccessProfileCredentialEnforcementModeIpUserArgs{},
},
},
Description: pulumi.String("string"),
Device: pulumi.String("string"),
Folder: pulumi.String("string"),
LocalInlineCat: pulumi.Bool(false),
LogContainerPageOnly: pulumi.Bool(false),
LogHttpHdrReferer: pulumi.Bool(false),
LogHttpHdrUserAgent: pulumi.Bool(false),
LogHttpHdrXff: pulumi.Bool(false),
MlavCategoryExceptions: pulumi.StringArray{
pulumi.String("string"),
},
Name: pulumi.String("string"),
Redirects: pulumi.StringArray{
pulumi.String("string"),
},
SafeSearchEnforcement: pulumi.Bool(false),
Snippet: pulumi.String("string"),
})
var urlAccessProfileResource = new UrlAccessProfile("urlAccessProfileResource", UrlAccessProfileArgs.builder()
.alerts("string")
.allows("string")
.blocks("string")
.cloudInlineCat(false)
.continues("string")
.credentialEnforcement(UrlAccessProfileCredentialEnforcementArgs.builder()
.alerts("string")
.allows("string")
.blocks("string")
.continues("string")
.logSeverity("string")
.mode(UrlAccessProfileCredentialEnforcementModeArgs.builder()
.disabled(UrlAccessProfileCredentialEnforcementModeDisabledArgs.builder()
.build())
.domainCredentials(UrlAccessProfileCredentialEnforcementModeDomainCredentialsArgs.builder()
.build())
.groupMapping("string")
.ipUser(UrlAccessProfileCredentialEnforcementModeIpUserArgs.builder()
.build())
.build())
.build())
.description("string")
.device("string")
.folder("string")
.localInlineCat(false)
.logContainerPageOnly(false)
.logHttpHdrReferer(false)
.logHttpHdrUserAgent(false)
.logHttpHdrXff(false)
.mlavCategoryExceptions("string")
.name("string")
.redirects("string")
.safeSearchEnforcement(false)
.snippet("string")
.build());
url_access_profile_resource = scm.UrlAccessProfile("urlAccessProfileResource",
alerts=["string"],
allows=["string"],
blocks=["string"],
cloud_inline_cat=False,
continues=["string"],
credential_enforcement={
"alerts": ["string"],
"allows": ["string"],
"blocks": ["string"],
"continues": ["string"],
"log_severity": "string",
"mode": {
"disabled": {},
"domain_credentials": {},
"group_mapping": "string",
"ip_user": {},
},
},
description="string",
device="string",
folder="string",
local_inline_cat=False,
log_container_page_only=False,
log_http_hdr_referer=False,
log_http_hdr_user_agent=False,
log_http_hdr_xff=False,
mlav_category_exceptions=["string"],
name="string",
redirects=["string"],
safe_search_enforcement=False,
snippet="string")
const urlAccessProfileResource = new scm.UrlAccessProfile("urlAccessProfileResource", {
alerts: ["string"],
allows: ["string"],
blocks: ["string"],
cloudInlineCat: false,
continues: ["string"],
credentialEnforcement: {
alerts: ["string"],
allows: ["string"],
blocks: ["string"],
continues: ["string"],
logSeverity: "string",
mode: {
disabled: {},
domainCredentials: {},
groupMapping: "string",
ipUser: {},
},
},
description: "string",
device: "string",
folder: "string",
localInlineCat: false,
logContainerPageOnly: false,
logHttpHdrReferer: false,
logHttpHdrUserAgent: false,
logHttpHdrXff: false,
mlavCategoryExceptions: ["string"],
name: "string",
redirects: ["string"],
safeSearchEnforcement: false,
snippet: "string",
});
type: scm:UrlAccessProfile
properties:
alerts:
- string
allows:
- string
blocks:
- string
cloudInlineCat: false
continues:
- string
credentialEnforcement:
alerts:
- string
allows:
- string
blocks:
- string
continues:
- string
logSeverity: string
mode:
disabled: {}
domainCredentials: {}
groupMapping: string
ipUser: {}
description: string
device: string
folder: string
localInlineCat: false
logContainerPageOnly: false
logHttpHdrReferer: false
logHttpHdrUserAgent: false
logHttpHdrXff: false
mlavCategoryExceptions:
- string
name: string
redirects:
- string
safeSearchEnforcement: false
snippet: string
UrlAccessProfile 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 UrlAccessProfile resource accepts the following input properties:
- Alerts List<string>
- Alert
- Allows List<string>
- Allow
- Blocks List<string>
- Block
- Cloud
Inline boolCat - Cloud inline cat
- Continues List<string>
- Continue
- Credential
Enforcement UrlAccess Profile Credential Enforcement - Credential enforcement
- Description string
- Description
- Device string
- The device in which the resource is defined
- Folder string
- The folder in which the resource is defined
- Local
Inline boolCat - Local inline cat
- Log
Container boolPage Only - Log container page only
- Log
Http boolHdr Referer - Log http hdr referer
- Log
Http boolHdr User Agent - Log http hdr user agent
- Log
Http boolHdr Xff - Log http hdr xff
- Mlav
Category List<string>Exceptions - Mlav category exception
- Name string
- Name
- Redirects List<string>
- Redirect
- Safe
Search boolEnforcement - Safe search enforcement
- Snippet string
- The snippet in which the resource is defined
- Alerts []string
- Alert
- Allows []string
- Allow
- Blocks []string
- Block
- Cloud
Inline boolCat - Cloud inline cat
- Continues []string
- Continue
- Credential
Enforcement UrlAccess Profile Credential Enforcement Args - Credential enforcement
- Description string
- Description
- Device string
- The device in which the resource is defined
- Folder string
- The folder in which the resource is defined
- Local
Inline boolCat - Local inline cat
- Log
Container boolPage Only - Log container page only
- Log
Http boolHdr Referer - Log http hdr referer
- Log
Http boolHdr User Agent - Log http hdr user agent
- Log
Http boolHdr Xff - Log http hdr xff
- Mlav
Category []stringExceptions - Mlav category exception
- Name string
- Name
- Redirects []string
- Redirect
- Safe
Search boolEnforcement - Safe search enforcement
- Snippet string
- The snippet in which the resource is defined
- alerts List<String>
- Alert
- allows List<String>
- Allow
- blocks List<String>
- Block
- cloud
Inline BooleanCat - Cloud inline cat
- continues List<String>
- Continue
- credential
Enforcement UrlAccess Profile Credential Enforcement - Credential enforcement
- description String
- Description
- device String
- The device in which the resource is defined
- folder String
- The folder in which the resource is defined
- local
Inline BooleanCat - Local inline cat
- log
Container BooleanPage Only - Log container page only
- log
Http BooleanHdr Referer - Log http hdr referer
- log
Http BooleanHdr User Agent - Log http hdr user agent
- log
Http BooleanHdr Xff - Log http hdr xff
- mlav
Category List<String>Exceptions - Mlav category exception
- name String
- Name
- redirects List<String>
- Redirect
- safe
Search BooleanEnforcement - Safe search enforcement
- snippet String
- The snippet in which the resource is defined
- alerts string[]
- Alert
- allows string[]
- Allow
- blocks string[]
- Block
- cloud
Inline booleanCat - Cloud inline cat
- continues string[]
- Continue
- credential
Enforcement UrlAccess Profile Credential Enforcement - Credential enforcement
- description string
- Description
- device string
- The device in which the resource is defined
- folder string
- The folder in which the resource is defined
- local
Inline booleanCat - Local inline cat
- log
Container booleanPage Only - Log container page only
- log
Http booleanHdr Referer - Log http hdr referer
- log
Http booleanHdr User Agent - Log http hdr user agent
- log
Http booleanHdr Xff - Log http hdr xff
- mlav
Category string[]Exceptions - Mlav category exception
- name string
- Name
- redirects string[]
- Redirect
- safe
Search booleanEnforcement - Safe search enforcement
- snippet string
- The snippet in which the resource is defined
- alerts Sequence[str]
- Alert
- allows Sequence[str]
- Allow
- blocks Sequence[str]
- Block
- cloud_
inline_ boolcat - Cloud inline cat
- continues Sequence[str]
- Continue
- credential_
enforcement UrlAccess Profile Credential Enforcement Args - Credential enforcement
- description str
- Description
- device str
- The device in which the resource is defined
- folder str
- The folder in which the resource is defined
- local_
inline_ boolcat - Local inline cat
- log_
container_ boolpage_ only - Log container page only
- log_
http_ boolhdr_ referer - Log http hdr referer
- log_
http_ boolhdr_ user_ agent - Log http hdr user agent
- log_
http_ boolhdr_ xff - Log http hdr xff
- mlav_
category_ Sequence[str]exceptions - Mlav category exception
- name str
- Name
- redirects Sequence[str]
- Redirect
- safe_
search_ boolenforcement - Safe search enforcement
- snippet str
- The snippet in which the resource is defined
- alerts List<String>
- Alert
- allows List<String>
- Allow
- blocks List<String>
- Block
- cloud
Inline BooleanCat - Cloud inline cat
- continues List<String>
- Continue
- credential
Enforcement Property Map - Credential enforcement
- description String
- Description
- device String
- The device in which the resource is defined
- folder String
- The folder in which the resource is defined
- local
Inline BooleanCat - Local inline cat
- log
Container BooleanPage Only - Log container page only
- log
Http BooleanHdr Referer - Log http hdr referer
- log
Http BooleanHdr User Agent - Log http hdr user agent
- log
Http BooleanHdr Xff - Log http hdr xff
- mlav
Category List<String>Exceptions - Mlav category exception
- name String
- Name
- redirects List<String>
- Redirect
- safe
Search BooleanEnforcement - Safe search enforcement
- snippet String
- The snippet in which the resource is defined
Outputs
All input properties are implicitly available as output properties. Additionally, the UrlAccessProfile resource produces the following output properties:
Look up Existing UrlAccessProfile Resource
Get an existing UrlAccessProfile 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?: UrlAccessProfileState, opts?: CustomResourceOptions): UrlAccessProfile@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
alerts: Optional[Sequence[str]] = None,
allows: Optional[Sequence[str]] = None,
blocks: Optional[Sequence[str]] = None,
cloud_inline_cat: Optional[bool] = None,
continues: Optional[Sequence[str]] = None,
credential_enforcement: Optional[UrlAccessProfileCredentialEnforcementArgs] = None,
description: Optional[str] = None,
device: Optional[str] = None,
folder: Optional[str] = None,
local_inline_cat: Optional[bool] = None,
log_container_page_only: Optional[bool] = None,
log_http_hdr_referer: Optional[bool] = None,
log_http_hdr_user_agent: Optional[bool] = None,
log_http_hdr_xff: Optional[bool] = None,
mlav_category_exceptions: Optional[Sequence[str]] = None,
name: Optional[str] = None,
redirects: Optional[Sequence[str]] = None,
safe_search_enforcement: Optional[bool] = None,
snippet: Optional[str] = None,
tfid: Optional[str] = None) -> UrlAccessProfilefunc GetUrlAccessProfile(ctx *Context, name string, id IDInput, state *UrlAccessProfileState, opts ...ResourceOption) (*UrlAccessProfile, error)public static UrlAccessProfile Get(string name, Input<string> id, UrlAccessProfileState? state, CustomResourceOptions? opts = null)public static UrlAccessProfile get(String name, Output<String> id, UrlAccessProfileState state, CustomResourceOptions options)resources: _: type: scm:UrlAccessProfile 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.
- Alerts List<string>
- Alert
- Allows List<string>
- Allow
- Blocks List<string>
- Block
- Cloud
Inline boolCat - Cloud inline cat
- Continues List<string>
- Continue
- Credential
Enforcement UrlAccess Profile Credential Enforcement - Credential enforcement
- Description string
- Description
- Device string
- The device in which the resource is defined
- Folder string
- The folder in which the resource is defined
- Local
Inline boolCat - Local inline cat
- Log
Container boolPage Only - Log container page only
- Log
Http boolHdr Referer - Log http hdr referer
- Log
Http boolHdr User Agent - Log http hdr user agent
- Log
Http boolHdr Xff - Log http hdr xff
- Mlav
Category List<string>Exceptions - Mlav category exception
- Name string
- Name
- Redirects List<string>
- Redirect
- Safe
Search boolEnforcement - Safe search enforcement
- Snippet string
- The snippet in which the resource is defined
- Tfid string
- Alerts []string
- Alert
- Allows []string
- Allow
- Blocks []string
- Block
- Cloud
Inline boolCat - Cloud inline cat
- Continues []string
- Continue
- Credential
Enforcement UrlAccess Profile Credential Enforcement Args - Credential enforcement
- Description string
- Description
- Device string
- The device in which the resource is defined
- Folder string
- The folder in which the resource is defined
- Local
Inline boolCat - Local inline cat
- Log
Container boolPage Only - Log container page only
- Log
Http boolHdr Referer - Log http hdr referer
- Log
Http boolHdr User Agent - Log http hdr user agent
- Log
Http boolHdr Xff - Log http hdr xff
- Mlav
Category []stringExceptions - Mlav category exception
- Name string
- Name
- Redirects []string
- Redirect
- Safe
Search boolEnforcement - Safe search enforcement
- Snippet string
- The snippet in which the resource is defined
- Tfid string
- alerts List<String>
- Alert
- allows List<String>
- Allow
- blocks List<String>
- Block
- cloud
Inline BooleanCat - Cloud inline cat
- continues List<String>
- Continue
- credential
Enforcement UrlAccess Profile Credential Enforcement - Credential enforcement
- description String
- Description
- device String
- The device in which the resource is defined
- folder String
- The folder in which the resource is defined
- local
Inline BooleanCat - Local inline cat
- log
Container BooleanPage Only - Log container page only
- log
Http BooleanHdr Referer - Log http hdr referer
- log
Http BooleanHdr User Agent - Log http hdr user agent
- log
Http BooleanHdr Xff - Log http hdr xff
- mlav
Category List<String>Exceptions - Mlav category exception
- name String
- Name
- redirects List<String>
- Redirect
- safe
Search BooleanEnforcement - Safe search enforcement
- snippet String
- The snippet in which the resource is defined
- tfid String
- alerts string[]
- Alert
- allows string[]
- Allow
- blocks string[]
- Block
- cloud
Inline booleanCat - Cloud inline cat
- continues string[]
- Continue
- credential
Enforcement UrlAccess Profile Credential Enforcement - Credential enforcement
- description string
- Description
- device string
- The device in which the resource is defined
- folder string
- The folder in which the resource is defined
- local
Inline booleanCat - Local inline cat
- log
Container booleanPage Only - Log container page only
- log
Http booleanHdr Referer - Log http hdr referer
- log
Http booleanHdr User Agent - Log http hdr user agent
- log
Http booleanHdr Xff - Log http hdr xff
- mlav
Category string[]Exceptions - Mlav category exception
- name string
- Name
- redirects string[]
- Redirect
- safe
Search booleanEnforcement - Safe search enforcement
- snippet string
- The snippet in which the resource is defined
- tfid string
- alerts Sequence[str]
- Alert
- allows Sequence[str]
- Allow
- blocks Sequence[str]
- Block
- cloud_
inline_ boolcat - Cloud inline cat
- continues Sequence[str]
- Continue
- credential_
enforcement UrlAccess Profile Credential Enforcement Args - Credential enforcement
- description str
- Description
- device str
- The device in which the resource is defined
- folder str
- The folder in which the resource is defined
- local_
inline_ boolcat - Local inline cat
- log_
container_ boolpage_ only - Log container page only
- log_
http_ boolhdr_ referer - Log http hdr referer
- log_
http_ boolhdr_ user_ agent - Log http hdr user agent
- log_
http_ boolhdr_ xff - Log http hdr xff
- mlav_
category_ Sequence[str]exceptions - Mlav category exception
- name str
- Name
- redirects Sequence[str]
- Redirect
- safe_
search_ boolenforcement - Safe search enforcement
- snippet str
- The snippet in which the resource is defined
- tfid str
- alerts List<String>
- Alert
- allows List<String>
- Allow
- blocks List<String>
- Block
- cloud
Inline BooleanCat - Cloud inline cat
- continues List<String>
- Continue
- credential
Enforcement Property Map - Credential enforcement
- description String
- Description
- device String
- The device in which the resource is defined
- folder String
- The folder in which the resource is defined
- local
Inline BooleanCat - Local inline cat
- log
Container BooleanPage Only - Log container page only
- log
Http BooleanHdr Referer - Log http hdr referer
- log
Http BooleanHdr User Agent - Log http hdr user agent
- log
Http BooleanHdr Xff - Log http hdr xff
- mlav
Category List<String>Exceptions - Mlav category exception
- name String
- Name
- redirects List<String>
- Redirect
- safe
Search BooleanEnforcement - Safe search enforcement
- snippet String
- The snippet in which the resource is defined
- tfid String
Supporting Types
UrlAccessProfileCredentialEnforcement, UrlAccessProfileCredentialEnforcementArgs
- Alerts List<string>
- Alert
- Allows List<string>
- Allow
- Blocks List<string>
- Block
- Continues List<string>
- Continue
- Log
Severity string - Log severity
- Mode
Url
Access Profile Credential Enforcement Mode - Mode
- Alerts []string
- Alert
- Allows []string
- Allow
- Blocks []string
- Block
- Continues []string
- Continue
- Log
Severity string - Log severity
- Mode
Url
Access Profile Credential Enforcement Mode - Mode
- alerts List<String>
- Alert
- allows List<String>
- Allow
- blocks List<String>
- Block
- continues List<String>
- Continue
- log
Severity String - Log severity
- mode
Url
Access Profile Credential Enforcement Mode - Mode
- alerts string[]
- Alert
- allows string[]
- Allow
- blocks string[]
- Block
- continues string[]
- Continue
- log
Severity string - Log severity
- mode
Url
Access Profile Credential Enforcement Mode - Mode
- alerts Sequence[str]
- Alert
- allows Sequence[str]
- Allow
- blocks Sequence[str]
- Block
- continues Sequence[str]
- Continue
- log_
severity str - Log severity
- mode
Url
Access Profile Credential Enforcement Mode - Mode
- alerts List<String>
- Alert
- allows List<String>
- Allow
- blocks List<String>
- Block
- continues List<String>
- Continue
- log
Severity String - Log severity
- mode Property Map
- Mode
UrlAccessProfileCredentialEnforcementMode, UrlAccessProfileCredentialEnforcementModeArgs
- Disabled
Url
Access Profile Credential Enforcement Mode Disabled - Disabled
- Domain
Credentials UrlAccess Profile Credential Enforcement Mode Domain Credentials - Domain credentials
- Group
Mapping string - Group mapping
- Ip
User UrlAccess Profile Credential Enforcement Mode Ip User - Ip user
- Disabled
Url
Access Profile Credential Enforcement Mode Disabled - Disabled
- Domain
Credentials UrlAccess Profile Credential Enforcement Mode Domain Credentials - Domain credentials
- Group
Mapping string - Group mapping
- Ip
User UrlAccess Profile Credential Enforcement Mode Ip User - Ip user
- disabled
Url
Access Profile Credential Enforcement Mode Disabled - Disabled
- domain
Credentials UrlAccess Profile Credential Enforcement Mode Domain Credentials - Domain credentials
- group
Mapping String - Group mapping
- ip
User UrlAccess Profile Credential Enforcement Mode Ip User - Ip user
- disabled
Url
Access Profile Credential Enforcement Mode Disabled - Disabled
- domain
Credentials UrlAccess Profile Credential Enforcement Mode Domain Credentials - Domain credentials
- group
Mapping string - Group mapping
- ip
User UrlAccess Profile Credential Enforcement Mode Ip User - Ip user
- disabled
Url
Access Profile Credential Enforcement Mode Disabled - Disabled
- domain_
credentials UrlAccess Profile Credential Enforcement Mode Domain Credentials - Domain credentials
- group_
mapping str - Group mapping
- ip_
user UrlAccess Profile Credential Enforcement Mode Ip User - Ip user
- disabled Property Map
- Disabled
- domain
Credentials Property Map - Domain credentials
- group
Mapping String - Group mapping
- ip
User Property Map - Ip user
Package Details
- Repository
- scm pulumi/pulumi-scm
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
scmTerraform Provider.
