ise.identitymanagement.ActiveDirectoryJoinPoint
Explore with Pulumi AI
This resource can manage an Active Directory Join Point.
Example Usage
Coming soon!
Coming soon!
Coming soon!
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.ise.identitymanagement.ActiveDirectoryJoinPoint;
import com.pulumi.ise.identitymanagement.ActiveDirectoryJoinPointArgs;
import com.pulumi.ise.identitymanagement.inputs.ActiveDirectoryJoinPointGroupArgs;
import com.pulumi.ise.identitymanagement.inputs.ActiveDirectoryJoinPointAttributeArgs;
import com.pulumi.ise.identitymanagement.inputs.ActiveDirectoryJoinPointRewriteRuleArgs;
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 ActiveDirectoryJoinPoint("example", ActiveDirectoryJoinPointArgs.builder()
            .name("cisco.local")
            .description("My AD join point")
            .domain("cisco.local")
            .adScopesNames("Default_Scope")
            .enableDomainAllowedList(true)
            .groups(ActiveDirectoryJoinPointGroupArgs.builder()
                .name("cisco.local/operators")
                .sid("S-1-5-32-548")
                .type("GLOBAL")
                .build())
            .attributes(ActiveDirectoryJoinPointAttributeArgs.builder()
                .name("Attribute_1")
                .type("STRING")
                .internal_name("internal_name")
                .default_value("default_string")
                .build())
            .rewriteRules(ActiveDirectoryJoinPointRewriteRuleArgs.builder()
                .row_id("0")
                .rewrite_match("rewrite_match")
                .rewrite_result("rewrite_result")
                .build())
            .enableRewrites(false)
            .enablePassChange(true)
            .enableMachineAuth(true)
            .enableMachineAccess(true)
            .enableDialinPermissionCheck(false)
            .plaintextAuth(false)
            .agingTime(5)
            .enableCallbackForDialinClient(false)
            .identityNotInAdBehaviour("SEARCH_JOINED_FOREST")
            .unreachableDomainsBehaviour("PROCEED")
            .schema("ACTIVE_DIRECTORY")
            .firstName("givenName")
            .department("department")
            .lastName("sn")
            .organizationalUnit("company")
            .jobTitle("title")
            .locality("l")
            .email("mail")
            .stateOrProvince("st")
            .telephone("telephoneNumber")
            .country("co")
            .streetAddress("streetAddress")
            .enableFailedAuthProtection(false)
            .failedAuthThreshold(5)
            .authProtectionType("WIRELESS")
            .build());
    }
}
resources:
  example:
    type: ise:identitymanagement:ActiveDirectoryJoinPoint
    properties:
      name: cisco.local
      description: My AD join point
      domain: cisco.local
      adScopesNames: Default_Scope
      enableDomainAllowedList: true
      groups:
        - name: cisco.local/operators
          sid: S-1-5-32-548
          type: GLOBAL
      attributes:
        - name: Attribute_1
          type: STRING
          internal_name: internal_name
          default_value: default_string
      rewriteRules:
        - row_id: '0'
          rewrite_match: rewrite_match
          rewrite_result: rewrite_result
      enableRewrites: false
      enablePassChange: true
      enableMachineAuth: true
      enableMachineAccess: true
      enableDialinPermissionCheck: false
      plaintextAuth: false
      agingTime: 5
      enableCallbackForDialinClient: false
      identityNotInAdBehaviour: SEARCH_JOINED_FOREST
      unreachableDomainsBehaviour: PROCEED
      schema: ACTIVE_DIRECTORY
      firstName: givenName
      department: department
      lastName: sn
      organizationalUnit: company
      jobTitle: title
      locality: l
      email: mail
      stateOrProvince: st
      telephone: telephoneNumber
      country: co
      streetAddress: streetAddress
      enableFailedAuthProtection: false
      failedAuthThreshold: 5
      authProtectionType: WIRELESS
Create ActiveDirectoryJoinPoint Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ActiveDirectoryJoinPoint(name: string, args: ActiveDirectoryJoinPointArgs, opts?: CustomResourceOptions);@overload
def ActiveDirectoryJoinPoint(resource_name: str,
                             args: ActiveDirectoryJoinPointArgs,
                             opts: Optional[ResourceOptions] = None)
@overload
def ActiveDirectoryJoinPoint(resource_name: str,
                             opts: Optional[ResourceOptions] = None,
                             domain: Optional[str] = None,
                             enable_rewrites: Optional[bool] = None,
                             street_address: Optional[str] = None,
                             auth_protection_type: Optional[str] = None,
                             country: Optional[str] = None,
                             department: Optional[str] = None,
                             description: Optional[str] = None,
                             failed_auth_threshold: Optional[int] = None,
                             email: Optional[str] = None,
                             enable_callback_for_dialin_client: Optional[bool] = None,
                             enable_dialin_permission_check: Optional[bool] = None,
                             enable_domain_allowed_list: Optional[bool] = None,
                             enable_failed_auth_protection: Optional[bool] = None,
                             enable_machine_access: Optional[bool] = None,
                             enable_machine_auth: Optional[bool] = None,
                             unreachable_domains_behaviour: Optional[str] = None,
                             attributes: Optional[Sequence[ActiveDirectoryJoinPointAttributeArgs]] = None,
                             aging_time: Optional[int] = None,
                             first_name: Optional[str] = None,
                             groups: Optional[Sequence[ActiveDirectoryJoinPointGroupArgs]] = None,
                             identity_not_in_ad_behaviour: Optional[str] = None,
                             job_title: Optional[str] = None,
                             last_name: Optional[str] = None,
                             locality: Optional[str] = None,
                             name: Optional[str] = None,
                             organizational_unit: Optional[str] = None,
                             plaintext_auth: Optional[bool] = None,
                             rewrite_rules: Optional[Sequence[ActiveDirectoryJoinPointRewriteRuleArgs]] = None,
                             schema: Optional[str] = None,
                             state_or_province: Optional[str] = None,
                             ad_scopes_names: Optional[str] = None,
                             telephone: Optional[str] = None,
                             enable_pass_change: Optional[bool] = None)func NewActiveDirectoryJoinPoint(ctx *Context, name string, args ActiveDirectoryJoinPointArgs, opts ...ResourceOption) (*ActiveDirectoryJoinPoint, error)public ActiveDirectoryJoinPoint(string name, ActiveDirectoryJoinPointArgs args, CustomResourceOptions? opts = null)
