@upcloud/pulumi-upcloud
Version:
A Pulumi package for creating and managing UpCloud resources.
158 lines (157 loc) • 5.11 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* This resource represents an UpCloud Managed Object Storage policy.
*
* ## 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 thisManagedObjectStoragePolicy = new upcloud.ManagedObjectStoragePolicy("this", {
* name: "example",
* description: "example description",
* document: "%7B%22Version%22%3A%20%222012-10-17%22%2C%20%20%22Statement%22%3A%20%5B%7B%22Action%22%3A%20%5B%22iam%3AGetUser%22%5D%2C%20%22Resource%22%3A%20%22%2A%22%2C%20%22Effect%22%3A%20%22Allow%22%2C%20%22Sid%22%3A%20%22editor%22%7D%5D%7D",
* serviceUuid: _this.id,
* });
* ```
*/
export declare class ManagedObjectStoragePolicy extends pulumi.CustomResource {
/**
* Get an existing ManagedObjectStoragePolicy 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?: ManagedObjectStoragePolicyState, opts?: pulumi.CustomResourceOptions): ManagedObjectStoragePolicy;
/**
* Returns true if the given object is an instance of ManagedObjectStoragePolicy. 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 ManagedObjectStoragePolicy;
/**
* Policy ARN.
*/
readonly arn: pulumi.Output<string>;
/**
* Attachment count.
*/
readonly attachmentCount: pulumi.Output<number>;
/**
* Creation time.
*/
readonly createdAt: pulumi.Output<string>;
/**
* Default version id.
*/
readonly defaultVersionId: pulumi.Output<string>;
/**
* Description of the policy.
*/
readonly description: pulumi.Output<string | undefined>;
/**
* Policy document, URL-encoded compliant with RFC 3986. Extra whitespace and escapes are ignored when determining if the
* document has changed.
*/
readonly document: pulumi.Output<string>;
/**
* Policy name.
*/
readonly name: pulumi.Output<string>;
/**
* Managed Object Storage service UUID.
*/
readonly serviceUuid: pulumi.Output<string>;
/**
* Defines whether the policy was set up by the system.
*/
readonly system: pulumi.Output<boolean>;
/**
* Update time.
*/
readonly updatedAt: pulumi.Output<string>;
/**
* Create a ManagedObjectStoragePolicy 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: ManagedObjectStoragePolicyArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* Input properties used for looking up and filtering ManagedObjectStoragePolicy resources.
*/
export interface ManagedObjectStoragePolicyState {
/**
* Policy ARN.
*/
arn?: pulumi.Input<string>;
/**
* Attachment count.
*/
attachmentCount?: pulumi.Input<number>;
/**
* Creation time.
*/
createdAt?: pulumi.Input<string>;
/**
* Default version id.
*/
defaultVersionId?: pulumi.Input<string>;
/**
* Description of the policy.
*/
description?: pulumi.Input<string>;
/**
* Policy document, URL-encoded compliant with RFC 3986. Extra whitespace and escapes are ignored when determining if the
* document has changed.
*/
document?: pulumi.Input<string>;
/**
* Policy name.
*/
name?: pulumi.Input<string>;
/**
* Managed Object Storage service UUID.
*/
serviceUuid?: pulumi.Input<string>;
/**
* Defines whether the policy was set up by the system.
*/
system?: pulumi.Input<boolean>;
/**
* Update time.
*/
updatedAt?: pulumi.Input<string>;
}
/**
* The set of arguments for constructing a ManagedObjectStoragePolicy resource.
*/
export interface ManagedObjectStoragePolicyArgs {
/**
* Description of the policy.
*/
description?: pulumi.Input<string>;
/**
* Policy document, URL-encoded compliant with RFC 3986. Extra whitespace and escapes are ignored when determining if the
* document has changed.
*/
document: pulumi.Input<string>;
/**
* Policy name.
*/
name?: pulumi.Input<string>;
/**
* Managed Object Storage service UUID.
*/
serviceUuid: pulumi.Input<string>;
}