1. Packages
  2. Alibaba Cloud Provider
  3. API Docs
  4. pvtz
  5. UserVpcAuthorization
Alibaba Cloud v3.75.0 published on Friday, Mar 7, 2025 by Pulumi

alicloud.pvtz.UserVpcAuthorization

Explore with Pulumi AI

Provides a Private Zone User Vpc Authorization resource.

NOTE: Available since v1.138.0.

Example Usage

Basic Usage

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

const config = new pulumi.Config();
const authorizedUserId = config.getNumber("authorizedUserId") || 123456789;
const example = new alicloud.pvtz.UserVpcAuthorization("example", {
    authorizedUserId: authorizedUserId,
    authChannel: "RESOURCE_DIRECTORY",
});
Copy
import pulumi
import pulumi_alicloud as alicloud

config = pulumi.Config()
authorized_user_id = config.get_float("authorizedUserId")
if authorized_user_id is None:
    authorized_user_id = 123456789
example = alicloud.pvtz.UserVpcAuthorization("example",
    authorized_user_id=authorized_user_id,
    auth_channel="RESOURCE_DIRECTORY")
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		cfg := config.New(ctx, "")
		authorizedUserId := float64(123456789)
		if param := cfg.GetFloat64("authorizedUserId"); param != 0 {
			authorizedUserId = param
		}
		_, err := pvtz.NewUserVpcAuthorization(ctx, "example", &pvtz.UserVpcAuthorizationArgs{
			AuthorizedUserId: pulumi.Float64(authorizedUserId),
			AuthChannel:      pulumi.String("RESOURCE_DIRECTORY"),
		})
		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 config = new Config();
    var authorizedUserId = config.GetDouble("authorizedUserId") ?? 123456789;
    var example = new AliCloud.Pvtz.UserVpcAuthorization("example", new()
    {
        AuthorizedUserId = authorizedUserId,
        AuthChannel = "RESOURCE_DIRECTORY",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.pvtz.UserVpcAuthorization;
import com.pulumi.alicloud.pvtz.UserVpcAuthorizationArgs;
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) {
        final var config = ctx.config();
        final var authorizedUserId = config.get("authorizedUserId").orElse(123456789);
        var example = new UserVpcAuthorization("example", UserVpcAuthorizationArgs.builder()
            .authorizedUserId(authorizedUserId)
            .authChannel("RESOURCE_DIRECTORY")
            .build());

    }
}
Copy
configuration:
  authorizedUserId:
    type: number
    default: 1.23456789e+08
resources:
  example:
    type: alicloud:pvtz:UserVpcAuthorization
    properties:
      authorizedUserId: ${authorizedUserId}
      authChannel: RESOURCE_DIRECTORY
Copy

Create UserVpcAuthorization Resource

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

Constructor syntax

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

@overload
def UserVpcAuthorization(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         authorized_user_id: Optional[str] = None,
                         auth_channel: Optional[str] = None,
                         auth_type: Optional[str] = None)
func NewUserVpcAuthorization(ctx *Context, name string, args UserVpcAuthorizationArgs, opts ...ResourceOption) (*UserVpcAuthorization, error)
public UserVpcAuthorization(string name, UserVpcAuthorizationArgs args, CustomResourceOptions? opts = null)
public UserVpcAuthorization(String name, UserVpcAuthorizationArgs args)
public UserVpcAuthorization(String name, UserVpcAuthorizationArgs args, CustomResourceOptions options)
type: alicloud:pvtz:UserVpcAuthorization
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 This property is required. UserVpcAuthorizationArgs
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 This property is required. UserVpcAuthorizationArgs
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 This property is required. UserVpcAuthorizationArgs
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 This property is required. UserVpcAuthorizationArgs
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. UserVpcAuthorizationArgs
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 userVpcAuthorizationResource = new AliCloud.Pvtz.UserVpcAuthorization("userVpcAuthorizationResource", new()
{
    AuthorizedUserId = "string",
    AuthChannel = "string",
    AuthType = "string",
});
Copy
example, err := pvtz.NewUserVpcAuthorization(ctx, "userVpcAuthorizationResource", &pvtz.UserVpcAuthorizationArgs{
	AuthorizedUserId: pulumi.String("string"),
	AuthChannel:      pulumi.String("string"),
	AuthType:         pulumi.String("string"),
})
Copy
var userVpcAuthorizationResource = new UserVpcAuthorization("userVpcAuthorizationResource", UserVpcAuthorizationArgs.builder()
    .authorizedUserId("string")
    .authChannel("string")
    .authType("string")
    .build());
Copy
user_vpc_authorization_resource = alicloud.pvtz.UserVpcAuthorization("userVpcAuthorizationResource",
    authorized_user_id="string",
    auth_channel="string",
    auth_type="string")
Copy
const userVpcAuthorizationResource = new alicloud.pvtz.UserVpcAuthorization("userVpcAuthorizationResource", {
    authorizedUserId: "string",
    authChannel: "string",
    authType: "string",
});
Copy
type: alicloud:pvtz:UserVpcAuthorization
properties:
    authChannel: string
    authType: string
    authorizedUserId: string