public ActiveDirectoryJoinPoint(String name, ActiveDirectoryJoinPointArgs args)
public ActiveDirectoryJoinPoint(String name, ActiveDirectoryJoinPointArgs args, CustomResourceOptions options)
type: ise:identitymanagement:ActiveDirectoryJoinPoint
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 ActiveDirectoryJoinPointArgs
- 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 ActiveDirectoryJoinPointArgs
- 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 ActiveDirectoryJoinPointArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ActiveDirectoryJoinPointArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ActiveDirectoryJoinPointArgs
- 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 activeDirectoryJoinPointResource = new Ise.IdentityManagement.ActiveDirectoryJoinPoint("activeDirectoryJoinPointResource", new()
{
    Domain = "string",
    EnableRewrites = false,
    StreetAddress = "string",
    AuthProtectionType = "string",
    Country = "string",
    Department = "string",
    Description = "string",
    FailedAuthThreshold = 0,
    Email = "string",
    EnableCallbackForDialinClient = false,
    EnableDialinPermissionCheck = false,
    EnableDomainAllowedList = false,
    EnableFailedAuthProtection = false,
    EnableMachineAccess = false,
    EnableMachineAuth = false,
    UnreachableDomainsBehaviour = "string",
    Attributes = new[]
    {
        new Ise.IdentityManagement.Inputs.ActiveDirectoryJoinPointAttributeArgs
        {
            DefaultValue = "string",
            InternalName = "string",
            Name = "string",
            Type = "string",
        },
    },
    AgingTime = 0,
    FirstName = "string",
    Groups = new[]
    {
        new Ise.IdentityManagement.Inputs.ActiveDirectoryJoinPointGroupArgs
        {
            Name = "string",
            Sid = "string",
            Type = "string",
        },
    },
    IdentityNotInAdBehaviour = "string",
    JobTitle = "string",
    LastName = "string",
    Locality = "string",
    Name = "string",
    OrganizationalUnit = "string",
    PlaintextAuth = false,
    RewriteRules = new[]
    {
        new Ise.IdentityManagement.Inputs.ActiveDirectoryJoinPointRewriteRuleArgs
        {
            RewriteMatch = "string",
            RewriteResult = "string",
            RowId = "string",
        },
    },
    Schema = "string",
    StateOrProvince = "string",
    AdScopesNames = "string",
    Telephone = "string",
    EnablePassChange = false,
});
example, err := identitymanagement.NewActiveDirectoryJoinPoint(ctx, "activeDirectoryJoinPointResource", &identitymanagement.ActiveDirectoryJoinPointArgs{
	Domain:                        pulumi.String("string"),
	EnableRewrites:                pulumi.Bool(false),
	StreetAddress:                 pulumi.String("string"),
	AuthProtectionType:            pulumi.String("string"),
	Country:                       pulumi.String("string"),
	Department:                    pulumi.String("string"),
	Description:                   pulumi.String("string"),
	FailedAuthThreshold:           pulumi.Int(0),
	Email:                         pulumi.String("string"),
	EnableCallbackForDialinClient: pulumi.Bool(false),
	EnableDialinPermissionCheck:   pulumi.Bool(false),
	EnableDomainAllowedList:       pulumi.Bool(false),
	EnableFailedAuthProtection:    pulumi.Bool(false),
	EnableMachineAccess:           pulumi.Bool(false),
	EnableMachineAuth:             pulumi.Bool(false),
	UnreachableDomainsBehaviour:   pulumi.String("string"),
	Attributes: identitymanagement.ActiveDirectoryJoinPointAttributeArray{
		&identitymanagement.ActiveDirectoryJoinPointAttributeArgs{
			DefaultValue: pulumi.String("string"),
			InternalName: pulumi.String("string"),
			Name:         pulumi.String("string"),
			Type:         pulumi.String("string"),
		},
	},
	AgingTime: pulumi.Int(0),
	FirstName: pulumi.String("string"),
	Groups: identitymanagement.ActiveDirectoryJoinPointGroupArray{
		&identitymanagement.ActiveDirectoryJoinPointGroupArgs{
			Name: pulumi.String("string"),
			Sid:  pulumi.String("string"),
			Type: pulumi.String("string"),
		},
	},
	IdentityNotInAdBehaviour: pulumi.String("string"),
	JobTitle:                 pulumi.String("string"),
	LastName:                 pulumi.String("string"),
	Locality:                 pulumi.String("string"),
	Name:                     pulumi.String("string"),
	OrganizationalUnit:       pulumi.String("string"),
	PlaintextAuth:            pulumi.Bool(false),
	RewriteRules: identitymanagement.ActiveDirectoryJoinPointRewriteRuleArray{
		&identitymanagement.ActiveDirectoryJoinPointRewriteRuleArgs{
			RewriteMatch:  pulumi.String("string"),
			RewriteResult: pulumi.String("string"),
			RowId:         pulumi.String("string"),
		},
	},
	Schema:           pulumi.String("string"),
	StateOrProvince:  pulumi.String("string"),
	AdScopesNames:    pulumi.String("string"),
	Telephone:        pulumi.String("string"),
	EnablePassChange: pulumi.Bool(false),
})
var activeDirectoryJoinPointResource = new ActiveDirectoryJoinPoint("activeDirectoryJoinPointResource", ActiveDirectoryJoinPointArgs.builder()
    .domain("string")
    .enableRewrites(false)
    .streetAddress("string")
    .authProtectionType("string")
    .country("string")
    .department("string")
    .description("string")
    .failedAuthThreshold(0)
    .email("string")
    .enableCallbackForDialinClient(false)
    .enableDialinPermissionCheck(false)
    .enableDomainAllowedList(false)
    .enableFailedAuthProtection(false)
    .enableMachineAccess(false)
    .enableMachineAuth(false)
    .unreachableDomainsBehaviour("string")
    .attributes(ActiveDirectoryJoinPointAttributeArgs.builder()
        .defaultValue("string")
        .internalName("string")
        .name("string")
        .type("string")
        .build())
    .agingTime(0)
    .firstName("string")
    .groups(ActiveDirectoryJoinPointGroupArgs.builder()
        .name("string")
        .sid("string")
        .type("string")
        .build())
    .identityNotInAdBehaviour("string")
    .jobTitle("string")
    .lastName("string")
    .locality("string")
    .name("string")
    .organizationalUnit("string")
    .plaintextAuth(false)
    .rewriteRules(ActiveDirectoryJoinPointRewriteRuleArgs.builder()
        .rewriteMatch("string")
        .rewriteResult("string")
        .rowId("string")
        .build())
    .schema("string")
    .stateOrProvince("string")
    .adScopesNames("string")
    .telephone("string")
    .enablePassChange(false)
    .build());
