alicloud.vpc.PublicIpAddressPoolCidrBlock

Provides a VPC Public Ip Address Pool Cidr Block resource.

For information about VPC Public Ip Address Pool Cidr Block and how to use it, see What is Public Ip Address Pool Cidr Block.

NOTE: Available in v1.189.0+.

NOTE: Only users who have the required permissions can use the IP address pool feature of Elastic IP Address (EIP). To apply for the required permissions, submit a ticket.

Example Usage

Basic Usage

using System.Collections.Generic;
using Pulumi;
using AliCloud = Pulumi.AliCloud;

return await Deployment.RunAsync(() => 
{
    var defaultPublicIpAddressPool = new AliCloud.Vpc.PublicIpAddressPool("defaultPublicIpAddressPool", new()
    {
        PublicIpAddressPoolName = "example_value",
        Isp = "BGP",
        Description = "example_value",
    });

    var defaultPublicIpAddressPoolCidrBlock = new AliCloud.Vpc.PublicIpAddressPoolCidrBlock("defaultPublicIpAddressPoolCidrBlock", new()
    {
        PublicIpAddressPoolId = defaultPublicIpAddressPool.Id,
        CidrBlock = "your_cidr_block",
    });

});
package main

import (
	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/vpc"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		defaultPublicIpAddressPool, err := vpc.NewPublicIpAddressPool(ctx, "defaultPublicIpAddressPool", &vpc.PublicIpAddressPoolArgs{
			PublicIpAddressPoolName: pulumi.String("example_value"),
			Isp:                     pulumi.String("BGP"),
			Description:             pulumi.String("example_value"),
		})
		if err != nil {
			return err
		}
		_, err = vpc.NewPublicIpAddressPoolCidrBlock(ctx, "defaultPublicIpAddressPoolCidrBlock", &vpc.PublicIpAddressPoolCidrBlockArgs{
			PublicIpAddressPoolId: defaultPublicIpAddressPool.ID(),
			CidrBlock:             pulumi.String("your_cidr_block"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.vpc.PublicIpAddressPool;
import com.pulumi.alicloud.vpc.PublicIpAddressPoolArgs;
import com.pulumi.alicloud.vpc.PublicIpAddressPoolCidrBlock;
import com.pulumi.alicloud.vpc.PublicIpAddressPoolCidrBlockArgs;
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) {
        var defaultPublicIpAddressPool = new PublicIpAddressPool("defaultPublicIpAddressPool", PublicIpAddressPoolArgs.builder()        
            .publicIpAddressPoolName("example_value")
            .isp("BGP")
            .description("example_value")
            .build());

        var defaultPublicIpAddressPoolCidrBlock = new PublicIpAddressPoolCidrBlock("defaultPublicIpAddressPoolCidrBlock", PublicIpAddressPoolCidrBlockArgs.builder()        
            .publicIpAddressPoolId(defaultPublicIpAddressPool.id())
            .cidrBlock("your_cidr_block")
            .build());

    }
}
import pulumi
import pulumi_alicloud as alicloud

default_public_ip_address_pool = alicloud.vpc.PublicIpAddressPool("defaultPublicIpAddressPool",
    public_ip_address_pool_name="example_value",
    isp="BGP",
    description="example_value")
default_public_ip_address_pool_cidr_block = alicloud.vpc.PublicIpAddressPoolCidrBlock("defaultPublicIpAddressPoolCidrBlock",
    public_ip_address_pool_id=default_public_ip_address_pool.id,
    cidr_block="your_cidr_block")
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";

const defaultPublicIpAddressPool = new alicloud.vpc.PublicIpAddressPool("defaultPublicIpAddressPool", {
    publicIpAddressPoolName: "example_value",
    isp: "BGP",
    description: "example_value",
});
const defaultPublicIpAddressPoolCidrBlock = new alicloud.vpc.PublicIpAddressPoolCidrBlock("defaultPublicIpAddressPoolCidrBlock", {
    publicIpAddressPoolId: defaultPublicIpAddressPool.id,
    cidrBlock: "your_cidr_block",
});
resources:
  defaultPublicIpAddressPool:
    type: alicloud:vpc:PublicIpAddressPool
    properties:
      publicIpAddressPoolName: example_value
      isp: BGP
      description: example_value
  defaultPublicIpAddressPoolCidrBlock:
    type: alicloud:vpc:PublicIpAddressPoolCidrBlock
    properties:
      publicIpAddressPoolId: ${defaultPublicIpAddressPool.id}
      cidrBlock: your_cidr_block

Create PublicIpAddressPoolCidrBlock Resource

new PublicIpAddressPoolCidrBlock(name: string, args: PublicIpAddressPoolCidrBlockArgs, opts?: CustomResourceOptions);
@overload
def PublicIpAddressPoolCidrBlock(resource_name: str,
                                 opts: Optional[ResourceOptions] = None,
                                 cidr_block: Optional[str] = None,
                                 public_ip_address_pool_id: Optional[str] = None)
@overload
def PublicIpAddressPoolCidrBlock(resource_name: str,
                                 args: PublicIpAddressPoolCidrBlockArgs,
                                 opts: Optional[ResourceOptions] = None)
func NewPublicIpAddressPoolCidrBlock(ctx *Context, name string, args PublicIpAddressPoolCidrBlockArgs, opts ...ResourceOption) (*PublicIpAddressPoolCidrBlock, error)
public PublicIpAddressPoolCidrBlock(string name, PublicIpAddressPoolCidrBlockArgs args, CustomResourceOptions? opts = null)
public PublicIpAddressPoolCidrBlock(String name, PublicIpAddressPoolCidrBlockArgs args)
public PublicIpAddressPoolCidrBlock(String name, PublicIpAddressPoolCidrBlockArgs args, CustomResourceOptions options)
type: alicloud:vpc:PublicIpAddressPoolCidrBlock
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

name string
The unique name of the resource.
args PublicIpAddressPoolCidrBlockArgs
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 PublicIpAddressPoolCidrBlockArgs
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 PublicIpAddressPoolCidrBlockArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args PublicIpAddressPoolCidrBlockArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name String
The unique name of the resource.
args PublicIpAddressPoolCidrBlockArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

PublicIpAddressPoolCidrBlock Resource Properties

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

Inputs

The PublicIpAddressPoolCidrBlock resource accepts the following input properties:

CidrBlock string

The CIDR block.

PublicIpAddressPoolId string

The ID of the VPC Public IP address pool.

CidrBlock string

The CIDR block.

PublicIpAddressPoolId string

The ID of the VPC Public IP address pool.

cidrBlock String

The CIDR block.

publicIpAddressPoolId String

The ID of the VPC Public IP address pool.

cidrBlock string

The CIDR block.

publicIpAddressPoolId string

The ID of the VPC Public IP address pool.

cidr_block str

The CIDR block.

public_ip_address_pool_id str

The ID of the VPC Public IP address pool.

cidrBlock String

The CIDR block.

publicIpAddressPoolId String

The ID of the VPC Public IP address pool.

Outputs

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

Id string

The provider-assigned unique ID for this managed resource.

Status string

The status of the VPC Public Ip Address Pool Cidr Block.

Id string

The provider-assigned unique ID for this managed resource.

Status string

The status of the VPC Public Ip Address Pool Cidr Block.

id String

The provider-assigned unique ID for this managed resource.

status String

The status of the VPC Public Ip Address Pool Cidr Block.

id string

The provider-assigned unique ID for this managed resource.

status string

The status of the VPC Public Ip Address Pool Cidr Block.

id str

The provider-assigned unique ID for this managed resource.

status str

The status of the VPC Public Ip Address Pool Cidr Block.

id String

The provider-assigned unique ID for this managed resource.

status String

The status of the VPC Public Ip Address Pool Cidr Block.

Look up Existing PublicIpAddressPoolCidrBlock Resource

Get an existing PublicIpAddressPoolCidrBlock 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?: PublicIpAddressPoolCidrBlockState, opts?: CustomResourceOptions): PublicIpAddressPoolCidrBlock
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        cidr_block: Optional[str] = None,
        public_ip_address_pool_id: Optional[str] = None,
        status: Optional[str] = None) -> PublicIpAddressPoolCidrBlock
