1. Packages
  2. UpCloud
  3. API Docs
  4. ManagedObjectStorageUser
UpCloud v0.1.0 published on Friday, Mar 14, 2025 by UpCloudLtd

upcloud.ManagedObjectStorageUser

Explore with Pulumi AI

upcloud logo
UpCloud v0.1.0 published on Friday, Mar 14, 2025 by UpCloudLtd

    This resource represents an UpCloud Managed Object Storage user. No relation to UpCloud API accounts.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as upcloud from "@upcloud/pulumi-upcloud";
    
    const _this = new upcloud.ManagedObjectStorage("this", {
        name: "example",
        region: "europe-1",
        configuredStatus: "started",
    });
    const thisManagedObjectStorageUser = new upcloud.ManagedObjectStorageUser("this", {
        username: "example",
        serviceUuid: _this.id,
    });
    
    import pulumi
    import pulumi_upcloud as upcloud
    
    this = upcloud.ManagedObjectStorage("this",
        name="example",
        region="europe-1",
        configured_status="started")
    this_managed_object_storage_user = upcloud.ManagedObjectStorageUser("this",
        username="example",
        service_uuid=this.id)
    
    package main
    
    import (
    	"github.com/UpCloudLtd/pulumi-upcloud/sdk/go/upcloud"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		this, err := upcloud.NewManagedObjectStorage(ctx, "this", &upcloud.ManagedObjectStorageArgs{
    			Name:             pulumi.String("example"),
    			Region:           pulumi.String("europe-1"),
    			ConfiguredStatus: pulumi.String("started"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = upcloud.NewManagedObjectStorageUser(ctx, "this", &upcloud.ManagedObjectStorageUserArgs{
    			Username:    pulumi.String("example"),
    			ServiceUuid: this.ID(),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using UpCloud = UpCloud.Pulumi.UpCloud;
    
    return await Deployment.RunAsync(() => 
    {
        var @this = new UpCloud.ManagedObjectStorage("this", new()
        {
            Name = "example",
            Region = "europe-1",
            ConfiguredStatus = "started",
        });
    
        var thisManagedObjectStorageUser = new UpCloud.ManagedObjectStorageUser("this", new()
        {
            Username = "example",
            ServiceUuid = @this.Id,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.upcloud.ManagedObjectStorage;
    import com.pulumi.upcloud.ManagedObjectStorageArgs;
    import com.pulumi.upcloud.ManagedObjectStorageUser;
    import com.pulumi.upcloud.ManagedObjectStorageUserArgs;
    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 this_ = new ManagedObjectStorage("this", ManagedObjectStorageArgs.builder()
                .name("example")
                .region("europe-1")
                .configuredStatus("started")
                .build());
    
            var thisManagedObjectStorageUser = new ManagedObjectStorageUser("thisManagedObjectStorageUser", ManagedObjectStorageUserArgs.builder()
                .username("example")
                .serviceUuid(this_.id())
                .build());
    
        }
    }
    
    resources:
      this:
        type: upcloud:ManagedObjectStorage
        properties:
          name: example
          region: europe-1
          configuredStatus: started
      thisManagedObjectStorageUser:
        type: upcloud:ManagedObjectStorageUser
        name: this
        properties:
          username: example
          serviceUuid: ${this.id}
    

    Create ManagedObjectStorageUser Resource

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

    Constructor syntax

    new ManagedObjectStorageUser(name: string, args: ManagedObjectStorageUserArgs, opts?: CustomResourceOptions);
    @overload
    def ManagedObjectStorageUser(resource_name: str,
                                 args: ManagedObjectStorageUserArgs,
                                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def ManagedObjectStorageUser(resource_name: str,
                                 opts: Optional[ResourceOptions] = None,
                                 service_uuid: Optional[str] = None,
                                 username: Optional[str] = None)
    func NewManagedObjectStorageUser(ctx *Context, name string, args ManagedObjectStorageUserArgs, opts ...ResourceOption) (*ManagedObjectStorageUser, error)
    public ManagedObjectStorageUser(string name, ManagedObjectStorageUserArgs args, CustomResourceOptions? opts = null)
    public ManagedObjectStorageUser(String name, ManagedObjectStorageUserArgs args)
    public ManagedObjectStorageUser(String name, ManagedObjectStorageUserArgs args, CustomResourceOptions options)
    
    type: upcloud:ManagedObjectStorageUser
    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 ManagedObjectStorageUserArgs
    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 ManagedObjectStorageUserArgs
    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 ManagedObjectStorageUserArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ManagedObjectStorageUserArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ManagedObjectStorageUserArgs
    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 managedObjectStorageUserResource = new UpCloud.ManagedObjectStorageUser("managedObjectStorageUserResource", new()
    {
        ServiceUuid = "string",
        Username = "string",
    });
    
    example, err := upcloud.NewManagedObjectStorageUser(ctx, "managedObjectStorageUserResource", &upcloud.ManagedObjectStorageUserArgs{
    	ServiceUuid: pulumi.String("string"),
    	Username:    pulumi.String("string"),
    })
    
    var managedObjectStorageUserResource = new ManagedObjectStorageUser("managedObjectStorageUserResource", ManagedObjectStorageUserArgs.builder()
        .serviceUuid("string")
        .username("string")
        .build());
    
    managed_object_storage_user_resource = upcloud.ManagedObjectStorageUser("managedObjectStorageUserResource",
        service_uuid="string",
        username="string")
    
    const managedObjectStorageUserResource = new upcloud.ManagedObjectStorageUser("managedObjectStorageUserResource", {
        serviceUuid: "string",
        username: "string",
    });
    
    type: upcloud:ManagedObjectStorageUser
    properties:
        serviceUuid: string
        username: string
    

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

    ServiceUuid string
    Managed Object Storage service UUID.
    Username string
    Custom usernames for accessing the object storage. No relation to UpCloud API accounts. See upcloud.ManagedObjectStorageUserAccessKey for managing access keys and upcloud.ManagedObjectStorageUserPolicy for managing policies.
    ServiceUuid string
    Managed Object Storage service UUID.
    Username string
    Custom usernames for accessing the object storage. No relation to UpCloud API accounts. See upcloud.ManagedObjectStorageUserAccessKey for managing access keys and upcloud.ManagedObjectStorageUserPolicy for managing policies.
    serviceUuid String
    Managed Object Storage service UUID.
    username String
    Custom usernames for accessing the object storage. No relation to UpCloud API accounts. See upcloud.ManagedObjectStorageUserAccessKey for managing access keys and upcloud.ManagedObjectStorageUserPolicy for managing policies.
    serviceUuid string
    Managed Object Storage service UUID.
    username string
    Custom usernames for accessing the object storage. No relation to UpCloud API accounts. See upcloud.ManagedObjectStorageUserAccessKey for managing access keys and upcloud.ManagedObjectStorageUserPolicy for managing policies.
    service_uuid str
    Managed Object Storage service UUID.
    username str
    Custom usernames for accessing the object storage. No relation to UpCloud API accounts. See upcloud.ManagedObjectStorageUserAccessKey for managing access keys and upcloud.ManagedObjectStorageUserPolicy for managing policies.
    serviceUuid String
    Managed Object Storage service UUID.
    username String
    Custom usernames for accessing the object storage. No relation to UpCloud API accounts. See upcloud.ManagedObjectStorageUserAccessKey for managing access keys and upcloud.ManagedObjectStorageUserPolicy for managing policies.

    Outputs

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

    Arn string
    User ARN.
    CreatedAt string
    Creation time.
    Id string
    The provider-assigned unique ID for this managed resource.
    Arn string
    User ARN.
    CreatedAt string
    Creation time.
    Id string
    The provider-assigned unique ID for this managed resource.
    arn String
    User ARN.
    createdAt String
    Creation time.
    id String
    The provider-assigned unique ID for this managed resource.
    arn string
    User ARN.
    createdAt string
    Creation time.
    id string
    The provider-assigned unique ID for this managed resource.
    arn str
    User ARN.
    created_at str
    Creation time.
    id str
    The provider-assigned unique ID for this managed resource.
    arn String
    User ARN.
    createdAt String
    Creation time.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing ManagedObjectStorageUser Resource

    Get an existing ManagedObjectStorageUser 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?: ManagedObjectStorageUserState, opts?: CustomResourceOptions): ManagedObjectStorageUser
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            arn: Optional[str] = None,
            created_at: Optional[str] = None,
            service_uuid: Optional[str] = None,
            username: Optional[str] = None) -> ManagedObjectStorageUser
    func GetManagedObjectStorageUser(ctx *Context, name string, id IDInput, state *ManagedObjectStorageUserState, opts ...ResourceOption) (*ManagedObjectStorageUser, error)
    public static ManagedObjectStorageUser Get(string name, Input<string> id, ManagedObjectStorageUserState? state, CustomResourceOptions? opts = null)
    public static ManagedObjectStorageUser get(String name, Output<String> id, ManagedObjectStorageUserState state, CustomResourceOptions options)
    resources:  _:    type: upcloud:ManagedObjectStorageUser    get:      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:
    Arn string
    User ARN.
    CreatedAt string
    Creation time.
    ServiceUuid string
    Managed Object Storage service UUID.
    Username string
    Custom usernames for accessing the object storage. No relation to UpCloud API accounts. See upcloud.ManagedObjectStorageUserAccessKey for managing access keys and upcloud.ManagedObjectStorageUserPolicy for managing policies.
    Arn string
    User ARN.
    CreatedAt string
    Creation time.
    ServiceUuid string
    Managed Object Storage service UUID.
    Username string
    Custom usernames for accessing the object storage. No relation to UpCloud API accounts. See upcloud.ManagedObjectStorageUserAccessKey for managing access keys and upcloud.ManagedObjectStorageUserPolicy for managing policies.
    arn String
    User ARN.
    createdAt String
    Creation time.
    serviceUuid String
    Managed Object Storage service UUID.
    username String
    Custom usernames for accessing the object storage. No relation to UpCloud API accounts. See upcloud.ManagedObjectStorageUserAccessKey for managing access keys and upcloud.ManagedObjectStorageUserPolicy for managing policies.
    arn string
    User ARN.
    createdAt string
    Creation time.
    serviceUuid string
    Managed Object Storage service UUID.
    username string
    Custom usernames for accessing the object storage. No relation to UpCloud API accounts. See upcloud.ManagedObjectStorageUserAccessKey for managing access keys and upcloud.ManagedObjectStorageUserPolicy for managing policies.
    arn str
    User ARN.
    created_at str
    Creation time.
    service_uuid str
    Managed Object Storage service UUID.
    username str
    Custom usernames for accessing the object storage. No relation to UpCloud API accounts. See upcloud.ManagedObjectStorageUserAccessKey for managing access keys and upcloud.ManagedObjectStorageUserPolicy for managing policies.
    arn String
    User ARN.
    createdAt String
    Creation time.
    serviceUuid String
    Managed Object Storage service UUID.
    username String
    Custom usernames for accessing the object storage. No relation to UpCloud API accounts. See upcloud.ManagedObjectStorageUserAccessKey for managing access keys and upcloud.ManagedObjectStorageUserPolicy for managing policies.

    Package Details

    Repository
    upcloud UpCloudLtd/pulumi-upcloud
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the upcloud Terraform Provider.
    upcloud logo
    UpCloud v0.1.0 published on Friday, Mar 14, 2025 by UpCloudLtd