Viewing docs for Strata Cloud Manager v1.0.6
published on Saturday, Apr 25, 2026 by Pulumi
published on Saturday, Apr 25, 2026 by Pulumi
Viewing docs for Strata Cloud Manager v1.0.6
published on Saturday, Apr 25, 2026 by Pulumi
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 dictionaryThe following arguments are supported:
getForwardingProfileRegionalAndCustomProxyList Result
The following output properties are available:
- Datas
List<Get
Forwarding Profile Regional And Custom Proxy List Data> - 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
[]Get
Forwarding Profile Regional And Custom Proxy List Data - 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<Get
Forwarding Profile Regional And Custom Proxy List Data> - 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
Get
Forwarding Profile Regional And Custom Proxy List Data[] - 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[Get
Forwarding Profile Regional And Custom Proxy List Data] - 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
- Connectivity
Preferences List<GetForwarding Profile Regional And Custom Proxy List Data Connectivity Preference> - List of connectivity methods and their enablement status for establishing proxy connections
- Description string
- regional and custom proxy configuration description
- Fallback
Option 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
- Location
Preference 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 ._-]
- Prisma
Access List<GetLocations Forwarding Profile Regional And Custom Proxy List Data Prisma Access Location> - Select Prisma Access location Americas, Europe and Asia-Pacific.
- Proxy1
Get
Forwarding Profile Regional And Custom Proxy List Data Proxy1 - primary regional and custom proxy
- Proxy2
Get
Forwarding Profile Regional And Custom Proxy List Data Proxy2 - 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 []GetForwarding Profile Regional And Custom Proxy List Data Connectivity Preference - List of connectivity methods and their enablement status for establishing proxy connections
- Description string
- regional and custom proxy configuration description
- Fallback
Option 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
- Location
Preference 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 ._-]
- Prisma
Access []GetLocations Forwarding Profile Regional And Custom Proxy List Data Prisma Access Location - Select Prisma Access location Americas, Europe and Asia-Pacific.
- Proxy1
Get
Forwarding Profile Regional And Custom Proxy List Data Proxy1 - primary regional and custom proxy
- Proxy2
Get
Forwarding Profile Regional And Custom Proxy List Data Proxy2 - 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 List<GetForwarding Profile Regional And Custom Proxy List Data Connectivity Preference> - List of connectivity methods and their enablement status for establishing proxy connections
- description String
- regional and custom proxy configuration description
- fallback
Option 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
- location
Preference 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 ._-]
- prisma
Access List<GetLocations Forwarding Profile Regional And Custom Proxy List Data Prisma Access Location> - Select Prisma Access location Americas, Europe and Asia-Pacific.
- proxy1
Get
Forwarding Profile Regional And Custom Proxy List Data Proxy1 - primary regional and custom proxy
- proxy2
Get
Forwarding Profile Regional And Custom Proxy List Data Proxy2 - 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 GetForwarding Profile Regional And Custom Proxy List Data Connectivity Preference[] - List of connectivity methods and their enablement status for establishing proxy connections
- description string
- regional and custom proxy configuration description
- fallback
Option 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
- location
Preference 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 ._-]
- prisma
Access GetLocations Forwarding Profile Regional And Custom Proxy List Data Prisma Access Location[] - Select Prisma Access location Americas, Europe and Asia-Pacific.
- proxy1
Get
Forwarding Profile Regional And Custom Proxy List Data Proxy1 - primary regional and custom proxy
- proxy2
Get
Forwarding Profile Regional And Custom Proxy List Data Proxy2 - 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[GetForwarding Profile Regional And Custom Proxy List Data Connectivity Preference] - 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_ Sequence[Getlocations Forwarding Profile Regional And Custom Proxy List Data Prisma Access Location] - Select Prisma Access location Americas, Europe and Asia-Pacific.
- proxy1
Get
Forwarding Profile Regional And Custom Proxy List Data Proxy1 - primary regional and custom proxy
- proxy2
Get
Forwarding Profile Regional And Custom Proxy List Data Proxy2 - 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
- connectivity
Preferences List<Property Map> - List of connectivity methods and their enablement status for establishing proxy connections
- description String
- regional and custom proxy configuration description
- fallback
Option 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
- location
Preference 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 ._-]
- prisma
Access List<Property Map>Locations - 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
GetForwardingProfileRegionalAndCustomProxyListDataPrismaAccessLocation
GetForwardingProfileRegionalAndCustomProxyListDataProxy1
GetForwardingProfileRegionalAndCustomProxyListDataProxy2
Package Details
- Repository
- scm pulumi/pulumi-scm
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
scmTerraform Provider.
Viewing docs for Strata Cloud Manager v1.0.6
published on Saturday, Apr 25, 2026 by Pulumi
published on Saturday, Apr 25, 2026 by Pulumi
