1. Registry
  2. Packages
  3. Volcenginecc Provider
  4. API Docs
  5. vpc
  6. IpamScope
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 Scope

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as volcenginecc from "@volcengine/pulumi-volcenginecc";
    
    const example = new volcenginecc.vpc.IpamScope("example", {
        ipamId: "ipam-xxxxxx",
        ipamScopeName: "tf-ipam-scope-full",
        ipamScopeType: "private",
        description: "created by terraform full case",
        projectName: "default",
        tags: [
            {
                key: "case",
                value: "tf-c02",
            },
            {
                key: "env",
                value: "terraform",
            },
        ],
    });
    
    import pulumi
    import pulumi_volcenginecc as volcenginecc
    
    example = volcenginecc.vpc.IpamScope("example",
        ipam_id="ipam-xxxxxx",
        ipam_scope_name="tf-ipam-scope-full",
        ipam_scope_type="private",
        description="created by terraform full case",
        project_name="default",
        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.NewIpamScope(ctx, "example", &vpc.IpamScopeArgs{
    			IpamId:        pulumi.String("ipam-xxxxxx"),
    			IpamScopeName: pulumi.String("tf-ipam-scope-full"),
    			IpamScopeType: pulumi.String("private"),
    			Description:   pulumi.String("created by terraform full case"),
    			ProjectName:   pulumi.String("default"),
    			Tags: vpc.IpamScopeTagArray{
    				&vpc.IpamScopeTagArgs{
    					Key:   pulumi.String("case"),
    					Value: pulumi.String("tf-c02"),
    				},
    				&vpc.IpamScopeTagArgs{
    					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.IpamScope("example", new()
        {
            IpamId = "ipam-xxxxxx",
            IpamScopeName = "tf-ipam-scope-full",
            IpamScopeType = "private",
            Description = "created by terraform full case",
            ProjectName = "default",
            Tags = new[]
            {
                new Volcenginecc.Vpc.Inputs.IpamScopeTagArgs
                {
                    Key = "case",
                    Value = "tf-c02",
                },
                new Volcenginecc.Vpc.Inputs.IpamScopeTagArgs
                {
                    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.IpamScope;
    import com.volcengine.volcenginecc.vpc.IpamScopeArgs;
    import com.pulumi.volcenginecc.vpc.inputs.IpamScopeTagArgs;
    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 IpamScope("example", IpamScopeArgs.builder()
                .ipamId("ipam-xxxxxx")
                .ipamScopeName("tf-ipam-scope-full")
                .ipamScopeType("private")
                .description("created by terraform full case")
                .projectName("default")
                .tags(            
                    IpamScopeTagArgs.builder()
                        .key("case")
                        .value("tf-c02")
                        .build(),
                    IpamScopeTagArgs.builder()
                        .key("env")
                        .value("terraform")
                        .build())
                .build());
    
        }
    }
    
    resources:
      example:
        type: volcenginecc:vpc:IpamScope
        properties:
          ipamId: ipam-xxxxxx
          ipamScopeName: tf-ipam-scope-full
          ipamScopeType: private
          description: created by terraform full case
          projectName: default
          tags:
            - key: case
              value: tf-c02
            - key: env
              value: terraform
    
    pulumi {
      required_providers {
        volcenginecc = {
          source = "pulumi/volcenginecc"
        }
      }
    }
    
    resource "volcenginecc_vpc_ipamscope" "example" {
      ipam_id         = "ipam-xxxxxx"
      ipam_scope_name = "tf-ipam-scope-full"
      ipam_scope_type = "private"
      description     = "created by terraform full case"
      project_name    = "default"
      tags {
        key   = "case"
        value = "tf-c02"
      }
      tags {
        key   = "env"
        value = "terraform"
      }
    }
    

    Create IpamScope Resource

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

    Constructor syntax

    new IpamScope(name: string, args: IpamScopeArgs, opts?: CustomResourceOptions);
    @overload
    def IpamScope(resource_name: str,
                  args: IpamScopeArgs,
                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def IpamScope(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  ipam_id: Optional[str] = None,
                  description: Optional[str] = None,
                  ipam_scope_name: Optional[str] = None,
                  ipam_scope_type: Optional[str] = None,
                  project_name: Optional[str] = None,
                  tags: Optional[Sequence[IpamScopeTagArgs]] = None)
    func NewIpamScope(ctx *Context, name string, args IpamScopeArgs, opts ...ResourceOption) (*IpamScope, error)
    public IpamScope(string name, IpamScopeArgs args, CustomResourceOptions? opts = null)
    public IpamScope(String name, IpamScopeArgs args)
    public IpamScope(String name, IpamScopeArgs args, CustomResourceOptions options)
    
    type: volcenginecc:vpc:IpamScope
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "volcenginecc_vpc_ipam_scope" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args IpamScopeArgs
    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 IpamScopeArgs
    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 IpamScopeArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args IpamScopeArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args IpamScopeArgs
    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 ipamScopeResource = new Volcenginecc.Vpc.IpamScope("ipamScopeResource", new()
    {
        IpamId = "string",
        Description = "string",
        IpamScopeName = "string",
        IpamScopeType = "string",
        ProjectName = "string",
        Tags = new[]
        {
            new Volcenginecc.Vpc.Inputs.IpamScopeTagArgs
            {
                Key = "string",
                Value = "string",
            },
        },
    });
    
    example, err := vpc.NewIpamScope(ctx, "ipamScopeResource", &vpc.IpamScopeArgs{
    	IpamId:        pulumi.String("string"),
    	Description:   pulumi.String("string"),
    	IpamScopeName: pulumi.String("string"),
    	IpamScopeType: pulumi.String("string"),
    	ProjectName:   pulumi.String("string"),
    	Tags: vpc.IpamScopeTagArray{
    		&vpc.IpamScopeTagArgs{
    			Key:   pulumi.String("string"),
    			Value: pulumi.String("string"),
    		},
    	},
    })
    
    resource "volcenginecc_vpc_ipam_scope" "ipamScopeResource" {
      lifecycle {
        create_before_destroy = true
      }
      ipam_id         = "string"
      description     = "string"
      ipam_scope_name = "string"
      ipam_scope_type = "string"
      project_name    = "string"
      tags {
        key   = "string"
        value = "string"
      }
    }
    
    var ipamScopeResource = new IpamScope("ipamScopeResource", IpamScopeArgs.builder()
        .ipamId("string")
        .description("string")
        .ipamScopeName("string")
        .ipamScopeType("string")
        .projectName("string")
        .tags(IpamScopeTagArgs.builder()
            .key("string")
            .value("string")
            .build())
        .build());
    
    ipam_scope_resource = volcenginecc.vpc.IpamScope("ipamScopeResource",
        ipam_id="string",
        description="string",
        ipam_scope_name="string",
        ipam_scope_type="string",
        project_name="string",
        tags=[{
            "key": "string",
            "value": "string",
        }])
    
    const ipamScopeResource = new volcenginecc.vpc.IpamScope("ipamScopeResource", {
        ipamId: "string",
        description: "string",
        ipamScopeName: "string",
        ipamScopeType: "string",
        projectName: "string",
        tags: [{
            key: "string",
            value: "string",
        }],
    });
    
    type: volcenginecc:vpc:IpamScope
    properties:
        description: string
        ipamId: string
        ipamScopeName: string
        ipamScopeType: string
        projectName: string
        tags:
            - key: string
              value: string
    

    IpamScope 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 IpamScope resource accepts the following input properties:

    IpamId string
    IPAM ID。
    Description string
    IPAM Scope Description
    IpamScopeName string
    IPAM Scope Name
    IpamScopeType string
    IPAM Scope Type
    ProjectName string
    Project Name
    Tags List<Volcengine.IpamScopeTag>
    IPAM Scope Tags 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.
    IpamId string
    IPAM ID。
    Description string
    IPAM Scope Description
    IpamScopeName string
    IPAM Scope Name
    IpamScopeType string
    IPAM Scope Type
    ProjectName string
    Project Name
    Tags []IpamScopeTagArgs
    IPAM Scope Tags 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.
    ipam_id string
    IPAM ID。
    description string
    IPAM Scope Description
    ipam_scope_name string
    IPAM Scope Name
    ipam_scope_type string
    IPAM Scope Type
    project_name string
    Project Name
    tags list(object)
    IPAM Scope Tags 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.
    ipamId String
    IPAM ID。
    description String
    IPAM Scope Description
    ipamScopeName String
    IPAM Scope Name
    ipamScopeType String
    IPAM Scope Type
    projectName String
    Project Name
    tags List<IpamScopeTag>
    IPAM Scope Tags 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.
    ipamId string
    IPAM ID。
    description string
    IPAM Scope Description
    ipamScopeName string
    IPAM Scope Name
    ipamScopeType string
    IPAM Scope Type
    projectName string
    Project Name
    tags IpamScopeTag[]
    IPAM Scope Tags 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.
    ipam_id str
    IPAM ID。
    description str
    IPAM Scope Description
    ipam_scope_name str
    IPAM Scope Name
    ipam_scope_type str
    IPAM Scope Type
    project_name str
    Project Name
    tags Sequence[IpamScopeTagArgs]
    IPAM Scope Tags 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.
    ipamId String
    IPAM ID。
    description String
    IPAM Scope Description
    ipamScopeName String
    IPAM Scope Name
    ipamScopeType String
    IPAM Scope Type
    projectName String
    Project Name
    tags List<Property Map>
    IPAM Scope Tags 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 IpamScope resource produces the following output properties:

    AccountId string
    Account ID
    CreateTime string
    IPAM Scope Creation Time
    Id string
    The provider-assigned unique ID for this managed resource.
    IpamRegionId string
    IPAM Region ID
    IpamScopeId string
    IPAM Scope ID
    IsDefault bool
    Default Scope
    PoolCount int
    Number of Address Pools
    Status string
    IPAM Scope Status
    UpdateTime string
    IPAM Scope Update Time
    AccountId string
    Account ID
    CreateTime string
    IPAM Scope Creation Time
    Id string
    The provider-assigned unique ID for this managed resource.
    IpamRegionId string
    IPAM Region ID
    IpamScopeId string
    IPAM Scope ID
    IsDefault bool
    Default Scope
    PoolCount int
    Number of Address Pools
    Status string
    IPAM Scope Status
    UpdateTime string
    IPAM Scope Update Time
    account_id string
    Account ID
    create_time string
    IPAM Scope Creation Time
    id string
    The provider-assigned unique ID for this managed resource.
    ipam_region_id string
    IPAM Region ID
    ipam_scope_id string
    IPAM Scope ID
    is_default bool
    Default Scope
    pool_count number
    Number of Address Pools
    status string
    IPAM Scope Status
    update_time string
    IPAM Scope Update Time
    accountId String
    Account ID
    createTime String
    IPAM Scope Creation Time
    id String
    The provider-assigned unique ID for this managed resource.
    ipamRegionId String
    IPAM Region ID
    ipamScopeId String
    IPAM Scope ID
    isDefault Boolean
    Default Scope
    poolCount Integer
    Number of Address Pools
    status String
    IPAM Scope Status
    updateTime String
    IPAM Scope Update Time
    accountId string
    Account ID
    createTime string
    IPAM Scope Creation Time
    id string
    The provider-assigned unique ID for this managed resource.
    ipamRegionId string
    IPAM Region ID
    ipamScopeId string
    IPAM Scope ID
    isDefault boolean
    Default Scope
    poolCount number
    Number of Address Pools
    status string
    IPAM Scope Status
    updateTime string
    IPAM Scope Update Time
    account_id str
    Account ID
    create_time str
    IPAM Scope Creation Time
    id str
    The provider-assigned unique ID for this managed resource.
    ipam_region_id str
    IPAM Region ID
    ipam_scope_id str
    IPAM Scope ID
    is_default bool
    Default Scope
    pool_count int
    Number of Address Pools
    status str
    IPAM Scope Status
    update_time str
    IPAM Scope Update Time
    accountId String
    Account ID
    createTime String
    IPAM Scope Creation Time
    id String
    The provider-assigned unique ID for this managed resource.
    ipamRegionId String
    IPAM Region ID
    ipamScopeId String
    IPAM Scope ID
    isDefault Boolean
    Default Scope
    poolCount Number
    Number of Address Pools
    status String
    IPAM Scope Status
    updateTime String
    IPAM Scope Update Time

    Look up Existing IpamScope Resource

    Get an existing IpamScope 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?: IpamScopeState, opts?: CustomResourceOptions): IpamScope
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            account_id: Optional[str] = None,
            create_time: Optional[str] = None,
            description: Optional[str] = None,
            ipam_id: Optional[str] = None,
            ipam_region_id: Optional[str] = None,
            ipam_scope_id: Optional[str] = None,
            ipam_scope_name: Optional[str] = None,
            ipam_scope_type: Optional[str] = None,
            is_default: Optional[bool] = None,
            pool_count: Optional[int] = None,
            project_name: Optional[str] = None,
            status: Optional[str] = None,
            tags: Optional[Sequence[IpamScopeTagArgs]] = None,
            update_time: Optional[str] = None) -> IpamScope
    func GetIpamScope(ctx *Context, name string, id IDInput, state *IpamScopeState, opts ...ResourceOption) (*IpamScope, error)
    public static IpamScope Get(string name, Input<string> id, IpamScopeState? state, CustomResourceOptions? opts = null)
    public static IpamScope get(String name, Output<String> id, IpamScopeState state, CustomResourceOptions options)
    resources:  _:    type: volcenginecc:vpc:IpamScope    get:      id: ${id}
    import {
      to = volcenginecc_vpc_ipam_scope.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
    IPAM Scope Creation Time
    Description string
    IPAM Scope Description
    IpamId string
    IPAM ID。
    IpamRegionId string
    IPAM Region ID
    IpamScopeId string
    IPAM Scope ID
    IpamScopeName string
    IPAM Scope Name
    IpamScopeType string
    IPAM Scope Type
    IsDefault bool
    Default Scope
    PoolCount int
    Number of Address Pools
    ProjectName string
    Project Name
    Status string
    IPAM Scope Status
    Tags List<Volcengine.IpamScopeTag>
    IPAM Scope Tags 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
    IPAM Scope Update Time
    AccountId string
    Account ID
    CreateTime string
    IPAM Scope Creation Time
    Description string
    IPAM Scope Description
    IpamId string
    IPAM ID。
    IpamRegionId string
    IPAM Region ID
    IpamScopeId string
    IPAM Scope ID
    IpamScopeName string
    IPAM Scope Name
    IpamScopeType string
    IPAM Scope Type
    IsDefault bool
    Default Scope
    PoolCount int
    Number of Address Pools
    ProjectName string
    Project Name
    Status string
    IPAM Scope Status
    Tags []IpamScopeTagArgs
    IPAM Scope Tags 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
    IPAM Scope Update Time
    account_id string
    Account ID
    create_time string
    IPAM Scope Creation Time
    description string
    IPAM Scope Description
    ipam_id string
    IPAM ID。
    ipam_region_id string
    IPAM Region ID
    ipam_scope_id string
    IPAM Scope ID
    ipam_scope_name string
    IPAM Scope Name
    ipam_scope_type string
    IPAM Scope Type
    is_default bool
    Default Scope
    pool_count number
    Number of Address Pools
    project_name string
    Project Name
    status string
    IPAM Scope Status
    tags list(object)
    IPAM Scope Tags 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
    IPAM Scope Update Time
    accountId String
    Account ID
    createTime String
    IPAM Scope Creation Time
    description String
    IPAM Scope Description
    ipamId String
    IPAM ID。
    ipamRegionId String
    IPAM Region ID
    ipamScopeId String
    IPAM Scope ID
    ipamScopeName String
    IPAM Scope Name
    ipamScopeType String
    IPAM Scope Type
    isDefault Boolean
    Default Scope
    poolCount Integer
    Number of Address Pools
    projectName String
    Project Name
    status String
    IPAM Scope Status
    tags List<IpamScopeTag>
    IPAM Scope Tags 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
    IPAM Scope Update Time
    accountId string
    Account ID
    createTime string
    IPAM Scope Creation Time
    description string
    IPAM Scope Description
    ipamId string
    IPAM ID。
    ipamRegionId string
    IPAM Region ID
    ipamScopeId string
    IPAM Scope ID
    ipamScopeName string
    IPAM Scope Name
    ipamScopeType string
    IPAM Scope Type
    isDefault boolean
    Default Scope
    poolCount number
    Number of Address Pools
    projectName string
    Project Name
    status string
    IPAM Scope Status
    tags IpamScopeTag[]
    IPAM Scope Tags 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
    IPAM Scope Update Time
    account_id str
    Account ID
    create_time str
    IPAM Scope Creation Time
    description str
    IPAM Scope Description
    ipam_id str
    IPAM ID。
    ipam_region_id str
    IPAM Region ID
    ipam_scope_id str
    IPAM Scope ID
    ipam_scope_name str
    IPAM Scope Name
    ipam_scope_type str
    IPAM Scope Type
    is_default bool
    Default Scope
    pool_count int
    Number of Address Pools
    project_name str
    Project Name
    status str
    IPAM Scope Status
    tags Sequence[IpamScopeTagArgs]
    IPAM Scope Tags 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
    IPAM Scope Update Time
    accountId String
    Account ID
    createTime String
    IPAM Scope Creation Time
    description String
    IPAM Scope Description
    ipamId String
    IPAM ID。
    ipamRegionId String
    IPAM Region ID
    ipamScopeId String
    IPAM Scope ID
    ipamScopeName String
    IPAM Scope Name
    ipamScopeType String
    IPAM Scope Type
    isDefault Boolean
    Default Scope
    poolCount Number
    Number of Address Pools
    projectName String
    Project Name
    status String
    IPAM Scope Status
    tags List<Property Map>
    IPAM Scope Tags 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
    IPAM Scope Update Time

    Supporting Types

    IpamScopeTag, IpamScopeTagArgs

    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/ipamScope:IpamScope example "ipam_scope_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