Copy

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

AuthorizedUserId
This property is required.
Changes to this property will trigger replacement.
string
The primary account ID of the user who authorizes the resource.
AuthChannel string
The auth channel. Valid values: RESOURCE_DIRECTORY.
AuthType Changes to this property will trigger replacement. string
The type of Authorization. Valid values: NORMAL and CLOUD_PRODUCT.
AuthorizedUserId
This property is required.
Changes to this property will trigger replacement.
string
The primary account ID of the user who authorizes the resource.
AuthChannel string
The auth channel. Valid values: RESOURCE_DIRECTORY.
AuthType Changes to this property will trigger replacement. string
The type of Authorization. Valid values: NORMAL and CLOUD_PRODUCT.
authorizedUserId
This property is required.
Changes to this property will trigger replacement.
String
The primary account ID of the user who authorizes the resource.
authChannel String
The auth channel. Valid values: RESOURCE_DIRECTORY.
authType Changes to this property will trigger replacement. String
The type of Authorization. Valid values: NORMAL and CLOUD_PRODUCT.
authorizedUserId
This property is required.
Changes to this property will trigger replacement.
string
The primary account ID of the user who authorizes the resource.
authChannel string
The auth channel. Valid values: RESOURCE_DIRECTORY.
authType Changes to this property will trigger replacement. string
The type of Authorization. Valid values: NORMAL and CLOUD_PRODUCT.
authorized_user_id
This property is required.
Changes to this property will trigger replacement.
str
The primary account ID of the user who authorizes the resource.
auth_channel str
The auth channel. Valid values: RESOURCE_DIRECTORY.
auth_type Changes to this property will trigger replacement. str
The type of Authorization. Valid values: NORMAL and CLOUD_PRODUCT.
authorizedUserId
This property is required.
Changes to this property will trigger replacement.
String
The primary account ID of the user who authorizes the resource.
authChannel String
The auth channel. Valid values: RESOURCE_DIRECTORY.
authType Changes to this property will trigger replacement. String
The type of Authorization. Valid values: NORMAL and CLOUD_PRODUCT.

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing UserVpcAuthorization Resource

Get an existing UserVpcAuthorization 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?: UserVpcAuthorizationState, opts?: CustomResourceOptions): UserVpcAuthorization
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        auth_channel: Optional[str] = None,
        auth_type: Optional[str] = None,
        authorized_user_id: Optional[str] = None) -> UserVpcAuthorization
func GetUserVpcAuthorization(ctx *Context, name string, id IDInput, state *UserVpcAuthorizationState, opts ...ResourceOption) (*UserVpcAuthorization, error)
public static UserVpcAuthorization Get(string name, Input<string> id, UserVpcAuthorizationState? state, CustomResourceOptions? opts = null)
public static UserVpcAuthorization get(String name, Output<String> id, UserVpcAuthorizationState state, CustomResourceOptions options)
resources:  _:    type: alicloud:pvtz:UserVpcAuthorization    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:
AuthChannel string
The auth channel. Valid values: RESOURCE_DIRECTORY.
AuthType Changes to this property will trigger replacement. string
The type of Authorization. Valid values: NORMAL and CLOUD_PRODUCT.
AuthorizedUserId Changes to this property will trigger replacement. string
The primary account ID of the user who authorizes the resource.
AuthChannel string
The auth channel. Valid values: RESOURCE_DIRECTORY.
AuthType Changes to this property will trigger replacement. string
The type of Authorization. Valid values: NORMAL and CLOUD_PRODUCT.
AuthorizedUserId Changes to this property will trigger replacement. string
The primary account ID of the user who authorizes the resource.
authChannel String
The auth channel. Valid values: RESOURCE_DIRECTORY.
authType Changes to this property will trigger replacement. String
The type of Authorization. Valid values: NORMAL and CLOUD_PRODUCT.
authorizedUserId Changes to this property will trigger replacement. String
The primary account ID of the user who authorizes the resource.
authChannel string
The auth channel. Valid values: RESOURCE_DIRECTORY.
authType Changes to this property will trigger replacement. string
The type of Authorization. Valid values: NORMAL and CLOUD_PRODUCT.
authorizedUserId Changes to this property will trigger replacement. string
The primary account ID of the user who authorizes the resource.
auth_channel str
The auth channel. Valid values: RESOURCE_DIRECTORY.
auth_type Changes to this property will trigger replacement. str
The type of Authorization. Valid values: NORMAL and CLOUD_PRODUCT.
authorized_user_id Changes to this property will trigger replacement. str
The primary account ID of the user who authorizes the resource.
authChannel String
The auth channel. Valid values: RESOURCE_DIRECTORY.
authType Changes to this property will trigger replacement. String
The type of Authorization. Valid values: NORMAL and CLOUD_PRODUCT.
authorizedUserId Changes to this property will trigger replacement. String
The primary account ID of the user who authorizes the resource.

Import

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

$ pulumi import alicloud:pvtz/userVpcAuthorization:UserVpcAuthorization example <authorized_user_id>:<auth_type>
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.