import * as pulumi from "@pulumi/pulumi"; /** * This resource represents an UpCloud Managed Object Storage user. No relation to UpCloud API accounts. * * ## Example Usage * * ```typescript * 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, * }); * ``` */ export declare class ManagedObjectStorageUser extends pulumi.CustomResource { /** * Get an existing ManagedObjectStorageUser resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: ManagedObjectStorageUserState, opts?: pulumi.CustomResourceOptions): ManagedObjectStorageUser; /** * Returns true if the given object is an instance of ManagedObjectStorageUser. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is ManagedObjectStorageUser; /** * User ARN. */ readonly arn: pulumi.Output; /** * Creation time. */ readonly createdAt: pulumi.Output; /** * Managed Object Storage service UUID. */ readonly serviceUuid: pulumi.Output; /** * 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. */ readonly username: pulumi.Output; /** * Create a ManagedObjectStorageUser resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: ManagedObjectStorageUserArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering ManagedObjectStorageUser resources. */ export interface ManagedObjectStorageUserState { /** * User ARN. */ arn?: pulumi.Input; /** * Creation time. */ createdAt?: pulumi.Input; /** * Managed Object Storage service UUID. */ serviceUuid?: pulumi.Input; /** * 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. */ username?: pulumi.Input; } /** * The set of arguments for constructing a ManagedObjectStorageUser resource. */ export interface ManagedObjectStorageUserArgs { /** * Managed Object Storage service UUID. */ serviceUuid: pulumi.Input; /** * 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. */ username: pulumi.Input; }