1. Packages
  2. Strata Cloud Manager Provider
  3. API Docs
  4. UrlAccessProfile
Strata Cloud Manager v0.4.3 published on Saturday, Nov 8, 2025 by Pulumi
scm logo
Strata Cloud Manager v0.4.3 published on Saturday, Nov 8, 2025 by Pulumi

    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
    CloudInlineCat bool
    Cloud inline cat
    Continues List<string>
    Continue
    CredentialEnforcement UrlAccessProfileCredentialEnforcement
    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
    LocalInlineCat bool
    Local inline cat
    LogContainerPageOnly bool
    Log container page only
    LogHttpHdrReferer bool
    Log http hdr referer
    LogHttpHdrUserAgent bool
    Log http hdr user agent
    LogHttpHdrXff bool
    Log http hdr xff
    MlavCategoryExceptions List<string>
    Mlav category exception
    Name string
    Name
    Redirects List<string>
    Redirect
    SafeSearchEnforcement bool
    Safe search enforcement
    Snippet string
    The snippet in which the resource is defined
    Alerts []string
    Alert
    Allows []string
    Allow
    Blocks []string
    Block
    CloudInlineCat bool
    Cloud inline cat
    Continues []string
    Continue
    CredentialEnforcement UrlAccessProfileCredentialEnforcementArgs
    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
    LocalInlineCat bool
    Local inline cat
    LogContainerPageOnly bool
    Log container page only
    LogHttpHdrReferer bool
    Log http hdr referer
    LogHttpHdrUserAgent bool
    Log http hdr user agent
    LogHttpHdrXff bool
    Log http hdr xff
    MlavCategoryExceptions []string
    Mlav category exception
    Name string
    Name
    Redirects []string
    Redirect
    SafeSearchEnforcement bool
    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
    cloudInlineCat Boolean
    Cloud inline cat
    continues List<String>
    Continue
    credentialEnforcement UrlAccessProfileCredentialEnforcement
    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
    localInlineCat Boolean
    Local inline cat
    logContainerPageOnly Boolean
    Log container page only
    logHttpHdrReferer Boolean
    Log http hdr referer
    logHttpHdrUserAgent Boolean
    Log http hdr user agent
    logHttpHdrXff Boolean
    Log http hdr xff
    mlavCategoryExceptions List<String>
    Mlav category exception
    name String
    Name
    redirects List<String>
    Redirect
    safeSearchEnforcement Boolean
    Safe search enforcement
    snippet String
    The snippet in which the resource is defined
    alerts string[]
    Alert
    allows string[]
    Allow
    blocks string[]
    Block
    cloudInlineCat boolean
    Cloud inline cat
    continues string[]
    Continue
    credentialEnforcement UrlAccessProfileCredentialEnforcement
    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
    localInlineCat boolean
    Local inline cat
    logContainerPageOnly boolean
    Log container page only
    logHttpHdrReferer boolean
    Log http hdr referer
    logHttpHdrUserAgent boolean
    Log http hdr user agent
    logHttpHdrXff boolean
    Log http hdr xff
    mlavCategoryExceptions string[]
    Mlav category exception
    name string
    Name
    redirects string[]
    Redirect
    safeSearchEnforcement boolean
    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_cat bool
    Cloud inline cat
    continues Sequence[str]
    Continue
    credential_enforcement UrlAccessProfileCredentialEnforcementArgs
    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_cat bool
    Local inline cat
    log_container_page_only bool
    Log container page only
    log_http_hdr_referer bool
    Log http hdr referer
    log_http_hdr_user_agent bool
    Log http hdr user agent
    log_http_hdr_xff bool
    Log http hdr xff
    mlav_category_exceptions Sequence[str]
    Mlav category exception
    name str
    Name
    redirects Sequence[str]
    Redirect
    safe_search_enforcement bool
    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
    cloudInlineCat Boolean
    Cloud inline cat
    continues List<String>
    Continue
    credentialEnforcement 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
    localInlineCat Boolean
    Local inline cat
    logContainerPageOnly Boolean
    Log container page only
    logHttpHdrReferer Boolean
    Log http hdr referer
    logHttpHdrUserAgent Boolean
    Log http hdr user agent
    logHttpHdrXff Boolean
    Log http hdr xff
    mlavCategoryExceptions List<String>
    Mlav category exception
    name String
    Name
    redirects List<String>
    Redirect
    safeSearchEnforcement Boolean
    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:

    Id string
    The provider-assigned unique ID for this managed resource.
    Tfid string
    Id string
    The provider-assigned unique ID for this managed resource.
    Tfid string
    id String
    The provider-assigned unique ID for this managed resource.
    tfid String
    id string
    The provider-assigned unique ID for this managed resource.
    tfid string
    id str
    The provider-assigned unique ID for this managed resource.
    tfid str
    id String
    The provider-assigned unique ID for this managed resource.
    tfid String

    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) -> UrlAccessProfile
    func 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.
    The following state arguments are supported:
    Alerts List<string>
    Alert
    Allows List<string>
    Allow
    Blocks List<string>
    Block
    CloudInlineCat bool
    Cloud inline cat
    Continues List<string>
    Continue
    CredentialEnforcement UrlAccessProfileCredentialEnforcement
    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
    LocalInlineCat bool
    Local inline cat
    LogContainerPageOnly bool
    Log container page only
    LogHttpHdrReferer bool
    Log http hdr referer
    LogHttpHdrUserAgent bool
    Log http hdr user agent
    LogHttpHdrXff bool
    Log http hdr xff
    MlavCategoryExceptions List<string>
    Mlav category exception
    Name string
    Name
    Redirects List<string>
    Redirect
    SafeSearchEnforcement bool
    Safe search enforcement
    Snippet string
    The snippet in which the resource is defined
    Tfid string
    Alerts []string
    Alert
    Allows []string
    Allow
    Blocks []string
    Block
    CloudInlineCat bool
    Cloud inline cat
    Continues []string
    Continue
    CredentialEnforcement UrlAccessProfileCredentialEnforcementArgs
    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
    LocalInlineCat bool
    Local inline cat
    LogContainerPageOnly bool
    Log container page only
    LogHttpHdrReferer bool
    Log http hdr referer
    LogHttpHdrUserAgent bool
    Log http hdr user agent
    LogHttpHdrXff bool
    Log http hdr xff
    MlavCategoryExceptions []string
    Mlav category exception
    Name string
    Name
    Redirects []string
    Redirect
    SafeSearchEnforcement bool
    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
    cloudInlineCat Boolean
    Cloud inline cat
    continues List<String>
    Continue
    credentialEnforcement UrlAccessProfileCredentialEnforcement
    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
    localInlineCat Boolean
    Local inline cat
    logContainerPageOnly Boolean
    Log container page only
    logHttpHdrReferer Boolean
    Log http hdr referer
    logHttpHdrUserAgent Boolean
    Log http hdr user agent
    logHttpHdrXff Boolean
    Log http hdr xff
    mlavCategoryExceptions List<String>
    Mlav category exception
    name String
    Name
    redirects List<String>
    Redirect
    safeSearchEnforcement Boolean
    Safe search enforcement
    snippet String
    The snippet in which the resource is defined
    tfid String
    alerts string[]
    Alert
    allows string[]
    Allow
    blocks string[]
    Block
    cloudInlineCat boolean
    Cloud inline cat
    continues string[]
    Continue
    credentialEnforcement UrlAccessProfileCredentialEnforcement
    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
    localInlineCat boolean
    Local inline cat
    logContainerPageOnly boolean
    Log container page only
    logHttpHdrReferer boolean
    Log http hdr referer
    logHttpHdrUserAgent boolean
    Log http hdr user agent
    logHttpHdrXff boolean
    Log http hdr xff
    mlavCategoryExceptions string[]
    Mlav category exception
    name string
    Name
    redirects string[]
    Redirect
    safeSearchEnforcement boolean
    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_cat bool
    Cloud inline cat
    continues Sequence[str]
    Continue
    credential_enforcement UrlAccessProfileCredentialEnforcementArgs
    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_cat bool
    Local inline cat
    log_container_page_only bool
    Log container page only
    log_http_hdr_referer bool
    Log http hdr referer
    log_http_hdr_user_agent bool
    Log http hdr user agent
    log_http_hdr_xff bool
    Log http hdr xff
    mlav_category_exceptions Sequence[str]
    Mlav category exception
    name str
    Name
    redirects Sequence[str]
    Redirect
    safe_search_enforcement bool
    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
    cloudInlineCat Boolean
    Cloud inline cat
    continues List<String>
    Continue
    credentialEnforcement 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
    localInlineCat Boolean
    Local inline cat
    logContainerPageOnly Boolean
    Log container page only
    logHttpHdrReferer Boolean
    Log http hdr referer
    logHttpHdrUserAgent Boolean
    Log http hdr user agent
    logHttpHdrXff Boolean
    Log http hdr xff
    mlavCategoryExceptions List<String>
    Mlav category exception
    name String
    Name
    redirects List<String>
    Redirect
    safeSearchEnforcement Boolean
    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
    LogSeverity string
    Log severity
    Mode UrlAccessProfileCredentialEnforcementMode
    Mode
    Alerts []string
    Alert
    Allows []string
    Allow
    Blocks []string
    Block
    Continues []string
    Continue
    LogSeverity string
    Log severity
    Mode UrlAccessProfileCredentialEnforcementMode
    Mode
    alerts List<String>
    Alert
    allows List<String>
    Allow
    blocks List<String>
    Block
    continues List<String>
    Continue
    logSeverity String
    Log severity
    mode UrlAccessProfileCredentialEnforcementMode
    Mode
    alerts string[]
    Alert
    allows string[]
    Allow
    blocks string[]
    Block
    continues string[]
    Continue
    logSeverity string
    Log severity
    mode UrlAccessProfileCredentialEnforcementMode
    Mode
    alerts Sequence[str]
    Alert
    allows Sequence[str]
    Allow
    blocks Sequence[str]
    Block
    continues Sequence[str]
    Continue
    log_severity str
    Log severity
    mode UrlAccessProfileCredentialEnforcementMode
    Mode
    alerts List<String>
    Alert
    allows List<String>
    Allow
    blocks List<String>
    Block
    continues List<String>
    Continue
    logSeverity String
    Log severity
    mode Property Map
    Mode

    UrlAccessProfileCredentialEnforcementMode, UrlAccessProfileCredentialEnforcementModeArgs

    disabled Property Map
    Disabled
    domainCredentials Property Map
    Domain credentials
    groupMapping String
    Group mapping
    ipUser Property Map
    Ip user

    Package Details

    Repository
    scm pulumi/pulumi-scm
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the scm Terraform Provider.
    scm logo
    Strata Cloud Manager v0.4.3 published on Saturday, Nov 8, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate