1. Registry
  2. Packages
  3. Volcenginecc Provider
  4. API Docs
  5. vpc
  6. Ipam
Viewing docs for volcenginecc v0.0.57
published on Monday, Aug 24, 2026 by Volcengine
volcenginecc logo
Viewing docs for volcenginecc v0.0.57
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)
    public Ipam(String name, IpamArgs args)
    public Ipam(String name, IpamArgs args, CustomResourceOptions options)
    
    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:

    OperatingRegions List<string>
    IPAM Effective Region
    Description string
    Description
    IpamName string
    IPAM Name
    ProjectName string
    Project Name
    Tags List<Volcengine.IpamTag>
    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.
    OperatingRegions []string
    IPAM Effective Region
    Description string
    Description
    IpamName string
    IPAM Name
    ProjectName string
    Project Name
    Tags []IpamTagArgs
    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
    tags 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.
    operatingRegions List<String>
    IPAM Effective Region
    description String
    Description
    ipamName String
    IPAM Name
    projectName String
    Project Name
    tags List<IpamTag>
    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.
    operatingRegions string[]
    IPAM Effective Region
    description string
    Description
    ipamName string
    IPAM Name
    projectName string
    Project Name
    tags IpamTag[]
    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
    tags Sequence[IpamTagArgs]
    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.
    operatingRegions List<String>
    IPAM Effective Region
    description String
    Description
    ipamName String
    IPAM Name
    projectName String
    Project Name
    tags 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:

    AccountId string
    Account ID
    CreateTime string
    Creation Time
    DefaultResourceDiscoveryAssociationId string
    Default Resource Discovery Association ID
    DefaultResourceDiscoveryId string
    Default Resource Discovery Instance ID
    Id string
    The provider-assigned unique ID for this managed resource.
    IpamId string
    IPAM ID
    IpamRegionId string
    Region ID
    PrivateDefaultScopeId string
    System Default Created Private IPAM Scope
    PublicDefaultScopeId string
    System Default Created Public IPAM Scope
    ResourceDiscoveryAssociationCount int
    Resource Discovery Association Count
    ScopeCount int
    IPAM Scope Count
    Status string
    IPAM Status
    UpdateTime string
    Update Time
    AccountId string
    Account ID
    CreateTime string
    Creation Time
    DefaultResourceDiscoveryAssociationId string
    Default Resource Discovery Association ID
    DefaultResourceDiscoveryId string
    Default Resource Discovery Instance ID
    Id string
    The provider-assigned unique ID for this managed resource.
    IpamId string
    IPAM ID
    IpamRegionId string
    Region ID
    PrivateDefaultScopeId string
    System Default Created Private IPAM Scope
    PublicDefaultScopeId string
    System Default Created Public IPAM Scope
    ResourceDiscoveryAssociationCount int
    Resource Discovery Association Count
    ScopeCount int
    IPAM Scope Count
    Status string
    IPAM Status
    UpdateTime string
    Update Time
    account_id string
    Account ID
    create_time string
    Creation Time
    default_resource_discovery_association_id string
    Default Resource Discovery Association ID
    default_resource_discovery_id string
    Default Resource Discovery Instance ID
    id string
    The provider-assigned unique ID for this managed resource.
    ipam_id string
    IPAM ID
    ipam_region_id string
    Region ID
    private_default_scope_id string
    System Default Created Private IPAM Scope
    public_default_scope_id string
    System Default Created Public IPAM Scope
    resource_discovery_association_count number
    Resource Discovery Association Count
    scope_count number
    IPAM Scope Count
    status string
    IPAM Status
    update_time string
    Update Time
    accountId String
    Account ID
    createTime String
    Creation Time
    defaultResourceDiscoveryAssociationId String
    Default Resource Discovery Association ID
    defaultResourceDiscoveryId String
    Default Resource Discovery Instance ID
    id String
    The provider-assigned unique ID for this managed resource.
    ipamId String
    IPAM ID
    ipamRegionId String
    Region ID
    privateDefaultScopeId String
    System Default Created Private IPAM Scope
    publicDefaultScopeId String
    System Default Created Public IPAM Scope
    resourceDiscoveryAssociationCount Integer
    Resource Discovery Association Count
    scopeCount Integer
    IPAM Scope Count
    status String
    IPAM Status
    updateTime String
    Update Time
    accountId string
    Account ID
    createTime string
    Creation Time
    defaultResourceDiscoveryAssociationId string
    Default Resource Discovery Association ID
    defaultResourceDiscoveryId string
    Default Resource Discovery Instance ID
    id string
    The provider-assigned unique ID for this managed resource.
    ipamId string
    IPAM ID
    ipamRegionId string
    Region ID
    privateDefaultScopeId string
    System Default Created Private IPAM Scope
    publicDefaultScopeId string
    System Default Created Public IPAM Scope
    resourceDiscoveryAssociationCount number
    Resource Discovery Association Count
    scopeCount number
    IPAM Scope Count
    status string
    IPAM Status
    updateTime string
    Update Time
    account_id str
    Account ID
    create_time str
    Creation Time
    default_resource_discovery_association_id str
    Default Resource Discovery Association ID
    default_resource_discovery_id str
    Default Resource Discovery Instance ID
    id str
    The provider-assigned unique ID for this managed resource.
    ipam_id str
    IPAM ID
    ipam_region_id str
    Region ID
    private_default_scope_id str
    System Default Created Private IPAM Scope
    public_default_scope_id str
    System Default Created Public IPAM Scope
    resource_discovery_association_count int
    Resource Discovery Association Count
    scope_count int
    IPAM Scope Count
    status str
    IPAM Status
    update_time str
    Update Time
    accountId String
    Account ID
    createTime String
    Creation Time
    defaultResourceDiscoveryAssociationId String
    Default Resource Discovery Association ID
    defaultResourceDiscoveryId String
    Default Resource Discovery Instance ID
    id String
    The provider-assigned unique ID for this managed resource.
    ipamId String
    IPAM ID
    ipamRegionId String
    Region ID
    privateDefaultScopeId String
    System Default Created Private IPAM Scope
    publicDefaultScopeId String
    System Default Created Public IPAM Scope
    resourceDiscoveryAssociationCount Number
    Resource Discovery Association Count
    scopeCount Number
    IPAM Scope Count
    status String
    IPAM Status
    updateTime 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) -> Ipam
    func 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.
    The following state arguments are supported:
    AccountId string
    Account ID
    CreateTime string
    Creation Time
    DefaultResourceDiscoveryAssociationId string
    Default Resource Discovery Association ID
    DefaultResourceDiscoveryId string
    Default Resource Discovery Instance ID
    Description string
    Description
    IpamId string
    IPAM ID
    IpamName string
    IPAM Name
    IpamRegionId string
    Region ID
    OperatingRegions List<string>
    IPAM Effective Region
    PrivateDefaultScopeId string
    System Default Created Private IPAM Scope
    ProjectName string
    Project Name
    PublicDefaultScopeId string
    System Default Created Public IPAM Scope
    ResourceDiscoveryAssociationCount int
    Resource Discovery Association Count
    ScopeCount int
    IPAM Scope Count
    Status string
    IPAM Status
    Tags List<Volcengine.IpamTag>
    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.
    UpdateTime string
    Update Time
    AccountId string
    Account ID
    CreateTime string
    Creation Time
    DefaultResourceDiscoveryAssociationId string
    Default Resource Discovery Association ID
    DefaultResourceDiscoveryId string
    Default Resource Discovery Instance ID
    Description string
    Description
    IpamId string
    IPAM ID
    IpamName string
    IPAM Name
    IpamRegionId string
    Region ID
    OperatingRegions []string
    IPAM Effective Region
    PrivateDefaultScopeId string
    System Default Created Private IPAM Scope
    ProjectName string
    Project Name
    PublicDefaultScopeId string
    System Default Created Public IPAM Scope
    ResourceDiscoveryAssociationCount int
    Resource Discovery Association Count
    ScopeCount int
    IPAM Scope Count
    Status string
    IPAM Status
    Tags []IpamTagArgs
    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.
    UpdateTime string
    Update Time
    account_id string
    Account ID
    create_time string
    Creation Time
    default_resource_discovery_association_id string
    Default Resource Discovery Association ID
    default_resource_discovery_id string
    Default Resource Discovery Instance ID
    description string
    Description
    ipam_id string
    IPAM ID
    ipam_name string
    IPAM Name
    ipam_region_id string
    Region ID
    operating_regions list(string)
    IPAM Effective Region
    private_default_scope_id string
    System Default Created Private IPAM Scope
    project_name string
    Project Name
    public_default_scope_id string
    System Default Created Public IPAM Scope
    resource_discovery_association_count number
    Resource Discovery Association Count
    scope_count number
    IPAM Scope Count
    status string
    IPAM Status
    tags 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
    accountId String
    Account ID
    createTime String
    Creation Time
    defaultResourceDiscoveryAssociationId String
    Default Resource Discovery Association ID
    defaultResourceDiscoveryId String
    Default Resource Discovery Instance ID
    description String
    Description
    ipamId String
    IPAM ID
    ipamName String
    IPAM Name
    ipamRegionId String
    Region ID
    operatingRegions List<String>
    IPAM Effective Region
    privateDefaultScopeId String
    System Default Created Private IPAM Scope
    projectName String
    Project Name
    publicDefaultScopeId String
    System Default Created Public IPAM Scope
    resourceDiscoveryAssociationCount Integer
    Resource Discovery Association Count
    scopeCount Integer
    IPAM Scope Count
    status String
    IPAM Status
    tags List<IpamTag>
    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.
    updateTime String
    Update Time
    accountId string
    Account ID
    createTime string
    Creation Time
    defaultResourceDiscoveryAssociationId string
    Default Resource Discovery Association ID
    defaultResourceDiscoveryId string
    Default Resource Discovery Instance ID
    description string
    Description
    ipamId string
    IPAM ID
    ipamName string
    IPAM Name
    ipamRegionId string
    Region ID
    operatingRegions string[]
    IPAM Effective Region
    privateDefaultScopeId string
    System Default Created Private IPAM Scope
    projectName string
    Project Name
    publicDefaultScopeId string
    System Default Created Public IPAM Scope
    resourceDiscoveryAssociationCount number
    Resource Discovery Association Count
    scopeCount number
    IPAM Scope Count
    status string
    IPAM Status
    tags IpamTag[]
    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.
    updateTime string
    Update Time
    account_id str
    Account ID
    create_time str
    Creation Time
    default_resource_discovery_association_id str
    Default Resource Discovery Association ID
    default_resource_discovery_id str
    Default Resource Discovery Instance ID
    description str
    Description
    ipam_id str
    IPAM ID
    ipam_name str
    IPAM Name
    ipam_region_id str
    Region ID
    operating_regions Sequence[str]
    IPAM Effective Region
    private_default_scope_id str
    System Default Created Private IPAM Scope
    project_name str
    Project Name
    public_default_scope_id str
    System Default Created Public IPAM Scope
    resource_discovery_association_count int
    Resource Discovery Association Count
    scope_count int
    IPAM Scope Count
    status str
    IPAM Status
    tags Sequence[IpamTagArgs]
    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
    accountId String
    Account ID
    createTime String
    Creation Time
    defaultResourceDiscoveryAssociationId String
    Default Resource Discovery Association ID
    defaultResourceDiscoveryId String
    Default Resource Discovery Instance ID
    description String
    Description
    ipamId String
    IPAM ID
    ipamName String
    IPAM Name
    ipamRegionId String
    Region ID
    operatingRegions List<String>
    IPAM Effective Region
    privateDefaultScopeId String
    System Default Created Private IPAM Scope
    projectName String
    Project Name
    publicDefaultScopeId String
    System Default Created Public IPAM Scope
    resourceDiscoveryAssociationCount Number
    Resource Discovery Association Count
    scopeCount Number
    IPAM Scope Count
    status String
    IPAM Status
    tags 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.
    updateTime String
    Update Time

    Supporting Types

    IpamTag, IpamTagArgs

    Key string
    Tag Key
    Value string
    Tag Value
    Key string
    Tag Key
    Value string
    Tag Value
    key string
    Tag Key
    value string
    Tag Value
    key String
    Tag Key
    value String
    Tag Value
    key string
    Tag Key
    value string
    Tag Value
    key str
    Tag Key
    value str
    Tag Value
    key String
    Tag Key
    value String
    Tag Value

    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 volcenginecc Terraform Provider.
    volcenginecc logo
    Viewing docs for volcenginecc v0.0.57
    published on Monday, Aug 24, 2026 by Volcengine

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial