1. Packages
  2. Strata Cloud Manager Provider
  3. API Docs
  4. getUrlAccessProfileList
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

    Retrieves a listing of config items.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as scm from "@pulumi/scm";
    
    //
    // Data source to retrieve a list of URL Access Profile objects.
    //
    // Example 1: Fetch a list of all URL Access Profiles in the "Shared" folder.
    const allShared = scm.getUrlAccessProfileList({
        folder: "All",
    });
    export const urlAccessProfilesListAllShared = allShared.then(allShared => allShared.datas);
    
    import pulumi
    import pulumi_scm as scm
    
    #
    # Data source to retrieve a list of URL Access Profile objects.
    #
    # Example 1: Fetch a list of all URL Access Profiles in the "Shared" folder.
    all_shared = scm.get_url_access_profile_list(folder="All")
    pulumi.export("urlAccessProfilesListAllShared", all_shared.datas)
    
    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 list of URL Access Profile objects.
    		//
    		// Example 1: Fetch a list of all URL Access Profiles in the "Shared" folder.
    		allShared, err := scm.GetUrlAccessProfileList(ctx, &scm.GetUrlAccessProfileListArgs{
    			Folder: pulumi.StringRef("All"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		ctx.Export("urlAccessProfilesListAllShared", allShared.Datas)
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Scm = Pulumi.Scm;
    
    return await Deployment.RunAsync(() => 
    {
        //
        // Data source to retrieve a list of URL Access Profile objects.
        //
        // Example 1: Fetch a list of all URL Access Profiles in the "Shared" folder.
        var allShared = Scm.GetUrlAccessProfileList.Invoke(new()
        {
            Folder = "All",
        });
    
        return new Dictionary<string, object?>
        {
            ["urlAccessProfilesListAllShared"] = allShared.Apply(getUrlAccessProfileListResult => getUrlAccessProfileListResult.Datas),
        };
    });
    
    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.GetUrlAccessProfileListArgs;
    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 list of URL Access Profile objects.
            //
            // Example 1: Fetch a list of all URL Access Profiles in the "Shared" folder.
            final var allShared = ScmFunctions.getUrlAccessProfileList(GetUrlAccessProfileListArgs.builder()
                .folder("All")
                .build());
    
            ctx.export("urlAccessProfilesListAllShared", allShared.datas());
        }
    }
    
    variables:
      #
      # Data source to retrieve a list of URL Access Profile objects.
      #
    
      # Example 1: Fetch a list of all URL Access Profiles in the "Shared" folder.
      allShared:
        fn::invoke:
          function: scm:getUrlAccessProfileList
          arguments:
            folder: All
    outputs:
      # Output the list of all URL Access Profile objects from the "Shared" folder.
      urlAccessProfilesListAllShared: ${allShared.datas}
    

    Using getUrlAccessProfileList

    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 getUrlAccessProfileList(args: GetUrlAccessProfileListArgs, opts?: InvokeOptions): Promise<GetUrlAccessProfileListResult>
    function getUrlAccessProfileListOutput(args: GetUrlAccessProfileListOutputArgs, opts?: InvokeOptions): Output<GetUrlAccessProfileListResult>
    def get_url_access_profile_list(device: Optional[str] = None,
                                    folder: Optional[str] = None,
                                    limit: Optional[int] = None,
                                    name: Optional[str] = None,
                                    offset: Optional[int] = None,
                                    snippet: Optional[str] = None,
                                    opts: Optional[InvokeOptions] = None) -> GetUrlAccessProfileListResult
    def get_url_access_profile_list_output(device: Optional[pulumi.Input[str]] = None,
                                    folder: Optional[pulumi.Input[str]] = None,
                                    limit: Optional[pulumi.Input[int]] = None,
                                    name: Optional[pulumi.Input[str]] = None,
                                    offset: Optional[pulumi.Input[int]] = None,
                                    snippet: Optional[pulumi.Input[str]] = None,
                                    opts: Optional[InvokeOptions] = None) -> Output[GetUrlAccessProfileListResult]
    func GetUrlAccessProfileList(ctx *Context, args *GetUrlAccessProfileListArgs, opts ...InvokeOption) (*GetUrlAccessProfileListResult, error)
    func GetUrlAccessProfileListOutput(ctx *Context, args *GetUrlAccessProfileListOutputArgs, opts ...InvokeOption) GetUrlAccessProfileListResultOutput

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

    public static class GetUrlAccessProfileList 
    {
        public static Task<GetUrlAccessProfileListResult> InvokeAsync(GetUrlAccessProfileListArgs args, InvokeOptions? opts = null)
        public static Output<GetUrlAccessProfileListResult> Invoke(GetUrlAccessProfileListInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetUrlAccessProfileListResult> getUrlAccessProfileList(GetUrlAccessProfileListArgs args, InvokeOptions options)
    public static Output<GetUrlAccessProfileListResult> getUrlAccessProfileList(GetUrlAccessProfileListArgs args, InvokeOptions options)
    
    fn::invoke:
      function: scm:index/getUrlAccessProfileList:getUrlAccessProfileList
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Device string
    The device of the item.
    Folder string
    The folder of the item. Default: Shared.
    Limit int
    The max number of items to return. Default: 200.
    Name string
    The name of the item.
    Offset int
    The offset of the first item to return.
    Snippet string
    The snippet of the item.
    Device string
    The device of the item.
    Folder string
    The folder of the item. Default: Shared.
    Limit int
    The max number of items to return. Default: 200.
    Name string
    The name of the item.
    Offset int
    The offset of the first item to return.
    Snippet string
    The snippet of the item.
    device String
    The device of the item.
    folder String
    The folder of the item. Default: Shared.
    limit Integer
    The max number of items to return. Default: 200.
    name String
    The name of the item.
    offset Integer
    The offset of the first item to return.
    snippet String
    The snippet of the item.
    device string
    The device of the item.
    folder string
    The folder of the item. Default: Shared.
    limit number
    The max number of items to return. Default: 200.
    name string
    The name of the item.
    offset number
    The offset of the first item to return.
    snippet string
    The snippet of the item.
    device str
    The device of the item.
    folder str
    The folder of the item. Default: Shared.
    limit int
    The max number of items to return. Default: 200.
    name str
    The name of the item.
    offset int
    The offset of the first item to return.
    snippet str
    The snippet of the item.
    device String
    The device of the item.
    folder String
    The folder of the item. Default: Shared.
    limit Number
    The max number of items to return. Default: 200.
    name String
    The name of the item.
    offset Number
    The offset of the first item to return.
    snippet String
    The snippet of the item.

    getUrlAccessProfileList Result

    The following output properties are available:

    Datas List<GetUrlAccessProfileListData>
    The data.
    Id string
    The provider-assigned unique ID for this managed resource.
    Tfid string
    Total int
    The total number of items.
    Device string
    The device of the item.
    Folder string
    The folder of the item. Default: Shared.
    Limit int
    The max number of items to return. Default: 200.
    Name string
    The name of the item.
    Offset int
    The offset of the first item to return.
    Snippet string
    The snippet of the item.
    Datas []GetUrlAccessProfileListData
    The data.
    Id string
    The provider-assigned unique ID for this managed resource.
    Tfid string
    Total int
    The total number of items.
    Device string
    The device of the item.
    Folder string
    The folder of the item. Default: Shared.
    Limit int
    The max number of items to return. Default: 200.
    Name string
    The name of the item.
    Offset int
    The offset of the first item to return.
    Snippet string
    The snippet of the item.
    datas List<GetUrlAccessProfileListData>
    The data.
    id String
    The provider-assigned unique ID for this managed resource.
    tfid String
    total Integer
    The total number of items.
    device String
    The device of the item.
    folder String
    The folder of the item. Default: Shared.
    limit Integer
    The max number of items to return. Default: 200.
    name String
    The name of the item.
    offset Integer
    The offset of the first item to return.
    snippet String
    The snippet of the item.
    datas GetUrlAccessProfileListData[]
    The data.
    id string
    The provider-assigned unique ID for this managed resource.
    tfid string
    total number
    The total number of items.
    device string
    The device of the item.
    folder string
    The folder of the item. Default: Shared.
    limit number
    The max number of items to return. Default: 200.
    name string
    The name of the item.
    offset number
    The offset of the first item to return.
    snippet string
    The snippet of the item.
    datas Sequence[GetUrlAccessProfileListData]
    The data.
    id str
    The provider-assigned unique ID for this managed resource.
    tfid str
    total int
    The total number of items.
    device str
    The device of the item.
    folder str
    The folder of the item. Default: Shared.
    limit int
    The max number of items to return. Default: 200.
    name str
    The name of the item.
    offset int
    The offset of the first item to return.
    snippet str
    The snippet of the item.
    datas List<Property Map>
    The data.
    id String
    The provider-assigned unique ID for this managed resource.
    tfid String
    total Number
    The total number of items.
    device String
    The device of the item.
    folder String
    The folder of the item. Default: Shared.
    limit Number
    The max number of items to return. Default: 200.
    name String
    The name of the item.
    offset Number
    The offset of the first item to return.
    snippet String
    The snippet of the item.

    Supporting Types

    GetUrlAccessProfileListData

    Alerts List<string>
    Alert
    Allows List<string>
    Allow
    Blocks List<string>
    Block
    CloudInlineCat bool
    Cloud inline cat
    Continues List<string>
    Continue
    CredentialEnforcement GetUrlAccessProfileListDataCredentialEnforcement
    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
    Id string
    UUID of the resource
    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 GetUrlAccessProfileListDataCredentialEnforcement
    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
    Id string
    UUID of the resource
    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 GetUrlAccessProfileListDataCredentialEnforcement
    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
    id String
    UUID of the resource
    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 GetUrlAccessProfileListDataCredentialEnforcement
    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
    id string
    UUID of the resource
    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 GetUrlAccessProfileListDataCredentialEnforcement
    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
    id str
    UUID of the resource
    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
    id String
    UUID of the resource
    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

    GetUrlAccessProfileListDataCredentialEnforcement

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

    GetUrlAccessProfileListDataCredentialEnforcementMode

    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