import * as pulumi from "@pulumi/pulumi";
import * as inputs from "../types/input";
import * as outputs from "../types/output";
/**
 * Fabric V4 API compatible resource allows creation and management of Equinix Fabric Route Aggregation
 *
 * Additional Documentation:
 * * API: https://developer.equinix.com/catalog/fabricv4#tag/Route-Aggregations
 */
export declare class RouteAggregation extends pulumi.CustomResource {
    /**
     * Get an existing RouteAggregation resource's state with the given name, ID, and optional extra
     * properties used to qualify the lookup.
     *
     * @param name The _unique_ name of the resulting resource.
     * @param id The _unique_ provider ID of the resource to lookup.
     * @param state Any extra arguments used during the lookup.
     * @param opts Optional settings to control the behavior of the CustomResource.
     */
    static get(name: string, id: pulumi.Input<pulumi.ID>, state?: RouteAggregationState, opts?: pulumi.CustomResourceOptions): RouteAggregation;
    /**
     * Returns true if the given object is an instance of RouteAggregation.  This is designed to work even
     * when multiple copies of the Pulumi SDK have been loaded into the same process.
     */
    static isInstance(obj: any): obj is RouteAggregation;
    /**
     * Current state of latest Route Aggregation change
     */
    readonly change: pulumi.Output<outputs.fabric.RouteAggregationChange>;
    /**
     * Details of the last change on the route aggregation resource
     */
    readonly changeLog: pulumi.Output<outputs.fabric.RouteAggregationChangeLog>;
    /**
     * Number of Connections attached to route aggregation
     */
    readonly connectionsCount: pulumi.Output<number>;
    /**
     * Customer-provided route aggregation description
     */
    readonly description: pulumi.Output<string | undefined>;
    /**
     * Equinix auto generated URI to the route aggregation resource
     */
    readonly href: pulumi.Output<string>;
    /**
     * Customer provided name of the route aggregation
     */
    readonly name: pulumi.Output<string>;
    /**
     * Equinix Project attribute object
     */
    readonly project: pulumi.Output<outputs.fabric.RouteAggregationProject>;
    /**
     * Number of Rules attached to route aggregation
     */
    readonly rulesCount: pulumi.Output<number>;
    /**
     * Value representing provisioning status for the route aggregation resource
     */
    readonly state: pulumi.Output<string>;
    readonly timeouts: pulumi.Output<outputs.fabric.RouteAggregationTimeouts | undefined>;
    /**
     * Equinix defined Route Aggregation Type; BGP*IPv4*PREFIX*AGGREGATION, BGP*IPv6*PREFIX*AGGREGATION
     */
    readonly type: pulumi.Output<string>;
    /**
     * Equinix-assigned unique id for the route aggregation resource
     */
    readonly uuid: pulumi.Output<string>;
    /**
     * Create a RouteAggregation resource with the given unique name, arguments, and options.
     *
     * @param name The _unique_ name of the resource.
     * @param args The arguments to use to populate this resource's properties.
     * @param opts A bag of options that control this resource's behavior.
     */
    constructor(name: string, args: RouteAggregationArgs, opts?: pulumi.CustomResourceOptions);
}
/**
 * Input properties used for looking up and filtering RouteAggregation resources.
 */
export interface RouteAggregationState {
    /**
     * Current state of latest Route Aggregation change
     */
    change?: pulumi.Input<inputs.fabric.RouteAggregationChange>;
    /**
     * Details of the last change on the route aggregation resource
     */
    changeLog?: pulumi.Input<inputs.fabric.RouteAggregationChangeLog>;
    /**
     * Number of Connections attached to route aggregation
     */
    connectionsCount?: pulumi.Input<number>;
    /**
     * Customer-provided route aggregation description
     */
    description?: pulumi.Input<string>;
    /**
     * Equinix auto generated URI to the route aggregation resource
     */
    href?: pulumi.Input<string>;
    /**
     * Customer provided name of the route aggregation
     */
    name?: pulumi.Input<string>;
    /**
     * Equinix Project attribute object
     */
    project?: pulumi.Input<inputs.fabric.RouteAggregationProject>;
    /**
     * Number of Rules attached to route aggregation
     */
    rulesCount?: pulumi.Input<number>;
    /**
     * Value representing provisioning status for the route aggregation resource
     */
    state?: pulumi.Input<string>;
    timeouts?: pulumi.Input<inputs.fabric.RouteAggregationTimeouts>;
    /**
     * Equinix defined Route Aggregation Type; BGP*IPv4*PREFIX*AGGREGATION, BGP*IPv6*PREFIX*AGGREGATION
     */
    type?: pulumi.Input<string>;
    /**
     * Equinix-assigned unique id for the route aggregation resource
     */
    uuid?: pulumi.Input<string>;
}
/**
 * The set of arguments for constructing a RouteAggregation resource.
 */
export interface RouteAggregationArgs {
    /**
     * Customer-provided route aggregation description
     */
    description?: pulumi.Input<string>;
    /**
     * Customer provided name of the route aggregation
     */
    name?: pulumi.Input<string>;
    /**
     * Equinix Project attribute object
     */
    project: pulumi.Input<inputs.fabric.RouteAggregationProject>;
    timeouts?: pulumi.Input<inputs.fabric.RouteAggregationTimeouts>;
    /**
     * Equinix defined Route Aggregation Type; BGP*IPv4*PREFIX*AGGREGATION, BGP*IPv6*PREFIX*AGGREGATION
     */
    type: pulumi.Input<string>;
}
