Allocate a CIDR from an IPAM pool. The Region you use should be the IPAM pool locale. The locale is the Amazon Web Services Region where this IPAM pool is available for allocations.
See https://www.paws-r-sdk.com/docs/ec2_allocate_ipam_pool_cidr/ for full documentation.
Usage
ec2_allocate_ipam_pool_cidr(
DryRun = NULL,
IpamPoolId,
Cidr = NULL,
NetmaskLength = NULL,
ClientToken = NULL,
Description = NULL,
PreviewNextCidr = NULL,
AllowedCidrs = NULL,
DisallowedCidrs = NULL,
TagSpecifications = NULL
)Arguments
- DryRun
A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is
DryRunOperation. Otherwise, it isUnauthorizedOperation.- IpamPoolId
[required] The ID of the IPAM pool from which you would like to allocate a CIDR.
- Cidr
The CIDR you would like to allocate from the IPAM pool. Note the following:
If there is no DefaultNetmaskLength allocation rule set on the pool, you must specify either the NetmaskLength or the CIDR.
If the DefaultNetmaskLength allocation rule is set on the pool, you can specify either the NetmaskLength or the CIDR and the DefaultNetmaskLength allocation rule will be ignored.
Possible values: Any available IPv4 or IPv6 CIDR.
- NetmaskLength
The netmask length of the CIDR you would like to allocate from the IPAM pool. Note the following:
If there is no DefaultNetmaskLength allocation rule set on the pool, you must specify either the NetmaskLength or the CIDR.
If the DefaultNetmaskLength allocation rule is set on the pool, you can specify either the NetmaskLength or the CIDR and the DefaultNetmaskLength allocation rule will be ignored.
Possible netmask lengths for IPv4 addresses are 0 - 32. Possible netmask lengths for IPv6 addresses are 0 - 128.
- ClientToken
A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see Ensuring idempotency.
- Description
A description for the allocation.
- PreviewNextCidr
A preview of the next available CIDR in a pool.
- AllowedCidrs
Include a particular CIDR range that can be returned by the pool. Allowed CIDRs are only allowed if using netmask length for allocation.
- DisallowedCidrs
Exclude a particular CIDR range from being returned by the pool. Disallowed CIDRs are only allowed if using netmask length for allocation.
The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key
Ownerand the valueTeamA, specifytag:Ownerfor the filter name andTeamAfor the filter value.If you specify tags, the request is authorized against the allocation resource in addition to the pool resource.