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

upcloud.ManagedObjectStoragePolicy

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 policy.

    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 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,
    });
    
    import pulumi
    import pulumi_upcloud as upcloud
    
    this = upcloud.ManagedObjectStorage("this",
        name="example",
        region="europe-1",
        configured_status="started")
    this_managed_object_storage_policy = 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",
        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.NewManagedObjectStoragePolicy(ctx, "this", &upcloud.ManagedObjectStoragePolicyArgs{
    			Name:        pulumi.String("example"),
    			Description: pulumi.String("example description"),
    			Document:    pulumi.String("%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(),
    		})
    		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 thisManagedObjectStoragePolicy = new UpCloud.ManagedObjectStoragePolicy("this", new()
        {
            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,
        });
    
    });
    
    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.ManagedObjectStoragePolicy;
    import com.pulumi.upcloud.ManagedObjectStoragePolicyArgs;
    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 thisManagedObjectStoragePolicy = new ManagedObjectStoragePolicy("thisManagedObjectStoragePolicy", ManagedObjectStoragePolicyArgs.builder()
                .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())
                .build());
    
        }
    }
    
    resources:
      this:
        type: upcloud:ManagedObjectStorage
        properties:
          name: example
          region: europe-1
          configuredStatus: started
      thisManagedObjectStoragePolicy:
        type: upcloud:ManagedObjectStoragePolicy
        name: this
        properties:
          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}
    

    Create ManagedObjectStoragePolicy Resource

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

    Constructor syntax

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

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

    Document string
    Policy document, URL-encoded compliant with RFC 3986. Extra whitespace and escapes are ignored when determining if the document has changed.
    ServiceUuid string
    Managed Object Storage service UUID.
    Description string
    Description of the policy.
    Name string
    Policy name.
    Document string
    Policy document, URL-encoded compliant with RFC 3986. Extra whitespace and escapes are ignored when determining if the document has changed.
    ServiceUuid string
    Managed Object Storage service UUID.
    Description string
    Description of the policy.
    Name string
    Policy name.
    document String
    Policy document, URL-encoded compliant with RFC 3986. Extra whitespace and escapes are ignored when determining if the document has changed.
    serviceUuid String
    Managed Object Storage service UUID.
    description String
    Description of the policy.
    name String
    Policy name.
    document string
    Policy document, URL-encoded compliant with RFC 3986. Extra whitespace and escapes are ignored when determining if the document has changed.
    serviceUuid string
    Managed Object Storage service UUID.
    description string
    Description of the policy.
    name string
    Policy name.
    document str
    Policy document, URL-encoded compliant with RFC 3986. Extra whitespace and escapes are ignored when determining if the document has changed.
    service_uuid str
    Managed Object Storage service UUID.
    description str
    Description of the policy.
    name str
    Policy name.
    document String
    Policy document, URL-encoded compliant with RFC 3986. Extra whitespace and escapes are ignored when determining if the document has changed.
    serviceUuid String
    Managed Object Storage service UUID.
    description String
    Description of the policy.
    name String
    Policy name.

    Outputs

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

    Arn string
    Policy ARN.
    AttachmentCount int
    Attachment count.
    CreatedAt string
    Creation time.
    DefaultVersionId string
    Default version id.
    Id string
    The provider-assigned unique ID for this managed resource.
    System bool
    Defines whether the policy was set up by the system.
    UpdatedAt string
    Update time.
    Arn string
    Policy ARN.
    AttachmentCount int
    Attachment count.
    CreatedAt string
    Creation time.
    DefaultVersionId string
    Default version id.
    Id string
    The provider-assigned unique ID for this managed resource.
    System bool
    Defines whether the policy was set up by the system.
    UpdatedAt string
    Update time.
    arn String
    Policy ARN.
    attachmentCount Integer
    Attachment count.
    createdAt String
    Creation time.
    defaultVersionId String
    Default version id.
    id String
    The provider-assigned unique ID for this managed resource.
    system Boolean
    Defines whether the policy was set up by the system.
    updatedAt String
    Update time.
    arn string
    Policy ARN.
    attachmentCount number
    Attachment count.
    createdAt string
    Creation time.
    defaultVersionId string
    Default version id.
    id string
    The provider-assigned unique ID for this managed resource.
    system boolean
    Defines whether the policy was set up by the system.
    updatedAt string
    Update time.
    arn str
    Policy ARN.
    attachment_count int
    Attachment count.
    created_at str
    Creation time.
    default_version_id str
    Default version id.
    id str
    The provider-assigned unique ID for this managed resource.
    system bool
    Defines whether the policy was set up by the system.
    updated_at str
    Update time.
    arn String
    Policy ARN.
    attachmentCount Number
    Attachment count.
    createdAt String
    Creation time.
    defaultVersionId String
    Default version id.
    id String
    The provider-assigned unique ID for this managed resource.
    system Boolean
    Defines whether the policy was set up by the system.
    updatedAt String
    Update time.

    Look up Existing ManagedObjectStoragePolicy Resource

    Get an existing ManagedObjectStoragePolicy 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?: ManagedObjectStoragePolicyState, opts?: CustomResourceOptions): ManagedObjectStoragePolicy
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            arn: Optional[str] = None,
            attachment_count: Optional[int] = None,
            created_at: Optional[str] = None,
            default_version_id: Optional[str] = None,
            description: Optional[str] = None,
            document: Optional[str] = None,
            name: Optional[str] = None,
            service_uuid: Optional[str] = None,
            system: Optional[bool] = None,
            updated_at: Optional[str] = None) -> ManagedObjectStoragePolicy
    func GetManagedObjectStoragePolicy(ctx *Context, name string, id IDInput, state *ManagedObjectStoragePolicyState, opts ...ResourceOption) (*ManagedObjectStoragePolicy, error)
    public static ManagedObjectStoragePolicy Get(string name, Input<string> id, ManagedObjectStoragePolicyState? state, CustomResourceOptions? opts = null)
    public static ManagedObjectStoragePolicy get(String name, Output<String> id, ManagedObjectStoragePolicyState state, CustomResourceOptions options)
    resources:  _:    type: upcloud:ManagedObjectStoragePolicy    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
    Policy ARN.
    AttachmentCount int
    Attachment count.
    CreatedAt string
    Creation time.
    DefaultVersionId string
    Default version id.
    Description string
    Description of the policy.
    Document string
    Policy document, URL-encoded compliant with RFC 3986. Extra whitespace and escapes are ignored when determining if the document has changed.
    Name string
    Policy name.
    ServiceUuid string
    Managed Object Storage service UUID.
    System bool
    Defines whether the policy was set up by the system.
    UpdatedAt string
    Update time.
    Arn string
    Policy ARN.
    AttachmentCount int
    Attachment count.
    CreatedAt string
    Creation time.
    DefaultVersionId string
    Default version id.
    Description string
    Description of the policy.
    Document string
    Policy document, URL-encoded compliant with RFC 3986. Extra whitespace and escapes are ignored when determining if the document has changed.
    Name string
    Policy name.
    ServiceUuid string
    Managed Object Storage service UUID.
    System bool
    Defines whether the policy was set up by the system.
    UpdatedAt string
    Update time.
    arn String
    Policy ARN.
    attachmentCount Integer
    Attachment count.
    createdAt String
    Creation time.
    defaultVersionId String
    Default version id.
    description String
    Description of the policy.
    document String
    Policy document, URL-encoded compliant with RFC 3986. Extra whitespace and escapes are ignored when determining if the document has changed.
    name String
    Policy name.
    serviceUuid String
    Managed Object Storage service UUID.
    system Boolean
    Defines whether the policy was set up by the system.
    updatedAt String
    Update time.
    arn string
    Policy ARN.
    attachmentCount number
    Attachment count.
    createdAt string
    Creation time.
    defaultVersionId string
    Default version id.
    description string
    Description of the policy.
    document string
    Policy document, URL-encoded compliant with RFC 3986. Extra whitespace and escapes are ignored when determining if the document has changed.
    name string
    Policy name.
    serviceUuid string
    Managed Object Storage service UUID.
    system boolean
    Defines whether the policy was set up by the system.
    updatedAt string
    Update time.
    arn str
    Policy ARN.
    attachment_count int
    Attachment count.
    created_at str
    Creation time.
    default_version_id str
    Default version id.
    description str
    Description of the policy.
    document str
    Policy document, URL-encoded compliant with RFC 3986. Extra whitespace and escapes are ignored when determining if the document has changed.
    name str
    Policy name.
    service_uuid str
    Managed Object Storage service UUID.
    system bool
    Defines whether the policy was set up by the system.
    updated_at str
    Update time.
    arn String
    Policy ARN.
    attachmentCount Number
    Attachment count.
    createdAt String
    Creation time.
    defaultVersionId String
    Default version id.
    description String
    Description of the policy.
    document String
    Policy document, URL-encoded compliant with RFC 3986. Extra whitespace and escapes are ignored when determining if the document has changed.
    name String
    Policy name.
    serviceUuid String
    Managed Object Storage service UUID.
    system Boolean
    Defines whether the policy was set up by the system.
    updatedAt String
    Update time.

    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