1. Packages
  2. Nutanix
  3. API Docs
  4. DirectoryServicesV2
Nutanix v0.7.4 published on Friday, Mar 21, 2025 by Piers Karsenbarg

nutanix.DirectoryServicesV2

Explore with Pulumi AI

nutanix logo
Nutanix v0.7.4 published on Friday, Mar 21, 2025 by Piers Karsenbarg

    Provides a resource to Create a Directory Service.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as nutanix from "@pierskarsenbarg/nutanix";
    
    const example = new nutanix.DirectoryServicesV2("example", {
        directoryType: "directory type",
        domainName: "domain name",
        serviceAccounts: [{
            password: "service account password",
            username: "service account username",
        }],
        url: "URL for the Directory Service",
    });
    
    import pulumi
    import pulumi_nutanix as nutanix
    
    example = nutanix.DirectoryServicesV2("example",
        directory_type="directory type",
        domain_name="domain name",
        service_accounts=[{
            "password": "service account password",
            "username": "service account username",
        }],
        url="URL for the Directory Service")
    
    package main
    
    import (
    	"github.com/pierskarsenbarg/pulumi-nutanix/sdk/go/nutanix"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := nutanix.NewDirectoryServicesV2(ctx, "example", &nutanix.DirectoryServicesV2Args{
    			DirectoryType: pulumi.String("directory type"),
    			DomainName:    pulumi.String("domain name"),
    			ServiceAccounts: nutanix.DirectoryServicesV2ServiceAccountArray{
    				&nutanix.DirectoryServicesV2ServiceAccountArgs{
    					Password: pulumi.String("service account password"),
    					Username: pulumi.String("service account username"),
    				},
    			},
    			Url: pulumi.String("URL for the Directory Service"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Nutanix = PiersKarsenbarg.Nutanix;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Nutanix.DirectoryServicesV2("example", new()
        {
            DirectoryType = "directory type",
            DomainName = "domain name",
            ServiceAccounts = new[]
            {
                new Nutanix.Inputs.DirectoryServicesV2ServiceAccountArgs
                {
                    Password = "service account password",
                    Username = "service account username",
                },
            },
            Url = "URL for the Directory Service",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.nutanix.DirectoryServicesV2;
    import com.pulumi.nutanix.DirectoryServicesV2Args;
    import com.pulumi.nutanix.inputs.DirectoryServicesV2ServiceAccountArgs;
    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 DirectoryServicesV2("example", DirectoryServicesV2Args.builder()
                .directoryType("directory type")
                .domainName("domain name")
                .serviceAccounts(DirectoryServicesV2ServiceAccountArgs.builder()
                    .password("service account password")
                    .username("service account username")
                    .build())
                .url("URL for the Directory Service")
                .build());
    
        }
    }
    
    resources:
      example:
        type: nutanix:DirectoryServicesV2
        properties:
          directoryType: directory type
          domainName: domain name
          serviceAccounts:
            - password: service account password
              username: service account username
          url: URL for the Directory Service
    

    Create DirectoryServicesV2 Resource

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

    Constructor syntax

    new DirectoryServicesV2(name: string, args: DirectoryServicesV2Args, opts?: CustomResourceOptions);
    @overload
    def DirectoryServicesV2(resource_name: str,
                            args: DirectoryServicesV2Args,
                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def DirectoryServicesV2(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            directory_type: Optional[str] = None,
                            domain_name: Optional[str] = None,
                            service_accounts: Optional[Sequence[DirectoryServicesV2ServiceAccountArgs]] = None,
                            url: Optional[str] = None,
                            ext_id: Optional[str] = None,
                            group_search_type: Optional[str] = None,
                            name: Optional[str] = None,
                            open_ldap_configurations: Optional[Sequence[DirectoryServicesV2OpenLdapConfigurationArgs]] = None,
                            secondary_urls: Optional[Sequence[str]] = None,
                            white_listed_groups: Optional[Sequence[str]] = None)
    func NewDirectoryServicesV2(ctx *Context, name string, args DirectoryServicesV2Args, opts ...ResourceOption) (*DirectoryServicesV2, error)
    public DirectoryServicesV2(string name, DirectoryServicesV2Args args, CustomResourceOptions? opts = null)
    public DirectoryServicesV2(String name, DirectoryServicesV2Args args)
    public DirectoryServicesV2(String name, DirectoryServicesV2Args args, CustomResourceOptions options)
    
    type: nutanix:DirectoryServicesV2
    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 DirectoryServicesV2Args
    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 DirectoryServicesV2Args
    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 DirectoryServicesV2Args
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DirectoryServicesV2Args
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DirectoryServicesV2Args
    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 directoryServicesV2Resource = new Nutanix.DirectoryServicesV2("directoryServicesV2Resource", new()
    {
        DirectoryType = "string",
        DomainName = "string",
        ServiceAccounts = new[]
        {
            new Nutanix.Inputs.DirectoryServicesV2ServiceAccountArgs
            {
                Password = "string",
                Username = "string",
            },
        },
        Url = "string",
        ExtId = "string",
        GroupSearchType = "string",
        Name = "string",
        OpenLdapConfigurations = new[]
        {
            new Nutanix.Inputs.DirectoryServicesV2OpenLdapConfigurationArgs
            {
                UserConfigurations = new[]
                {
                    new Nutanix.Inputs.DirectoryServicesV2OpenLdapConfigurationUserConfigurationArgs
                    {
                        UserObjectClass = "string",
                        UserSearchBase = "string",
                        UsernameAttribute = "string",
                    },
                },
                UserGroupConfigurations = new[]
                {
                    new Nutanix.Inputs.DirectoryServicesV2OpenLdapConfigurationUserGroupConfigurationArgs
                    {
                        GroupMemberAttribute = "string",
                        GroupMemberAttributeValue = "string",
                        GroupObjectClass = "string",
                        GroupSearchBase = "string",
                    },
                },
            },
        },
        SecondaryUrls = new[]
        {
            "string",
        },
        WhiteListedGroups = new[]
        {
            "string",
        },
    });
    
    example, err := nutanix.NewDirectoryServicesV2(ctx, "directoryServicesV2Resource", &nutanix.DirectoryServicesV2Args{
    	DirectoryType: pulumi.String("string"),
    	DomainName:    pulumi.String("string"),
    	ServiceAccounts: nutanix.DirectoryServicesV2ServiceAccountArray{
    		&nutanix.DirectoryServicesV2ServiceAccountArgs{
    			Password: pulumi.String("string"),
    			Username: pulumi.String("string"),
    		},
    	},
    	Url:             pulumi.String("string"),
    	ExtId:           pulumi.String("string"),
    	GroupSearchType: pulumi.String("string"),
    	Name:            pulumi.String("string"),
    	OpenLdapConfigurations: nutanix.DirectoryServicesV2OpenLdapConfigurationArray{
    		&nutanix.DirectoryServicesV2OpenLdapConfigurationArgs{
    			UserConfigurations: nutanix.DirectoryServicesV2OpenLdapConfigurationUserConfigurationArray{
    				&nutanix.DirectoryServicesV2OpenLdapConfigurationUserConfigurationArgs{
    					UserObjectClass:   pulumi.String("string"),
    					UserSearchBase:    pulumi.String("string"),
    					UsernameAttribute: pulumi.String("string"),
    				},
    			},
    			UserGroupConfigurations: nutanix.DirectoryServicesV2OpenLdapConfigurationUserGroupConfigurationArray{
    				&nutanix.DirectoryServicesV2OpenLdapConfigurationUserGroupConfigurationArgs{
    					GroupMemberAttribute:      pulumi.String("string"),
    					GroupMemberAttributeValue: pulumi.String("string"),
    					GroupObjectClass:          pulumi.String("string"),
    					GroupSearchBase:           pulumi.String("string"),
    				},
    			},
    		},
    	},
    	SecondaryUrls: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	WhiteListedGroups: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    })
    
    var directoryServicesV2Resource = new DirectoryServicesV2("directoryServicesV2Resource", DirectoryServicesV2Args.builder()
        .directoryType("string")
        .domainName("string")
        .serviceAccounts(DirectoryServicesV2ServiceAccountArgs.builder()
            .password("string")
            .username("string")
            .build())
        .url("string")
        .extId("string")
        .groupSearchType("string")
        .name("string")
        .openLdapConfigurations(DirectoryServicesV2OpenLdapConfigurationArgs.builder()
            .userConfigurations(DirectoryServicesV2OpenLdapConfigurationUserConfigurationArgs.builder()
                .userObjectClass("string")
                .userSearchBase("string")
                .usernameAttribute("string")
                .build())
            .userGroupConfigurations(DirectoryServicesV2OpenLdapConfigurationUserGroupConfigurationArgs.builder()
                .groupMemberAttribute("string")
                .groupMemberAttributeValue("string")
                .groupObjectClass("string")
                .groupSearchBase("string")
                .build())
            .build())
        .secondaryUrls("string")
        .whiteListedGroups("string")
        .build());
    
    directory_services_v2_resource = nutanix.DirectoryServicesV2("directoryServicesV2Resource",
        directory_type="string",
        domain_name="string",
        service_accounts=[{
            "password": "string",
            "username": "string",
        }],
        url="string",
        ext_id="string",
        group_search_type="string",
        name="string",
        open_ldap_configurations=[{
            "user_configurations": [{
                "user_object_class": "string",
                "user_search_base": "string",
                "username_attribute": "string",
            }],
            "user_group_configurations": [{
                "group_member_attribute": "string",
                "group_member_attribute_value": "string",
                "group_object_class": "string",
                "group_search_base": "string",
            }],
        }],
        secondary_urls=["string"],
        white_listed_groups=["string"])
    
    const directoryServicesV2Resource = new nutanix.DirectoryServicesV2("directoryServicesV2Resource", {
        directoryType: "string",
        domainName: "string",
        serviceAccounts: [{
            password: "string",
            username: "string",
        }],
        url: "string",
        extId: "string",
        groupSearchType: "string",
        name: "string",
        openLdapConfigurations: [{
            userConfigurations: [{
                userObjectClass: "string",
                userSearchBase: "string",
                usernameAttribute: "string",
            }],
            userGroupConfigurations: [{
                groupMemberAttribute: "string",
                groupMemberAttributeValue: "string",
                groupObjectClass: "string",
                groupSearchBase: "string",
            }],
        }],
        secondaryUrls: ["string"],
        whiteListedGroups: ["string"],
    });
    
    type: nutanix:DirectoryServicesV2
    properties:
        directoryType: string
        domainName: string
        extId: string
        groupSearchType: string
        name: string
        openLdapConfigurations:
            - userConfigurations:
                - userObjectClass: string
                  userSearchBase: string
                  usernameAttribute: string
              userGroupConfigurations:
                - groupMemberAttribute: string
                  groupMemberAttributeValue: string
                  groupObjectClass: string
                  groupSearchBase: string
        secondaryUrls:
            - string
        serviceAccounts:
            - password: string
              username: string
        url: string
        whiteListedGroups:
            - string
    

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

    DirectoryType string
    -(Required) Type of Directory Service, Supported values are: "ACTIVE_DIRECTORY" (Directory Service type is Active Directory.) and "OPEN_LDAP" (Directory Service type is Open LDAP.)
    DomainName string
    -(Required) Domain name for the Directory Service.
    ServiceAccounts List<PiersKarsenbarg.Nutanix.Inputs.DirectoryServicesV2ServiceAccount>
    -(Required) Information of Service account to connect to the Directory Service.
    Url string
    -(Required) URL for the Directory Service.
    ExtId string
    -(Optional) A globally unique identifier of an instance that is suitable for external consumption.
    GroupSearchType string
    -(Optional) Group membership search type for the Directory Service. Supported values are: "NON_RECURSIVE" (Doesn't search recursively within groups.) and "RECURSIVE" (Searches recursively within groups.)
    Name string
    -(Required) Name for the Directory Service.
    OpenLdapConfigurations List<PiersKarsenbarg.Nutanix.Inputs.DirectoryServicesV2OpenLdapConfiguration>
    -(Optional) Configuration for OpenLDAP Directory Service.
    SecondaryUrls List<string>
    -(Optional) Secondary URL for the Directory Service.
    WhiteListedGroups List<string>
    -(Optional) List of allowed User Groups for the Directory Service.
    DirectoryType string
    -(Required) Type of Directory Service, Supported values are: "ACTIVE_DIRECTORY" (Directory Service type is Active Directory.) and "OPEN_LDAP" (Directory Service type is Open LDAP.)
    DomainName string
    -(Required) Domain name for the Directory Service.
    ServiceAccounts []DirectoryServicesV2ServiceAccountArgs
    -(Required) Information of Service account to connect to the Directory Service.
    Url string
    -(Required) URL for the Directory Service.
    ExtId string
    -(Optional) A globally unique identifier of an instance that is suitable for external consumption.
    GroupSearchType string
    -(Optional) Group membership search type for the Directory Service. Supported values are: "NON_RECURSIVE" (Doesn't search recursively within groups.) and "RECURSIVE" (Searches recursively within groups.)
    Name string
    -(Required) Name for the Directory Service.
    OpenLdapConfigurations []DirectoryServicesV2OpenLdapConfigurationArgs
    -(Optional) Configuration for OpenLDAP Directory Service.
    SecondaryUrls []string
    -(Optional) Secondary URL for the Directory Service.
    WhiteListedGroups []string
    -(Optional) List of allowed User Groups for the Directory Service.
    directoryType String
    -(Required) Type of Directory Service, Supported values are: "ACTIVE_DIRECTORY" (Directory Service type is Active Directory.) and "OPEN_LDAP" (Directory Service type is Open LDAP.)
    domainName String
    -(Required) Domain name for the Directory Service.
    serviceAccounts List<DirectoryServicesV2ServiceAccount>
    -(Required) Information of Service account to connect to the Directory Service.
    url String
    -(Required) URL for the Directory Service.
    extId String
    -(Optional) A globally unique identifier of an instance that is suitable for external consumption.
    groupSearchType String
    -(Optional) Group membership search type for the Directory Service. Supported values are: "NON_RECURSIVE" (Doesn't search recursively within groups.) and "RECURSIVE" (Searches recursively within groups.)
    name String
    -(Required) Name for the Directory Service.
    openLdapConfigurations List<DirectoryServicesV2OpenLdapConfiguration>
    -(Optional) Configuration for OpenLDAP Directory Service.
    secondaryUrls List<String>
    -(Optional) Secondary URL for the Directory Service.
    whiteListedGroups List<String>
    -(Optional) List of allowed User Groups for the Directory Service.
    directoryType string
    -(Required) Type of Directory Service, Supported values are: "ACTIVE_DIRECTORY" (Directory Service type is Active Directory.) and "OPEN_LDAP" (Directory Service type is Open LDAP.)
    domainName string
    -(Required) Domain name for the Directory Service.
    serviceAccounts DirectoryServicesV2ServiceAccount[]
    -(Required) Information of Service account to connect to the Directory Service.
    url string
    -(Required) URL for the Directory Service.
    extId string
    -(Optional) A globally unique identifier of an instance that is suitable for external consumption.
    groupSearchType string
    -(Optional) Group membership search type for the Directory Service. Supported values are: "NON_RECURSIVE" (Doesn't search recursively within groups.) and "RECURSIVE" (Searches recursively within groups.)
    name string
    -(Required) Name for the Directory Service.
    openLdapConfigurations DirectoryServicesV2OpenLdapConfiguration[]
    -(Optional) Configuration for OpenLDAP Directory Service.
    secondaryUrls string[]
    -(Optional) Secondary URL for the Directory Service.
    whiteListedGroups string[]
    -(Optional) List of allowed User Groups for the Directory Service.
    directory_type str
    -(Required) Type of Directory Service, Supported values are: "ACTIVE_DIRECTORY" (Directory Service type is Active Directory.) and "OPEN_LDAP" (Directory Service type is Open LDAP.)
    domain_name str
    -(Required) Domain name for the Directory Service.
    service_accounts Sequence[DirectoryServicesV2ServiceAccountArgs]
    -(Required) Information of Service account to connect to the Directory Service.
    url str
    -(Required) URL for the Directory Service.
    ext_id str
    -(Optional) A globally unique identifier of an instance that is suitable for external consumption.
    group_search_type str
    -(Optional) Group membership search type for the Directory Service. Supported values are: "NON_RECURSIVE" (Doesn't search recursively within groups.) and "RECURSIVE" (Searches recursively within groups.)
    name str
    -(Required) Name for the Directory Service.
    open_ldap_configurations Sequence[DirectoryServicesV2OpenLdapConfigurationArgs]
    -(Optional) Configuration for OpenLDAP Directory Service.
    secondary_urls Sequence[str]
    -(Optional) Secondary URL for the Directory Service.
    white_listed_groups Sequence[str]
    -(Optional) List of allowed User Groups for the Directory Service.
    directoryType String
    -(Required) Type of Directory Service, Supported values are: "ACTIVE_DIRECTORY" (Directory Service type is Active Directory.) and "OPEN_LDAP" (Directory Service type is Open LDAP.)
    domainName String
    -(Required) Domain name for the Directory Service.
    serviceAccounts List<Property Map>
    -(Required) Information of Service account to connect to the Directory Service.
    url String
    -(Required) URL for the Directory Service.
    extId String
    -(Optional) A globally unique identifier of an instance that is suitable for external consumption.
    groupSearchType String
    -(Optional) Group membership search type for the Directory Service. Supported values are: "NON_RECURSIVE" (Doesn't search recursively within groups.) and "RECURSIVE" (Searches recursively within groups.)
    name String
    -(Required) Name for the Directory Service.
    openLdapConfigurations List<Property Map>
    -(Optional) Configuration for OpenLDAP Directory Service.
    secondaryUrls List<String>
    -(Optional) Secondary URL for the Directory Service.
    whiteListedGroups List<String>
    -(Optional) List of allowed User Groups for the Directory Service.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the DirectoryServicesV2 resource produces the following output properties:

    CreatedBy string
    • User or Service who created the Directory Service.
    CreatedTime string
    • Creation time of the Directory Service.
    Id string
    The provider-assigned unique ID for this managed resource.
    LastUpdatedTime string
    • Last updated time of the Directory Service.
    CreatedBy string
    • User or Service who created the Directory Service.
    CreatedTime string
    • Creation time of the Directory Service.
    Id string
    The provider-assigned unique ID for this managed resource.
    LastUpdatedTime string
    • Last updated time of the Directory Service.
    createdBy String
    • User or Service who created the Directory Service.
    createdTime String
    • Creation time of the Directory Service.
    id String
    The provider-assigned unique ID for this managed resource.
    lastUpdatedTime String
    • Last updated time of the Directory Service.
    createdBy string
    • User or Service who created the Directory Service.
    createdTime string
    • Creation time of the Directory Service.
    id string
    The provider-assigned unique ID for this managed resource.
    lastUpdatedTime string
    • Last updated time of the Directory Service.
    created_by str
    • User or Service who created the Directory Service.
    created_time str
    • Creation time of the Directory Service.
    id str
    The provider-assigned unique ID for this managed resource.
    last_updated_time str
    • Last updated time of the Directory Service.
    createdBy String
    • User or Service who created the Directory Service.
    createdTime String
    • Creation time of the Directory Service.
    id String
    The provider-assigned unique ID for this managed resource.
    lastUpdatedTime String
    • Last updated time of the Directory Service.

    Look up Existing DirectoryServicesV2 Resource

    Get an existing DirectoryServicesV2 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?: DirectoryServicesV2State, opts?: CustomResourceOptions): DirectoryServicesV2
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            created_by: Optional[str] = None,
            created_time: Optional[str] = None,
            directory_type: Optional[str] = None,
            domain_name: Optional[str] = None,
            ext_id: Optional[str] = None,
            group_search_type: Optional[str] = None,
            last_updated_time: Optional[str] = None,
            name: Optional[str] = None,
            open_ldap_configurations: Optional[Sequence[DirectoryServicesV2OpenLdapConfigurationArgs]] = None,
            secondary_urls: Optional[Sequence[str]] = None,
            service_accounts: Optional[Sequence[DirectoryServicesV2ServiceAccountArgs]] = None,
            url: Optional[str] = None,
            white_listed_groups: Optional[Sequence[str]] = None) -> DirectoryServicesV2
    func GetDirectoryServicesV2(ctx *Context, name string, id IDInput, state *DirectoryServicesV2State, opts ...ResourceOption) (*DirectoryServicesV2, error)
    public static DirectoryServicesV2 Get(string name, Input<string> id, DirectoryServicesV2State? state, CustomResourceOptions? opts = null)
    public static DirectoryServicesV2 get(String name, Output<String> id, DirectoryServicesV2State state, CustomResourceOptions options)
    resources:  _:    type: nutanix:DirectoryServicesV2    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.
    The following state arguments are supported:
    CreatedBy string
    • User or Service who created the Directory Service.
    CreatedTime string
    • Creation time of the Directory Service.
    DirectoryType string
    -(Required) Type of Directory Service, Supported values are: "ACTIVE_DIRECTORY" (Directory Service type is Active Directory.) and "OPEN_LDAP" (Directory Service type is Open LDAP.)
    DomainName string
    -(Required) Domain name for the Directory Service.
    ExtId string
    -(Optional) A globally unique identifier of an instance that is suitable for external consumption.
    GroupSearchType string
    -(Optional) Group membership search type for the Directory Service. Supported values are: "NON_RECURSIVE" (Doesn't search recursively within groups.) and "RECURSIVE" (Searches recursively within groups.)
    LastUpdatedTime string
    • Last updated time of the Directory Service.
    Name string
    -(Required) Name for the Directory Service.
    OpenLdapConfigurations List<PiersKarsenbarg.Nutanix.Inputs.DirectoryServicesV2OpenLdapConfiguration>
    -(Optional) Configuration for OpenLDAP Directory Service.
    SecondaryUrls List<string>
    -(Optional) Secondary URL for the Directory Service.
    ServiceAccounts List<PiersKarsenbarg.Nutanix.Inputs.DirectoryServicesV2ServiceAccount>
    -(Required) Information of Service account to connect to the Directory Service.
    Url string
    -(Required) URL for the Directory Service.
    WhiteListedGroups List<string>
    -(Optional) List of allowed User Groups for the Directory Service.
    CreatedBy string
    • User or Service who created the Directory Service.
    CreatedTime string
    • Creation time of the Directory Service.
    DirectoryType string
    -(Required) Type of Directory Service, Supported values are: "ACTIVE_DIRECTORY" (Directory Service type is Active Directory.) and "OPEN_LDAP" (Directory Service type is Open LDAP.)
    DomainName string
    -(Required) Domain name for the Directory Service.
    ExtId string
    -(Optional) A globally unique identifier of an instance that is suitable for external consumption.
    GroupSearchType string
    -(Optional) Group membership search type for the Directory Service. Supported values are: "NON_RECURSIVE" (Doesn't search recursively within groups.) and "RECURSIVE" (Searches recursively within groups.)
    LastUpdatedTime string
    • Last updated time of the Directory Service.
    Name string
    -(Required) Name for the Directory Service.
    OpenLdapConfigurations []DirectoryServicesV2OpenLdapConfigurationArgs
    -(Optional) Configuration for OpenLDAP Directory Service.
    SecondaryUrls []string
    -(Optional) Secondary URL for the Directory Service.
    ServiceAccounts []DirectoryServicesV2ServiceAccountArgs
    -(Required) Information of Service account to connect to the Directory Service.
    Url string
    -(Required) URL for the Directory Service.
    WhiteListedGroups []string
    -(Optional) List of allowed User Groups for the Directory Service.
    createdBy String
    • User or Service who created the Directory Service.
    createdTime String
    • Creation time of the Directory Service.
    directoryType String
    -(Required) Type of Directory Service, Supported values are: "ACTIVE_DIRECTORY" (Directory Service type is Active Directory.) and "OPEN_LDAP" (Directory Service type is Open LDAP.)
    domainName String
    -(Required) Domain name for the Directory Service.
    extId String
    -(Optional) A globally unique identifier of an instance that is suitable for external consumption.
    groupSearchType String
    -(Optional) Group membership search type for the Directory Service. Supported values are: "NON_RECURSIVE" (Doesn't search recursively within groups.) and "RECURSIVE" (Searches recursively within groups.)
    lastUpdatedTime String
    • Last updated time of the Directory Service.
    name String
    -(Required) Name for the Directory Service.
    openLdapConfigurations List<DirectoryServicesV2OpenLdapConfiguration>
    -(Optional) Configuration for OpenLDAP Directory Service.
    secondaryUrls List<String>
    -(Optional) Secondary URL for the Directory Service.
    serviceAccounts List<DirectoryServicesV2ServiceAccount>
    -(Required) Information of Service account to connect to the Directory Service.
    url String
    -(Required) URL for the Directory Service.
    whiteListedGroups List<String>
    -(Optional) List of allowed User Groups for the Directory Service.
    createdBy string
    • User or Service who created the Directory Service.
    createdTime string
    • Creation time of the Directory Service.
    directoryType string
    -(Required) Type of Directory Service, Supported values are: "ACTIVE_DIRECTORY" (Directory Service type is Active Directory.) and "OPEN_LDAP" (Directory Service type is Open LDAP.)
    domainName string
    -(Required) Domain name for the Directory Service.
    extId string
    -(Optional) A globally unique identifier of an instance that is suitable for external consumption.
    groupSearchType string
    -(Optional) Group membership search type for the Directory Service. Supported values are: "NON_RECURSIVE" (Doesn't search recursively within groups.) and "RECURSIVE" (Searches recursively within groups.)
    lastUpdatedTime string
    • Last updated time of the Directory Service.
    name string
    -(Required) Name for the Directory Service.
    openLdapConfigurations DirectoryServicesV2OpenLdapConfiguration[]
    -(Optional) Configuration for OpenLDAP Directory Service.
    secondaryUrls string[]
    -(Optional) Secondary URL for the Directory Service.
    serviceAccounts DirectoryServicesV2ServiceAccount[]
    -(Required) Information of Service account to connect to the Directory Service.
    url string
    -(Required) URL for the Directory Service.
    whiteListedGroups string[]
    -(Optional) List of allowed User Groups for the Directory Service.
    created_by str
    • User or Service who created the Directory Service.
    created_time str
    • Creation time of the Directory Service.
    directory_type str
    -(Required) Type of Directory Service, Supported values are: "ACTIVE_DIRECTORY" (Directory Service type is Active Directory.) and "OPEN_LDAP" (Directory Service type is Open LDAP.)
    domain_name str
    -(Required) Domain name for the Directory Service.
    ext_id str
    -(Optional) A globally unique identifier of an instance that is suitable for external consumption.
    group_search_type str
    -(Optional) Group membership search type for the Directory Service. Supported values are: "NON_RECURSIVE" (Doesn't search recursively within groups.) and "RECURSIVE" (Searches recursively within groups.)
    last_updated_time str
    • Last updated time of the Directory Service.
    name str
    -(Required) Name for the Directory Service.
    open_ldap_configurations Sequence[DirectoryServicesV2OpenLdapConfigurationArgs]
    -(Optional) Configuration for OpenLDAP Directory Service.
    secondary_urls Sequence[str]
    -(Optional) Secondary URL for the Directory Service.
    service_accounts Sequence[DirectoryServicesV2ServiceAccountArgs]
    -(Required) Information of Service account to connect to the Directory Service.
    url str
    -(Required) URL for the Directory Service.
    white_listed_groups Sequence[str]
    -(Optional) List of allowed User Groups for the Directory Service.
    createdBy String
    • User or Service who created the Directory Service.
    createdTime String
    • Creation time of the Directory Service.
    directoryType String
    -(Required) Type of Directory Service, Supported values are: "ACTIVE_DIRECTORY" (Directory Service type is Active Directory.) and "OPEN_LDAP" (Directory Service type is Open LDAP.)
    domainName String
    -(Required) Domain name for the Directory Service.
    extId String
    -(Optional) A globally unique identifier of an instance that is suitable for external consumption.
    groupSearchType String
    -(Optional) Group membership search type for the Directory Service. Supported values are: "NON_RECURSIVE" (Doesn't search recursively within groups.) and "RECURSIVE" (Searches recursively within groups.)
    lastUpdatedTime String
    • Last updated time of the Directory Service.
    name String
    -(Required) Name for the Directory Service.
    openLdapConfigurations List<Property Map>
    -(Optional) Configuration for OpenLDAP Directory Service.
    secondaryUrls List<String>
    -(Optional) Secondary URL for the Directory Service.
    serviceAccounts List<Property Map>
    -(Required) Information of Service account to connect to the Directory Service.
    url String
    -(Required) URL for the Directory Service.
    whiteListedGroups List<String>
    -(Optional) List of allowed User Groups for the Directory Service.

    Supporting Types

    DirectoryServicesV2OpenLdapConfiguration, DirectoryServicesV2OpenLdapConfigurationArgs

    UserConfigurations List<PiersKarsenbarg.Nutanix.Inputs.DirectoryServicesV2OpenLdapConfigurationUserConfiguration>
    -(Required) this field will avoid down migration of data from the hot tier unless the overrides field is specified for the virtual disks.
    UserGroupConfigurations List<PiersKarsenbarg.Nutanix.Inputs.DirectoryServicesV2OpenLdapConfigurationUserGroupConfiguration>
    -(Required) this field will avoid down migration of data from the hot tier unless the overrides field is specified for the virtual disks.
    UserConfigurations []DirectoryServicesV2OpenLdapConfigurationUserConfiguration
    -(Required) this field will avoid down migration of data from the hot tier unless the overrides field is specified for the virtual disks.
    UserGroupConfigurations []DirectoryServicesV2OpenLdapConfigurationUserGroupConfiguration
    -(Required) this field will avoid down migration of data from the hot tier unless the overrides field is specified for the virtual disks.
    userConfigurations List<DirectoryServicesV2OpenLdapConfigurationUserConfiguration>
    -(Required) this field will avoid down migration of data from the hot tier unless the overrides field is specified for the virtual disks.
    userGroupConfigurations List<DirectoryServicesV2OpenLdapConfigurationUserGroupConfiguration>
    -(Required) this field will avoid down migration of data from the hot tier unless the overrides field is specified for the virtual disks.
    userConfigurations DirectoryServicesV2OpenLdapConfigurationUserConfiguration[]
    -(Required) this field will avoid down migration of data from the hot tier unless the overrides field is specified for the virtual disks.
    userGroupConfigurations DirectoryServicesV2OpenLdapConfigurationUserGroupConfiguration[]
    -(Required) this field will avoid down migration of data from the hot tier unless the overrides field is specified for the virtual disks.
    user_configurations Sequence[DirectoryServicesV2OpenLdapConfigurationUserConfiguration]
    -(Required) this field will avoid down migration of data from the hot tier unless the overrides field is specified for the virtual disks.
    user_group_configurations Sequence[DirectoryServicesV2OpenLdapConfigurationUserGroupConfiguration]
    -(Required) this field will avoid down migration of data from the hot tier unless the overrides field is specified for the virtual disks.
    userConfigurations List<Property Map>
    -(Required) this field will avoid down migration of data from the hot tier unless the overrides field is specified for the virtual disks.
    userGroupConfigurations List<Property Map>
    -(Required) this field will avoid down migration of data from the hot tier unless the overrides field is specified for the virtual disks.

    DirectoryServicesV2OpenLdapConfigurationUserConfiguration, DirectoryServicesV2OpenLdapConfigurationUserConfigurationArgs

    UserObjectClass string
    -(Required) Object class in the OpenLDAP system that corresponds to Users.
    UserSearchBase string
    -(Required) Base DN for User search.
    UsernameAttribute string
    -(Required) Unique Identifier for each User which can be used in Authentication.
    UserObjectClass string
    -(Required) Object class in the OpenLDAP system that corresponds to Users.
    UserSearchBase string
    -(Required) Base DN for User search.
    UsernameAttribute string
    -(Required) Unique Identifier for each User which can be used in Authentication.
    userObjectClass String
    -(Required) Object class in the OpenLDAP system that corresponds to Users.
    userSearchBase String
    -(Required) Base DN for User search.
    usernameAttribute String
    -(Required) Unique Identifier for each User which can be used in Authentication.
    userObjectClass string
    -(Required) Object class in the OpenLDAP system that corresponds to Users.
    userSearchBase string
    -(Required) Base DN for User search.
    usernameAttribute string
    -(Required) Unique Identifier for each User which can be used in Authentication.
    user_object_class str
    -(Required) Object class in the OpenLDAP system that corresponds to Users.
    user_search_base str
    -(Required) Base DN for User search.
    username_attribute str
    -(Required) Unique Identifier for each User which can be used in Authentication.
    userObjectClass String
    -(Required) Object class in the OpenLDAP system that corresponds to Users.
    userSearchBase String
    -(Required) Base DN for User search.
    usernameAttribute String
    -(Required) Unique Identifier for each User which can be used in Authentication.

    DirectoryServicesV2OpenLdapConfigurationUserGroupConfiguration, DirectoryServicesV2OpenLdapConfigurationUserGroupConfigurationArgs

    GroupMemberAttribute string
    -(Required) Attribute in a group that associates Users to the group.
    GroupMemberAttributeValue string
    -(Required) User attribute value that will be used in group entity to associate User to the group.
    GroupObjectClass string
    -(Required) Object class in the OpenLDAP system that corresponds to groups.
    GroupSearchBase string
    -(Required) Base DN for group search.
    GroupMemberAttribute string
    -(Required) Attribute in a group that associates Users to the group.
    GroupMemberAttributeValue string
    -(Required) User attribute value that will be used in group entity to associate User to the group.
    GroupObjectClass string
    -(Required) Object class in the OpenLDAP system that corresponds to groups.
    GroupSearchBase string
    -(Required) Base DN for group search.
    groupMemberAttribute String
    -(Required) Attribute in a group that associates Users to the group.
    groupMemberAttributeValue String
    -(Required) User attribute value that will be used in group entity to associate User to the group.
    groupObjectClass String
    -(Required) Object class in the OpenLDAP system that corresponds to groups.
    groupSearchBase String
    -(Required) Base DN for group search.
    groupMemberAttribute string
    -(Required) Attribute in a group that associates Users to the group.
    groupMemberAttributeValue string
    -(Required) User attribute value that will be used in group entity to associate User to the group.
    groupObjectClass string
    -(Required) Object class in the OpenLDAP system that corresponds to groups.
    groupSearchBase string
    -(Required) Base DN for group search.
    group_member_attribute str
    -(Required) Attribute in a group that associates Users to the group.
    group_member_attribute_value str
    -(Required) User attribute value that will be used in group entity to associate User to the group.
    group_object_class str
    -(Required) Object class in the OpenLDAP system that corresponds to groups.
    group_search_base str
    -(Required) Base DN for group search.
    groupMemberAttribute String
    -(Required) Attribute in a group that associates Users to the group.
    groupMemberAttributeValue String
    -(Required) User attribute value that will be used in group entity to associate User to the group.
    groupObjectClass String
    -(Required) Object class in the OpenLDAP system that corresponds to groups.
    groupSearchBase String
    -(Required) Base DN for group search.

    DirectoryServicesV2ServiceAccount, DirectoryServicesV2ServiceAccountArgs

    Password string
    -(Required) Password to connect to the Directory Service.
    Username string
    -(Required) Username to connect to the Directory Service.
    Password string
    -(Required) Password to connect to the Directory Service.
    Username string
    -(Required) Username to connect to the Directory Service.
    password String
    -(Required) Password to connect to the Directory Service.
    username String
    -(Required) Username to connect to the Directory Service.
    password string
    -(Required) Password to connect to the Directory Service.
    username string
    -(Required) Username to connect to the Directory Service.
    password str
    -(Required) Password to connect to the Directory Service.
    username str
    -(Required) Username to connect to the Directory Service.
    password String
    -(Required) Password to connect to the Directory Service.
    username String
    -(Required) Username to connect to the Directory Service.

    Package Details

    Repository
    nutanix pierskarsenbarg/pulumi-nutanix
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the nutanix Terraform Provider.
    nutanix logo
    Nutanix v0.7.4 published on Friday, Mar 21, 2025 by Piers Karsenbarg