Viewing docs for Strata Cloud Manager v0.4.3 (Older version)
published on Monday, Mar 9, 2026 by Pulumi
published on Monday, Mar 9, 2026 by Pulumi
Viewing docs for Strata Cloud Manager v0.4.3 (Older version)
published on Monday, Mar 9, 2026 by Pulumi
published on Monday, Mar 9, 2026 by Pulumi
Retrieves a listing of config items.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as scm from "@pulumi/scm";
const pagedRulesList = scm.getSecurityRuleList({
folder: "All",
position: "pre",
});
export const fetchedRuleListSummary = {
countOfRulesFetched: pagedRulesList.then(pagedRulesList => pagedRulesList.total),
firstRuleName: pagedRulesList.then(pagedRulesList => pagedRulesList.datas?.[0]?.name),
};
import pulumi
import pulumi_scm as scm
paged_rules_list = scm.get_security_rule_list(folder="All",
position="pre")
pulumi.export("fetchedRuleListSummary", {
"countOfRulesFetched": paged_rules_list.total,
"firstRuleName": paged_rules_list.datas[0].name,
})
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 {
pagedRulesList, err := scm.GetSecurityRuleList(ctx, &scm.GetSecurityRuleListArgs{
Folder: pulumi.StringRef("All"),
Position: "pre",
}, nil)
if err != nil {
return err
}
ctx.Export("fetchedRuleListSummary", pulumi.Map{
"countOfRulesFetched": pagedRulesList.Total,
"firstRuleName": pagedRulesList.Datas[0].Name,
})
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Scm = Pulumi.Scm;
return await Deployment.RunAsync(() =>
{
var pagedRulesList = Scm.GetSecurityRuleList.Invoke(new()
{
Folder = "All",
Position = "pre",
});
return new Dictionary<string, object?>
{
["fetchedRuleListSummary"] =
{
{ "countOfRulesFetched", pagedRulesList.Apply(getSecurityRuleListResult => getSecurityRuleListResult.Total) },
{ "firstRuleName", pagedRulesList.Apply(getSecurityRuleListResult => getSecurityRuleListResult.Datas[0]?.Name) },
},
};
});
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.GetSecurityRuleListArgs;
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) {
final var pagedRulesList = ScmFunctions.getSecurityRuleList(GetSecurityRuleListArgs.builder()
.folder("All")
.position("pre")
.build());
ctx.export("fetchedRuleListSummary", Map.ofEntries(
Map.entry("countOfRulesFetched", pagedRulesList.total()),
Map.entry("firstRuleName", pagedRulesList.datas()[0].name())
));
}
}
variables:
pagedRulesList:
fn::invoke:
function: scm:getSecurityRuleList
arguments:
folder: All
position: pre
outputs:
fetchedRuleListSummary:
countOfRulesFetched: ${pagedRulesList.total}
firstRuleName: ${pagedRulesList.datas[0].name}
Using getSecurityRuleList
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 getSecurityRuleList(args: GetSecurityRuleListArgs, opts?: InvokeOptions): Promise<GetSecurityRuleListResult>
function getSecurityRuleListOutput(args: GetSecurityRuleListOutputArgs, opts?: InvokeOptions): Output<GetSecurityRuleListResult>def get_security_rule_list(device: Optional[str] = None,
folder: Optional[str] = None,
limit: Optional[int] = None,
name: Optional[str] = None,
offset: Optional[int] = None,
position: Optional[str] = None,
snippet: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetSecurityRuleListResult
def get_security_rule_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,
position: Optional[pulumi.Input[str]] = None,
snippet: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetSecurityRuleListResult]func GetSecurityRuleList(ctx *Context, args *GetSecurityRuleListArgs, opts ...InvokeOption) (*GetSecurityRuleListResult, error)
func GetSecurityRuleListOutput(ctx *Context, args *GetSecurityRuleListOutputArgs, opts ...InvokeOption) GetSecurityRuleListResultOutput> Note: This function is named GetSecurityRuleList in the Go SDK.
public static class GetSecurityRuleList
{
public static Task<GetSecurityRuleListResult> InvokeAsync(GetSecurityRuleListArgs args, InvokeOptions? opts = null)
public static Output<GetSecurityRuleListResult> Invoke(GetSecurityRuleListInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetSecurityRuleListResult> getSecurityRuleList(GetSecurityRuleListArgs args, InvokeOptions options)
public static Output<GetSecurityRuleListResult> getSecurityRuleList(GetSecurityRuleListArgs args, InvokeOptions options)
fn::invoke:
function: scm:index/getSecurityRuleList:getSecurityRuleList
arguments:
# arguments dictionaryThe following arguments are supported:
- Position string
- The position of a security rule
- 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.
- Position string
- The position of a security rule
- 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.
- position String
- The position of a security rule
- 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.
- position string
- The position of a security rule
- 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.
- position String
- The position of a security rule
- 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.
getSecurityRuleList Result
The following output properties are available:
- Datas
List<Get
Security Rule List Data> - The data.
- Id string
- The provider-assigned unique ID for this managed resource.
- Position string
- The position of a security rule
- 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
[]Get
Security Rule List Data - The data.
- Id string
- The provider-assigned unique ID for this managed resource.
- Position string
- The position of a security rule
- 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<Get
Security Rule List Data> - The data.
- id String
- The provider-assigned unique ID for this managed resource.
- position String
- The position of a security rule
- 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
Get
Security Rule List Data[] - The data.
- id string
- The provider-assigned unique ID for this managed resource.
- position string
- The position of a security rule
- 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[Get
Security Rule List Data] - The data.
- id str
- The provider-assigned unique ID for this managed resource.
- position str
- The position of a security rule
- 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.
- position String
- The position of a security rule
- 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
GetSecurityRuleListData
- Action string
- The action to be taken when the rule is matched
- Allow
Url List<GetCategories Security Rule List Data Allow Url Category> - Allow url category
- Allow
Web List<GetApplications Security Rule List Data Allow Web Application> - Allow web application
- Applications List<string>
- The application(s) being accessed
- Block
Url List<string>Categories - Block url category
- Block
Web List<string>Applications - Block web application
- Categories List<string>
- The URL categories being accessed
- Default
Profile GetSettings Security Rule List Data Default Profile Settings - Default profile settings
- Description string
- The description of the security rule
- Destination
Hips List<string> - The destination Host Integrity Profile(s)
- Destinations List<string>
- The destination address(es)
- Device string
- The device in which the resource is defined
- Devices List<string>
- Devices
- Disabled bool
- Is the security rule disabled?
- Folder string
- The folder in which the resource is defined
- Froms List<string>
- The source security zone(s)
- Id string
- The UUID of the security rule
- Log
End bool - Log at session end?
- Log
Setting string - The external log forwarding profile
- Log
Settings GetSecurity Rule List Data Log Settings - Log settings
- Log
Start bool - Log at session start?
- Name string
- The name of the security rule
- Negate
Destination bool - Negate the destination addresses(es)?
- Negate
Source bool - Negate the source address(es)?
- Negate
User bool - Negate user
- Policy
Type string - Policy type
- Position string
- The position of a security rule
- Profile
Setting GetSecurity Rule List Data Profile Setting - The security profile object
- Relative
Position string - Relative positioning rule. String must be one of these:
"before","after","top","bottom". If not specified, rule is created at the bottom of the ruleset. - Schedule string
- Schedule in which this rule will be applied
- Security
Settings GetSecurity Rule List Data Security Settings - Security settings
- Services List<string>
- The service(s) being accessed
- Snippet string
- The snippet in which the resource is defined
- Source
Hips List<string> - The source Host Integrity Profile(s)
- Source
Users List<string> - List of source users and/or groups. Reserved words include
any,pre-login,known-user, andunknown. - Sources List<string>
- The source addresses(es)
- List<string>
- The tags associated with the security rule
- Target
Rule string - The name or UUID of the rule to position this rule relative to. Required when
relative_positionis"before"or"after". - Tenant
Restrictions List<string> - Tenant restrictions
- Tfid string
- Tos List<string>
- The destination security zone(s)
- Action string
- The action to be taken when the rule is matched
- Allow
Url []GetCategories Security Rule List Data Allow Url Category - Allow url category
- Allow
Web []GetApplications Security Rule List Data Allow Web Application - Allow web application
- Applications []string
- The application(s) being accessed
- Block
Url []stringCategories - Block url category
- Block
Web []stringApplications - Block web application
- Categories []string
- The URL categories being accessed
- Default
Profile GetSettings Security Rule List Data Default Profile Settings - Default profile settings
- Description string
- The description of the security rule
- Destination
Hips []string - The destination Host Integrity Profile(s)
- Destinations []string
- The destination address(es)
- Device string
- The device in which the resource is defined
- Devices []string
- Devices
- Disabled bool
- Is the security rule disabled?
- Folder string
- The folder in which the resource is defined
- Froms []string
- The source security zone(s)
- Id string
- The UUID of the security rule
- Log
End bool - Log at session end?
- Log
Setting string - The external log forwarding profile
- Log
Settings GetSecurity Rule List Data Log Settings - Log settings
- Log
Start bool - Log at session start?
- Name string
- The name of the security rule
- Negate
Destination bool - Negate the destination addresses(es)?
- Negate
Source bool - Negate the source address(es)?
- Negate
User bool - Negate user
- Policy
Type string - Policy type
- Position string
- The position of a security rule
- Profile
Setting GetSecurity Rule List Data Profile Setting - The security profile object
- Relative
Position string - Relative positioning rule. String must be one of these:
"before","after","top","bottom". If not specified, rule is created at the bottom of the ruleset. - Schedule string
- Schedule in which this rule will be applied
- Security
Settings GetSecurity Rule List Data Security Settings - Security settings
- Services []string
- The service(s) being accessed
- Snippet string
- The snippet in which the resource is defined
- Source
Hips []string - The source Host Integrity Profile(s)
- Source
Users []string - List of source users and/or groups. Reserved words include
any,pre-login,known-user, andunknown. - Sources []string
- The source addresses(es)
- []string
- The tags associated with the security rule
- Target
Rule string - The name or UUID of the rule to position this rule relative to. Required when
relative_positionis"before"or"after". - Tenant
Restrictions []string - Tenant restrictions
- Tfid string
- Tos []string
- The destination security zone(s)
- action String
- The action to be taken when the rule is matched
- allow
Url List<GetCategories Security Rule List Data Allow Url Category> - Allow url category
- allow
Web List<GetApplications Security Rule List Data Allow Web Application> - Allow web application
- applications List<String>
- The application(s) being accessed
- block
Url List<String>Categories - Block url category
- block
Web List<String>Applications - Block web application
- categories List<String>
- The URL categories being accessed
- default
Profile GetSettings Security Rule List Data Default Profile Settings - Default profile settings
- description String
- The description of the security rule
- destination
Hips List<String> - The destination Host Integrity Profile(s)
- destinations List<String>
- The destination address(es)
- device String
- The device in which the resource is defined
- devices List<String>
- Devices
- disabled Boolean
- Is the security rule disabled?
- folder String
- The folder in which the resource is defined
- froms List<String>
- The source security zone(s)
- id String
- The UUID of the security rule
- log
End Boolean - Log at session end?
- log
Setting String - The external log forwarding profile
- log
Settings GetSecurity Rule List Data Log Settings - Log settings
- log
Start Boolean - Log at session start?
- name String
- The name of the security rule
- negate
Destination Boolean - Negate the destination addresses(es)?
- negate
Source Boolean - Negate the source address(es)?
- negate
User Boolean - Negate user
- policy
Type String - Policy type
- position String
- The position of a security rule
- profile
Setting GetSecurity Rule List Data Profile Setting - The security profile object
- relative
Position String - Relative positioning rule. String must be one of these:
"before","after","top","bottom". If not specified, rule is created at the bottom of the ruleset. - schedule String
- Schedule in which this rule will be applied
- security
Settings GetSecurity Rule List Data Security Settings - Security settings
- services List<String>
- The service(s) being accessed
- snippet String
- The snippet in which the resource is defined
- source
Hips List<String> - The source Host Integrity Profile(s)
- source
Users List<String> - List of source users and/or groups. Reserved words include
any,pre-login,known-user, andunknown. - sources List<String>
- The source addresses(es)
- List<String>
- The tags associated with the security rule
- target
Rule String - The name or UUID of the rule to position this rule relative to. Required when
relative_positionis"before"or"after". - tenant
Restrictions List<String> - Tenant restrictions
- tfid String
- tos List<String>
- The destination security zone(s)
- action string
- The action to be taken when the rule is matched
- allow
Url GetCategories Security Rule List Data Allow Url Category[] - Allow url category
- allow
Web GetApplications Security Rule List Data Allow Web Application[] - Allow web application
- applications string[]
- The application(s) being accessed
- block
Url string[]Categories - Block url category
- block
Web string[]Applications - Block web application
- categories string[]
- The URL categories being accessed
- default
Profile GetSettings Security Rule List Data Default Profile Settings - Default profile settings
- description string
- The description of the security rule
- destination
Hips string[] - The destination Host Integrity Profile(s)
- destinations string[]
- The destination address(es)
- device string
- The device in which the resource is defined
- devices string[]
- Devices
- disabled boolean
- Is the security rule disabled?
- folder string
- The folder in which the resource is defined
- froms string[]
- The source security zone(s)
- id string
- The UUID of the security rule
- log
End boolean - Log at session end?
- log
Setting string - The external log forwarding profile
- log
Settings GetSecurity Rule List Data Log Settings - Log settings
- log
Start boolean - Log at session start?
- name string
- The name of the security rule
- negate
Destination boolean - Negate the destination addresses(es)?
- negate
Source boolean - Negate the source address(es)?
- negate
User boolean - Negate user
- policy
Type string - Policy type
- position string
- The position of a security rule
- profile
Setting GetSecurity Rule List Data Profile Setting - The security profile object
- relative
Position string - Relative positioning rule. String must be one of these:
"before","after","top","bottom". If not specified, rule is created at the bottom of the ruleset. - schedule string
- Schedule in which this rule will be applied
- security
Settings GetSecurity Rule List Data Security Settings - Security settings
- services string[]
- The service(s) being accessed
- snippet string
- The snippet in which the resource is defined
- source
Hips string[] - The source Host Integrity Profile(s)
- source
Users string[] - List of source users and/or groups. Reserved words include
any,pre-login,known-user, andunknown. - sources string[]
- The source addresses(es)
- string[]
- The tags associated with the security rule
- target
Rule string - The name or UUID of the rule to position this rule relative to. Required when
relative_positionis"before"or"after". - tenant
Restrictions string[] - Tenant restrictions
- tfid string
- tos string[]
- The destination security zone(s)
- action str
- The action to be taken when the rule is matched
- allow_
url_ Sequence[Getcategories Security Rule List Data Allow Url Category] - Allow url category
- allow_
web_ Sequence[Getapplications Security Rule List Data Allow Web Application] - Allow web application
- applications Sequence[str]
- The application(s) being accessed
- block_
url_ Sequence[str]categories - Block url category
- block_
web_ Sequence[str]applications - Block web application
- categories Sequence[str]
- The URL categories being accessed
- default_
profile_ Getsettings Security Rule List Data Default Profile Settings - Default profile settings
- description str
- The description of the security rule
- destination_
hips Sequence[str] - The destination Host Integrity Profile(s)
- destinations Sequence[str]
- The destination address(es)
- device str
- The device in which the resource is defined
- devices Sequence[str]
- Devices
- disabled bool
- Is the security rule disabled?
- folder str
- The folder in which the resource is defined
- froms Sequence[str]
- The source security zone(s)
- id str
- The UUID of the security rule
- log_
end bool - Log at session end?
- log_
setting str - The external log forwarding profile
- log_
settings GetSecurity Rule List Data Log Settings - Log settings
- log_
start bool - Log at session start?
- name str
- The name of the security rule
- negate_
destination bool - Negate the destination addresses(es)?
- negate_
source bool - Negate the source address(es)?
- negate_
user bool - Negate user
- policy_
type str - Policy type
- position str
- The position of a security rule
- profile_
setting GetSecurity Rule List Data Profile Setting - The security profile object
- relative_
position str - Relative positioning rule. String must be one of these:
"before","after","top","bottom". If not specified, rule is created at the bottom of the ruleset. - schedule str
- Schedule in which this rule will be applied
- security_
settings GetSecurity Rule List Data Security Settings - Security settings
- services Sequence[str]
- The service(s) being accessed
- snippet str
- The snippet in which the resource is defined
- source_
hips Sequence[str] - The source Host Integrity Profile(s)
- source_
users Sequence[str] - List of source users and/or groups. Reserved words include
any,pre-login,known-user, andunknown. - sources Sequence[str]
- The source addresses(es)
- Sequence[str]
- The tags associated with the security rule
- target_
rule str - The name or UUID of the rule to position this rule relative to. Required when
relative_positionis"before"or"after". - tenant_
restrictions Sequence[str] - Tenant restrictions
- tfid str
- tos Sequence[str]
- The destination security zone(s)
- action String
- The action to be taken when the rule is matched
- allow
Url List<Property Map>Categories - Allow url category
- allow
Web List<Property Map>Applications - Allow web application
- applications List<String>
- The application(s) being accessed
- block
Url List<String>Categories - Block url category
- block
Web List<String>Applications - Block web application
- categories List<String>
- The URL categories being accessed
- default
Profile Property MapSettings - Default profile settings
- description String
- The description of the security rule
- destination
Hips List<String> - The destination Host Integrity Profile(s)
- destinations List<String>
- The destination address(es)
- device String
- The device in which the resource is defined
- devices List<String>
- Devices
- disabled Boolean
- Is the security rule disabled?
- folder String
- The folder in which the resource is defined
- froms List<String>
- The source security zone(s)
- id String
- The UUID of the security rule
- log
End Boolean - Log at session end?
- log
Setting String - The external log forwarding profile
- log
Settings Property Map - Log settings
- log
Start Boolean - Log at session start?
- name String
- The name of the security rule
- negate
Destination Boolean - Negate the destination addresses(es)?
- negate
Source Boolean - Negate the source address(es)?
- negate
User Boolean - Negate user
- policy
Type String - Policy type
- position String
- The position of a security rule
- profile
Setting Property Map - The security profile object
- relative
Position String - Relative positioning rule. String must be one of these:
"before","after","top","bottom". If not specified, rule is created at the bottom of the ruleset. - schedule String
- Schedule in which this rule will be applied
- security
Settings Property Map - Security settings
- services List<String>
- The service(s) being accessed
- snippet String
- The snippet in which the resource is defined
- source
Hips List<String> - The source Host Integrity Profile(s)
- source
Users List<String> - List of source users and/or groups. Reserved words include
any,pre-login,known-user, andunknown. - sources List<String>
- The source addresses(es)
- List<String>
- The tags associated with the security rule
- target
Rule String - The name or UUID of the rule to position this rule relative to. Required when
relative_positionis"before"or"after". - tenant
Restrictions List<String> - Tenant restrictions
- tfid String
- tos List<String>
- The destination security zone(s)
GetSecurityRuleListDataAllowUrlCategory
- Additional
Action string - Additional action
- Credential
Enforcement string - Credential enforcement
- Decryption string
- Decryption
- Dlp string
- Dlp
- File
Control GetSecurity Rule List Data Allow Url Category File Control - File control
- Isolation
Profiles string - Isolation profiles
- Name string
- Name
- Additional
Action string - Additional action
- Credential
Enforcement string - Credential enforcement
- Decryption string
- Decryption
- Dlp string
- Dlp
- File
Control GetSecurity Rule List Data Allow Url Category File Control - File control
- Isolation
Profiles string - Isolation profiles
- Name string
- Name
- additional
Action String - Additional action
- credential
Enforcement String - Credential enforcement
- decryption String
- Decryption
- dlp String
- Dlp
- file
Control GetSecurity Rule List Data Allow Url Category File Control - File control
- isolation
Profiles String - Isolation profiles
- name String
- Name
- additional
Action string - Additional action
- credential
Enforcement string - Credential enforcement
- decryption string
- Decryption
- dlp string
- Dlp
- file
Control GetSecurity Rule List Data Allow Url Category File Control - File control
- isolation
Profiles string - Isolation profiles
- name string
- Name
- additional_
action str - Additional action
- credential_
enforcement str - Credential enforcement
- decryption str
- Decryption
- dlp str
- Dlp
- file_
control GetSecurity Rule List Data Allow Url Category File Control - File control
- isolation_
profiles str - Isolation profiles
- name str
- Name
- additional
Action String - Additional action
- credential
Enforcement String - Credential enforcement
- decryption String
- Decryption
- dlp String
- Dlp
- file
Control Property Map - File control
- isolation
Profiles String - Isolation profiles
- name String
- Name
GetSecurityRuleListDataAllowUrlCategoryFileControl
GetSecurityRuleListDataAllowWebApplication
- Application
Functions List<string> - Application function
- Dlp string
- Dlp
- File
Control GetSecurity Rule List Data Allow Web Application File Control - File control
- Name string
- Name
- Saas
Enterprise GetControl Security Rule List Data Allow Web Application Saas Enterprise Control - Saas enterprise control
- Saas
Tenant List<string>Lists - Saas tenant list
- Saas
User List<string>Lists - Saas user list
- Tenant
Control GetSecurity Rule List Data Allow Web Application Tenant Control - Tenant control
- Type string
- Type
- Application
Functions []string - Application function
- Dlp string
- Dlp
- File
Control GetSecurity Rule List Data Allow Web Application File Control - File control
- Name string
- Name
- Saas
Enterprise GetControl Security Rule List Data Allow Web Application Saas Enterprise Control - Saas enterprise control
- Saas
Tenant []stringLists - Saas tenant list
- Saas
User []stringLists - Saas user list
- Tenant
Control GetSecurity Rule List Data Allow Web Application Tenant Control - Tenant control
- Type string
- Type
- application
Functions List<String> - Application function
- dlp String
- Dlp
- file
Control GetSecurity Rule List Data Allow Web Application File Control - File control
- name String
- Name
- saas
Enterprise GetControl Security Rule List Data Allow Web Application Saas Enterprise Control - Saas enterprise control
- saas
Tenant List<String>Lists - Saas tenant list
- saas
User List<String>Lists - Saas user list
- tenant
Control GetSecurity Rule List Data Allow Web Application Tenant Control - Tenant control
- type String
- Type
- application
Functions string[] - Application function
- dlp string
- Dlp
- file
Control GetSecurity Rule List Data Allow Web Application File Control - File control
- name string
- Name
- saas
Enterprise GetControl Security Rule List Data Allow Web Application Saas Enterprise Control - Saas enterprise control
- saas
Tenant string[]Lists - Saas tenant list
- saas
User string[]Lists - Saas user list
- tenant
Control GetSecurity Rule List Data Allow Web Application Tenant Control - Tenant control
- type string
- Type
- application_
functions Sequence[str] - Application function
- dlp str
- Dlp
- file_
control GetSecurity Rule List Data Allow Web Application File Control - File control
- name str
- Name
- saas_
enterprise_ Getcontrol Security Rule List Data Allow Web Application Saas Enterprise Control - Saas enterprise control
- saas_
tenant_ Sequence[str]lists - Saas tenant list
- saas_
user_ Sequence[str]lists - Saas user list
- tenant_
control GetSecurity Rule List Data Allow Web Application Tenant Control - Tenant control
- type str
- Type
- application
Functions List<String> - Application function
- dlp String
- Dlp
- file
Control Property Map - File control
- name String
- Name
- saas
Enterprise Property MapControl - Saas enterprise control
- saas
Tenant List<String>Lists - Saas tenant list
- saas
User List<String>Lists - Saas user list
- tenant
Control Property Map - Tenant control
- type String
- Type
GetSecurityRuleListDataAllowWebApplicationFileControl
GetSecurityRuleListDataAllowWebApplicationSaasEnterpriseControl
- consumer
Access Property Map - Consumer access
- enterprise
Access Property Map - Enterprise access
GetSecurityRuleListDataAllowWebApplicationSaasEnterpriseControlConsumerAccess
- Enable string
- Enable
- Enable string
- Enable
- enable String
- Enable
- enable string
- Enable
- enable str
- Enable
- enable String
- Enable
GetSecurityRuleListDataAllowWebApplicationSaasEnterpriseControlEnterpriseAccess
- Enable string
- Enable
- Tenant
Restrictions List<string> - Tenant restrictions
- Enable string
- Enable
- Tenant
Restrictions []string - Tenant restrictions
- enable String
- Enable
- tenant
Restrictions List<String> - Tenant restrictions
- enable string
- Enable
- tenant
Restrictions string[] - Tenant restrictions
- enable str
- Enable
- tenant_
restrictions Sequence[str] - Tenant restrictions
- enable String
- Enable
- tenant
Restrictions List<String> - Tenant restrictions
GetSecurityRuleListDataAllowWebApplicationTenantControl
- Allowed
Activities List<string> - Allowed activities
- Blocked
Activities List<string> - Blocked activities
- Parent
Application string - Parent application
- Tenants List<string>
- Tenants
- Allowed
Activities []string - Allowed activities
- Blocked
Activities []string - Blocked activities
- Parent
Application string - Parent application
- Tenants []string
- Tenants
- allowed
Activities List<String> - Allowed activities
- blocked
Activities List<String> - Blocked activities
- parent
Application String - Parent application
- tenants List<String>
- Tenants
- allowed
Activities string[] - Allowed activities
- blocked
Activities string[] - Blocked activities
- parent
Application string - Parent application
- tenants string[]
- Tenants
- allowed_
activities Sequence[str] - Allowed activities
- blocked_
activities Sequence[str] - Blocked activities
- parent_
application str - Parent application
- tenants Sequence[str]
- Tenants
- allowed
Activities List<String> - Allowed activities
- blocked
Activities List<String> - Blocked activities
- parent
Application String - Parent application
- tenants List<String>
- Tenants
GetSecurityRuleListDataDefaultProfileSettings
- Dlp string
- Dlp
- File
Control GetSecurity Rule List Data Default Profile Settings File Control - File control
- Dlp string
- Dlp
- File
Control GetSecurity Rule List Data Default Profile Settings File Control - File control
- dlp String
- Dlp
- file
Control GetSecurity Rule List Data Default Profile Settings File Control - File control
- dlp string
- Dlp
- file
Control GetSecurity Rule List Data Default Profile Settings File Control - File control
- dlp str
- Dlp
- file_
control GetSecurity Rule List Data Default Profile Settings File Control - File control
- dlp String
- Dlp
- file
Control Property Map - File control
GetSecurityRuleListDataDefaultProfileSettingsFileControl
GetSecurityRuleListDataLogSettings
- Log
Sessions bool - Log sessions
- Log
Sessions bool - Log sessions
- log
Sessions Boolean - Log sessions
- log
Sessions boolean - Log sessions
- log_
sessions bool - Log sessions
- log
Sessions Boolean - Log sessions
GetSecurityRuleListDataProfileSetting
- Groups List<string>
- The security profile group
- Groups []string
- The security profile group
- groups List<String>
- The security profile group
- groups string[]
- The security profile group
- groups Sequence[str]
- The security profile group
- groups List<String>
- The security profile group
GetSecurityRuleListDataSecuritySettings
- Anti
Spyware string - Anti spyware
- Virus
And stringWildfire Analysis - Virus and wildfire analysis
- Vulnerability string
- Vulnerability
- Anti
Spyware string - Anti spyware
- Virus
And stringWildfire Analysis - Virus and wildfire analysis
- Vulnerability string
- Vulnerability
- anti
Spyware String - Anti spyware
- virus
And StringWildfire Analysis - Virus and wildfire analysis
- vulnerability String
- Vulnerability
- anti
Spyware string - Anti spyware
- virus
And stringWildfire Analysis - Virus and wildfire analysis
- vulnerability string
- Vulnerability
- anti_
spyware str - Anti spyware
- virus_
and_ strwildfire_ analysis - Virus and wildfire analysis
- vulnerability str
- Vulnerability
- anti
Spyware String - Anti spyware
- virus
And StringWildfire Analysis - Virus and wildfire analysis
- vulnerability String
- Vulnerability
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 v0.4.3 (Older version)
published on Monday, Mar 9, 2026 by Pulumi
published on Monday, Mar 9, 2026 by Pulumi
