published on Monday, Aug 24, 2026 by Volcengine
published on Monday, Aug 24, 2026 by Volcengine
IPAM。
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as volcenginecc from "@volcengine/pulumi-volcenginecc";
const example = new volcenginecc.vpc.Ipam("example", {
operatingRegions: ["cn-beijing"],
projectName: "default",
ipamName: "tf-ipam-full",
description: "created by terraform full case",
tags: [
{
key: "case",
value: "tf-c02",
},
{
key: "env",
value: "terraform",
},
],
});
import pulumi
import pulumi_volcenginecc as volcenginecc
example = volcenginecc.vpc.Ipam("example",
operating_regions=["cn-beijing"],
project_name="default",
ipam_name="tf-ipam-full",
description="created by terraform full case",
tags=[
{
"key": "case",
"value": "tf-c02",
},
{
"key": "env",
"value": "terraform",
},
])
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/volcengine/pulumi-volcenginecc/sdk/go/volcenginecc/vpc"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := vpc.NewIpam(ctx, "example", &vpc.IpamArgs{
OperatingRegions: pulumi.StringArray{
pulumi.String("cn-beijing"),
},
ProjectName: pulumi.String("default"),
IpamName: pulumi.String("tf-ipam-full"),
Description: pulumi.String("created by terraform full case"),
Tags: vpc.IpamTagArray{
&vpc.IpamTagArgs{
Key: pulumi.String("case"),
Value: pulumi.String("tf-c02"),
},
&vpc.IpamTagArgs{
Key: pulumi.String("env"),
Value: pulumi.String("terraform"),
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Volcenginecc = Volcengine.Pulumi.Volcenginecc;
return await Deployment.RunAsync(() =>
{
var example = new Volcenginecc.Vpc.Ipam("example", new()
{
OperatingRegions = new[]
{
"cn-beijing",
},
ProjectName = "default",
IpamName = "tf-ipam-full",
Description = "created by terraform full case",
Tags = new[]
{
new Volcenginecc.Vpc.Inputs.IpamTagArgs
{
Key = "case",
Value = "tf-c02",
},
new Volcenginecc.Vpc.Inputs.IpamTagArgs
{
Key = "env",
Value = "terraform",
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.volcengine.volcenginecc.vpc.Ipam;
import com.volcengine.volcenginecc.vpc.IpamArgs;
import com.pulumi.volcenginecc.vpc.inputs.IpamTagArgs;
import java.util.ArrayList;
import java.util.Arrays;
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 example = new Ipam("example", IpamArgs.builder()
.operatingRegions("cn-beijing")
.projectName("default")
.ipamName("tf-ipam-full")
.description("created by terraform full case")
.tags(
IpamTagArgs.builder()
.key("case")
.value("tf-c02")
.build(),
IpamTagArgs.builder()
.key("env")
.value("terraform")
.build())
.build());
}
}
resources:
example:
type: volcenginecc:vpc:Ipam
properties:
operatingRegions:
- cn-beijing
projectName: default
ipamName: tf-ipam-full
description: created by terraform full case
tags:
- key: case
value: tf-c02
- key: env
value: terraform
pulumi {
required_providers {
volcenginecc = {
source = "pulumi/volcenginecc"
}
}
}
resource "volcenginecc_vpc_ipam" "example" {
operating_regions = ["cn-beijing"]
project_name = "default"
ipam_name = "tf-ipam-full"
description = "created by terraform full case"
tags {
key = "case"
value = "tf-c02"
}
tags {
key = "env"
value = "terraform"
}
}
Create Ipam Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Ipam(name: string, args: IpamArgs, opts?: CustomResourceOptions);@overload
def Ipam(resource_name: str,
args: IpamArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Ipam(resource_name: str,
opts: Optional[ResourceOptions] = None,
operating_regions: Optional[Sequence[str]] = None,
description: Optional[str] = None,
ipam_name: Optional[str] = None,
project_name: Optional[str] = None,
tags: Optional[Sequence[IpamTagArgs]] = None)func NewIpam(ctx *Context, name string, args IpamArgs, opts ...ResourceOption) (*Ipam, error)public Ipam(string name, IpamArgs args, CustomResourceOptions? opts = null)type: volcenginecc:vpc:Ipam
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "volcenginecc_vpc_ipam" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args IpamArgs
- 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 IpamArgs
- 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 IpamArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args IpamArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args IpamArgs
- 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 ipamResource = new Volcenginecc.Vpc.Ipam("ipamResource", new()
{
OperatingRegions = new[]
{
"string",
},
Description = "string",
IpamName = "string",
ProjectName = "string",
Tags = new[]
{
new Volcenginecc.Vpc.Inputs.IpamTagArgs
{
Key = "string",
Value = "string",
},
},
});
example, err := vpc.NewIpam(ctx, "ipamResource", &vpc.IpamArgs{
OperatingRegions: pulumi.StringArray{
pulumi.String("string"),
},
Description: pulumi.String("string"),
IpamName: pulumi.String("string"),
ProjectName: pulumi.String("string"),
Tags: vpc.IpamTagArray{
&vpc.IpamTagArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
})
resource "volcenginecc_vpc_ipam" "ipamResource" {
lifecycle {
create_before_destroy = true
}
operating_regions = ["string"]
description = "string"
ipam_name = "string"
project_name = "string"
tags {
key = "string"
value = "string"
}
}
var ipamResource = new Ipam("ipamResource", IpamArgs.builder()
.operatingRegions("string")
.description("string")
.ipamName("string")
.projectName("string")
.tags(IpamTagArgs.builder()
.key("string")
.value("string")
.build())
.build());
ipam_resource = volcenginecc.vpc.Ipam("ipamResource",
operating_regions=["string"],
description="string",
ipam_name="string",
project_name="string",
tags=[{
"key": "string",
"value": "string",
}])
const ipamResource = new volcenginecc.vpc.Ipam("ipamResource", {
operatingRegions: ["string"],
description: "string",
ipamName: "string",
projectName: "string",
tags: [{
key: "string",
value: "string",
}],
});
type: volcenginecc:vpc:Ipam
properties:
description: string
ipamName: string
operatingRegions:
- string
projectName: string
tags:
- key: string
value: string
Ipam 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 Ipam resource accepts the following input properties:
- Operating
Regions List<string> - IPAM Effective Region
- Description string
- Description
- Ipam
Name string - IPAM Name
- Project
Name string - Project Name
-
List<Volcengine.
Ipam Tag> - IPAM Tag Information Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- Operating
Regions []string - IPAM Effective Region
- Description string
- Description
- Ipam
Name string - IPAM Name
- Project
Name string - Project Name
-
[]Ipam
Tag Args - IPAM Tag Information Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- operating_
regions list(string) - IPAM Effective Region
- description string
- Description
- ipam_
name string - IPAM Name
- project_
name string - Project Name
- list(object)
- IPAM Tag Information Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- operating
Regions List<String> - IPAM Effective Region
- description String
- Description
- ipam
Name String - IPAM Name
- project
Name String - Project Name
-
List<Ipam
Tag> - IPAM Tag Information Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- operating
Regions string[] - IPAM Effective Region
- description string
- Description
- ipam
Name string - IPAM Name
- project
Name string - Project Name
-
Ipam
Tag[] - IPAM Tag Information Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- operating_
regions Sequence[str] - IPAM Effective Region
- description str
- Description
- ipam_
name str - IPAM Name
- project_
name str - Project Name
-
Sequence[Ipam
Tag Args] - IPAM Tag Information Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- operating
Regions List<String> - IPAM Effective Region
- description String
- Description
- ipam
Name String - IPAM Name
- project
Name String - Project Name
- List<Property Map>
- IPAM Tag Information Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
Outputs
All input properties are implicitly available as output properties. Additionally, the Ipam resource produces the following output properties:
- Account
Id string - Account ID
- Create
Time string - Creation Time
- Default
Resource stringDiscovery Association Id - Default Resource Discovery Association ID
- Default
Resource stringDiscovery Id - Default Resource Discovery Instance ID
- Id string
- The provider-assigned unique ID for this managed resource.
- Ipam
Id string - IPAM ID
- Ipam
Region stringId - Region ID
- Private
Default stringScope Id - System Default Created Private IPAM Scope
- Public
Default stringScope Id - System Default Created Public IPAM Scope
- Resource
Discovery intAssociation Count - Resource Discovery Association Count
- Scope
Count int - IPAM Scope Count
- Status string
- IPAM Status
- Update
Time string - Update Time
- Account
Id string - Account ID
- Create
Time string - Creation Time
- Default
Resource stringDiscovery Association Id - Default Resource Discovery Association ID
- Default
Resource stringDiscovery Id - Default Resource Discovery Instance ID
- Id string
- The provider-assigned unique ID for this managed resource.
- Ipam
Id string - IPAM ID
- Ipam
Region stringId - Region ID
- Private
Default stringScope Id - System Default Created Private IPAM Scope
- Public
Default stringScope Id - System Default Created Public IPAM Scope
- Resource
Discovery intAssociation Count - Resource Discovery Association Count
- Scope
Count int - IPAM Scope Count
- Status string
- IPAM Status
- Update
Time string - Update Time
- account_
id string - Account ID
- create_
time string - Creation Time
- default_
resource_ stringdiscovery_ association_ id - Default Resource Discovery Association ID
- default_
resource_ stringdiscovery_ id - Default Resource Discovery Instance ID
- id string
- The provider-assigned unique ID for this managed resource.
- ipam_
id string - IPAM ID
- ipam_
region_ stringid - Region ID
- private_
default_ stringscope_ id - System Default Created Private IPAM Scope
- public_
default_ stringscope_ id - System Default Created Public IPAM Scope
- resource_
discovery_ numberassociation_ count - Resource Discovery Association Count
- scope_
count number - IPAM Scope Count
- status string
- IPAM Status
- update_
time string - Update Time
- account
Id String - Account ID
- create
Time String - Creation Time
- default
Resource StringDiscovery Association Id - Default Resource Discovery Association ID
- default
Resource StringDiscovery Id - Default Resource Discovery Instance ID
- id String
- The provider-assigned unique ID for this managed resource.
- ipam
Id String - IPAM ID
- ipam
Region StringId - Region ID
- private
Default StringScope Id - System Default Created Private IPAM Scope
- public
Default StringScope Id - System Default Created Public IPAM Scope
- resource
Discovery IntegerAssociation Count - Resource Discovery Association Count
- scope
Count Integer - IPAM Scope Count
- status String
- IPAM Status
- update
Time String - Update Time
- account
Id string - Account ID
- create
Time string - Creation Time
- default
Resource stringDiscovery Association Id - Default Resource Discovery Association ID
- default
Resource stringDiscovery Id - Default Resource Discovery Instance ID
- id string
- The provider-assigned unique ID for this managed resource.
- ipam
Id string - IPAM ID
- ipam
Region stringId - Region ID
- private
Default stringScope Id - System Default Created Private IPAM Scope
- public
Default stringScope Id - System Default Created Public IPAM Scope
- resource
Discovery numberAssociation Count - Resource Discovery Association Count
- scope
Count number - IPAM Scope Count
- status string
- IPAM Status
- update
Time string - Update Time
- account_
id str - Account ID
- create_
time str - Creation Time
- default_
resource_ strdiscovery_ association_ id - Default Resource Discovery Association ID
- default_
resource_ strdiscovery_ id - Default Resource Discovery Instance ID
- id str
- The provider-assigned unique ID for this managed resource.
- ipam_
id str - IPAM ID
- ipam_
region_ strid - Region ID
- private_
default_ strscope_ id - System Default Created Private IPAM Scope
- public_
default_ strscope_ id - System Default Created Public IPAM Scope
- resource_
discovery_ intassociation_ count - Resource Discovery Association Count
- scope_
count int - IPAM Scope Count
- status str
- IPAM Status
- update_
time str - Update Time
- account
Id String - Account ID
- create
Time String - Creation Time
- default
Resource StringDiscovery Association Id - Default Resource Discovery Association ID
- default
Resource StringDiscovery Id - Default Resource Discovery Instance ID
- id String
- The provider-assigned unique ID for this managed resource.
- ipam
Id String - IPAM ID
- ipam
Region StringId - Region ID
- private
Default StringScope Id - System Default Created Private IPAM Scope
- public
Default StringScope Id - System Default Created Public IPAM Scope
- resource
Discovery NumberAssociation Count - Resource Discovery Association Count
- scope
Count Number - IPAM Scope Count
- status String
- IPAM Status
- update
Time String - Update Time
Look up Existing Ipam Resource
Get an existing Ipam 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?: IpamState, opts?: CustomResourceOptions): Ipam@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
account_id: Optional[str] = None,
create_time: Optional[str] = None,
default_resource_discovery_association_id: Optional[str] = None,
default_resource_discovery_id: Optional[str] = None,
description: Optional[str] = None,
ipam_id: Optional[str] = None,
ipam_name: Optional[str] = None,
ipam_region_id: Optional[str] = None,
operating_regions: Optional[Sequence[str]] = None,
private_default_scope_id: Optional[str] = None,
project_name: Optional[str] = None,
public_default_scope_id: Optional[str] = None,
resource_discovery_association_count: Optional[int] = None,
scope_count: Optional[int] = None,
status: Optional[str] = None,
tags: Optional[Sequence[IpamTagArgs]] = None,
update_time: Optional[str] = None) -> Ipamfunc GetIpam(ctx *Context, name string, id IDInput, state *IpamState, opts ...ResourceOption) (*Ipam, error)public static Ipam Get(string name, Input<string> id, IpamState? state, CustomResourceOptions? opts = null)public static Ipam get(String name, Output<String> id, IpamState state, CustomResourceOptions options)resources: _: type: volcenginecc:vpc:Ipam get: id: ${id}import {
to = volcenginecc_vpc_ipam.example
id = "${id}"
}
- 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.
- Account
Id string - Account ID
- Create
Time string - Creation Time
- Default
Resource stringDiscovery Association Id - Default Resource Discovery Association ID
- Default
Resource stringDiscovery Id - Default Resource Discovery Instance ID
- Description string
- Description
- Ipam
Id string - IPAM ID
- Ipam
Name string - IPAM Name
- Ipam
Region stringId - Region ID
- Operating
Regions List<string> - IPAM Effective Region
- Private
Default stringScope Id - System Default Created Private IPAM Scope
- Project
Name string - Project Name
- Public
Default stringScope Id - System Default Created Public IPAM Scope
- Resource
Discovery intAssociation Count - Resource Discovery Association Count
- Scope
Count int - IPAM Scope Count
- Status string
- IPAM Status
-
List<Volcengine.
Ipam Tag> - IPAM Tag Information Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- Update
Time string - Update Time
- Account
Id string - Account ID
- Create
Time string - Creation Time
- Default
Resource stringDiscovery Association Id - Default Resource Discovery Association ID
- Default
Resource stringDiscovery Id - Default Resource Discovery Instance ID
- Description string
- Description
- Ipam
Id string - IPAM ID
- Ipam
Name string - IPAM Name
- Ipam
Region stringId - Region ID
- Operating
Regions []string - IPAM Effective Region
- Private
Default stringScope Id - System Default Created Private IPAM Scope
- Project
Name string - Project Name
- Public
Default stringScope Id - System Default Created Public IPAM Scope
- Resource
Discovery intAssociation Count - Resource Discovery Association Count
- Scope
Count int - IPAM Scope Count
- Status string
- IPAM Status
-
[]Ipam
Tag Args - IPAM Tag Information Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- Update
Time string - Update Time
- account_
id string - Account ID
- create_
time string - Creation Time
- default_
resource_ stringdiscovery_ association_ id - Default Resource Discovery Association ID
- default_
resource_ stringdiscovery_ id - Default Resource Discovery Instance ID
- description string
- Description
- ipam_
id string - IPAM ID
- ipam_
name string - IPAM Name
- ipam_
region_ stringid - Region ID
- operating_
regions list(string) - IPAM Effective Region
- private_
default_ stringscope_ id - System Default Created Private IPAM Scope
- project_
name string - Project Name
- public_
default_ stringscope_ id - System Default Created Public IPAM Scope
- resource_
discovery_ numberassociation_ count - Resource Discovery Association Count
- scope_
count number - IPAM Scope Count
- status string
- IPAM Status
- list(object)
- IPAM Tag Information Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- update_
time string - Update Time
- account
Id String - Account ID
- create
Time String - Creation Time
- default
Resource StringDiscovery Association Id - Default Resource Discovery Association ID
- default
Resource StringDiscovery Id - Default Resource Discovery Instance ID
- description String
- Description
- ipam
Id String - IPAM ID
- ipam
Name String - IPAM Name
- ipam
Region StringId - Region ID
- operating
Regions List<String> - IPAM Effective Region
- private
Default StringScope Id - System Default Created Private IPAM Scope
- project
Name String - Project Name
- public
Default StringScope Id - System Default Created Public IPAM Scope
- resource
Discovery IntegerAssociation Count - Resource Discovery Association Count
- scope
Count Integer - IPAM Scope Count
- status String
- IPAM Status
-
List<Ipam
Tag> - IPAM Tag Information Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- update
Time String - Update Time
- account
Id string - Account ID
- create
Time string - Creation Time
- default
Resource stringDiscovery Association Id - Default Resource Discovery Association ID
- default
Resource stringDiscovery Id - Default Resource Discovery Instance ID
- description string
- Description
- ipam
Id string - IPAM ID
- ipam
Name string - IPAM Name
- ipam
Region stringId - Region ID
- operating
Regions string[] - IPAM Effective Region
- private
Default stringScope Id - System Default Created Private IPAM Scope
- project
Name string - Project Name
- public
Default stringScope Id - System Default Created Public IPAM Scope
- resource
Discovery numberAssociation Count - Resource Discovery Association Count
- scope
Count number - IPAM Scope Count
- status string
- IPAM Status
-
Ipam
Tag[] - IPAM Tag Information Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- update
Time string - Update Time
- account_
id str - Account ID
- create_
time str - Creation Time
- default_
resource_ strdiscovery_ association_ id - Default Resource Discovery Association ID
- default_
resource_ strdiscovery_ id - Default Resource Discovery Instance ID
- description str
- Description
- ipam_
id str - IPAM ID
- ipam_
name str - IPAM Name
- ipam_
region_ strid - Region ID
- operating_
regions Sequence[str] - IPAM Effective Region
- private_
default_ strscope_ id - System Default Created Private IPAM Scope
- project_
name str - Project Name
- public_
default_ strscope_ id - System Default Created Public IPAM Scope
- resource_
discovery_ intassociation_ count - Resource Discovery Association Count
- scope_
count int - IPAM Scope Count
- status str
- IPAM Status
-
Sequence[Ipam
Tag Args] - IPAM Tag Information Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- update_
time str - Update Time
- account
Id String - Account ID
- create
Time String - Creation Time
- default
Resource StringDiscovery Association Id - Default Resource Discovery Association ID
- default
Resource StringDiscovery Id - Default Resource Discovery Instance ID
- description String
- Description
- ipam
Id String - IPAM ID
- ipam
Name String - IPAM Name
- ipam
Region StringId - Region ID
- operating
Regions List<String> - IPAM Effective Region
- private
Default StringScope Id - System Default Created Private IPAM Scope
- project
Name String - Project Name
- public
Default StringScope Id - System Default Created Public IPAM Scope
- resource
Discovery NumberAssociation Count - Resource Discovery Association Count
- scope
Count Number - IPAM Scope Count
- status String
- IPAM Status
- List<Property Map>
- IPAM Tag Information Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- update
Time String - Update Time
Supporting Types
IpamTag, IpamTagArgs
Import
$ pulumi import volcenginecc:vpc/ipam:Ipam example "ipam_id"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- volcenginecc volcengine/pulumi-volcenginecc
- License
- MPL-2.0
- Notes
- This Pulumi package is based on the
volcengineccTerraform Provider.
published on Monday, Aug 24, 2026 by Volcengine