1. Packages
  2. Alibaba Cloud Provider
  3. API Docs
  4. vpc
  5. IpamIpamPool
Alibaba Cloud v3.66.0 published on Friday, Nov 15, 2024 by Pulumi

alicloud.vpc.IpamIpamPool

Explore with Pulumi AI

alicloud logo
Alibaba Cloud v3.66.0 published on Friday, Nov 15, 2024 by Pulumi

    Provides a Vpc Ipam Ipam Pool resource.

    IP Address Management Pool.

    For information about Vpc Ipam Ipam Pool and how to use it, see What is Ipam Pool.

    NOTE: Available since v1.234.0.

    Create IpamIpamPool Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new IpamIpamPool(name: string, args: IpamIpamPoolArgs, opts?: CustomResourceOptions);
    @overload
    def IpamIpamPool(resource_name: str,
                     args: IpamIpamPoolArgs,
                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def IpamIpamPool(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     ipam_scope_id: Optional[str] = None,
                     allocation_default_cidr_mask: Optional[int] = None,
                     allocation_max_cidr_mask: Optional[int] = None,
                     allocation_min_cidr_mask: Optional[int] = None,
                     auto_import: Optional[bool] = None,
                     clear_allocation_default_cidr_mask: Optional[bool] = None,
                     ip_version: Optional[str] = None,
                     ipam_pool_description: Optional[str] = None,
                     ipam_pool_name: Optional[str] = None,
                     pool_region_id: Optional[str] = None,
                     source_ipam_pool_id: Optional[str] = None,
                     tags: Optional[Mapping[str, str]] = None)
    func NewIpamIpamPool(ctx *Context, name string, args IpamIpamPoolArgs, opts ...ResourceOption) (*IpamIpamPool, error)
    public IpamIpamPool(string name, IpamIpamPoolArgs args, CustomResourceOptions? opts = null)
    public IpamIpamPool(String name, IpamIpamPoolArgs args)
    public IpamIpamPool(String name, IpamIpamPoolArgs args, CustomResourceOptions options)
    
    type: alicloud:vpc:IpamIpamPool
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args IpamIpamPoolArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args IpamIpamPoolArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args IpamIpamPoolArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args IpamIpamPoolArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args IpamIpamPoolArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var ipamIpamPoolResource = new AliCloud.Vpc.IpamIpamPool("ipamIpamPoolResource", new()
    {
        IpamScopeId = "string",
        AllocationDefaultCidrMask = 0,
        AllocationMaxCidrMask = 0,
        AllocationMinCidrMask = 0,
        AutoImport = false,
        ClearAllocationDefaultCidrMask = false,
        IpVersion = "string",
        IpamPoolDescription = "string",
        IpamPoolName = "string",
        PoolRegionId = "string",
        SourceIpamPoolId = "string",
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := vpc.NewIpamIpamPool(ctx, "ipamIpamPoolResource", &vpc.IpamIpamPoolArgs{
    	IpamScopeId:                    pulumi.String("string"),
    	AllocationDefaultCidrMask:      pulumi.Int(0),
    	AllocationMaxCidrMask:          pulumi.Int(0),
    	AllocationMinCidrMask:          pulumi.Int(0),
    	AutoImport:                     pulumi.Bool(false),
    	ClearAllocationDefaultCidrMask: pulumi.Bool(false),
    	IpVersion:                      pulumi.String("string"),
    	IpamPoolDescription:            pulumi.String("string"),
    	IpamPoolName:                   pulumi.String("string"),
    	PoolRegionId:                   pulumi.String("string"),
    	SourceIpamPoolId:               pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var ipamIpamPoolResource = new IpamIpamPool("ipamIpamPoolResource", IpamIpamPoolArgs.builder()
        .ipamScopeId("string")
        .allocationDefaultCidrMask(0)
        .allocationMaxCidrMask(0)
        .allocationMinCidrMask(0)
        .autoImport(false)
        .clearAllocationDefaultCidrMask(false)
        .ipVersion("string")
        .ipamPoolDescription("string")
        .ipamPoolName("string")
        .poolRegionId("string")
        .sourceIpamPoolId("string")
        .tags(Map.of("string", "string"))
        .build());
    
    ipam_ipam_pool_resource = alicloud.vpc.IpamIpamPool("ipamIpamPoolResource",
        ipam_scope_id="string",
        allocation_default_cidr_mask=0,
        allocation_max_cidr_mask=0,
        allocation_min_cidr_mask=0,
        auto_import=False,
        clear_allocation_default_cidr_mask=False,
        ip_version="string",
        ipam_pool_description="string",
        ipam_pool_name="string",
        pool_region_id="string",
        source_ipam_pool_id="string",
        tags={
            "string": "string",
        })
    
    const ipamIpamPoolResource = new alicloud.vpc.IpamIpamPool("ipamIpamPoolResource", {
        ipamScopeId: "string",
        allocationDefaultCidrMask: 0,
        allocationMaxCidrMask: 0,
        allocationMinCidrMask: 0,
        autoImport: false,
        clearAllocationDefaultCidrMask: false,
        ipVersion: "string",
        ipamPoolDescription: "string",
        ipamPoolName: "string",
        poolRegionId: "string",
        sourceIpamPoolId: "string",
        tags: {
            string: "string",
        },
    });
    
    type: alicloud:vpc:IpamIpamPool
    properties:
        allocationDefaultCidrMask: 0
        allocationMaxCidrMask: 0
        allocationMinCidrMask: 0
        autoImport: false
        clearAllocationDefaultCidrMask: false
        ipVersion: string
        ipamPoolDescription: string
        ipamPoolName: string
        ipamScopeId: string
        poolRegionId: string
        sourceIpamPoolId: string
        tags:
            string: string
    

    IpamIpamPool Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The IpamIpamPool resource accepts the following input properties:

    IpamScopeId string
    Ipam scope id.
    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.
    ClearAllocationDefaultCidrMask bool
    Whether to clear the default network mask of the IPAM address pool. Value:
    IpVersion string
    The IP protocol version. Currently, only IPv4 is supported * *.
    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.

    IpamPoolName string
    The name of the resource.
    PoolRegionId string
    The effective region of the IPAM address pool.
    SourceIpamPoolId string

    The instance ID of the source IPAM address pool.

    NOTE: If this parameter is not entered, the created address pool is the parent address pool.

    Tags Dictionary<string, string>
    The tag of the resource.
    IpamScopeId string
    Ipam scope id.
    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.
    ClearAllocationDefaultCidrMask bool
    Whether to clear the default network mask of the IPAM address pool. Value:
    IpVersion string
    The IP protocol version. Currently, only IPv4 is supported * *.
    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.

    IpamPoolName string
    The name of the resource.
    PoolRegionId string
    The effective region of the IPAM address pool.
    SourceIpamPoolId string

    The instance ID of the source IPAM address pool.

    NOTE: If this parameter is not entered, the created address pool is the parent address pool.

    Tags map[string]string
    The tag of the resource.
    ipamScopeId String
    Ipam scope id.
    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.
    clearAllocationDefaultCidrMask Boolean
    Whether to clear the default network mask of the IPAM address pool. Value:
    ipVersion String
    The IP protocol version. Currently, only IPv4 is supported * *.
    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.

    ipamPoolName String
    The name of the resource.
    poolRegionId String
    The effective region of the IPAM address pool.
    sourceIpamPoolId String

    The instance ID of the source IPAM address pool.

    NOTE: If this parameter is not entered, the created address pool is the parent address pool.

    tags Map<String,String>
    The tag of the resource.
    ipamScopeId string
    Ipam scope id.
    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.
    clearAllocationDefaultCidrMask boolean
    Whether to clear the default network mask of the IPAM address pool. Value:
    ipVersion string
    The IP protocol version. Currently, only IPv4 is supported * *.
    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.

    ipamPoolName string
    The name of the resource.
    poolRegionId string
    The effective region of the IPAM address pool.
    sourceIpamPoolId string

    The instance ID of the source IPAM address pool.

    NOTE: If this parameter is not entered, the created address pool is the parent address pool.

    tags {[key: string]: string}
    The tag of the resource.
    ipam_scope_id str
    Ipam scope id.
    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.
    clear_allocation_default_cidr_mask bool
    Whether to clear the default network mask of the IPAM address pool. Value:
    ip_version str
    The IP protocol version. Currently, only IPv4 is supported * *.
    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_name str
    The name of the resource.
    pool_region_id str
    The effective region of the IPAM address pool.
    source_ipam_pool_id str

    The instance ID of the source IPAM address pool.

    NOTE: If this parameter is not entered, the created address pool is the parent address pool.

    tags Mapping[str, str]
    The tag of the resource.
    ipamScopeId String
    Ipam scope id.
    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.
    clearAllocationDefaultCidrMask Boolean
    Whether to clear the default network mask of the IPAM address pool. Value:
    ipVersion String
    The IP protocol version. Currently, only IPv4 is supported * *.
    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.

    ipamPoolName String
    The name of the resource.
    poolRegionId String
    The effective region of the IPAM address pool.
    sourceIpamPoolId String

    The instance ID of the source IPAM address pool.

    NOTE: If this parameter is not entered, the created address pool is the parent address pool.

    tags Map<String>
    The tag of the resource.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the IpamIpamPool resource produces the following output properties:

    CreateTime string
    The creation time of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    RegionId string
    The ID of the IPAM hosting region.
    Status string
    The status of the resource.
    CreateTime string
    The creation time of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    RegionId string
    The ID of the IPAM hosting region.
    Status string
    The status of the resource.
    createTime String
    The creation time of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    regionId String
    The ID of the IPAM hosting region.
    status String
    The status of the resource.
    createTime string
    The creation time of the resource.
    id string
    The provider-assigned unique ID for this managed resource.
    regionId string
    The ID of the IPAM hosting region.
    status string
    The status of the resource.
    create_time str
    The creation time of the resource.
    id str
    The provider-assigned unique ID for this managed resource.
    region_id str
    The ID of the IPAM hosting region.
    status str
    The status of the resource.
    createTime String
    The creation time of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    regionId String
    The ID of the IPAM hosting region.
    status String
    The status of the resource.

    Look up Existing IpamIpamPool Resource

    Get an existing IpamIpamPool resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: IpamIpamPoolState, opts?: CustomResourceOptions): IpamIpamPool
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            allocation_default_cidr_mask: Optional[int] = None,
            allocation_max_cidr_mask: Optional[int] = None,
            allocation_min_cidr_mask: Optional[int] = None,
            auto_import: Optional[bool] = None,
            clear_allocation_default_cidr_mask: Optional[bool] = None,
            create_time: Optional[str] = None,
            ip_version: Optional[str] = None,
            ipam_pool_description: Optional[str] = None,
            ipam_pool_name: Optional[str] = None,
            ipam_scope_id: Optional[str] = None,
            pool_region_id: Optional[str] = None,
            region_id: Optional[str] = None,
            source_ipam_pool_id: Optional[str] = None,
            status: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None) -> IpamIpamPool
    func GetIpamIpamPool(ctx *Context, name string, id IDInput, state *IpamIpamPoolState, opts ...ResourceOption) (*IpamIpamPool, error)
    public static IpamIpamPool Get(string name, Input<string> id, IpamIpamPoolState? state, CustomResourceOptions? opts = null)
    public static IpamIpamPool get(String name, Output<String> id, IpamIpamPoolState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    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.
    ClearAllocationDefaultCidrMask bool
    Whether to clear the default network mask of the IPAM address pool. Value:
    CreateTime string
    The creation time of the resource.
    IpVersion string
    The IP protocol version. Currently, only IPv4 is supported * *.
    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.

    IpamPoolName string
    The name of the resource.
    IpamScopeId string
    Ipam scope id.
    PoolRegionId string
    The effective region of the IPAM address pool.
    RegionId string
    The ID of the IPAM hosting region.
    SourceIpamPoolId string

    The instance ID of the source IPAM address pool.

    NOTE: 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.
    ClearAllocationDefaultCidrMask bool
    Whether to clear the default network mask of the IPAM address pool. Value:
    CreateTime string
    The creation time of the resource.
    IpVersion string
    The IP protocol version. Currently, only IPv4 is supported * *.
    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.

    IpamPoolName string
    The name of the resource.
    IpamScopeId string
    Ipam scope id.
    PoolRegionId string
    The effective region of the IPAM address pool.
    RegionId string
    The ID of the IPAM hosting region.
    SourceIpamPoolId string

    The instance ID of the source IPAM address pool.

    NOTE: 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.
    clearAllocationDefaultCidrMask Boolean
    Whether to clear the default network mask of the IPAM address pool. Value:
    createTime String
    The creation time of the resource.
    ipVersion String
    The IP protocol version. Currently, only IPv4 is supported * *.
    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.

    ipamPoolName String
    The name of the resource.
    ipamScopeId String
    Ipam scope id.
    poolRegionId String
    The effective region of the IPAM address pool.
    regionId String
    The ID of the IPAM hosting region.
    sourceIpamPoolId String

    The instance ID of the source IPAM address pool.

    NOTE: 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.
    clearAllocationDefaultCidrMask boolean
    Whether to clear the default network mask of the IPAM address pool. Value:
    createTime string
    The creation time of the resource.
    ipVersion string
    The IP protocol version. Currently, only IPv4 is supported * *.
    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.

    ipamPoolName string
    The name of the resource.
    ipamScopeId string
    Ipam scope id.
    poolRegionId string
    The effective region of the IPAM address pool.
    regionId string
    The ID of the IPAM hosting region.
    sourceIpamPoolId string

    The instance ID of the source IPAM address pool.

    NOTE: 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.
    clear_allocation_default_cidr_mask bool
    Whether to clear the default network mask of the IPAM address pool. Value:
    create_time str
    The creation time of the resource.
    ip_version str
    The IP protocol version. Currently, only IPv4 is supported * *.
    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_name str
    The name of the resource.
    ipam_scope_id str
    Ipam scope id.
    pool_region_id str
    The effective region of the IPAM address pool.
    region_id str
    The ID of the IPAM hosting region.
    source_ipam_pool_id str

    The instance ID of the source IPAM address pool.

    NOTE: 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.
    clearAllocationDefaultCidrMask Boolean
    Whether to clear the default network mask of the IPAM address pool. Value:
    createTime String
    The creation time of the resource.
    ipVersion String
    The IP protocol version. Currently, only IPv4 is supported * *.
    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.

    ipamPoolName String
    The name of the resource.
    ipamScopeId String
    Ipam scope id.
    poolRegionId String
    The effective region of the IPAM address pool.
    regionId String
    The ID of the IPAM hosting region.
    sourceIpamPoolId String

    The instance ID of the source IPAM address pool.

    NOTE: 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.

    Import

    Vpc Ipam Ipam Pool can be imported using the id, e.g.

    $ pulumi import alicloud:vpc/ipamIpamPool:IpamIpamPool example <id>
    

    To learn more about importing existing cloud resources, see Importing resources.

    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.66.0 published on Friday, Nov 15, 2024 by Pulumi