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
Retrieves a list of entity groups. Use this data source when you need to list or filter entity groups rather than fetch a single group by extId (use the nutanix.EntityGroupV2 data source for that).
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as nutanix from "@pierskarsenbarg/nutanix";
// List all entity groups
const list = nutanix.getEntityGroupsV2({});
// List entity groups with filter
const filtered = nutanix.getEntityGroupsV2({
filter: "name eq 'my-entity-group'",
});
// List entity groups with limit
const withLimit = nutanix.getEntityGroupsV2({
limit: 10,
});
// List entity groups with filter and limit
const filteredLimit = nutanix.getEntityGroupsV2({
filter: "name eq 'my-entity-group'",
limit: 1,
});
import pulumi
import pulumi_nutanix as nutanix
# List all entity groups
list = nutanix.get_entity_groups_v2()
# List entity groups with filter
filtered = nutanix.get_entity_groups_v2(filter="name eq 'my-entity-group'")
# List entity groups with limit
with_limit = nutanix.get_entity_groups_v2(limit=10)
# List entity groups with filter and limit
filtered_limit = nutanix.get_entity_groups_v2(filter="name eq 'my-entity-group'",
limit=1)
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 entity groups
_, err := nutanix.GetEntityGroupsV2(ctx, &nutanix.GetEntityGroupsV2Args{}, nil)
if err != nil {
return err
}
// List entity groups with filter
_, err = nutanix.GetEntityGroupsV2(ctx, &nutanix.GetEntityGroupsV2Args{
Filter: pulumi.StringRef("name eq 'my-entity-group'"),
}, nil)
if err != nil {
return err
}
// List entity groups with limit
_, err = nutanix.GetEntityGroupsV2(ctx, &nutanix.GetEntityGroupsV2Args{
Limit: pulumi.IntRef(10),
}, nil)
if err != nil {
return err
}
// List entity groups with filter and limit
_, err = nutanix.GetEntityGroupsV2(ctx, &nutanix.GetEntityGroupsV2Args{
Filter: pulumi.StringRef("name eq 'my-entity-group'"),
Limit: pulumi.IntRef(1),
}, 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 entity groups
var list = Nutanix.GetEntityGroupsV2.Invoke();
// List entity groups with filter
var filtered = Nutanix.GetEntityGroupsV2.Invoke(new()
{
Filter = "name eq 'my-entity-group'",
});
// List entity groups with limit
var withLimit = Nutanix.GetEntityGroupsV2.Invoke(new()
{
Limit = 10,
});
// List entity groups with filter and limit
var filteredLimit = Nutanix.GetEntityGroupsV2.Invoke(new()
{
Filter = "name eq 'my-entity-group'",
Limit = 1,
});
});
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.GetEntityGroupsV2Args;
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 entity groups
final var list = NutanixFunctions.getEntityGroupsV2(GetEntityGroupsV2Args.builder()
.build());
// List entity groups with filter
final var filtered = NutanixFunctions.getEntityGroupsV2(GetEntityGroupsV2Args.builder()
.filter("name eq 'my-entity-group'")
.build());
// List entity groups with limit
final var withLimit = NutanixFunctions.getEntityGroupsV2(GetEntityGroupsV2Args.builder()
.limit(10)
.build());
// List entity groups with filter and limit
final var filteredLimit = NutanixFunctions.getEntityGroupsV2(GetEntityGroupsV2Args.builder()
.filter("name eq 'my-entity-group'")
.limit(1)
.build());
}
}
variables:
# List all entity groups
list:
fn::invoke:
function: nutanix:getEntityGroupsV2
arguments: {}
# List entity groups with filter
filtered:
fn::invoke:
function: nutanix:getEntityGroupsV2
arguments:
filter: name eq 'my-entity-group'
# List entity groups with limit
withLimit:
fn::invoke:
function: nutanix:getEntityGroupsV2
arguments:
limit: 10
# List entity groups with filter and limit
filteredLimit:
fn::invoke:
function: nutanix:getEntityGroupsV2
arguments:
filter: name eq 'my-entity-group'
limit: 1
pulumi {
required_providers {
nutanix = {
source = "pulumi/nutanix"
}
}
}
data "nutanix_getentitygroupsv2" "list" {
}
data "nutanix_getentitygroupsv2" "filtered" {
filter = "name eq 'my-entity-group'"
}
data "nutanix_getentitygroupsv2" "withLimit" {
limit = 10
}
data "nutanix_getentitygroupsv2" "filteredLimit" {
filter = "name eq 'my-entity-group'"
limit = 1
}
# List all entity groups
# List entity groups with filter
# List entity groups with limit
# List entity groups with filter and limit
Using getEntityGroupsV2
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 getEntityGroupsV2(args: GetEntityGroupsV2Args, opts?: InvokeOptions): Promise<GetEntityGroupsV2Result>
function getEntityGroupsV2Output(args: GetEntityGroupsV2OutputArgs, opts?: InvokeOptions): Output<GetEntityGroupsV2Result>def get_entity_groups_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) -> GetEntityGroupsV2Result
def get_entity_groups_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[GetEntityGroupsV2Result]func GetEntityGroupsV2(ctx *Context, args *GetEntityGroupsV2Args, opts ...InvokeOption) (*GetEntityGroupsV2Result, error)
func GetEntityGroupsV2Output(ctx *Context, args *GetEntityGroupsV2OutputArgs, opts ...InvokeOption) GetEntityGroupsV2ResultOutput> Note: This function is named GetEntityGroupsV2 in the Go SDK.
public static class GetEntityGroupsV2
{
public static Task<GetEntityGroupsV2Result> InvokeAsync(GetEntityGroupsV2Args args, InvokeOptions? opts = null)
public static Output<GetEntityGroupsV2Result> Invoke(GetEntityGroupsV2InvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetEntityGroupsV2Result> getEntityGroupsV2(GetEntityGroupsV2Args args, InvokeOptions options)
public static Output<GetEntityGroupsV2Result> getEntityGroupsV2(GetEntityGroupsV2Args args, InvokeOptions options)
fn::invoke:
function: nutanix:index/getEntityGroupsV2:getEntityGroupsV2
arguments:
# arguments dictionarydata "nutanix_getentitygroupsv2" "name" {
# arguments
}The following arguments are supported:
- Filter string
- A URL query parameter that allows clients to filter a collection of resources. The expression must conform to OData V4.01 URL conventions. The filter can be applied to the following fields:
- Limit int
- A URL query parameter that specifies the total number of records returned in the result set. Must be a positive integer between 1 and 100. Any number out of this range will lead to a validation error. If the limit is not provided, a default value of 50 records will be returned in the result set.
- Order
By string - A URL query parameter that allows clients to specify the sort criteria for the returned list of objects. Resources can be sorted in ascending order using asc or descending order using desc. If asc or desc are not specified, the resources will be sorted in ascending order by default. The orderby can be applied to the following fields:
- Page int
- A URL query parameter that specifies the page number of the result set. It must be a positive integer between 0 and the maximum number of pages that are available for that resource. Any number out of this range might lead to no results.
- Select string
- A URL query parameter that allows clients to request a specific set of properties for each entity or complex type. Expression specified with the $select must conform to the OData V4.01 URL conventions.
- Filter string
- A URL query parameter that allows clients to filter a collection of resources. The expression must conform to OData V4.01 URL conventions. The filter can be applied to the following fields:
- Limit int
- A URL query parameter that specifies the total number of records returned in the result set. Must be a positive integer between 1 and 100. Any number out of this range will lead to a validation error. If the limit is not provided, a default value of 50 records will be returned in the result set.
- Order
By string - A URL query parameter that allows clients to specify the sort criteria for the returned list of objects. Resources can be sorted in ascending order using asc or descending order using desc. If asc or desc are not specified, the resources will be sorted in ascending order by default. The orderby can be applied to the following fields:
- Page int
- A URL query parameter that specifies the page number of the result set. It must be a positive integer between 0 and the maximum number of pages that are available for that resource. Any number out of this range might lead to no results.
- Select string
- A URL query parameter that allows clients to request a specific set of properties for each entity or complex type. Expression specified with the $select must conform to the OData V4.01 URL conventions.
- filter string
- A URL query parameter that allows clients to filter a collection of resources. The expression must conform to OData V4.01 URL conventions. The filter can be applied to the following fields:
- limit number
- A URL query parameter that specifies the total number of records returned in the result set. Must be a positive integer between 1 and 100. Any number out of this range will lead to a validation error. If the limit is not provided, a default value of 50 records will be returned in the result set.
- order_
by string - A URL query parameter that allows clients to specify the sort criteria for the returned list of objects. Resources can be sorted in ascending order using asc or descending order using desc. If asc or desc are not specified, the resources will be sorted in ascending order by default. The orderby can be applied to the following fields:
- page number
- A URL query parameter that specifies the page number of the result set. It must be a positive integer between 0 and the maximum number of pages that are available for that resource. Any number out of this range might lead to no results.
- select string
- A URL query parameter that allows clients to request a specific set of properties for each entity or complex type. Expression specified with the $select must conform to the OData V4.01 URL conventions.
- filter String
- A URL query parameter that allows clients to filter a collection of resources. The expression must conform to OData V4.01 URL conventions. The filter can be applied to the following fields:
- limit Integer
- A URL query parameter that specifies the total number of records returned in the result set. Must be a positive integer between 1 and 100. Any number out of this range will lead to a validation error. If the limit is not provided, a default value of 50 records will be returned in the result set.
- order
By String - A URL query parameter that allows clients to specify the sort criteria for the returned list of objects. Resources can be sorted in ascending order using asc or descending order using desc. If asc or desc are not specified, the resources will be sorted in ascending order by default. The orderby can be applied to the following fields:
- page Integer
- A URL query parameter that specifies the page number of the result set. It must be a positive integer between 0 and the maximum number of pages that are available for that resource. Any number out of this range might lead to no results.
- select String
- A URL query parameter that allows clients to request a specific set of properties for each entity or complex type. Expression specified with the $select must conform to the OData V4.01 URL conventions.
- filter string
- A URL query parameter that allows clients to filter a collection of resources. The expression must conform to OData V4.01 URL conventions. The filter can be applied to the following fields:
- limit number
- A URL query parameter that specifies the total number of records returned in the result set. Must be a positive integer between 1 and 100. Any number out of this range will lead to a validation error. If the limit is not provided, a default value of 50 records will be returned in the result set.
- order
By string - A URL query parameter that allows clients to specify the sort criteria for the returned list of objects. Resources can be sorted in ascending order using asc or descending order using desc. If asc or desc are not specified, the resources will be sorted in ascending order by default. The orderby can be applied to the following fields:
- page number
- A URL query parameter that specifies the page number of the result set. It must be a positive integer between 0 and the maximum number of pages that are available for that resource. Any number out of this range might lead to no results.
- select string
- A URL query parameter that allows clients to request a specific set of properties for each entity or complex type. Expression specified with the $select must conform to the OData V4.01 URL conventions.
- filter str
- A URL query parameter that allows clients to filter a collection of resources. The expression must conform to OData V4.01 URL conventions. The filter can be applied to the following fields:
- limit int
- A URL query parameter that specifies the total number of records returned in the result set. Must be a positive integer between 1 and 100. Any number out of this range will lead to a validation error. If the limit is not provided, a default value of 50 records will be returned in the result set.
- order_
by str - A URL query parameter that allows clients to specify the sort criteria for the returned list of objects. Resources can be sorted in ascending order using asc or descending order using desc. If asc or desc are not specified, the resources will be sorted in ascending order by default. The orderby can be applied to the following fields:
- page int
- A URL query parameter that specifies the page number of the result set. It must be a positive integer between 0 and the maximum number of pages that are available for that resource. Any number out of this range might lead to no results.
- select str
- A URL query parameter that allows clients to request a specific set of properties for each entity or complex type. Expression specified with the $select must conform to the OData V4.01 URL conventions.
- filter String
- A URL query parameter that allows clients to filter a collection of resources. The expression must conform to OData V4.01 URL conventions. The filter can be applied to the following fields:
- limit Number
- A URL query parameter that specifies the total number of records returned in the result set. Must be a positive integer between 1 and 100. Any number out of this range will lead to a validation error. If the limit is not provided, a default value of 50 records will be returned in the result set.
- order
By String - A URL query parameter that allows clients to specify the sort criteria for the returned list of objects. Resources can be sorted in ascending order using asc or descending order using desc. If asc or desc are not specified, the resources will be sorted in ascending order by default. The orderby can be applied to the following fields:
- page Number
- A URL query parameter that specifies the page number of the result set. It must be a positive integer between 0 and the maximum number of pages that are available for that resource. Any number out of this range might lead to no results.
- select String
- A URL query parameter that allows clients to request a specific set of properties for each entity or complex type. Expression specified with the $select must conform to the OData V4.01 URL conventions.
getEntityGroupsV2 Result
The following output properties are available:
- Entity
Groups List<PiersKarsenbarg. Nutanix. Outputs. Get Entity Groups V2Entity Group> - List of entity groups.
- Id string
- The provider-assigned unique ID for this managed resource.
- Filter string
- Limit int
- Order
By string - Page int
- Select string
- Entity
Groups []GetEntity Groups V2Entity Group - List of entity groups.
- Id string
- The provider-assigned unique ID for this managed resource.
- Filter string
- Limit int
- Order
By string - Page int
- Select string
- entity_
groups list(object) - List of entity groups.
- id string
- The provider-assigned unique ID for this managed resource.
- filter string
- limit number
- order_
by string - page number
- select string
- entity
Groups List<GetEntity Groups V2Entity Group> - List of entity groups.
- id String
- The provider-assigned unique ID for this managed resource.
- filter String
- limit Integer
- order
By String - page Integer
- select String
- entity
Groups GetEntity Groups V2Entity Group[] - List of entity groups.
- id string
- The provider-assigned unique ID for this managed resource.
- filter string
- limit number
- order
By string - page number
- select string
- entity_
groups Sequence[GetEntity Groups V2Entity Group] - List of entity groups.
- id str
- The provider-assigned unique ID for this managed resource.
- filter str
- limit int
- order_
by str - page int
- select str
- entity
Groups List<Property Map> - List of entity groups.
- id String
- The provider-assigned unique ID for this managed resource.
- filter String
- limit Number
- order
By String - page Number
- select String
Supporting Types
GetEntityGroupsV2EntityGroup
- Allowed
Configs List<PiersKarsenbarg. Nutanix. Inputs. Get Entity Groups V2Entity Group Allowed Config> - Configuration of the allowed entities in the Entity Group.
- Creation
Time string - The timestamp when the Entity Group was created.
- Description string
- A user defined annotation for an Entity Group.
- Except
Configs List<PiersKarsenbarg. Nutanix. Inputs. Get Entity Groups V2Entity Group Except Config> - Configuration of except entities in the Entity Group.
- Ext
Id string - A globally unique identifier (UUID) of the entity group.
- Last
Update stringTime - The timestamp when the Entity Group was last updated.
- Links
List<Piers
Karsenbarg. Nutanix. Inputs. Get Entity Groups V2Entity Group Link> - A HATEOAS style link for the response.
- Name string
- A short identifier of the Entity Group.
- Owner
Ext stringId - The external identifier of the user who created the Entity Group.
- Policy
Ext List<string>Ids - List of policy external identifiers associated with the entity group.
- Tenant
Id string - A globally unique identifier that represents the tenant that owns this entity.
- Allowed
Configs []GetEntity Groups V2Entity Group Allowed Config - Configuration of the allowed entities in the Entity Group.
- Creation
Time string - The timestamp when the Entity Group was created.
- Description string
- A user defined annotation for an Entity Group.
- Except
Configs []GetEntity Groups V2Entity Group Except Config - Configuration of except entities in the Entity Group.
- Ext
Id string - A globally unique identifier (UUID) of the entity group.
- Last
Update stringTime - The timestamp when the Entity Group was last updated.
- Links
[]Get
Entity Groups V2Entity Group Link - A HATEOAS style link for the response.
- Name string
- A short identifier of the Entity Group.
- Owner
Ext stringId - The external identifier of the user who created the Entity Group.
- Policy
Ext []stringIds - List of policy external identifiers associated with the entity group.
- Tenant
Id string - A globally unique identifier that represents the tenant that owns this entity.
- allowed_
configs list(object) - Configuration of the allowed entities in the Entity Group.
- creation_
time string - The timestamp when the Entity Group was created.
- description string
- A user defined annotation for an Entity Group.
- except_
configs list(object) - Configuration of except entities in the Entity Group.
- ext_
id string - A globally unique identifier (UUID) of the entity group.
- last_
update_ stringtime - The timestamp when the Entity Group was last updated.
- links list(object)
- A HATEOAS style link for the response.
- name string
- A short identifier of the Entity Group.
- owner_
ext_ stringid - The external identifier of the user who created the Entity Group.
- policy_
ext_ list(string)ids - List of policy external identifiers associated with the entity group.
- tenant_
id string - A globally unique identifier that represents the tenant that owns this entity.
- allowed
Configs List<GetEntity Groups V2Entity Group Allowed Config> - Configuration of the allowed entities in the Entity Group.
- creation
Time String - The timestamp when the Entity Group was created.
- description String
- A user defined annotation for an Entity Group.
- except
Configs List<GetEntity Groups V2Entity Group Except Config> - Configuration of except entities in the Entity Group.
- ext
Id String - A globally unique identifier (UUID) of the entity group.
- last
Update StringTime - The timestamp when the Entity Group was last updated.
- links
List<Get
Entity Groups V2Entity Group Link> - A HATEOAS style link for the response.
- name String
- A short identifier of the Entity Group.
- owner
Ext StringId - The external identifier of the user who created the Entity Group.
- policy
Ext List<String>Ids - List of policy external identifiers associated with the entity group.
- tenant
Id String - A globally unique identifier that represents the tenant that owns this entity.
- allowed
Configs GetEntity Groups V2Entity Group Allowed Config[] - Configuration of the allowed entities in the Entity Group.
- creation
Time string - The timestamp when the Entity Group was created.
- description string
- A user defined annotation for an Entity Group.
- except
Configs GetEntity Groups V2Entity Group Except Config[] - Configuration of except entities in the Entity Group.
- ext
Id string - A globally unique identifier (UUID) of the entity group.
- last
Update stringTime - The timestamp when the Entity Group was last updated.
- links
Get
Entity Groups V2Entity Group Link[] - A HATEOAS style link for the response.
- name string
- A short identifier of the Entity Group.
- owner
Ext stringId - The external identifier of the user who created the Entity Group.
- policy
Ext string[]Ids - List of policy external identifiers associated with the entity group.
- tenant
Id string - A globally unique identifier that represents the tenant that owns this entity.
- allowed_
configs Sequence[GetEntity Groups V2Entity Group Allowed Config] - Configuration of the allowed entities in the Entity Group.
- creation_
time str - The timestamp when the Entity Group was created.
- description str
- A user defined annotation for an Entity Group.
- except_
configs Sequence[GetEntity Groups V2Entity Group Except Config] - Configuration of except entities in the Entity Group.
- ext_
id str - A globally unique identifier (UUID) of the entity group.
- last_
update_ strtime - The timestamp when the Entity Group was last updated.
- links
Sequence[Get
Entity Groups V2Entity Group Link] - A HATEOAS style link for the response.
- name str
- A short identifier of the Entity Group.
- owner_
ext_ strid - The external identifier of the user who created the Entity Group.
- policy_
ext_ Sequence[str]ids - List of policy external identifiers associated with the entity group.
- tenant_
id str - A globally unique identifier that represents the tenant that owns this entity.
- allowed
Configs List<Property Map> - Configuration of the allowed entities in the Entity Group.
- creation
Time String - The timestamp when the Entity Group was created.
- description String
- A user defined annotation for an Entity Group.
- except
Configs List<Property Map> - Configuration of except entities in the Entity Group.
- ext
Id String - A globally unique identifier (UUID) of the entity group.
- last
Update StringTime - The timestamp when the Entity Group was last updated.
- links List<Property Map>
- A HATEOAS style link for the response.
- name String
- A short identifier of the Entity Group.
- owner
Ext StringId - The external identifier of the user who created the Entity Group.
- policy
Ext List<String>Ids - List of policy external identifiers associated with the entity group.
- tenant
Id String - A globally unique identifier that represents the tenant that owns this entity.
GetEntityGroupsV2EntityGroupAllowedConfig
- Entities
List<Piers
Karsenbarg. Nutanix. Inputs. Get Entity Groups V2Entity Group Allowed Config Entity> - List of except entities. Each entity may contain
addresses,ipRanges,referenceExtIds.
- Entities
[]Get
Entity Groups V2Entity Group Allowed Config Entity - List of except entities. Each entity may contain
addresses,ipRanges,referenceExtIds.
- entities list(object)
- List of except entities. Each entity may contain
addresses,ipRanges,referenceExtIds.
- entities
List<Get
Entity Groups V2Entity Group Allowed Config Entity> - List of except entities. Each entity may contain
addresses,ipRanges,referenceExtIds.
- entities
Get
Entity Groups V2Entity Group Allowed Config Entity[] - List of except entities. Each entity may contain
addresses,ipRanges,referenceExtIds.
- entities
Sequence[Get
Entity Groups V2Entity Group Allowed Config Entity] - List of except entities. Each entity may contain
addresses,ipRanges,referenceExtIds.
- entities List<Property Map>
- List of except entities. Each entity may contain
addresses,ipRanges,referenceExtIds.
GetEntityGroupsV2EntityGroupAllowedConfigEntity
- addresses list(object)
- ip_
ranges list(object) - kube_
entities list(string) - reference_
ext_ list(string)ids - selected_
by string - type string
- addresses List<Property Map>
- ip
Ranges List<Property Map> - kube
Entities List<String> - reference
Ext List<String>Ids - selected
By String - type String
GetEntityGroupsV2EntityGroupAllowedConfigEntityAddress
GetEntityGroupsV2EntityGroupAllowedConfigEntityAddressIpv4Address
- Prefix
Length int - Value string
- Prefix
Length int - Value string
- prefix_
length number - value string
- prefix
Length Integer - value String
- prefix
Length number - value string
- prefix_
length int - value str
- prefix
Length Number - value String
GetEntityGroupsV2EntityGroupAllowedConfigEntityIpRange
GetEntityGroupsV2EntityGroupAllowedConfigEntityIpRangeIpv4Range
GetEntityGroupsV2EntityGroupExceptConfig
- Entities
List<Piers
Karsenbarg. Nutanix. Inputs. Get Entity Groups V2Entity Group Except Config Entity> - List of except entities. Each entity may contain
addresses,ipRanges,referenceExtIds.
- Entities
[]Get
Entity Groups V2Entity Group Except Config Entity - List of except entities. Each entity may contain
addresses,ipRanges,referenceExtIds.
- entities list(object)
- List of except entities. Each entity may contain
addresses,ipRanges,referenceExtIds.
- entities
List<Get
Entity Groups V2Entity Group Except Config Entity> - List of except entities. Each entity may contain
addresses,ipRanges,referenceExtIds.
- entities
Get
Entity Groups V2Entity Group Except Config Entity[] - List of except entities. Each entity may contain
addresses,ipRanges,referenceExtIds.
- entities
Sequence[Get
Entity Groups V2Entity Group Except Config Entity] - List of except entities. Each entity may contain
addresses,ipRanges,referenceExtIds.
- entities List<Property Map>
- List of except entities. Each entity may contain
addresses,ipRanges,referenceExtIds.
GetEntityGroupsV2EntityGroupExceptConfigEntity
- addresses list(object)
- ip_
ranges list(object) - reference_
ext_ list(string)ids - selected_
by string - type string
- addresses List<Property Map>
- ip
Ranges List<Property Map> - reference
Ext List<String>Ids - selected
By String - type String
GetEntityGroupsV2EntityGroupExceptConfigEntityAddress
GetEntityGroupsV2EntityGroupExceptConfigEntityAddressIpv4Address
- Prefix
Length int - Value string
- Prefix
Length int - Value string
- prefix_
length number - value string
- prefix
Length Integer - value String
- prefix
Length number - value string
- prefix_
length int - value str
- prefix
Length Number - value String
GetEntityGroupsV2EntityGroupExceptConfigEntityIpRange
GetEntityGroupsV2EntityGroupExceptConfigEntityIpRangeIpv4Range
GetEntityGroupsV2EntityGroupLink
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