1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. FileStorage
  5. ExportSet
Oracle Cloud Infrastructure v0.20.1 published on Tuesday, Jun 6, 2023 by Pulumi

oci.FileStorage.ExportSet

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v0.20.1 published on Tuesday, Jun 6, 2023 by Pulumi

    Import

    ExportSets can be imported using the id, e.g.

     $ pulumi import oci:FileStorage/exportSet:ExportSet test_export_set "id"
    

    Example Usage

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Oci = Pulumi.Oci;
    
    return await Deployment.RunAsync(() => 
    {
        var testExportSet = new Oci.FileStorage.ExportSet("testExportSet", new()
        {
            MountTargetId = oci_file_storage_mount_target.Test_mount_target.Id,
            DisplayName = @var.Export_set_name,
            MaxFsStatBytes = "23843202333",
            MaxFsStatFiles = "223442",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/go/oci/FileStorage"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := FileStorage.NewExportSet(ctx, "testExportSet", &FileStorage.ExportSetArgs{
    			MountTargetId:  pulumi.Any(oci_file_storage_mount_target.Test_mount_target.Id),
    			DisplayName:    pulumi.Any(_var.Export_set_name),
    			MaxFsStatBytes: pulumi.String("23843202333"),
    			MaxFsStatFiles: pulumi.String("223442"),
    		})
    		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.oci.FileStorage.ExportSet;
    import com.pulumi.oci.FileStorage.ExportSetArgs;
    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 testExportSet = new ExportSet("testExportSet", ExportSetArgs.builder()        
                .mountTargetId(oci_file_storage_mount_target.test_mount_target().id())
                .displayName(var_.export_set_name())
                .maxFsStatBytes(23843202333)
                .maxFsStatFiles(223442)
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_oci as oci
    
    test_export_set = oci.file_storage.ExportSet("testExportSet",
        mount_target_id=oci_file_storage_mount_target["test_mount_target"]["id"],
        display_name=var["export_set_name"],
        max_fs_stat_bytes="23843202333",
        max_fs_stat_files="223442")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testExportSet = new oci.filestorage.ExportSet("testExportSet", {
        mountTargetId: oci_file_storage_mount_target.test_mount_target.id,
        displayName: _var.export_set_name,
        maxFsStatBytes: "23843202333",
        maxFsStatFiles: "223442",
    });
    
    resources:
      testExportSet:
        type: oci:FileStorage:ExportSet
        properties:
          #Required
          mountTargetId: ${oci_file_storage_mount_target.test_mount_target.id}
          #Optional
          displayName: ${var.export_set_name}
          maxFsStatBytes: 2.3843202333e+10
          maxFsStatFiles: 223442
    

    Create ExportSet Resource

    new ExportSet(name: string, args: ExportSetArgs, opts?: CustomResourceOptions);
    @overload
    def ExportSet(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  display_name: Optional[str] = None,
                  max_fs_stat_bytes: Optional[str] = None,
                  max_fs_stat_files: Optional[str] = None,
                  mount_target_id: Optional[str] = None)
    @overload
    def ExportSet(resource_name: str,
                  args: ExportSetArgs,
                  opts: Optional[ResourceOptions] = None)
    func NewExportSet(ctx *Context, name string, args ExportSetArgs, opts ...ResourceOption) (*ExportSet, error)
    public ExportSet(string name, ExportSetArgs args, CustomResourceOptions? opts = null)
    public ExportSet(String name, ExportSetArgs args)
    public ExportSet(String name, ExportSetArgs args, CustomResourceOptions options)
    
    type: oci:FileStorage:ExportSet
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args ExportSetArgs
    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 ExportSetArgs
    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 ExportSetArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ExportSetArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ExportSetArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

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

    MountTargetId string

    (Updatable) The OCID of the mount target that the export set is associated with

    DisplayName string

    (Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: My export set

    MaxFsStatBytes string

    (Updatable) Controls the maximum tbytes, fbytes, and abytes, values reported by NFS FSSTAT calls through any associated mount targets. This is an advanced feature. For most applications, use the default value. The tbytes value reported by FSSTAT will be maxFsStatBytes. The value of fbytes and abytes will be maxFsStatBytes minus the metered size of the file system. If the metered size is larger than maxFsStatBytes, then fbytes and abytes will both be '0'.

    MaxFsStatFiles string

    (Updatable) Controls the maximum tfiles, ffiles, and afiles values reported by NFS FSSTAT calls through any associated mount targets. This is an advanced feature. For most applications, use the default value. The tfiles value reported by FSSTAT will be maxFsStatFiles. The value of ffiles and afiles will be maxFsStatFiles minus the metered size of the file system. If the metered size is larger than maxFsStatFiles, then ffiles and afiles will both be '0'.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    MountTargetId string

    (Updatable) The OCID of the mount target that the export set is associated with

    DisplayName string

    (Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: My export set

    MaxFsStatBytes string

    (Updatable) Controls the maximum tbytes, fbytes, and abytes, values reported by NFS FSSTAT calls through any associated mount targets. This is an advanced feature. For most applications, use the default value. The tbytes value reported by FSSTAT will be maxFsStatBytes. The value of fbytes and abytes will be maxFsStatBytes minus the metered size of the file system. If the metered size is larger than maxFsStatBytes, then fbytes and abytes will both be '0'.

    MaxFsStatFiles string

    (Updatable) Controls the maximum tfiles, ffiles, and afiles values reported by NFS FSSTAT calls through any associated mount targets. This is an advanced feature. For most applications, use the default value. The tfiles value reported by FSSTAT will be maxFsStatFiles. The value of ffiles and afiles will be maxFsStatFiles minus the metered size of the file system. If the metered size is larger than maxFsStatFiles, then ffiles and afiles will both be '0'.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    mountTargetId String

    (Updatable) The OCID of the mount target that the export set is associated with

    displayName String

    (Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: My export set

    maxFsStatBytes String

    (Updatable) Controls the maximum tbytes, fbytes, and abytes, values reported by NFS FSSTAT calls through any associated mount targets. This is an advanced feature. For most applications, use the default value. The tbytes value reported by FSSTAT will be maxFsStatBytes. The value of fbytes and abytes will be maxFsStatBytes minus the metered size of the file system. If the metered size is larger than maxFsStatBytes, then fbytes and abytes will both be '0'.

    maxFsStatFiles String

    (Updatable) Controls the maximum tfiles, ffiles, and afiles values reported by NFS FSSTAT calls through any associated mount targets. This is an advanced feature. For most applications, use the default value. The tfiles value reported by FSSTAT will be maxFsStatFiles. The value of ffiles and afiles will be maxFsStatFiles minus the metered size of the file system. If the metered size is larger than maxFsStatFiles, then ffiles and afiles will both be '0'.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    mountTargetId string

    (Updatable) The OCID of the mount target that the export set is associated with

    displayName string

    (Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: My export set

    maxFsStatBytes string

    (Updatable) Controls the maximum tbytes, fbytes, and abytes, values reported by NFS FSSTAT calls through any associated mount targets. This is an advanced feature. For most applications, use the default value. The tbytes value reported by FSSTAT will be maxFsStatBytes. The value of fbytes and abytes will be maxFsStatBytes minus the metered size of the file system. If the metered size is larger than maxFsStatBytes, then fbytes and abytes will both be '0'.

    maxFsStatFiles string

    (Updatable) Controls the maximum tfiles, ffiles, and afiles values reported by NFS FSSTAT calls through any associated mount targets. This is an advanced feature. For most applications, use the default value. The tfiles value reported by FSSTAT will be maxFsStatFiles. The value of ffiles and afiles will be maxFsStatFiles minus the metered size of the file system. If the metered size is larger than maxFsStatFiles, then ffiles and afiles will both be '0'.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    mount_target_id str

    (Updatable) The OCID of the mount target that the export set is associated with

    display_name str

    (Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: My export set

    max_fs_stat_bytes str

    (Updatable) Controls the maximum tbytes, fbytes, and abytes, values reported by NFS FSSTAT calls through any associated mount targets. This is an advanced feature. For most applications, use the default value. The tbytes value reported by FSSTAT will be maxFsStatBytes. The value of fbytes and abytes will be maxFsStatBytes minus the metered size of the file system. If the metered size is larger than maxFsStatBytes, then fbytes and abytes will both be '0'.

    max_fs_stat_files str

    (Updatable) Controls the maximum tfiles, ffiles, and afiles values reported by NFS FSSTAT calls through any associated mount targets. This is an advanced feature. For most applications, use the default value. The tfiles value reported by FSSTAT will be maxFsStatFiles. The value of ffiles and afiles will be maxFsStatFiles minus the metered size of the file system. If the metered size is larger than maxFsStatFiles, then ffiles and afiles will both be '0'.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    mountTargetId String

    (Updatable) The OCID of the mount target that the export set is associated with

    displayName String

    (Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: My export set

    maxFsStatBytes String

    (Updatable) Controls the maximum tbytes, fbytes, and abytes, values reported by NFS FSSTAT calls through any associated mount targets. This is an advanced feature. For most applications, use the default value. The tbytes value reported by FSSTAT will be maxFsStatBytes. The value of fbytes and abytes will be maxFsStatBytes minus the metered size of the file system. If the metered size is larger than maxFsStatBytes, then fbytes and abytes will both be '0'.

    maxFsStatFiles String

    (Updatable) Controls the maximum tfiles, ffiles, and afiles values reported by NFS FSSTAT calls through any associated mount targets. This is an advanced feature. For most applications, use the default value. The tfiles value reported by FSSTAT will be maxFsStatFiles. The value of ffiles and afiles will be maxFsStatFiles minus the metered size of the file system. If the metered size is larger than maxFsStatFiles, then ffiles and afiles will both be '0'.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    Outputs

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

    AvailabilityDomain string

    The availability domain the export set is in. May be unset as a blank or NULL value. Example: Uocm:PHX-AD-1

    CompartmentId string

    The OCID of the compartment that contains the export set.

    Id string

    The provider-assigned unique ID for this managed resource.

    State string

    The current state of the export set.

    TimeCreated string

    The date and time the export set was created, expressed in RFC 3339 timestamp format. Example: 2016-08-25T21:10:29.600Z

    VcnId string

    The OCID of the virtual cloud network (VCN) the export set is in.

    AvailabilityDomain string

    The availability domain the export set is in. May be unset as a blank or NULL value. Example: Uocm:PHX-AD-1

    CompartmentId string

    The OCID of the compartment that contains the export set.

    Id string

    The provider-assigned unique ID for this managed resource.

    State string

    The current state of the export set.

    TimeCreated string

    The date and time the export set was created, expressed in RFC 3339 timestamp format. Example: 2016-08-25T21:10:29.600Z

    VcnId string

    The OCID of the virtual cloud network (VCN) the export set is in.

    availabilityDomain String

    The availability domain the export set is in. May be unset as a blank or NULL value. Example: Uocm:PHX-AD-1

    compartmentId String

    The OCID of the compartment that contains the export set.

    id String

    The provider-assigned unique ID for this managed resource.

    state String

    The current state of the export set.

    timeCreated String

    The date and time the export set was created, expressed in RFC 3339 timestamp format. Example: 2016-08-25T21:10:29.600Z

    vcnId String

    The OCID of the virtual cloud network (VCN) the export set is in.

    availabilityDomain string

    The availability domain the export set is in. May be unset as a blank or NULL value. Example: Uocm:PHX-AD-1

    compartmentId string

    The OCID of the compartment that contains the export set.

    id string

    The provider-assigned unique ID for this managed resource.

    state string

    The current state of the export set.

    timeCreated string

    The date and time the export set was created, expressed in RFC 3339 timestamp format. Example: 2016-08-25T21:10:29.600Z

    vcnId string

    The OCID of the virtual cloud network (VCN) the export set is in.

    availability_domain str

    The availability domain the export set is in. May be unset as a blank or NULL value. Example: Uocm:PHX-AD-1

    compartment_id str

    The OCID of the compartment that contains the export set.

    id str

    The provider-assigned unique ID for this managed resource.

    state str

    The current state of the export set.

    time_created str

    The date and time the export set was created, expressed in RFC 3339 timestamp format. Example: 2016-08-25T21:10:29.600Z

    vcn_id str

    The OCID of the virtual cloud network (VCN) the export set is in.

    availabilityDomain String

    The availability domain the export set is in. May be unset as a blank or NULL value. Example: Uocm:PHX-AD-1

    compartmentId String

    The OCID of the compartment that contains the export set.

    id String

    The provider-assigned unique ID for this managed resource.

    state String

    The current state of the export set.

    timeCreated String

    The date and time the export set was created, expressed in RFC 3339 timestamp format. Example: 2016-08-25T21:10:29.600Z

    vcnId String

    The OCID of the virtual cloud network (VCN) the export set is in.

    Look up Existing ExportSet Resource

    Get an existing ExportSet 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?: ExportSetState, opts?: CustomResourceOptions): ExportSet
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            availability_domain: Optional[str] = None,
            compartment_id: Optional[str] = None,
            display_name: Optional[str] = None,
            max_fs_stat_bytes: Optional[str] = None,
            max_fs_stat_files: Optional[str] = None,
            mount_target_id: Optional[str] = None,
            state: Optional[str] = None,
            time_created: Optional[str] = None,
            vcn_id: Optional[str] = None) -> ExportSet
    func GetExportSet(ctx *Context, name string, id IDInput, state *ExportSetState, opts ...ResourceOption) (*ExportSet, error)
    public static ExportSet Get(string name, Input<string> id, ExportSetState? state, CustomResourceOptions? opts = null)
    public static ExportSet get(String name, Output<String> id, ExportSetState 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:
    AvailabilityDomain string

    The availability domain the export set is in. May be unset as a blank or NULL value. Example: Uocm:PHX-AD-1

    CompartmentId string

    The OCID of the compartment that contains the export set.

    DisplayName string

    (Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: My export set

    MaxFsStatBytes string

    (Updatable) Controls the maximum tbytes, fbytes, and abytes, values reported by NFS FSSTAT calls through any associated mount targets. This is an advanced feature. For most applications, use the default value. The tbytes value reported by FSSTAT will be maxFsStatBytes. The value of fbytes and abytes will be maxFsStatBytes minus the metered size of the file system. If the metered size is larger than maxFsStatBytes, then fbytes and abytes will both be '0'.

    MaxFsStatFiles string

    (Updatable) Controls the maximum tfiles, ffiles, and afiles values reported by NFS FSSTAT calls through any associated mount targets. This is an advanced feature. For most applications, use the default value. The tfiles value reported by FSSTAT will be maxFsStatFiles. The value of ffiles and afiles will be maxFsStatFiles minus the metered size of the file system. If the metered size is larger than maxFsStatFiles, then ffiles and afiles will both be '0'.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    MountTargetId string

    (Updatable) The OCID of the mount target that the export set is associated with

    State string

    The current state of the export set.

    TimeCreated string

    The date and time the export set was created, expressed in RFC 3339 timestamp format. Example: 2016-08-25T21:10:29.600Z

    VcnId string

    The OCID of the virtual cloud network (VCN) the export set is in.

    AvailabilityDomain string

    The availability domain the export set is in. May be unset as a blank or NULL value. Example: Uocm:PHX-AD-1

    CompartmentId string

    The OCID of the compartment that contains the export set.

    DisplayName string

    (Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: My export set

    MaxFsStatBytes string

    (Updatable) Controls the maximum tbytes, fbytes, and abytes, values reported by NFS FSSTAT calls through any associated mount targets. This is an advanced feature. For most applications, use the default value. The tbytes value reported by FSSTAT will be maxFsStatBytes. The value of fbytes and abytes will be maxFsStatBytes minus the metered size of the file system. If the metered size is larger than maxFsStatBytes, then fbytes and abytes will both be '0'.

    MaxFsStatFiles string

    (Updatable) Controls the maximum tfiles, ffiles, and afiles values reported by NFS FSSTAT calls through any associated mount targets. This is an advanced feature. For most applications, use the default value. The tfiles value reported by FSSTAT will be maxFsStatFiles. The value of ffiles and afiles will be maxFsStatFiles minus the metered size of the file system. If the metered size is larger than maxFsStatFiles, then ffiles and afiles will both be '0'.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    MountTargetId string

    (Updatable) The OCID of the mount target that the export set is associated with

    State string

    The current state of the export set.

    TimeCreated string

    The date and time the export set was created, expressed in RFC 3339 timestamp format. Example: 2016-08-25T21:10:29.600Z

    VcnId string

    The OCID of the virtual cloud network (VCN) the export set is in.

    availabilityDomain String

    The availability domain the export set is in. May be unset as a blank or NULL value. Example: Uocm:PHX-AD-1

    compartmentId String

    The OCID of the compartment that contains the export set.

    displayName String

    (Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: My export set

    maxFsStatBytes String

    (Updatable) Controls the maximum tbytes, fbytes, and abytes, values reported by NFS FSSTAT calls through any associated mount targets. This is an advanced feature. For most applications, use the default value. The tbytes value reported by FSSTAT will be maxFsStatBytes. The value of fbytes and abytes will be maxFsStatBytes minus the metered size of the file system. If the metered size is larger than maxFsStatBytes, then fbytes and abytes will both be '0'.

    maxFsStatFiles String

    (Updatable) Controls the maximum tfiles, ffiles, and afiles values reported by NFS FSSTAT calls through any associated mount targets. This is an advanced feature. For most applications, use the default value. The tfiles value reported by FSSTAT will be maxFsStatFiles. The value of ffiles and afiles will be maxFsStatFiles minus the metered size of the file system. If the metered size is larger than maxFsStatFiles, then ffiles and afiles will both be '0'.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    mountTargetId String

    (Updatable) The OCID of the mount target that the export set is associated with

    state String

    The current state of the export set.

    timeCreated String

    The date and time the export set was created, expressed in RFC 3339 timestamp format. Example: 2016-08-25T21:10:29.600Z

    vcnId String

    The OCID of the virtual cloud network (VCN) the export set is in.

    availabilityDomain string

    The availability domain the export set is in. May be unset as a blank or NULL value. Example: Uocm:PHX-AD-1

    compartmentId string

    The OCID of the compartment that contains the export set.

    displayName string

    (Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: My export set

    maxFsStatBytes string

    (Updatable) Controls the maximum tbytes, fbytes, and abytes, values reported by NFS FSSTAT calls through any associated mount targets. This is an advanced feature. For most applications, use the default value. The tbytes value reported by FSSTAT will be maxFsStatBytes. The value of fbytes and abytes will be maxFsStatBytes minus the metered size of the file system. If the metered size is larger than maxFsStatBytes, then fbytes and abytes will both be '0'.

    maxFsStatFiles string

    (Updatable) Controls the maximum tfiles, ffiles, and afiles values reported by NFS FSSTAT calls through any associated mount targets. This is an advanced feature. For most applications, use the default value. The tfiles value reported by FSSTAT will be maxFsStatFiles. The value of ffiles and afiles will be maxFsStatFiles minus the metered size of the file system. If the metered size is larger than maxFsStatFiles, then ffiles and afiles will both be '0'.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    mountTargetId string

    (Updatable) The OCID of the mount target that the export set is associated with

    state string

    The current state of the export set.

    timeCreated string

    The date and time the export set was created, expressed in RFC 3339 timestamp format. Example: 2016-08-25T21:10:29.600Z

    vcnId string

    The OCID of the virtual cloud network (VCN) the export set is in.

    availability_domain str

    The availability domain the export set is in. May be unset as a blank or NULL value. Example: Uocm:PHX-AD-1

    compartment_id str

    The OCID of the compartment that contains the export set.

    display_name str

    (Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: My export set

    max_fs_stat_bytes str

    (Updatable) Controls the maximum tbytes, fbytes, and abytes, values reported by NFS FSSTAT calls through any associated mount targets. This is an advanced feature. For most applications, use the default value. The tbytes value reported by FSSTAT will be maxFsStatBytes. The value of fbytes and abytes will be maxFsStatBytes minus the metered size of the file system. If the metered size is larger than maxFsStatBytes, then fbytes and abytes will both be '0'.

    max_fs_stat_files str

    (Updatable) Controls the maximum tfiles, ffiles, and afiles values reported by NFS FSSTAT calls through any associated mount targets. This is an advanced feature. For most applications, use the default value. The tfiles value reported by FSSTAT will be maxFsStatFiles. The value of ffiles and afiles will be maxFsStatFiles minus the metered size of the file system. If the metered size is larger than maxFsStatFiles, then ffiles and afiles will both be '0'.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    mount_target_id str

    (Updatable) The OCID of the mount target that the export set is associated with

    state str

    The current state of the export set.

    time_created str

    The date and time the export set was created, expressed in RFC 3339 timestamp format. Example: 2016-08-25T21:10:29.600Z

    vcn_id str

    The OCID of the virtual cloud network (VCN) the export set is in.

    availabilityDomain String

    The availability domain the export set is in. May be unset as a blank or NULL value. Example: Uocm:PHX-AD-1

    compartmentId String

    The OCID of the compartment that contains the export set.

    displayName String

    (Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: My export set

    maxFsStatBytes String

    (Updatable) Controls the maximum tbytes, fbytes, and abytes, values reported by NFS FSSTAT calls through any associated mount targets. This is an advanced feature. For most applications, use the default value. The tbytes value reported by FSSTAT will be maxFsStatBytes. The value of fbytes and abytes will be maxFsStatBytes minus the metered size of the file system. If the metered size is larger than maxFsStatBytes, then fbytes and abytes will both be '0'.

    maxFsStatFiles String

    (Updatable) Controls the maximum tfiles, ffiles, and afiles values reported by NFS FSSTAT calls through any associated mount targets. This is an advanced feature. For most applications, use the default value. The tfiles value reported by FSSTAT will be maxFsStatFiles. The value of ffiles and afiles will be maxFsStatFiles minus the metered size of the file system. If the metered size is larger than maxFsStatFiles, then ffiles and afiles will both be '0'.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    mountTargetId String

    (Updatable) The OCID of the mount target that the export set is associated with

    state String

    The current state of the export set.

    timeCreated String

    The date and time the export set was created, expressed in RFC 3339 timestamp format. Example: 2016-08-25T21:10:29.600Z

    vcnId String

    The OCID of the virtual cloud network (VCN) the export set is in.

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes

    This Pulumi package is based on the oci Terraform Provider.

    oci logo
    Oracle Cloud Infrastructure v0.20.1 published on Tuesday, Jun 6, 2023 by Pulumi