vcd.OrgLdap
Explore with Pulumi AI
Create OrgLdap Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new OrgLdap(name: string, args: OrgLdapArgs, opts?: CustomResourceOptions);
@overload
def OrgLdap(resource_name: str,
args: OrgLdapArgs,
opts: Optional[ResourceOptions] = None)
@overload
def OrgLdap(resource_name: str,
opts: Optional[ResourceOptions] = None,
ldap_mode: Optional[str] = None,
org_id: Optional[str] = None,
custom_settings: Optional[OrgLdapCustomSettingsArgs] = None,
custom_user_ou: Optional[str] = None,
org_ldap_id: Optional[str] = None)
func NewOrgLdap(ctx *Context, name string, args OrgLdapArgs, opts ...ResourceOption) (*OrgLdap, error)
public OrgLdap(string name, OrgLdapArgs args, CustomResourceOptions? opts = null)
public OrgLdap(String name, OrgLdapArgs args)
public OrgLdap(String name, OrgLdapArgs args, CustomResourceOptions options)
type: vcd:OrgLdap
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 OrgLdapArgs
- 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 OrgLdapArgs
- 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 OrgLdapArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args OrgLdapArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args OrgLdapArgs
- 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 orgLdapResource = new Vcd.OrgLdap("orgLdapResource", new()
{
LdapMode = "string",
OrgId = "string",
CustomSettings = new Vcd.Inputs.OrgLdapCustomSettingsArgs
{
AuthenticationMethod = "string",
ConnectorType = "string",
GroupAttributes = new Vcd.Inputs.OrgLdapCustomSettingsGroupAttributesArgs
{
GroupMembershipIdentifier = "string",
Membership = "string",
Name = "string",
ObjectClass = "string",
UniqueIdentifier = "string",
GroupBackLinkIdentifier = "string",
},
Port = 0,
Server = "string",
UserAttributes = new Vcd.Inputs.OrgLdapCustomSettingsUserAttributesArgs
{
DisplayName = "string",
Email = "string",
GivenName = "string",
GroupMembershipIdentifier = "string",
ObjectClass = "string",
Surname = "string",
Telephone = "string",
UniqueIdentifier = "string",
Username = "string",
GroupBackLinkIdentifier = "string",
},
BaseDistinguishedName = "string",
IsSsl = false,
Password = "string",
Username = "string",
},
CustomUserOu = "string",
OrgLdapId = "string",
});
example, err := vcd.NewOrgLdap(ctx, "orgLdapResource", &vcd.OrgLdapArgs{
LdapMode: pulumi.String("string"),
OrgId: pulumi.String("string"),
CustomSettings: &vcd.OrgLdapCustomSettingsArgs{
AuthenticationMethod: pulumi.String("string"),
ConnectorType: pulumi.String("string"),
GroupAttributes: &vcd.OrgLdapCustomSettingsGroupAttributesArgs{
GroupMembershipIdentifier: pulumi.String("string"),
Membership: pulumi.String("string"),
Name: pulumi.String("string"),
ObjectClass: pulumi.String("string"),
UniqueIdentifier: pulumi.String("string"),
GroupBackLinkIdentifier: pulumi.String("string"),
},
Port: pulumi.Float64(0),
Server: pulumi.String("string"),
UserAttributes: &vcd.OrgLdapCustomSettingsUserAttributesArgs{
DisplayName: pulumi.String("string"),
Email: pulumi.String("string"),
GivenName: pulumi.String("string"),
GroupMembershipIdentifier: pulumi.String("string"),
ObjectClass: pulumi.String("string"),
Surname: pulumi.String("string"),
Telephone: pulumi.String("string"),
UniqueIdentifier: pulumi.String("string"),
Username: pulumi.String("string"),
GroupBackLinkIdentifier: pulumi.String("string"),
},
BaseDistinguishedName: pulumi.String("string"),
IsSsl: pulumi.Bool(false),
Password: pulumi.String("string"),
Username: pulumi.String("string"),
},
CustomUserOu: pulumi.String("string"),
OrgLdapId: pulumi.String("string"),
})
var orgLdapResource = new OrgLdap("orgLdapResource", OrgLdapArgs.builder()
.ldapMode("string")
.orgId("string")
.customSettings(OrgLdapCustomSettingsArgs.builder()
.authenticationMethod("string")
.connectorType("string")
.groupAttributes(OrgLdapCustomSettingsGroupAttributesArgs.builder()
.groupMembershipIdentifier("string")
.membership("string")
.name("string")
.objectClass("string")
.uniqueIdentifier("string")
.groupBackLinkIdentifier("string")
.build())
.port(0)
.server("string")
.userAttributes(OrgLdapCustomSettingsUserAttributesArgs.builder()
.displayName("string")
.email("string")
.givenName("string")
.groupMembershipIdentifier("string")
.objectClass("string")
.surname("string")
.telephone("string")
.uniqueIdentifier("string")
.username("string")
.groupBackLinkIdentifier("string")
.build())
.baseDistinguishedName("string")
.isSsl(false)
.password("string")
.username("string")
.build())
.customUserOu("string")
.orgLdapId("string")
.build());
org_ldap_resource = vcd.OrgLdap("orgLdapResource",
ldap_mode="string",
org_id="string",
custom_settings={
"authentication_method": "string",
"connector_type": "string",
"group_attributes": {
"group_membership_identifier": "string",
"membership": "string",
"name": "string",
"object_class": "string",
"unique_identifier": "string",
"group_back_link_identifier": "string",
},
"port": 0,
"server": "string",
"user_attributes": {
"display_name": "string",
"email": "string",
"given_name": "string",
"group_membership_identifier": "string",
"object_class": "string",
"surname": "string",
"telephone": "string",
"unique_identifier": "string",
"username": "string",
"group_back_link_identifier": "string",
},
"base_distinguished_name": "string",
"is_ssl": False,
"password": "string",
"username": "string",
},
custom_user_ou="string",
org_ldap_id="string")
const orgLdapResource = new vcd.OrgLdap("orgLdapResource", {
ldapMode: "string",
orgId: "string",
customSettings: {
authenticationMethod: "string",
connectorType: "string",
groupAttributes: {
groupMembershipIdentifier: "string",
membership: "string",
name: "string",
objectClass: "string",
uniqueIdentifier: "string",
groupBackLinkIdentifier: "string",
},
port: 0,
server: "string",
userAttributes: {
displayName: "string",
email: "string",
givenName: "string",
groupMembershipIdentifier: "string",
objectClass: "string",
surname: "string",
telephone: "string",
uniqueIdentifier: "string",
username: "string",
groupBackLinkIdentifier: "string",
},
baseDistinguishedName: "string",
isSsl: false,
password: "string",
username: "string",
},
customUserOu: "string",
orgLdapId: "string",
});
type: vcd:OrgLdap
properties:
customSettings:
authenticationMethod: string
baseDistinguishedName: string
connectorType: string
groupAttributes:
groupBackLinkIdentifier: string
groupMembershipIdentifier: string
membership: string
name: string
objectClass: string
uniqueIdentifier: string
isSsl: false
password: string
port: 0
server: string
userAttributes:
displayName: string
email: string
givenName: string
groupBackLinkIdentifier: string
groupMembershipIdentifier: string
objectClass: string
surname: string
telephone: string
uniqueIdentifier: string
username: string
username: string
customUserOu: string
ldapMode: string
orgId: string
orgLdapId: string
OrgLdap 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 OrgLdap resource accepts the following input properties:
- Ldap
Mode string - One of
NONE
,CUSTOM
,SYSTEM
. Note that usingNONE
has the effect of removing the LDAP settings - Org
Id string - Org ID: there is only one LDAP configuration available for an organization. Thus, the resource can be identified by the Org.
- Custom
Settings OrgLdap Custom Settings LDAP server configuration. Becomes mandatory if
ldap_mode
is set toCUSTOM
. See Custom Settings below for details- Custom
User stringOu - If
ldap_mode
isSYSTEM
, specifies an LDAPattribute=value
pair to use for OU (organizational unit) - Org
Ldap stringId
- Ldap
Mode string - One of
NONE
,CUSTOM
,SYSTEM
. Note that usingNONE
has the effect of removing the LDAP settings - Org
Id string - Org ID: there is only one LDAP configuration available for an organization. Thus, the resource can be identified by the Org.
- Custom
Settings OrgLdap Custom Settings Args LDAP server configuration. Becomes mandatory if
ldap_mode
is set toCUSTOM
. See Custom Settings below for details- Custom
User stringOu - If
ldap_mode
isSYSTEM
, specifies an LDAPattribute=value
pair to use for OU (organizational unit) - Org
Ldap stringId
- ldap
Mode String - One of
NONE
,CUSTOM
,SYSTEM
. Note that usingNONE
has the effect of removing the LDAP settings - org
Id String - Org ID: there is only one LDAP configuration available for an organization. Thus, the resource can be identified by the Org.
- custom
Settings OrgLdap Custom Settings LDAP server configuration. Becomes mandatory if
ldap_mode
is set toCUSTOM
. See Custom Settings below for details- custom
User StringOu - If
ldap_mode
isSYSTEM
, specifies an LDAPattribute=value
pair to use for OU (organizational unit) - org
Ldap StringId
- ldap
Mode string - One of
NONE
,CUSTOM
,SYSTEM
. Note that usingNONE
has the effect of removing the LDAP settings - org
Id string - Org ID: there is only one LDAP configuration available for an organization. Thus, the resource can be identified by the Org.
- custom
Settings OrgLdap Custom Settings LDAP server configuration. Becomes mandatory if
ldap_mode
is set toCUSTOM
. See Custom Settings below for details- custom
User stringOu - If
ldap_mode
isSYSTEM
, specifies an LDAPattribute=value
pair to use for OU (organizational unit) - org
Ldap stringId
- ldap_
mode str - One of
NONE
,CUSTOM
,SYSTEM
. Note that usingNONE
has the effect of removing the LDAP settings - org_
id str - Org ID: there is only one LDAP configuration available for an organization. Thus, the resource can be identified by the Org.
- custom_
settings OrgLdap Custom Settings Args LDAP server configuration. Becomes mandatory if
ldap_mode
is set toCUSTOM
. See Custom Settings below for details- custom_
user_ strou - If
ldap_mode
isSYSTEM
, specifies an LDAPattribute=value
pair to use for OU (organizational unit) - org_
ldap_ strid
- ldap
Mode String - One of
NONE
,CUSTOM
,SYSTEM
. Note that usingNONE
has the effect of removing the LDAP settings - org
Id String - Org ID: there is only one LDAP configuration available for an organization. Thus, the resource can be identified by the Org.
- custom
Settings Property Map LDAP server configuration. Becomes mandatory if
ldap_mode
is set toCUSTOM
. See Custom Settings below for details- custom
User StringOu - If
ldap_mode
isSYSTEM
, specifies an LDAPattribute=value
pair to use for OU (organizational unit) - org
Ldap StringId
Outputs
All input properties are implicitly available as output properties. Additionally, the OrgLdap 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 OrgLdap Resource
Get an existing OrgLdap 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?: OrgLdapState, opts?: CustomResourceOptions): OrgLdap
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
custom_settings: Optional[OrgLdapCustomSettingsArgs] = None,
custom_user_ou: Optional[str] = None,
ldap_mode: Optional[str] = None,
org_id: Optional[str] = None,
org_ldap_id: Optional[str] = None) -> OrgLdap
func GetOrgLdap(ctx *Context, name string, id IDInput, state *OrgLdapState, opts ...ResourceOption) (*OrgLdap, error)
public static OrgLdap Get(string name, Input<string> id, OrgLdapState? state, CustomResourceOptions? opts = null)
public static OrgLdap get(String name, Output<String> id, OrgLdapState state, CustomResourceOptions options)
resources: _: type: vcd:OrgLdap 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.
- Custom
Settings OrgLdap Custom Settings LDAP server configuration. Becomes mandatory if
ldap_mode
is set toCUSTOM
. See Custom Settings below for details- Custom
User stringOu - If
ldap_mode
isSYSTEM
, specifies an LDAPattribute=value
pair to use for OU (organizational unit) - Ldap
Mode string - One of
NONE
,CUSTOM
,SYSTEM
. Note that usingNONE
has the effect of removing the LDAP settings - Org
Id string - Org ID: there is only one LDAP configuration available for an organization. Thus, the resource can be identified by the Org.
- Org
Ldap stringId
- Custom
Settings OrgLdap Custom Settings Args LDAP server configuration. Becomes mandatory if
ldap_mode
is set toCUSTOM
. See Custom Settings below for details- Custom
User stringOu - If
ldap_mode
isSYSTEM
, specifies an LDAPattribute=value
pair to use for OU (organizational unit) - Ldap
Mode string - One of
NONE
,CUSTOM
,SYSTEM
. Note that usingNONE
has the effect of removing the LDAP settings - Org
Id string - Org ID: there is only one LDAP configuration available for an organization. Thus, the resource can be identified by the Org.
- Org
Ldap stringId
- custom
Settings OrgLdap Custom Settings LDAP server configuration. Becomes mandatory if
ldap_mode
is set toCUSTOM
. See Custom Settings below for details- custom
User StringOu - If
ldap_mode
isSYSTEM
, specifies an LDAPattribute=value
pair to use for OU (organizational unit) - ldap
Mode String - One of
NONE
,CUSTOM
,SYSTEM
. Note that usingNONE
has the effect of removing the LDAP settings - org
Id String - Org ID: there is only one LDAP configuration available for an organization. Thus, the resource can be identified by the Org.
- org
Ldap StringId
- custom
Settings OrgLdap Custom Settings LDAP server configuration. Becomes mandatory if
ldap_mode
is set toCUSTOM
. See Custom Settings below for details- custom
User stringOu - If
ldap_mode
isSYSTEM
, specifies an LDAPattribute=value
pair to use for OU (organizational unit) - ldap
Mode string - One of
NONE
,CUSTOM
,SYSTEM
. Note that usingNONE
has the effect of removing the LDAP settings - org
Id string - Org ID: there is only one LDAP configuration available for an organization. Thus, the resource can be identified by the Org.
- org
Ldap stringId
- custom_
settings OrgLdap Custom Settings Args LDAP server configuration. Becomes mandatory if
ldap_mode
is set toCUSTOM
. See Custom Settings below for details- custom_
user_ strou - If
ldap_mode
isSYSTEM
, specifies an LDAPattribute=value
pair to use for OU (organizational unit) - ldap_
mode str - One of
NONE
,CUSTOM
,SYSTEM
. Note that usingNONE
has the effect of removing the LDAP settings - org_
id str - Org ID: there is only one LDAP configuration available for an organization. Thus, the resource can be identified by the Org.
- org_
ldap_ strid
- custom
Settings Property Map LDAP server configuration. Becomes mandatory if
ldap_mode
is set toCUSTOM
. See Custom Settings below for details- custom
User StringOu - If
ldap_mode
isSYSTEM
, specifies an LDAPattribute=value
pair to use for OU (organizational unit) - ldap
Mode String - One of
NONE
,CUSTOM
,SYSTEM
. Note that usingNONE
has the effect of removing the LDAP settings - org
Id String - Org ID: there is only one LDAP configuration available for an organization. Thus, the resource can be identified by the Org.
- org
Ldap StringId
Supporting Types
OrgLdapCustomSettings, OrgLdapCustomSettingsArgs
- Authentication
Method string - authentication method: one of SIMPLE, MD5DIGEST, NTLM
- Connector
Type string - type of connector: one of OPEN_LDAP, ACTIVE_DIRECTORY
- Group
Attributes OrgLdap Custom Settings Group Attributes - Group settings when
ldap_mode
is CUSTOM - Port double
- Port number for LDAP service
- Server string
- host name or IP of the LDAP server
- User
Attributes OrgLdap Custom Settings User Attributes - User settings when
ldap_mode
is CUSTOM - Base
Distinguished stringName - LDAP search base
- Is
Ssl bool - True if the LDAP service requires an SSL connection
- Password string
- Password for the user identified by UserName. This value is never returned by GET. It is inspected on create and modify. On modify, the absence of this element indicates that the password should not be changed
- Username string
- Username to use when logging in to LDAP, specified using LDAP attribute=value pairs (for example: cn="ldap-admin", c="example", dc="com")
- Authentication
Method string - authentication method: one of SIMPLE, MD5DIGEST, NTLM
- Connector
Type string - type of connector: one of OPEN_LDAP, ACTIVE_DIRECTORY
- Group
Attributes OrgLdap Custom Settings Group Attributes - Group settings when
ldap_mode
is CUSTOM - Port float64
- Port number for LDAP service
- Server string
- host name or IP of the LDAP server
- User
Attributes OrgLdap Custom Settings User Attributes - User settings when
ldap_mode
is CUSTOM - Base
Distinguished stringName - LDAP search base
- Is
Ssl bool - True if the LDAP service requires an SSL connection
- Password string
- Password for the user identified by UserName. This value is never returned by GET. It is inspected on create and modify. On modify, the absence of this element indicates that the password should not be changed
- Username string
- Username to use when logging in to LDAP, specified using LDAP attribute=value pairs (for example: cn="ldap-admin", c="example", dc="com")
- authentication
Method String - authentication method: one of SIMPLE, MD5DIGEST, NTLM
- connector
Type String - type of connector: one of OPEN_LDAP, ACTIVE_DIRECTORY
- group
Attributes OrgLdap Custom Settings Group Attributes - Group settings when
ldap_mode
is CUSTOM - port Double
- Port number for LDAP service
- server String
- host name or IP of the LDAP server
- user
Attributes OrgLdap Custom Settings User Attributes - User settings when
ldap_mode
is CUSTOM - base
Distinguished StringName - LDAP search base
- is
Ssl Boolean - True if the LDAP service requires an SSL connection
- password String
- Password for the user identified by UserName. This value is never returned by GET. It is inspected on create and modify. On modify, the absence of this element indicates that the password should not be changed
- username String
- Username to use when logging in to LDAP, specified using LDAP attribute=value pairs (for example: cn="ldap-admin", c="example", dc="com")
- authentication
Method string - authentication method: one of SIMPLE, MD5DIGEST, NTLM
- connector
Type string - type of connector: one of OPEN_LDAP, ACTIVE_DIRECTORY
- group
Attributes OrgLdap Custom Settings Group Attributes - Group settings when
ldap_mode
is CUSTOM - port number
- Port number for LDAP service
- server string
- host name or IP of the LDAP server
- user
Attributes OrgLdap Custom Settings User Attributes - User settings when
ldap_mode
is CUSTOM - base
Distinguished stringName - LDAP search base
- is
Ssl boolean - True if the LDAP service requires an SSL connection
- password string
- Password for the user identified by UserName. This value is never returned by GET. It is inspected on create and modify. On modify, the absence of this element indicates that the password should not be changed
- username string
- Username to use when logging in to LDAP, specified using LDAP attribute=value pairs (for example: cn="ldap-admin", c="example", dc="com")
- authentication_
method str - authentication method: one of SIMPLE, MD5DIGEST, NTLM
- connector_
type str - type of connector: one of OPEN_LDAP, ACTIVE_DIRECTORY
- group_
attributes OrgLdap Custom Settings Group Attributes - Group settings when
ldap_mode
is CUSTOM - port float
- Port number for LDAP service
- server str
- host name or IP of the LDAP server
- user_
attributes OrgLdap Custom Settings User Attributes - User settings when
ldap_mode
is CUSTOM - base_
distinguished_ strname - LDAP search base
- is_
ssl bool - True if the LDAP service requires an SSL connection
- password str
- Password for the user identified by UserName. This value is never returned by GET. It is inspected on create and modify. On modify, the absence of this element indicates that the password should not be changed
- username str
- Username to use when logging in to LDAP, specified using LDAP attribute=value pairs (for example: cn="ldap-admin", c="example", dc="com")
- authentication
Method String - authentication method: one of SIMPLE, MD5DIGEST, NTLM
- connector
Type String - type of connector: one of OPEN_LDAP, ACTIVE_DIRECTORY
- group
Attributes Property Map - Group settings when
ldap_mode
is CUSTOM - port Number
- Port number for LDAP service
- server String
- host name or IP of the LDAP server
- user
Attributes Property Map - User settings when
ldap_mode
is CUSTOM - base
Distinguished StringName - LDAP search base
- is
Ssl Boolean - True if the LDAP service requires an SSL connection
- password String
- Password for the user identified by UserName. This value is never returned by GET. It is inspected on create and modify. On modify, the absence of this element indicates that the password should not be changed
- username String
- Username to use when logging in to LDAP, specified using LDAP attribute=value pairs (for example: cn="ldap-admin", c="example", dc="com")
OrgLdapCustomSettingsGroupAttributes, OrgLdapCustomSettingsGroupAttributesArgs
- Group
Membership stringIdentifier - LDAP attribute that identifies a group as a member of another group. For example, dn
- Membership string
- LDAP attribute to use when getting the members of a group. For example, member
- Name string
- LDAP attribute to use for the group name. For example, cn
- Object
Class string - LDAP objectClass of which imported groups are members. For example, group
- Unique
Identifier string - LDAP attribute to use as the unique identifier for a group. For example, objectGuid
- Group
Back stringLink Identifier - LDAP group attribute used to identify a group member
- Group
Membership stringIdentifier - LDAP attribute that identifies a group as a member of another group. For example, dn
- Membership string
- LDAP attribute to use when getting the members of a group. For example, member
- Name string
- LDAP attribute to use for the group name. For example, cn
- Object
Class string - LDAP objectClass of which imported groups are members. For example, group
- Unique
Identifier string - LDAP attribute to use as the unique identifier for a group. For example, objectGuid
- Group
Back stringLink Identifier - LDAP group attribute used to identify a group member
- group
Membership StringIdentifier - LDAP attribute that identifies a group as a member of another group. For example, dn
- membership String
- LDAP attribute to use when getting the members of a group. For example, member
- name String
- LDAP attribute to use for the group name. For example, cn
- object
Class String - LDAP objectClass of which imported groups are members. For example, group
- unique
Identifier String - LDAP attribute to use as the unique identifier for a group. For example, objectGuid
- group
Back StringLink Identifier - LDAP group attribute used to identify a group member
- group
Membership stringIdentifier - LDAP attribute that identifies a group as a member of another group. For example, dn
- membership string
- LDAP attribute to use when getting the members of a group. For example, member
- name string
- LDAP attribute to use for the group name. For example, cn
- object
Class string - LDAP objectClass of which imported groups are members. For example, group
- unique
Identifier string - LDAP attribute to use as the unique identifier for a group. For example, objectGuid
- group
Back stringLink Identifier - LDAP group attribute used to identify a group member
- group_
membership_ stridentifier - LDAP attribute that identifies a group as a member of another group. For example, dn
- membership str
- LDAP attribute to use when getting the members of a group. For example, member
- name str
- LDAP attribute to use for the group name. For example, cn
- object_
class str - LDAP objectClass of which imported groups are members. For example, group
- unique_
identifier str - LDAP attribute to use as the unique identifier for a group. For example, objectGuid
- group_
back_ strlink_ identifier - LDAP group attribute used to identify a group member
- group
Membership StringIdentifier - LDAP attribute that identifies a group as a member of another group. For example, dn
- membership String
- LDAP attribute to use when getting the members of a group. For example, member
- name String
- LDAP attribute to use for the group name. For example, cn
- object
Class String - LDAP objectClass of which imported groups are members. For example, group
- unique
Identifier String - LDAP attribute to use as the unique identifier for a group. For example, objectGuid
- group
Back StringLink Identifier - LDAP group attribute used to identify a group member
OrgLdapCustomSettingsUserAttributes, OrgLdapCustomSettingsUserAttributesArgs
- Display
Name string - LDAP attribute to use for the user's full name. For example, displayName
- Email string
- LDAP attribute to use for the user's email address. For example, mail
- Given
Name string - LDAP attribute to use for the user's given name. For example, givenName
- Group
Membership stringIdentifier - LDAP attribute that identifies a user as a member of a group. For example, dn
- Object
Class string - LDAP objectClass of which imported users are members. For example, user or person
- Surname string
- LDAP attribute to use for the user's surname. For example, sn
- Telephone string
- LDAP attribute to use for the user's telephone number. For example, telephoneNumber
- Unique
Identifier string - LDAP attribute to use as the unique identifier for a user. For example, objectGuid
- Username string
- LDAP attribute to use when looking up a user name to import. For example, userPrincipalName or samAccountName
- Group
Back stringLink Identifier - LDAP attribute that returns the identifiers of all the groups of which the user is a member
- Display
Name string - LDAP attribute to use for the user's full name. For example, displayName
- Email string
- LDAP attribute to use for the user's email address. For example, mail
- Given
Name string - LDAP attribute to use for the user's given name. For example, givenName
- Group
Membership stringIdentifier - LDAP attribute that identifies a user as a member of a group. For example, dn
- Object
Class string - LDAP objectClass of which imported users are members. For example, user or person
- Surname string
- LDAP attribute to use for the user's surname. For example, sn
- Telephone string
- LDAP attribute to use for the user's telephone number. For example, telephoneNumber
- Unique
Identifier string - LDAP attribute to use as the unique identifier for a user. For example, objectGuid
- Username string
- LDAP attribute to use when looking up a user name to import. For example, userPrincipalName or samAccountName
- Group
Back stringLink Identifier - LDAP attribute that returns the identifiers of all the groups of which the user is a member
- display
Name String - LDAP attribute to use for the user's full name. For example, displayName
- email String
- LDAP attribute to use for the user's email address. For example, mail
- given
Name String - LDAP attribute to use for the user's given name. For example, givenName
- group
Membership StringIdentifier - LDAP attribute that identifies a user as a member of a group. For example, dn
- object
Class String - LDAP objectClass of which imported users are members. For example, user or person
- surname String
- LDAP attribute to use for the user's surname. For example, sn
- telephone String
- LDAP attribute to use for the user's telephone number. For example, telephoneNumber
- unique
Identifier String - LDAP attribute to use as the unique identifier for a user. For example, objectGuid
- username String
- LDAP attribute to use when looking up a user name to import. For example, userPrincipalName or samAccountName
- group
Back StringLink Identifier - LDAP attribute that returns the identifiers of all the groups of which the user is a member
- display
Name string - LDAP attribute to use for the user's full name. For example, displayName
- email string
- LDAP attribute to use for the user's email address. For example, mail
- given
Name string - LDAP attribute to use for the user's given name. For example, givenName
- group
Membership stringIdentifier - LDAP attribute that identifies a user as a member of a group. For example, dn
- object
Class string - LDAP objectClass of which imported users are members. For example, user or person
- surname string
- LDAP attribute to use for the user's surname. For example, sn
- telephone string
- LDAP attribute to use for the user's telephone number. For example, telephoneNumber
- unique
Identifier string - LDAP attribute to use as the unique identifier for a user. For example, objectGuid
- username string
- LDAP attribute to use when looking up a user name to import. For example, userPrincipalName or samAccountName
- group
Back stringLink Identifier - LDAP attribute that returns the identifiers of all the groups of which the user is a member
- display_
name str - LDAP attribute to use for the user's full name. For example, displayName
- email str
- LDAP attribute to use for the user's email address. For example, mail
- given_
name str - LDAP attribute to use for the user's given name. For example, givenName
- group_
membership_ stridentifier - LDAP attribute that identifies a user as a member of a group. For example, dn
- object_
class str - LDAP objectClass of which imported users are members. For example, user or person
- surname str
- LDAP attribute to use for the user's surname. For example, sn
- telephone str
- LDAP attribute to use for the user's telephone number. For example, telephoneNumber
- unique_
identifier str - LDAP attribute to use as the unique identifier for a user. For example, objectGuid
- username str
- LDAP attribute to use when looking up a user name to import. For example, userPrincipalName or samAccountName
- group_
back_ strlink_ identifier - LDAP attribute that returns the identifiers of all the groups of which the user is a member
- display
Name String - LDAP attribute to use for the user's full name. For example, displayName
- email String
- LDAP attribute to use for the user's email address. For example, mail
- given
Name String - LDAP attribute to use for the user's given name. For example, givenName
- group
Membership StringIdentifier - LDAP attribute that identifies a user as a member of a group. For example, dn
- object
Class String - LDAP objectClass of which imported users are members. For example, user or person
- surname String
- LDAP attribute to use for the user's surname. For example, sn
- telephone String
- LDAP attribute to use for the user's telephone number. For example, telephoneNumber
- unique
Identifier String - LDAP attribute to use as the unique identifier for a user. For example, objectGuid
- username String
- LDAP attribute to use when looking up a user name to import. For example, userPrincipalName or samAccountName
- group
Back StringLink Identifier - LDAP attribute that returns the identifiers of all the groups of which the user is a member
Package Details
- Repository
- vcd vmware/terraform-provider-vcd
- License
- Notes
- This Pulumi package is based on the
vcd
Terraform Provider.