Nutanix v0.7.4 published on Friday, Mar 21, 2025 by Piers Karsenbarg
nutanix.getImagePlacementPoliciesV2
Explore with Pulumi AI
List image placement policies details.
Example
import * as pulumi from "@pulumi/pulumi";
import * as nutanix from "@pulumi/nutanix";
const ipp = nutanix.getImagePlacementPoliciesV2({
filter: "startswith(name,'<name-prefix>')",
limit: 10,
page: 0,
});
import pulumi
import pulumi_nutanix as nutanix
ipp = nutanix.get_image_placement_policies_v2(filter="startswith(name,'<name-prefix>')",
limit=10,
page=0)
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.GetImagePlacementPoliciesV2(ctx, &nutanix.GetImagePlacementPoliciesV2Args{
Filter: pulumi.StringRef("startswith(name,'<name-prefix>')"),
Limit: pulumi.IntRef(10),
Page: pulumi.IntRef(0),
}, 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 ipp = Nutanix.GetImagePlacementPoliciesV2.Invoke(new()
{
Filter = "startswith(name,'<name-prefix>')",
Limit = 10,
Page = 0,
});
});
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.GetImagePlacementPoliciesV2Args;
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 ipp = NutanixFunctions.getImagePlacementPoliciesV2(GetImagePlacementPoliciesV2Args.builder()
.filter("startswith(name,'<name-prefix>')")
.limit(10)
.page(0)
.build());
}
}
variables:
ipp:
fn::invoke:
function: nutanix:getImagePlacementPoliciesV2
arguments:
filter: startswith(name,'<name-prefix>')
limit: 10
page: 0
Using getImagePlacementPoliciesV2
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 getImagePlacementPoliciesV2(args: GetImagePlacementPoliciesV2Args, opts?: InvokeOptions): Promise<GetImagePlacementPoliciesV2Result>
function getImagePlacementPoliciesV2Output(args: GetImagePlacementPoliciesV2OutputArgs, opts?: InvokeOptions): Output<GetImagePlacementPoliciesV2Result>
def get_image_placement_policies_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) -> GetImagePlacementPoliciesV2Result
def get_image_placement_policies_v2_output(filter: Optional[pulumi.Input[str]] = None,
limit: Optional[pulumi.Input[int]] = None,
order_by: Optional[pulumi.Input[str]] = None,
page: Optional[pulumi.Input[int]] = None,
select: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetImagePlacementPoliciesV2Result]
func GetImagePlacementPoliciesV2(ctx *Context, args *GetImagePlacementPoliciesV2Args, opts ...InvokeOption) (*GetImagePlacementPoliciesV2Result, error)
func GetImagePlacementPoliciesV2Output(ctx *Context, args *GetImagePlacementPoliciesV2OutputArgs, opts ...InvokeOption) GetImagePlacementPoliciesV2ResultOutput
> Note: This function is named GetImagePlacementPoliciesV2
in the Go SDK.
public static class GetImagePlacementPoliciesV2
{
public static Task<GetImagePlacementPoliciesV2Result> InvokeAsync(GetImagePlacementPoliciesV2Args args, InvokeOptions? opts = null)
public static Output<GetImagePlacementPoliciesV2Result> Invoke(GetImagePlacementPoliciesV2InvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetImagePlacementPoliciesV2Result> getImagePlacementPoliciesV2(GetImagePlacementPoliciesV2Args args, InvokeOptions options)
public static Output<GetImagePlacementPoliciesV2Result> getImagePlacementPoliciesV2(GetImagePlacementPoliciesV2Args args, InvokeOptions options)
fn::invoke:
function: nutanix:index/getImagePlacementPoliciesV2:getImagePlacementPoliciesV2
arguments:
# arguments dictionary
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
- 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
- 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 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
- 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
- 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 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
- 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
- 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 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
- 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
- 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 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
- 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
- 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 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
- 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
- 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.
getImagePlacementPoliciesV2 Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- Placement
Policies List<PiersKarsenbarg. Nutanix. Outputs. Get Image Placement Policies V2Placement Policy> - List of all image placement policies
- Filter string
- Limit int
- Order
By string - Page int
- Select string
- Id string
- The provider-assigned unique ID for this managed resource.
- Placement
Policies []GetImage Placement Policies V2Placement Policy - List of all image placement policies
- Filter string
- Limit int
- Order
By string - Page int
- Select string
- id String
- The provider-assigned unique ID for this managed resource.
- placement
Policies List<GetImage Placement Policies V2Placement Policy> - List of all image placement policies
- filter String
- limit Integer
- order
By String - page Integer
- select String
- id string
- The provider-assigned unique ID for this managed resource.
- placement
Policies GetImage Placement Policies V2Placement Policy[] - List of all image placement policies
- filter string
- limit number
- order
By string - page number
- select string
- id str
- The provider-assigned unique ID for this managed resource.
- placement_
policies Sequence[GetImage Placement Policies V2Placement Policy] - List of all image placement policies
- filter str
- limit int
- order_
by str - page int
- select str
- id String
- The provider-assigned unique ID for this managed resource.
- placement
Policies List<Property Map> - List of all image placement policies
- filter String
- limit Number
- order
By String - page Number
- select String
Supporting Types
GetImagePlacementPoliciesV2PlacementPolicy
- Cluster
Entity List<PiersFilters Karsenbarg. Nutanix. Inputs. Get Image Placement Policies V2Placement Policy Cluster Entity Filter> - (Required) Category-based entity filter.
- Create
Time string - Description string
- (Optional) Description of the image placement policy.
- Enforcement
State string - (Optional) Enforcement status of the image placement policy. Valid values "ACTIVE", "SUSPENDED"
- Ext
Id string - The external identifier of an image placement policy.
- Image
Entity List<PiersFilters Karsenbarg. Nutanix. Inputs. Get Image Placement Policies V2Placement Policy Image Entity Filter> - (Required) Category-based entity filter.
- Last
Update stringTime - Name string
- (Required) Name of the image placement policy.
- Owner
Ext stringId - Placement
Type string - (Required) Type of the image placement policy. Valid values "HARD", "SOFT"
- Cluster
Entity []GetFilters Image Placement Policies V2Placement Policy Cluster Entity Filter - (Required) Category-based entity filter.
- Create
Time string - Description string
- (Optional) Description of the image placement policy.
- Enforcement
State string - (Optional) Enforcement status of the image placement policy. Valid values "ACTIVE", "SUSPENDED"
- Ext
Id string - The external identifier of an image placement policy.
- Image
Entity []GetFilters Image Placement Policies V2Placement Policy Image Entity Filter - (Required) Category-based entity filter.
- Last
Update stringTime - Name string
- (Required) Name of the image placement policy.
- Owner
Ext stringId - Placement
Type string - (Required) Type of the image placement policy. Valid values "HARD", "SOFT"
- cluster
Entity List<GetFilters Image Placement Policies V2Placement Policy Cluster Entity Filter> - (Required) Category-based entity filter.
- create
Time String - description String
- (Optional) Description of the image placement policy.
- enforcement
State String - (Optional) Enforcement status of the image placement policy. Valid values "ACTIVE", "SUSPENDED"
- ext
Id String - The external identifier of an image placement policy.
- image
Entity List<GetFilters Image Placement Policies V2Placement Policy Image Entity Filter> - (Required) Category-based entity filter.
- last
Update StringTime - name String
- (Required) Name of the image placement policy.
- owner
Ext StringId - placement
Type String - (Required) Type of the image placement policy. Valid values "HARD", "SOFT"
- cluster
Entity GetFilters Image Placement Policies V2Placement Policy Cluster Entity Filter[] - (Required) Category-based entity filter.
- create
Time string - description string
- (Optional) Description of the image placement policy.
- enforcement
State string - (Optional) Enforcement status of the image placement policy. Valid values "ACTIVE", "SUSPENDED"
- ext
Id string - The external identifier of an image placement policy.
- image
Entity GetFilters Image Placement Policies V2Placement Policy Image Entity Filter[] - (Required) Category-based entity filter.
- last
Update stringTime - name string
- (Required) Name of the image placement policy.
- owner
Ext stringId - placement
Type string - (Required) Type of the image placement policy. Valid values "HARD", "SOFT"
- cluster_
entity_ Sequence[Getfilters Image Placement Policies V2Placement Policy Cluster Entity Filter] - (Required) Category-based entity filter.
- create_
time str - description str
- (Optional) Description of the image placement policy.
- enforcement_
state str - (Optional) Enforcement status of the image placement policy. Valid values "ACTIVE", "SUSPENDED"
- ext_
id str - The external identifier of an image placement policy.
- image_
entity_ Sequence[Getfilters Image Placement Policies V2Placement Policy Image Entity Filter] - (Required) Category-based entity filter.
- last_
update_ strtime - name str
- (Required) Name of the image placement policy.
- owner_
ext_ strid - placement_
type str - (Required) Type of the image placement policy. Valid values "HARD", "SOFT"
- cluster
Entity List<Property Map>Filters - (Required) Category-based entity filter.
- create
Time String - description String
- (Optional) Description of the image placement policy.
- enforcement
State String - (Optional) Enforcement status of the image placement policy. Valid values "ACTIVE", "SUSPENDED"
- ext
Id String - The external identifier of an image placement policy.
- image
Entity List<Property Map>Filters - (Required) Category-based entity filter.
- last
Update StringTime - name String
- (Required) Name of the image placement policy.
- owner
Ext StringId - placement
Type String - (Required) Type of the image placement policy. Valid values "HARD", "SOFT"
GetImagePlacementPoliciesV2PlacementPolicyClusterEntityFilter
- Category
Ext List<string>Ids - Array of strings
- Type string
- (Required) Filter matching type. Valid values "CATEGORIES_MATCH_ALL", "CATEGORIES_MATCH_ANY"
- Category
Ext []stringIds - Array of strings
- Type string
- (Required) Filter matching type. Valid values "CATEGORIES_MATCH_ALL", "CATEGORIES_MATCH_ANY"
- category
Ext List<String>Ids - Array of strings
- type String
- (Required) Filter matching type. Valid values "CATEGORIES_MATCH_ALL", "CATEGORIES_MATCH_ANY"
- category
Ext string[]Ids - Array of strings
- type string
- (Required) Filter matching type. Valid values "CATEGORIES_MATCH_ALL", "CATEGORIES_MATCH_ANY"
- category_
ext_ Sequence[str]ids - Array of strings
- type str
- (Required) Filter matching type. Valid values "CATEGORIES_MATCH_ALL", "CATEGORIES_MATCH_ANY"
- category
Ext List<String>Ids - Array of strings
- type String
- (Required) Filter matching type. Valid values "CATEGORIES_MATCH_ALL", "CATEGORIES_MATCH_ANY"
GetImagePlacementPoliciesV2PlacementPolicyImageEntityFilter
- Category
Ext List<string>Ids - Array of strings
- Type string
- (Required) Filter matching type. Valid values "CATEGORIES_MATCH_ALL", "CATEGORIES_MATCH_ANY"
- Category
Ext []stringIds - Array of strings
- Type string
- (Required) Filter matching type. Valid values "CATEGORIES_MATCH_ALL", "CATEGORIES_MATCH_ANY"
- category
Ext List<String>Ids - Array of strings
- type String
- (Required) Filter matching type. Valid values "CATEGORIES_MATCH_ALL", "CATEGORIES_MATCH_ANY"
- category
Ext string[]Ids - Array of strings
- type string
- (Required) Filter matching type. Valid values "CATEGORIES_MATCH_ALL", "CATEGORIES_MATCH_ANY"
- category_
ext_ Sequence[str]ids - Array of strings
- type str
- (Required) Filter matching type. Valid values "CATEGORIES_MATCH_ALL", "CATEGORIES_MATCH_ANY"
- category
Ext List<String>Ids - Array of strings
- type String
- (Required) Filter matching type. Valid values "CATEGORIES_MATCH_ALL", "CATEGORIES_MATCH_ANY"
Package Details
- Repository
- nutanix pierskarsenbarg/pulumi-nutanix
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
nutanix
Terraform Provider.