@upcloud/pulumi-upcloud
Version:
A Pulumi package for creating and managing UpCloud resources.
130 lines (129 loc) • 4.15 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* This resource represents an UpCloud Managed Object Storage user access key.
*
* ## 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,
* });
* const thisManagedObjectStorageUserAccessKey = new upcloud.ManagedObjectStorageUserAccessKey("this", {
* username: thisManagedObjectStorageUser.username,
* serviceUuid: _this.id,
* status: "Active",
* });
* ```
*/
export declare class ManagedObjectStorageUserAccessKey extends pulumi.CustomResource {
/**
* Get an existing ManagedObjectStorageUserAccessKey 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<pulumi.ID>, state?: ManagedObjectStorageUserAccessKeyState, opts?: pulumi.CustomResourceOptions): ManagedObjectStorageUserAccessKey;
/**
* Returns true if the given object is an instance of ManagedObjectStorageUserAccessKey. 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 ManagedObjectStorageUserAccessKey;
/**
* Access key id.
*/
readonly accessKeyId: pulumi.Output<string>;
/**
* Creation time.
*/
readonly createdAt: pulumi.Output<string>;
/**
* Last used.
*/
readonly lastUsedAt: pulumi.Output<string>;
/**
* Secret access key.
*/
readonly secretAccessKey: pulumi.Output<string>;
/**
* Managed Object Storage service UUID.
*/
readonly serviceUuid: pulumi.Output<string>;
/**
* Status of the key. Valid values: `Active`|`Inactive`
*/
readonly status: pulumi.Output<string>;
/**
* Username.
*/
readonly username: pulumi.Output<string>;
/**
* Create a ManagedObjectStorageUserAccessKey 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: ManagedObjectStorageUserAccessKeyArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* Input properties used for looking up and filtering ManagedObjectStorageUserAccessKey resources.
*/
export interface ManagedObjectStorageUserAccessKeyState {
/**
* Access key id.
*/
accessKeyId?: pulumi.Input<string>;
/**
* Creation time.
*/
createdAt?: pulumi.Input<string>;
/**
* Last used.
*/
lastUsedAt?: pulumi.Input<string>;
/**
* Secret access key.
*/
secretAccessKey?: pulumi.Input<string>;
/**
* Managed Object Storage service UUID.
*/
serviceUuid?: pulumi.Input<string>;
/**
* Status of the key. Valid values: `Active`|`Inactive`
*/
status?: pulumi.Input<string>;
/**
* Username.
*/
username?: pulumi.Input<string>;
}
/**
* The set of arguments for constructing a ManagedObjectStorageUserAccessKey resource.
*/
export interface ManagedObjectStorageUserAccessKeyArgs {
/**
* Managed Object Storage service UUID.
*/
serviceUuid: pulumi.Input<string>;
/**
* Status of the key. Valid values: `Active`|`Inactive`
*/
status: pulumi.Input<string>;
/**
* Username.
*/
username: pulumi.Input<string>;
}