1. Packages
  2. Alibaba Cloud Provider
  3. API Docs
  4. pvtz
  5. Zone
Alibaba Cloud v3.76.0 published on Tuesday, Apr 8, 2025 by Pulumi

alicloud.pvtz.Zone

Explore with Pulumi AI

Example Usage

Basic Usage

import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";

const foo = new alicloud.pvtz.Zone("foo", {zoneName: "foo.example.com"});
Copy
import pulumi
import pulumi_alicloud as alicloud

foo = alicloud.pvtz.Zone("foo", zone_name="foo.example.com")
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := pvtz.NewZone(ctx, "foo", &pvtz.ZoneArgs{
			ZoneName: pulumi.String("foo.example.com"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;

return await Deployment.RunAsync(() => 
{
    var foo = new AliCloud.Pvtz.Zone("foo", new()
    {
        ZoneName = "foo.example.com",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.pvtz.Zone;
import com.pulumi.alicloud.pvtz.ZoneArgs;
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 foo = new Zone("foo", ZoneArgs.builder()
            .zoneName("foo.example.com")
            .build());

    }
}
Copy
resources:
  foo:
    type: alicloud:pvtz:Zone
    properties:
      zoneName: foo.example.com
Copy

Create Zone Resource

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

Constructor syntax

new Zone(name: string, args?: ZoneArgs, opts?: CustomResourceOptions);
@overload
def Zone(resource_name: str,
         args: Optional[ZoneArgs] = None,
         opts: Optional[ResourceOptions] = None)

@overload
def Zone(resource_name: str,
         opts: Optional[ResourceOptions] = None,
         lang: Optional[str] = None,
         name: Optional[str] = None,
         proxy_pattern: Optional[str] = None,
         remark: Optional[str] = None,
         resource_group_id: Optional[str] = None,
         sync_status: Optional[str] = None,
         tags: Optional[Mapping[str, str]] = None,
         user_client_ip: Optional[str] = None,
         user_infos: Optional[Sequence[ZoneUserInfoArgs]] = None,
         zone_name: Optional[str] = None)
func NewZone(ctx *Context, name string, args *ZoneArgs, opts ...ResourceOption) (*Zone, error)
public Zone(string name, ZoneArgs? args = null, CustomResourceOptions? opts = null)
public Zone(String name, ZoneArgs args)
public Zone(String name, ZoneArgs args, CustomResourceOptions options)
type: alicloud:pvtz:Zone
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args ZoneArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args ZoneArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args ZoneArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args ZoneArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ZoneArgs
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 zoneResource = new AliCloud.Pvtz.Zone("zoneResource", new()
{
    Lang = "string",
    ProxyPattern = "string",
    Remark = "string",
    ResourceGroupId = "string",
    SyncStatus = "string",
    Tags = 
    {
        { "string", "string" },
    },
    UserClientIp = "string",
    UserInfos = new[]
    {
        new AliCloud.Pvtz.Inputs.ZoneUserInfoArgs
        {
            RegionIds = new[]
            {
                "string",
            },
            UserId = "string",
        },
    },
    ZoneName = "string",
});
Copy
example, err := pvtz.NewZone(ctx, "zoneResource", &pvtz.ZoneArgs{
	Lang:            pulumi.String("string"),
	ProxyPattern:    pulumi.String("string"),
	Remark:          pulumi.String("string"),
	ResourceGroupId: pulumi.String("string"),
	SyncStatus:      pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	UserClientIp: pulumi.String("string"),
	UserInfos: pvtz.ZoneUserInfoArray{
		&pvtz.ZoneUserInfoArgs{
			RegionIds: pulumi.StringArray{
				pulumi.String("string"),
			},
			UserId: pulumi.String("string"),
		},
	},
	ZoneName: pulumi.String("string"),
})
Copy
var zoneResource = new Zone("zoneResource", ZoneArgs.builder()
    .lang("string")
    .proxyPattern("string")
    .remark("string")
    .resourceGroupId("string")
    .syncStatus("string")
    .tags(Map.of("string", "string"))
    .userClientIp("string")
    .userInfos(ZoneUserInfoArgs.builder()
        .regionIds("string")
        .userId("string")
        .build())
    .zoneName("string")
    .build());
Copy
zone_resource = alicloud.pvtz.Zone("zoneResource",
    lang="string",
    proxy_pattern="string",
    remark="string",
    resource_group_id="string",
    sync_status="string",
    tags={
        "string": "string",
    },
    user_client_ip="string",
    user_infos=[{
        "region_ids": ["string"],
        "user_id": "string",
    }],
    zone_name="string")
Copy
const zoneResource = new alicloud.pvtz.Zone("zoneResource", {
    lang: "string",
    proxyPattern: "string",
    remark: "string",
    resourceGroupId: "string",
    syncStatus: "string",
    tags: {
        string: "string",
    },
    userClientIp: "string",
    userInfos: [{
        regionIds: ["string"],
        userId: "string",
    }],
    zoneName: "string",
});
Copy
type: alicloud:pvtz:Zone
properties:
    lang: string
    proxyPattern: string
    remark: string
    resourceGroupId: string
    syncStatus: string
    tags:
        string: string
    userClientIp: string
    userInfos:
        - regionIds:
            - string
          userId: string
    zoneName: string
Copy

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

Lang string
The language. Valid values: "zh", "en", "jp".
Name Changes to this property will trigger replacement. string
The name of the Private Zone. The name has been deprecated from provider version 1.107.0. Please use 'zone_name' instead.

Deprecated: Field 'name' has been deprecated from version 1.107.0. Use 'zone_name' instead.

ProxyPattern string
The recursive DNS proxy. Valid values:

  • ZONE: indicates that the recursive DNS proxy is disabled.
  • RECORD: indicates that the recursive DNS proxy is enabled. Default to "ZONE".
Remark string
The remark of the Private Zone.
ResourceGroupId Changes to this property will trigger replacement. string
The Id of resource group which the Private Zone belongs.
SyncStatus string
The status of the host synchronization task. Valid values: ON,OFF. NOTE: You can update the sync_status to enable/disable the host synchronization task.
Tags Dictionary<string, string>
The tags of the Private Zone.
UserClientIp string
The IP address of the client.
UserInfos List<Pulumi.AliCloud.Pvtz.Inputs.ZoneUserInfo>
The user information of the host synchronization task. See user_info below.
ZoneName Changes to this property will trigger replacement. string
The zone_name of the Private Zone. The zone_name is required when the value of the name is Empty.
Lang string
The language. Valid values: "zh", "en", "jp".
Name Changes to this property will trigger replacement. string
The name of the Private Zone. The name has been deprecated from provider version 1.107.0. Please use 'zone_name' instead.

Deprecated: Field 'name' has been deprecated from version 1.107.0. Use 'zone_name' instead.

ProxyPattern string
The recursive DNS proxy. Valid values:

  • ZONE: indicates that the recursive DNS proxy is disabled.
  • RECORD: indicates that the recursive DNS proxy is enabled. Default to "ZONE".
Remark string
The remark of the Private Zone.
ResourceGroupId Changes to this property will trigger replacement. string
The Id of resource group which the Private Zone belongs.
SyncStatus string
The status of the host synchronization task. Valid values: ON,OFF. NOTE: You can update the sync_status to enable/disable the host synchronization task.
Tags map[string]string
The tags of the Private Zone.
UserClientIp string
The IP address of the client.
UserInfos []ZoneUserInfoArgs
The user information of the host synchronization task. See user_info below.
ZoneName Changes to this property will trigger replacement. string
The zone_name of the Private Zone. The zone_name is required when the value of the name is Empty.
lang String
The language. Valid values: "zh", "en", "jp".
name Changes to this property will trigger replacement. String
The name of the Private Zone. The name has been deprecated from provider version 1.107.0. Please use 'zone_name' instead.

Deprecated: Field 'name' has been deprecated from version 1.107.0. Use 'zone_name' instead.

proxyPattern String
The recursive DNS proxy. Valid values:

  • ZONE: indicates that the recursive DNS proxy is disabled.
  • RECORD: indicates that the recursive DNS proxy is enabled. Default to "ZONE".
remark String
The remark of the Private Zone.
resourceGroupId Changes to this property will trigger replacement. String
The Id of resource group which the Private Zone belongs.
syncStatus String
The status of the host synchronization task. Valid values: ON,OFF. NOTE: You can update the sync_status to enable/disable the host synchronization task.
tags Map<String,String>
The tags of the Private Zone.
userClientIp String
The IP address of the client.
userInfos List<ZoneUserInfo>
The user information of the host synchronization task. See user_info below.
zoneName Changes to this property will trigger replacement. String
The zone_name of the Private Zone. The zone_name is required when the value of the name is Empty.
lang string
The language. Valid values: "zh", "en", "jp".
name Changes to this property will trigger replacement. string
The name of the Private Zone. The name has been deprecated from provider version 1.107.0. Please use 'zone_name' instead.

Deprecated: Field 'name' has been deprecated from version 1.107.0. Use 'zone_name' instead.

proxyPattern string
The recursive DNS proxy. Valid values:

  • ZONE: indicates that the recursive DNS proxy is disabled.
  • RECORD: indicates that the recursive DNS proxy is enabled. Default to "ZONE".
remark string
The remark of the Private Zone.
resourceGroupId Changes to this property will trigger replacement. string
The Id of resource group which the Private Zone belongs.
syncStatus string
The status of the host synchronization task. Valid values: ON,OFF. NOTE: You can update the sync_status to enable/disable the host synchronization task.
tags {[key: string]: string}
The tags of the Private Zone.
userClientIp string
The IP address of the client.
userInfos ZoneUserInfo[]
The user information of the host synchronization task. See user_info below.
zoneName Changes to this property will trigger replacement. string
The zone_name of the Private Zone. The zone_name is required when the value of the name is Empty.
lang str
The language. Valid values: "zh", "en", "jp".
name Changes to this property will trigger replacement. str
The name of the Private Zone. The name has been deprecated from provider version 1.107.0. Please use 'zone_name' instead.

Deprecated: Field 'name' has been deprecated from version 1.107.0. Use 'zone_name' instead.

proxy_pattern str
The recursive DNS proxy. Valid values:

  • ZONE: indicates that the recursive DNS proxy is disabled.
  • RECORD: indicates that the recursive DNS proxy is enabled. Default to "ZONE".
remark str
The remark of the Private Zone.
resource_group_id Changes to this property will trigger replacement. str
The Id of resource group which the Private Zone belongs.
sync_status str
The status of the host synchronization task. Valid values: ON,OFF. NOTE: You can update the sync_status to enable/disable the host synchronization task.
tags Mapping[str, str]
The tags of the Private Zone.
user_client_ip str
The IP address of the client.
user_infos Sequence[ZoneUserInfoArgs]
The user information of the host synchronization task. See user_info below.
zone_name Changes to this property will trigger replacement. str
The zone_name of the Private Zone. The zone_name is required when the value of the name is Empty.
lang String
The language. Valid values: "zh", "en", "jp".
name Changes to this property will trigger replacement. String
The name of the Private Zone. The name has been deprecated from provider version 1.107.0. Please use 'zone_name' instead.

Deprecated: Field 'name' has been deprecated from version 1.107.0. Use 'zone_name' instead.

proxyPattern String
The recursive DNS proxy. Valid values:

  • ZONE: indicates that the recursive DNS proxy is disabled.
  • RECORD: indicates that the recursive DNS proxy is enabled. Default to "ZONE".
remark String
The remark of the Private Zone.
resourceGroupId Changes to this property will trigger replacement. String
The Id of resource group which the Private Zone belongs.
syncStatus String
The status of the host synchronization task. Valid values: ON,OFF. NOTE: You can update the sync_status to enable/disable the host synchronization task.
tags Map<String>
The tags of the Private Zone.
userClientIp String
The IP address of the client.
userInfos List<Property Map>
The user information of the host synchronization task. See user_info below.
zoneName Changes to this property will trigger replacement. String
The zone_name of the Private Zone. The zone_name is required when the value of the name is Empty.

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
IsPtr bool
Whether the Private Zone is ptr.
RecordCount int
The count of the Private Zone Record.
Id string
The provider-assigned unique ID for this managed resource.
IsPtr bool
Whether the Private Zone is ptr.
RecordCount int
The count of the Private Zone Record.
id String
The provider-assigned unique ID for this managed resource.
isPtr Boolean
Whether the Private Zone is ptr.
recordCount Integer
The count of the Private Zone Record.
id string
The provider-assigned unique ID for this managed resource.
isPtr boolean
Whether the Private Zone is ptr.
recordCount number
The count of the Private Zone Record.
id str
The provider-assigned unique ID for this managed resource.
is_ptr bool
Whether the Private Zone is ptr.
record_count int
The count of the Private Zone Record.
id String
The provider-assigned unique ID for this managed resource.
isPtr Boolean
Whether the Private Zone is ptr.
recordCount Number
The count of the Private Zone Record.

Look up Existing Zone Resource

Get an existing Zone 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?: ZoneState, opts?: CustomResourceOptions): Zone
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        is_ptr: Optional[bool] = None,
        lang: Optional[str] = None,
        name: Optional[str] = None,
        proxy_pattern: Optional[str] = None,
        record_count: Optional[int] = None,
        remark: Optional[str] = None,
        resource_group_id: Optional[str] = None,
        sync_status: Optional[str] = None,
        tags: Optional[Mapping[str, str]] = None,
        user_client_ip: Optional[str] = None,
        user_infos: Optional[Sequence[ZoneUserInfoArgs]] = None,
        zone_name: Optional[str] = None) -> Zone
func GetZone(ctx *Context, name string, id IDInput, state *ZoneState, opts ...ResourceOption) (*Zone, error)
public static Zone Get(string name, Input<string> id, ZoneState? state, CustomResourceOptions? opts = null)
public static Zone get(String name, Output<String> id, ZoneState state, CustomResourceOptions options)
resources:  _:    type: alicloud:pvtz:Zone    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
IsPtr bool
Whether the Private Zone is ptr.
Lang string
The language. Valid values: "zh", "en", "jp".
Name Changes to this property will trigger replacement. string
The name of the Private Zone. The name has been deprecated from provider version 1.107.0. Please use 'zone_name' instead.

Deprecated: Field 'name' has been deprecated from version 1.107.0. Use 'zone_name' instead.

ProxyPattern string
The recursive DNS proxy. Valid values:

  • ZONE: indicates that the recursive DNS proxy is disabled.
  • RECORD: indicates that the recursive DNS proxy is enabled. Default to "ZONE".
RecordCount int
The count of the Private Zone Record.
Remark string
The remark of the Private Zone.
ResourceGroupId Changes to this property will trigger replacement. string
The Id of resource group which the Private Zone belongs.
SyncStatus string
The status of the host synchronization task. Valid values: ON,OFF. NOTE: You can update the sync_status to enable/disable the host synchronization task.
Tags Dictionary<string, string>
The tags of the Private Zone.
UserClientIp string
The IP address of the client.
UserInfos List<Pulumi.AliCloud.Pvtz.Inputs.ZoneUserInfo>
The user information of the host synchronization task. See user_info below.
ZoneName Changes to this property will trigger replacement. string
The zone_name of the Private Zone. The zone_name is required when the value of the name is Empty.
IsPtr bool
Whether the Private Zone is ptr.
Lang string
The language. Valid values: "zh", "en", "jp".
Name Changes to this property will trigger replacement. string
The name of the Private Zone. The name has been deprecated from provider version 1.107.0. Please use 'zone_name' instead.

Deprecated: Field 'name' has been deprecated from version 1.107.0. Use 'zone_name' instead.

ProxyPattern string
The recursive DNS proxy. Valid values:

  • ZONE: indicates that the recursive DNS proxy is disabled.
  • RECORD: indicates that the recursive DNS proxy is enabled. Default to "ZONE".
RecordCount int
The count of the Private Zone Record.
Remark string
The remark of the Private Zone.
ResourceGroupId Changes to this property will trigger replacement. string
The Id of resource group which the Private Zone belongs.
SyncStatus string
The status of the host synchronization task. Valid values: ON,OFF. NOTE: You can update the sync_status to enable/disable the host synchronization task.
Tags map[string]string
The tags of the Private Zone.
UserClientIp string
The IP address of the client.
UserInfos []ZoneUserInfoArgs
The user information of the host synchronization task. See user_info below.
ZoneName Changes to this property will trigger replacement. string
The zone_name of the Private Zone. The zone_name is required when the value of the name is Empty.
isPtr Boolean
Whether the Private Zone is ptr.
lang String
The language. Valid values: "zh", "en", "jp".
name Changes to this property will trigger replacement. String
The name of the Private Zone. The name has been deprecated from provider version 1.107.0. Please use 'zone_name' instead.

Deprecated: Field 'name' has been deprecated from version 1.107.0. Use 'zone_name' instead.

proxyPattern String
The recursive DNS proxy. Valid values:

  • ZONE: indicates that the recursive DNS proxy is disabled.
  • RECORD: indicates that the recursive DNS proxy is enabled. Default to "ZONE".
recordCount Integer
The count of the Private Zone Record.
remark String
The remark of the Private Zone.
resourceGroupId Changes to this property will trigger replacement. String
The Id of resource group which the Private Zone belongs.
syncStatus String
The status of the host synchronization task. Valid values: ON,OFF. NOTE: You can update the sync_status to enable/disable the host synchronization task.
tags Map<String,String>
The tags of the Private Zone.
userClientIp String
The IP address of the client.
userInfos List<ZoneUserInfo>
The user information of the host synchronization task. See user_info below.
zoneName Changes to this property will trigger replacement. String
The zone_name of the Private Zone. The zone_name is required when the value of the name is Empty.
isPtr boolean
Whether the Private Zone is ptr.
lang string
The language. Valid values: "zh", "en", "jp".
name Changes to this property will trigger replacement. string
The name of the Private Zone. The name has been deprecated from provider version 1.107.0. Please use 'zone_name' instead.

Deprecated: Field 'name' has been deprecated from version 1.107.0. Use 'zone_name' instead.

proxyPattern string
The recursive DNS proxy. Valid values:

  • ZONE: indicates that the recursive DNS proxy is disabled.
  • RECORD: indicates that the recursive DNS proxy is enabled. Default to "ZONE".
recordCount number
The count of the Private Zone Record.
remark string
The remark of the Private Zone.
resourceGroupId Changes to this property will trigger replacement. string
The Id of resource group which the Private Zone belongs.
syncStatus string
The status of the host synchronization task. Valid values: ON,OFF. NOTE: You can update the sync_status to enable/disable the host synchronization task.
tags {[key: string]: string}
The tags of the Private Zone.
userClientIp string
The IP address of the client.
userInfos ZoneUserInfo[]
The user information of the host synchronization task. See user_info below.
zoneName Changes to this property will trigger replacement. string
The zone_name of the Private Zone. The zone_name is required when the value of the name is Empty.
is_ptr bool
Whether the Private Zone is ptr.
lang str
The language. Valid values: "zh", "en", "jp".
name Changes to this property will trigger replacement. str
The name of the Private Zone. The name has been deprecated from provider version 1.107.0. Please use 'zone_name' instead.

Deprecated: Field 'name' has been deprecated from version 1.107.0. Use 'zone_name' instead.

proxy_pattern str
The recursive DNS proxy. Valid values:

  • ZONE: indicates that the recursive DNS proxy is disabled.
  • RECORD: indicates that the recursive DNS proxy is enabled. Default to "ZONE".
record_count int
The count of the Private Zone Record.
remark str
The remark of the Private Zone.
resource_group_id Changes to this property will trigger replacement. str
The Id of resource group which the Private Zone belongs.
sync_status str
The status of the host synchronization task. Valid values: ON,OFF. NOTE: You can update the sync_status to enable/disable the host synchronization task.
tags Mapping[str, str]
The tags of the Private Zone.
user_client_ip str
The IP address of the client.
user_infos Sequence[ZoneUserInfoArgs]
The user information of the host synchronization task. See user_info below.
zone_name Changes to this property will trigger replacement. str
The zone_name of the Private Zone. The zone_name is required when the value of the name is Empty.
isPtr Boolean
Whether the Private Zone is ptr.
lang String
The language. Valid values: "zh", "en", "jp".
name Changes to this property will trigger replacement. String
The name of the Private Zone. The name has been deprecated from provider version 1.107.0. Please use 'zone_name' instead.

Deprecated: Field 'name' has been deprecated from version 1.107.0. Use 'zone_name' instead.

proxyPattern String
The recursive DNS proxy. Valid values:

  • ZONE: indicates that the recursive DNS proxy is disabled.
  • RECORD: indicates that the recursive DNS proxy is enabled. Default to "ZONE".
recordCount Number
The count of the Private Zone Record.
remark String
The remark of the Private Zone.
resourceGroupId Changes to this property will trigger replacement. String
The Id of resource group which the Private Zone belongs.
syncStatus String
The status of the host synchronization task. Valid values: ON,OFF. NOTE: You can update the sync_status to enable/disable the host synchronization task.
tags Map<String>
The tags of the Private Zone.
userClientIp String
The IP address of the client.
userInfos List<Property Map>
The user information of the host synchronization task. See user_info below.
zoneName Changes to this property will trigger replacement. String
The zone_name of the Private Zone. The zone_name is required when the value of the name is Empty.

Supporting Types

ZoneUserInfo
, ZoneUserInfoArgs

RegionIds List<string>
The list of the region IDs.
UserId string
The user ID belonging to the region is used for cross-account synchronization scenarios.
RegionIds []string
The list of the region IDs.
UserId string
The user ID belonging to the region is used for cross-account synchronization scenarios.
regionIds List<String>
The list of the region IDs.
userId String
The user ID belonging to the region is used for cross-account synchronization scenarios.
regionIds string[]
The list of the region IDs.
userId string
The user ID belonging to the region is used for cross-account synchronization scenarios.
region_ids Sequence[str]
The list of the region IDs.
user_id str
The user ID belonging to the region is used for cross-account synchronization scenarios.
regionIds List<String>
The list of the region IDs.
userId String
The user ID belonging to the region is used for cross-account synchronization scenarios.

Import

Private Zone can be imported using the id, e.g.

$ pulumi import alicloud:pvtz/zone:Zone example abc123456
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
Alibaba Cloud pulumi/pulumi-alicloud
License
Apache-2.0
Notes
This Pulumi package is based on the alicloud Terraform Provider.