1. Packages
  2. Alibaba Cloud Provider
  3. API Docs
  4. vpc
  5. getIpamIpamPools
Alibaba Cloud v3.75.0 published on Friday, Mar 7, 2025 by Pulumi

alicloud.vpc.getIpamIpamPools

Explore with Pulumi AI

alicloud logo
Alibaba Cloud v3.75.0 published on Friday, Mar 7, 2025 by Pulumi

    This data source provides Vpc Ipam Ipam Pool available to the user.What is Ipam Pool

    NOTE: Available since v1.241.0.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as alicloud from "@pulumi/alicloud";
    
    const config = new pulumi.Config();
    const name = config.get("name") || "terraform-example";
    const _default = alicloud.resourcemanager.getResourceGroups({});
    const defaultIpam = new alicloud.vpc.IpamIpam("defaultIpam", {operatingRegionLists: ["cn-hangzhou"]});
    const parentIpamPool = new alicloud.vpc.IpamIpamPool("parentIpamPool", {
        ipamScopeId: defaultIpam.privateDefaultScopeId,
        poolRegionId: "cn-hangzhou",
    });
    const defaultIpamIpamPool = new alicloud.vpc.IpamIpamPool("default", {
        ipamScopeId: defaultIpam.privateDefaultScopeId,
        poolRegionId: parentIpamPool.poolRegionId,
        ipamPoolName: name,
        sourceIpamPoolId: parentIpamPool.id,
        ipVersion: "IPv4",
        ipamPoolDescription: name,
    });
    const defaultGetIpamIpamPools = alicloud.vpc.getIpamIpamPools({
        nameRegex: defaultIpamIpamPool.name,
    });
    export const alicloudVpcIpamIpamPoolExampleId = defaultGetIpamIpamPools.then(defaultGetIpamIpamPools => defaultGetIpamIpamPools.pools?.[0]?.id);
    
    import pulumi
    import pulumi_alicloud as alicloud
    
    config = pulumi.Config()
    name = config.get("name")
    if name is None:
        name = "terraform-example"
    default = alicloud.resourcemanager.get_resource_groups()
    default_ipam = alicloud.vpc.IpamIpam("defaultIpam", operating_region_lists=["cn-hangzhou"])
    parent_ipam_pool = alicloud.vpc.IpamIpamPool("parentIpamPool",
        ipam_scope_id=default_ipam.private_default_scope_id,
        pool_region_id="cn-hangzhou")
    default_ipam_ipam_pool = alicloud.vpc.IpamIpamPool("default",
        ipam_scope_id=default_ipam.private_default_scope_id,
        pool_region_id=parent_ipam_pool.pool_region_id,
        ipam_pool_name=name,
        source_ipam_pool_id=parent_ipam_pool.id,
        ip_version="IPv4",
        ipam_pool_description=name)
    default_get_ipam_ipam_pools = alicloud.vpc.get_ipam_ipam_pools(name_regex=default_ipam_ipam_pool.name)
    pulumi.export("alicloudVpcIpamIpamPoolExampleId", default_get_ipam_ipam_pools.pools[0].id)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/resourcemanager"
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/vpc"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		cfg := config.New(ctx, "")
    		name := "terraform-example"
    		if param := cfg.Get("name"); param != "" {
    			name = param
    		}
    		_, err := resourcemanager.GetResourceGroups(ctx, &resourcemanager.GetResourceGroupsArgs{}, nil)
    		if err != nil {
    			return err
    		}
    		defaultIpam, err := vpc.NewIpamIpam(ctx, "defaultIpam", &vpc.IpamIpamArgs{
    			OperatingRegionLists: pulumi.StringArray{
    				pulumi.String("cn-hangzhou"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		parentIpamPool, err := vpc.NewIpamIpamPool(ctx, "parentIpamPool", &vpc.IpamIpamPoolArgs{
    			IpamScopeId:  defaultIpam.PrivateDefaultScopeId,
    			PoolRegionId: pulumi.String("cn-hangzhou"),
    		})
    		if err != nil {
    			return err
    		}
    		defaultIpamIpamPool, err := vpc.NewIpamIpamPool(ctx, "default", &vpc.IpamIpamPoolArgs{
    			IpamScopeId:         defaultIpam.PrivateDefaultScopeId,
    			PoolRegionId:        parentIpamPool.PoolRegionId,
    			IpamPoolName:        pulumi.String(name),
    			SourceIpamPoolId:    parentIpamPool.ID(),
    			IpVersion:           pulumi.String("IPv4"),
    			IpamPoolDescription: pulumi.String(name),
    		})
    		if err != nil {
    			return err
    		}
    		defaultGetIpamIpamPools, err := vpc.GetIpamIpamPools(ctx, &vpc.GetIpamIpamPoolsArgs{
    			NameRegex: pulumi.StringRef(defaultIpamIpamPool.Name),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		ctx.Export("alicloudVpcIpamIpamPoolExampleId", defaultGetIpamIpamPools.Pools[0].Id)
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AliCloud = Pulumi.AliCloud;
    
    return await Deployment.RunAsync(() => 
    {
        var config = new Config();
        var name = config.Get("name") ?? "terraform-example";
        var @default = AliCloud.ResourceManager.GetResourceGroups.Invoke();
    
        var defaultIpam = new AliCloud.Vpc.IpamIpam("defaultIpam", new()
        {
            OperatingRegionLists = new[]
            {
                "cn-hangzhou",
            },
        });
    
        var parentIpamPool = new AliCloud.Vpc.IpamIpamPool("parentIpamPool", new()
        {
            IpamScopeId = defaultIpam.PrivateDefaultScopeId,
            PoolRegionId = "cn-hangzhou",
        });
    
        var defaultIpamIpamPool = new AliCloud.Vpc.IpamIpamPool("default", new()
        {
            IpamScopeId = defaultIpam.PrivateDefaultScopeId,
            PoolRegionId = parentIpamPool.PoolRegionId,
            IpamPoolName = name,
            SourceIpamPoolId = parentIpamPool.Id,
            IpVersion = "IPv4",
            IpamPoolDescription = name,
        });
    
        var defaultGetIpamIpamPools = AliCloud.Vpc.GetIpamIpamPools.Invoke(new()
        {
            NameRegex = defaultIpamIpamPool.Name,
        });
    
        return new Dictionary<string, object?>
        {
            ["alicloudVpcIpamIpamPoolExampleId"] = defaultGetIpamIpamPools.Apply(getIpamIpamPoolsResult => getIpamIpamPoolsResult.Pools[0]?.Id),
        };
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.alicloud.resourcemanager.ResourcemanagerFunctions;
    import com.pulumi.alicloud.resourcemanager.inputs.GetResourceGroupsArgs;
    import com.pulumi.alicloud.vpc.IpamIpam;
    import com.pulumi.alicloud.vpc.IpamIpamArgs;
    import com.pulumi.alicloud.vpc.IpamIpamPool;
    import com.pulumi.alicloud.vpc.IpamIpamPoolArgs;
    import com.pulumi.alicloud.vpc.VpcFunctions;
    import com.pulumi.alicloud.vpc.inputs.GetIpamIpamPoolsArgs;
    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 config = ctx.config();
            final var name = config.get("name").orElse("terraform-example");
            final var default = ResourcemanagerFunctions.getResourceGroups();
    
            var defaultIpam = new IpamIpam("defaultIpam", IpamIpamArgs.builder()
                .operatingRegionLists("cn-hangzhou")
                .build());
    
            var parentIpamPool = new IpamIpamPool("parentIpamPool", IpamIpamPoolArgs.builder()
                .ipamScopeId(defaultIpam.privateDefaultScopeId())
                .poolRegionId("cn-hangzhou")
                .build());
    
            var defaultIpamIpamPool = new IpamIpamPool("defaultIpamIpamPool", IpamIpamPoolArgs.builder()
                .ipamScopeId(defaultIpam.privateDefaultScopeId())
                .poolRegionId(parentIpamPool.poolRegionId())
                .ipamPoolName(name)
                .sourceIpamPoolId(parentIpamPool.id())
                .ipVersion("IPv4")
                .ipamPoolDescription(name)
                .build());
    
            final var defaultGetIpamIpamPools = VpcFunctions.getIpamIpamPools(GetIpamIpamPoolsArgs.builder()
                .nameRegex(defaultIpamIpamPool.name())
                .build());
    
            ctx.export("alicloudVpcIpamIpamPoolExampleId", defaultGetIpamIpamPools.applyValue(getIpamIpamPoolsResult -> getIpamIpamPoolsResult.pools()[0].id()));
        }
    }
    
    configuration:
      name:
        type: string
        default: terraform-example
    resources:
      defaultIpam:
        type: alicloud:vpc:IpamIpam
        properties:
          operatingRegionLists:
            - cn-hangzhou
      parentIpamPool:
        type: alicloud:vpc:IpamIpamPool
        properties:
          ipamScopeId: ${defaultIpam.privateDefaultScopeId}
          poolRegionId: cn-hangzhou
      defaultIpamIpamPool:
        type: alicloud:vpc:IpamIpamPool
        name: default
        properties:
          ipamScopeId: ${defaultIpam.privateDefaultScopeId}
          poolRegionId: ${parentIpamPool.poolRegionId}
          ipamPoolName: ${name}
          sourceIpamPoolId: ${parentIpamPool.id}
          ipVersion: IPv4
          ipamPoolDescription: ${name}
    variables:
      default:
        fn::invoke:
          function: alicloud:resourcemanager:getResourceGroups
          arguments: {}
      defaultGetIpamIpamPools:
        fn::invoke:
          function: alicloud:vpc:getIpamIpamPools
          arguments:
            nameRegex: ${defaultIpamIpamPool.name}
    outputs:
      alicloudVpcIpamIpamPoolExampleId: ${defaultGetIpamIpamPools.pools[0].id}
    

    Using getIpamIpamPools

    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 getIpamIpamPools(args: GetIpamIpamPoolsArgs, opts?: InvokeOptions): Promise<GetIpamIpamPoolsResult>
    function getIpamIpamPoolsOutput(args: GetIpamIpamPoolsOutputArgs, opts?: InvokeOptions): Output<GetIpamIpamPoolsResult>
    def get_ipam_ipam_pools(ids: Optional[Sequence[str]] = None,
                            ipam_pool_id: Optional[str] = None,
                            ipam_pool_name: Optional[str] = None,
                            ipam_scope_id: Optional[str] = None,
                            name_regex: Optional[str] = None,
                            output_file: Optional[str] = None,
                            pool_region_id: Optional[str] = None,
                            resource_group_id: Optional[str] = None,
                            source_ipam_pool_id: Optional[str] = None,
                            tags: Optional[Mapping[str, str]] = None,
                            opts: Optional[InvokeOptions] = None) -> GetIpamIpamPoolsResult
    def get_ipam_ipam_pools_output(ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                            ipam_pool_id: Optional[pulumi.Input[str]] = None,
                            ipam_pool_name: Optional[pulumi.Input[str]] = None,
                            ipam_scope_id: Optional[pulumi.Input[str]] = None,
                            name_regex: Optional[pulumi.Input[str]] = None,
                            output_file: Optional[pulumi.Input[str]] = None,
                            pool_region_id: Optional[pulumi.Input[str]] = None,
                            resource_group_id: Optional[pulumi.Input[str]] = None,
                            source_ipam_pool_id: Optional[pulumi.Input[str]] = None,
                            tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
                            opts: Optional[InvokeOptions] = None) -> Output[GetIpamIpamPoolsResult]
    func GetIpamIpamPools(ctx *Context, args *GetIpamIpamPoolsArgs, opts ...InvokeOption) (*GetIpamIpamPoolsResult, error)
    func GetIpamIpamPoolsOutput(ctx *Context, args *GetIpamIpamPoolsOutputArgs, opts ...InvokeOption) GetIpamIpamPoolsResultOutput

    > Note: This function is named GetIpamIpamPools in the Go SDK.

    public static class GetIpamIpamPools 
    {
        public static Task<GetIpamIpamPoolsResult> InvokeAsync(GetIpamIpamPoolsArgs args, InvokeOptions? opts = null)
        public static Output<GetIpamIpamPoolsResult> Invoke(GetIpamIpamPoolsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetIpamIpamPoolsResult> getIpamIpamPools(GetIpamIpamPoolsArgs args, InvokeOptions options)
    public static Output<GetIpamIpamPoolsResult> getIpamIpamPools(GetIpamIpamPoolsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: alicloud:vpc/getIpamIpamPools:getIpamIpamPools
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Ids List<string>
    A list of Ipam Pool IDs.
    IpamPoolId string
    The first ID of the resource.
    IpamPoolName string
    The name of the resource.
    IpamScopeId string
    Ipam scope id.
    NameRegex string
    A regex string to filter results by Group Metric Rule name.
    OutputFile string
    File name where to save data source results (after running pulumi preview).
    PoolRegionId string
    The effective region of the IPAM address pool.
    ResourceGroupId string
    The ID of the resource group.
    SourceIpamPoolId string
    The instance ID of the source IPAM address pool.> If this parameter is not entered, the created address pool is the parent address pool.
    Tags Dictionary<string, string>
    The tag of the resource.
    Ids []string
    A list of Ipam Pool IDs.
    IpamPoolId string
    The first ID of the resource.
    IpamPoolName string
    The name of the resource.
    IpamScopeId string
    Ipam scope id.
    NameRegex string
    A regex string to filter results by Group Metric Rule name.
    OutputFile string
    File name where to save data source results (after running pulumi preview).
    PoolRegionId string
    The effective region of the IPAM address pool.
    ResourceGroupId string
    The ID of the resource group.
    SourceIpamPoolId string
    The instance ID of the source IPAM address pool.> If this parameter is not entered, the created address pool is the parent address pool.
    Tags map[string]string
    The tag of the resource.
    ids List<String>
    A list of Ipam Pool IDs.
    ipamPoolId String
    The first ID of the resource.
    ipamPoolName String
    The name of the resource.
    ipamScopeId String
    Ipam scope id.
    nameRegex String
    A regex string to filter results by Group Metric Rule name.
    outputFile String
    File name where to save data source results (after running pulumi preview).
    poolRegionId String
    The effective region of the IPAM address pool.
    resourceGroupId String
    The ID of the resource group.
    sourceIpamPoolId String
    The instance ID of the source IPAM address pool.> If this parameter is not entered, the created address pool is the parent address pool.
    tags Map<String,String>
    The tag of the resource.
    ids string[]
    A list of Ipam Pool IDs.
    ipamPoolId string
    The first ID of the resource.
    ipamPoolName string
    The name of the resource.
    ipamScopeId string
    Ipam scope id.
    nameRegex string
    A regex string to filter results by Group Metric Rule name.
    outputFile string
    File name where to save data source results (after running pulumi preview).
    poolRegionId string
    The effective region of the IPAM address pool.
    resourceGroupId string
    The ID of the resource group.
    sourceIpamPoolId string
    The instance ID of the source IPAM address pool.> If this parameter is not entered, the created address pool is the parent address pool.
    tags {[key: string]: string}
    The tag of the resource.
    ids Sequence[str]
    A list of Ipam Pool IDs.
    ipam_pool_id str
    The first ID of the resource.
    ipam_pool_name str
    The name of the resource.
    ipam_scope_id str
    Ipam scope id.
    name_regex str
    A regex string to filter results by Group Metric Rule name.
    output_file str
    File name where to save data source results (after running pulumi preview).
    pool_region_id str
    The effective region of the IPAM address pool.
    resource_group_id str
    The ID of the resource group.
    source_ipam_pool_id str
    The instance ID of the source IPAM address pool.> If this parameter is not entered, the created address pool is the parent address pool.
    tags Mapping[str, str]
    The tag of the resource.
    ids List<String>
    A list of Ipam Pool IDs.
    ipamPoolId String
    The first ID of the resource.
    ipamPoolName String
    The name of the resource.
    ipamScopeId String
    Ipam scope id.
    nameRegex String
    A regex string to filter results by Group Metric Rule name.
    outputFile String
    File name where to save data source results (after running pulumi preview).
    poolRegionId String
    The effective region of the IPAM address pool.
    resourceGroupId String
    The ID of the resource group.
    sourceIpamPoolId String
    The instance ID of the source IPAM address pool.> If this parameter is not entered, the created address pool is the parent address pool.
    tags Map<String>
    The tag of the resource.

    getIpamIpamPools Result

    The following output properties are available:

    Id string
    The provider-assigned unique ID for this managed resource.
    Ids List<string>
    A list of Ipam Pool IDs.
    Names List<string>
    A list of name of Ipam Pools.
    Pools List<Pulumi.AliCloud.Vpc.Outputs.GetIpamIpamPoolsPool>
    A list of Ipam Pool Entries. Each element contains the following attributes:
    IpamPoolId string
    The first ID of the resource.
    IpamPoolName string
    The name of the resource.
    IpamScopeId string
    Ipam scope id.
    NameRegex string
    OutputFile string
    PoolRegionId string
    The effective region of the IPAM address pool.
    ResourceGroupId string
    The ID of the resource group.
    SourceIpamPoolId string
    The instance ID of the source IPAM address pool.> If this parameter is not entered, the created address pool is the parent address pool.
    Tags Dictionary<string, string>
    The tag of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Ids []string
    A list of Ipam Pool IDs.
    Names []string
    A list of name of Ipam Pools.
    Pools []GetIpamIpamPoolsPool
    A list of Ipam Pool Entries. Each element contains the following attributes:
    IpamPoolId string
    The first ID of the resource.
    IpamPoolName string
    The name of the resource.
    IpamScopeId string
    Ipam scope id.
    NameRegex string
    OutputFile string
    PoolRegionId string
    The effective region of the IPAM address pool.
    ResourceGroupId string
    The ID of the resource group.
    SourceIpamPoolId string
    The instance ID of the source IPAM address pool.> If this parameter is not entered, the created address pool is the parent address pool.
    Tags map[string]string
    The tag of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    ids List<String>
    A list of Ipam Pool IDs.
    names List<String>
    A list of name of Ipam Pools.
    pools List<GetIpamIpamPoolsPool>
    A list of Ipam Pool Entries. Each element contains the following attributes:
    ipamPoolId String
    The first ID of the resource.
    ipamPoolName String
    The name of the resource.
    ipamScopeId String
    Ipam scope id.
    nameRegex String
    outputFile String
    poolRegionId String
    The effective region of the IPAM address pool.
    resourceGroupId String
    The ID of the resource group.
    sourceIpamPoolId String
    The instance ID of the source IPAM address pool.> If this parameter is not entered, the created address pool is the parent address pool.
    tags Map<String,String>
    The tag of the resource.
    id string
    The provider-assigned unique ID for this managed resource.
    ids string[]
    A list of Ipam Pool IDs.
    names string[]
    A list of name of Ipam Pools.
    pools GetIpamIpamPoolsPool[]
    A list of Ipam Pool Entries. Each element contains the following attributes:
    ipamPoolId string
    The first ID of the resource.
    ipamPoolName string
    The name of the resource.
    ipamScopeId string
    Ipam scope id.
    nameRegex string
    outputFile string
    poolRegionId string
    The effective region of the IPAM address pool.
    resourceGroupId string
    The ID of the resource group.
    sourceIpamPoolId string
    The instance ID of the source IPAM address pool.> If this parameter is not entered, the created address pool is the parent address pool.
    tags {[key: string]: string}
    The tag of the resource.
    id str
    The provider-assigned unique ID for this managed resource.
    ids Sequence[str]
    A list of Ipam Pool IDs.
    names Sequence[str]
    A list of name of Ipam Pools.
    pools Sequence[GetIpamIpamPoolsPool]
    A list of Ipam Pool Entries. Each element contains the following attributes:
    ipam_pool_id str
    The first ID of the resource.
    ipam_pool_name str
    The name of the resource.
    ipam_scope_id str
    Ipam scope id.
    name_regex str
    output_file str
    pool_region_id str
    The effective region of the IPAM address pool.
    resource_group_id str
    The ID of the resource group.
    source_ipam_pool_id str
    The instance ID of the source IPAM address pool.> If this parameter is not entered, the created address pool is the parent address pool.
    tags Mapping[str, str]
    The tag of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    ids List<String>
    A list of Ipam Pool IDs.
    names List<String>
    A list of name of Ipam Pools.
    pools List<Property Map>
    A list of Ipam Pool Entries. Each element contains the following attributes:
    ipamPoolId String
    The first ID of the resource.
    ipamPoolName String
    The name of the resource.
    ipamScopeId String
    Ipam scope id.
    nameRegex String
    outputFile String
    poolRegionId String
    The effective region of the IPAM address pool.
    resourceGroupId String
    The ID of the resource group.
    sourceIpamPoolId String
    The instance ID of the source IPAM address pool.> If this parameter is not entered, the created address pool is the parent address pool.
    tags Map<String>
    The tag of the resource.

    Supporting Types

    GetIpamIpamPoolsPool

    AllocationDefaultCidrMask int
    The default network mask assigned by the IPAM address pool.IPv4 network mask value range: 0 to 32 bits.
    AllocationMaxCidrMask int
    The maximum network mask assigned by the IPAM address pool.IPv4 network mask value range: 0 to 32 bits.
    AllocationMinCidrMask int
    The minimum Network mask assigned by the IPAM address pool.IPv4 network mask value range: 0 to 32 bits.
    AutoImport bool
    Whether the automatic import function is enabled for the address pool.
    CreateTime string
    The creation time of the resource.
    HasSubPool bool
    Whether it is a child address pool. Value:-true: Yes.-false: No.
    Id string
    The ID of the resource supplied above.
    IpVersion string
    The IP protocol version. Currently, only IPv4 is supported * *.
    IpamId string
    Ipam id.
    IpamPoolDescription string
    The description of the IPAM address pool.It must be 2 to 256 characters in length and must start with an English letter or a Chinese character, but cannot start with 'http:// 'or 'https. If it is not filled in, it is empty. The default value is empty.
    IpamPoolId string
    The first ID of the resource.
    IpamPoolName string
    The name of the resource.
    IpamScopeId string
    Ipam scope id.
    PoolDepth int
    The depth of the IPAM address pool. Value range: **0 to 10 * *.
    PoolRegionId string
    The effective region of the IPAM address pool.
    RegionId string
    The region ID of the resource.
    ResourceGroupId string
    The ID of the resource group.
    SourceIpamPoolId string
    The instance ID of the source IPAM address pool.> If this parameter is not entered, the created address pool is the parent address pool.
    Status string
    The status of the resource.
    Tags Dictionary<string, string>
    The tag of the resource.
    AllocationDefaultCidrMask int
    The default network mask assigned by the IPAM address pool.IPv4 network mask value range: 0 to 32 bits.
    AllocationMaxCidrMask int
    The maximum network mask assigned by the IPAM address pool.IPv4 network mask value range: 0 to 32 bits.
    AllocationMinCidrMask int
    The minimum Network mask assigned by the IPAM address pool.IPv4 network mask value range: 0 to 32 bits.
    AutoImport bool
    Whether the automatic import function is enabled for the address pool.
    CreateTime string
    The creation time of the resource.
    HasSubPool bool
    Whether it is a child address pool. Value:-true: Yes.-false: No.
    Id string
    The ID of the resource supplied above.
    IpVersion string
    The IP protocol version. Currently, only IPv4 is supported * *.
    IpamId string
    Ipam id.
    IpamPoolDescription string
    The description of the IPAM address pool.It must be 2 to 256 characters in length and must start with an English letter or a Chinese character, but cannot start with 'http:// 'or 'https. If it is not filled in, it is empty. The default value is empty.
    IpamPoolId string
    The first ID of the resource.
    IpamPoolName string
    The name of the resource.
    IpamScopeId string
    Ipam scope id.
    PoolDepth int
    The depth of the IPAM address pool. Value range: **0 to 10 * *.
    PoolRegionId string
    The effective region of the IPAM address pool.
    RegionId string
    The region ID of the resource.
    ResourceGroupId string
    The ID of the resource group.
    SourceIpamPoolId string
    The instance ID of the source IPAM address pool.> If this parameter is not entered, the created address pool is the parent address pool.
    Status string
    The status of the resource.
    Tags map[string]string
    The tag of the resource.
    allocationDefaultCidrMask Integer
    The default network mask assigned by the IPAM address pool.IPv4 network mask value range: 0 to 32 bits.
    allocationMaxCidrMask Integer
    The maximum network mask assigned by the IPAM address pool.IPv4 network mask value range: 0 to 32 bits.
    allocationMinCidrMask Integer
    The minimum Network mask assigned by the IPAM address pool.IPv4 network mask value range: 0 to 32 bits.
    autoImport Boolean
    Whether the automatic import function is enabled for the address pool.
    createTime String
    The creation time of the resource.
    hasSubPool Boolean
    Whether it is a child address pool. Value:-true: Yes.-false: No.
    id String
    The ID of the resource supplied above.
    ipVersion String
    The IP protocol version. Currently, only IPv4 is supported * *.
    ipamId String
    Ipam id.
    ipamPoolDescription String
    The description of the IPAM address pool.It must be 2 to 256 characters in length and must start with an English letter or a Chinese character, but cannot start with 'http:// 'or 'https. If it is not filled in, it is empty. The default value is empty.
    ipamPoolId String
    The first ID of the resource.
    ipamPoolName String
    The name of the resource.
    ipamScopeId String
    Ipam scope id.
    poolDepth Integer
    The depth of the IPAM address pool. Value range: **0 to 10 * *.
    poolRegionId String
    The effective region of the IPAM address pool.
    regionId String
    The region ID of the resource.
    resourceGroupId String
    The ID of the resource group.
    sourceIpamPoolId String
    The instance ID of the source IPAM address pool.> If this parameter is not entered, the created address pool is the parent address pool.
    status String
    The status of the resource.
    tags Map<String,String>
    The tag of the resource.
    allocationDefaultCidrMask number
    The default network mask assigned by the IPAM address pool.IPv4 network mask value range: 0 to 32 bits.
    allocationMaxCidrMask number
    The maximum network mask assigned by the IPAM address pool.IPv4 network mask value range: 0 to 32 bits.
    allocationMinCidrMask number
    The minimum Network mask assigned by the IPAM address pool.IPv4 network mask value range: 0 to 32 bits.
    autoImport boolean
    Whether the automatic import function is enabled for the address pool.
    createTime string
    The creation time of the resource.
    hasSubPool boolean
    Whether it is a child address pool. Value:-true: Yes.-false: No.
    id string
    The ID of the resource supplied above.
    ipVersion string
    The IP protocol version. Currently, only IPv4 is supported * *.
    ipamId string
    Ipam id.
    ipamPoolDescription string
    The description of the IPAM address pool.It must be 2 to 256 characters in length and must start with an English letter or a Chinese character, but cannot start with 'http:// 'or 'https. If it is not filled in, it is empty. The default value is empty.
    ipamPoolId string
    The first ID of the resource.
    ipamPoolName string
    The name of the resource.
    ipamScopeId string
    Ipam scope id.
    poolDepth number
    The depth of the IPAM address pool. Value range: **0 to 10 * *.
    poolRegionId string
    The effective region of the IPAM address pool.
    regionId string
    The region ID of the resource.
    resourceGroupId string
    The ID of the resource group.
    sourceIpamPoolId string
    The instance ID of the source IPAM address pool.> If this parameter is not entered, the created address pool is the parent address pool.
    status string
    The status of the resource.
    tags {[key: string]: string}
    The tag of the resource.
    allocation_default_cidr_mask int
    The default network mask assigned by the IPAM address pool.IPv4 network mask value range: 0 to 32 bits.
    allocation_max_cidr_mask int
    The maximum network mask assigned by the IPAM address pool.IPv4 network mask value range: 0 to 32 bits.
    allocation_min_cidr_mask int
    The minimum Network mask assigned by the IPAM address pool.IPv4 network mask value range: 0 to 32 bits.
    auto_import bool
    Whether the automatic import function is enabled for the address pool.
    create_time str
    The creation time of the resource.
    has_sub_pool bool
    Whether it is a child address pool. Value:-true: Yes.-false: No.
    id str
    The ID of the resource supplied above.
    ip_version str
    The IP protocol version. Currently, only IPv4 is supported * *.
    ipam_id str
    Ipam id.
    ipam_pool_description str
    The description of the IPAM address pool.It must be 2 to 256 characters in length and must start with an English letter or a Chinese character, but cannot start with 'http:// 'or 'https. If it is not filled in, it is empty. The default value is empty.
    ipam_pool_id str
    The first ID of the resource.
    ipam_pool_name str
    The name of the resource.
    ipam_scope_id str
    Ipam scope id.
    pool_depth int
    The depth of the IPAM address pool. Value range: **0 to 10 * *.
    pool_region_id str
    The effective region of the IPAM address pool.
    region_id str
    The region ID of the resource.
    resource_group_id str
    The ID of the resource group.
    source_ipam_pool_id str
    The instance ID of the source IPAM address pool.> If this parameter is not entered, the created address pool is the parent address pool.
    status str
    The status of the resource.
    tags Mapping[str, str]
    The tag of the resource.
    allocationDefaultCidrMask Number
    The default network mask assigned by the IPAM address pool.IPv4 network mask value range: 0 to 32 bits.
    allocationMaxCidrMask Number
    The maximum network mask assigned by the IPAM address pool.IPv4 network mask value range: 0 to 32 bits.
    allocationMinCidrMask Number
    The minimum Network mask assigned by the IPAM address pool.IPv4 network mask value range: 0 to 32 bits.
    autoImport Boolean
    Whether the automatic import function is enabled for the address pool.
    createTime String
    The creation time of the resource.
    hasSubPool Boolean
    Whether it is a child address pool. Value:-true: Yes.-false: No.
    id String
    The ID of the resource supplied above.
    ipVersion String
    The IP protocol version. Currently, only IPv4 is supported * *.
    ipamId String
    Ipam id.
    ipamPoolDescription String
    The description of the IPAM address pool.It must be 2 to 256 characters in length and must start with an English letter or a Chinese character, but cannot start with 'http:// 'or 'https. If it is not filled in, it is empty. The default value is empty.
    ipamPoolId String
    The first ID of the resource.
    ipamPoolName String
    The name of the resource.
    ipamScopeId String
    Ipam scope id.
    poolDepth Number
    The depth of the IPAM address pool. Value range: **0 to 10 * *.
    poolRegionId String
    The effective region of the IPAM address pool.
    regionId String
    The region ID of the resource.
    resourceGroupId String
    The ID of the resource group.
    sourceIpamPoolId String
    The instance ID of the source IPAM address pool.> If this parameter is not entered, the created address pool is the parent address pool.
    status String
    The status of the resource.
    tags Map<String>
    The tag of the resource.

    Package Details

    Repository
    Alibaba Cloud pulumi/pulumi-alicloud
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the alicloud Terraform Provider.
    alicloud logo
    Alibaba Cloud v3.75.0 published on Friday, Mar 7, 2025 by Pulumi