import * as pulumi from "@pulumi/pulumi"; /** * Creates a datacenter configuration for an Ovhcloud Connect product. * * For the `datacenterId` in the `Required` section, you will need to choose an available datacenter from the data-source `ovh.getOvhcloudConnectDatacenters`. */ export declare class OvhcloudConnectPopDatacenterConfig extends pulumi.CustomResource { /** * Get an existing OvhcloudConnectPopDatacenterConfig 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, state?: OvhcloudConnectPopDatacenterConfigState, opts?: pulumi.CustomResourceOptions): OvhcloudConnectPopDatacenterConfig; /** * Returns true if the given object is an instance of OvhcloudConnectPopDatacenterConfig. 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 OvhcloudConnectPopDatacenterConfig; /** * ID of the pop configuration */ readonly configPopId: pulumi.Output; /** * ID of the datacenter linked */ readonly datacenterId: pulumi.Output; /** * OVH Private AS */ readonly ovhBgpArea: pulumi.Output; /** * Service name */ readonly serviceName: pulumi.Output; /** * Status of the pop configuration */ readonly status: pulumi.Output; /** * Subnet should be a /28 min */ readonly subnet: pulumi.Output; /** * Create a OvhcloudConnectPopDatacenterConfig 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: OvhcloudConnectPopDatacenterConfigArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering OvhcloudConnectPopDatacenterConfig resources. */ export interface OvhcloudConnectPopDatacenterConfigState { /** * ID of the pop configuration */ configPopId?: pulumi.Input; /** * ID of the datacenter linked */ datacenterId?: pulumi.Input; /** * OVH Private AS */ ovhBgpArea?: pulumi.Input; /** * Service name */ serviceName?: pulumi.Input; /** * Status of the pop configuration */ status?: pulumi.Input; /** * Subnet should be a /28 min */ subnet?: pulumi.Input; } /** * The set of arguments for constructing a OvhcloudConnectPopDatacenterConfig resource. */ export interface OvhcloudConnectPopDatacenterConfigArgs { /** * ID of the pop configuration */ configPopId: pulumi.Input; /** * ID of the datacenter linked */ datacenterId: pulumi.Input; /** * OVH Private AS */ ovhBgpArea?: pulumi.Input; /** * Service name */ serviceName: pulumi.Input; /** * Subnet should be a /28 min */ subnet?: pulumi.Input; }