active_directory_join_point_resource = ise.identitymanagement.ActiveDirectoryJoinPoint("activeDirectoryJoinPointResource",
    domain="string",
    enable_rewrites=False,
    street_address="string",
    auth_protection_type="string",
    country="string",
    department="string",
    description="string",
    failed_auth_threshold=0,
    email="string",
    enable_callback_for_dialin_client=False,
    enable_dialin_permission_check=False,
    enable_domain_allowed_list=False,
    enable_failed_auth_protection=False,
    enable_machine_access=False,
    enable_machine_auth=False,
    unreachable_domains_behaviour="string",
    attributes=[{
        "default_value": "string",
        "internal_name": "string",
        "name": "string",
        "type": "string",
    }],
    aging_time=0,
    first_name="string",
    groups=[{
        "name": "string",
        "sid": "string",
        "type": "string",
    }],
    identity_not_in_ad_behaviour="string",
    job_title="string",
    last_name="string",
    locality="string",
    name="string",
    organizational_unit="string",
    plaintext_auth=False,
    rewrite_rules=[{
        "rewrite_match": "string",
        "rewrite_result": "string",
        "row_id": "string",
    }],
    schema="string",
    state_or_province="string",
    ad_scopes_names="string",
    telephone="string",
    enable_pass_change=False)
const activeDirectoryJoinPointResource = new ise.identitymanagement.ActiveDirectoryJoinPoint("activeDirectoryJoinPointResource", {
    domain: "string",
    enableRewrites: false,
    streetAddress: "string",
    authProtectionType: "string",
    country: "string",
    department: "string",
    description: "string",
    failedAuthThreshold: 0,
    email: "string",
    enableCallbackForDialinClient: false,
    enableDialinPermissionCheck: false,
    enableDomainAllowedList: false,
    enableFailedAuthProtection: false,
    enableMachineAccess: false,
    enableMachineAuth: false,
    unreachableDomainsBehaviour: "string",
    attributes: [{
        defaultValue: "string",
        internalName: "string",
        name: "string",
        type: "string",
    }],
    agingTime: 0,
    firstName: "string",
    groups: [{
        name: "string",
        sid: "string",
        type: "string",
    }],
    identityNotInAdBehaviour: "string",
    jobTitle: "string",
    lastName: "string",
    locality: "string",
    name: "string",
    organizationalUnit: "string",
    plaintextAuth: false,
    rewriteRules: [{
        rewriteMatch: "string",
        rewriteResult: "string",
        rowId: "string",
    }],
    schema: "string",
    stateOrProvince: "string",
    adScopesNames: "string",
    telephone: "string",
    enablePassChange: false,
});
type: ise:identitymanagement:ActiveDirectoryJoinPoint
properties:
    adScopesNames: string
    agingTime: 0
    attributes:
        - defaultValue: string
          internalName: string
          name: string
          type: string
    authProtectionType: string
    country: string
    department: string
    description: string
    domain: string
    email: string
    enableCallbackForDialinClient: false
    enableDialinPermissionCheck: false
    enableDomainAllowedList: false
    enableFailedAuthProtection: false
    enableMachineAccess: false
    enableMachineAuth: false
    enablePassChange: false
    enableRewrites: false
    failedAuthThreshold: 0
    firstName: string
    groups:
        - name: string
          sid: string
          type: string
    identityNotInAdBehaviour: string
    jobTitle: string
    lastName: string
    locality: string
    name: string
    organizationalUnit: string
    plaintextAuth: false
    rewriteRules:
        - rewriteMatch: string
          rewriteResult: string
          rowId: string
    schema: string
    stateOrProvince: string
    streetAddress: string
    telephone: string
    unreachableDomainsBehaviour: string
ActiveDirectoryJoinPoint 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 ActiveDirectoryJoinPoint resource accepts the following input properties:
- Domain string
- AD domain associated with the join point
- AdScopes stringNames 
- String that contains the names of the scopes that the active directory belongs to. Names are separated by comma. -
Default value: Default_Scope
- AgingTime int
- Aging Time - Default value: 5
- Attributes
List<ActiveDirectory Join Point Attribute> 
- List of AD attributes
- AuthProtection stringType 
- Enable prevent AD account lockout for WIRELESS/WIRED/BOTH - Choices: WIRELESS,WIRED,BOTH
- Country string
- User info attribute
- Department string
- User info attribute
- Description string
- Join point description
- Email string
- User info attribute
- EnableCallback boolFor Dialin Client 
- Enable Callback For Dial In Client - Default value: false
- EnableDialin boolPermission Check 
- Enable Dial In Permission Check - Default value: false
- EnableDomain boolAllowed List 
- Default value: true
 
- Default value: 
- EnableFailed boolAuth Protection 
- Enable prevent AD account lockout due to too many bad password attempts - Default value: false
- EnableMachine boolAccess 
- Enable Machine Access - Default value: true
- EnableMachine boolAuth 
- Enable Machine Authentication - Default value: true
- EnablePass boolChange 
- Enable Password Change - Default value: true
- EnableRewrites bool
- Enable Rewrites - Default value: false
- FailedAuth intThreshold 
- Number of bad password attempts - Default value: 5
- FirstName string
- User info attribute
- Groups
List<ActiveDirectory Join Point Group> 
- List of AD Groups
- IdentityNot stringIn Ad Behaviour 
- Identity Not In AD Behaviour - Choices: REJECT,SEARCH_JOINED_FOREST,SEARCH_ALL
- JobTitle string
- User info attribute
- LastName string
- User info attribute
- Locality string
- User info attribute
- Name string
- The name of the active directory join point
- OrganizationalUnit string
- User info attribute
- PlaintextAuth bool
- Plain Text Authentication - Default value: false
- RewriteRules List<ActiveDirectory Join Point Rewrite Rule> 
- List of Rewrite rules
- Schema string
- Schema - Choices: ACTIVE_DIRECTORY,CUSTOM
- StateOr stringProvince 
- User info attribute
- StreetAddress string
- User info attribute
- Telephone string
- User info attribute
- UnreachableDomains stringBehaviour 
- Unreachable Domains Behaviour - Choices: PROCEED,DROP
- Domain string
- AD domain associated with the join point
- AdScopes stringNames 
- String that contains the names of the scopes that the active directory belongs to. Names are separated by comma. -
Default value: Default_Scope
- AgingTime int
- Aging Time - Default value: 5
- Attributes
[]ActiveDirectory Join Point Attribute Args 
- List of AD attributes
- AuthProtection stringType 
- Enable prevent AD account lockout for WIRELESS/WIRED/BOTH - Choices: WIRELESS,WIRED,BOTH
- Country string
- User info attribute
- Department string
- User info attribute
- Description string
- Join point description
- Email string
- User info attribute
- EnableCallback boolFor Dialin Client 
- Enable Callback For Dial In Client - Default value: false
- EnableDialin boolPermission Check 
- Enable Dial In Permission Check - Default value: false
- EnableDomain boolAllowed List 
- Default value: true
 
