Viewing docs for Nutanix v0.16.0
published on Tuesday, May 26, 2026 by Piers Karsenbarg
published on Tuesday, May 26, 2026 by Piers Karsenbarg
Viewing docs for Nutanix v0.16.0
published on Tuesday, May 26, 2026 by Piers Karsenbarg
published on Tuesday, May 26, 2026 by Piers Karsenbarg
Provides a datasource to list IAM Entities. Entities are used in authorization policies (e.g. user, role, cluster). Supports pagination and OData filter, orderBy, and select.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as nutanix from "@pierskarsenbarg/nutanix";
// List all entities (default page/limit)
const all = nutanix.getIamEntitiesV2({});
// List entities with filter and pagination
const filtered = nutanix.getIamEntitiesV2({
filter: "name eq 'user'",
limit: 20,
page: 0,
});
// List with order_by
const ordered = nutanix.getIamEntitiesV2({
orderBy: "name asc",
limit: 50,
});
// List with select to specify returned fields
const selected = nutanix.getIamEntitiesV2({
select: "name,displayName,extId",
limit: 10,
});
import pulumi
import pulumi_nutanix as nutanix
# List all entities (default page/limit)
all = nutanix.get_iam_entities_v2()
# List entities with filter and pagination
filtered = nutanix.get_iam_entities_v2(filter="name eq 'user'",
limit=20,
page=0)
# List with order_by
ordered = nutanix.get_iam_entities_v2(order_by="name asc",
limit=50)
# List with select to specify returned fields
selected = nutanix.get_iam_entities_v2(select="name,displayName,extId",
limit=10)
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 {
// List all entities (default page/limit)
_, err := nutanix.GetIamEntitiesV2(ctx, &nutanix.GetIamEntitiesV2Args{}, nil)
if err != nil {
return err
}
// List entities with filter and pagination
_, err = nutanix.GetIamEntitiesV2(ctx, &nutanix.GetIamEntitiesV2Args{
Filter: pulumi.StringRef("name eq 'user'"),
Limit: pulumi.IntRef(20),
Page: pulumi.IntRef(0),
}, nil)
if err != nil {
return err
}
// List with order_by
_, err = nutanix.GetIamEntitiesV2(ctx, &nutanix.GetIamEntitiesV2Args{
OrderBy: pulumi.StringRef("name asc"),
Limit: pulumi.IntRef(50),
}, nil)
if err != nil {
return err
}
// List with select to specify returned fields
_, err = nutanix.GetIamEntitiesV2(ctx, &nutanix.GetIamEntitiesV2Args{
Select: pulumi.StringRef("name,displayName,extId"),
Limit: pulumi.IntRef(10),
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Nutanix = PiersKarsenbarg.Nutanix;
return await Deployment.RunAsync(() =>
{
// List all entities (default page/limit)
var all = Nutanix.GetIamEntitiesV2.Invoke();
// List entities with filter and pagination
var filtered = Nutanix.GetIamEntitiesV2.Invoke(new()
{
Filter = "name eq 'user'",
Limit = 20,
Page = 0,
});
// List with order_by
var ordered = Nutanix.GetIamEntitiesV2.Invoke(new()
{
OrderBy = "name asc",
Limit = 50,
});
// List with select to specify returned fields
var selected = Nutanix.GetIamEntitiesV2.Invoke(new()
{
Select = "name,displayName,extId",
Limit = 10,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.nutanix.NutanixFunctions;
import com.pulumi.nutanix.inputs.GetIamEntitiesV2Args;
import java.util.ArrayList;
import java.util.Arrays;
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) {
// List all entities (default page/limit)
final var all = NutanixFunctions.getIamEntitiesV2(GetIamEntitiesV2Args.builder()
.build());
// List entities with filter and pagination
final var filtered = NutanixFunctions.getIamEntitiesV2(GetIamEntitiesV2Args.builder()
.filter("name eq 'user'")
.limit(20)
.page(0)
.build());
// List with order_by
final var ordered = NutanixFunctions.getIamEntitiesV2(GetIamEntitiesV2Args.builder()
.orderBy("name asc")
.limit(50)
.build());
// List with select to specify returned fields
final var selected = NutanixFunctions.getIamEntitiesV2(GetIamEntitiesV2Args.builder()
.select("name,displayName,extId")
.limit(10)
.build());
}
}
variables:
# List all entities (default page/limit)
all:
fn::invoke:
function: nutanix:getIamEntitiesV2
arguments: {}
# List entities with filter and pagination
filtered:
fn::invoke:
function: nutanix:getIamEntitiesV2
arguments:
filter: name eq 'user'
limit: 20
page: 0
# List with order_by
ordered:
fn::invoke:
function: nutanix:getIamEntitiesV2
arguments:
orderBy: name asc
limit: 50
# List with select to specify returned fields
selected:
fn::invoke:
function: nutanix:getIamEntitiesV2
arguments:
select: name,displayName,extId
limit: 10
pulumi {
required_providers {
nutanix = {
source = "pulumi/nutanix"
}
}
}
data "nutanix_getiamentitiesv2" "all" {
}
data "nutanix_getiamentitiesv2" "filtered" {
filter = "name eq 'user'"
limit = 20
page = 0
}
data "nutanix_getiamentitiesv2" "ordered" {
order_by = "name asc"
limit = 50
}
data "nutanix_getiamentitiesv2" "selected" {
select = "name,displayName,extId"
limit = 10
}
# List all entities (default page/limit)
# List entities with filter and pagination
# List with order_by
# List with select to specify returned fields
Using getIamEntitiesV2
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 getIamEntitiesV2(args: GetIamEntitiesV2Args, opts?: InvokeOptions): Promise<GetIamEntitiesV2Result>
function getIamEntitiesV2Output(args: GetIamEntitiesV2OutputArgs, opts?: InvokeOptions): Output<GetIamEntitiesV2Result>def get_iam_entities_v2(filter: Optional[str] = None,
limit: Optional[int] = None,
order_by: Optional[str] = None,
page: Optional[int] = None,
select: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetIamEntitiesV2Result
def get_iam_entities_v2_output(filter: pulumi.Input[Optional[str]] = None,
limit: pulumi.Input[Optional[int]] = None,
order_by: pulumi.Input[Optional[str]] = None,
page: pulumi.Input[Optional[int]] = None,
select: pulumi.Input[Optional[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetIamEntitiesV2Result]func GetIamEntitiesV2(ctx *Context, args *GetIamEntitiesV2Args, opts ...InvokeOption) (*GetIamEntitiesV2Result, error)
func GetIamEntitiesV2Output(ctx *Context, args *GetIamEntitiesV2OutputArgs, opts ...InvokeOption) GetIamEntitiesV2ResultOutput> Note: This function is named GetIamEntitiesV2 in the Go SDK.
public static class GetIamEntitiesV2
{
public static Task<GetIamEntitiesV2Result> InvokeAsync(GetIamEntitiesV2Args args, InvokeOptions? opts = null)
public static Output<GetIamEntitiesV2Result> Invoke(GetIamEntitiesV2InvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetIamEntitiesV2Result> getIamEntitiesV2(GetIamEntitiesV2Args args, InvokeOptions options)
public static Output<GetIamEntitiesV2Result> getIamEntitiesV2(GetIamEntitiesV2Args args, InvokeOptions options)
fn::invoke:
function: nutanix:index/getIamEntitiesV2:getIamEntitiesV2
arguments:
# arguments dictionarydata "nutanix_getiamentitiesv2" "name" {
# arguments
}The following arguments are supported:
- Filter string
- OData filter expression. The filter can be applied to the following fields:
createdBy- Filter by creator (user or service ext_id).createdTime- Filter by creation time (ISO 8601 format).displayName- Filter by display name.extId- Filter by entity external identifier.lastUpdatedTime- Filter by last updated time (ISO 8601 format).
- Limit int
- Number of records to return. Must be between 1 and 100. Default is 50.
- Order
By string - OData orderby expression. The orderby can be applied to the following fields:
createdTime- Sort by creation time (ISO 8601 format).displayName- Sort by display name.extId- Sort by entity external identifier.lastUpdatedTime- Sort by last updated time (ISO 8601 format).
- Page int
- Page number of the result set (0-based). Must be between 0 and the maximum number of pages.
- Select string
- OData select expression. The select can be applied to the following fields:
clientName- Select by client name.createdBy- Select by creator (user or service ext_id).createdTime- Select by creation time (ISO 8601 format).
- Filter string
- OData filter expression. The filter can be applied to the following fields:
createdBy- Filter by creator (user or service ext_id).createdTime- Filter by creation time (ISO 8601 format).displayName- Filter by display name.extId- Filter by entity external identifier.lastUpdatedTime- Filter by last updated time (ISO 8601 format).
- Limit int
- Number of records to return. Must be between 1 and 100. Default is 50.
- Order
By string - OData orderby expression. The orderby can be applied to the following fields:
createdTime- Sort by creation time (ISO 8601 format).displayName- Sort by display name.extId- Sort by entity external identifier.lastUpdatedTime- Sort by last updated time (ISO 8601 format).
- Page int
- Page number of the result set (0-based). Must be between 0 and the maximum number of pages.
- Select string
- OData select expression. The select can be applied to the following fields:
clientName- Select by client name.createdBy- Select by creator (user or service ext_id).createdTime- Select by creation time (ISO 8601 format).
- filter string
- OData filter expression. The filter can be applied to the following fields:
createdBy- Filter by creator (user or service ext_id).createdTime- Filter by creation time (ISO 8601 format).displayName- Filter by display name.extId- Filter by entity external identifier.lastUpdatedTime- Filter by last updated time (ISO 8601 format).
- limit number
- Number of records to return. Must be between 1 and 100. Default is 50.
- order_
by string - OData orderby expression. The orderby can be applied to the following fields:
createdTime- Sort by creation time (ISO 8601 format).displayName- Sort by display name.extId- Sort by entity external identifier.lastUpdatedTime- Sort by last updated time (ISO 8601 format).
- page number
- Page number of the result set (0-based). Must be between 0 and the maximum number of pages.
- select string
- OData select expression. The select can be applied to the following fields:
clientName- Select by client name.createdBy- Select by creator (user or service ext_id).createdTime- Select by creation time (ISO 8601 format).
- filter String
- OData filter expression. The filter can be applied to the following fields:
createdBy- Filter by creator (user or service ext_id).createdTime- Filter by creation time (ISO 8601 format).displayName- Filter by display name.extId- Filter by entity external identifier.lastUpdatedTime- Filter by last updated time (ISO 8601 format).
- limit Integer
- Number of records to return. Must be between 1 and 100. Default is 50.
- order
By String - OData orderby expression. The orderby can be applied to the following fields:
createdTime- Sort by creation time (ISO 8601 format).displayName- Sort by display name.extId- Sort by entity external identifier.lastUpdatedTime- Sort by last updated time (ISO 8601 format).
- page Integer
- Page number of the result set (0-based). Must be between 0 and the maximum number of pages.
- select String
- OData select expression. The select can be applied to the following fields:
clientName- Select by client name.createdBy- Select by creator (user or service ext_id).createdTime- Select by creation time (ISO 8601 format).
- filter string
- OData filter expression. The filter can be applied to the following fields:
createdBy- Filter by creator (user or service ext_id).createdTime- Filter by creation time (ISO 8601 format).displayName- Filter by display name.extId- Filter by entity external identifier.lastUpdatedTime- Filter by last updated time (ISO 8601 format).
- limit number
- Number of records to return. Must be between 1 and 100. Default is 50.
- order
By string - OData orderby expression. The orderby can be applied to the following fields:
createdTime- Sort by creation time (ISO 8601 format).displayName- Sort by display name.extId- Sort by entity external identifier.lastUpdatedTime- Sort by last updated time (ISO 8601 format).
- page number
- Page number of the result set (0-based). Must be between 0 and the maximum number of pages.
- select string
- OData select expression. The select can be applied to the following fields:
clientName- Select by client name.createdBy- Select by creator (user or service ext_id).createdTime- Select by creation time (ISO 8601 format).
- filter str
- OData filter expression. The filter can be applied to the following fields:
createdBy- Filter by creator (user or service ext_id).createdTime- Filter by creation time (ISO 8601 format).displayName- Filter by display name.extId- Filter by entity external identifier.lastUpdatedTime- Filter by last updated time (ISO 8601 format).
- limit int
- Number of records to return. Must be between 1 and 100. Default is 50.
- order_
by str - OData orderby expression. The orderby can be applied to the following fields:
createdTime- Sort by creation time (ISO 8601 format).displayName- Sort by display name.extId- Sort by entity external identifier.lastUpdatedTime- Sort by last updated time (ISO 8601 format).
- page int
- Page number of the result set (0-based). Must be between 0 and the maximum number of pages.
- select str
- OData select expression. The select can be applied to the following fields:
clientName- Select by client name.createdBy- Select by creator (user or service ext_id).createdTime- Select by creation time (ISO 8601 format).
- filter String
- OData filter expression. The filter can be applied to the following fields:
createdBy- Filter by creator (user or service ext_id).createdTime- Filter by creation time (ISO 8601 format).displayName- Filter by display name.extId- Filter by entity external identifier.lastUpdatedTime- Filter by last updated time (ISO 8601 format).
- limit Number
- Number of records to return. Must be between 1 and 100. Default is 50.
- order
By String - OData orderby expression. The orderby can be applied to the following fields:
createdTime- Sort by creation time (ISO 8601 format).displayName- Sort by display name.extId- Sort by entity external identifier.lastUpdatedTime- Sort by last updated time (ISO 8601 format).
- page Number
- Page number of the result set (0-based). Must be between 0 and the maximum number of pages.
- select String
- OData select expression. The select can be applied to the following fields:
clientName- Select by client name.createdBy- Select by creator (user or service ext_id).createdTime- Select by creation time (ISO 8601 format).
getIamEntitiesV2 Result
The following output properties are available:
Supporting Types
GetIamEntitiesV2Entity
- Attribute
Lists List<PiersKarsenbarg. Nutanix. Inputs. Get Iam Entities V2Entity Attribute List> - List of attributes for the Entity (used in authorization policy filters).
- Client
Name string - Client that created the entity.
- Created
By string - User or Service that created the Entity.
- Created
Time string - Creation time of the Entity.
- Description string
- Description of the Entity.
- Display
Name string - Display name of the entity's attribute.
- Ext
Id string - External identifier of the attribute.
- Is
Logical boolAnd Supported For Attributes - Whether logical AND is supported for attributes. Indicates whether the entity supports scoping using multiple attributes which will result in a logical AND.
- Last
Updated stringTime - Last updated time of the Entity.
- Links
List<Piers
Karsenbarg. Nutanix. Inputs. Get Iam Entities V2Entity Link> - HATEOAS links for the attribute (each with
hrefandrel). - Name string
- Name of the entity's attribute used in Authorization Policy filters.
- Search
Url string - Search URL for the Entity. URL provided by the client to search the entities.
- Tenant
Id string - Tenant identifier for the attribute.
- Attribute
Lists []GetIam Entities V2Entity Attribute List - List of attributes for the Entity (used in authorization policy filters).
- Client
Name string - Client that created the entity.
- Created
By string - User or Service that created the Entity.
- Created
Time string - Creation time of the Entity.
- Description string
- Description of the Entity.
- Display
Name string - Display name of the entity's attribute.
- Ext
Id string - External identifier of the attribute.
- Is
Logical boolAnd Supported For Attributes - Whether logical AND is supported for attributes. Indicates whether the entity supports scoping using multiple attributes which will result in a logical AND.
- Last
Updated stringTime - Last updated time of the Entity.
- Links
[]Get
Iam Entities V2Entity Link - HATEOAS links for the attribute (each with
hrefandrel). - Name string
- Name of the entity's attribute used in Authorization Policy filters.
- Search
Url string - Search URL for the Entity. URL provided by the client to search the entities.
- Tenant
Id string - Tenant identifier for the attribute.
- attribute_
lists list(object) - List of attributes for the Entity (used in authorization policy filters).
- client_
name string - Client that created the entity.
- created_
by string - User or Service that created the Entity.
- created_
time string - Creation time of the Entity.
- description string
- Description of the Entity.
- display_
name string - Display name of the entity's attribute.
- ext_
id string - External identifier of the attribute.
- is_
logical_ booland_ supported_ for_ attributes - Whether logical AND is supported for attributes. Indicates whether the entity supports scoping using multiple attributes which will result in a logical AND.
- last_
updated_ stringtime - Last updated time of the Entity.
- links list(object)
- HATEOAS links for the attribute (each with
hrefandrel). - name string
- Name of the entity's attribute used in Authorization Policy filters.
- search_
url string - Search URL for the Entity. URL provided by the client to search the entities.
- tenant_
id string - Tenant identifier for the attribute.
- attribute
Lists List<GetIam Entities V2Entity Attribute List> - List of attributes for the Entity (used in authorization policy filters).
- client
Name String - Client that created the entity.
- created
By String - User or Service that created the Entity.
- created
Time String - Creation time of the Entity.
- description String
- Description of the Entity.
- display
Name String - Display name of the entity's attribute.
- ext
Id String - External identifier of the attribute.
- is
Logical BooleanAnd Supported For Attributes - Whether logical AND is supported for attributes. Indicates whether the entity supports scoping using multiple attributes which will result in a logical AND.
- last
Updated StringTime - Last updated time of the Entity.
- links
List<Get
Iam Entities V2Entity Link> - HATEOAS links for the attribute (each with
hrefandrel). - name String
- Name of the entity's attribute used in Authorization Policy filters.
- search
Url String - Search URL for the Entity. URL provided by the client to search the entities.
- tenant
Id String - Tenant identifier for the attribute.
- attribute
Lists GetIam Entities V2Entity Attribute List[] - List of attributes for the Entity (used in authorization policy filters).
- client
Name string - Client that created the entity.
- created
By string - User or Service that created the Entity.
- created
Time string - Creation time of the Entity.
- description string
- Description of the Entity.
- display
Name string - Display name of the entity's attribute.
- ext
Id string - External identifier of the attribute.
- is
Logical booleanAnd Supported For Attributes - Whether logical AND is supported for attributes. Indicates whether the entity supports scoping using multiple attributes which will result in a logical AND.
- last
Updated stringTime - Last updated time of the Entity.
- links
Get
Iam Entities V2Entity Link[] - HATEOAS links for the attribute (each with
hrefandrel). - name string
- Name of the entity's attribute used in Authorization Policy filters.
- search
Url string - Search URL for the Entity. URL provided by the client to search the entities.
- tenant
Id string - Tenant identifier for the attribute.
- attribute_
lists Sequence[GetIam Entities V2Entity Attribute List] - List of attributes for the Entity (used in authorization policy filters).
- client_
name str - Client that created the entity.
- created_
by str - User or Service that created the Entity.
- created_
time str - Creation time of the Entity.
- description str
- Description of the Entity.
- display_
name str - Display name of the entity's attribute.
- ext_
id str - External identifier of the attribute.
- is_
logical_ booland_ supported_ for_ attributes - Whether logical AND is supported for attributes. Indicates whether the entity supports scoping using multiple attributes which will result in a logical AND.
- last_
updated_ strtime - Last updated time of the Entity.
- links
Sequence[Get
Iam Entities V2Entity Link] - HATEOAS links for the attribute (each with
hrefandrel). - name str
- Name of the entity's attribute used in Authorization Policy filters.
- search_
url str - Search URL for the Entity. URL provided by the client to search the entities.
- tenant_
id str - Tenant identifier for the attribute.
- attribute
Lists List<Property Map> - List of attributes for the Entity (used in authorization policy filters).
- client
Name String - Client that created the entity.
- created
By String - User or Service that created the Entity.
- created
Time String - Creation time of the Entity.
- description String
- Description of the Entity.
- display
Name String - Display name of the entity's attribute.
- ext
Id String - External identifier of the attribute.
- is
Logical BooleanAnd Supported For Attributes - Whether logical AND is supported for attributes. Indicates whether the entity supports scoping using multiple attributes which will result in a logical AND.
- last
Updated StringTime - Last updated time of the Entity.
- links List<Property Map>
- HATEOAS links for the attribute (each with
hrefandrel). - name String
- Name of the entity's attribute used in Authorization Policy filters.
- search
Url String - Search URL for the Entity. URL provided by the client to search the entities.
- tenant
Id String - Tenant identifier for the attribute.
GetIamEntitiesV2EntityAttributeList
- Attribute
Values List<string> - List of attribute values supported for access control.
- Display
Name string - Display name of the entity's attribute.
- Ext
Id string - External identifier of the attribute.
- Links
List<Piers
Karsenbarg. Nutanix. Inputs. Get Iam Entities V2Entity Attribute List Link> - HATEOAS links for the attribute (each with
hrefandrel). - Name string
- Name of the entity's attribute used in Authorization Policy filters.
- Supported
Operators List<string> - List of supported operators for this entity attribute.
- Tenant
Id string - Tenant identifier for the attribute.
- Attribute
Values []string - List of attribute values supported for access control.
- Display
Name string - Display name of the entity's attribute.
- Ext
Id string - External identifier of the attribute.
- Links
[]Get
Iam Entities V2Entity Attribute List Link - HATEOAS links for the attribute (each with
hrefandrel). - Name string
- Name of the entity's attribute used in Authorization Policy filters.
- Supported
Operators []string - List of supported operators for this entity attribute.
- Tenant
Id string - Tenant identifier for the attribute.
- attribute_
values list(string) - List of attribute values supported for access control.
- display_
name string - Display name of the entity's attribute.
- ext_
id string - External identifier of the attribute.
- links list(object)
- HATEOAS links for the attribute (each with
hrefandrel). - name string
- Name of the entity's attribute used in Authorization Policy filters.
- supported_
operators list(string) - List of supported operators for this entity attribute.
- tenant_
id string - Tenant identifier for the attribute.
- attribute
Values List<String> - List of attribute values supported for access control.
- display
Name String - Display name of the entity's attribute.
- ext
Id String - External identifier of the attribute.
- links
List<Get
Iam Entities V2Entity Attribute List Link> - HATEOAS links for the attribute (each with
hrefandrel). - name String
- Name of the entity's attribute used in Authorization Policy filters.
- supported
Operators List<String> - List of supported operators for this entity attribute.
- tenant
Id String - Tenant identifier for the attribute.
- attribute
Values string[] - List of attribute values supported for access control.
- display
Name string - Display name of the entity's attribute.
- ext
Id string - External identifier of the attribute.
- links
Get
Iam Entities V2Entity Attribute List Link[] - HATEOAS links for the attribute (each with
hrefandrel). - name string
- Name of the entity's attribute used in Authorization Policy filters.
- supported
Operators string[] - List of supported operators for this entity attribute.
- tenant
Id string - Tenant identifier for the attribute.
- attribute_
values Sequence[str] - List of attribute values supported for access control.
- display_
name str - Display name of the entity's attribute.
- ext_
id str - External identifier of the attribute.
- links
Sequence[Get
Iam Entities V2Entity Attribute List Link] - HATEOAS links for the attribute (each with
hrefandrel). - name str
- Name of the entity's attribute used in Authorization Policy filters.
- supported_
operators Sequence[str] - List of supported operators for this entity attribute.
- tenant_
id str - Tenant identifier for the attribute.
- attribute
Values List<String> - List of attribute values supported for access control.
- display
Name String - Display name of the entity's attribute.
- ext
Id String - External identifier of the attribute.
- links List<Property Map>
- HATEOAS links for the attribute (each with
hrefandrel). - name String
- Name of the entity's attribute used in Authorization Policy filters.
- supported
Operators List<String> - List of supported operators for this entity attribute.
- tenant
Id String - Tenant identifier for the attribute.
GetIamEntitiesV2EntityAttributeListLink
GetIamEntitiesV2EntityLink
Package Details
- Repository
- nutanix pierskarsenbarg/pulumi-nutanix
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
nutanixTerraform Provider.
Viewing docs for Nutanix v0.16.0
published on Tuesday, May 26, 2026 by Piers Karsenbarg
published on Tuesday, May 26, 2026 by Piers Karsenbarg