import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Creates a network in a public cloud project. */ export declare class RegionNetwork extends pulumi.CustomResource { /** * Get an existing RegionNetwork 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?: RegionNetworkState, opts?: pulumi.CustomResourceOptions): RegionNetwork; /** * Returns true if the given object is an instance of RegionNetwork. 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 RegionNetwork; /** * Name of the network */ readonly name: pulumi.Output; /** * Network region returned by the API */ readonly region: pulumi.Output; /** * Network region */ readonly regionName: pulumi.Output; /** * The id of the public cloud project. If omitted, the `OVH_CLOUD_PROJECT_SERVICE` environment variable is used. */ readonly serviceName: pulumi.Output; /** * Parameters to create a subnet */ readonly subnet: pulumi.Output; /** * Network visibility */ readonly visibility: pulumi.Output; /** * VLAN ID, between 1 and 4000 */ readonly vlanId: pulumi.Output; /** * Create a RegionNetwork 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: RegionNetworkArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering RegionNetwork resources. */ export interface RegionNetworkState { /** * Name of the network */ name?: pulumi.Input; /** * Network region returned by the API */ region?: pulumi.Input; /** * Network region */ regionName?: pulumi.Input; /** * The id of the public cloud project. If omitted, the `OVH_CLOUD_PROJECT_SERVICE` environment variable is used. */ serviceName?: pulumi.Input; /** * Parameters to create a subnet */ subnet?: pulumi.Input; /** * Network visibility */ visibility?: pulumi.Input; /** * VLAN ID, between 1 and 4000 */ vlanId?: pulumi.Input; } /** * The set of arguments for constructing a RegionNetwork resource. */ export interface RegionNetworkArgs { /** * Name of the network */ name?: pulumi.Input; /** * Network region */ regionName: pulumi.Input; /** * The id of the public cloud project. If omitted, the `OVH_CLOUD_PROJECT_SERVICE` environment variable is used. */ serviceName?: pulumi.Input; /** * Parameters to create a subnet */ subnet: pulumi.Input; /** * VLAN ID, between 1 and 4000 */ vlanId?: pulumi.Input; }