- Default value: 
- EnableFailed boolAuth Protection 
- Enable prevent AD account lockout due to too many bad password attempts - Default value: false
- EnableMachine boolAccess 
- Enable Machine Access - Default value: true
- EnableMachine boolAuth 
- Enable Machine Authentication - Default value: true
- EnablePass boolChange 
- Enable Password Change - Default value: true
- EnableRewrites bool
- Enable Rewrites - Default value: false
- FailedAuth intThreshold 
- Number of bad password attempts - Default value: 5
- FirstName string
- User info attribute
- Groups
[]ActiveDirectory Join Point Group Args 
- List of AD Groups
- IdentityNot stringIn Ad Behaviour 
- Identity Not In AD Behaviour - Choices: REJECT,SEARCH_JOINED_FOREST,SEARCH_ALL
- JobTitle string
- User info attribute
- LastName string
- User info attribute
- Locality string
- User info attribute
- Name string
- The name of the active directory join point
- OrganizationalUnit string
- User info attribute
- PlaintextAuth bool
- Plain Text Authentication - Default value: false
- RewriteRules []ActiveDirectory Join Point Rewrite Rule Args 
- List of Rewrite rules
- Schema string
- Schema - Choices: ACTIVE_DIRECTORY,CUSTOM
- StateOr stringProvince 
- User info attribute
- StreetAddress string
- User info attribute
- Telephone string
- User info attribute
- UnreachableDomains stringBehaviour 
- Unreachable Domains Behaviour - Choices: PROCEED,DROP
- domain String
- AD domain associated with the join point
- adScopes StringNames 
- String that contains the names of the scopes that the active directory belongs to. Names are separated by comma. -
Default value: Default_Scope
- agingTime Integer
- Aging Time - Default value: 5
- attributes
List<ActiveDirectory Join Point Attribute> 
- List of AD attributes
- authProtection StringType 
- Enable prevent AD account lockout for WIRELESS/WIRED/BOTH - Choices: WIRELESS,WIRED,BOTH
- country String
- User info attribute
- department String
- User info attribute
- description String
- Join point description
- email String
- User info attribute
- enableCallback BooleanFor Dialin Client 
- Enable Callback For Dial In Client - Default value: false
- enableDialin BooleanPermission Check 
- Enable Dial In Permission Check - Default value: false
- enableDomain BooleanAllowed List 
- Default value: true
 
- Default value: 
- enableFailed BooleanAuth Protection 
- Enable prevent AD account lockout due to too many bad password attempts - Default value: false
- enableMachine BooleanAccess 
- Enable Machine Access - Default value: true
- enableMachine BooleanAuth 
- Enable Machine Authentication - Default value: true
- enablePass BooleanChange 
- Enable Password Change - Default value: true
- enableRewrites Boolean
- Enable Rewrites - Default value: false
- failedAuth IntegerThreshold 
- Number of bad password attempts - Default value: 5
- firstName String
- User info attribute
- groups
List<ActiveDirectory Join Point Group> 
- List of AD Groups
- identityNot StringIn Ad Behaviour 
- Identity Not In AD Behaviour - Choices: REJECT,SEARCH_JOINED_FOREST,SEARCH_ALL
- jobTitle String
- User info attribute
- lastName String
- User info attribute
- locality String
- User info attribute
- name String
- The name of the active directory join point
- organizationalUnit String
- User info attribute
- plaintextAuth Boolean
- Plain Text Authentication - Default value: false
- rewriteRules List<ActiveDirectory Join Point Rewrite Rule> 
- List of Rewrite rules
- schema String
- Schema - Choices: ACTIVE_DIRECTORY,CUSTOM
- stateOr StringProvince 
- User info attribute
- streetAddress String
- User info attribute
- telephone String
- User info attribute
- unreachableDomains StringBehaviour 
- Unreachable Domains Behaviour - Choices: PROCEED,DROP
- domain string
- AD domain associated with the join point
- adScopes stringNames 
- String that contains the names of the scopes that the active directory belongs to. Names are separated by comma. -
Default value: Default_Scope
- agingTime number
- Aging Time - Default value: 5
- attributes
ActiveDirectory Join Point Attribute[] 
- List of AD attributes
- authProtection stringType 
- Enable prevent AD account lockout for WIRELESS/WIRED/BOTH - Choices: WIRELESS,WIRED,BOTH
- country string
- User info attribute
- department string
- User info attribute
- description string
- Join point description
- email string
- User info attribute
- enableCallback booleanFor Dialin Client 
- Enable Callback For Dial In Client - Default value: false
- enableDialin booleanPermission Check 
- Enable Dial In Permission Check - Default value: false
- enableDomain booleanAllowed List 
- Default value: true
 
