Zscaler Internet Access v1.0.1 published on Friday, Jun 6, 2025 by Zscaler
zia.getDLPEngines
Explore with Pulumi AI
Use the zia_dlp_engines data source to get information about a ZIA DLP Engines in the Zscaler Internet Access cloud or via the API.
Example Usage
# Retrieve a DLP Engine by name
data "zia_dlp_engines" "this"{
name = "Example"
}
# Retrieve a DLP Engine by ID
data "zia_dlp_engines" "this"{
id = 1234567890
}
# Retrieve a Predefined DLP Engine
data "zia_dlp_engines" "this"{
predefined = "EXTERNAL"
}
Using getDLPEngines
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 getDLPEngines(args: GetDLPEnginesArgs, opts?: InvokeOptions): Promise<GetDLPEnginesResult>
function getDLPEnginesOutput(args: GetDLPEnginesOutputArgs, opts?: InvokeOptions): Output<GetDLPEnginesResult>
def get_dlp_engines(id: Optional[int] = None,
name: Optional[str] = None,
predefined_engine_name: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetDLPEnginesResult
def get_dlp_engines_output(id: Optional[pulumi.Input[int]] = None,
name: Optional[pulumi.Input[str]] = None,
predefined_engine_name: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetDLPEnginesResult]
func LookupDLPEngines(ctx *Context, args *LookupDLPEnginesArgs, opts ...InvokeOption) (*LookupDLPEnginesResult, error)
func LookupDLPEnginesOutput(ctx *Context, args *LookupDLPEnginesOutputArgs, opts ...InvokeOption) LookupDLPEnginesResultOutput
> Note: This function is named LookupDLPEngines
in the Go SDK.
public static class GetDLPEngines
{
public static Task<GetDLPEnginesResult> InvokeAsync(GetDLPEnginesArgs args, InvokeOptions? opts = null)
public static Output<GetDLPEnginesResult> Invoke(GetDLPEnginesInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetDLPEnginesResult> getDLPEngines(GetDLPEnginesArgs args, InvokeOptions options)
public static Output<GetDLPEnginesResult> getDLPEngines(GetDLPEnginesArgs args, InvokeOptions options)
fn::invoke:
function: zia:index/getDLPEngines:getDLPEngines
arguments:
# arguments dictionary
The following arguments are supported:
- Id int
- Name string
- Predefined
Engine stringName
- Id int
- Name string
- Predefined
Engine stringName
- id Integer
- name String
- predefined
Engine StringName
- id number
- name string
- predefined
Engine stringName
- id int
- name str
- predefined_
engine_ strname
- id Number
- name String
- predefined
Engine StringName
getDLPEngines Result
The following output properties are available:
- Custom
Dlp boolEngine - Description string
- Engine
Expression string - Id int
- Name string
- Predefined
Engine stringName
- Custom
Dlp boolEngine - Description string
- Engine
Expression string - Id int
- Name string
- Predefined
Engine stringName
- custom
Dlp BooleanEngine - description String
- engine
Expression String - id Integer
- name String
- predefined
Engine StringName
- custom
Dlp booleanEngine - description string
- engine
Expression string - id number
- name string
- predefined
Engine stringName
- custom_
dlp_ boolengine - description str
- engine_
expression str - id int
- name str
- predefined_
engine_ strname
- custom
Dlp BooleanEngine - description String
- engine
Expression String - id Number
- name String
- predefined
Engine StringName
Package Details
- Repository
- zia zscaler/pulumi-zia
- License
- MIT
- Notes
- This Pulumi package is based on the
zia
Terraform Provider.