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

ise.identitymanagement.ActiveDirectoryJoinDomainWithAllNodes

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 Domain with All Nodes.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as ise from "@pulumi/ise";
    
    const example = new ise.identitymanagement.ActiveDirectoryJoinDomainWithAllNodes("example", {
        joinPointId: "73808580-b6e6-11ee-8960-de6d7692bc40",
        additionalDatas: [{
            name: "username",
            value: "administrator",
        }],
    });
    
    import pulumi
    import pulumi_ise as ise
    
    example = ise.identitymanagement.ActiveDirectoryJoinDomainWithAllNodes("example",
        join_point_id="73808580-b6e6-11ee-8960-de6d7692bc40",
        additional_datas=[ise.identitymanagement.ActiveDirectoryJoinDomainWithAllNodesAdditionalDataArgs(
            name="username",
            value="administrator",
        )])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-ise/sdk/go/ise/identitymanagement"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := identitymanagement.NewActiveDirectoryJoinDomainWithAllNodes(ctx, "example", &identitymanagement.ActiveDirectoryJoinDomainWithAllNodesArgs{
    			JoinPointId: pulumi.String("73808580-b6e6-11ee-8960-de6d7692bc40"),
    			AdditionalDatas: identitymanagement.ActiveDirectoryJoinDomainWithAllNodesAdditionalDataArray{
    				&identitymanagement.ActiveDirectoryJoinDomainWithAllNodesAdditionalDataArgs{
    					Name:  pulumi.String("username"),
    					Value: pulumi.String("administrator"),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Ise = Pulumi.Ise;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Ise.IdentityManagement.ActiveDirectoryJoinDomainWithAllNodes("example", new()
        {
            JoinPointId = "73808580-b6e6-11ee-8960-de6d7692bc40",
            AdditionalDatas = new[]
            {
                new Ise.IdentityManagement.Inputs.ActiveDirectoryJoinDomainWithAllNodesAdditionalDataArgs
                {
                    Name = "username",
                    Value = "administrator",
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.ise.identitymanagement.ActiveDirectoryJoinDomainWithAllNodes;
    import com.pulumi.ise.identitymanagement.ActiveDirectoryJoinDomainWithAllNodesArgs;
    import com.pulumi.ise.identitymanagement.inputs.ActiveDirectoryJoinDomainWithAllNodesAdditionalDataArgs;
    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 ActiveDirectoryJoinDomainWithAllNodes("example", ActiveDirectoryJoinDomainWithAllNodesArgs.builder()
                .joinPointId("73808580-b6e6-11ee-8960-de6d7692bc40")
                .additionalDatas(ActiveDirectoryJoinDomainWithAllNodesAdditionalDataArgs.builder()
                    .name("username")
                    .value("administrator")
                    .build())
                .build());
    
        }
    }
    
    resources:
      example:
        type: ise:identitymanagement:ActiveDirectoryJoinDomainWithAllNodes
        properties:
          joinPointId: 73808580-b6e6-11ee-8960-de6d7692bc40
          additionalDatas:
            - name: username
              value: administrator
    

    Create ActiveDirectoryJoinDomainWithAllNodes Resource

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

    Constructor syntax

    new ActiveDirectoryJoinDomainWithAllNodes(name: string, args: ActiveDirectoryJoinDomainWithAllNodesArgs, opts?: CustomResourceOptions);
    @overload
    def ActiveDirectoryJoinDomainWithAllNodes(resource_name: str,
                                              args: ActiveDirectoryJoinDomainWithAllNodesArgs,
                                              opts: Optional[ResourceOptions] = None)
    
    @overload
    def ActiveDirectoryJoinDomainWithAllNodes(resource_name: str,
                                              opts: Optional[ResourceOptions] = None,
                                              additional_datas: Optional[Sequence[ActiveDirectoryJoinDomainWithAllNodesAdditionalDataArgs]] = None,
                                              join_point_id: Optional[str] = None)
    func NewActiveDirectoryJoinDomainWithAllNodes(ctx *Context, name string, args ActiveDirectoryJoinDomainWithAllNodesArgs, opts ...ResourceOption) (*ActiveDirectoryJoinDomainWithAllNodes, error)
    public ActiveDirectoryJoinDomainWithAllNodes(string name, ActiveDirectoryJoinDomainWithAllNodesArgs args, CustomResourceOptions? opts = null)
    public ActiveDirectoryJoinDomainWithAllNodes(String name, ActiveDirectoryJoinDomainWithAllNodesArgs args)
    public ActiveDirectoryJoinDomainWithAllNodes(String name, ActiveDirectoryJoinDomainWithAllNodesArgs args, CustomResourceOptions options)
    
    type: ise:identitymanagement:ActiveDirectoryJoinDomainWithAllNodes
    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 ActiveDirectoryJoinDomainWithAllNodesArgs
    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 ActiveDirectoryJoinDomainWithAllNodesArgs
    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 ActiveDirectoryJoinDomainWithAllNodesArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ActiveDirectoryJoinDomainWithAllNodesArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ActiveDirectoryJoinDomainWithAllNodesArgs
    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 activeDirectoryJoinDomainWithAllNodesResource = new Ise.IdentityManagement.ActiveDirectoryJoinDomainWithAllNodes("activeDirectoryJoinDomainWithAllNodesResource", new()
    {
        AdditionalDatas = new[]
        {
            new Ise.IdentityManagement.Inputs.ActiveDirectoryJoinDomainWithAllNodesAdditionalDataArgs
            {
                Name = "string",
                Value = "string",
            },
        },
        JoinPointId = "string",
    });
    
    example, err := identitymanagement.NewActiveDirectoryJoinDomainWithAllNodes(ctx, "activeDirectoryJoinDomainWithAllNodesResource", &identitymanagement.ActiveDirectoryJoinDomainWithAllNodesArgs{
    	AdditionalDatas: identitymanagement.ActiveDirectoryJoinDomainWithAllNodesAdditionalDataArray{
    		&identitymanagement.ActiveDirectoryJoinDomainWithAllNodesAdditionalDataArgs{
    			Name:  pulumi.String("string"),
    			Value: pulumi.String("string"),
    		},
    	},
    	JoinPointId: pulumi.String("string"),
    })
    
    var activeDirectoryJoinDomainWithAllNodesResource = new ActiveDirectoryJoinDomainWithAllNodes("activeDirectoryJoinDomainWithAllNodesResource", ActiveDirectoryJoinDomainWithAllNodesArgs.builder()
        .additionalDatas(ActiveDirectoryJoinDomainWithAllNodesAdditionalDataArgs.builder()
            .name("string")
            .value("string")
            .build())
        .joinPointId("string")
        .build());
    
    active_directory_join_domain_with_all_nodes_resource = ise.identitymanagement.ActiveDirectoryJoinDomainWithAllNodes("activeDirectoryJoinDomainWithAllNodesResource",
        additional_datas=[ise.identitymanagement.ActiveDirectoryJoinDomainWithAllNodesAdditionalDataArgs(
            name="string",
            value="string",
        )],
        join_point_id="string")
    
    const activeDirectoryJoinDomainWithAllNodesResource = new ise.identitymanagement.ActiveDirectoryJoinDomainWithAllNodes("activeDirectoryJoinDomainWithAllNodesResource", {
        additionalDatas: [{
            name: "string",
            value: "string",
        }],
        joinPointId: "string",
    });
    
    type: ise:identitymanagement:ActiveDirectoryJoinDomainWithAllNodes
    properties:
        additionalDatas:
            - name: string
              value: string
        joinPointId: string
    

    ActiveDirectoryJoinDomainWithAllNodes 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 ActiveDirectoryJoinDomainWithAllNodes resource accepts the following input properties:

    additionalDatas List<Property Map>
    joinPointId String
    Active Directory Join Point ID

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ActiveDirectoryJoinDomainWithAllNodes 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 ActiveDirectoryJoinDomainWithAllNodes Resource

    Get an existing ActiveDirectoryJoinDomainWithAllNodes 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?: ActiveDirectoryJoinDomainWithAllNodesState, opts?: CustomResourceOptions): ActiveDirectoryJoinDomainWithAllNodes
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            additional_datas: Optional[Sequence[ActiveDirectoryJoinDomainWithAllNodesAdditionalDataArgs]] = None,
            join_point_id: Optional[str] = None) -> ActiveDirectoryJoinDomainWithAllNodes
    func GetActiveDirectoryJoinDomainWithAllNodes(ctx *Context, name string, id IDInput, state *ActiveDirectoryJoinDomainWithAllNodesState, opts ...ResourceOption) (*ActiveDirectoryJoinDomainWithAllNodes, error)
    public static ActiveDirectoryJoinDomainWithAllNodes Get(string name, Input<string> id, ActiveDirectoryJoinDomainWithAllNodesState? state, CustomResourceOptions? opts = null)
    public static ActiveDirectoryJoinDomainWithAllNodes get(String name, Output<String> id, ActiveDirectoryJoinDomainWithAllNodesState 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.

    Supporting Types

    ActiveDirectoryJoinDomainWithAllNodesAdditionalData, ActiveDirectoryJoinDomainWithAllNodesAdditionalDataArgs

    Name string
    Additional attribute name
    Value string
    Additional attribute value
    Name string
    Additional attribute name
    Value string
    Additional attribute value
    name String
    Additional attribute name
    value String
    Additional attribute value
    name string
    Additional attribute name
    value string
    Additional attribute value
    name str
    Additional attribute name
    value str
    Additional attribute value
    name String
    Additional attribute name
    value String
    Additional attribute value

    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