1. Packages
  2. Genesis Cloud
  3. API Docs
  4. Filesystem
Genesis Cloud v0.0.26 published on Thursday, May 23, 2024 by Genesiscloud

genesiscloud.Filesystem

Explore with Pulumi AI

genesiscloud logo
Genesis Cloud v0.0.26 published on Thursday, May 23, 2024 by Genesiscloud

    Filesystem resource

    Example Usage

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Genesiscloud = GenesisCloud.PulumiPackage.Genesiscloud;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Genesiscloud.Filesystem("example", new()
        {
            Description = "Example filesystem",
            Region = "NORD-NO-KRS-1",
            Size = 50,
            Type = "vast",
        });
    
    });
    
    package main
    
    import (
    	"github.com/genesiscloud/pulumi-genesiscloud/sdk/go/genesiscloud"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := genesiscloud.NewFilesystem(ctx, "example", &genesiscloud.FilesystemArgs{
    			Description: pulumi.String("Example filesystem"),
    			Region:      pulumi.String("NORD-NO-KRS-1"),
    			Size:        pulumi.Int(50),
    			Type:        pulumi.String("vast"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.genesiscloud.Filesystem;
    import com.pulumi.genesiscloud.FilesystemArgs;
    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 example = new Filesystem("example", FilesystemArgs.builder()        
                .description("Example filesystem")
                .region("NORD-NO-KRS-1")
                .size(50)
                .type("vast")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_genesiscloud as genesiscloud
    
    example = genesiscloud.Filesystem("example",
        description="Example filesystem",
        region="NORD-NO-KRS-1",
        size=50,
        type="vast")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as genesiscloud from "@genesiscloud/pulumi-genesiscloud";
    
    const example = new genesiscloud.Filesystem("example", {
        description: "Example filesystem",
        region: "NORD-NO-KRS-1",
        size: 50,
        type: "vast",
    });
    
    resources:
      example:
        type: genesiscloud:Filesystem
        properties:
          description: Example filesystem
          region: NORD-NO-KRS-1
          size: 50
          type: vast
    

    Create Filesystem Resource

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

    Constructor syntax

    new Filesystem(name: string, args: FilesystemArgs, opts?: CustomResourceOptions);
    @overload
    def Filesystem(resource_name: str,
                   args: FilesystemArgs,
                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def Filesystem(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   region: Optional[str] = None,
                   size: Optional[int] = None,
                   type: Optional[str] = None,
                   description: Optional[str] = None,
                   name: Optional[str] = None,
                   retain_on_delete: Optional[bool] = None,
                   timeouts: Optional[FilesystemTimeoutsArgs] = None)
    func NewFilesystem(ctx *Context, name string, args FilesystemArgs, opts ...ResourceOption) (*Filesystem, error)
    public Filesystem(string name, FilesystemArgs args, CustomResourceOptions? opts = null)
    public Filesystem(String name, FilesystemArgs args)
    public Filesystem(String name, FilesystemArgs args, CustomResourceOptions options)
    
    type: genesiscloud:Filesystem
    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 FilesystemArgs
    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 FilesystemArgs
    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 FilesystemArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args FilesystemArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args FilesystemArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var filesystemResource = new Genesiscloud.Filesystem("filesystemResource", new()
    {
        Region = "string",
        Size = 0,
        Type = "string",
        Description = "string",
        Name = "string",
        RetainOnDelete = false,
        Timeouts = new Genesiscloud.Inputs.FilesystemTimeoutsArgs
        {
            Create = "string",
            Delete = "string",
            Read = "string",
            Update = "string",
        },
    });
    
    example, err := genesiscloud.NewFilesystem(ctx, "filesystemResource", &genesiscloud.FilesystemArgs{
    	Region:         pulumi.String("string"),
    	Size:           pulumi.Int(0),
    	Type:           pulumi.String("string"),
    	Description:    pulumi.String("string"),
    	Name:           pulumi.String("string"),
    	RetainOnDelete: pulumi.Bool(false),
    	Timeouts: &genesiscloud.FilesystemTimeoutsArgs{
    		Create: pulumi.String("string"),
    		Delete: pulumi.String("string"),
    		Read:   pulumi.String("string"),
    		Update: pulumi.String("string"),
    	},
    })
    
    var filesystemResource = new Filesystem("filesystemResource", FilesystemArgs.builder()
        .region("string")
        .size(0)
        .type("string")
        .description("string")
        .name("string")
        .retainOnDelete(false)
        .timeouts(FilesystemTimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .read("string")
            .update("string")
            .build())
        .build());
    
    filesystem_resource = genesiscloud.Filesystem("filesystemResource",
        region="string",
        size=0,
        type="string",
        description="string",
        name="string",
        retain_on_delete=False,
        timeouts=genesiscloud.FilesystemTimeoutsArgs(
            create="string",
            delete="string",
            read="string",
            update="string",
        ))
    
    const filesystemResource = new genesiscloud.Filesystem("filesystemResource", {
        region: "string",
        size: 0,
        type: "string",
        description: "string",
        name: "string",
        retainOnDelete: false,
        timeouts: {
            create: "string",
            "delete": "string",
            read: "string",
            update: "string",
        },
    });
    
    type: genesiscloud:Filesystem
    properties:
        description: string
        name: string
        region: string
        retainOnDelete: false
        size: 0
        timeouts:
            create: string
            delete: string
            read: string
            update: string
        type: string
    

    Filesystem Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The Filesystem resource accepts the following input properties:

    Region string
    The identifier for the region this filesystem exists in. - If the value of this attribute changes, Terraform will destroy and recreate the resource. - The value must be one of: ["ARC-IS-HAF-1" "EUC-DE-MUC-1" "NORD-NO-KRS-1"].
    Size int
    The storage size of this filesystem given in GiB. - The value must be at least 1.
    Type string
    The storage type of the filesystem. - If the value of this attribute changes, Terraform will destroy and recreate the resource. - The value must be one of: ["vast"].
    Description string
    The human-readable description for the filesystem. - Sets the default value "" if the attribute is not set.
    Name string
    The human-readable name for the filesystem.
    RetainOnDelete bool
    Flag to retain the filesystem when the resource is deleted - Sets the default value "false" if the attribute is not set.
    Timeouts GenesisCloud.PulumiPackage.Genesiscloud.Inputs.FilesystemTimeouts
    Region string
    The identifier for the region this filesystem exists in. - If the value of this attribute changes, Terraform will destroy and recreate the resource. - The value must be one of: ["ARC-IS-HAF-1" "EUC-DE-MUC-1" "NORD-NO-KRS-1"].
    Size int
    The storage size of this filesystem given in GiB. - The value must be at least 1.
    Type string
    The storage type of the filesystem. - If the value of this attribute changes, Terraform will destroy and recreate the resource. - The value must be one of: ["vast"].
    Description string
    The human-readable description for the filesystem. - Sets the default value "" if the attribute is not set.
    Name string
    The human-readable name for the filesystem.
    RetainOnDelete bool
    Flag to retain the filesystem when the resource is deleted - Sets the default value "false" if the attribute is not set.
    Timeouts FilesystemTimeoutsArgs
    region String
    The identifier for the region this filesystem exists in. - If the value of this attribute changes, Terraform will destroy and recreate the resource. - The value must be one of: ["ARC-IS-HAF-1" "EUC-DE-MUC-1" "NORD-NO-KRS-1"].
    size Integer
    The storage size of this filesystem given in GiB. - The value must be at least 1.
    type String
    The storage type of the filesystem. - If the value of this attribute changes, Terraform will destroy and recreate the resource. - The value must be one of: ["vast"].
    description String
    The human-readable description for the filesystem. - Sets the default value "" if the attribute is not set.
    name String
    The human-readable name for the filesystem.
    retainOnDelete Boolean
    Flag to retain the filesystem when the resource is deleted - Sets the default value "false" if the attribute is not set.
    timeouts FilesystemTimeouts
    region string
    The identifier for the region this filesystem exists in. - If the value of this attribute changes, Terraform will destroy and recreate the resource. - The value must be one of: ["ARC-IS-HAF-1" "EUC-DE-MUC-1" "NORD-NO-KRS-1"].
    size number
    The storage size of this filesystem given in GiB. - The value must be at least 1.
    type string
    The storage type of the filesystem. - If the value of this attribute changes, Terraform will destroy and recreate the resource. - The value must be one of: ["vast"].
    description string
    The human-readable description for the filesystem. - Sets the default value "" if the attribute is not set.
    name string
    The human-readable name for the filesystem.
    retainOnDelete boolean
    Flag to retain the filesystem when the resource is deleted - Sets the default value "false" if the attribute is not set.
    timeouts FilesystemTimeouts
    region str
    The identifier for the region this filesystem exists in. - If the value of this attribute changes, Terraform will destroy and recreate the resource. - The value must be one of: ["ARC-IS-HAF-1" "EUC-DE-MUC-1" "NORD-NO-KRS-1"].
    size int
    The storage size of this filesystem given in GiB. - The value must be at least 1.
    type str
    The storage type of the filesystem. - If the value of this attribute changes, Terraform will destroy and recreate the resource. - The value must be one of: ["vast"].
    description str
    The human-readable description for the filesystem. - Sets the default value "" if the attribute is not set.
    name str
    The human-readable name for the filesystem.
    retain_on_delete bool
    Flag to retain the filesystem when the resource is deleted - Sets the default value "false" if the attribute is not set.
    timeouts FilesystemTimeoutsArgs
    region String
    The identifier for the region this filesystem exists in. - If the value of this attribute changes, Terraform will destroy and recreate the resource. - The value must be one of: ["ARC-IS-HAF-1" "EUC-DE-MUC-1" "NORD-NO-KRS-1"].
    size Number
    The storage size of this filesystem given in GiB. - The value must be at least 1.
    type String
    The storage type of the filesystem. - If the value of this attribute changes, Terraform will destroy and recreate the resource. - The value must be one of: ["vast"].
    description String
    The human-readable description for the filesystem. - Sets the default value "" if the attribute is not set.
    name String
    The human-readable name for the filesystem.
    retainOnDelete Boolean
    Flag to retain the filesystem when the resource is deleted - Sets the default value "false" if the attribute is not set.
    timeouts Property Map

    Outputs

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

    CreatedAt string
    The timestamp when this filesystem was created in RFC 3339.
    Id string
    The provider-assigned unique ID for this managed resource.
    MountBasePath string
    The base path on the server under which the mount point can be accessed.
    MountEndpointRanges List<string>
    The start and end IP of the mount endpoint range. Expressed as a array with two entries.
    Status string
    The filesystem status.
    CreatedAt string
    The timestamp when this filesystem was created in RFC 3339.
    Id string
    The provider-assigned unique ID for this managed resource.
    MountBasePath string
    The base path on the server under which the mount point can be accessed.
    MountEndpointRanges []string
    The start and end IP of the mount endpoint range. Expressed as a array with two entries.
    Status string
    The filesystem status.
    createdAt String
    The timestamp when this filesystem was created in RFC 3339.
    id String
    The provider-assigned unique ID for this managed resource.
    mountBasePath String
    The base path on the server under which the mount point can be accessed.
    mountEndpointRanges List<String>
    The start and end IP of the mount endpoint range. Expressed as a array with two entries.
    status String
    The filesystem status.
    createdAt string
    The timestamp when this filesystem was created in RFC 3339.
    id string
    The provider-assigned unique ID for this managed resource.
    mountBasePath string
    The base path on the server under which the mount point can be accessed.
    mountEndpointRanges string[]
    The start and end IP of the mount endpoint range. Expressed as a array with two entries.
    status string
    The filesystem status.
    created_at str
    The timestamp when this filesystem was created in RFC 3339.
    id str
    The provider-assigned unique ID for this managed resource.
    mount_base_path str
    The base path on the server under which the mount point can be accessed.
    mount_endpoint_ranges Sequence[str]
    The start and end IP of the mount endpoint range. Expressed as a array with two entries.
    status str
    The filesystem status.
    createdAt String
    The timestamp when this filesystem was created in RFC 3339.
    id String
    The provider-assigned unique ID for this managed resource.
    mountBasePath String
    The base path on the server under which the mount point can be accessed.
    mountEndpointRanges List<String>
    The start and end IP of the mount endpoint range. Expressed as a array with two entries.
    status String
    The filesystem status.

    Look up Existing Filesystem Resource

    Get an existing Filesystem 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?: FilesystemState, opts?: CustomResourceOptions): Filesystem
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            created_at: Optional[str] = None,
            description: Optional[str] = None,
            mount_base_path: Optional[str] = None,
            mount_endpoint_ranges: Optional[Sequence[str]] = None,
            name: Optional[str] = None,
            region: Optional[str] = None,
            retain_on_delete: Optional[bool] = None,
            size: Optional[int] = None,
            status: Optional[str] = None,
            timeouts: Optional[FilesystemTimeoutsArgs] = None,
            type: Optional[str] = None) -> Filesystem
    func GetFilesystem(ctx *Context, name string, id IDInput, state *FilesystemState, opts ...ResourceOption) (*Filesystem, error)
    public static Filesystem Get(string name, Input<string> id, FilesystemState? state, CustomResourceOptions? opts = null)
    public static Filesystem get(String name, Output<String> id, FilesystemState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    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:
    CreatedAt string
    The timestamp when this filesystem was created in RFC 3339.
    Description string
    The human-readable description for the filesystem. - Sets the default value "" if the attribute is not set.
    MountBasePath string
    The base path on the server under which the mount point can be accessed.
    MountEndpointRanges List<string>
    The start and end IP of the mount endpoint range. Expressed as a array with two entries.
    Name string
    The human-readable name for the filesystem.
    Region string
    The identifier for the region this filesystem exists in. - If the value of this attribute changes, Terraform will destroy and recreate the resource. - The value must be one of: ["ARC-IS-HAF-1" "EUC-DE-MUC-1" "NORD-NO-KRS-1"].
    RetainOnDelete bool
    Flag to retain the filesystem when the resource is deleted - Sets the default value "false" if the attribute is not set.
    Size int
    The storage size of this filesystem given in GiB. - The value must be at least 1.
    Status string
    The filesystem status.
    Timeouts GenesisCloud.PulumiPackage.Genesiscloud.Inputs.FilesystemTimeouts
    Type string
    The storage type of the filesystem. - If the value of this attribute changes, Terraform will destroy and recreate the resource. - The value must be one of: ["vast"].
    CreatedAt string
    The timestamp when this filesystem was created in RFC 3339.
    Description string
    The human-readable description for the filesystem. - Sets the default value "" if the attribute is not set.
    MountBasePath string
    The base path on the server under which the mount point can be accessed.
    MountEndpointRanges []string
    The start and end IP of the mount endpoint range. Expressed as a array with two entries.
    Name string
    The human-readable name for the filesystem.
    Region string
    The identifier for the region this filesystem exists in. - If the value of this attribute changes, Terraform will destroy and recreate the resource. - The value must be one of: ["ARC-IS-HAF-1" "EUC-DE-MUC-1" "NORD-NO-KRS-1"].
    RetainOnDelete bool
    Flag to retain the filesystem when the resource is deleted - Sets the default value "false" if the attribute is not set.
    Size int
    The storage size of this filesystem given in GiB. - The value must be at least 1.
    Status string
    The filesystem status.
    Timeouts FilesystemTimeoutsArgs
    Type string
    The storage type of the filesystem. - If the value of this attribute changes, Terraform will destroy and recreate the resource. - The value must be one of: ["vast"].
    createdAt String
    The timestamp when this filesystem was created in RFC 3339.
    description String
    The human-readable description for the filesystem. - Sets the default value "" if the attribute is not set.
    mountBasePath String
    The base path on the server under which the mount point can be accessed.
    mountEndpointRanges List<String>
    The start and end IP of the mount endpoint range. Expressed as a array with two entries.
    name String
    The human-readable name for the filesystem.
    region String
    The identifier for the region this filesystem exists in. - If the value of this attribute changes, Terraform will destroy and recreate the resource. - The value must be one of: ["ARC-IS-HAF-1" "EUC-DE-MUC-1" "NORD-NO-KRS-1"].
    retainOnDelete Boolean
    Flag to retain the filesystem when the resource is deleted - Sets the default value "false" if the attribute is not set.
    size Integer
    The storage size of this filesystem given in GiB. - The value must be at least 1.
    status String
    The filesystem status.
    timeouts FilesystemTimeouts
    type String
    The storage type of the filesystem. - If the value of this attribute changes, Terraform will destroy and recreate the resource. - The value must be one of: ["vast"].
    createdAt string
    The timestamp when this filesystem was created in RFC 3339.
    description string
    The human-readable description for the filesystem. - Sets the default value "" if the attribute is not set.
    mountBasePath string
    The base path on the server under which the mount point can be accessed.
    mountEndpointRanges string[]
    The start and end IP of the mount endpoint range. Expressed as a array with two entries.
    name string
    The human-readable name for the filesystem.
    region string
    The identifier for the region this filesystem exists in. - If the value of this attribute changes, Terraform will destroy and recreate the resource. - The value must be one of: ["ARC-IS-HAF-1" "EUC-DE-MUC-1" "NORD-NO-KRS-1"].
    retainOnDelete boolean
    Flag to retain the filesystem when the resource is deleted - Sets the default value "false" if the attribute is not set.
    size number
    The storage size of this filesystem given in GiB. - The value must be at least 1.
    status string
    The filesystem status.
    timeouts FilesystemTimeouts
    type string
    The storage type of the filesystem. - If the value of this attribute changes, Terraform will destroy and recreate the resource. - The value must be one of: ["vast"].
    created_at str
    The timestamp when this filesystem was created in RFC 3339.
    description str
    The human-readable description for the filesystem. - Sets the default value "" if the attribute is not set.
    mount_base_path str
    The base path on the server under which the mount point can be accessed.
    mount_endpoint_ranges Sequence[str]
    The start and end IP of the mount endpoint range. Expressed as a array with two entries.
    name str
    The human-readable name for the filesystem.
    region str
    The identifier for the region this filesystem exists in. - If the value of this attribute changes, Terraform will destroy and recreate the resource. - The value must be one of: ["ARC-IS-HAF-1" "EUC-DE-MUC-1" "NORD-NO-KRS-1"].
    retain_on_delete bool
    Flag to retain the filesystem when the resource is deleted - Sets the default value "false" if the attribute is not set.
    size int
    The storage size of this filesystem given in GiB. - The value must be at least 1.
    status str
    The filesystem status.
    timeouts FilesystemTimeoutsArgs
    type str
    The storage type of the filesystem. - If the value of this attribute changes, Terraform will destroy and recreate the resource. - The value must be one of: ["vast"].
    createdAt String
    The timestamp when this filesystem was created in RFC 3339.
    description String
    The human-readable description for the filesystem. - Sets the default value "" if the attribute is not set.
    mountBasePath String
    The base path on the server under which the mount point can be accessed.
    mountEndpointRanges List<String>
    The start and end IP of the mount endpoint range. Expressed as a array with two entries.
    name String
    The human-readable name for the filesystem.
    region String
    The identifier for the region this filesystem exists in. - If the value of this attribute changes, Terraform will destroy and recreate the resource. - The value must be one of: ["ARC-IS-HAF-1" "EUC-DE-MUC-1" "NORD-NO-KRS-1"].
    retainOnDelete Boolean
    Flag to retain the filesystem when the resource is deleted - Sets the default value "false" if the attribute is not set.
    size Number
    The storage size of this filesystem given in GiB. - The value must be at least 1.
    status String
    The filesystem status.
    timeouts Property Map
    type String
    The storage type of the filesystem. - If the value of this attribute changes, Terraform will destroy and recreate the resource. - The value must be one of: ["vast"].

    Supporting Types

    FilesystemTimeouts, FilesystemTimeoutsArgs

    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    Read string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
    Update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    Read string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
    Update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    read String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
    update String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    read string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
    update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    read str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
    update str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    read String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
    update String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).

    Import

     $ pulumi import genesiscloud:index/filesystem:Filesystem example 18efeec8-94f0-4776-8ff2-5e9b49c74608
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    genesiscloud genesiscloud/pulumi-genesiscloud
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the genesiscloud Terraform Provider.
    genesiscloud logo
    Genesis Cloud v0.0.26 published on Thursday, May 23, 2024 by Genesiscloud