Alibaba Cloud v3.57.1 published on Wednesday, Jun 26, 2024 by Pulumi
alicloud.cloudconnect.getNetworks
Explore with Pulumi AI
This data source provides Cloud Connect Networks available to the user.
NOTE: Available in 1.59.0+
NOTE: Only the following regions support create Cloud Connect Network. [
cn-shanghai,cn-shanghai-finance-1,cn-hongkong,ap-southeast-1,ap-southeast-3,ap-southeast-5,ap-northeast-1,eu-central-1]
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const default = alicloud.cloudconnect.getNetworks({
    ids: [defaultAlicloudCloudConnectNetworks.id],
    nameRegex: "^tf-testAcc.*",
});
const defaultNetwork = new alicloud.cloudconnect.Network("default", {
    name: "tf-testAccCloudConnectNetworkName",
    description: "tf-testAccCloudConnectNetworkDescription",
    cidrBlock: "192.168.0.0/24",
    isDefault: true,
});
import pulumi
import pulumi_alicloud as alicloud
default = alicloud.cloudconnect.get_networks(ids=[default_alicloud_cloud_connect_networks["id"]],
    name_regex="^tf-testAcc.*")
default_network = alicloud.cloudconnect.Network("default",
    name="tf-testAccCloudConnectNetworkName",
    description="tf-testAccCloudConnectNetworkDescription",
    cidr_block="192.168.0.0/24",
    is_default=True)
