nutanix.DirectoryServicesV2
Explore with Pulumi AI
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:
- Directory
Type 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.)
- Domain
Name string - -(Required) Domain name for the Directory Service.
- Service
Accounts List<PiersKarsenbarg. Nutanix. Inputs. Directory Services V2Service Account> - -(Required) Information of Service account to connect to the Directory Service.
- Url string
- -(Required) URL for the Directory Service.
- Ext
Id string - -(Optional) A globally unique identifier of an instance that is suitable for external consumption.
- Group
Search stringType - -(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.
- Open
Ldap List<PiersConfigurations Karsenbarg. Nutanix. Inputs. Directory Services V2Open Ldap Configuration> - -(Optional) Configuration for OpenLDAP Directory Service.
- Secondary
Urls List<string> - -(Optional) Secondary URL for the Directory Service.
- White
Listed List<string>Groups - -(Optional) List of allowed User Groups for the Directory Service.
- Directory
Type 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.)
- Domain
Name string - -(Required) Domain name for the Directory Service.
- Service
Accounts []DirectoryServices V2Service Account Args - -(Required) Information of Service account to connect to the Directory Service.
- Url string
- -(Required) URL for the Directory Service.
- Ext
Id string - -(Optional) A globally unique identifier of an instance that is suitable for external consumption.
- Group
Search stringType - -(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.
- Open
Ldap []DirectoryConfigurations Services V2Open Ldap Configuration Args - -(Optional) Configuration for OpenLDAP Directory Service.
- Secondary
Urls []string - -(Optional) Secondary URL for the Directory Service.
- White
Listed []stringGroups - -(Optional) List of allowed User Groups for the Directory Service.
- directory
Type 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.)
- domain
Name String - -(Required) Domain name for the Directory Service.
- service
Accounts List<DirectoryServices V2Service Account> - -(Required) Information of Service account to connect to the Directory Service.
- url String
- -(Required) URL for the Directory Service.
- ext
Id String - -(Optional) A globally unique identifier of an instance that is suitable for external consumption.
- group
Search StringType - -(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.
- open
Ldap List<DirectoryConfigurations Services V2Open Ldap Configuration> - -(Optional) Configuration for OpenLDAP Directory Service.
- secondary
Urls List<String> - -(Optional) Secondary URL for the Directory Service.
- white
Listed List<String>Groups - -(Optional) List of allowed User Groups for the Directory Service.
- directory
Type 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.)
- domain
Name string - -(Required) Domain name for the Directory Service.
- service
Accounts DirectoryServices V2Service Account[] - -(Required) Information of Service account to connect to the Directory Service.
- url string
- -(Required) URL for the Directory Service.
- ext
Id string - -(Optional) A globally unique identifier of an instance that is suitable for external consumption.
- group
Search stringType - -(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.
- open
Ldap DirectoryConfigurations Services V2Open Ldap Configuration[] - -(Optional) Configuration for OpenLDAP Directory Service.
- secondary
Urls string[] - -(Optional) Secondary URL for the Directory Service.
- white
Listed string[]Groups - -(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[DirectoryServices V2Service Account Args] - -(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_ strtype - -(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_ Sequence[Directoryconfigurations Services V2Open Ldap Configuration Args] - -(Optional) Configuration for OpenLDAP Directory Service.
- secondary_
urls Sequence[str] - -(Optional) Secondary URL for the Directory Service.
- white_
listed_ Sequence[str]groups - -(Optional) List of allowed User Groups for the Directory Service.
- directory
Type 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.)
- domain
Name String - -(Required) Domain name for the Directory Service.
- service
Accounts List<Property Map> - -(Required) Information of Service account to connect to the Directory Service.
- url String
- -(Required) URL for the Directory Service.
- ext
Id String - -(Optional) A globally unique identifier of an instance that is suitable for external consumption.
- group
Search StringType - -(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.
- open
Ldap List<Property Map>Configurations - -(Optional) Configuration for OpenLDAP Directory Service.
- secondary
Urls List<String> - -(Optional) Secondary URL for the Directory Service.
- white
Listed List<String>Groups - -(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:
- Created
By string - User or Service who created the Directory Service.
- Created
Time string - Creation time of the Directory Service.
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Updated stringTime - Last updated time of the Directory Service.
- Created
By string - User or Service who created the Directory Service.
- Created
Time string - Creation time of the Directory Service.
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Updated stringTime - Last updated time of the Directory Service.
- created
By String - User or Service who created the Directory Service.
- created
Time String - Creation time of the Directory Service.
- id String
- The provider-assigned unique ID for this managed resource.
- last
Updated StringTime - Last updated time of the Directory Service.
- created
By string - User or Service who created the Directory Service.
- created
Time string - Creation time of the Directory Service.
- id string
- The provider-assigned unique ID for this managed resource.
- last
Updated stringTime - 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_ strtime - Last updated time of the Directory Service.
- created
By String - User or Service who created the Directory Service.
- created
Time String - Creation time of the Directory Service.
- id String
- The provider-assigned unique ID for this managed resource.
- last
Updated StringTime - 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.
- Created
By string - User or Service who created the Directory Service.
- Created
Time string - Creation time of the Directory Service.
- Directory
Type 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.)
- Domain
Name string - -(Required) Domain name for the Directory Service.
- Ext
Id string - -(Optional) A globally unique identifier of an instance that is suitable for external consumption.
- Group
Search stringType - -(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 stringTime - Last updated time of the Directory Service.
- Name string
- -(Required) Name for the Directory Service.
- Open
Ldap List<PiersConfigurations Karsenbarg. Nutanix. Inputs. Directory Services V2Open Ldap Configuration> - -(Optional) Configuration for OpenLDAP Directory Service.
- Secondary
Urls List<string> - -(Optional) Secondary URL for the Directory Service.
- Service
Accounts List<PiersKarsenbarg. Nutanix. Inputs. Directory Services V2Service Account> - -(Required) Information of Service account to connect to the Directory Service.
- Url string
- -(Required) URL for the Directory Service.
- White
Listed List<string>Groups - -(Optional) List of allowed User Groups for the Directory Service.
- Created
By string - User or Service who created the Directory Service.
- Created
Time string - Creation time of the Directory Service.
- Directory
Type 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.)
- Domain
Name string - -(Required) Domain name for the Directory Service.
- Ext
Id string - -(Optional) A globally unique identifier of an instance that is suitable for external consumption.
- Group
Search stringType - -(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 stringTime - Last updated time of the Directory Service.
- Name string
- -(Required) Name for the Directory Service.
- Open
Ldap []DirectoryConfigurations Services V2Open Ldap Configuration Args - -(Optional) Configuration for OpenLDAP Directory Service.
- Secondary
Urls []string - -(Optional) Secondary URL for the Directory Service.
- Service
Accounts []DirectoryServices V2Service Account Args - -(Required) Information of Service account to connect to the Directory Service.
- Url string
- -(Required) URL for the Directory Service.
- White
Listed []stringGroups - -(Optional) List of allowed User Groups for the Directory Service.
- created
By String - User or Service who created the Directory Service.
- created
Time String - Creation time of the Directory Service.
- directory
Type 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.)
- domain
Name String - -(Required) Domain name for the Directory Service.
- ext
Id String - -(Optional) A globally unique identifier of an instance that is suitable for external consumption.
- group
Search StringType - -(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 StringTime - Last updated time of the Directory Service.
- name String
- -(Required) Name for the Directory Service.
- open
Ldap List<DirectoryConfigurations Services V2Open Ldap Configuration> - -(Optional) Configuration for OpenLDAP Directory Service.
- secondary
Urls List<String> - -(Optional) Secondary URL for the Directory Service.
- service
Accounts List<DirectoryServices V2Service Account> - -(Required) Information of Service account to connect to the Directory Service.
- url String
- -(Required) URL for the Directory Service.
- white
Listed List<String>Groups - -(Optional) List of allowed User Groups for the Directory Service.
- created
By string - User or Service who created the Directory Service.
- created
Time string - Creation time of the Directory Service.
- directory
Type 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.)
- domain
Name string - -(Required) Domain name for the Directory Service.
- ext
Id string - -(Optional) A globally unique identifier of an instance that is suitable for external consumption.
- group
Search stringType - -(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 stringTime - Last updated time of the Directory Service.
- name string
- -(Required) Name for the Directory Service.
- open
Ldap DirectoryConfigurations Services V2Open Ldap Configuration[] - -(Optional) Configuration for OpenLDAP Directory Service.
- secondary
Urls string[] - -(Optional) Secondary URL for the Directory Service.
- service
Accounts DirectoryServices V2Service Account[] - -(Required) Information of Service account to connect to the Directory Service.
- url string
- -(Required) URL for the Directory Service.
- white
Listed string[]Groups - -(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_ strtype - -(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_ strtime - Last updated time of the Directory Service.
- name str
- -(Required) Name for the Directory Service.
- open_
ldap_ Sequence[Directoryconfigurations Services V2Open Ldap Configuration Args] - -(Optional) Configuration for OpenLDAP Directory Service.
- secondary_
urls Sequence[str] - -(Optional) Secondary URL for the Directory Service.
- service_
accounts Sequence[DirectoryServices V2Service Account Args] - -(Required) Information of Service account to connect to the Directory Service.
- url str
- -(Required) URL for the Directory Service.
- white_
listed_ Sequence[str]groups - -(Optional) List of allowed User Groups for the Directory Service.
- created
By String - User or Service who created the Directory Service.
- created
Time String - Creation time of the Directory Service.
- directory
Type 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.)
- domain
Name String - -(Required) Domain name for the Directory Service.
- ext
Id String - -(Optional) A globally unique identifier of an instance that is suitable for external consumption.
- group
Search StringType - -(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 StringTime - Last updated time of the Directory Service.
- name String
- -(Required) Name for the Directory Service.
- open
Ldap List<Property Map>Configurations - -(Optional) Configuration for OpenLDAP Directory Service.
- secondary
Urls List<String> - -(Optional) Secondary URL for the Directory Service.
- service
Accounts List<Property Map> - -(Required) Information of Service account to connect to the Directory Service.
- url String
- -(Required) URL for the Directory Service.
- white
Listed List<String>Groups - -(Optional) List of allowed User Groups for the Directory Service.
Supporting Types
DirectoryServicesV2OpenLdapConfiguration, DirectoryServicesV2OpenLdapConfigurationArgs
- User
Configurations List<PiersKarsenbarg. Nutanix. Inputs. Directory Services V2Open Ldap Configuration User Configuration> - -(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 List<PiersConfigurations Karsenbarg. Nutanix. Inputs. Directory Services V2Open Ldap Configuration User Group Configuration> - -(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 []DirectoryServices V2Open Ldap Configuration User Configuration - -(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 []DirectoryConfigurations Services V2Open Ldap Configuration User Group Configuration - -(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 List<DirectoryServices V2Open Ldap Configuration User Configuration> - -(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 List<DirectoryConfigurations Services V2Open Ldap Configuration User Group Configuration> - -(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 DirectoryServices V2Open Ldap Configuration User Configuration[] - -(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 DirectoryConfigurations Services V2Open Ldap Configuration User Group Configuration[] - -(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[DirectoryServices V2Open Ldap Configuration User Configuration] - -(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_ Sequence[Directoryconfigurations Services V2Open Ldap Configuration User Group Configuration] - -(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 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.
- user
Group List<Property Map>Configurations - -(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
- User
Object stringClass - -(Required) Object class in the OpenLDAP system that corresponds to Users.
- User
Search stringBase - -(Required) Base DN for User search.
- Username
Attribute string - -(Required) Unique Identifier for each User which can be used in Authentication.
- User
Object stringClass - -(Required) Object class in the OpenLDAP system that corresponds to Users.
- User
Search stringBase - -(Required) Base DN for User search.
- Username
Attribute string - -(Required) Unique Identifier for each User which can be used in Authentication.
- user
Object StringClass - -(Required) Object class in the OpenLDAP system that corresponds to Users.
- user
Search StringBase - -(Required) Base DN for User search.
- username
Attribute String - -(Required) Unique Identifier for each User which can be used in Authentication.
- user
Object stringClass - -(Required) Object class in the OpenLDAP system that corresponds to Users.
- user
Search stringBase - -(Required) Base DN for User search.
- username
Attribute string - -(Required) Unique Identifier for each User which can be used in Authentication.
- user_
object_ strclass - -(Required) Object class in the OpenLDAP system that corresponds to Users.
- user_
search_ strbase - -(Required) Base DN for User search.
- username_
attribute str - -(Required) Unique Identifier for each User which can be used in Authentication.
- user
Object StringClass - -(Required) Object class in the OpenLDAP system that corresponds to Users.
- user
Search StringBase - -(Required) Base DN for User search.
- username
Attribute String - -(Required) Unique Identifier for each User which can be used in Authentication.
DirectoryServicesV2OpenLdapConfigurationUserGroupConfiguration, DirectoryServicesV2OpenLdapConfigurationUserGroupConfigurationArgs
- Group
Member stringAttribute - -(Required) Attribute in a group that associates Users to the group.
- Group
Member stringAttribute Value - -(Required) User attribute value that will be used in group entity to associate User to the group.
- Group
Object stringClass - -(Required) Object class in the OpenLDAP system that corresponds to groups.
- Group
Search stringBase - -(Required) Base DN for group search.
- Group
Member stringAttribute - -(Required) Attribute in a group that associates Users to the group.
- Group
Member stringAttribute Value - -(Required) User attribute value that will be used in group entity to associate User to the group.
- Group
Object stringClass - -(Required) Object class in the OpenLDAP system that corresponds to groups.
- Group
Search stringBase - -(Required) Base DN for group search.
- group
Member StringAttribute - -(Required) Attribute in a group that associates Users to the group.
- group
Member StringAttribute Value - -(Required) User attribute value that will be used in group entity to associate User to the group.
- group
Object StringClass - -(Required) Object class in the OpenLDAP system that corresponds to groups.
- group
Search StringBase - -(Required) Base DN for group search.
- group
Member stringAttribute - -(Required) Attribute in a group that associates Users to the group.
- group
Member stringAttribute Value - -(Required) User attribute value that will be used in group entity to associate User to the group.
- group
Object stringClass - -(Required) Object class in the OpenLDAP system that corresponds to groups.
- group
Search stringBase - -(Required) Base DN for group search.
- group_
member_ strattribute - -(Required) Attribute in a group that associates Users to the group.
- group_
member_ strattribute_ value - -(Required) User attribute value that will be used in group entity to associate User to the group.
- group_
object_ strclass - -(Required) Object class in the OpenLDAP system that corresponds to groups.
- group_
search_ strbase - -(Required) Base DN for group search.
- group
Member StringAttribute - -(Required) Attribute in a group that associates Users to the group.
- group
Member StringAttribute Value - -(Required) User attribute value that will be used in group entity to associate User to the group.
- group
Object StringClass - -(Required) Object class in the OpenLDAP system that corresponds to groups.
- group
Search StringBase - -(Required) Base DN for group search.
DirectoryServicesV2ServiceAccount, DirectoryServicesV2ServiceAccountArgs
Package Details
- Repository
- nutanix pierskarsenbarg/pulumi-nutanix
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
nutanix
Terraform Provider.