@pulumiverse/scaleway
Version:
A Pulumi package for creating and managing Scaleway cloud resources.
42 lines • 1.93 kB
JavaScript
;
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
Object.defineProperty(exports, "__esModule", { value: true });
exports.getIpsOutput = exports.getIps = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* Gets information about multiple Load Balancer IP addresses.
*
* For more information, see the [main documentation](https://www.scaleway.com/en/docs/load-balancer/how-to/create-manage-flex-ips/) or [API documentation](https://www.scaleway.com/en/developers/api/load-balancer/zoned-api/#path-ip-addresses-list-ip-addresses).
*/
function getIps(args, opts) {
args = args || {};
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("scaleway:loadbalancers/getIps:getIps", {
"ipCidrRange": args.ipCidrRange,
"ipType": args.ipType,
"projectId": args.projectId,
"tags": args.tags,
"zone": args.zone,
}, opts);
}
exports.getIps = getIps;
/**
* Gets information about multiple Load Balancer IP addresses.
*
* For more information, see the [main documentation](https://www.scaleway.com/en/docs/load-balancer/how-to/create-manage-flex-ips/) or [API documentation](https://www.scaleway.com/en/developers/api/load-balancer/zoned-api/#path-ip-addresses-list-ip-addresses).
*/
function getIpsOutput(args, opts) {
args = args || {};
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invokeOutput("scaleway:loadbalancers/getIps:getIps", {
"ipCidrRange": args.ipCidrRange,
"ipType": args.ipType,
"projectId": args.projectId,
"tags": args.tags,
"zone": args.zone,
}, opts);
}
exports.getIpsOutput = getIpsOutput;
//# sourceMappingURL=getIps.js.map