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
List VM-VM Anti-Affinity policies details with support for pagination, filtering, and sorting.
Example
import * as pulumi from "@pulumi/pulumi";
import * as nutanix from "@pierskarsenbarg/nutanix";
// List all VM-VM Anti-Affinity policies
const allPolicies = nutanix.getVmAntiAffinityPoliciesV2({});
// List with pagination
const paginatedPolicies = nutanix.getVmAntiAffinityPoliciesV2({
page: 0,
limit: 10,
});
// List with filtering
const filteredPolicies = nutanix.getVmAntiAffinityPoliciesV2({
filter: "name eq 'my-policy'",
});
// List with ordering
const sortedPolicies = nutanix.getVmAntiAffinityPoliciesV2({
orderBy: "name asc",
});
// List with multiple filters
const complexPolicies = nutanix.getVmAntiAffinityPoliciesV2({
filter: "startswith(name, 'ha-')",
orderBy: "create_time desc",
page: 0,
limit: 20,
});
import pulumi
import pulumi_nutanix as nutanix
# List all VM-VM Anti-Affinity policies
all_policies = nutanix.get_vm_anti_affinity_policies_v2()
# List with pagination
paginated_policies = nutanix.get_vm_anti_affinity_policies_v2(page=0,
limit=10)
# List with filtering
filtered_policies = nutanix.get_vm_anti_affinity_policies_v2(filter="name eq 'my-policy'")
# List with ordering
sorted_policies = nutanix.get_vm_anti_affinity_policies_v2(order_by="name asc")
# List with multiple filters
complex_policies = nutanix.get_vm_anti_affinity_policies_v2(filter="startswith(name, 'ha-')",
order_by="create_time desc",
page=0,
limit=20)
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 VM-VM Anti-Affinity policies
_, err := nutanix.GetVmAntiAffinityPoliciesV2(ctx, &nutanix.GetVmAntiAffinityPoliciesV2Args{}, nil)
if err != nil {
return err
}
// List with pagination
_, err = nutanix.GetVmAntiAffinityPoliciesV2(ctx, &nutanix.GetVmAntiAffinityPoliciesV2Args{
Page: pulumi.IntRef(0),
Limit: pulumi.IntRef(10),
}, nil)
if err != nil {
return err
}
// List with filtering
_, err = nutanix.GetVmAntiAffinityPoliciesV2(ctx, &nutanix.GetVmAntiAffinityPoliciesV2Args{
Filter: pulumi.StringRef("name eq 'my-policy'"),
}, nil)
if err != nil {
return err
}
// List with ordering
_, err = nutanix.GetVmAntiAffinityPoliciesV2(ctx, &nutanix.GetVmAntiAffinityPoliciesV2Args{
OrderBy: pulumi.StringRef("name asc"),
}, nil)
if err != nil {
return err
}
// List with multiple filters
_, err = nutanix.GetVmAntiAffinityPoliciesV2(ctx, &nutanix.GetVmAntiAffinityPoliciesV2Args{
Filter: pulumi.StringRef("startswith(name, 'ha-')"),
OrderBy: pulumi.StringRef("create_time desc"),
Page: pulumi.IntRef(0),
Limit: pulumi.IntRef(20),
}, 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 VM-VM Anti-Affinity policies
var allPolicies = Nutanix.GetVmAntiAffinityPoliciesV2.Invoke();
// List with pagination
var paginatedPolicies = Nutanix.GetVmAntiAffinityPoliciesV2.Invoke(new()
{
Page = 0,
Limit = 10,
});
// List with filtering
var filteredPolicies = Nutanix.GetVmAntiAffinityPoliciesV2.Invoke(new()
{
Filter = "name eq 'my-policy'",
});
// List with ordering
var sortedPolicies = Nutanix.GetVmAntiAffinityPoliciesV2.Invoke(new()
{
OrderBy = "name asc",
});
// List with multiple filters
var complexPolicies = Nutanix.GetVmAntiAffinityPoliciesV2.Invoke(new()
{
Filter = "startswith(name, 'ha-')",
OrderBy = "create_time desc",
Page = 0,
Limit = 20,
});
});
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.GetVmAntiAffinityPoliciesV2Args;
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 VM-VM Anti-Affinity policies
final var allPolicies = NutanixFunctions.getVmAntiAffinityPoliciesV2(GetVmAntiAffinityPoliciesV2Args.builder()
.build());
// List with pagination
final var paginatedPolicies = NutanixFunctions.getVmAntiAffinityPoliciesV2(GetVmAntiAffinityPoliciesV2Args.builder()
.page(0)
.limit(10)
.build());
// List with filtering
final var filteredPolicies = NutanixFunctions.getVmAntiAffinityPoliciesV2(GetVmAntiAffinityPoliciesV2Args.builder()
.filter("name eq 'my-policy'")
.build());
// List with ordering
final var sortedPolicies = NutanixFunctions.getVmAntiAffinityPoliciesV2(GetVmAntiAffinityPoliciesV2Args.builder()
.orderBy("name asc")
.build());
// List with multiple filters
final var complexPolicies = NutanixFunctions.getVmAntiAffinityPoliciesV2(GetVmAntiAffinityPoliciesV2Args.builder()
.filter("startswith(name, 'ha-')")
.orderBy("create_time desc")
.page(0)
.limit(20)
.build());
}
}
variables:
# List all VM-VM Anti-Affinity policies
allPolicies:
fn::invoke:
function: nutanix:getVmAntiAffinityPoliciesV2
arguments: {}
# List with pagination
paginatedPolicies:
fn::invoke:
function: nutanix:getVmAntiAffinityPoliciesV2
arguments:
page: 0
limit: 10
# List with filtering
filteredPolicies:
fn::invoke:
function: nutanix:getVmAntiAffinityPoliciesV2
arguments:
filter: name eq 'my-policy'
# List with ordering
sortedPolicies:
fn::invoke:
function: nutanix:getVmAntiAffinityPoliciesV2
arguments:
orderBy: name asc
# List with multiple filters
complexPolicies:
fn::invoke:
function: nutanix:getVmAntiAffinityPoliciesV2
arguments:
filter: startswith(name, 'ha-')
orderBy: create_time desc
page: 0
limit: 20
pulumi {
required_providers {
nutanix = {
source = "pulumi/nutanix"
}
}
}
data "nutanix_getvmantiaffinitypoliciesv2" "allPolicies" {
}
data "nutanix_getvmantiaffinitypoliciesv2" "paginatedPolicies" {
page = 0
limit = 10
}
data "nutanix_getvmantiaffinitypoliciesv2" "filteredPolicies" {
filter = "name eq 'my-policy'"
}
data "nutanix_getvmantiaffinitypoliciesv2" "sortedPolicies" {
order_by = "name asc"
}
data "nutanix_getvmantiaffinitypoliciesv2" "complexPolicies" {
filter = "startswith(name, 'ha-')"
order_by = "create_time desc"
page = 0
limit = 20
}
# List all VM-VM Anti-Affinity policies
# List with pagination
# List with filtering
# List with ordering
# List with multiple filters
Using getVmAntiAffinityPoliciesV2
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 getVmAntiAffinityPoliciesV2(args: GetVmAntiAffinityPoliciesV2Args, opts?: InvokeOptions): Promise<GetVmAntiAffinityPoliciesV2Result>
function getVmAntiAffinityPoliciesV2Output(args: GetVmAntiAffinityPoliciesV2OutputArgs, opts?: InvokeOptions): Output<GetVmAntiAffinityPoliciesV2Result>def get_vm_anti_affinity_policies_v2(filter: Optional[str] = None,
limit: Optional[int] = None,
order_by: Optional[str] = None,
page: Optional[int] = None,
opts: Optional[InvokeOptions] = None) -> GetVmAntiAffinityPoliciesV2Result
def get_vm_anti_affinity_policies_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,
opts: Optional[InvokeOptions] = None) -> Output[GetVmAntiAffinityPoliciesV2Result]func GetVmAntiAffinityPoliciesV2(ctx *Context, args *GetVmAntiAffinityPoliciesV2Args, opts ...InvokeOption) (*GetVmAntiAffinityPoliciesV2Result, error)
func GetVmAntiAffinityPoliciesV2Output(ctx *Context, args *GetVmAntiAffinityPoliciesV2OutputArgs, opts ...InvokeOption) GetVmAntiAffinityPoliciesV2ResultOutput> Note: This function is named GetVmAntiAffinityPoliciesV2 in the Go SDK.
public static class GetVmAntiAffinityPoliciesV2
{
public static Task<GetVmAntiAffinityPoliciesV2Result> InvokeAsync(GetVmAntiAffinityPoliciesV2Args args, InvokeOptions? opts = null)
public static Output<GetVmAntiAffinityPoliciesV2Result> Invoke(GetVmAntiAffinityPoliciesV2InvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetVmAntiAffinityPoliciesV2Result> getVmAntiAffinityPoliciesV2(GetVmAntiAffinityPoliciesV2Args args, InvokeOptions options)
public static Output<GetVmAntiAffinityPoliciesV2Result> getVmAntiAffinityPoliciesV2(GetVmAntiAffinityPoliciesV2Args args, InvokeOptions options)
fn::invoke:
function: nutanix:index/getVmAntiAffinityPoliciesV2:getVmAntiAffinityPoliciesV2
arguments:
# arguments dictionarydata "nutanix_getvmantiaffinitypoliciesv2" "name" {
# arguments
}The following arguments are supported:
- Filter string
- A URL query parameter that allows clients to filter a collection of resources. The expression specified with $filter is evaluated for each resource in the collection, and only items where the expression evaluates to true are included in the response. Expression specified with the $filter must conform to the OData V4.01 URL conventions. For example,
$filter=name eq 'my-policy'would filter the result on policy name 'my-policy',$filter=startswith(name, 'ha-')would filter on policy names starting with 'ha-'. 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
ascor descending order usingdesc. Ifascordescare not specified, the resources will be sorted in ascending order by default. For example,name ascwould sort policies by name in ascending order,updateTime descwould sort by update time in descending order. 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.
- Filter string
- A URL query parameter that allows clients to filter a collection of resources. The expression specified with $filter is evaluated for each resource in the collection, and only items where the expression evaluates to true are included in the response. Expression specified with the $filter must conform to the OData V4.01 URL conventions. For example,
$filter=name eq 'my-policy'would filter the result on policy name 'my-policy',$filter=startswith(name, 'ha-')would filter on policy names starting with 'ha-'. 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
ascor descending order usingdesc. Ifascordescare not specified, the resources will be sorted in ascending order by default. For example,name ascwould sort policies by name in ascending order,updateTime descwould sort by update time in descending order. 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.
- filter string
- A URL query parameter that allows clients to filter a collection of resources. The expression specified with $filter is evaluated for each resource in the collection, and only items where the expression evaluates to true are included in the response. Expression specified with the $filter must conform to the OData V4.01 URL conventions. For example,
$filter=name eq 'my-policy'would filter the result on policy name 'my-policy',$filter=startswith(name, 'ha-')would filter on policy names starting with 'ha-'. 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
ascor descending order usingdesc. Ifascordescare not specified, the resources will be sorted in ascending order by default. For example,name ascwould sort policies by name in ascending order,updateTime descwould sort by update time in descending order. 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.
- filter String
- A URL query parameter that allows clients to filter a collection of resources. The expression specified with $filter is evaluated for each resource in the collection, and only items where the expression evaluates to true are included in the response. Expression specified with the $filter must conform to the OData V4.01 URL conventions. For example,
$filter=name eq 'my-policy'would filter the result on policy name 'my-policy',$filter=startswith(name, 'ha-')would filter on policy names starting with 'ha-'. 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
ascor descending order usingdesc. Ifascordescare not specified, the resources will be sorted in ascending order by default. For example,name ascwould sort policies by name in ascending order,updateTime descwould sort by update time in descending order. 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.
- filter string
- A URL query parameter that allows clients to filter a collection of resources. The expression specified with $filter is evaluated for each resource in the collection, and only items where the expression evaluates to true are included in the response. Expression specified with the $filter must conform to the OData V4.01 URL conventions. For example,
$filter=name eq 'my-policy'would filter the result on policy name 'my-policy',$filter=startswith(name, 'ha-')would filter on policy names starting with 'ha-'. 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
ascor descending order usingdesc. Ifascordescare not specified, the resources will be sorted in ascending order by default. For example,name ascwould sort policies by name in ascending order,updateTime descwould sort by update time in descending order. 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.
- filter str
- A URL query parameter that allows clients to filter a collection of resources. The expression specified with $filter is evaluated for each resource in the collection, and only items where the expression evaluates to true are included in the response. Expression specified with the $filter must conform to the OData V4.01 URL conventions. For example,
$filter=name eq 'my-policy'would filter the result on policy name 'my-policy',$filter=startswith(name, 'ha-')would filter on policy names starting with 'ha-'. 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
ascor descending order usingdesc. Ifascordescare not specified, the resources will be sorted in ascending order by default. For example,name ascwould sort policies by name in ascending order,updateTime descwould sort by update time in descending order. 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.
- filter String
- A URL query parameter that allows clients to filter a collection of resources. The expression specified with $filter is evaluated for each resource in the collection, and only items where the expression evaluates to true are included in the response. Expression specified with the $filter must conform to the OData V4.01 URL conventions. For example,
$filter=name eq 'my-policy'would filter the result on policy name 'my-policy',$filter=startswith(name, 'ha-')would filter on policy names starting with 'ha-'. 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
ascor descending order usingdesc. Ifascordescare not specified, the resources will be sorted in ascending order by default. For example,name ascwould sort policies by name in ascending order,updateTime descwould sort by update time in descending order. 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.
getVmAntiAffinityPoliciesV2 Result
The following output properties are available:
Supporting Types
GetVmAntiAffinityPoliciesV2Policy
- Categories List<string>
- List of VM category external IDs that this policy applies to.
- Create
Time string - The timestamp when the policy was created.
- Created
By Dictionary<string, string> - Information about the entity that created the policy.
- Description string
- A description of the VM-VM Anti-Affinity policy.
- Ext
Id string - The external identifier of the VM-VM Anti-Affinity policy.
- Name string
- The name of the VM-VM Anti-Affinity policy.
- Num
Compliant intVms - Number of compliant VMs which are part of the VM-VM anti-affinity policy.
- Num
Non intCompliant Vms - Number of non-compliant VMs which are part of the VM-VM anti-affinity policy.
- Num
Pending intVms - Number of VMs with compliance state as pending, which are part of the VM-VM anti-affinity policy.
- Update
Time string - The timestamp when the policy was last updated.
- Updated
By Dictionary<string, string> - Information about the entity that last updated the policy.
- Categories []string
- List of VM category external IDs that this policy applies to.
- Create
Time string - The timestamp when the policy was created.
- Created
By map[string]string - Information about the entity that created the policy.
- Description string
- A description of the VM-VM Anti-Affinity policy.
- Ext
Id string - The external identifier of the VM-VM Anti-Affinity policy.
- Name string
- The name of the VM-VM Anti-Affinity policy.
- Num
Compliant intVms - Number of compliant VMs which are part of the VM-VM anti-affinity policy.
- Num
Non intCompliant Vms - Number of non-compliant VMs which are part of the VM-VM anti-affinity policy.
- Num
Pending intVms - Number of VMs with compliance state as pending, which are part of the VM-VM anti-affinity policy.
- Update
Time string - The timestamp when the policy was last updated.
- Updated
By map[string]string - Information about the entity that last updated the policy.
- categories list(string)
- List of VM category external IDs that this policy applies to.
- create_
time string - The timestamp when the policy was created.
- created_
by map(string) - Information about the entity that created the policy.
- description string
- A description of the VM-VM Anti-Affinity policy.
- ext_
id string - The external identifier of the VM-VM Anti-Affinity policy.
- name string
- The name of the VM-VM Anti-Affinity policy.
- num_
compliant_ numbervms - Number of compliant VMs which are part of the VM-VM anti-affinity policy.
- num_
non_ numbercompliant_ vms - Number of non-compliant VMs which are part of the VM-VM anti-affinity policy.
- num_
pending_ numbervms - Number of VMs with compliance state as pending, which are part of the VM-VM anti-affinity policy.
- update_
time string - The timestamp when the policy was last updated.
- updated_
by map(string) - Information about the entity that last updated the policy.
- categories List<String>
- List of VM category external IDs that this policy applies to.
- create
Time String - The timestamp when the policy was created.
- created
By Map<String,String> - Information about the entity that created the policy.
- description String
- A description of the VM-VM Anti-Affinity policy.
- ext
Id String - The external identifier of the VM-VM Anti-Affinity policy.
- name String
- The name of the VM-VM Anti-Affinity policy.
- num
Compliant IntegerVms - Number of compliant VMs which are part of the VM-VM anti-affinity policy.
- num
Non IntegerCompliant Vms - Number of non-compliant VMs which are part of the VM-VM anti-affinity policy.
- num
Pending IntegerVms - Number of VMs with compliance state as pending, which are part of the VM-VM anti-affinity policy.
- update
Time String - The timestamp when the policy was last updated.
- updated
By Map<String,String> - Information about the entity that last updated the policy.
- categories string[]
- List of VM category external IDs that this policy applies to.
- create
Time string - The timestamp when the policy was created.
- created
By {[key: string]: string} - Information about the entity that created the policy.
- description string
- A description of the VM-VM Anti-Affinity policy.
- ext
Id string - The external identifier of the VM-VM Anti-Affinity policy.
- name string
- The name of the VM-VM Anti-Affinity policy.
- num
Compliant numberVms - Number of compliant VMs which are part of the VM-VM anti-affinity policy.
- num
Non numberCompliant Vms - Number of non-compliant VMs which are part of the VM-VM anti-affinity policy.
- num
Pending numberVms - Number of VMs with compliance state as pending, which are part of the VM-VM anti-affinity policy.
- update
Time string - The timestamp when the policy was last updated.
- updated
By {[key: string]: string} - Information about the entity that last updated the policy.
- categories Sequence[str]
- List of VM category external IDs that this policy applies to.
- create_
time str - The timestamp when the policy was created.
- created_
by Mapping[str, str] - Information about the entity that created the policy.
- description str
- A description of the VM-VM Anti-Affinity policy.
- ext_
id str - The external identifier of the VM-VM Anti-Affinity policy.
- name str
- The name of the VM-VM Anti-Affinity policy.
- num_
compliant_ intvms - Number of compliant VMs which are part of the VM-VM anti-affinity policy.
- num_
non_ intcompliant_ vms - Number of non-compliant VMs which are part of the VM-VM anti-affinity policy.
- num_
pending_ intvms - Number of VMs with compliance state as pending, which are part of the VM-VM anti-affinity policy.
- update_
time str - The timestamp when the policy was last updated.
- updated_
by Mapping[str, str] - Information about the entity that last updated the policy.
- categories List<String>
- List of VM category external IDs that this policy applies to.
- create
Time String - The timestamp when the policy was created.
- created
By Map<String> - Information about the entity that created the policy.
- description String
- A description of the VM-VM Anti-Affinity policy.
- ext
Id String - The external identifier of the VM-VM Anti-Affinity policy.
- name String
- The name of the VM-VM Anti-Affinity policy.
- num
Compliant NumberVms - Number of compliant VMs which are part of the VM-VM anti-affinity policy.
- num
Non NumberCompliant Vms - Number of non-compliant VMs which are part of the VM-VM anti-affinity policy.
- num
Pending NumberVms - Number of VMs with compliance state as pending, which are part of the VM-VM anti-affinity policy.
- update
Time String - The timestamp when the policy was last updated.
- updated
By Map<String> - Information about the entity that last updated the policy.
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