- Default value: 
- enableFailed booleanAuth Protection 
- Enable prevent AD account lockout due to too many bad password attempts - Default value: false
- enableMachine booleanAccess 
- Enable Machine Access - Default value: true
- enableMachine booleanAuth 
- Enable Machine Authentication - Default value: true
- enablePass booleanChange 
- Enable Password Change - Default value: true
- enableRewrites boolean
- Enable Rewrites - Default value: false
- failedAuth numberThreshold 
- Number of bad password attempts - Default value: 5
- firstName string
- User info attribute
- groups
ActiveDirectory Join Point Group[] 
- List of AD Groups
- identityNot stringIn Ad Behaviour 
- Identity Not In AD Behaviour - Choices: REJECT,SEARCH_JOINED_FOREST,SEARCH_ALL
- jobTitle string
- User info attribute
- lastName string
- User info attribute
- locality string
- User info attribute
- name string
- The name of the active directory join point
- organizationalUnit string
- User info attribute
- plaintextAuth boolean
- Plain Text Authentication - Default value: false
- rewriteRules ActiveDirectory Join Point Rewrite Rule[] 
- List of Rewrite rules
- schema string
- Schema - Choices: ACTIVE_DIRECTORY,CUSTOM
- stateOr stringProvince 
- User info attribute
- streetAddress string
- User info attribute
- telephone string
- User info attribute
- unreachableDomains stringBehaviour 
- Unreachable Domains Behaviour - Choices: PROCEED,DROP
- domain str
- AD domain associated with the join point
- ad_scopes_ strnames 
- String that contains the names of the scopes that the active directory belongs to. Names are separated by comma. -
Default value: Default_Scope
- aging_time int
- Aging Time - Default value: 5
- attributes
Sequence[ActiveDirectory Join Point Attribute Args] 
- List of AD attributes
- auth_protection_ strtype 
- Enable prevent AD account lockout for WIRELESS/WIRED/BOTH - Choices: WIRELESS,WIRED,BOTH
- country str
- User info attribute
- department str
- User info attribute
- description str
- Join point description
- email str
- User info attribute
- enable_callback_ boolfor_ dialin_ client 
- Enable Callback For Dial In Client - Default value: false
- enable_dialin_ boolpermission_ check 
- Enable Dial In Permission Check - Default value: false
- enable_domain_ boolallowed_ list 
- Default value: true
 
- Default value: 
- enable_failed_ boolauth_ protection 
- Enable prevent AD account lockout due to too many bad password attempts - Default value: false
- enable_machine_ boolaccess 
- Enable Machine Access - Default value: true
- enable_machine_ boolauth 
- Enable Machine Authentication - Default value: true
- enable_pass_ boolchange 
- Enable Password Change - Default value: true
- enable_rewrites bool
- Enable Rewrites - Default value: false
- failed_auth_ intthreshold 
- Number of bad password attempts - Default value: 5
- first_name str
- User info attribute
- groups
Sequence[ActiveDirectory Join Point Group Args] 
- List of AD Groups
- identity_not_ strin_ ad_ behaviour 
- Identity Not In AD Behaviour - Choices: REJECT,SEARCH_JOINED_FOREST,SEARCH_ALL
- job_title str
- User info attribute
- last_name str
- User info attribute
- locality str
- User info attribute
- name str
- The name of the active directory join point
- organizational_unit str
- User info attribute
- plaintext_auth bool
- Plain Text Authentication - Default value: false
- rewrite_rules Sequence[ActiveDirectory Join Point Rewrite Rule Args] 
- List of Rewrite rules
- schema str
- Schema - Choices: ACTIVE_DIRECTORY,CUSTOM
- state_or_ strprovince 
- User info attribute
- street_address str
- User info attribute
- telephone str
- User info attribute
- unreachable_domains_ strbehaviour 
- Unreachable Domains Behaviour - Choices: PROCEED,DROP
- domain String
- AD domain associated with the join point
- adScopes StringNames 
- String that contains the names of the scopes that the active directory belongs to. Names are separated by comma. -
Default value: Default_Scope
- agingTime Number
- Aging Time - Default value: 5
- attributes List<Property Map>
- List of AD attributes
- authProtection StringType 
- Enable prevent AD account lockout for WIRELESS/WIRED/BOTH - Choices: WIRELESS,WIRED,BOTH
- country String
- User info attribute
- department String
- User info attribute
- description String
- Join point description
- email String
- User info attribute
- enableCallback BooleanFor Dialin Client 
- Enable Callback For Dial In Client - Default value: false
- enableDialin BooleanPermission Check 
- Enable Dial In Permission Check - Default value: false
- enableDomain BooleanAllowed List 
- Default value: true
 
- Default value: 
- enableFailed BooleanAuth Protection 
- Enable prevent AD account lockout due to too many bad password attempts - Default value: false
- enableMachine BooleanAccess 
- Enable Machine Access - Default value: true
- enableMachine BooleanAuth 
- Enable Machine Authentication - Default value: true
- enablePass BooleanChange 
- Enable Password Change - Default value: true
- enableRewrites Boolean
- Enable Rewrites - Default value: false
- failedAuth NumberThreshold 
- Number of bad password attempts - Default value: 5
- firstName String
- User info attribute
- groups List<Property Map>
- List of AD Groups
- identityNot StringIn Ad Behaviour 
- Identity Not In AD Behaviour - Choices: REJECT,SEARCH_JOINED_FOREST,SEARCH_ALL
- jobTitle String
- User info attribute
- lastName String
- User info attribute
- locality String
- User info attribute
- name String
- The name of the active directory join point
- organizationalUnit String
- User info attribute
- plaintextAuth Boolean
- Plain Text Authentication - Default value: false
- rewriteRules List<Property Map>
- List of Rewrite rules
- schema String
- Schema - Choices: ACTIVE_DIRECTORY,CUSTOM
- stateOr StringProvince 
- User info attribute
- streetAddress String
- User info attribute
- telephone String
- User info attribute
- unreachableDomains StringBehaviour 
- Unreachable Domains Behaviour - Choices: PROCEED,DROP
Outputs
All input properties are implicitly available as output properties. Additionally, the ActiveDirectoryJoinPoint 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 ActiveDirectoryJoinPoint Resource
Get an existing ActiveDirectoryJoinPoint 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?: ActiveDirectoryJoinPointState, opts?: CustomResourceOptions): ActiveDirectoryJoinPoint@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        ad_scopes_names: Optional[str] = None,
        aging_time: Optional[int] = None,
        attributes: Optional[Sequence[ActiveDirectoryJoinPointAttributeArgs]] = None,
        auth_protection_type: Optional[str] = None,
        country: Optional[str] = None,
        department: Optional[str] = None,
        description: Optional[str] = None,
        domain: Optional[str] = None,
        email: Optional[str] = None,
        enable_callback_for_dialin_client: Optional[bool] = None,
        enable_dialin_permission_check: Optional[bool] = None,
        enable_domain_allowed_list: Optional[bool] = None,
        enable_failed_auth_protection: Optional[bool] = None,
        enable_machine_access: Optional[bool] = None,
        enable_machine_auth: Optional[bool] = None,
        enable_pass_change: Optional[bool] = None,
        enable_rewrites: Optional[bool] = None,
        failed_auth_threshold: Optional[int] = None,
        first_name: Optional[str] = None,
        groups: Optional[Sequence[ActiveDirectoryJoinPointGroupArgs]] = None,
        identity_not_in_ad_behaviour: Optional[str] = None,
        job_title: Optional[str] = None,
        last_name: Optional[str] = None,
        locality: Optional[str] = None,
        name: Optional[str] = None,
        organizational_unit: Optional[str] = None,
        plaintext_auth: Optional[bool] = None,
        rewrite_rules: Optional[Sequence[ActiveDirectoryJoinPointRewriteRuleArgs]] = None,
        schema: Optional[str] = None,
        state_or_province: Optional[str] = None,
        street_address: Optional[str] = None,
        telephone: Optional[str] = None,
        unreachable_domains_behaviour: Optional[str] = None) -> ActiveDirectoryJoinPointfunc GetActiveDirectoryJoinPoint(ctx *Context, name string, id IDInput, state *ActiveDirectoryJoinPointState, opts ...ResourceOption) (*ActiveDirectoryJoinPoint, error)public static ActiveDirectoryJoinPoint Get(string name, Input<string> id, ActiveDirectoryJoinPointState? state, CustomResourceOptions? opts = null)public static ActiveDirectoryJoinPoint get(String name, Output<String> id, ActiveDirectoryJoinPointState state, CustomResourceOptions options)resources:  _:    type: ise:identitymanagement:ActiveDirectoryJoinPoint    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.
