import * as pulumi from "@pulumi/pulumi";
import * as outputs from "./types/output";
/**
* Provides a datasource to retrieve floating IP with floatingIpUuid .
*
* ## Example Usage
*
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as nutanix from "@pierskarsenbarg/nutanix";
*
* const floating_ips = nutanix.getFloatingIpsV2({});
* const floating_ips_filter = nutanix.getFloatingIpsV2({
* filter: "name eq 'floating_ip_example'",
* });
* const floating_ips_limit = nutanix.getFloatingIpsV2({
* limit: 10,
* });
* const floating_ips_filter_limit = nutanix.getFloatingIpsV2({
* filter: "name eq 'floating_ip_example'",
* limit: 10,
* });
* ```
*
*/
export declare function getFloatingIpsV2(args?: GetFloatingIpsV2Args, opts?: pulumi.InvokeOptions): Promise;
/**
* A collection of arguments for invoking getFloatingIpsV2.
*/
export interface GetFloatingIpsV2Args {
/**
* A URL query parameter that allows clients to request related resources when a resource that satisfies a particular request is retrieved. The expand can be applied to the following fields:
* - externalSubnet
* - vpc
* - vmNic
*/
expand?: string;
/**
* A URL query parameter that allows clients to filter a collection of resources. The filter can be applied to the following fields:
* - externalSubnetReference
* - floatingIp/ipv4/value
* - floatingIp/ipv6/value
* - loadBalancerSessionReference
* - name
*/
filter?: string;
/**
* 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.
*/
limit?: number;
/**
* 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:
* - floatingIp/ipv4/value
* - floatingIp/ipv6/value
* - name
*/
orderBy?: string;
/**
* 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.
*/
page?: number;
}
/**
* A collection of values returned by getFloatingIpsV2.
*/
export interface GetFloatingIpsV2Result {
readonly expand?: string;
readonly filter?: string;
/**
* List of all Floating IPs.
*/
readonly floatingIps: outputs.GetFloatingIpsV2FloatingIp[];
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
readonly limit?: number;
readonly orderBy?: string;
readonly page?: number;
}
/**
* Provides a datasource to retrieve floating IP with floatingIpUuid .
*
* ## Example Usage
*
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as nutanix from "@pierskarsenbarg/nutanix";
*
* const floating_ips = nutanix.getFloatingIpsV2({});
* const floating_ips_filter = nutanix.getFloatingIpsV2({
* filter: "name eq 'floating_ip_example'",
* });
* const floating_ips_limit = nutanix.getFloatingIpsV2({
* limit: 10,
* });
* const floating_ips_filter_limit = nutanix.getFloatingIpsV2({
* filter: "name eq 'floating_ip_example'",
* limit: 10,
* });
* ```
*
*/
export declare function getFloatingIpsV2Output(args?: GetFloatingIpsV2OutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output;
/**
* A collection of arguments for invoking getFloatingIpsV2.
*/
export interface GetFloatingIpsV2OutputArgs {
/**
* A URL query parameter that allows clients to request related resources when a resource that satisfies a particular request is retrieved. The expand can be applied to the following fields:
* - externalSubnet
* - vpc
* - vmNic
*/
expand?: pulumi.Input;
/**
* A URL query parameter that allows clients to filter a collection of resources. The filter can be applied to the following fields:
* - externalSubnetReference
* - floatingIp/ipv4/value
* - floatingIp/ipv6/value
* - loadBalancerSessionReference
* - name
*/
filter?: pulumi.Input;
/**
* 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.
*/
limit?: pulumi.Input;
/**
* 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:
* - floatingIp/ipv4/value
* - floatingIp/ipv6/value
* - name
*/
orderBy?: pulumi.Input;
/**
* 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.
*/
page?: pulumi.Input;
}
//# sourceMappingURL=getFloatingIpsV2.d.ts.map