1. Packages
  2. Alibaba Cloud
  3. API Docs
  4. pvtz
  5. UserVpcAuthorization
Alibaba Cloud v3.53.0 published on Wednesday, Apr 17, 2024 by Pulumi

alicloud.pvtz.UserVpcAuthorization

Explore with Pulumi AI

alicloud logo
Alibaba Cloud v3.53.0 published on Wednesday, Apr 17, 2024 by Pulumi

    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",
    });
    
    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")
    
    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
    	})
    }
    
    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",
        });
    
    });
    
    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());
    
        }
    }
    
    configuration:
      authorizedUserId:
        type: number
        default: 1.23456789e+08
    resources:
      example:
        type: alicloud:pvtz:UserVpcAuthorization
        properties:
          authorizedUserId: ${authorizedUserId}
          authChannel: RESOURCE_DIRECTORY
    

    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 string
    The unique name of the resource.
    args UserVpcAuthorizationArgs
    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 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 string
    The unique name of the resource.
    args UserVpcAuthorizationArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args UserVpcAuthorizationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args UserVpcAuthorizationArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    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",
    });
    
    example, err := pvtz.NewUserVpcAuthorization(ctx, "userVpcAuthorizationResource", &pvtz.UserVpcAuthorizationArgs{
    	AuthorizedUserId: pulumi.String("string"),
    	AuthChannel:      pulumi.String("string"),
    	AuthType:         pulumi.String("string"),
    })
    
    var userVpcAuthorizationResource = new UserVpcAuthorization("userVpcAuthorizationResource", UserVpcAuthorizationArgs.builder()        
        .authorizedUserId("string")
        .authChannel("string")
        .authType("string")
        .build());
    
    user_vpc_authorization_resource = alicloud.pvtz.UserVpcAuthorization("userVpcAuthorizationResource",
        authorized_user_id="string",
        auth_channel="string",
        auth_type="string")
    
    const userVpcAuthorizationResource = new alicloud.pvtz.UserVpcAuthorization("userVpcAuthorizationResource", {
        authorizedUserId: "string",
        authChannel: "string",
        authType: "string",
    });
    
    type: alicloud:pvtz:UserVpcAuthorization
    properties:
        authChannel: string
        authType: string
        authorizedUserId: string
    

    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

    The UserVpcAuthorization resource accepts the following input properties:

    AuthorizedUserId string
    The primary account ID of the user who authorizes the resource.
    AuthChannel string
    The auth channel. Valid values: RESOURCE_DIRECTORY.
    AuthType string
    The type of Authorization. Valid values: NORMAL and CLOUD_PRODUCT.
    AuthorizedUserId string
    The primary account ID of the user who authorizes the resource.
    AuthChannel string
    The auth channel. Valid values: RESOURCE_DIRECTORY.
    AuthType string
    The type of Authorization. Valid values: NORMAL and CLOUD_PRODUCT.
    authorizedUserId String
    The primary account ID of the user who authorizes the resource.
    authChannel String
    The auth channel. Valid values: RESOURCE_DIRECTORY.
    authType String
    The type of Authorization. Valid values: NORMAL and CLOUD_PRODUCT.
    authorizedUserId string
    The primary account ID of the user who authorizes the resource.
    authChannel string
    The auth channel. Valid values: RESOURCE_DIRECTORY.
    authType string
    The type of Authorization. Valid values: NORMAL and CLOUD_PRODUCT.
    authorized_user_id str
    The primary account ID of the user who authorizes the resource.
    auth_channel str
    The auth channel. Valid values: RESOURCE_DIRECTORY.
    auth_type str
    The type of Authorization. Valid values: NORMAL and CLOUD_PRODUCT.
    authorizedUserId String
    The primary account ID of the user who authorizes the resource.
    authChannel String
    The auth channel. Valid values: RESOURCE_DIRECTORY.
    authType 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)
    Resource lookup is not supported in YAML
    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:
    AuthChannel string
    The auth channel. Valid values: RESOURCE_DIRECTORY.
    AuthType string
    The type of Authorization. Valid values: NORMAL and CLOUD_PRODUCT.
    AuthorizedUserId string
    The primary account ID of the user who authorizes the resource.
    AuthChannel string
    The auth channel. Valid values: RESOURCE_DIRECTORY.
    AuthType string
    The type of Authorization. Valid values: NORMAL and CLOUD_PRODUCT.
    AuthorizedUserId string
    The primary account ID of the user who authorizes the resource.
    authChannel String
    The auth channel. Valid values: RESOURCE_DIRECTORY.
    authType String
    The type of Authorization. Valid values: NORMAL and CLOUD_PRODUCT.
    authorizedUserId String
    The primary account ID of the user who authorizes the resource.
    authChannel string
    The auth channel. Valid values: RESOURCE_DIRECTORY.
    authType string
    The type of Authorization. Valid values: NORMAL and CLOUD_PRODUCT.
    authorizedUserId string
    The primary account ID of the user who authorizes the resource.
    auth_channel str
    The auth channel. Valid values: RESOURCE_DIRECTORY.
    auth_type str
    The type of Authorization. Valid values: NORMAL and CLOUD_PRODUCT.
    authorized_user_id str
    The primary account ID of the user who authorizes the resource.
    authChannel String
    The auth channel. Valid values: RESOURCE_DIRECTORY.
    authType String
    The type of Authorization. Valid values: NORMAL and CLOUD_PRODUCT.
    authorizedUserId 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>
    

    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.
    alicloud logo
    Alibaba Cloud v3.53.0 published on Wednesday, Apr 17, 2024 by Pulumi