- AdScopes stringNames 
- String that contains the names of the scopes that the active directory belongs to. Names are separated by comma. -
Default value: Default_Scope
- AgingTime int
- Aging Time - Default value: 5
- Attributes
List<ActiveDirectory Join Point Attribute> 
- List of AD attributes
- AuthProtection stringType 
- Enable prevent AD account lockout for WIRELESS/WIRED/BOTH - Choices: WIRELESS,WIRED,BOTH
- Country string
- User info attribute
- Department string
- User info attribute
- Description string
- Join point description
- Domain string
- AD domain associated with the join point
- Email string
- User info attribute
- EnableCallback boolFor Dialin Client 
- Enable Callback For Dial In Client - Default value: false
- EnableDialin boolPermission Check 
- Enable Dial In Permission Check - Default value: false
- EnableDomain boolAllowed List 
- Default value: true
 
- Default value: 
- EnableFailed boolAuth Protection 
- Enable prevent AD account lockout due to too many bad password attempts - Default value: false
- EnableMachine boolAccess 
- Enable Machine Access - Default value: true
- EnableMachine boolAuth 
- Enable Machine Authentication - Default value: true
- EnablePass boolChange 
- Enable Password Change - Default value: true
- EnableRewrites bool
- Enable Rewrites - Default value: false
- FailedAuth intThreshold 
- Number of bad password attempts - Default value: 5
- FirstName string
- User info attribute
- Groups
List<ActiveDirectory Join Point Group> 
- List of AD Groups
- IdentityNot stringIn Ad Behaviour 
- Identity Not In AD Behaviour - Choices: REJECT,SEARCH_JOINED_FOREST,SEARCH_ALL
- JobTitle string
- User info attribute
- LastName string
- User info attribute
- Locality string
- User info attribute
- Name string
- The name of the active directory join point
- OrganizationalUnit string
- User info attribute
- PlaintextAuth bool
- Plain Text Authentication - Default value: false
- RewriteRules List<ActiveDirectory Join Point Rewrite Rule> 
- List of Rewrite rules
- Schema string
- Schema - Choices: ACTIVE_DIRECTORY,CUSTOM
- StateOr stringProvince 
- User info attribute
- StreetAddress string
- User info attribute
- Telephone string
- User info attribute
- UnreachableDomains stringBehaviour 
- Unreachable Domains Behaviour - Choices: PROCEED,DROP
- AdScopes stringNames 
- String that contains the names of the scopes that the active directory belongs to. Names are separated by comma. -
Default value: Default_Scope
- AgingTime int
- Aging Time - Default value: 5
- Attributes
[]ActiveDirectory Join Point Attribute Args 
- List of AD attributes
- AuthProtection stringType 
- Enable prevent AD account lockout for WIRELESS/WIRED/BOTH - Choices: WIRELESS,WIRED,BOTH
- Country string
- User info attribute
- Department string
- User info attribute
- Description string
- Join point description
- Domain string
- AD domain associated with the join point
- Email string
- User info attribute
- EnableCallback boolFor Dialin Client 
- Enable Callback For Dial In Client - Default value: false
- EnableDialin boolPermission Check 
- Enable Dial In Permission Check - Default value: false
- EnableDomain boolAllowed List 
- Default value: true
 
- Default value: 
- EnableFailed boolAuth Protection 
- Enable prevent AD account lockout due to too many bad password attempts - Default value: false
- EnableMachine boolAccess 
- Enable Machine Access - Default value: true
- EnableMachine boolAuth 
- Enable Machine Authentication - Default value: true
- EnablePass boolChange 
- Enable Password Change - Default value: true
- EnableRewrites bool
- Enable Rewrites - Default value: false
- FailedAuth intThreshold 
- Number of bad password attempts - Default value: 5
- FirstName string
- User info attribute
- Groups
[]ActiveDirectory Join Point Group Args 
- List of AD Groups
- IdentityNot stringIn Ad Behaviour 
- Identity Not In AD Behaviour - Choices: REJECT,SEARCH_JOINED_FOREST,SEARCH_ALL
- JobTitle string
- User info attribute
- LastName string
- User info attribute
- Locality string
- User info attribute
- Name string
- The name of the active directory join point
- OrganizationalUnit string
- User info attribute
- PlaintextAuth bool
- Plain Text Authentication - Default value: false
- RewriteRules []ActiveDirectory Join Point Rewrite Rule Args 
- List of Rewrite rules
- Schema string
- Schema - Choices: ACTIVE_DIRECTORY,CUSTOM
- StateOr stringProvince 
- User info attribute
- StreetAddress string
- User info attribute
- Telephone string
- User info attribute
- UnreachableDomains stringBehaviour 
- Unreachable Domains Behaviour - Choices: PROCEED,DROP
- adScopes StringNames 
- String that contains the names of the scopes that the active directory belongs to. Names are separated by comma. -
Default value: Default_Scope
- agingTime Integer
- Aging Time - Default value: 5
- attributes
List<ActiveDirectory Join Point Attribute> 
- List of AD attributes
- authProtection StringType 
- Enable prevent AD account lockout for WIRELESS/WIRED/BOTH - Choices: WIRELESS,WIRED,BOTH
- country String
- User info attribute
- department String
- User info attribute
- description String
- Join point description
- domain String
- AD domain associated with the join point
- email String
- User info attribute
- enableCallback BooleanFor Dialin Client 
- Enable Callback For Dial In Client - Default value: false
- enableDialin BooleanPermission Check 
- Enable Dial In Permission Check - Default value: false
- enableDomain BooleanAllowed List 
- Default value: true
 
