1. Packages
  2. Zscaler Internet Access (ZIA)
  3. API Docs
  4. getDLPNotificationTemplates
Zscaler Internet Access v0.0.7 published on Tuesday, Jul 30, 2024 by Zscaler

zia.getDLPNotificationTemplates

Explore with Pulumi AI

Zscaler Internet Access v0.0.7 published on Tuesday, Jul 30, 2024 by Zscaler

Use the zia_dlp_notification_templates data source to get information about a ZIA DLP Notification Templates in the Zscaler Internet Access cloud or via the API.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as zia from "@pulumi/zia";

const example = zia.getDLPNotificationTemplates({
    name: "DLP Auditor Template Test",
});
Copy
import pulumi
import pulumi_zia as zia

example = zia.get_dlp_notification_templates(name="DLP Auditor Template Test")
Copy
package main

import (
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
	"github.com/zscaler/pulumi-zia/sdk/go/zia"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := zia.LookupDLPNotificationTemplates(ctx, &zia.LookupDLPNotificationTemplatesArgs{
			Name: pulumi.StringRef("DLP Auditor Template Test"),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Zia = Pulumi.Zia;

return await Deployment.RunAsync(() => 
{
    var example = Zia.GetDLPNotificationTemplates.Invoke(new()
    {
        Name = "DLP Auditor Template Test",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.zia.ZiaFunctions;
import com.pulumi.zia.inputs.GetDLPNotificationTemplatesArgs;
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 example = ZiaFunctions.getDLPNotificationTemplates(GetDLPNotificationTemplatesArgs.builder()
            .name("DLP Auditor Template Test")
            .build());

    }
}
Copy
variables:
  example:
    fn::invoke:
      Function: zia:getDLPNotificationTemplates
      Arguments:
        name: DLP Auditor Template Test
Copy

Using getDLPNotificationTemplates

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 getDLPNotificationTemplates(args: GetDLPNotificationTemplatesArgs, opts?: InvokeOptions): Promise<GetDLPNotificationTemplatesResult>
function getDLPNotificationTemplatesOutput(args: GetDLPNotificationTemplatesOutputArgs, opts?: InvokeOptions): Output<GetDLPNotificationTemplatesResult>
Copy
def get_dlp_notification_templates(id: Optional[int] = None,
                                   name: Optional[str] = None,
                                   opts: Optional[InvokeOptions] = None) -> GetDLPNotificationTemplatesResult
def get_dlp_notification_templates_output(id: Optional[pulumi.Input[int]] = None,
                                   name: Optional[pulumi.Input[str]] = None,
                                   opts: Optional[InvokeOptions] = None) -> Output[GetDLPNotificationTemplatesResult]
Copy
func LookupDLPNotificationTemplates(ctx *Context, args *LookupDLPNotificationTemplatesArgs, opts ...InvokeOption) (*LookupDLPNotificationTemplatesResult, error)
func LookupDLPNotificationTemplatesOutput(ctx *Context, args *LookupDLPNotificationTemplatesOutputArgs, opts ...InvokeOption) LookupDLPNotificationTemplatesResultOutput
Copy

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

public static class GetDLPNotificationTemplates 
{
    public static Task<GetDLPNotificationTemplatesResult> InvokeAsync(GetDLPNotificationTemplatesArgs args, InvokeOptions? opts = null)
    public static Output<GetDLPNotificationTemplatesResult> Invoke(GetDLPNotificationTemplatesInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetDLPNotificationTemplatesResult> getDLPNotificationTemplates(GetDLPNotificationTemplatesArgs args, InvokeOptions options)
public static Output<GetDLPNotificationTemplatesResult> getDLPNotificationTemplates(GetDLPNotificationTemplatesArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: zia:index/getDLPNotificationTemplates:getDLPNotificationTemplates
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

Id int
Name string
Id int
Name string
id Integer
name String
id number
name string
id int
name str
id Number
name String

getDLPNotificationTemplates Result

The following output properties are available:

AttachContent bool
HtmlMessage string
Id int
Name string
PlainTextMessage string
Subject string
TlsEnabled bool
AttachContent bool
HtmlMessage string
Id int
Name string
PlainTextMessage string
Subject string
TlsEnabled bool
attachContent Boolean
htmlMessage String
id Integer
name String
plainTextMessage String
subject String
tlsEnabled Boolean
attachContent boolean
htmlMessage string
id number
name string
plainTextMessage string
subject string
tlsEnabled boolean
attachContent Boolean
htmlMessage String
id Number
name String
plainTextMessage String
subject String
tlsEnabled Boolean

Package Details

Repository
zia zscaler/pulumi-zia
License
MIT
Notes
This Pulumi package is based on the zia Terraform Provider.
Zscaler Internet Access v0.0.7 published on Tuesday, Jul 30, 2024 by Zscaler