1. Packages
  2. Packages
  3. Cloudflare Provider
  4. API Docs
  5. ZeroTrustDlpSensitivityGroup
Viewing docs for Cloudflare v6.18.0
published on Thursday, Jul 16, 2026 by Pulumi
cloudflare logo
Viewing docs for Cloudflare v6.18.0
published on Thursday, Jul 16, 2026 by Pulumi

    Accepted Permissions

    • Zero Trust Read
    • Zero Trust Write

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as cloudflare from "@pulumi/cloudflare";
    
    const exampleZeroTrustDlpSensitivityGroup = new cloudflare.ZeroTrustDlpSensitivityGroup("example_zero_trust_dlp_sensitivity_group", {
        accountId: "account_id",
        name: "name",
        description: "description",
    });
    
    import pulumi
    import pulumi_cloudflare as cloudflare
    
    example_zero_trust_dlp_sensitivity_group = cloudflare.ZeroTrustDlpSensitivityGroup("example_zero_trust_dlp_sensitivity_group",
        account_id="account_id",
        name="name",
        description="description")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-cloudflare/sdk/v6/go/cloudflare"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := cloudflare.NewZeroTrustDlpSensitivityGroup(ctx, "example_zero_trust_dlp_sensitivity_group", &cloudflare.ZeroTrustDlpSensitivityGroupArgs{
    			AccountId:   pulumi.String("account_id"),
    			Name:        pulumi.String("name"),
    			Description: pulumi.String("description"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Cloudflare = Pulumi.Cloudflare;
    
    return await Deployment.RunAsync(() => 
    {
        var exampleZeroTrustDlpSensitivityGroup = new Cloudflare.ZeroTrustDlpSensitivityGroup("example_zero_trust_dlp_sensitivity_group", new()
        {
            AccountId = "account_id",
            Name = "name",
            Description = "description",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.cloudflare.ZeroTrustDlpSensitivityGroup;
    import com.pulumi.cloudflare.ZeroTrustDlpSensitivityGroupArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    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) {
            var exampleZeroTrustDlpSensitivityGroup = new ZeroTrustDlpSensitivityGroup("exampleZeroTrustDlpSensitivityGroup", ZeroTrustDlpSensitivityGroupArgs.builder()
                .accountId("account_id")
                .name("name")
                .description("description")
                .build());
    
        }
    }
    
    resources:
      exampleZeroTrustDlpSensitivityGroup:
        type: cloudflare:ZeroTrustDlpSensitivityGroup
        name: example_zero_trust_dlp_sensitivity_group
        properties:
          accountId: account_id
          name: name
          description: description
    
    pulumi {
      required_providers {
        cloudflare = {
          source = "pulumi/cloudflare"
        }
      }
    }
    
    resource "cloudflare_zerotrustdlpsensitivitygroup" "example_zero_trust_dlp_sensitivity_group" {
      account_id  = "account_id"
      name        = "name"
      description = "description"
    }
    

    Create ZeroTrustDlpSensitivityGroup Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new ZeroTrustDlpSensitivityGroup(name: string, args: ZeroTrustDlpSensitivityGroupArgs, opts?: CustomResourceOptions);
    @overload
    def ZeroTrustDlpSensitivityGroup(resource_name: str,
                                     args: ZeroTrustDlpSensitivityGroupArgs,
                                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def ZeroTrustDlpSensitivityGroup(resource_name: str,
                                     opts: Optional[ResourceOptions] = None,
                                     account_id: Optional[str] = None,
                                     name: Optional[str] = None,
                                     description: Optional[str] = None)
    func NewZeroTrustDlpSensitivityGroup(ctx *Context, name string, args ZeroTrustDlpSensitivityGroupArgs, opts ...ResourceOption) (*ZeroTrustDlpSensitivityGroup, error)
    public ZeroTrustDlpSensitivityGroup(string name, ZeroTrustDlpSensitivityGroupArgs args, CustomResourceOptions? opts = null)
    public ZeroTrustDlpSensitivityGroup(String name, ZeroTrustDlpSensitivityGroupArgs args)
    public ZeroTrustDlpSensitivityGroup(String name, ZeroTrustDlpSensitivityGroupArgs args, CustomResourceOptions options)
    
    type: cloudflare:ZeroTrustDlpSensitivityGroup
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "cloudflare_zero_trust_dlp_sensitivity_group" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args ZeroTrustDlpSensitivityGroupArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args ZeroTrustDlpSensitivityGroupArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args ZeroTrustDlpSensitivityGroupArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ZeroTrustDlpSensitivityGroupArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ZeroTrustDlpSensitivityGroupArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var zeroTrustDlpSensitivityGroupResource = new Cloudflare.ZeroTrustDlpSensitivityGroup("zeroTrustDlpSensitivityGroupResource", new()
    {
        AccountId = "string",
        Name = "string",
        Description = "string",
    });
    
    example, err := cloudflare.NewZeroTrustDlpSensitivityGroup(ctx, "zeroTrustDlpSensitivityGroupResource", &cloudflare.ZeroTrustDlpSensitivityGroupArgs{
    	AccountId:   pulumi.String("string"),
    	Name:        pulumi.String("string"),
    	Description: pulumi.String("string"),
    })
    
    resource "cloudflare_zero_trust_dlp_sensitivity_group" "zeroTrustDlpSensitivityGroupResource" {
      lifecycle {
        create_before_destroy = true
      }
      account_id  = "string"
      name        = "string"
      description = "string"
    }
    
    var zeroTrustDlpSensitivityGroupResource = new ZeroTrustDlpSensitivityGroup("zeroTrustDlpSensitivityGroupResource", ZeroTrustDlpSensitivityGroupArgs.builder()
        .accountId("string")
        .name("string")
        .description("string")
        .build());
    
    zero_trust_dlp_sensitivity_group_resource = cloudflare.ZeroTrustDlpSensitivityGroup("zeroTrustDlpSensitivityGroupResource",
        account_id="string",
        name="string",
        description="string")
    
    const zeroTrustDlpSensitivityGroupResource = new cloudflare.ZeroTrustDlpSensitivityGroup("zeroTrustDlpSensitivityGroupResource", {
        accountId: "string",
        name: "string",
        description: "string",
    });
    
    type: cloudflare:ZeroTrustDlpSensitivityGroup
    properties:
        accountId: string
        description: string
        name: string
    

    ZeroTrustDlpSensitivityGroup Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The ZeroTrustDlpSensitivityGroup resource accepts the following input properties:

    AccountId string
    Name string
    Description string
    AccountId string
    Name string
    Description string
    account_id string
    name string
    description string
    accountId String
    name String
    description String
    accountId string
    name string
    description string
    accountId String
    name String
    description String

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ZeroTrustDlpSensitivityGroup resource produces the following output properties:

    CreatedAt string
    Id string
    The provider-assigned unique ID for this managed resource.
    Levels List<ZeroTrustDlpSensitivityGroupLevel>
    TemplateId string
    UpdatedAt string
    CreatedAt string
    Id string
    The provider-assigned unique ID for this managed resource.
    Levels []ZeroTrustDlpSensitivityGroupLevel
    TemplateId string
    UpdatedAt string
    created_at string
    id string
    The provider-assigned unique ID for this managed resource.
    levels list(object)
    template_id string
    updated_at string
    createdAt String
    id String
    The provider-assigned unique ID for this managed resource.
    levels List<ZeroTrustDlpSensitivityGroupLevel>
    templateId String
    updatedAt String
    createdAt string
    id string
    The provider-assigned unique ID for this managed resource.
    levels ZeroTrustDlpSensitivityGroupLevel[]
    templateId string
    updatedAt string
    created_at str
    id str
    The provider-assigned unique ID for this managed resource.
    levels Sequence[ZeroTrustDlpSensitivityGroupLevel]
    template_id str
    updated_at str
    createdAt String
    id String
    The provider-assigned unique ID for this managed resource.
    levels List<Property Map>
    templateId String
    updatedAt String

    Look up Existing ZeroTrustDlpSensitivityGroup Resource

    Get an existing ZeroTrustDlpSensitivityGroup resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: ZeroTrustDlpSensitivityGroupState, opts?: CustomResourceOptions): ZeroTrustDlpSensitivityGroup
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            account_id: Optional[str] = None,
            created_at: Optional[str] = None,
            description: Optional[str] = None,
            levels: Optional[Sequence[ZeroTrustDlpSensitivityGroupLevelArgs]] = None,
            name: Optional[str] = None,
            template_id: Optional[str] = None,
            updated_at: Optional[str] = None) -> ZeroTrustDlpSensitivityGroup
    func GetZeroTrustDlpSensitivityGroup(ctx *Context, name string, id IDInput, state *ZeroTrustDlpSensitivityGroupState, opts ...ResourceOption) (*ZeroTrustDlpSensitivityGroup, error)
    public static ZeroTrustDlpSensitivityGroup Get(string name, Input<string> id, ZeroTrustDlpSensitivityGroupState? state, CustomResourceOptions? opts = null)
    public static ZeroTrustDlpSensitivityGroup get(String name, Output<String> id, ZeroTrustDlpSensitivityGroupState state, CustomResourceOptions options)
    resources:  _:    type: cloudflare:ZeroTrustDlpSensitivityGroup    get:      id: ${id}
    import {
      to = cloudflare_zero_trust_dlp_sensitivity_group.example
      id = "${id}"
    }
    
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:

    Supporting Types

    ZeroTrustDlpSensitivityGroupLevel, ZeroTrustDlpSensitivityGroupLevelArgs

    CreatedAt string
    Description string
    Id string
    Name string
    UpdatedAt string
    CreatedAt string
    Description string
    Id string
    Name string
    UpdatedAt string
    created_at string
    description string
    id string
    name string
    updated_at string
    createdAt String
    description String
    id String
    name String
    updatedAt String
    createdAt string
    description string
    id string
    name string
    updatedAt string
    createdAt String
    description String
    id String
    name String
    updatedAt String

    Import

    $ pulumi import cloudflare:index/zeroTrustDlpSensitivityGroup:ZeroTrustDlpSensitivityGroup example '<account_id>/<sensitivity_group_id>'
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Cloudflare pulumi/pulumi-cloudflare
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the cloudflare Terraform Provider.
    cloudflare logo
    Viewing docs for Cloudflare v6.18.0
    published on Thursday, Jul 16, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial