1. Packages
  2. Strata Cloud Manager Provider
  3. API Docs
  4. getUrlAccessProfile
Strata Cloud Manager v1.0.4 published on Saturday, Feb 14, 2026 by Pulumi
scm logo
Strata Cloud Manager v1.0.4 published on Saturday, Feb 14, 2026 by Pulumi

    UrlAccessProfile data source

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as scm from "@pulumi/scm";
    
    //
    // Data source to retrieve a single URL Access Profile object by its ID.
    //
    // Replace the ID with the UUID of the URL Access Profile you want to find.
    const example = scm.getUrlAccessProfile({
        id: "e97c7e7e-9906-42d6-90a8-606ed5527125",
    });
    export const urlAccessProfileDetails = example;
    
    import pulumi
    import pulumi_scm as scm
    
    #
    # Data source to retrieve a single URL Access Profile object by its ID.
    #
    # Replace the ID with the UUID of the URL Access Profile you want to find.
    example = scm.get_url_access_profile(id="e97c7e7e-9906-42d6-90a8-606ed5527125")
    pulumi.export("urlAccessProfileDetails", example)
    
    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 {
    		// Data source to retrieve a single URL Access Profile object by its ID.
    		//
    		// Replace the ID with the UUID of the URL Access Profile you want to find.
    		example, err := scm.LookupUrlAccessProfile(ctx, &scm.LookupUrlAccessProfileArgs{
    			Id: "e97c7e7e-9906-42d6-90a8-606ed5527125",
    		}, nil)
    		if err != nil {
    			return err
    		}
    		ctx.Export("urlAccessProfileDetails", example)
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Scm = Pulumi.Scm;
    
    return await Deployment.RunAsync(() => 
    {
        //
        // Data source to retrieve a single URL Access Profile object by its ID.
        //
        // Replace the ID with the UUID of the URL Access Profile you want to find.
        var example = Scm.GetUrlAccessProfile.Invoke(new()
        {
            Id = "e97c7e7e-9906-42d6-90a8-606ed5527125",
        });
    
        return new Dictionary<string, object?>
        {
            ["urlAccessProfileDetails"] = example,
        };
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.scm.ScmFunctions;
    import com.pulumi.scm.inputs.GetUrlAccessProfileArgs;
    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) {
            //
            // Data source to retrieve a single URL Access Profile object by its ID.
            //
            // Replace the ID with the UUID of the URL Access Profile you want to find.
            final var example = ScmFunctions.getUrlAccessProfile(GetUrlAccessProfileArgs.builder()
                .id("e97c7e7e-9906-42d6-90a8-606ed5527125")
                .build());
    
            ctx.export("urlAccessProfileDetails", example);
        }
    }
    
    variables:
      #
      # Data source to retrieve a single URL Access Profile object by its ID.
      #
    
      # Replace the ID with the UUID of the URL Access Profile you want to find.
      example:
        fn::invoke:
          function: scm:getUrlAccessProfile
          arguments:
            id: e97c7e7e-9906-42d6-90a8-606ed5527125
    outputs:
      # Output the details of the single URL Access Profile object found.
      urlAccessProfileDetails: ${example}
    

    Using getUrlAccessProfile

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getUrlAccessProfile(args: GetUrlAccessProfileArgs, opts?: InvokeOptions): Promise<GetUrlAccessProfileResult>
    function getUrlAccessProfileOutput(args: GetUrlAccessProfileOutputArgs, opts?: InvokeOptions): Output<GetUrlAccessProfileResult>
    def get_url_access_profile(device: Optional[str] = None,
                               folder: Optional[str] = None,
                               id: Optional[str] = None,
                               name: Optional[str] = None,
                               snippet: Optional[str] = None,
                               opts: Optional[InvokeOptions] = None) -> GetUrlAccessProfileResult
    def get_url_access_profile_output(device: Optional[pulumi.Input[str]] = None,
                               folder: Optional[pulumi.Input[str]] = None,
                               id: Optional[pulumi.Input[str]] = None,
                               name: Optional[pulumi.Input[str]] = None,
                               snippet: Optional[pulumi.Input[str]] = None,
                               opts: Optional[InvokeOptions] = None) -> Output[GetUrlAccessProfileResult]
    func LookupUrlAccessProfile(ctx *Context, args *LookupUrlAccessProfileArgs, opts ...InvokeOption) (*LookupUrlAccessProfileResult, error)
    func LookupUrlAccessProfileOutput(ctx *Context, args *LookupUrlAccessProfileOutputArgs, opts ...InvokeOption) LookupUrlAccessProfileResultOutput

    > Note: This function is named LookupUrlAccessProfile in the Go SDK.

    public static class GetUrlAccessProfile 
    {
        public static Task<GetUrlAccessProfileResult> InvokeAsync(GetUrlAccessProfileArgs args, InvokeOptions? opts = null)
        public static Output<GetUrlAccessProfileResult> Invoke(GetUrlAccessProfileInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetUrlAccessProfileResult> getUrlAccessProfile(GetUrlAccessProfileArgs args, InvokeOptions options)
    public static Output<GetUrlAccessProfileResult> getUrlAccessProfile(GetUrlAccessProfileArgs args, InvokeOptions options)
    
    fn::invoke:
      function: scm:index/getUrlAccessProfile:getUrlAccessProfile
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Id string
    UUID of the resource
    Device string
    The device in which the resource is defined
    Folder string
    Name string
    Snippet string
    Id string
    UUID of the resource
    Device string
    The device in which the resource is defined
    Folder string
    Name string
    Snippet string
    id String
    UUID of the resource
    device String
    The device in which the resource is defined
    folder String
    name String
    snippet String
    id string
    UUID of the resource
    device string
    The device in which the resource is defined
    folder string
    name string
    snippet string
    id str
    UUID of the resource
    device str
    The device in which the resource is defined
    folder str
    name str
    snippet str
    id String
    UUID of the resource
    device String
    The device in which the resource is defined
    folder String
    name String
    snippet String

    getUrlAccessProfile Result

    The following output properties are available:

    Alerts List<string>
    Allows List<string>
    Blocks List<string>
    CloudInlineCat bool
    Continues List<string>
    CredentialEnforcement GetUrlAccessProfileCredentialEnforcement
    Description string
    Device string
    The device in which the resource is defined
    Folder string
    Id string
    UUID of the resource
    LocalInlineCat bool
    LogContainerPageOnly bool
    LogHttpHdrReferer bool
    LogHttpHdrUserAgent bool
    LogHttpHdrXff bool
    MlavCategoryExceptions List<string>
    Name string
    Redirects List<string>
    SafeSearchEnforcement bool
    Snippet string
    Tfid string
    Alerts []string
    Allows []string
    Blocks []string
    CloudInlineCat bool
    Continues []string
    CredentialEnforcement GetUrlAccessProfileCredentialEnforcement
    Description string
    Device string
    The device in which the resource is defined
    Folder string
    Id string
    UUID of the resource
    LocalInlineCat bool
    LogContainerPageOnly bool
    LogHttpHdrReferer bool
    LogHttpHdrUserAgent bool
    LogHttpHdrXff bool
    MlavCategoryExceptions []string
    Name string
    Redirects []string
    SafeSearchEnforcement bool
    Snippet string
    Tfid string
    alerts List<String>
    allows List<String>
    blocks List<String>
    cloudInlineCat Boolean
    continues List<String>
    credentialEnforcement GetUrlAccessProfileCredentialEnforcement
    description String
    device String
    The device in which the resource is defined
    folder String
    id String
    UUID of the resource
    localInlineCat Boolean
    logContainerPageOnly Boolean
    logHttpHdrReferer Boolean
    logHttpHdrUserAgent Boolean
    logHttpHdrXff Boolean
    mlavCategoryExceptions List<String>
    name String
    redirects List<String>
    safeSearchEnforcement Boolean
    snippet String
    tfid String
    alerts string[]
    allows string[]
    blocks string[]
    cloudInlineCat boolean
    continues string[]
    credentialEnforcement GetUrlAccessProfileCredentialEnforcement
    description string
    device string
    The device in which the resource is defined
    folder string
    id string
    UUID of the resource
    localInlineCat boolean
    logContainerPageOnly boolean
    logHttpHdrReferer boolean
    logHttpHdrUserAgent boolean
    logHttpHdrXff boolean
    mlavCategoryExceptions string[]
    name string
    redirects string[]
    safeSearchEnforcement boolean
    snippet string
    tfid string
    alerts Sequence[str]
    allows Sequence[str]
    blocks Sequence[str]
    cloud_inline_cat bool
    continues Sequence[str]
    credential_enforcement GetUrlAccessProfileCredentialEnforcement
    description str
    device str
    The device in which the resource is defined
    folder str
    id str
    UUID of the resource
    local_inline_cat bool
    log_container_page_only bool
    log_http_hdr_referer bool
    log_http_hdr_user_agent bool
    log_http_hdr_xff bool
    mlav_category_exceptions Sequence[str]
    name str
    redirects Sequence[str]
    safe_search_enforcement bool
    snippet str
    tfid str
    alerts List<String>
    allows List<String>
    blocks List<String>
    cloudInlineCat Boolean
    continues List<String>
    credentialEnforcement Property Map
    description String
    device String
    The device in which the resource is defined
    folder String
    id String
    UUID of the resource
    localInlineCat Boolean
    logContainerPageOnly Boolean
    logHttpHdrReferer Boolean
    logHttpHdrUserAgent Boolean
    logHttpHdrXff Boolean
    mlavCategoryExceptions List<String>
    name String
    redirects List<String>
    safeSearchEnforcement Boolean
    snippet String
    tfid String

    Supporting Types

    GetUrlAccessProfileCredentialEnforcement

    Alerts List<string>
    Alert
    Allows List<string>
    Allow
    Blocks List<string>
    Block
    Continues List<string>
    Continue
    LogSeverity string
    Log severity
    Mode GetUrlAccessProfileCredentialEnforcementMode
    Mode
    Alerts []string
    Alert
    Allows []string
    Allow
    Blocks []string
    Block
    Continues []string
    Continue
    LogSeverity string
    Log severity
    Mode GetUrlAccessProfileCredentialEnforcementMode
    Mode
    alerts List<String>
    Alert
    allows List<String>
    Allow
    blocks List<String>
    Block
    continues List<String>
    Continue
    logSeverity String
    Log severity
    mode GetUrlAccessProfileCredentialEnforcementMode
    Mode
    alerts string[]
    Alert
    allows string[]
    Allow
    blocks string[]
    Block
    continues string[]
    Continue
    logSeverity string
    Log severity
    mode GetUrlAccessProfileCredentialEnforcementMode
    Mode
    alerts Sequence[str]
    Alert
    allows Sequence[str]
    Allow
    blocks Sequence[str]
    Block
    continues Sequence[str]
    Continue
    log_severity str
    Log severity
    mode GetUrlAccessProfileCredentialEnforcementMode
    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

    GetUrlAccessProfileCredentialEnforcementMode

    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 v1.0.4 published on Saturday, Feb 14, 2026 by Pulumi
      Meet Neo: Your AI Platform Teammate