func GetPublicIpAddressPoolCidrBlock(ctx *Context, name string, id IDInput, state *PublicIpAddressPoolCidrBlockState, opts ...ResourceOption) (*PublicIpAddressPoolCidrBlock, error)
public static PublicIpAddressPoolCidrBlock Get(string name, Input<string> id, PublicIpAddressPoolCidrBlockState? state, CustomResourceOptions? opts = null)
public static PublicIpAddressPoolCidrBlock get(String name, Output<String> id, PublicIpAddressPoolCidrBlockState 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:
CidrBlock string

The CIDR block.

PublicIpAddressPoolId string

The ID of the VPC Public IP address pool.

Status string

The status of the VPC Public Ip Address Pool Cidr Block.

CidrBlock string

The CIDR block.

PublicIpAddressPoolId string

The ID of the VPC Public IP address pool.

Status string

The status of the VPC Public Ip Address Pool Cidr Block.

cidrBlock String

The CIDR block.

publicIpAddressPoolId String

The ID of the VPC Public IP address pool.

status String

The status of the VPC Public Ip Address Pool Cidr Block.

cidrBlock string

The CIDR block.

publicIpAddressPoolId string

The ID of the VPC Public IP address pool.

status string

The status of the VPC Public Ip Address Pool Cidr Block.

cidr_block str

The CIDR block.

public_ip_address_pool_id str

The ID of the VPC Public IP address pool.

status str

The status of the VPC Public Ip Address Pool Cidr Block.

cidrBlock String

The CIDR block.

publicIpAddressPoolId String

The ID of the VPC Public IP address pool.

status String

The status of the VPC Public Ip Address Pool Cidr Block.

Import

VPC Public Ip Address Pool Cidr Block can be imported using the id, e.g.

 $ pulumi import alicloud:vpc/publicIpAddressPoolCidrBlock:PublicIpAddressPoolCidrBlock example <public_ip_address_pool_id>:<cidr_block>

Package Details

Repository
Alibaba Cloud pulumi/pulumi-alicloud
License
Apache-2.0
Notes

This Pulumi package is based on the alicloud Terraform Provider.