1. Packages
  2. Cisco ISE
  3. API Docs
  4. identitymanagement
  5. ActiveDirectoryJoinPoint
Cisco ISE v0.1.4 published on Friday, May 31, 2024 by Pulumi

ise.identitymanagement.ActiveDirectoryJoinPoint

Explore with Pulumi AI

ise logo
Cisco ISE v0.1.4 published on Friday, May 31, 2024 by Pulumi

    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=[ise.identitymanagement.ActiveDirectoryJoinPointAttributeArgs(
            default_value="string",
            internal_name="string",
            name="string",
            type="string",
        )],
        aging_time=0,
        first_name="string",
        groups=[ise.identitymanagement.ActiveDirectoryJoinPointGroupArgs(
            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=[ise.identitymanagement.ActiveDirectoryJoinPointRewriteRuleArgs(
            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

    The ActiveDirectoryJoinPoint resource accepts the following input properties:

    Domain string
    AD domain associated with the join point
    AdScopesNames string
    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<ActiveDirectoryJoinPointAttribute>
    List of AD attributes
    AuthProtectionType string
    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
    EnableCallbackForDialinClient bool
    Enable Callback For Dial In Client - Default value: false
    EnableDialinPermissionCheck bool
    Enable Dial In Permission Check - Default value: false
    EnableDomainAllowedList bool
    • Default value: true
    EnableFailedAuthProtection bool
    Enable prevent AD account lockout due to too many bad password attempts - Default value: false
    EnableMachineAccess bool
    Enable Machine Access - Default value: true
    EnableMachineAuth bool
    Enable Machine Authentication - Default value: true
    EnablePassChange bool
    Enable Password Change - Default value: true
    EnableRewrites bool
    Enable Rewrites - Default value: false
    FailedAuthThreshold int
    Number of bad password attempts - Default value: 5
    FirstName string
    User info attribute
    Groups List<ActiveDirectoryJoinPointGroup>
    List of AD Groups
    IdentityNotInAdBehaviour string
    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<ActiveDirectoryJoinPointRewriteRule>
    List of Rewrite rules
    Schema string
    Schema - Choices: ACTIVE_DIRECTORY, CUSTOM
    StateOrProvince string
    User info attribute
    StreetAddress string
    User info attribute
    Telephone string
    User info attribute
    UnreachableDomainsBehaviour string
    Unreachable Domains Behaviour - Choices: PROCEED, DROP
    Domain string
    AD domain associated with the join point
    AdScopesNames string
    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 []ActiveDirectoryJoinPointAttributeArgs
    List of AD attributes
    AuthProtectionType string
    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
    EnableCallbackForDialinClient bool
    Enable Callback For Dial In Client - Default value: false
    EnableDialinPermissionCheck bool
    Enable Dial In Permission Check - Default value: false
    EnableDomainAllowedList bool
    • Default value: true
    EnableFailedAuthProtection bool
    Enable prevent AD account lockout due to too many bad password attempts - Default value: false
    EnableMachineAccess bool
    Enable Machine Access - Default value: true
    EnableMachineAuth bool
    Enable Machine Authentication - Default value: true
    EnablePassChange bool
    Enable Password Change - Default value: true
    EnableRewrites bool
    Enable Rewrites - Default value: false
    FailedAuthThreshold int
    Number of bad password attempts - Default value: 5
    FirstName string
    User info attribute
    Groups []ActiveDirectoryJoinPointGroupArgs
    List of AD Groups
    IdentityNotInAdBehaviour string
    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 []ActiveDirectoryJoinPointRewriteRuleArgs
    List of Rewrite rules
    Schema string
    Schema - Choices: ACTIVE_DIRECTORY, CUSTOM
    StateOrProvince string
    User info attribute
    StreetAddress string
    User info attribute
    Telephone string
    User info attribute
    UnreachableDomainsBehaviour string
    Unreachable Domains Behaviour - Choices: PROCEED, DROP
    domain String
    AD domain associated with the join point
    adScopesNames String
    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<ActiveDirectoryJoinPointAttribute>
    List of AD attributes
    authProtectionType String
    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
    enableCallbackForDialinClient Boolean
    Enable Callback For Dial In Client - Default value: false
    enableDialinPermissionCheck Boolean
    Enable Dial In Permission Check - Default value: false
    enableDomainAllowedList Boolean
    • Default value: true
    enableFailedAuthProtection Boolean
    Enable prevent AD account lockout due to too many bad password attempts - Default value: false
    enableMachineAccess Boolean
    Enable Machine Access - Default value: true
    enableMachineAuth Boolean
    Enable Machine Authentication - Default value: true
    enablePassChange Boolean
    Enable Password Change - Default value: true
    enableRewrites Boolean
    Enable Rewrites - Default value: false
    failedAuthThreshold Integer
    Number of bad password attempts - Default value: 5
    firstName String
    User info attribute
    groups List<ActiveDirectoryJoinPointGroup>
    List of AD Groups
    identityNotInAdBehaviour String
    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<ActiveDirectoryJoinPointRewriteRule>
    List of Rewrite rules
    schema String
    Schema - Choices: ACTIVE_DIRECTORY, CUSTOM
    stateOrProvince String
    User info attribute
    streetAddress String
    User info attribute
    telephone String
    User info attribute
    unreachableDomainsBehaviour String
    Unreachable Domains Behaviour - Choices: PROCEED, DROP
    domain string
    AD domain associated with the join point
    adScopesNames string
    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 ActiveDirectoryJoinPointAttribute[]
    List of AD attributes
    authProtectionType string
    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
    enableCallbackForDialinClient boolean
    Enable Callback For Dial In Client - Default value: false
    enableDialinPermissionCheck boolean
    Enable Dial In Permission Check - Default value: false
    enableDomainAllowedList boolean
    • Default value: true
    enableFailedAuthProtection boolean
    Enable prevent AD account lockout due to too many bad password attempts - Default value: false
    enableMachineAccess boolean
    Enable Machine Access - Default value: true
    enableMachineAuth boolean
    Enable Machine Authentication - Default value: true
    enablePassChange boolean
    Enable Password Change - Default value: true
    enableRewrites boolean
    Enable Rewrites - Default value: false
    failedAuthThreshold number
    Number of bad password attempts - Default value: 5
    firstName string
    User info attribute
    groups ActiveDirectoryJoinPointGroup[]
    List of AD Groups
    identityNotInAdBehaviour string
    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 ActiveDirectoryJoinPointRewriteRule[]
    List of Rewrite rules
    schema string
    Schema - Choices: ACTIVE_DIRECTORY, CUSTOM
    stateOrProvince string
    User info attribute
    streetAddress string
    User info attribute
    telephone string
    User info attribute
    unreachableDomainsBehaviour string
    Unreachable Domains Behaviour - Choices: PROCEED, DROP
    domain str
    AD domain associated with the join point
    ad_scopes_names str
    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[ActiveDirectoryJoinPointAttributeArgs]
    List of AD attributes
    auth_protection_type str
    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_for_dialin_client bool
    Enable Callback For Dial In Client - Default value: false
    enable_dialin_permission_check bool
    Enable Dial In Permission Check - Default value: false
    enable_domain_allowed_list bool
    • Default value: true
    enable_failed_auth_protection bool
    Enable prevent AD account lockout due to too many bad password attempts - Default value: false
    enable_machine_access bool
    Enable Machine Access - Default value: true
    enable_machine_auth bool
    Enable Machine Authentication - Default value: true
    enable_pass_change bool
    Enable Password Change - Default value: true
    enable_rewrites bool
    Enable Rewrites - Default value: false
    failed_auth_threshold int
    Number of bad password attempts - Default value: 5
    first_name str
    User info attribute
    groups Sequence[ActiveDirectoryJoinPointGroupArgs]
    List of AD Groups
    identity_not_in_ad_behaviour str
    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[ActiveDirectoryJoinPointRewriteRuleArgs]
    List of Rewrite rules
    schema str
    Schema - Choices: ACTIVE_DIRECTORY, CUSTOM
    state_or_province str
    User info attribute
    street_address str
    User info attribute
    telephone str
    User info attribute
    unreachable_domains_behaviour str
    Unreachable Domains Behaviour - Choices: PROCEED, DROP
    domain String
    AD domain associated with the join point
    adScopesNames String
    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
    authProtectionType String
    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
    enableCallbackForDialinClient Boolean
    Enable Callback For Dial In Client - Default value: false
    enableDialinPermissionCheck Boolean
    Enable Dial In Permission Check - Default value: false
    enableDomainAllowedList Boolean
    • Default value: true
    enableFailedAuthProtection Boolean
    Enable prevent AD account lockout due to too many bad password attempts - Default value: false
    enableMachineAccess Boolean
    Enable Machine Access - Default value: true
    enableMachineAuth Boolean
    Enable Machine Authentication - Default value: true
    enablePassChange Boolean
    Enable Password Change - Default value: true
    enableRewrites Boolean
    Enable Rewrites - Default value: false
    failedAuthThreshold Number
    Number of bad password attempts - Default value: 5
    firstName String
    User info attribute
    groups List<Property Map>
    List of AD Groups
    identityNotInAdBehaviour String
    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
    stateOrProvince String
    User info attribute
    streetAddress String
    User info attribute
    telephone String
    User info attribute
    unreachableDomainsBehaviour String
    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) -> ActiveDirectoryJoinPoint
    func 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)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AdScopesNames string
    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<ActiveDirectoryJoinPointAttribute>
    List of AD attributes
    AuthProtectionType string
    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
    EnableCallbackForDialinClient bool
    Enable Callback For Dial In Client - Default value: false
    EnableDialinPermissionCheck bool
    Enable Dial In Permission Check - Default value: false
    EnableDomainAllowedList bool
    • Default value: true
    EnableFailedAuthProtection bool
    Enable prevent AD account lockout due to too many bad password attempts - Default value: false
    EnableMachineAccess bool
    Enable Machine Access - Default value: true
    EnableMachineAuth bool
    Enable Machine Authentication - Default value: true
    EnablePassChange bool
    Enable Password Change - Default value: true
    EnableRewrites bool
    Enable Rewrites - Default value: false
    FailedAuthThreshold int
    Number of bad password attempts - Default value: 5
    FirstName string
    User info attribute
    Groups List<ActiveDirectoryJoinPointGroup>
    List of AD Groups
    IdentityNotInAdBehaviour string
    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<ActiveDirectoryJoinPointRewriteRule>
    List of Rewrite rules
    Schema string
    Schema - Choices: ACTIVE_DIRECTORY, CUSTOM
    StateOrProvince string
    User info attribute
    StreetAddress string
    User info attribute
    Telephone string
    User info attribute
    UnreachableDomainsBehaviour string
    Unreachable Domains Behaviour - Choices: PROCEED, DROP
    AdScopesNames string
    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 []ActiveDirectoryJoinPointAttributeArgs
    List of AD attributes
    AuthProtectionType string
    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
    EnableCallbackForDialinClient bool
    Enable Callback For Dial In Client - Default value: false
    EnableDialinPermissionCheck bool
    Enable Dial In Permission Check - Default value: false
    EnableDomainAllowedList bool
    • Default value: true
    EnableFailedAuthProtection bool
    Enable prevent AD account lockout due to too many bad password attempts - Default value: false
    EnableMachineAccess bool
    Enable Machine Access - Default value: true
    EnableMachineAuth bool
    Enable Machine Authentication - Default value: true
    EnablePassChange bool
    Enable Password Change - Default value: true
    EnableRewrites bool
    Enable Rewrites - Default value: false
    FailedAuthThreshold int
    Number of bad password attempts - Default value: 5
    FirstName string
    User info attribute
    Groups []ActiveDirectoryJoinPointGroupArgs
    List of AD Groups
    IdentityNotInAdBehaviour string
    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 []ActiveDirectoryJoinPointRewriteRuleArgs
    List of Rewrite rules
    Schema string
    Schema - Choices: ACTIVE_DIRECTORY, CUSTOM
    StateOrProvince string
    User info attribute
    StreetAddress string
    User info attribute
    Telephone string
    User info attribute
    UnreachableDomainsBehaviour string
    Unreachable Domains Behaviour - Choices: PROCEED, DROP
    adScopesNames String
    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<ActiveDirectoryJoinPointAttribute>
    List of AD attributes
    authProtectionType String
    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
    enableCallbackForDialinClient Boolean
    Enable Callback For Dial In Client - Default value: false
    enableDialinPermissionCheck Boolean
    Enable Dial In Permission Check - Default value: false
    enableDomainAllowedList Boolean
    • Default value: true
    enableFailedAuthProtection Boolean
    Enable prevent AD account lockout due to too many bad password attempts - Default value: false
    enableMachineAccess Boolean
    Enable Machine Access - Default value: true
    enableMachineAuth Boolean
    Enable Machine Authentication - Default value: true
    enablePassChange Boolean
    Enable Password Change - Default value: true
    enableRewrites Boolean
    Enable Rewrites - Default value: false
    failedAuthThreshold Integer
    Number of bad password attempts - Default value: 5
    firstName String
    User info attribute
    groups List<ActiveDirectoryJoinPointGroup>
    List of AD Groups
    identityNotInAdBehaviour String
    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<ActiveDirectoryJoinPointRewriteRule>
    List of Rewrite rules
    schema String
    Schema - Choices: ACTIVE_DIRECTORY, CUSTOM
    stateOrProvince String
    User info attribute
    streetAddress String
    User info attribute
    telephone String
    User info attribute
    unreachableDomainsBehaviour String
    Unreachable Domains Behaviour - Choices: PROCEED, DROP
    adScopesNames string
    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 ActiveDirectoryJoinPointAttribute[]
    List of AD attributes
    authProtectionType string
    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
    enableCallbackForDialinClient boolean
    Enable Callback For Dial In Client - Default value: false
    enableDialinPermissionCheck boolean
    Enable Dial In Permission Check - Default value: false
    enableDomainAllowedList boolean
    • Default value: true
    enableFailedAuthProtection boolean
    Enable prevent AD account lockout due to too many bad password attempts - Default value: false
    enableMachineAccess boolean
    Enable Machine Access - Default value: true
    enableMachineAuth boolean
    Enable Machine Authentication - Default value: true
    enablePassChange boolean
    Enable Password Change - Default value: true
    enableRewrites boolean
    Enable Rewrites - Default value: false
    failedAuthThreshold number
    Number of bad password attempts - Default value: 5
    firstName string
    User info attribute
    groups ActiveDirectoryJoinPointGroup[]
    List of AD Groups
    identityNotInAdBehaviour string
    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 ActiveDirectoryJoinPointRewriteRule[]
    List of Rewrite rules
    schema string
    Schema - Choices: ACTIVE_DIRECTORY, CUSTOM
    stateOrProvince string
    User info attribute
    streetAddress string
    User info attribute
    telephone string
    User info attribute
    unreachableDomainsBehaviour string
    Unreachable Domains Behaviour - Choices: PROCEED, DROP
    ad_scopes_names str
    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[ActiveDirectoryJoinPointAttributeArgs]
    List of AD attributes
    auth_protection_type str
    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_for_dialin_client bool
    Enable Callback For Dial In Client - Default value: false
    enable_dialin_permission_check bool
    Enable Dial In Permission Check - Default value: false
    enable_domain_allowed_list bool
    • Default value: true
    enable_failed_auth_protection bool
    Enable prevent AD account lockout due to too many bad password attempts - Default value: false
    enable_machine_access bool
    Enable Machine Access - Default value: true
    enable_machine_auth bool
    Enable Machine Authentication - Default value: true
    enable_pass_change bool
    Enable Password Change - Default value: true
    enable_rewrites bool
    Enable Rewrites - Default value: false
    failed_auth_threshold int
    Number of bad password attempts - Default value: 5
    first_name str
    User info attribute
    groups Sequence[ActiveDirectoryJoinPointGroupArgs]
    List of AD Groups
    identity_not_in_ad_behaviour str
    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[ActiveDirectoryJoinPointRewriteRuleArgs]
    List of Rewrite rules
    schema str
    Schema - Choices: ACTIVE_DIRECTORY, CUSTOM
    state_or_province str
    User info attribute
    street_address str
    User info attribute
    telephone str
    User info attribute
    unreachable_domains_behaviour str
    Unreachable Domains Behaviour - Choices: PROCEED, DROP
    adScopesNames String
    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
    authProtectionType String
    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
    enableCallbackForDialinClient Boolean
    Enable Callback For Dial In Client - Default value: false
    enableDialinPermissionCheck Boolean
    Enable Dial In Permission Check - Default value: false
    enableDomainAllowedList Boolean
    • Default value: true
    enableFailedAuthProtection Boolean
    Enable prevent AD account lockout due to too many bad password attempts - Default value: false
    enableMachineAccess Boolean
    Enable Machine Access - Default value: true
    enableMachineAuth Boolean
    Enable Machine Authentication - Default value: true
    enablePassChange Boolean
    Enable Password Change - Default value: true
    enableRewrites Boolean
    Enable Rewrites - Default value: false
    failedAuthThreshold Number
    Number of bad password attempts - Default value: 5
    firstName String
    User info attribute
    groups List<Property Map>
    List of AD Groups
    identityNotInAdBehaviour String
    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
    stateOrProvince String
    User info attribute
    streetAddress String
    User info attribute
    telephone String
    User info attribute
    unreachableDomainsBehaviour String
    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
    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
    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
    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
    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
    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

    ActiveDirectoryJoinPointGroup, ActiveDirectoryJoinPointGroupArgs

    Name string
    Required for each group in the group list with no duplication between groups
    Sid string
    Required for each group in the group list with no duplication between groups
    Type string
    Name string
    Required for each group in the group list with no duplication between groups
    Sid string
    Required for each group in the group list with no duplication between groups
    Type string
    name String
    Required for each group in the group list with no duplication between groups
    sid String
    Required for each group in the group list with no duplication between groups
    type String
    name string
    Required for each group in the group list with no duplication between groups
    sid string
    Required for each group in the group list with no duplication between groups
    type string
    name str
    Required for each group in the group list with no duplication between groups
    sid str
    Required for each group in the group list with no duplication between groups
    type str
    name String
    Required for each group in the group list with no duplication between groups
    sid String
    Required for each group in the group list with no duplication between groups
    type String

    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 ise Terraform Provider.
    ise logo
    Cisco ISE v0.1.4 published on Friday, May 31, 2024 by Pulumi