package main
import (
	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/cloudconnect"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := cloudconnect.GetNetworks(ctx, &cloudconnect.GetNetworksArgs{
Ids: interface{}{
defaultAlicloudCloudConnectNetworks.Id,
},
NameRegex: pulumi.StringRef("^tf-testAcc.*"),
}, nil);
if err != nil {
return err
}
_, err = cloudconnect.NewNetwork(ctx, "default", &cloudconnect.NetworkArgs{
Name: pulumi.String("tf-testAccCloudConnectNetworkName"),
Description: pulumi.String("tf-testAccCloudConnectNetworkDescription"),
CidrBlock: pulumi.String("192.168.0.0/24"),
IsDefault: pulumi.Bool(true),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
return await Deployment.RunAsync(() => 
{
    var @default = AliCloud.CloudConnect.GetNetworks.Invoke(new()
    {
        Ids = new[]
        {
            defaultAlicloudCloudConnectNetworks.Id,
        },
        NameRegex = "^tf-testAcc.*",
    });
    var defaultNetwork = new AliCloud.CloudConnect.Network("default", new()
    {
        Name = "tf-testAccCloudConnectNetworkName",
        Description = "tf-testAccCloudConnectNetworkDescription",
        CidrBlock = "192.168.0.0/24",
        IsDefault = true,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.cloudconnect.CloudconnectFunctions;
import com.pulumi.alicloud.cloudconnect.inputs.GetNetworksArgs;
import com.pulumi.alicloud.cloudconnect.Network;
import com.pulumi.alicloud.cloudconnect.NetworkArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        final var default = CloudconnectFunctions.getNetworks(GetNetworksArgs.builder()
            .ids(defaultAlicloudCloudConnectNetworks.id())
            .nameRegex("^tf-testAcc.*")
            .build());
        var defaultNetwork = new Network("defaultNetwork", NetworkArgs.builder()
            .name("tf-testAccCloudConnectNetworkName")
            .description("tf-testAccCloudConnectNetworkDescription")
            .cidrBlock("192.168.0.0/24")
            .isDefault(true)
            .build());
    }
}
resources:
  defaultNetwork:
    type: alicloud:cloudconnect:Network
    name: default
    properties:
      name: tf-testAccCloudConnectNetworkName
      description: tf-testAccCloudConnectNetworkDescription
      cidrBlock: 192.168.0.0/24
      isDefault: true
variables:
  default:
    fn::invoke:
      Function: alicloud:cloudconnect:getNetworks
      Arguments:
        ids:
          - ${defaultAlicloudCloudConnectNetworks.id}
        nameRegex: ^tf-testAcc.*
Using getNetworks
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getNetworks(args: GetNetworksArgs, opts?: InvokeOptions): Promise<GetNetworksResult>
function getNetworksOutput(args: GetNetworksOutputArgs, opts?: InvokeOptions): Output<GetNetworksResult>def get_networks(ids: Optional[Sequence[str]] = None,
                 name_regex: Optional[str] = None,
                 output_file: Optional[str] = None,
                 opts: Optional[InvokeOptions] = None) -> GetNetworksResult
def get_networks_output(ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                 name_regex: Optional[pulumi.Input[str]] = None,
                 output_file: Optional[pulumi.Input[str]] = None,
                 opts: Optional[InvokeOptions] = None) -> Output[GetNetworksResult]func GetNetworks(ctx *Context, args *GetNetworksArgs, opts ...InvokeOption) (*GetNetworksResult, error)
func GetNetworksOutput(ctx *Context, args *GetNetworksOutputArgs, opts ...InvokeOption) GetNetworksResultOutput> Note: This function is named GetNetworks in the Go SDK.
public static class GetNetworks 
{
    public static Task<GetNetworksResult> InvokeAsync(GetNetworksArgs args, InvokeOptions? opts = null)
    public static Output<GetNetworksResult> Invoke(GetNetworksInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetNetworksResult> getNetworks(GetNetworksArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
  function: alicloud:cloudconnect/getNetworks:getNetworks
  arguments:
    # arguments dictionaryThe following arguments are supported:
- Ids List<string>
 - A list of CCN instances IDs.
 - Name
Regex string - A regex string to filter CCN instances by name.
 - Output
File string 
- Ids []string
 - A list of CCN instances IDs.
 - Name
Regex string - A regex string to filter CCN instances by name.
 - Output
File string 
- ids List<String>
 - A list of CCN instances IDs.
 - name
Regex String - A regex string to filter CCN instances by name.
 - output
File String 
- ids string[]
 - A list of CCN instances IDs.
 - name
Regex string - A regex string to filter CCN instances by name.
 - output
File string 
- ids Sequence[str]
 - A list of CCN instances IDs.
 - name_
regex str - A regex string to filter CCN instances by name.
 - output_
file str 
- ids List<String>
 - A list of CCN instances IDs.
 - name
Regex String - A regex string to filter CCN instances by name.
 - output
File String 
getNetworks Result
The following output properties are available:
- Id string
 - The provider-assigned unique ID for this managed resource.
 - Ids List<string>
 - A list of CCN instances IDs.
 - Names List<string>
 - A list of CCN instances names.
 - Networks
List<Pulumi.
Ali Cloud. Cloud Connect. Outputs. Get Networks Network>  - A list of CCN instances. Each element contains the following attributes:
 - Name
Regex string - Output
File string 
- Id string
 - The provider-assigned unique ID for this managed resource.
 - Ids []string
 - A list of CCN instances IDs.
 - Names []string
 - A list of CCN instances names.
 - Networks
[]Get
Networks Network  - A list of CCN instances. Each element contains the following attributes:
 - Name
Regex string - Output
File string 
- id String
 - The provider-assigned unique ID for this managed resource.
 - ids List<String>
 - A list of CCN instances IDs.
 - names List<String>
 - A list of CCN instances names.
 - networks
List<Get
Networks Network>  - A list of CCN instances. Each element contains the following attributes:
 - name
Regex String - output
File String 
- id string
 - The provider-assigned unique ID for this managed resource.
 - ids string[]
 - A list of CCN instances IDs.
 - names string[]
 - A list of CCN instances names.
 - networks
Get
Networks Network[]  - A list of CCN instances. Each element contains the following attributes:
 - name
Regex string - output
File string 
- id str
 - The provider-assigned unique ID for this managed resource.
 - ids Sequence[str]
 - A list of CCN instances IDs.
 - names Sequence[str]
 - A list of CCN instances names.
 - networks
Sequence[Get
Networks Network]  - A list of CCN instances. Each element contains the following attributes:
 - name_
regex str - output_
file str 
- id String
 - The provider-assigned unique ID for this managed resource.
 - ids List<String>
 - A list of CCN instances IDs.
 - names List<String>
 - A list of CCN instances names.
 - networks List<Property Map>
 - A list of CCN instances. Each element contains the following attributes:
 - name
Regex String - output
File String 
Supporting Types
GetNetworksNetwork  
- Cidr
Block string - CidrBlock of the CCN instance.
 - Description string
 - Id string
 - ID of the CCN instance.
 - Is
Default bool - IsDefault of the CCN instance.
 - Name string
 - Name of the CCN instance.
 
- Cidr
Block string - CidrBlock of the CCN instance.
 - Description string
 - Id string
 - ID of the CCN instance.
 - Is
Default bool - IsDefault of the CCN instance.
 - Name string
 - Name of the CCN instance.
 
- cidr
Block String - CidrBlock of the CCN instance.
 - description String
 - id String
 - ID of the CCN instance.
 - is
Default Boolean - IsDefault of the CCN instance.
 - name String
 - Name of the CCN instance.
 
- cidr
Block string - CidrBlock of the CCN instance.
 - description string
 - id string
 - ID of the CCN instance.
 - is
Default boolean - IsDefault of the CCN instance.
 - name string
 - Name of the CCN instance.
 
- cidr_
block str - CidrBlock of the CCN instance.
 - description str
 - id str
 - ID of the CCN instance.
 - is_
default bool - IsDefault of the CCN instance.
 - name str
 - Name of the CCN instance.
 
- cidr
Block String - CidrBlock of the CCN instance.
 - description String
 - id String
 - ID of the CCN instance.
 - is
Default Boolean - IsDefault of the CCN instance.
 - name String
 - Name of the CCN instance.
 
Package Details
- Repository
 - Alibaba Cloud pulumi/pulumi-alicloud
 - License
 - Apache-2.0
 - Notes
 - This Pulumi package is based on the 
alicloudTerraform Provider.