published on Thursday, Jul 16, 2026 by Pulumi
published on Thursday, Jul 16, 2026 by Pulumi
Accepted Permissions
Zero Trust ReadZero 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:
- Account
Id string - Name string
- Description string
- Account
Id string - Name string
- Description string
- account_
id string - name string
- description string
- account
Id String - name String
- description String
- account
Id string - name string
- description string
- account_
id str - name str
- description str
- account
Id String - name String
- description String
Outputs
All input properties are implicitly available as output properties. Additionally, the ZeroTrustDlpSensitivityGroup resource produces the following output properties:
- Created
At string - Id string
- The provider-assigned unique ID for this managed resource.
- Levels
List<Zero
Trust Dlp Sensitivity Group Level> - Template
Id string - Updated
At string
- Created
At string - Id string
- The provider-assigned unique ID for this managed resource.
- Levels
[]Zero
Trust Dlp Sensitivity Group Level - Template
Id string - Updated
At string
- created_
at string - id string
- The provider-assigned unique ID for this managed resource.
- levels list(object)
- template_
id string - updated_
at string
- created
At String - id String
- The provider-assigned unique ID for this managed resource.
- levels
List<Zero
Trust Dlp Sensitivity Group Level> - template
Id String - updated
At String
- created
At string - id string
- The provider-assigned unique ID for this managed resource.
- levels
Zero
Trust Dlp Sensitivity Group Level[] - template
Id string - updated
At string
- created_
at str - id str
- The provider-assigned unique ID for this managed resource.
- levels
Sequence[Zero
Trust Dlp Sensitivity Group Level] - template_
id str - updated_
at str
- created
At String - id String
- The provider-assigned unique ID for this managed resource.
- levels List<Property Map>
- template
Id String - updated
At 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) -> ZeroTrustDlpSensitivityGroupfunc 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.
- Account
Id string - Created
At string - Description string
- Levels
List<Zero
Trust Dlp Sensitivity Group Level> - Name string
- Template
Id string - Updated
At string
- Account
Id string - Created
At string - Description string
- Levels
[]Zero
Trust Dlp Sensitivity Group Level Args - Name string
- Template
Id string - Updated
At string
- account_
id string - created_
at string - description string
- levels list(object)
- name string
- template_
id string - updated_
at string
- account
Id String - created
At String - description String
- levels
List<Zero
Trust Dlp Sensitivity Group Level> - name String
- template
Id String - updated
At String
- account
Id string - created
At string - description string
- levels
Zero
Trust Dlp Sensitivity Group Level[] - name string
- template
Id string - updated
At string
- account
Id String - created
At String - description String
- levels List<Property Map>
- name String
- template
Id String - updated
At String
Supporting Types
ZeroTrustDlpSensitivityGroupLevel, ZeroTrustDlpSensitivityGroupLevelArgs
- Created
At string - Description string
- Id string
- Name string
- Updated
At string
- Created
At string - Description string
- Id string
- Name string
- Updated
At string
- created_
at string - description string
- id string
- name string
- updated_
at string
- created
At String - description String
- id String
- name String
- updated
At String
- created
At string - description string
- id string
- name string
- updated
At string
- created_
at str - description str
- id str
- name str
- updated_
at str
- created
At String - description String
- id String
- name String
- updated
At 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
cloudflareTerraform Provider.
published on Thursday, Jul 16, 2026 by Pulumi