UNPKG

@upcloud/pulumi-upcloud

Version:

A Pulumi package for creating and managing UpCloud resources.

95 lines 4.42 kB
"use strict"; // *** WARNING: this file was generated by pulumi-language-nodejs. *** // *** Do not edit by hand unless you're certain you know what you are doing! *** Object.defineProperty(exports, "__esModule", { value: true }); exports.ManagedObjectStoragePolicy = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("./utilities"); /** * 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, * }); * ``` */ 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, id, state, opts) { return new ManagedObjectStoragePolicy(name, state, { ...opts, id: id }); } /** * 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) { if (obj === undefined || obj === null) { return false; } return obj['__pulumiType'] === ManagedObjectStoragePolicy.__pulumiType; } constructor(name, argsOrState, opts) { let resourceInputs = {}; opts = opts || {}; if (opts.id) { const state = argsOrState; resourceInputs["arn"] = state?.arn; resourceInputs["attachmentCount"] = state?.attachmentCount; resourceInputs["createdAt"] = state?.createdAt; resourceInputs["defaultVersionId"] = state?.defaultVersionId; resourceInputs["description"] = state?.description; resourceInputs["document"] = state?.document; resourceInputs["name"] = state?.name; resourceInputs["serviceUuid"] = state?.serviceUuid; resourceInputs["system"] = state?.system; resourceInputs["updatedAt"] = state?.updatedAt; } else { const args = argsOrState; if (args?.document === undefined && !opts.urn) { throw new Error("Missing required property 'document'"); } if (args?.serviceUuid === undefined && !opts.urn) { throw new Error("Missing required property 'serviceUuid'"); } resourceInputs["description"] = args?.description; resourceInputs["document"] = args?.document; resourceInputs["name"] = args?.name; resourceInputs["serviceUuid"] = args?.serviceUuid; resourceInputs["arn"] = undefined /*out*/; resourceInputs["attachmentCount"] = undefined /*out*/; resourceInputs["createdAt"] = undefined /*out*/; resourceInputs["defaultVersionId"] = undefined /*out*/; resourceInputs["system"] = undefined /*out*/; resourceInputs["updatedAt"] = undefined /*out*/; } opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts); super(ManagedObjectStoragePolicy.__pulumiType, name, resourceInputs, opts); } } exports.ManagedObjectStoragePolicy = ManagedObjectStoragePolicy; /** @internal */ ManagedObjectStoragePolicy.__pulumiType = 'upcloud:index/managedObjectStoragePolicy:ManagedObjectStoragePolicy'; //# sourceMappingURL=managedObjectStoragePolicy.js.map