@cuemby/equinix
Version:
A Pulumi package for creating and managing equinix cloud resources.
72 lines (71 loc) • 2.09 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Use this data source to retrieve a VRF resource.
*
* > VRF features are not generally available. The interfaces related to VRF resources may change ahead of general availability.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as equinix from "@pulumi/equinix";
*
* const exampleVrf = pulumi.output(equinix.GetMetalVRF({
* vrfId: "48630899-9ff2-4ce6-a93f-50ff4ebcdf6e",
* }));
* ```
*/
export declare function getMetalVRF(args: GetMetalVRFArgs, opts?: pulumi.InvokeOptions): Promise<GetMetalVRFResult>;
/**
* A collection of arguments for invoking GetMetalVRF.
*/
export interface GetMetalVRFArgs {
/**
* ID of the VRF resource
*/
vrfId: string;
}
/**
* A collection of values returned by GetMetalVRF.
*/
export interface GetMetalVRFResult {
/**
* Description of the VRF.
*/
readonly description: string;
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
/**
* All IPv4 and IPv6 Ranges that will be available to BGP Peers. IPv4 addresses must be /8 or smaller with a minimum size of /29. IPv6 must be /56 or smaller with a minimum size of /64. Ranges must not overlap other ranges within the VRF.
*/
readonly ipRanges: string[];
/**
* The 4-byte ASN set on the VRF.
*/
readonly localAsn: number;
/**
* Metro ID or Code where the VRF will be deployed.
*/
readonly metro: string;
/**
* User-supplied name of the VRF, unique to the project
*/
readonly name: string;
/**
* Project ID where the VRF will be deployed.
*/
readonly projectId: string;
readonly vrfId: string;
}
export declare function getMetalVRFOutput(args: GetMetalVRFOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetMetalVRFResult>;
/**
* A collection of arguments for invoking GetMetalVRF.
*/
export interface GetMetalVRFOutputArgs {
/**
* ID of the VRF resource
*/
vrfId: pulumi.Input<string>;
}