1. Packages
  2. Alibaba Cloud
  3. API Docs
  4. rocketmq
  5. ClientUser
Alibaba Cloud v3.54.0 published on Wednesday, Apr 24, 2024 by Pulumi

alicloud.rocketmq.ClientUser

Explore with Pulumi AI

alicloud logo
Alibaba Cloud v3.54.0 published on Wednesday, Apr 24, 2024 by Pulumi

    Provides a Sag ClientUser resource. This topic describes how to manage accounts as an administrator. After you configure the network, you can create multiple accounts and distribute them to end users so that clients can access Alibaba Cloud.

    For information about Sag ClientUser and how to use it, see What is Sag ClientUser.

    NOTE: Available since v1.65.0.

    NOTE: Only the following regions support. [cn-shanghai, cn-shanghai-finance-1, cn-hongkong, ap-southeast-1, ap-southeast-3, ap-southeast-5, ap-northeast-1, eu-central-1]

    Example Usage

    Basic Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as alicloud from "@pulumi/alicloud";
    
    const config = new pulumi.Config();
    const name = config.get("name") || "tf-example";
    const sagId = config.get("sagId") || "sag-9bifkfaz4fg***";
    const _default = new alicloud.rocketmq.ClientUser("default", {
        sagId: sagId,
        bandwidth: 20,
        userMail: "tf-example@abc.com",
        userName: name,
        password: "example1234",
        clientIp: "192.1.10.0",
    });
    
    import pulumi
    import pulumi_alicloud as alicloud
    
    config = pulumi.Config()
    name = config.get("name")
    if name is None:
        name = "tf-example"
    sag_id = config.get("sagId")
    if sag_id is None:
        sag_id = "sag-9bifkfaz4fg***"
    default = alicloud.rocketmq.ClientUser("default",
        sag_id=sag_id,
        bandwidth=20,
        user_mail="tf-example@abc.com",
        user_name=name,
        password="example1234",
        client_ip="192.1.10.0")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/rocketmq"
    	"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, "")
    		name := "tf-example"
    		if param := cfg.Get("name"); param != "" {
    			name = param
    		}
    		sagId := "sag-9bifkfaz4fg***"
    		if param := cfg.Get("sagId"); param != "" {
    			sagId = param
    		}
    		_, err := rocketmq.NewClientUser(ctx, "default", &rocketmq.ClientUserArgs{
    			SagId:     pulumi.String(sagId),
    			Bandwidth: pulumi.Int(20),
    			UserMail:  pulumi.String("tf-example@abc.com"),
    			UserName:  pulumi.String(name),
    			Password:  pulumi.String("example1234"),
    			ClientIp:  pulumi.String("192.1.10.0"),
    		})
    		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 name = config.Get("name") ?? "tf-example";
        var sagId = config.Get("sagId") ?? "sag-9bifkfaz4fg***";
        var @default = new AliCloud.RocketMQ.ClientUser("default", new()
        {
            SagId = sagId,
            Bandwidth = 20,
            UserMail = "tf-example@abc.com",
            UserName = name,
            Password = "example1234",
            ClientIp = "192.1.10.0",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.alicloud.rocketmq.ClientUser;
    import com.pulumi.alicloud.rocketmq.ClientUserArgs;
    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 name = config.get("name").orElse("tf-example");
            final var sagId = config.get("sagId").orElse("sag-9bifkfaz4fg***");
            var default_ = new ClientUser("default", ClientUserArgs.builder()        
                .sagId(sagId)
                .bandwidth("20")
                .userMail("tf-example@abc.com")
                .userName(name)
                .password("example1234")
                .clientIp("192.1.10.0")
                .build());
    
        }
    }
    
    configuration:
      name:
        type: string
        default: tf-example
      sagId:
        type: string
        default: sag-9bifkfaz4fg***
    resources:
      default:
        type: alicloud:rocketmq:ClientUser
        properties:
          sagId: ${sagId}
          bandwidth: '20'
          userMail: tf-example@abc.com
          userName: ${name}
          password: example1234
          clientIp: 192.1.10.0
    

    Create ClientUser Resource

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

    Constructor syntax

    new ClientUser(name: string, args: ClientUserArgs, opts?: CustomResourceOptions);
    @overload
    def ClientUser(resource_name: str,
                   args: ClientUserArgs,
                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def ClientUser(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   bandwidth: Optional[int] = None,
                   sag_id: Optional[str] = None,
                   user_mail: Optional[str] = None,
                   client_ip: Optional[str] = None,
                   kms_encrypted_password: Optional[str] = None,
                   kms_encryption_context: Optional[Mapping[str, Any]] = None,
                   password: Optional[str] = None,
                   user_name: Optional[str] = None)
    func NewClientUser(ctx *Context, name string, args ClientUserArgs, opts ...ResourceOption) (*ClientUser, error)
    public ClientUser(string name, ClientUserArgs args, CustomResourceOptions? opts = null)
    public ClientUser(String name, ClientUserArgs args)
    public ClientUser(String name, ClientUserArgs args, CustomResourceOptions options)
    
    type: alicloud:rocketmq:ClientUser
    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 ClientUserArgs
    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 ClientUserArgs
    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 ClientUserArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ClientUserArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ClientUserArgs
    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 clientUserResource = new AliCloud.RocketMQ.ClientUser("clientUserResource", new()
    {
        Bandwidth = 0,
        SagId = "string",
        UserMail = "string",
        ClientIp = "string",
        KmsEncryptedPassword = "string",
        KmsEncryptionContext = 
        {
            { "string", "any" },
        },
        Password = "string",
        UserName = "string",
    });
    
    example, err := rocketmq.NewClientUser(ctx, "clientUserResource", &rocketmq.ClientUserArgs{
    	Bandwidth:            pulumi.Int(0),
    	SagId:                pulumi.String("string"),
    	UserMail:             pulumi.String("string"),
    	ClientIp:             pulumi.String("string"),
    	KmsEncryptedPassword: pulumi.String("string"),
    	KmsEncryptionContext: pulumi.Map{
    		"string": pulumi.Any("any"),
    	},
    	Password: pulumi.String("string"),
    	UserName: pulumi.String("string"),
    })
    
    var clientUserResource = new ClientUser("clientUserResource", ClientUserArgs.builder()        
        .bandwidth(0)
        .sagId("string")
        .userMail("string")
        .clientIp("string")
        .kmsEncryptedPassword("string")
        .kmsEncryptionContext(Map.of("string", "any"))
        .password("string")
        .userName("string")
        .build());
    
    client_user_resource = alicloud.rocketmq.ClientUser("clientUserResource",
        bandwidth=0,
        sag_id="string",
        user_mail="string",
        client_ip="string",
        kms_encrypted_password="string",
        kms_encryption_context={
            "string": "any",
        },
        password="string",
        user_name="string")
    
    const clientUserResource = new alicloud.rocketmq.ClientUser("clientUserResource", {
        bandwidth: 0,
        sagId: "string",
        userMail: "string",
        clientIp: "string",
        kmsEncryptedPassword: "string",
        kmsEncryptionContext: {
            string: "any",
        },
        password: "string",
        userName: "string",
    });
    
    type: alicloud:rocketmq:ClientUser
    properties:
        bandwidth: 0
        clientIp: string
        kmsEncryptedPassword: string
        kmsEncryptionContext:
            string: any
        password: string
        sagId: string
        userMail: string
        userName: string
    

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

    Bandwidth int
    The SAG APP bandwidth that the user can use. Unit: Kbit/s. Maximum value: 2000 Kbit/s.
    SagId string
    The ID of the SAG instance created for the SAG APP.
    UserMail string
    The email address of the user. The administrator uses this address to send the account information for logging on to the APP to the user.
    ClientIp string
    The IP address of the SAG APP. If you specify this parameter, the current account always uses the specified IP address.Note The IP address must be in the private CIDR block of the SAG client.If you do not specify this parameter, the system automatically allocates an IP address from the private CIDR block of the SAG client. In this case, each re-connection uses a different IP address.
    KmsEncryptedPassword string
    The password of the KMS Encryption.
    KmsEncryptionContext Dictionary<string, object>
    The context of the KMS Encryption.
    Password string
    The password used to log on to the SAG APP.Both the user name and the password must be specified. If you specify the user name, the password must be specified, too.
    UserName string
    The user name. User names in the same SAG APP must be unique.Both the user name and the password must be specified. If you specify the user name, the password must be specified, too.
    Bandwidth int
    The SAG APP bandwidth that the user can use. Unit: Kbit/s. Maximum value: 2000 Kbit/s.
    SagId string
    The ID of the SAG instance created for the SAG APP.
    UserMail string
    The email address of the user. The administrator uses this address to send the account information for logging on to the APP to the user.
    ClientIp string
    The IP address of the SAG APP. If you specify this parameter, the current account always uses the specified IP address.Note The IP address must be in the private CIDR block of the SAG client.If you do not specify this parameter, the system automatically allocates an IP address from the private CIDR block of the SAG client. In this case, each re-connection uses a different IP address.
    KmsEncryptedPassword string
    The password of the KMS Encryption.
    KmsEncryptionContext map[string]interface{}
    The context of the KMS Encryption.
    Password string
    The password used to log on to the SAG APP.Both the user name and the password must be specified. If you specify the user name, the password must be specified, too.
    UserName string
    The user name. User names in the same SAG APP must be unique.Both the user name and the password must be specified. If you specify the user name, the password must be specified, too.
    bandwidth Integer
    The SAG APP bandwidth that the user can use. Unit: Kbit/s. Maximum value: 2000 Kbit/s.
    sagId String
    The ID of the SAG instance created for the SAG APP.
    userMail String
    The email address of the user. The administrator uses this address to send the account information for logging on to the APP to the user.
    clientIp String
    The IP address of the SAG APP. If you specify this parameter, the current account always uses the specified IP address.Note The IP address must be in the private CIDR block of the SAG client.If you do not specify this parameter, the system automatically allocates an IP address from the private CIDR block of the SAG client. In this case, each re-connection uses a different IP address.
    kmsEncryptedPassword String
    The password of the KMS Encryption.
    kmsEncryptionContext Map<String,Object>
    The context of the KMS Encryption.
    password String
    The password used to log on to the SAG APP.Both the user name and the password must be specified. If you specify the user name, the password must be specified, too.
    userName String
    The user name. User names in the same SAG APP must be unique.Both the user name and the password must be specified. If you specify the user name, the password must be specified, too.
    bandwidth number
    The SAG APP bandwidth that the user can use. Unit: Kbit/s. Maximum value: 2000 Kbit/s.
    sagId string
    The ID of the SAG instance created for the SAG APP.
    userMail string
    The email address of the user. The administrator uses this address to send the account information for logging on to the APP to the user.
    clientIp string
    The IP address of the SAG APP. If you specify this parameter, the current account always uses the specified IP address.Note The IP address must be in the private CIDR block of the SAG client.If you do not specify this parameter, the system automatically allocates an IP address from the private CIDR block of the SAG client. In this case, each re-connection uses a different IP address.
    kmsEncryptedPassword string
    The password of the KMS Encryption.
    kmsEncryptionContext {[key: string]: any}
    The context of the KMS Encryption.
    password string
    The password used to log on to the SAG APP.Both the user name and the password must be specified. If you specify the user name, the password must be specified, too.
    userName string
    The user name. User names in the same SAG APP must be unique.Both the user name and the password must be specified. If you specify the user name, the password must be specified, too.
    bandwidth int
    The SAG APP bandwidth that the user can use. Unit: Kbit/s. Maximum value: 2000 Kbit/s.
    sag_id str
    The ID of the SAG instance created for the SAG APP.
    user_mail str
    The email address of the user. The administrator uses this address to send the account information for logging on to the APP to the user.
    client_ip str
    The IP address of the SAG APP. If you specify this parameter, the current account always uses the specified IP address.Note The IP address must be in the private CIDR block of the SAG client.If you do not specify this parameter, the system automatically allocates an IP address from the private CIDR block of the SAG client. In this case, each re-connection uses a different IP address.
    kms_encrypted_password str
    The password of the KMS Encryption.
    kms_encryption_context Mapping[str, Any]
    The context of the KMS Encryption.
    password str
    The password used to log on to the SAG APP.Both the user name and the password must be specified. If you specify the user name, the password must be specified, too.
    user_name str
    The user name. User names in the same SAG APP must be unique.Both the user name and the password must be specified. If you specify the user name, the password must be specified, too.
    bandwidth Number
    The SAG APP bandwidth that the user can use. Unit: Kbit/s. Maximum value: 2000 Kbit/s.
    sagId String
    The ID of the SAG instance created for the SAG APP.
    userMail String
    The email address of the user. The administrator uses this address to send the account information for logging on to the APP to the user.
    clientIp String
    The IP address of the SAG APP. If you specify this parameter, the current account always uses the specified IP address.Note The IP address must be in the private CIDR block of the SAG client.If you do not specify this parameter, the system automatically allocates an IP address from the private CIDR block of the SAG client. In this case, each re-connection uses a different IP address.
    kmsEncryptedPassword String
    The password of the KMS Encryption.
    kmsEncryptionContext Map<Any>
    The context of the KMS Encryption.
    password String
    The password used to log on to the SAG APP.Both the user name and the password must be specified. If you specify the user name, the password must be specified, too.
    userName String
    The user name. User names in the same SAG APP must be unique.Both the user name and the password must be specified. If you specify the user name, the password must be specified, too.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ClientUser 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 ClientUser Resource

    Get an existing ClientUser 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?: ClientUserState, opts?: CustomResourceOptions): ClientUser
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            bandwidth: Optional[int] = None,
            client_ip: Optional[str] = None,
            kms_encrypted_password: Optional[str] = None,
            kms_encryption_context: Optional[Mapping[str, Any]] = None,
            password: Optional[str] = None,
            sag_id: Optional[str] = None,
            user_mail: Optional[str] = None,
            user_name: Optional[str] = None) -> ClientUser
    func GetClientUser(ctx *Context, name string, id IDInput, state *ClientUserState, opts ...ResourceOption) (*ClientUser, error)
    public static ClientUser Get(string name, Input<string> id, ClientUserState? state, CustomResourceOptions? opts = null)
    public static ClientUser get(String name, Output<String> id, ClientUserState 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:
    Bandwidth int
    The SAG APP bandwidth that the user can use. Unit: Kbit/s. Maximum value: 2000 Kbit/s.
    ClientIp string
    The IP address of the SAG APP. If you specify this parameter, the current account always uses the specified IP address.Note The IP address must be in the private CIDR block of the SAG client.If you do not specify this parameter, the system automatically allocates an IP address from the private CIDR block of the SAG client. In this case, each re-connection uses a different IP address.
    KmsEncryptedPassword string
    The password of the KMS Encryption.
    KmsEncryptionContext Dictionary<string, object>
    The context of the KMS Encryption.
    Password string
    The password used to log on to the SAG APP.Both the user name and the password must be specified. If you specify the user name, the password must be specified, too.
    SagId string
    The ID of the SAG instance created for the SAG APP.
    UserMail string
    The email address of the user. The administrator uses this address to send the account information for logging on to the APP to the user.
    UserName string
    The user name. User names in the same SAG APP must be unique.Both the user name and the password must be specified. If you specify the user name, the password must be specified, too.
    Bandwidth int
    The SAG APP bandwidth that the user can use. Unit: Kbit/s. Maximum value: 2000 Kbit/s.
    ClientIp string
    The IP address of the SAG APP. If you specify this parameter, the current account always uses the specified IP address.Note The IP address must be in the private CIDR block of the SAG client.If you do not specify this parameter, the system automatically allocates an IP address from the private CIDR block of the SAG client. In this case, each re-connection uses a different IP address.
    KmsEncryptedPassword string
    The password of the KMS Encryption.
    KmsEncryptionContext map[string]interface{}
    The context of the KMS Encryption.
    Password string
    The password used to log on to the SAG APP.Both the user name and the password must be specified. If you specify the user name, the password must be specified, too.
    SagId string
    The ID of the SAG instance created for the SAG APP.
    UserMail string
    The email address of the user. The administrator uses this address to send the account information for logging on to the APP to the user.
    UserName string
    The user name. User names in the same SAG APP must be unique.Both the user name and the password must be specified. If you specify the user name, the password must be specified, too.
    bandwidth Integer
    The SAG APP bandwidth that the user can use. Unit: Kbit/s. Maximum value: 2000 Kbit/s.
    clientIp String
    The IP address of the SAG APP. If you specify this parameter, the current account always uses the specified IP address.Note The IP address must be in the private CIDR block of the SAG client.If you do not specify this parameter, the system automatically allocates an IP address from the private CIDR block of the SAG client. In this case, each re-connection uses a different IP address.
    kmsEncryptedPassword String
    The password of the KMS Encryption.
    kmsEncryptionContext Map<String,Object>
    The context of the KMS Encryption.
    password String
    The password used to log on to the SAG APP.Both the user name and the password must be specified. If you specify the user name, the password must be specified, too.
    sagId String
    The ID of the SAG instance created for the SAG APP.
    userMail String
    The email address of the user. The administrator uses this address to send the account information for logging on to the APP to the user.
    userName String
    The user name. User names in the same SAG APP must be unique.Both the user name and the password must be specified. If you specify the user name, the password must be specified, too.
    bandwidth number
    The SAG APP bandwidth that the user can use. Unit: Kbit/s. Maximum value: 2000 Kbit/s.
    clientIp string
    The IP address of the SAG APP. If you specify this parameter, the current account always uses the specified IP address.Note The IP address must be in the private CIDR block of the SAG client.If you do not specify this parameter, the system automatically allocates an IP address from the private CIDR block of the SAG client. In this case, each re-connection uses a different IP address.
    kmsEncryptedPassword string
    The password of the KMS Encryption.
    kmsEncryptionContext {[key: string]: any}
    The context of the KMS Encryption.
    password string
    The password used to log on to the SAG APP.Both the user name and the password must be specified. If you specify the user name, the password must be specified, too.
    sagId string
    The ID of the SAG instance created for the SAG APP.
    userMail string
    The email address of the user. The administrator uses this address to send the account information for logging on to the APP to the user.
    userName string
    The user name. User names in the same SAG APP must be unique.Both the user name and the password must be specified. If you specify the user name, the password must be specified, too.
    bandwidth int
    The SAG APP bandwidth that the user can use. Unit: Kbit/s. Maximum value: 2000 Kbit/s.
    client_ip str
    The IP address of the SAG APP. If you specify this parameter, the current account always uses the specified IP address.Note The IP address must be in the private CIDR block of the SAG client.If you do not specify this parameter, the system automatically allocates an IP address from the private CIDR block of the SAG client. In this case, each re-connection uses a different IP address.
    kms_encrypted_password str
    The password of the KMS Encryption.
    kms_encryption_context Mapping[str, Any]
    The context of the KMS Encryption.
    password str
    The password used to log on to the SAG APP.Both the user name and the password must be specified. If you specify the user name, the password must be specified, too.
    sag_id str
    The ID of the SAG instance created for the SAG APP.
    user_mail str
    The email address of the user. The administrator uses this address to send the account information for logging on to the APP to the user.
    user_name str
    The user name. User names in the same SAG APP must be unique.Both the user name and the password must be specified. If you specify the user name, the password must be specified, too.
    bandwidth Number
    The SAG APP bandwidth that the user can use. Unit: Kbit/s. Maximum value: 2000 Kbit/s.
    clientIp String
    The IP address of the SAG APP. If you specify this parameter, the current account always uses the specified IP address.Note The IP address must be in the private CIDR block of the SAG client.If you do not specify this parameter, the system automatically allocates an IP address from the private CIDR block of the SAG client. In this case, each re-connection uses a different IP address.
    kmsEncryptedPassword String
    The password of the KMS Encryption.
    kmsEncryptionContext Map<Any>
    The context of the KMS Encryption.
    password String
    The password used to log on to the SAG APP.Both the user name and the password must be specified. If you specify the user name, the password must be specified, too.
    sagId String
    The ID of the SAG instance created for the SAG APP.
    userMail String
    The email address of the user. The administrator uses this address to send the account information for logging on to the APP to the user.
    userName String
    The user name. User names in the same SAG APP must be unique.Both the user name and the password must be specified. If you specify the user name, the password must be specified, too.

    Import

    The Sag ClientUser can be imported using the name, e.g.

    $ pulumi import alicloud:rocketmq/clientUser:ClientUser example sag-abc123456:tf-username-abc123456
    

    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.54.0 published on Wednesday, Apr 24, 2024 by Pulumi