1. Packages
  2. Nutanix
  3. API Docs
  4. getProjects
Nutanix v0.0.52 published on Friday, Jun 7, 2024 by Piers Karsenbarg

nutanix.getProjects

Explore with Pulumi AI

nutanix logo
Nutanix v0.0.52 published on Friday, Jun 7, 2024 by Piers Karsenbarg

    Describes Projects

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as nutanix from "@pulumi/nutanix";
    
    const projects = nutanix.getProjects({});
    
    import pulumi
    import pulumi_nutanix as nutanix
    
    projects = nutanix.get_projects()
    
    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.GetProjects(ctx, nil, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Nutanix = Pulumi.Nutanix;
    
    return await Deployment.RunAsync(() => 
    {
        var projects = Nutanix.GetProjects.Invoke();
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.nutanix.NutanixFunctions;
    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) {
            final var projects = NutanixFunctions.getProjects();
    
        }
    }
    
    variables:
      projects:
        fn::invoke:
          Function: nutanix:getProjects
          Arguments: {}
    

    Using getProjects

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getProjects(opts?: InvokeOptions): Promise<GetProjectsResult>
    function getProjectsOutput(opts?: InvokeOptions): Output<GetProjectsResult>
    def get_projects(opts: Optional[InvokeOptions] = None) -> GetProjectsResult
    def get_projects_output(opts: Optional[InvokeOptions] = None) -> Output[GetProjectsResult]
    func GetProjects(ctx *Context, opts ...InvokeOption) (*GetProjectsResult, error)
    func GetProjectsOutput(ctx *Context, opts ...InvokeOption) GetProjectsResultOutput

    > Note: This function is named GetProjects in the Go SDK.

    public static class GetProjects 
    {
        public static Task<GetProjectsResult> InvokeAsync(InvokeOptions? opts = null)
        public static Output<GetProjectsResult> Invoke(InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetProjectsResult> getProjects(InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: nutanix:index/getProjects:getProjects
      arguments:
        # arguments dictionary

    getProjects Result

    The following output properties are available:

    ApiVersion string
    version of the API
    Entities List<PiersKarsenbarg.Nutanix.Outputs.GetProjectsEntity>
    List of Projects
    Id string
    The provider-assigned unique ID for this managed resource.
    ApiVersion string
    version of the API
    Entities []GetProjectsEntity
    List of Projects
    Id string
    The provider-assigned unique ID for this managed resource.
    apiVersion String
    version of the API
    entities List<GetProjectsEntity>
    List of Projects
    id String
    The provider-assigned unique ID for this managed resource.
    apiVersion string
    version of the API
    entities GetProjectsEntity[]
    List of Projects
    id string
    The provider-assigned unique ID for this managed resource.
    api_version str
    version of the API
    entities Sequence[GetProjectsEntity]
    List of Projects
    id str
    The provider-assigned unique ID for this managed resource.
    apiVersion String
    version of the API
    entities List<Property Map>
    List of Projects
    id String
    The provider-assigned unique ID for this managed resource.

    Supporting Types

    GetProjectsEntity

    AccountReferenceLists List<PiersKarsenbarg.Nutanix.Inputs.GetProjectsEntityAccountReferenceList>
    List of accounts associated with the project.

    • account_reference_list.#.kind - The kind name. Default value is account
    • account_reference_list.#.uuid - The UUID of an account.
    • account_reference_list.#.name - The name of an account.
    ApiVersion string
    version of the API
    Categories List<PiersKarsenbarg.Nutanix.Inputs.GetProjectsEntityCategory>
    DefaultSubnetReference Dictionary<string, string>
    Reference to a subnet.
    Description string
    A description for project.
    EnvironmentReferenceLists List<PiersKarsenbarg.Nutanix.Inputs.GetProjectsEntityEnvironmentReferenceList>
    List of environments associated with the project.

    • environment_reference_list.#.kind - The kind name. Default value is environment
    • environment_reference_list.#.uuid - The UUID of an environment.
    • environment_reference_list.#.name - The name of an environment.
    ExternalNetworkLists List<PiersKarsenbarg.Nutanix.Inputs.GetProjectsEntityExternalNetworkList>
    List of external networks associated with the project.

    • external_network_list.#.uuid - The UUID of a network.
    • external_network_list.#.name - The name of a network.
    ExternalUserGroupReferenceLists List<PiersKarsenbarg.Nutanix.Inputs.GetProjectsEntityExternalUserGroupReferenceList>
    List of directory service user groups. These groups are not managed by Nutanix.

    • external_user_group_reference_list.#.kind - The kind name. Default value is user_group
    • external_user_group_reference_list.#.uuid - The UUID of a user_group
    • external_user_group_reference_list.#.name - The name of a user_group
    IsDefault bool
    Metadata Dictionary<string, string>
    Name string
    (Optional) the name.
    OwnerReference Dictionary<string, string>
    ProjectReference Dictionary<string, string>
    ResourceDomains List<PiersKarsenbarg.Nutanix.Inputs.GetProjectsEntityResourceDomain>
    The status for a resource domain (limits and values)
    State string
    SubnetReferenceLists List<PiersKarsenbarg.Nutanix.Inputs.GetProjectsEntitySubnetReferenceList>
    List of subnets for the project.

    • subnet_reference_list.#.kind - The kind name. Default value is subnet
    • subnet_reference_list.#.uuid - The UUID of a subnet
    • subnet_reference_list.#.name - The name of a subnet.
    UserReferenceLists List<PiersKarsenbarg.Nutanix.Inputs.GetProjectsEntityUserReferenceList>
    List of users in the project.

    • user_reference_list.#.kind - The kind name. Default value is user
    • user_reference_list.#.uuid - The UUID of a user
    • user_reference_list.#.name - The name of a user.
    AccountReferenceLists []GetProjectsEntityAccountReferenceList
    List of accounts associated with the project.

    • account_reference_list.#.kind - The kind name. Default value is account
    • account_reference_list.#.uuid - The UUID of an account.
    • account_reference_list.#.name - The name of an account.
    ApiVersion string
    version of the API
    Categories []GetProjectsEntityCategory
    DefaultSubnetReference map[string]string
    Reference to a subnet.
    Description string
    A description for project.
    EnvironmentReferenceLists []GetProjectsEntityEnvironmentReferenceList
    List of environments associated with the project.

    • environment_reference_list.#.kind - The kind name. Default value is environment
    • environment_reference_list.#.uuid - The UUID of an environment.
    • environment_reference_list.#.name - The name of an environment.
    ExternalNetworkLists []GetProjectsEntityExternalNetworkList
    List of external networks associated with the project.

    • external_network_list.#.uuid - The UUID of a network.
    • external_network_list.#.name - The name of a network.
    ExternalUserGroupReferenceLists []GetProjectsEntityExternalUserGroupReferenceList
    List of directory service user groups. These groups are not managed by Nutanix.

    • external_user_group_reference_list.#.kind - The kind name. Default value is user_group
    • external_user_group_reference_list.#.uuid - The UUID of a user_group
    • external_user_group_reference_list.#.name - The name of a user_group
    IsDefault bool
    Metadata map[string]string
    Name string
    (Optional) the name.
    OwnerReference map[string]string
    ProjectReference map[string]string
    ResourceDomains []GetProjectsEntityResourceDomain
    The status for a resource domain (limits and values)
    State string
    SubnetReferenceLists []GetProjectsEntitySubnetReferenceList
    List of subnets for the project.

    • subnet_reference_list.#.kind - The kind name. Default value is subnet
    • subnet_reference_list.#.uuid - The UUID of a subnet
    • subnet_reference_list.#.name - The name of a subnet.
    UserReferenceLists []GetProjectsEntityUserReferenceList
    List of users in the project.

    • user_reference_list.#.kind - The kind name. Default value is user
    • user_reference_list.#.uuid - The UUID of a user
    • user_reference_list.#.name - The name of a user.
    accountReferenceLists List<GetProjectsEntityAccountReferenceList>
    List of accounts associated with the project.

    • account_reference_list.#.kind - The kind name. Default value is account
    • account_reference_list.#.uuid - The UUID of an account.
    • account_reference_list.#.name - The name of an account.
    apiVersion String
    version of the API
    categories List<GetProjectsEntityCategory>
    defaultSubnetReference Map<String,String>
    Reference to a subnet.
    description String
    A description for project.
    environmentReferenceLists List<GetProjectsEntityEnvironmentReferenceList>
    List of environments associated with the project.

    • environment_reference_list.#.kind - The kind name. Default value is environment
    • environment_reference_list.#.uuid - The UUID of an environment.
    • environment_reference_list.#.name - The name of an environment.
    externalNetworkLists List<GetProjectsEntityExternalNetworkList>
    List of external networks associated with the project.

    • external_network_list.#.uuid - The UUID of a network.
    • external_network_list.#.name - The name of a network.
    externalUserGroupReferenceLists List<GetProjectsEntityExternalUserGroupReferenceList>
    List of directory service user groups. These groups are not managed by Nutanix.

    • external_user_group_reference_list.#.kind - The kind name. Default value is user_group
    • external_user_group_reference_list.#.uuid - The UUID of a user_group
    • external_user_group_reference_list.#.name - The name of a user_group
    isDefault Boolean
    metadata Map<String,String>
    name String
    (Optional) the name.
    ownerReference Map<String,String>
    projectReference Map<String,String>
    resourceDomains List<GetProjectsEntityResourceDomain>
    The status for a resource domain (limits and values)
    state String
    subnetReferenceLists List<GetProjectsEntitySubnetReferenceList>
    List of subnets for the project.

    • subnet_reference_list.#.kind - The kind name. Default value is subnet
    • subnet_reference_list.#.uuid - The UUID of a subnet
    • subnet_reference_list.#.name - The name of a subnet.
    userReferenceLists List<GetProjectsEntityUserReferenceList>
    List of users in the project.

    • user_reference_list.#.kind - The kind name. Default value is user
    • user_reference_list.#.uuid - The UUID of a user
    • user_reference_list.#.name - The name of a user.
    accountReferenceLists GetProjectsEntityAccountReferenceList[]
    List of accounts associated with the project.

    • account_reference_list.#.kind - The kind name. Default value is account
    • account_reference_list.#.uuid - The UUID of an account.
    • account_reference_list.#.name - The name of an account.
    apiVersion string
    version of the API
    categories GetProjectsEntityCategory[]
    defaultSubnetReference {[key: string]: string}
    Reference to a subnet.
    description string
    A description for project.
    environmentReferenceLists GetProjectsEntityEnvironmentReferenceList[]
    List of environments associated with the project.

    • environment_reference_list.#.kind - The kind name. Default value is environment
    • environment_reference_list.#.uuid - The UUID of an environment.
    • environment_reference_list.#.name - The name of an environment.
    externalNetworkLists GetProjectsEntityExternalNetworkList[]
    List of external networks associated with the project.

    • external_network_list.#.uuid - The UUID of a network.
    • external_network_list.#.name - The name of a network.
    externalUserGroupReferenceLists GetProjectsEntityExternalUserGroupReferenceList[]
    List of directory service user groups. These groups are not managed by Nutanix.

    • external_user_group_reference_list.#.kind - The kind name. Default value is user_group
    • external_user_group_reference_list.#.uuid - The UUID of a user_group
    • external_user_group_reference_list.#.name - The name of a user_group
    isDefault boolean
    metadata {[key: string]: string}
    name string
    (Optional) the name.
    ownerReference {[key: string]: string}
    projectReference {[key: string]: string}
    resourceDomains GetProjectsEntityResourceDomain[]
    The status for a resource domain (limits and values)
    state string
    subnetReferenceLists GetProjectsEntitySubnetReferenceList[]
    List of subnets for the project.

    • subnet_reference_list.#.kind - The kind name. Default value is subnet
    • subnet_reference_list.#.uuid - The UUID of a subnet
    • subnet_reference_list.#.name - The name of a subnet.
    userReferenceLists GetProjectsEntityUserReferenceList[]
    List of users in the project.

    • user_reference_list.#.kind - The kind name. Default value is user
    • user_reference_list.#.uuid - The UUID of a user
    • user_reference_list.#.name - The name of a user.
    account_reference_lists Sequence[GetProjectsEntityAccountReferenceList]
    List of accounts associated with the project.

    • account_reference_list.#.kind - The kind name. Default value is account
    • account_reference_list.#.uuid - The UUID of an account.
    • account_reference_list.#.name - The name of an account.
    api_version str
    version of the API
    categories Sequence[GetProjectsEntityCategory]
    default_subnet_reference Mapping[str, str]
    Reference to a subnet.
    description str
    A description for project.
    environment_reference_lists Sequence[GetProjectsEntityEnvironmentReferenceList]
    List of environments associated with the project.

    • environment_reference_list.#.kind - The kind name. Default value is environment
    • environment_reference_list.#.uuid - The UUID of an environment.
    • environment_reference_list.#.name - The name of an environment.
    external_network_lists Sequence[GetProjectsEntityExternalNetworkList]
    List of external networks associated with the project.

    • external_network_list.#.uuid - The UUID of a network.
    • external_network_list.#.name - The name of a network.
    external_user_group_reference_lists Sequence[GetProjectsEntityExternalUserGroupReferenceList]
    List of directory service user groups. These groups are not managed by Nutanix.

    • external_user_group_reference_list.#.kind - The kind name. Default value is user_group
    • external_user_group_reference_list.#.uuid - The UUID of a user_group
    • external_user_group_reference_list.#.name - The name of a user_group
    is_default bool
    metadata Mapping[str, str]
    name str
    (Optional) the name.
    owner_reference Mapping[str, str]
    project_reference Mapping[str, str]
    resource_domains Sequence[GetProjectsEntityResourceDomain]
    The status for a resource domain (limits and values)
    state str
    subnet_reference_lists Sequence[GetProjectsEntitySubnetReferenceList]
    List of subnets for the project.

    • subnet_reference_list.#.kind - The kind name. Default value is subnet
    • subnet_reference_list.#.uuid - The UUID of a subnet
    • subnet_reference_list.#.name - The name of a subnet.
    user_reference_lists Sequence[GetProjectsEntityUserReferenceList]
    List of users in the project.

    • user_reference_list.#.kind - The kind name. Default value is user
    • user_reference_list.#.uuid - The UUID of a user
    • user_reference_list.#.name - The name of a user.
    accountReferenceLists List<Property Map>
    List of accounts associated with the project.

    • account_reference_list.#.kind - The kind name. Default value is account
    • account_reference_list.#.uuid - The UUID of an account.
    • account_reference_list.#.name - The name of an account.
    apiVersion String
    version of the API
    categories List<Property Map>
    defaultSubnetReference Map<String>
    Reference to a subnet.
    description String
    A description for project.
    environmentReferenceLists List<Property Map>
    List of environments associated with the project.

    • environment_reference_list.#.kind - The kind name. Default value is environment
    • environment_reference_list.#.uuid - The UUID of an environment.
    • environment_reference_list.#.name - The name of an environment.
    externalNetworkLists List<Property Map>
    List of external networks associated with the project.

    • external_network_list.#.uuid - The UUID of a network.
    • external_network_list.#.name - The name of a network.
    externalUserGroupReferenceLists List<Property Map>
    List of directory service user groups. These groups are not managed by Nutanix.

    • external_user_group_reference_list.#.kind - The kind name. Default value is user_group
    • external_user_group_reference_list.#.uuid - The UUID of a user_group
    • external_user_group_reference_list.#.name - The name of a user_group
    isDefault Boolean
    metadata Map<String>
    name String
    (Optional) the name.
    ownerReference Map<String>
    projectReference Map<String>
    resourceDomains List<Property Map>
    The status for a resource domain (limits and values)
    state String
    subnetReferenceLists List<Property Map>
    List of subnets for the project.

    • subnet_reference_list.#.kind - The kind name. Default value is subnet
    • subnet_reference_list.#.uuid - The UUID of a subnet
    • subnet_reference_list.#.name - The name of a subnet.
    userReferenceLists List<Property Map>
    List of users in the project.

    • user_reference_list.#.kind - The kind name. Default value is user
    • user_reference_list.#.uuid - The UUID of a user
    • user_reference_list.#.name - The name of a user.

    GetProjectsEntityAccountReferenceList

    Kind string
    (Required) The kind name (Default value: project).
    Name string
    (Optional) the name.
    Uuid string
    (Required) the UUID.
    Kind string
    (Required) The kind name (Default value: project).
    Name string
    (Optional) the name.
    Uuid string
    (Required) the UUID.
    kind String
    (Required) The kind name (Default value: project).
    name String
    (Optional) the name.
    uuid String
    (Required) the UUID.
    kind string
    (Required) The kind name (Default value: project).
    name string
    (Optional) the name.
    uuid string
    (Required) the UUID.
    kind str
    (Required) The kind name (Default value: project).
    name str
    (Optional) the name.
    uuid str
    (Required) the UUID.
    kind String
    (Required) The kind name (Default value: project).
    name String
    (Optional) the name.
    uuid String
    (Required) the UUID.

    GetProjectsEntityCategory

    Name string
    (Optional) the name.
    Value string
    value of the key.
    Name string
    (Optional) the name.
    Value string
    value of the key.
    name String
    (Optional) the name.
    value String
    value of the key.
    name string
    (Optional) the name.
    value string
    value of the key.
    name str
    (Optional) the name.
    value str
    value of the key.
    name String
    (Optional) the name.
    value String
    value of the key.

    GetProjectsEntityEnvironmentReferenceList

    Kind string
    (Required) The kind name (Default value: project).
    Name string
    (Optional) the name.
    Uuid string
    (Required) the UUID.
    Kind string
    (Required) The kind name (Default value: project).
    Name string
    (Optional) the name.
    Uuid string
    (Required) the UUID.
    kind String
    (Required) The kind name (Default value: project).
    name String
    (Optional) the name.
    uuid String
    (Required) the UUID.
    kind string
    (Required) The kind name (Default value: project).
    name string
    (Optional) the name.
    uuid string
    (Required) the UUID.
    kind str
    (Required) The kind name (Default value: project).
    name str
    (Optional) the name.
    uuid str
    (Required) the UUID.
    kind String
    (Required) The kind name (Default value: project).
    name String
    (Optional) the name.
    uuid String
    (Required) the UUID.

    GetProjectsEntityExternalNetworkList

    Name string
    (Optional) the name.
    Uuid string
    (Required) the UUID.
    Name string
    (Optional) the name.
    Uuid string
    (Required) the UUID.
    name String
    (Optional) the name.
    uuid String
    (Required) the UUID.
    name string
    (Optional) the name.
    uuid string
    (Required) the UUID.
    name str
    (Optional) the name.
    uuid str
    (Required) the UUID.
    name String
    (Optional) the name.
    uuid String
    (Required) the UUID.

    GetProjectsEntityExternalUserGroupReferenceList

    Kind string
    (Required) The kind name (Default value: project).
    Name string
    (Optional) the name.
    Uuid string
    (Required) the UUID.
    Kind string
    (Required) The kind name (Default value: project).
    Name string
    (Optional) the name.
    Uuid string
    (Required) the UUID.
    kind String
    (Required) The kind name (Default value: project).
    name String
    (Optional) the name.
    uuid String
    (Required) the UUID.
    kind string
    (Required) The kind name (Default value: project).
    name string
    (Optional) the name.
    uuid string
    (Required) the UUID.
    kind str
    (Required) The kind name (Default value: project).
    name str
    (Optional) the name.
    uuid str
    (Required) the UUID.
    kind String
    (Required) The kind name (Default value: project).
    name String
    (Optional) the name.
    uuid String
    (Required) the UUID.

    GetProjectsEntityResourceDomain

    Resources List<PiersKarsenbarg.Nutanix.Inputs.GetProjectsEntityResourceDomainResource>
    Array of the utilization/limit for resource types

    • resource_domain.resources.#.limit The resource consumption limit (unspecified is unlimited)
    • resource_domain.resources.#.resource_type The type of resource (for example storage, CPUs)
    • resource_domain.resources.#.units - The units of the resource type
    • resource_domain.resources.#.value - The amount of resource consumed
    Resources []GetProjectsEntityResourceDomainResource
    Array of the utilization/limit for resource types

    • resource_domain.resources.#.limit The resource consumption limit (unspecified is unlimited)
    • resource_domain.resources.#.resource_type The type of resource (for example storage, CPUs)
    • resource_domain.resources.#.units - The units of the resource type
    • resource_domain.resources.#.value - The amount of resource consumed
    resources List<GetProjectsEntityResourceDomainResource>
    Array of the utilization/limit for resource types

    • resource_domain.resources.#.limit The resource consumption limit (unspecified is unlimited)
    • resource_domain.resources.#.resource_type The type of resource (for example storage, CPUs)
    • resource_domain.resources.#.units - The units of the resource type
    • resource_domain.resources.#.value - The amount of resource consumed
    resources GetProjectsEntityResourceDomainResource[]
    Array of the utilization/limit for resource types

    • resource_domain.resources.#.limit The resource consumption limit (unspecified is unlimited)
    • resource_domain.resources.#.resource_type The type of resource (for example storage, CPUs)
    • resource_domain.resources.#.units - The units of the resource type
    • resource_domain.resources.#.value - The amount of resource consumed
    resources Sequence[GetProjectsEntityResourceDomainResource]
    Array of the utilization/limit for resource types

    • resource_domain.resources.#.limit The resource consumption limit (unspecified is unlimited)
    • resource_domain.resources.#.resource_type The type of resource (for example storage, CPUs)
    • resource_domain.resources.#.units - The units of the resource type
    • resource_domain.resources.#.value - The amount of resource consumed
    resources List<Property Map>
    Array of the utilization/limit for resource types

    • resource_domain.resources.#.limit The resource consumption limit (unspecified is unlimited)
    • resource_domain.resources.#.resource_type The type of resource (for example storage, CPUs)
    • resource_domain.resources.#.units - The units of the resource type
    • resource_domain.resources.#.value - The amount of resource consumed

    GetProjectsEntityResourceDomainResource

    Limit int
    ResourceType string
    Units string
    Value int
    value of the key.
    Limit int
    ResourceType string
    Units string
    Value int
    value of the key.
    limit Integer
    resourceType String
    units String
    value Integer
    value of the key.
    limit number
    resourceType string
    units string
    value number
    value of the key.
    limit int
    resource_type str
    units str
    value int
    value of the key.
    limit Number
    resourceType String
    units String
    value Number
    value of the key.

    GetProjectsEntitySubnetReferenceList

    Kind string
    (Required) The kind name (Default value: project).
    Name string
    (Optional) the name.
    Uuid string
    (Required) the UUID.
    Kind string
    (Required) The kind name (Default value: project).
    Name string
    (Optional) the name.
    Uuid string
    (Required) the UUID.
    kind String
    (Required) The kind name (Default value: project).
    name String
    (Optional) the name.
    uuid String
    (Required) the UUID.
    kind string
    (Required) The kind name (Default value: project).
    name string
    (Optional) the name.
    uuid string
    (Required) the UUID.
    kind str
    (Required) The kind name (Default value: project).
    name str
    (Optional) the name.
    uuid str
    (Required) the UUID.
    kind String
    (Required) The kind name (Default value: project).
    name String
    (Optional) the name.
    uuid String
    (Required) the UUID.

    GetProjectsEntityUserReferenceList

    Kind string
    (Required) The kind name (Default value: project).
    Name string
    (Optional) the name.
    Uuid string
    (Required) the UUID.
    Kind string
    (Required) The kind name (Default value: project).
    Name string
    (Optional) the name.
    Uuid string
    (Required) the UUID.
    kind String
    (Required) The kind name (Default value: project).
    name String
    (Optional) the name.
    uuid String
    (Required) the UUID.
    kind string
    (Required) The kind name (Default value: project).
    name string
    (Optional) the name.
    uuid string
    (Required) the UUID.
    kind str
    (Required) The kind name (Default value: project).
    name str
    (Optional) the name.
    uuid str
    (Required) the UUID.
    kind String
    (Required) The kind name (Default value: project).
    name String
    (Optional) the name.
    uuid String
    (Required) the UUID.

    Package Details

    Repository
    nutanix pierskarsenbarg/pulumi-nutanix
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the nutanix Terraform Provider.
    nutanix logo
    Nutanix v0.0.52 published on Friday, Jun 7, 2024 by Piers Karsenbarg