checkpoint.ManagementLdapGroup
Explore with Pulumi AI
This resource allows you to execute Check Point Ldap Group.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as checkpoint from "@pulumi/checkpoint";
const example = new checkpoint.ManagementLdapGroup("example", {
accountUnit: "TestLdapAccountUnit",
accountUnitBranch: "OU=Test",
applyFilterForDynamicGroup: true,
groupPrefix: "N=TestGroup",
ldapFilter: "N=AnotherGroup",
scope: "only_sub_tree",
subTreePrefix: "CA=AC",
});
import pulumi
import pulumi_checkpoint as checkpoint
example = checkpoint.ManagementLdapGroup("example",
account_unit="TestLdapAccountUnit",
account_unit_branch="OU=Test",
apply_filter_for_dynamic_group=True,
group_prefix="N=TestGroup",
ldap_filter="N=AnotherGroup",
scope="only_sub_tree",
sub_tree_prefix="CA=AC")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/checkpoint/v2/checkpoint"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := checkpoint.NewManagementLdapGroup(ctx, "example", &checkpoint.ManagementLdapGroupArgs{
AccountUnit: pulumi.String("TestLdapAccountUnit"),
AccountUnitBranch: pulumi.String("OU=Test"),
ApplyFilterForDynamicGroup: pulumi.Bool(true),
GroupPrefix: pulumi.String("N=TestGroup"),
LdapFilter: pulumi.String("N=AnotherGroup"),
Scope: pulumi.String("only_sub_tree"),
SubTreePrefix: pulumi.String("CA=AC"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Checkpoint = Pulumi.Checkpoint;
return await Deployment.RunAsync(() =>
{
var example = new Checkpoint.ManagementLdapGroup("example", new()
{
AccountUnit = "TestLdapAccountUnit",
AccountUnitBranch = "OU=Test",
ApplyFilterForDynamicGroup = true,
GroupPrefix = "N=TestGroup",
LdapFilter = "N=AnotherGroup",
Scope = "only_sub_tree",
SubTreePrefix = "CA=AC",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.checkpoint.ManagementLdapGroup;
import com.pulumi.checkpoint.ManagementLdapGroupArgs;
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) {
var example = new ManagementLdapGroup("example", ManagementLdapGroupArgs.builder()
.accountUnit("TestLdapAccountUnit")
.accountUnitBranch("OU=Test")
.applyFilterForDynamicGroup(true)
.groupPrefix("N=TestGroup")
.ldapFilter("N=AnotherGroup")
.scope("only_sub_tree")
.subTreePrefix("CA=AC")
.build());
}
}
resources:
example:
type: checkpoint:ManagementLdapGroup
properties:
accountUnit: TestLdapAccountUnit
accountUnitBranch: OU=Test
applyFilterForDynamicGroup: true
groupPrefix: N=TestGroup
ldapFilter: N=AnotherGroup
scope: only_sub_tree
subTreePrefix: CA=AC
Create ManagementLdapGroup Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ManagementLdapGroup(name: string, args: ManagementLdapGroupArgs, opts?: CustomResourceOptions);
@overload
def ManagementLdapGroup(resource_name: str,
args: ManagementLdapGroupArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ManagementLdapGroup(resource_name: str,
opts: Optional[ResourceOptions] = None,
account_unit: Optional[str] = None,
account_unit_branch: Optional[str] = None,
apply_filter_for_dynamic_group: Optional[bool] = None,
color: Optional[str] = None,
comments: Optional[str] = None,
group_prefix: Optional[str] = None,
ignore_errors: Optional[bool] = None,
ignore_warnings: Optional[bool] = None,
ldap_filter: Optional[str] = None,
management_ldap_group_id: Optional[str] = None,
name: Optional[str] = None,
scope: Optional[str] = None,
sub_tree_prefix: Optional[str] = None,
tags: Optional[Sequence[str]] = None)
func NewManagementLdapGroup(ctx *Context, name string, args ManagementLdapGroupArgs, opts ...ResourceOption) (*ManagementLdapGroup, error)
public ManagementLdapGroup(string name, ManagementLdapGroupArgs args, CustomResourceOptions? opts = null)
public ManagementLdapGroup(String name, ManagementLdapGroupArgs args)
public ManagementLdapGroup(String name, ManagementLdapGroupArgs args, CustomResourceOptions options)
type: checkpoint:ManagementLdapGroup
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ManagementLdapGroupArgs
- 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 ManagementLdapGroupArgs
- 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 ManagementLdapGroupArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ManagementLdapGroupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ManagementLdapGroupArgs
- 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 managementLdapGroupResource = new Checkpoint.ManagementLdapGroup("managementLdapGroupResource", new()
{
AccountUnit = "string",
AccountUnitBranch = "string",
ApplyFilterForDynamicGroup = false,
Color = "string",
Comments = "string",
GroupPrefix = "string",
IgnoreErrors = false,
IgnoreWarnings = false,
LdapFilter = "string",
ManagementLdapGroupId = "string",
Name = "string",
Scope = "string",
SubTreePrefix = "string",
Tags = new[]
{
"string",
},
});
example, err := checkpoint.NewManagementLdapGroup(ctx, "managementLdapGroupResource", &checkpoint.ManagementLdapGroupArgs{
AccountUnit: pulumi.String("string"),
AccountUnitBranch: pulumi.String("string"),
ApplyFilterForDynamicGroup: pulumi.Bool(false),
Color: pulumi.String("string"),
Comments: pulumi.String("string"),
GroupPrefix: pulumi.String("string"),
IgnoreErrors: pulumi.Bool(false),
IgnoreWarnings: pulumi.Bool(false),
LdapFilter: pulumi.String("string"),
ManagementLdapGroupId: pulumi.String("string"),
Name: pulumi.String("string"),
Scope: pulumi.String("string"),
SubTreePrefix: pulumi.String("string"),
Tags: pulumi.StringArray{
pulumi.String("string"),
},
})
var managementLdapGroupResource = new ManagementLdapGroup("managementLdapGroupResource", ManagementLdapGroupArgs.builder()
.accountUnit("string")
.accountUnitBranch("string")
.applyFilterForDynamicGroup(false)
.color("string")
.comments("string")
.groupPrefix("string")
.ignoreErrors(false)
.ignoreWarnings(false)
.ldapFilter("string")
.managementLdapGroupId("string")
.name("string")
.scope("string")
.subTreePrefix("string")
.tags("string")
.build());
management_ldap_group_resource = checkpoint.ManagementLdapGroup("managementLdapGroupResource",
account_unit="string",
account_unit_branch="string",
apply_filter_for_dynamic_group=False,
color="string",
comments="string",
group_prefix="string",
ignore_errors=False,
ignore_warnings=False,
ldap_filter="string",
management_ldap_group_id="string",
name="string",
scope="string",
sub_tree_prefix="string",
tags=["string"])
const managementLdapGroupResource = new checkpoint.ManagementLdapGroup("managementLdapGroupResource", {
accountUnit: "string",
accountUnitBranch: "string",
applyFilterForDynamicGroup: false,
color: "string",
comments: "string",
groupPrefix: "string",
ignoreErrors: false,
ignoreWarnings: false,
ldapFilter: "string",
managementLdapGroupId: "string",
name: "string",
scope: "string",
subTreePrefix: "string",
tags: ["string"],
});
type: checkpoint:ManagementLdapGroup
properties:
accountUnit: string
accountUnitBranch: string
applyFilterForDynamicGroup: false
color: string
comments: string
groupPrefix: string
ignoreErrors: false
ignoreWarnings: false
ldapFilter: string
managementLdapGroupId: string
name: string
scope: string
subTreePrefix: string
tags:
- string
ManagementLdapGroup 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 ManagementLdapGroup resource accepts the following input properties:
- Account
Unit string - LDAP account unit of the group. Identified by name or UID.
- Account
Unit stringBranch - Branch of the selected LDAP Account Unit.
- Apply
Filter boolFor Dynamic Group - Indicate whether to apply LDAP filter for dynamic group. Relevant only when 'scope' is not set to 'only_group_in_branch'.
- Color string
- Color of the object. Should be one of existing colors.
- Comments string
- Comments string.
- Group
Prefix string - Group name in the selected branch. Required only when 'scope' is set to 'only_group_in_branch'. Must be in DN syntax.
- Ignore
Errors bool - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- Ignore
Warnings bool - Apply changes ignoring warnings.
- Ldap
Filter string - LDAP filter for the dynamic group. Relevant only when 'apply-filter-for-dynamic-group' is set to 'true'.
- Management
Ldap stringGroup Id - Name string
- Object name.
- Scope string
- Group's scope. There are three possible ways of defining a group, based on the users defined on the Account Unit.
- Sub
Tree stringPrefix - Sub tree prefix of the selected branch. Relevant only when 'scope' is set to 'only_sub_prefix'. Must be in DN syntax.
- List<string>
- Collection of tag identifiers.tags blocks are documented below.
- Account
Unit string - LDAP account unit of the group. Identified by name or UID.
- Account
Unit stringBranch - Branch of the selected LDAP Account Unit.
- Apply
Filter boolFor Dynamic Group - Indicate whether to apply LDAP filter for dynamic group. Relevant only when 'scope' is not set to 'only_group_in_branch'.
- Color string
- Color of the object. Should be one of existing colors.
- Comments string
- Comments string.
- Group
Prefix string - Group name in the selected branch. Required only when 'scope' is set to 'only_group_in_branch'. Must be in DN syntax.
- Ignore
Errors bool - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- Ignore
Warnings bool - Apply changes ignoring warnings.
- Ldap
Filter string - LDAP filter for the dynamic group. Relevant only when 'apply-filter-for-dynamic-group' is set to 'true'.
- Management
Ldap stringGroup Id - Name string
- Object name.
- Scope string
- Group's scope. There are three possible ways of defining a group, based on the users defined on the Account Unit.
- Sub
Tree stringPrefix - Sub tree prefix of the selected branch. Relevant only when 'scope' is set to 'only_sub_prefix'. Must be in DN syntax.
- []string
- Collection of tag identifiers.tags blocks are documented below.
- account
Unit String - LDAP account unit of the group. Identified by name or UID.
- account
Unit StringBranch - Branch of the selected LDAP Account Unit.
- apply
Filter BooleanFor Dynamic Group - Indicate whether to apply LDAP filter for dynamic group. Relevant only when 'scope' is not set to 'only_group_in_branch'.
- color String
- Color of the object. Should be one of existing colors.
- comments String
- Comments string.
- group
Prefix String - Group name in the selected branch. Required only when 'scope' is set to 'only_group_in_branch'. Must be in DN syntax.
- ignore
Errors Boolean - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- ignore
Warnings Boolean - Apply changes ignoring warnings.
- ldap
Filter String - LDAP filter for the dynamic group. Relevant only when 'apply-filter-for-dynamic-group' is set to 'true'.
- management
Ldap StringGroup Id - name String
- Object name.
- scope String
- Group's scope. There are three possible ways of defining a group, based on the users defined on the Account Unit.
- sub
Tree StringPrefix - Sub tree prefix of the selected branch. Relevant only when 'scope' is set to 'only_sub_prefix'. Must be in DN syntax.
- List<String>
- Collection of tag identifiers.tags blocks are documented below.
- account
Unit string - LDAP account unit of the group. Identified by name or UID.
- account
Unit stringBranch - Branch of the selected LDAP Account Unit.
- apply
Filter booleanFor Dynamic Group - Indicate whether to apply LDAP filter for dynamic group. Relevant only when 'scope' is not set to 'only_group_in_branch'.
- color string
- Color of the object. Should be one of existing colors.
- comments string
- Comments string.
- group
Prefix string - Group name in the selected branch. Required only when 'scope' is set to 'only_group_in_branch'. Must be in DN syntax.
- ignore
Errors boolean - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- ignore
Warnings boolean - Apply changes ignoring warnings.
- ldap
Filter string - LDAP filter for the dynamic group. Relevant only when 'apply-filter-for-dynamic-group' is set to 'true'.
- management
Ldap stringGroup Id - name string
- Object name.
- scope string
- Group's scope. There are three possible ways of defining a group, based on the users defined on the Account Unit.
- sub
Tree stringPrefix - Sub tree prefix of the selected branch. Relevant only when 'scope' is set to 'only_sub_prefix'. Must be in DN syntax.
- string[]
- Collection of tag identifiers.tags blocks are documented below.
- account_
unit str - LDAP account unit of the group. Identified by name or UID.
- account_
unit_ strbranch - Branch of the selected LDAP Account Unit.
- apply_
filter_ boolfor_ dynamic_ group - Indicate whether to apply LDAP filter for dynamic group. Relevant only when 'scope' is not set to 'only_group_in_branch'.
- color str
- Color of the object. Should be one of existing colors.
- comments str
- Comments string.
- group_
prefix str - Group name in the selected branch. Required only when 'scope' is set to 'only_group_in_branch'. Must be in DN syntax.
- ignore_
errors bool - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- ignore_
warnings bool - Apply changes ignoring warnings.
- ldap_
filter str - LDAP filter for the dynamic group. Relevant only when 'apply-filter-for-dynamic-group' is set to 'true'.
- management_
ldap_ strgroup_ id - name str
- Object name.
- scope str
- Group's scope. There are three possible ways of defining a group, based on the users defined on the Account Unit.
- sub_
tree_ strprefix - Sub tree prefix of the selected branch. Relevant only when 'scope' is set to 'only_sub_prefix'. Must be in DN syntax.
- Sequence[str]
- Collection of tag identifiers.tags blocks are documented below.
- account
Unit String - LDAP account unit of the group. Identified by name or UID.
- account
Unit StringBranch - Branch of the selected LDAP Account Unit.
- apply
Filter BooleanFor Dynamic Group - Indicate whether to apply LDAP filter for dynamic group. Relevant only when 'scope' is not set to 'only_group_in_branch'.
- color String
- Color of the object. Should be one of existing colors.
- comments String
- Comments string.
- group
Prefix String - Group name in the selected branch. Required only when 'scope' is set to 'only_group_in_branch'. Must be in DN syntax.
- ignore
Errors Boolean - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- ignore
Warnings Boolean - Apply changes ignoring warnings.
- ldap
Filter String - LDAP filter for the dynamic group. Relevant only when 'apply-filter-for-dynamic-group' is set to 'true'.
- management
Ldap StringGroup Id - name String
- Object name.
- scope String
- Group's scope. There are three possible ways of defining a group, based on the users defined on the Account Unit.
- sub
Tree StringPrefix - Sub tree prefix of the selected branch. Relevant only when 'scope' is set to 'only_sub_prefix'. Must be in DN syntax.
- List<String>
- Collection of tag identifiers.tags blocks are documented below.
Outputs
All input properties are implicitly available as output properties. Additionally, the ManagementLdapGroup resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing ManagementLdapGroup Resource
Get an existing ManagementLdapGroup 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?: ManagementLdapGroupState, opts?: CustomResourceOptions): ManagementLdapGroup
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
account_unit: Optional[str] = None,
account_unit_branch: Optional[str] = None,
apply_filter_for_dynamic_group: Optional[bool] = None,
color: Optional[str] = None,
comments: Optional[str] = None,
group_prefix: Optional[str] = None,
ignore_errors: Optional[bool] = None,
ignore_warnings: Optional[bool] = None,
ldap_filter: Optional[str] = None,
management_ldap_group_id: Optional[str] = None,
name: Optional[str] = None,
scope: Optional[str] = None,
sub_tree_prefix: Optional[str] = None,
tags: Optional[Sequence[str]] = None) -> ManagementLdapGroup
func GetManagementLdapGroup(ctx *Context, name string, id IDInput, state *ManagementLdapGroupState, opts ...ResourceOption) (*ManagementLdapGroup, error)
public static ManagementLdapGroup Get(string name, Input<string> id, ManagementLdapGroupState? state, CustomResourceOptions? opts = null)
public static ManagementLdapGroup get(String name, Output<String> id, ManagementLdapGroupState state, CustomResourceOptions options)
resources: _: type: checkpoint:ManagementLdapGroup get: 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
Unit string - LDAP account unit of the group. Identified by name or UID.
- Account
Unit stringBranch - Branch of the selected LDAP Account Unit.
- Apply
Filter boolFor Dynamic Group - Indicate whether to apply LDAP filter for dynamic group. Relevant only when 'scope' is not set to 'only_group_in_branch'.
- Color string
- Color of the object. Should be one of existing colors.
- Comments string
- Comments string.
- Group
Prefix string - Group name in the selected branch. Required only when 'scope' is set to 'only_group_in_branch'. Must be in DN syntax.
- Ignore
Errors bool - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- Ignore
Warnings bool - Apply changes ignoring warnings.
- Ldap
Filter string - LDAP filter for the dynamic group. Relevant only when 'apply-filter-for-dynamic-group' is set to 'true'.
- Management
Ldap stringGroup Id - Name string
- Object name.
- Scope string
- Group's scope. There are three possible ways of defining a group, based on the users defined on the Account Unit.
- Sub
Tree stringPrefix - Sub tree prefix of the selected branch. Relevant only when 'scope' is set to 'only_sub_prefix'. Must be in DN syntax.
- List<string>
- Collection of tag identifiers.tags blocks are documented below.
- Account
Unit string - LDAP account unit of the group. Identified by name or UID.
- Account
Unit stringBranch - Branch of the selected LDAP Account Unit.
- Apply
Filter boolFor Dynamic Group - Indicate whether to apply LDAP filter for dynamic group. Relevant only when 'scope' is not set to 'only_group_in_branch'.
- Color string
- Color of the object. Should be one of existing colors.
- Comments string
- Comments string.
- Group
Prefix string - Group name in the selected branch. Required only when 'scope' is set to 'only_group_in_branch'. Must be in DN syntax.
- Ignore
Errors bool - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- Ignore
Warnings bool - Apply changes ignoring warnings.
- Ldap
Filter string - LDAP filter for the dynamic group. Relevant only when 'apply-filter-for-dynamic-group' is set to 'true'.
- Management
Ldap stringGroup Id - Name string
- Object name.
- Scope string
- Group's scope. There are three possible ways of defining a group, based on the users defined on the Account Unit.
- Sub
Tree stringPrefix - Sub tree prefix of the selected branch. Relevant only when 'scope' is set to 'only_sub_prefix'. Must be in DN syntax.
- []string
- Collection of tag identifiers.tags blocks are documented below.
- account
Unit String - LDAP account unit of the group. Identified by name or UID.
- account
Unit StringBranch - Branch of the selected LDAP Account Unit.
- apply
Filter BooleanFor Dynamic Group - Indicate whether to apply LDAP filter for dynamic group. Relevant only when 'scope' is not set to 'only_group_in_branch'.
- color String
- Color of the object. Should be one of existing colors.
- comments String
- Comments string.
- group
Prefix String - Group name in the selected branch. Required only when 'scope' is set to 'only_group_in_branch'. Must be in DN syntax.
- ignore
Errors Boolean - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- ignore
Warnings Boolean - Apply changes ignoring warnings.
- ldap
Filter String - LDAP filter for the dynamic group. Relevant only when 'apply-filter-for-dynamic-group' is set to 'true'.
- management
Ldap StringGroup Id - name String
- Object name.
- scope String
- Group's scope. There are three possible ways of defining a group, based on the users defined on the Account Unit.
- sub
Tree StringPrefix - Sub tree prefix of the selected branch. Relevant only when 'scope' is set to 'only_sub_prefix'. Must be in DN syntax.
- List<String>
- Collection of tag identifiers.tags blocks are documented below.
- account
Unit string - LDAP account unit of the group. Identified by name or UID.
- account
Unit stringBranch - Branch of the selected LDAP Account Unit.
- apply
Filter booleanFor Dynamic Group - Indicate whether to apply LDAP filter for dynamic group. Relevant only when 'scope' is not set to 'only_group_in_branch'.
- color string
- Color of the object. Should be one of existing colors.
- comments string
- Comments string.
- group
Prefix string - Group name in the selected branch. Required only when 'scope' is set to 'only_group_in_branch'. Must be in DN syntax.
- ignore
Errors boolean - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- ignore
Warnings boolean - Apply changes ignoring warnings.
- ldap
Filter string - LDAP filter for the dynamic group. Relevant only when 'apply-filter-for-dynamic-group' is set to 'true'.
- management
Ldap stringGroup Id - name string
- Object name.
- scope string
- Group's scope. There are three possible ways of defining a group, based on the users defined on the Account Unit.
- sub
Tree stringPrefix - Sub tree prefix of the selected branch. Relevant only when 'scope' is set to 'only_sub_prefix'. Must be in DN syntax.
- string[]
- Collection of tag identifiers.tags blocks are documented below.
- account_
unit str - LDAP account unit of the group. Identified by name or UID.
- account_
unit_ strbranch - Branch of the selected LDAP Account Unit.
- apply_
filter_ boolfor_ dynamic_ group - Indicate whether to apply LDAP filter for dynamic group. Relevant only when 'scope' is not set to 'only_group_in_branch'.
- color str
- Color of the object. Should be one of existing colors.
- comments str
- Comments string.
- group_
prefix str - Group name in the selected branch. Required only when 'scope' is set to 'only_group_in_branch'. Must be in DN syntax.
- ignore_
errors bool - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- ignore_
warnings bool - Apply changes ignoring warnings.
- ldap_
filter str - LDAP filter for the dynamic group. Relevant only when 'apply-filter-for-dynamic-group' is set to 'true'.
- management_
ldap_ strgroup_ id - name str
- Object name.
- scope str
- Group's scope. There are three possible ways of defining a group, based on the users defined on the Account Unit.
- sub_
tree_ strprefix - Sub tree prefix of the selected branch. Relevant only when 'scope' is set to 'only_sub_prefix'. Must be in DN syntax.
- Sequence[str]
- Collection of tag identifiers.tags blocks are documented below.
- account
Unit String - LDAP account unit of the group. Identified by name or UID.
- account
Unit StringBranch - Branch of the selected LDAP Account Unit.
- apply
Filter BooleanFor Dynamic Group - Indicate whether to apply LDAP filter for dynamic group. Relevant only when 'scope' is not set to 'only_group_in_branch'.
- color String
- Color of the object. Should be one of existing colors.
- comments String
- Comments string.
- group
Prefix String - Group name in the selected branch. Required only when 'scope' is set to 'only_group_in_branch'. Must be in DN syntax.
- ignore
Errors Boolean - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- ignore
Warnings Boolean - Apply changes ignoring warnings.
- ldap
Filter String - LDAP filter for the dynamic group. Relevant only when 'apply-filter-for-dynamic-group' is set to 'true'.
- management
Ldap StringGroup Id - name String
- Object name.
- scope String
- Group's scope. There are three possible ways of defining a group, based on the users defined on the Account Unit.
- sub
Tree StringPrefix - Sub tree prefix of the selected branch. Relevant only when 'scope' is set to 'only_sub_prefix'. Must be in DN syntax.
- List<String>
- Collection of tag identifiers.tags blocks are documented below.
Package Details
- Repository
- checkpoint checkpointsw/terraform-provider-checkpoint
- License
- Notes
- This Pulumi package is based on the
checkpoint
Terraform Provider.