nutanix.User
Explore with Pulumi AI
Provides a resource to create a user based on the input parameters.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as nutanix from "@pierskarsenbarg/nutanix";
const user = new nutanix.User("user", {directoryServiceUser: {
directoryServiceReference: {
uuid: "<directory-service-uuid>",
},
userPrincipalName: "test-user@ntnxlab.local",
}});
import pulumi
import pulumi_nutanix as nutanix
user = nutanix.User("user", directory_service_user={
"directory_service_reference": {
"uuid": "<directory-service-uuid>",
},
"user_principal_name": "test-user@ntnxlab.local",
})
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.NewUser(ctx, "user", &nutanix.UserArgs{
DirectoryServiceUser: &nutanix.UserDirectoryServiceUserArgs{
DirectoryServiceReference: &nutanix.UserDirectoryServiceUserDirectoryServiceReferenceArgs{
Uuid: pulumi.String("<directory-service-uuid>"),
},
UserPrincipalName: pulumi.String("test-user@ntnxlab.local"),
},
})
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 user = new Nutanix.User("user", new()
{
DirectoryServiceUser = new Nutanix.Inputs.UserDirectoryServiceUserArgs
{
DirectoryServiceReference = new Nutanix.Inputs.UserDirectoryServiceUserDirectoryServiceReferenceArgs
{
Uuid = "<directory-service-uuid>",
},
UserPrincipalName = "test-user@ntnxlab.local",
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.nutanix.User;
import com.pulumi.nutanix.UserArgs;
import com.pulumi.nutanix.inputs.UserDirectoryServiceUserArgs;
import com.pulumi.nutanix.inputs.UserDirectoryServiceUserDirectoryServiceReferenceArgs;
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 user = new User("user", UserArgs.builder()
.directoryServiceUser(UserDirectoryServiceUserArgs.builder()
.directoryServiceReference(UserDirectoryServiceUserDirectoryServiceReferenceArgs.builder()
.uuid("<directory-service-uuid>")
.build())
.userPrincipalName("test-user@ntnxlab.local")
.build())
.build());
}
}
resources:
user:
type: nutanix:User
properties:
directoryServiceUser:
directoryServiceReference:
uuid: <directory-service-uuid>
userPrincipalName: test-user@ntnxlab.local
import * as pulumi from "@pulumi/pulumi";
import * as nutanix from "@pierskarsenbarg/nutanix";
const user = new nutanix.User("user", {identityProviderUser: {
identityProviderReference: {
uuid: "<identity-provider-uuid>",
},
username: "username",
}});
import pulumi
import pulumi_nutanix as nutanix
user = nutanix.User("user", identity_provider_user={
"identity_provider_reference": {
"uuid": "<identity-provider-uuid>",
},
"username": "username",
})
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.NewUser(ctx, "user", &nutanix.UserArgs{
IdentityProviderUser: &nutanix.UserIdentityProviderUserArgs{
IdentityProviderReference: &nutanix.UserIdentityProviderUserIdentityProviderReferenceArgs{
Uuid: pulumi.String("<identity-provider-uuid>"),
},
Username: pulumi.String("username"),
},
})
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 user = new Nutanix.User("user", new()
{
IdentityProviderUser = new Nutanix.Inputs.UserIdentityProviderUserArgs
{
IdentityProviderReference = new Nutanix.Inputs.UserIdentityProviderUserIdentityProviderReferenceArgs
{
Uuid = "<identity-provider-uuid>",
},
Username = "username",
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.nutanix.User;
import com.pulumi.nutanix.UserArgs;
import com.pulumi.nutanix.inputs.UserIdentityProviderUserArgs;
import com.pulumi.nutanix.inputs.UserIdentityProviderUserIdentityProviderReferenceArgs;
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 user = new User("user", UserArgs.builder()
.identityProviderUser(UserIdentityProviderUserArgs.builder()
.identityProviderReference(UserIdentityProviderUserIdentityProviderReferenceArgs.builder()
.uuid("<identity-provider-uuid>")
.build())
.username("username")
.build())
.build());
}
}
resources:
user:
type: nutanix:User
properties:
identityProviderUser:
identityProviderReference:
uuid: <identity-provider-uuid>
username: username
Create User Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new User(name: string, args?: UserArgs, opts?: CustomResourceOptions);
@overload
def User(resource_name: str,
args: Optional[UserArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def User(resource_name: str,
opts: Optional[ResourceOptions] = None,
categories: Optional[Sequence[UserCategoryArgs]] = None,
directory_service_user: Optional[UserDirectoryServiceUserArgs] = None,
identity_provider_user: Optional[UserIdentityProviderUserArgs] = None,
owner_reference: Optional[Mapping[str, str]] = None,
project_reference: Optional[Mapping[str, str]] = None)
func NewUser(ctx *Context, name string, args *UserArgs, opts ...ResourceOption) (*User, error)
public User(string name, UserArgs? args = null, CustomResourceOptions? opts = null)
type: nutanix:User
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 UserArgs
- 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 UserArgs
- 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 UserArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args UserArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args UserArgs
- 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 userResource = new Nutanix.User("userResource", new()
{
Categories = new[]
{
new Nutanix.Inputs.UserCategoryArgs
{
Name = "string",
Value = "string",
},
},
DirectoryServiceUser = new Nutanix.Inputs.UserDirectoryServiceUserArgs
{
DirectoryServiceReference = new Nutanix.Inputs.UserDirectoryServiceUserDirectoryServiceReferenceArgs
{
Uuid = "string",
Kind = "string",
Name = "string",
},
DefaultUserPrincipalName = "string",
UserPrincipalName = "string",
},
IdentityProviderUser = new Nutanix.Inputs.UserIdentityProviderUserArgs
{
IdentityProviderReference = new Nutanix.Inputs.UserIdentityProviderUserIdentityProviderReferenceArgs
{
Uuid = "string",
Kind = "string",
Name = "string",
},
Username = "string",
},
OwnerReference =
{
{ "string", "string" },
},
ProjectReference =
{
{ "string", "string" },
},
});
example, err := nutanix.NewUser(ctx, "userResource", &nutanix.UserArgs{
Categories: nutanix.UserCategoryArray{
&nutanix.UserCategoryArgs{
Name: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
DirectoryServiceUser: &nutanix.UserDirectoryServiceUserArgs{
DirectoryServiceReference: &nutanix.UserDirectoryServiceUserDirectoryServiceReferenceArgs{
Uuid: pulumi.String("string"),
Kind: pulumi.String("string"),
Name: pulumi.String("string"),
},
DefaultUserPrincipalName: pulumi.String("string"),
UserPrincipalName: pulumi.String("string"),
},
IdentityProviderUser: &nutanix.UserIdentityProviderUserArgs{
IdentityProviderReference: &nutanix.UserIdentityProviderUserIdentityProviderReferenceArgs{
Uuid: pulumi.String("string"),
Kind: pulumi.String("string"),
Name: pulumi.String("string"),
},
Username: pulumi.String("string"),
},
OwnerReference: pulumi.StringMap{
"string": pulumi.String("string"),
},
ProjectReference: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var userResource = new User("userResource", UserArgs.builder()
.categories(UserCategoryArgs.builder()
.name("string")
.value("string")
.build())
.directoryServiceUser(UserDirectoryServiceUserArgs.builder()
.directoryServiceReference(UserDirectoryServiceUserDirectoryServiceReferenceArgs.builder()
.uuid("string")
.kind("string")
.name("string")
.build())
.defaultUserPrincipalName("string")
.userPrincipalName("string")
.build())
.identityProviderUser(UserIdentityProviderUserArgs.builder()
.identityProviderReference(UserIdentityProviderUserIdentityProviderReferenceArgs.builder()
.uuid("string")
.kind("string")
.name("string")
.build())
.username("string")
.build())
.ownerReference(Map.of("string", "string"))
.projectReference(Map.of("string", "string"))
.build());
user_resource = nutanix.User("userResource",
categories=[{
"name": "string",
"value": "string",
}],
directory_service_user={
"directory_service_reference": {
"uuid": "string",
"kind": "string",
"name": "string",
},
"default_user_principal_name": "string",
"user_principal_name": "string",
},
identity_provider_user={
"identity_provider_reference": {
"uuid": "string",
"kind": "string",
"name": "string",
},
"username": "string",
},
owner_reference={
"string": "string",
},
project_reference={
"string": "string",
})
const userResource = new nutanix.User("userResource", {
categories: [{
name: "string",
value: "string",
}],
directoryServiceUser: {
directoryServiceReference: {
uuid: "string",
kind: "string",
name: "string",
},
defaultUserPrincipalName: "string",
userPrincipalName: "string",
},
identityProviderUser: {
identityProviderReference: {
uuid: "string",
kind: "string",
name: "string",
},
username: "string",
},
ownerReference: {
string: "string",
},
projectReference: {
string: "string",
},
});
type: nutanix:User
properties:
categories:
- name: string
value: string
directoryServiceUser:
defaultUserPrincipalName: string
directoryServiceReference:
kind: string
name: string
uuid: string
userPrincipalName: string
identityProviderUser:
identityProviderReference:
kind: string
name: string
uuid: string
username: string
ownerReference:
string: string
projectReference:
string: string
User 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 User resource accepts the following input properties:
- Categories
List<Piers
Karsenbarg. Nutanix. Inputs. User Category> - (Optional) Categories for the Access Control Policy.
- Directory
Service PiersUser Karsenbarg. Nutanix. Inputs. User Directory Service User - (Optional) The directory service user configuration. See below for more information.
- Identity
Provider PiersUser Karsenbarg. Nutanix. Inputs. User Identity Provider User - (Optional) (Optional) The identity provider user configuration. See below for more information.
- Owner
Reference Dictionary<string, string> - (Optional) The reference to a user.
- Project
Reference Dictionary<string, string> - (Optional) The reference to a project.
- Categories
[]User
Category Args - (Optional) Categories for the Access Control Policy.
- Directory
Service UserUser Directory Service User Args - (Optional) The directory service user configuration. See below for more information.
- Identity
Provider UserUser Identity Provider User Args - (Optional) (Optional) The identity provider user configuration. See below for more information.
- Owner
Reference map[string]string - (Optional) The reference to a user.
- Project
Reference map[string]string - (Optional) The reference to a project.
- categories
List<User
Category> - (Optional) Categories for the Access Control Policy.
- directory
Service UserUser Directory Service User - (Optional) The directory service user configuration. See below for more information.
- identity
Provider UserUser Identity Provider User - (Optional) (Optional) The identity provider user configuration. See below for more information.
- owner
Reference Map<String,String> - (Optional) The reference to a user.
- project
Reference Map<String,String> - (Optional) The reference to a project.
- categories
User
Category[] - (Optional) Categories for the Access Control Policy.
- directory
Service UserUser Directory Service User - (Optional) The directory service user configuration. See below for more information.
- identity
Provider UserUser Identity Provider User - (Optional) (Optional) The identity provider user configuration. See below for more information.
- owner
Reference {[key: string]: string} - (Optional) The reference to a user.
- project
Reference {[key: string]: string} - (Optional) The reference to a project.
- categories
Sequence[User
Category Args] - (Optional) Categories for the Access Control Policy.
- directory_
service_ Useruser Directory Service User Args - (Optional) The directory service user configuration. See below for more information.
- identity_
provider_ Useruser Identity Provider User Args - (Optional) (Optional) The identity provider user configuration. See below for more information.
- owner_
reference Mapping[str, str] - (Optional) The reference to a user.
- project_
reference Mapping[str, str] - (Optional) The reference to a project.
- categories List<Property Map>
- (Optional) Categories for the Access Control Policy.
- directory
Service Property MapUser - (Optional) The directory service user configuration. See below for more information.
- identity
Provider Property MapUser - (Optional) (Optional) The identity provider user configuration. See below for more information.
- owner
Reference Map<String> - (Optional) The reference to a user.
- project
Reference Map<String> - (Optional) The reference to a project.
Outputs
All input properties are implicitly available as output properties. Additionally, the User resource produces the following output properties:
- Access
Control List<PiersPolicy Reference Lists Karsenbarg. Nutanix. Outputs. User Access Control Policy Reference List> - List of ACP references. See #reference for more details.
- Api
Version string - The version of the API.
- Display
Name string - The display name of the user (common name) provided by the directory service.
- Id string
- The provider-assigned unique ID for this managed resource.
- Metadata Dictionary<string, string>
- The vm kind metadata.
- Name string
- the name(Optional).
- Project
Reference List<PiersLists Karsenbarg. Nutanix. Outputs. User Project Reference List> - A list of projects the user is part of. See #reference for more details.
- State string
- The state of the entity.
- User
Type string - The name of the user.
- Access
Control []UserPolicy Reference Lists Access Control Policy Reference List - List of ACP references. See #reference for more details.
- Api
Version string - The version of the API.
- Display
Name string - The display name of the user (common name) provided by the directory service.
- Id string
- The provider-assigned unique ID for this managed resource.
- Metadata map[string]string
- The vm kind metadata.
- Name string
- the name(Optional).
- Project
Reference []UserLists Project Reference List - A list of projects the user is part of. See #reference for more details.
- State string
- The state of the entity.
- User
Type string - The name of the user.
- access
Control List<UserPolicy Reference Lists Access Control Policy Reference List> - List of ACP references. See #reference for more details.
- api
Version String - The version of the API.
- display
Name String - The display name of the user (common name) provided by the directory service.
- id String
- The provider-assigned unique ID for this managed resource.
- metadata Map<String,String>
- The vm kind metadata.
- name String
- the name(Optional).
- project
Reference List<UserLists Project Reference List> - A list of projects the user is part of. See #reference for more details.
- state String
- The state of the entity.
- user
Type String - The name of the user.
- access
Control UserPolicy Reference Lists Access Control Policy Reference List[] - List of ACP references. See #reference for more details.
- api
Version string - The version of the API.
- display
Name string - The display name of the user (common name) provided by the directory service.
- id string
- The provider-assigned unique ID for this managed resource.
- metadata {[key: string]: string}
- The vm kind metadata.
- name string
- the name(Optional).
- project
Reference UserLists Project Reference List[] - A list of projects the user is part of. See #reference for more details.
- state string
- The state of the entity.
- user
Type string - The name of the user.
- access_
control_ Sequence[Userpolicy_ reference_ lists Access Control Policy Reference List] - List of ACP references. See #reference for more details.
- api_
version str - The version of the API.
- display_
name str - The display name of the user (common name) provided by the directory service.
- id str
- The provider-assigned unique ID for this managed resource.
- metadata Mapping[str, str]
- The vm kind metadata.
- name str
- the name(Optional).
- project_
reference_ Sequence[Userlists Project Reference List] - A list of projects the user is part of. See #reference for more details.
- state str
- The state of the entity.
- user_
type str - The name of the user.
- access
Control List<Property Map>Policy Reference Lists - List of ACP references. See #reference for more details.
- api
Version String - The version of the API.
- display
Name String - The display name of the user (common name) provided by the directory service.
- id String
- The provider-assigned unique ID for this managed resource.
- metadata Map<String>
- The vm kind metadata.
- name String
- the name(Optional).
- project
Reference List<Property Map>Lists - A list of projects the user is part of. See #reference for more details.
- state String
- The state of the entity.
- user
Type String - The name of the user.
Look up Existing User Resource
Get an existing User 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?: UserState, opts?: CustomResourceOptions): User
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
access_control_policy_reference_lists: Optional[Sequence[UserAccessControlPolicyReferenceListArgs]] = None,
api_version: Optional[str] = None,
categories: Optional[Sequence[UserCategoryArgs]] = None,
directory_service_user: Optional[UserDirectoryServiceUserArgs] = None,
display_name: Optional[str] = None,
identity_provider_user: Optional[UserIdentityProviderUserArgs] = None,
metadata: Optional[Mapping[str, str]] = None,
name: Optional[str] = None,
owner_reference: Optional[Mapping[str, str]] = None,
project_reference: Optional[Mapping[str, str]] = None,
project_reference_lists: Optional[Sequence[UserProjectReferenceListArgs]] = None,
state: Optional[str] = None,
user_type: Optional[str] = None) -> User
func GetUser(ctx *Context, name string, id IDInput, state *UserState, opts ...ResourceOption) (*User, error)
public static User Get(string name, Input<string> id, UserState? state, CustomResourceOptions? opts = null)
public static User get(String name, Output<String> id, UserState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Access
Control List<PiersPolicy Reference Lists Karsenbarg. Nutanix. Inputs. User Access Control Policy Reference List> - List of ACP references. See #reference for more details.
- Api
Version string - The version of the API.
- Categories
List<Piers
Karsenbarg. Nutanix. Inputs. User Category> - (Optional) Categories for the Access Control Policy.
- Directory
Service PiersUser Karsenbarg. Nutanix. Inputs. User Directory Service User - (Optional) The directory service user configuration. See below for more information.
- Display
Name string - The display name of the user (common name) provided by the directory service.
- Identity
Provider PiersUser Karsenbarg. Nutanix. Inputs. User Identity Provider User - (Optional) (Optional) The identity provider user configuration. See below for more information.
- Metadata Dictionary<string, string>
- The vm kind metadata.
- Name string
- the name(Optional).
- Owner
Reference Dictionary<string, string> - (Optional) The reference to a user.
- Project
Reference Dictionary<string, string> - (Optional) The reference to a project.
- Project
Reference List<PiersLists Karsenbarg. Nutanix. Inputs. User Project Reference List> - A list of projects the user is part of. See #reference for more details.
- State string
- The state of the entity.
- User
Type string - The name of the user.
- Access
Control []UserPolicy Reference Lists Access Control Policy Reference List Args - List of ACP references. See #reference for more details.
- Api
Version string - The version of the API.
- Categories
[]User
Category Args - (Optional) Categories for the Access Control Policy.
- Directory
Service UserUser Directory Service User Args - (Optional) The directory service user configuration. See below for more information.
- Display
Name string - The display name of the user (common name) provided by the directory service.
- Identity
Provider UserUser Identity Provider User Args - (Optional) (Optional) The identity provider user configuration. See below for more information.
- Metadata map[string]string
- The vm kind metadata.
- Name string
- the name(Optional).
- Owner
Reference map[string]string - (Optional) The reference to a user.
- Project
Reference map[string]string - (Optional) The reference to a project.
- Project
Reference []UserLists Project Reference List Args - A list of projects the user is part of. See #reference for more details.
- State string
- The state of the entity.
- User
Type string - The name of the user.
- access
Control List<UserPolicy Reference Lists Access Control Policy Reference List> - List of ACP references. See #reference for more details.
- api
Version String - The version of the API.
- categories
List<User
Category> - (Optional) Categories for the Access Control Policy.
- directory
Service UserUser Directory Service User - (Optional) The directory service user configuration. See below for more information.
- display
Name String - The display name of the user (common name) provided by the directory service.
- identity
Provider UserUser Identity Provider User - (Optional) (Optional) The identity provider user configuration. See below for more information.
- metadata Map<String,String>
- The vm kind metadata.
- name String
- the name(Optional).
- owner
Reference Map<String,String> - (Optional) The reference to a user.
- project
Reference Map<String,String> - (Optional) The reference to a project.
- project
Reference List<UserLists Project Reference List> - A list of projects the user is part of. See #reference for more details.
- state String
- The state of the entity.
- user
Type String - The name of the user.
- access
Control UserPolicy Reference Lists Access Control Policy Reference List[] - List of ACP references. See #reference for more details.
- api
Version string - The version of the API.
- categories
User
Category[] - (Optional) Categories for the Access Control Policy.
- directory
Service UserUser Directory Service User - (Optional) The directory service user configuration. See below for more information.
- display
Name string - The display name of the user (common name) provided by the directory service.
- identity
Provider UserUser Identity Provider User - (Optional) (Optional) The identity provider user configuration. See below for more information.
- metadata {[key: string]: string}
- The vm kind metadata.
- name string
- the name(Optional).
- owner
Reference {[key: string]: string} - (Optional) The reference to a user.
- project
Reference {[key: string]: string} - (Optional) The reference to a project.
- project
Reference UserLists Project Reference List[] - A list of projects the user is part of. See #reference for more details.
- state string
- The state of the entity.
- user
Type string - The name of the user.
- access_
control_ Sequence[Userpolicy_ reference_ lists Access Control Policy Reference List Args] - List of ACP references. See #reference for more details.
- api_
version str - The version of the API.
- categories
Sequence[User
Category Args] - (Optional) Categories for the Access Control Policy.
- directory_
service_ Useruser Directory Service User Args - (Optional) The directory service user configuration. See below for more information.
- display_
name str - The display name of the user (common name) provided by the directory service.
- identity_
provider_ Useruser Identity Provider User Args - (Optional) (Optional) The identity provider user configuration. See below for more information.
- metadata Mapping[str, str]
- The vm kind metadata.
- name str
- the name(Optional).
- owner_
reference Mapping[str, str] - (Optional) The reference to a user.
- project_
reference Mapping[str, str] - (Optional) The reference to a project.
- project_
reference_ Sequence[Userlists Project Reference List Args] - A list of projects the user is part of. See #reference for more details.
- state str
- The state of the entity.
- user_
type str - The name of the user.
- access
Control List<Property Map>Policy Reference Lists - List of ACP references. See #reference for more details.
- api
Version String - The version of the API.
- categories List<Property Map>
- (Optional) Categories for the Access Control Policy.
- directory
Service Property MapUser - (Optional) The directory service user configuration. See below for more information.
- display
Name String - The display name of the user (common name) provided by the directory service.
- identity
Provider Property MapUser - (Optional) (Optional) The identity provider user configuration. See below for more information.
- metadata Map<String>
- The vm kind metadata.
- name String
- the name(Optional).
- owner
Reference Map<String> - (Optional) The reference to a user.
- project
Reference Map<String> - (Optional) The reference to a project.
- project
Reference List<Property Map>Lists - A list of projects the user is part of. See #reference for more details.
- state String
- The state of the entity.
- user
Type String - The name of the user.
Supporting Types
UserAccessControlPolicyReferenceList, UserAccessControlPolicyReferenceListArgs
UserCategory, UserCategoryArgs
UserDirectoryServiceUser, UserDirectoryServiceUserArgs
- Directory
Service PiersReference Karsenbarg. Nutanix. Inputs. User Directory Service User Directory Service Reference - (Optional) The reference to a directory service. See #reference for to look the supported attributes.
- Default
User stringPrincipal Name - User
Principal stringName - (Optional) The UserPrincipalName of the user from the directory service.
- Directory
Service UserReference Directory Service User Directory Service Reference - (Optional) The reference to a directory service. See #reference for to look the supported attributes.
- Default
User stringPrincipal Name - User
Principal stringName - (Optional) The UserPrincipalName of the user from the directory service.
- directory
Service UserReference Directory Service User Directory Service Reference - (Optional) The reference to a directory service. See #reference for to look the supported attributes.
- default
User StringPrincipal Name - user
Principal StringName - (Optional) The UserPrincipalName of the user from the directory service.
- directory
Service UserReference Directory Service User Directory Service Reference - (Optional) The reference to a directory service. See #reference for to look the supported attributes.
- default
User stringPrincipal Name - user
Principal stringName - (Optional) The UserPrincipalName of the user from the directory service.
- directory_
service_ Userreference Directory Service User Directory Service Reference - (Optional) The reference to a directory service. See #reference for to look the supported attributes.
- default_
user_ strprincipal_ name - user_
principal_ strname - (Optional) The UserPrincipalName of the user from the directory service.
- directory
Service Property MapReference - (Optional) The reference to a directory service. See #reference for to look the supported attributes.
- default
User StringPrincipal Name - user
Principal StringName - (Optional) The UserPrincipalName of the user from the directory service.
UserDirectoryServiceUserDirectoryServiceReference, UserDirectoryServiceUserDirectoryServiceReferenceArgs
UserIdentityProviderUser, UserIdentityProviderUserArgs
- Identity
Provider PiersReference Karsenbarg. Nutanix. Inputs. User Identity Provider User Identity Provider Reference - (Optional) The reference to a identity provider. See #reference for to look the supported attributes.
- Username string
- (Optional) The username from identity provider. Name ID for SAML Identity Provider.
- Identity
Provider UserReference Identity Provider User Identity Provider Reference - (Optional) The reference to a identity provider. See #reference for to look the supported attributes.
- Username string
- (Optional) The username from identity provider. Name ID for SAML Identity Provider.
- identity
Provider UserReference Identity Provider User Identity Provider Reference - (Optional) The reference to a identity provider. See #reference for to look the supported attributes.
- username String
- (Optional) The username from identity provider. Name ID for SAML Identity Provider.
- identity
Provider UserReference Identity Provider User Identity Provider Reference - (Optional) The reference to a identity provider. See #reference for to look the supported attributes.
- username string
- (Optional) The username from identity provider. Name ID for SAML Identity Provider.
- identity_
provider_ Userreference Identity Provider User Identity Provider Reference - (Optional) The reference to a identity provider. See #reference for to look the supported attributes.
- username str
- (Optional) The username from identity provider. Name ID for SAML Identity Provider.
- identity
Provider Property MapReference - (Optional) The reference to a identity provider. See #reference for to look the supported attributes.
- username String
- (Optional) The username from identity provider. Name ID for SAML Identity Provider.
UserIdentityProviderUserIdentityProviderReference, UserIdentityProviderUserIdentityProviderReferenceArgs
UserProjectReferenceList, UserProjectReferenceListArgs
Package Details
- Repository
- nutanix pierskarsenbarg/pulumi-nutanix
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
nutanix
Terraform Provider.