- Default value: 
- enableFailed BooleanAuth Protection 
- Enable prevent AD account lockout due to too many bad password attempts - Default value: false
- enableMachine BooleanAccess 
- Enable Machine Access - Default value: true
- enableMachine BooleanAuth 
- Enable Machine Authentication - Default value: true
- enablePass BooleanChange 
- Enable Password Change - Default value: true
- enableRewrites Boolean
- Enable Rewrites - Default value: false
- failedAuth IntegerThreshold 
- Number of bad password attempts - Default value: 5
- firstName String
- User info attribute
- groups
List<ActiveDirectory Join Point Group> 
- List of AD Groups
- identityNot StringIn Ad Behaviour 
- Identity Not In AD Behaviour - Choices: REJECT,SEARCH_JOINED_FOREST,SEARCH_ALL
- jobTitle String
- User info attribute
- lastName String
- User info attribute
- locality String
- User info attribute
- name String
- The name of the active directory join point
- organizationalUnit String
- User info attribute
- plaintextAuth Boolean
- Plain Text Authentication - Default value: false
- rewriteRules List<ActiveDirectory Join Point Rewrite Rule> 
- List of Rewrite rules
- schema String
- Schema - Choices: ACTIVE_DIRECTORY,CUSTOM
- stateOr StringProvince 
- User info attribute
- streetAddress String
- User info attribute
- telephone String
- User info attribute
- unreachableDomains StringBehaviour 
- Unreachable Domains Behaviour - Choices: PROCEED,DROP
- adScopes stringNames 
- String that contains the names of the scopes that the active directory belongs to. Names are separated by comma. -
Default value: Default_Scope
- agingTime number
- Aging Time - Default value: 5
- attributes
ActiveDirectory Join Point Attribute[] 
- List of AD attributes
- authProtection stringType 
- Enable prevent AD account lockout for WIRELESS/WIRED/BOTH - Choices: WIRELESS,WIRED,BOTH
- country string
- User info attribute
- department string
- User info attribute
- description string
- Join point description
- domain string
- AD domain associated with the join point
- email string
- User info attribute
- enableCallback booleanFor Dialin Client 
- Enable Callback For Dial In Client - Default value: false
- enableDialin booleanPermission Check 
- Enable Dial In Permission Check - Default value: false
- enableDomain booleanAllowed List 
- Default value: true
 
- Default value: 
- enableFailed booleanAuth Protection 
- Enable prevent AD account lockout due to too many bad password attempts - Default value: false
- enableMachine booleanAccess 
- Enable Machine Access - Default value: true
- enableMachine booleanAuth 
- Enable Machine Authentication - Default value: true
- enablePass booleanChange 
- Enable Password Change - Default value: true
- enableRewrites boolean
- Enable Rewrites - Default value: false
- failedAuth numberThreshold 
- Number of bad password attempts - Default value: 5
- firstName string
- User info attribute
- groups
ActiveDirectory Join Point Group[] 
- List of AD Groups
- identityNot stringIn Ad Behaviour 
- Identity Not In AD Behaviour - Choices: REJECT,SEARCH_JOINED_FOREST,SEARCH_ALL
- jobTitle string
- User info attribute
- lastName string
- User info attribute
- locality string
- User info attribute
- name string
- The name of the active directory join point
- organizationalUnit string
- User info attribute
- plaintextAuth boolean
- Plain Text Authentication - Default value: false
- rewriteRules ActiveDirectory Join Point Rewrite Rule[] 
- List of Rewrite rules
- schema string
- Schema - Choices: ACTIVE_DIRECTORY,CUSTOM
- stateOr stringProvince 
- User info attribute
- streetAddress string
- User info attribute
- telephone string
- User info attribute
- unreachableDomains stringBehaviour 
- Unreachable Domains Behaviour - Choices: PROCEED,DROP
- ad_scopes_ strnames 
- String that contains the names of the scopes that the active directory belongs to. Names are separated by comma. -
Default value: Default_Scope
- aging_time int
- Aging Time - Default value: 5
- attributes
Sequence[ActiveDirectory Join Point Attribute Args] 
- List of AD attributes
- auth_protection_ strtype 
- Enable prevent AD account lockout for WIRELESS/WIRED/BOTH - Choices: WIRELESS,WIRED,BOTH
- country str
- User info attribute
- department str
- User info attribute
- description str
- Join point description
- domain str
- AD domain associated with the join point
- email str
- User info attribute
- enable_callback_ boolfor_ dialin_ client 
- Enable Callback For Dial In Client - Default value: false
- enable_dialin_ boolpermission_ check 
- Enable Dial In Permission Check - Default value: false
- enable_domain_ boolallowed_ list 
- Default value: true
 
