1. Packages
  2. Packages
  3. Strata Cloud Manager Provider
  4. API Docs
  5. getForwardingProfileRegionalAndCustomProxyList
Viewing docs for Strata Cloud Manager v1.0.6
published on Saturday, Apr 25, 2026 by Pulumi
scm logo
Viewing docs for Strata Cloud Manager v1.0.6
published on Saturday, Apr 25, 2026 by Pulumi

    Retrieves a listing of config items.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as scm from "@pulumi/scm";
    
    // This data source will call the "ListForwardingProfileRegionalAndCustomProxies" API endpoint
    // and return all forwarding profile regional and custom proxies in the "Mobile Users" folder.
    // 1. Use a single data block to fetch ALL forwarding profile regional and custom proxies in the "Mobile Users" folder.
    const allMobileUsers = scm.getForwardingProfileRegionalAndCustomProxyList({
        folder: "Mobile Users",
    });
    export const forwardingProfileRegionalAndCustomProxyDataSourceResultsFromList = allMobileUsers.then(allMobileUsers => .reduce((__obj, proxy) => ({ ...__obj, [proxy.id]: proxy }), {}));
    const paginatedProxiesExample = scm.getForwardingProfileRegionalAndCustomProxyList({
        folder: "Mobile Users",
        limit: 5,
        offset: 0,
    });
    export const paginatedProxies = paginatedProxiesExample.then(paginatedProxiesExample => .reduce((__obj, proxy) => ({ ...__obj, [proxy.id]: proxy }), {}));
    export const paginationProxiesDetails = {
        totalObjectsInFolder: paginatedProxiesExample.then(paginatedProxiesExample => paginatedProxiesExample.total),
        limitUsed: paginatedProxiesExample.then(paginatedProxiesExample => paginatedProxiesExample.limit),
    };
    
    import pulumi
    import pulumi_scm as scm
    
    # This data source will call the "ListForwardingProfileRegionalAndCustomProxies" API endpoint
    # and return all forwarding profile regional and custom proxies in the "Mobile Users" folder.
    # 1. Use a single data block to fetch ALL forwarding profile regional and custom proxies in the "Mobile Users" folder.
    all_mobile_users = scm.get_forwarding_profile_regional_and_custom_proxy_list(folder="Mobile Users")
    pulumi.export("forwardingProfileRegionalAndCustomProxyDataSourceResultsFromList", {proxy.id: proxy for proxy in all_mobile_users.datas})
    paginated_proxies_example = scm.get_forwarding_profile_regional_and_custom_proxy_list(folder="Mobile Users",
        limit=5,
        offset=0)
    pulumi.export("paginatedProxies", {proxy.id: proxy for proxy in paginated_proxies_example.datas})
    pulumi.export("paginationProxiesDetails", {
        "totalObjectsInFolder": paginated_proxies_example.total,
        "limitUsed": paginated_proxies_example.limit,
    })
    
    Example coming soon!
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Scm = Pulumi.Scm;
    
    return await Deployment.RunAsync(() => 
    {
        // This data source will call the "ListForwardingProfileRegionalAndCustomProxies" API endpoint
        // and return all forwarding profile regional and custom proxies in the "Mobile Users" folder.
        // 1. Use a single data block to fetch ALL forwarding profile regional and custom proxies in the "Mobile Users" folder.
        var allMobileUsers = Scm.Index.GetForwardingProfileRegionalAndCustomProxyList.Invoke(new()
        {
            Folder = "Mobile Users",
        });
    
        var paginatedProxiesExample = Scm.Index.GetForwardingProfileRegionalAndCustomProxyList.Invoke(new()
        {
            Folder = "Mobile Users",
            Limit = 5,
            Offset = 0,
        });
    
        return new Dictionary<string, object?>
        {
            ["forwardingProfileRegionalAndCustomProxyDataSourceResultsFromList"] = ,
            ["paginatedProxies"] = ,
            ["paginationProxiesDetails"] = 
            {
                { "totalObjectsInFolder", paginatedProxiesExample.Apply(getForwardingProfileRegionalAndCustomProxyListResult => getForwardingProfileRegionalAndCustomProxyListResult.Total) },
                { "limitUsed", paginatedProxiesExample.Apply(getForwardingProfileRegionalAndCustomProxyListResult => getForwardingProfileRegionalAndCustomProxyListResult.Limit) },
            },
        };
    });
    
    Example coming soon!
    
    Example coming soon!
    

    Using getForwardingProfileRegionalAndCustomProxyList

    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 getForwardingProfileRegionalAndCustomProxyList(args: GetForwardingProfileRegionalAndCustomProxyListArgs, opts?: InvokeOptions): Promise<GetForwardingProfileRegionalAndCustomProxyListResult>
    function getForwardingProfileRegionalAndCustomProxyListOutput(args: GetForwardingProfileRegionalAndCustomProxyListOutputArgs, opts?: InvokeOptions): Output<GetForwardingProfileRegionalAndCustomProxyListResult>
    def get_forwarding_profile_regional_and_custom_proxy_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) -> GetForwardingProfileRegionalAndCustomProxyListResult
    def get_forwarding_profile_regional_and_custom_proxy_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[GetForwardingProfileRegionalAndCustomProxyListResult]
    func GetForwardingProfileRegionalAndCustomProxyList(ctx *Context, args *GetForwardingProfileRegionalAndCustomProxyListArgs, opts ...InvokeOption) (*GetForwardingProfileRegionalAndCustomProxyListResult, error)
    func GetForwardingProfileRegionalAndCustomProxyListOutput(ctx *Context, args *GetForwardingProfileRegionalAndCustomProxyListOutputArgs, opts ...InvokeOption) GetForwardingProfileRegionalAndCustomProxyListResultOutput

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

    public static class GetForwardingProfileRegionalAndCustomProxyList 
    {
        public static Task<GetForwardingProfileRegionalAndCustomProxyListResult> InvokeAsync(GetForwardingProfileRegionalAndCustomProxyListArgs args, InvokeOptions? opts = null)
        public static Output<GetForwardingProfileRegionalAndCustomProxyListResult> Invoke(GetForwardingProfileRegionalAndCustomProxyListInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetForwardingProfileRegionalAndCustomProxyListResult> getForwardingProfileRegionalAndCustomProxyList(GetForwardingProfileRegionalAndCustomProxyListArgs args, InvokeOptions options)
    public static Output<GetForwardingProfileRegionalAndCustomProxyListResult> getForwardingProfileRegionalAndCustomProxyList(GetForwardingProfileRegionalAndCustomProxyListArgs args, InvokeOptions options)
    
    fn::invoke:
      function: scm:index/getForwardingProfileRegionalAndCustomProxyList:getForwardingProfileRegionalAndCustomProxyList
      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.

    getForwardingProfileRegionalAndCustomProxyList Result

    The following output properties are available:

    Datas List<GetForwardingProfileRegionalAndCustomProxyListData>
    The data.
    Id string
    The provider-assigned unique ID for this managed resource.
    Tfid string
    The Terraform ID.
    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 []GetForwardingProfileRegionalAndCustomProxyListData
    The data.
    Id string
    The provider-assigned unique ID for this managed resource.
    Tfid string
    The Terraform ID.
    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<GetForwardingProfileRegionalAndCustomProxyListData>
    The data.
    id String
    The provider-assigned unique ID for this managed resource.
    tfid String
    The Terraform ID.
    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 GetForwardingProfileRegionalAndCustomProxyListData[]
    The data.
    id string
    The provider-assigned unique ID for this managed resource.
    tfid string
    The Terraform ID.
    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[GetForwardingProfileRegionalAndCustomProxyListData]
    The data.
    id str
    The provider-assigned unique ID for this managed resource.
    tfid str
    The Terraform ID.
    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
    The Terraform ID.
    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

    GetForwardingProfileRegionalAndCustomProxyListData

    ConnectivityPreferences List<GetForwardingProfileRegionalAndCustomProxyListDataConnectivityPreference>
    List of connectivity methods and their enablement status for establishing proxy connections
    Description string
    regional and custom proxy configuration description
    FallbackOption string
    Behavior when proxy connection fails - 'fail-open' allows direct internet access, 'fail-safe' blocks traffic until proxy is restored
    Folder string
    The folder in which the resource is defined
    Id string
    The UUID of the regional and custom proxy
    LocationPreference string
    Strategy for selecting Prisma Access location - 'best-available-pa-location' automatically selects optimal location, 'specific-pa-location' uses predefined locations
    Name string
    alphanumeric string [ 0-9a-zA-Z ._-]
    PrismaAccessLocations List<GetForwardingProfileRegionalAndCustomProxyListDataPrismaAccessLocation>
    Select Prisma Access location Americas, Europe and Asia-Pacific.
    Proxy1 GetForwardingProfileRegionalAndCustomProxyListDataProxy1
    primary regional and custom proxy
    Proxy2 GetForwardingProfileRegionalAndCustomProxyListDataProxy2
    secondary regional and custom proxy
    Tfid string
    The Terraform ID.
    Type string
    Proxy configuration type - 'gp-and-pac' for GlobalProtect and PAC file forwarding, 'ztna-agent' for ZTNA agent forwarding
    ConnectivityPreferences []GetForwardingProfileRegionalAndCustomProxyListDataConnectivityPreference
    List of connectivity methods and their enablement status for establishing proxy connections
    Description string
    regional and custom proxy configuration description
    FallbackOption string
    Behavior when proxy connection fails - 'fail-open' allows direct internet access, 'fail-safe' blocks traffic until proxy is restored
    Folder string
    The folder in which the resource is defined
    Id string
    The UUID of the regional and custom proxy
    LocationPreference string
    Strategy for selecting Prisma Access location - 'best-available-pa-location' automatically selects optimal location, 'specific-pa-location' uses predefined locations
    Name string
    alphanumeric string [ 0-9a-zA-Z ._-]
    PrismaAccessLocations []GetForwardingProfileRegionalAndCustomProxyListDataPrismaAccessLocation
    Select Prisma Access location Americas, Europe and Asia-Pacific.
    Proxy1 GetForwardingProfileRegionalAndCustomProxyListDataProxy1
    primary regional and custom proxy
    Proxy2 GetForwardingProfileRegionalAndCustomProxyListDataProxy2
    secondary regional and custom proxy
    Tfid string
    The Terraform ID.
    Type string
    Proxy configuration type - 'gp-and-pac' for GlobalProtect and PAC file forwarding, 'ztna-agent' for ZTNA agent forwarding
    connectivityPreferences List<GetForwardingProfileRegionalAndCustomProxyListDataConnectivityPreference>
    List of connectivity methods and their enablement status for establishing proxy connections
    description String
    regional and custom proxy configuration description
    fallbackOption String
    Behavior when proxy connection fails - 'fail-open' allows direct internet access, 'fail-safe' blocks traffic until proxy is restored
    folder String
    The folder in which the resource is defined
    id String
    The UUID of the regional and custom proxy
    locationPreference String
    Strategy for selecting Prisma Access location - 'best-available-pa-location' automatically selects optimal location, 'specific-pa-location' uses predefined locations
    name String
    alphanumeric string [ 0-9a-zA-Z ._-]
    prismaAccessLocations List<GetForwardingProfileRegionalAndCustomProxyListDataPrismaAccessLocation>
    Select Prisma Access location Americas, Europe and Asia-Pacific.
    proxy1 GetForwardingProfileRegionalAndCustomProxyListDataProxy1
    primary regional and custom proxy
    proxy2 GetForwardingProfileRegionalAndCustomProxyListDataProxy2
    secondary regional and custom proxy
    tfid String
    The Terraform ID.
    type String
    Proxy configuration type - 'gp-and-pac' for GlobalProtect and PAC file forwarding, 'ztna-agent' for ZTNA agent forwarding
    connectivityPreferences GetForwardingProfileRegionalAndCustomProxyListDataConnectivityPreference[]
    List of connectivity methods and their enablement status for establishing proxy connections
    description string
    regional and custom proxy configuration description
    fallbackOption string
    Behavior when proxy connection fails - 'fail-open' allows direct internet access, 'fail-safe' blocks traffic until proxy is restored
    folder string
    The folder in which the resource is defined
    id string
    The UUID of the regional and custom proxy
    locationPreference string
    Strategy for selecting Prisma Access location - 'best-available-pa-location' automatically selects optimal location, 'specific-pa-location' uses predefined locations
    name string
    alphanumeric string [ 0-9a-zA-Z ._-]
    prismaAccessLocations GetForwardingProfileRegionalAndCustomProxyListDataPrismaAccessLocation[]
    Select Prisma Access location Americas, Europe and Asia-Pacific.
    proxy1 GetForwardingProfileRegionalAndCustomProxyListDataProxy1
    primary regional and custom proxy
    proxy2 GetForwardingProfileRegionalAndCustomProxyListDataProxy2
    secondary regional and custom proxy
    tfid string
    The Terraform ID.
    type string
    Proxy configuration type - 'gp-and-pac' for GlobalProtect and PAC file forwarding, 'ztna-agent' for ZTNA agent forwarding
    connectivity_preferences Sequence[GetForwardingProfileRegionalAndCustomProxyListDataConnectivityPreference]
    List of connectivity methods and their enablement status for establishing proxy connections
    description str
    regional and custom proxy configuration description
    fallback_option str
    Behavior when proxy connection fails - 'fail-open' allows direct internet access, 'fail-safe' blocks traffic until proxy is restored
    folder str
    The folder in which the resource is defined
    id str
    The UUID of the regional and custom proxy
    location_preference str
    Strategy for selecting Prisma Access location - 'best-available-pa-location' automatically selects optimal location, 'specific-pa-location' uses predefined locations
    name str
    alphanumeric string [ 0-9a-zA-Z ._-]
    prisma_access_locations Sequence[GetForwardingProfileRegionalAndCustomProxyListDataPrismaAccessLocation]
    Select Prisma Access location Americas, Europe and Asia-Pacific.
    proxy1 GetForwardingProfileRegionalAndCustomProxyListDataProxy1
    primary regional and custom proxy
    proxy2 GetForwardingProfileRegionalAndCustomProxyListDataProxy2
    secondary regional and custom proxy
    tfid str
    The Terraform ID.
    type str
    Proxy configuration type - 'gp-and-pac' for GlobalProtect and PAC file forwarding, 'ztna-agent' for ZTNA agent forwarding
    connectivityPreferences List<Property Map>
    List of connectivity methods and their enablement status for establishing proxy connections
    description String
    regional and custom proxy configuration description
    fallbackOption String
    Behavior when proxy connection fails - 'fail-open' allows direct internet access, 'fail-safe' blocks traffic until proxy is restored
    folder String
    The folder in which the resource is defined
    id String
    The UUID of the regional and custom proxy
    locationPreference String
    Strategy for selecting Prisma Access location - 'best-available-pa-location' automatically selects optimal location, 'specific-pa-location' uses predefined locations
    name String
    alphanumeric string [ 0-9a-zA-Z ._-]
    prismaAccessLocations List<Property Map>
    Select Prisma Access location Americas, Europe and Asia-Pacific.
    proxy1 Property Map
    primary regional and custom proxy
    proxy2 Property Map
    secondary regional and custom proxy
    tfid String
    The Terraform ID.
    type String
    Proxy configuration type - 'gp-and-pac' for GlobalProtect and PAC file forwarding, 'ztna-agent' for ZTNA agent forwarding

    GetForwardingProfileRegionalAndCustomProxyListDataConnectivityPreference

    Enabled bool
    Indicates whether this connectivity method is enabled for use in the proxy configuration
    Name string
    Connectivity method type - 'tunnel' for VPN tunnels, 'proxy' for HTTP/HTTPS proxies, 'adns' for authenticated DNS, 'masque' for MASQUE protocol
    Enabled bool
    Indicates whether this connectivity method is enabled for use in the proxy configuration
    Name string
    Connectivity method type - 'tunnel' for VPN tunnels, 'proxy' for HTTP/HTTPS proxies, 'adns' for authenticated DNS, 'masque' for MASQUE protocol
    enabled Boolean
    Indicates whether this connectivity method is enabled for use in the proxy configuration
    name String
    Connectivity method type - 'tunnel' for VPN tunnels, 'proxy' for HTTP/HTTPS proxies, 'adns' for authenticated DNS, 'masque' for MASQUE protocol
    enabled boolean
    Indicates whether this connectivity method is enabled for use in the proxy configuration
    name string
    Connectivity method type - 'tunnel' for VPN tunnels, 'proxy' for HTTP/HTTPS proxies, 'adns' for authenticated DNS, 'masque' for MASQUE protocol
    enabled bool
    Indicates whether this connectivity method is enabled for use in the proxy configuration
    name str
    Connectivity method type - 'tunnel' for VPN tunnels, 'proxy' for HTTP/HTTPS proxies, 'adns' for authenticated DNS, 'masque' for MASQUE protocol
    enabled Boolean
    Indicates whether this connectivity method is enabled for use in the proxy configuration
    name String
    Connectivity method type - 'tunnel' for VPN tunnels, 'proxy' for HTTP/HTTPS proxies, 'adns' for authenticated DNS, 'masque' for MASQUE protocol

    GetForwardingProfileRegionalAndCustomProxyListDataPrismaAccessLocation

    Locations List<string>
    Add list of locations separated by space, in that region
    Name string
    One of the region from 'americas', 'europe', 'apac'
    Locations []string
    Add list of locations separated by space, in that region
    Name string
    One of the region from 'americas', 'europe', 'apac'
    locations List<String>
    Add list of locations separated by space, in that region
    name String
    One of the region from 'americas', 'europe', 'apac'
    locations string[]
    Add list of locations separated by space, in that region
    name string
    One of the region from 'americas', 'europe', 'apac'
    locations Sequence[str]
    Add list of locations separated by space, in that region
    name str
    One of the region from 'americas', 'europe', 'apac'
    locations List<String>
    Add list of locations separated by space, in that region
    name String
    One of the region from 'americas', 'europe', 'apac'

    GetForwardingProfileRegionalAndCustomProxyListDataProxy1

    Fqdn string
    fqdn of the primary proxy server (supports wildcards and alphanumeric characters with dots, hyphens, and underscores)
    Location string
    Geographic or network location identifier for the primary proxy server
    Port int
    port number for primary proxy
    Fqdn string
    fqdn of the primary proxy server (supports wildcards and alphanumeric characters with dots, hyphens, and underscores)
    Location string
    Geographic or network location identifier for the primary proxy server
    Port int
    port number for primary proxy
    fqdn String
    fqdn of the primary proxy server (supports wildcards and alphanumeric characters with dots, hyphens, and underscores)
    location String
    Geographic or network location identifier for the primary proxy server
    port Integer
    port number for primary proxy
    fqdn string
    fqdn of the primary proxy server (supports wildcards and alphanumeric characters with dots, hyphens, and underscores)
    location string
    Geographic or network location identifier for the primary proxy server
    port number
    port number for primary proxy
    fqdn str
    fqdn of the primary proxy server (supports wildcards and alphanumeric characters with dots, hyphens, and underscores)
    location str
    Geographic or network location identifier for the primary proxy server
    port int
    port number for primary proxy
    fqdn String
    fqdn of the primary proxy server (supports wildcards and alphanumeric characters with dots, hyphens, and underscores)
    location String
    Geographic or network location identifier for the primary proxy server
    port Number
    port number for primary proxy

    GetForwardingProfileRegionalAndCustomProxyListDataProxy2

    Fqdn string
    Fqdn of the secondary (backup) proxy server used for failover scenarios
    Location string
    Geographic or network location identifier for the secondary proxy server
    Port int
    port number for secondary proxy
    Fqdn string
    Fqdn of the secondary (backup) proxy server used for failover scenarios
    Location string
    Geographic or network location identifier for the secondary proxy server
    Port int
    port number for secondary proxy
    fqdn String
    Fqdn of the secondary (backup) proxy server used for failover scenarios
    location String
    Geographic or network location identifier for the secondary proxy server
    port Integer
    port number for secondary proxy
    fqdn string
    Fqdn of the secondary (backup) proxy server used for failover scenarios
    location string
    Geographic or network location identifier for the secondary proxy server
    port number
    port number for secondary proxy
    fqdn str
    Fqdn of the secondary (backup) proxy server used for failover scenarios
    location str
    Geographic or network location identifier for the secondary proxy server
    port int
    port number for secondary proxy
    fqdn String
    Fqdn of the secondary (backup) proxy server used for failover scenarios
    location String
    Geographic or network location identifier for the secondary proxy server
    port Number
    port number for secondary proxy

    Package Details

    Repository
    scm pulumi/pulumi-scm
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the scm Terraform Provider.
    scm logo
    Viewing docs for Strata Cloud Manager v1.0.6
    published on Saturday, Apr 25, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.