- Default value: 
- enable_failed_ boolauth_ protection 
- Enable prevent AD account lockout due to too many bad password attempts - Default value: false
- enable_machine_ boolaccess 
- Enable Machine Access - Default value: true
- enable_machine_ boolauth 
- Enable Machine Authentication - Default value: true
- enable_pass_ boolchange 
- Enable Password Change - Default value: true
- enable_rewrites bool
- Enable Rewrites - Default value: false
- failed_auth_ intthreshold 
- Number of bad password attempts - Default value: 5
- first_name str
- User info attribute
- groups
Sequence[ActiveDirectory Join Point Group Args] 
- List of AD Groups
- identity_not_ strin_ ad_ behaviour 
- Identity Not In AD Behaviour - Choices: REJECT,SEARCH_JOINED_FOREST,SEARCH_ALL
- job_title str
- User info attribute
- last_name str
- User info attribute
- locality str
- User info attribute
- name str
- The name of the active directory join point
- organizational_unit str
- User info attribute
- plaintext_auth bool
- Plain Text Authentication - Default value: false
- rewrite_rules Sequence[ActiveDirectory Join Point Rewrite Rule Args] 
- List of Rewrite rules
- schema str
- Schema - Choices: ACTIVE_DIRECTORY,CUSTOM
- state_or_ strprovince 
- User info attribute
- street_address str
- User info attribute
- telephone str
- User info attribute
- unreachable_domains_ strbehaviour 
- Unreachable Domains Behaviour - Choices: PROCEED,DROP
- adScopes StringNames 
- String that contains the names of the scopes that the active directory belongs to. Names are separated by comma. -
Default value: Default_Scope
- agingTime Number
- Aging Time - Default value: 5
- attributes List<Property Map>
- List of AD attributes
- authProtection StringType 
- Enable prevent AD account lockout for WIRELESS/WIRED/BOTH - Choices: WIRELESS,WIRED,BOTH
- country String
- User info attribute
- department String
- User info attribute
- description String
- Join point description
- domain String
- AD domain associated with the join point
- email String
- User info attribute
- enableCallback BooleanFor Dialin Client 
- Enable Callback For Dial In Client - Default value: false
- enableDialin BooleanPermission Check 
- Enable Dial In Permission Check - Default value: false
- enableDomain BooleanAllowed List 
- Default value: true
 
- Default value: 
- enableFailed BooleanAuth Protection 
- Enable prevent AD account lockout due to too many bad password attempts - Default value: false
- enableMachine BooleanAccess 
- Enable Machine Access - Default value: true
- enableMachine BooleanAuth 
- Enable Machine Authentication - Default value: true
- enablePass BooleanChange 
- Enable Password Change - Default value: true
- enableRewrites Boolean
- Enable Rewrites - Default value: false
- failedAuth NumberThreshold 
- Number of bad password attempts - Default value: 5
- firstName String
- User info attribute
- groups List<Property Map>
- List of AD Groups
- identityNot StringIn Ad Behaviour 
- Identity Not In AD Behaviour - Choices: REJECT,SEARCH_JOINED_FOREST,SEARCH_ALL
- jobTitle String
- User info attribute
- lastName String
- User info attribute
- locality String
- User info attribute
- name String
- The name of the active directory join point
- organizationalUnit String
- User info attribute
- plaintextAuth Boolean
- Plain Text Authentication - Default value: false
- rewriteRules List<Property Map>
- List of Rewrite rules
- schema String
- Schema - Choices: ACTIVE_DIRECTORY,CUSTOM
- stateOr StringProvince 
- User info attribute
- streetAddress String
- User info attribute
- telephone String
- User info attribute
- unreachableDomains StringBehaviour 
- Unreachable Domains Behaviour - Choices: PROCEED,DROP
Supporting Types
ActiveDirectoryJoinPointAttribute, ActiveDirectoryJoinPointAttributeArgs          
- DefaultValue string
- Required for each attribute in the attribute list. Can contain an empty string.
- InternalName string
- Required for each attribute in the attribute list
- Name string
- Required for each attribute in the attribute list with no duplication between attributes
- Type string
- Required for each group in the group list- Choices: STRING,IP,BOOLEAN,INT,OCTET_STRING
 
- Choices: 
- DefaultValue string
- Required for each attribute in the attribute list. Can contain an empty string.
- InternalName string
- Required for each attribute in the attribute list
- Name string
- Required for each attribute in the attribute list with no duplication between attributes
- Type string
- Required for each group in the group list- Choices: STRING,IP,BOOLEAN,INT,OCTET_STRING
 
- Choices: 
- defaultValue String
- Required for each attribute in the attribute list. Can contain an empty string.
- internalName String
- Required for each attribute in the attribute list
- name String
- Required for each attribute in the attribute list with no duplication between attributes
- type String
- Required for each group in the group list- Choices: STRING,IP,BOOLEAN,INT,OCTET_STRING
 
- Choices: 
- defaultValue string
- Required for each attribute in the attribute list. Can contain an empty string.
- internalName string
- Required for each attribute in the attribute list
- name string
- Required for each attribute in the attribute list with no duplication between attributes
- type string
- Required for each group in the group list- Choices: STRING,IP,BOOLEAN,INT,OCTET_STRING
 
- Choices: 
- default_value str
- Required for each attribute in the attribute list. Can contain an empty string.
- internal_name str
- Required for each attribute in the attribute list
- name str
- Required for each attribute in the attribute list with no duplication between attributes
- type str
- Required for each group in the group list- Choices: STRING,IP,BOOLEAN,INT,OCTET_STRING
 
- Choices: 
- defaultValue String
- Required for each attribute in the attribute list. Can contain an empty string.
- internalName String
- Required for each attribute in the attribute list
- name String
- Required for each attribute in the attribute list with no duplication between attributes
- type String
- Required for each group in the group list- Choices: STRING,IP,BOOLEAN,INT,OCTET_STRING
 
- Choices: 
ActiveDirectoryJoinPointGroup, ActiveDirectoryJoinPointGroupArgs          
ActiveDirectoryJoinPointRewriteRule, ActiveDirectoryJoinPointRewriteRuleArgs            
- RewriteMatch string
- Required for each rule in the list with no duplication between rules
- RewriteResult string
- Required for each rule in the list
- RowId string
- Required for each rule in the list in serial order
- RewriteMatch string
- Required for each rule in the list with no duplication between rules
- RewriteResult string
- Required for each rule in the list
- RowId string
- Required for each rule in the list in serial order
- rewriteMatch String
- Required for each rule in the list with no duplication between rules
- rewriteResult String
- Required for each rule in the list
- rowId String
- Required for each rule in the list in serial order
- rewriteMatch string
- Required for each rule in the list with no duplication between rules
- rewriteResult string
- Required for each rule in the list
- rowId string
- Required for each rule in the list in serial order
- rewrite_match str
- Required for each rule in the list with no duplication between rules
- rewrite_result str
- Required for each rule in the list
- row_id str
- Required for each rule in the list in serial order
- rewriteMatch String
- Required for each rule in the list with no duplication between rules
- rewriteResult String
- Required for each rule in the list
- rowId String
- Required for each rule in the list in serial order
Import
$ pulumi import ise:identitymanagement/activeDirectoryJoinPoint:ActiveDirectoryJoinPoint example "76d24097-41c4-4558-a4d0-a8c07ac08470"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- ise pulumi/pulumi-ise
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the iseTerraform Provider.
