oci.FileStorage.ExportSet
Explore with Pulumi AI
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:
- Mount
Target stringId (Updatable) The OCID of the mount target that the export set is associated with
- Display
Name 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
- Max
Fs stringStat Bytes (Updatable) Controls the maximum
tbytes
,fbytes
, andabytes
, values reported byNFS FSSTAT
calls through any associated mount targets. This is an advanced feature. For most applications, use the default value. Thetbytes
value reported byFSSTAT
will bemaxFsStatBytes
. The value offbytes
andabytes
will bemaxFsStatBytes
minus the metered size of the file system. If the metered size is larger thanmaxFsStatBytes
, thenfbytes
andabytes
will both be '0'.- Max
Fs stringStat Files (Updatable) Controls the maximum
tfiles
,ffiles
, andafiles
values reported byNFS FSSTAT
calls through any associated mount targets. This is an advanced feature. For most applications, use the default value. Thetfiles
value reported byFSSTAT
will bemaxFsStatFiles
. The value offfiles
andafiles
will bemaxFsStatFiles
minus the metered size of the file system. If the metered size is larger thanmaxFsStatFiles
, thenffiles
andafiles
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 stringId (Updatable) The OCID of the mount target that the export set is associated with
- Display
Name 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
- Max
Fs stringStat Bytes (Updatable) Controls the maximum
tbytes
,fbytes
, andabytes
, values reported byNFS FSSTAT
calls through any associated mount targets. This is an advanced feature. For most applications, use the default value. Thetbytes
value reported byFSSTAT
will bemaxFsStatBytes
. The value offbytes
andabytes
will bemaxFsStatBytes
minus the metered size of the file system. If the metered size is larger thanmaxFsStatBytes
, thenfbytes
andabytes
will both be '0'.- Max
Fs stringStat Files (Updatable) Controls the maximum
tfiles
,ffiles
, andafiles
values reported byNFS FSSTAT
calls through any associated mount targets. This is an advanced feature. For most applications, use the default value. Thetfiles
value reported byFSSTAT
will bemaxFsStatFiles
. The value offfiles
andafiles
will bemaxFsStatFiles
minus the metered size of the file system. If the metered size is larger thanmaxFsStatFiles
, thenffiles
andafiles
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 StringId (Updatable) The OCID of the mount target that the export set is associated with
- display
Name 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
- max
Fs StringStat Bytes (Updatable) Controls the maximum
tbytes
,fbytes
, andabytes
, values reported byNFS FSSTAT
calls through any associated mount targets. This is an advanced feature. For most applications, use the default value. Thetbytes
value reported byFSSTAT
will bemaxFsStatBytes
. The value offbytes
andabytes
will bemaxFsStatBytes
minus the metered size of the file system. If the metered size is larger thanmaxFsStatBytes
, thenfbytes
andabytes
will both be '0'.- max
Fs StringStat Files (Updatable) Controls the maximum
tfiles
,ffiles
, andafiles
values reported byNFS FSSTAT
calls through any associated mount targets. This is an advanced feature. For most applications, use the default value. Thetfiles
value reported byFSSTAT
will bemaxFsStatFiles
. The value offfiles
andafiles
will bemaxFsStatFiles
minus the metered size of the file system. If the metered size is larger thanmaxFsStatFiles
, thenffiles
andafiles
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 stringId (Updatable) The OCID of the mount target that the export set is associated with
- display
Name 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
- max
Fs stringStat Bytes (Updatable) Controls the maximum
tbytes
,fbytes
, andabytes
, values reported byNFS FSSTAT
calls through any associated mount targets. This is an advanced feature. For most applications, use the default value. Thetbytes
value reported byFSSTAT
will bemaxFsStatBytes
. The value offbytes
andabytes
will bemaxFsStatBytes
minus the metered size of the file system. If the metered size is larger thanmaxFsStatBytes
, thenfbytes
andabytes
will both be '0'.- max
Fs stringStat Files (Updatable) Controls the maximum
tfiles
,ffiles
, andafiles
values reported byNFS FSSTAT
calls through any associated mount targets. This is an advanced feature. For most applications, use the default value. Thetfiles
value reported byFSSTAT
will bemaxFsStatFiles
. The value offfiles
andafiles
will bemaxFsStatFiles
minus the metered size of the file system. If the metered size is larger thanmaxFsStatFiles
, thenffiles
andafiles
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_ strid (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_ strstat_ bytes (Updatable) Controls the maximum
tbytes
,fbytes
, andabytes
, values reported byNFS FSSTAT
calls through any associated mount targets. This is an advanced feature. For most applications, use the default value. Thetbytes
value reported byFSSTAT
will bemaxFsStatBytes
. The value offbytes
andabytes
will bemaxFsStatBytes
minus the metered size of the file system. If the metered size is larger thanmaxFsStatBytes
, thenfbytes
andabytes
will both be '0'.- max_
fs_ strstat_ files (Updatable) Controls the maximum
tfiles
,ffiles
, andafiles
values reported byNFS FSSTAT
calls through any associated mount targets. This is an advanced feature. For most applications, use the default value. Thetfiles
value reported byFSSTAT
will bemaxFsStatFiles
. The value offfiles
andafiles
will bemaxFsStatFiles
minus the metered size of the file system. If the metered size is larger thanmaxFsStatFiles
, thenffiles
andafiles
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 StringId (Updatable) The OCID of the mount target that the export set is associated with
- display
Name 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
- max
Fs StringStat Bytes (Updatable) Controls the maximum
tbytes
,fbytes
, andabytes
, values reported byNFS FSSTAT
calls through any associated mount targets. This is an advanced feature. For most applications, use the default value. Thetbytes
value reported byFSSTAT
will bemaxFsStatBytes
. The value offbytes
andabytes
will bemaxFsStatBytes
minus the metered size of the file system. If the metered size is larger thanmaxFsStatBytes
, thenfbytes
andabytes
will both be '0'.- max
Fs StringStat Files (Updatable) Controls the maximum
tfiles
,ffiles
, andafiles
values reported byNFS FSSTAT
calls through any associated mount targets. This is an advanced feature. For most applications, use the default value. Thetfiles
value reported byFSSTAT
will bemaxFsStatFiles
. The value offfiles
andafiles
will bemaxFsStatFiles
minus the metered size of the file system. If the metered size is larger thanmaxFsStatFiles
, thenffiles
andafiles
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:
- Availability
Domain string The availability domain the export set is in. May be unset as a blank or NULL value. Example:
Uocm:PHX-AD-1
- Compartment
Id 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.
- Time
Created string The date and time the export set was created, expressed in RFC 3339 timestamp format. Example:
2016-08-25T21:10:29.600Z
- Vcn
Id string The OCID of the virtual cloud network (VCN) the export set is in.
- Availability
Domain string The availability domain the export set is in. May be unset as a blank or NULL value. Example:
Uocm:PHX-AD-1
- Compartment
Id 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.
- Time
Created string The date and time the export set was created, expressed in RFC 3339 timestamp format. Example:
2016-08-25T21:10:29.600Z
- Vcn
Id string The OCID of the virtual cloud network (VCN) the export set is in.
- availability
Domain String The availability domain the export set is in. May be unset as a blank or NULL value. Example:
Uocm:PHX-AD-1
- compartment
Id 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.
- time
Created String The date and time the export set was created, expressed in RFC 3339 timestamp format. Example:
2016-08-25T21:10:29.600Z
- vcn
Id String The OCID of the virtual cloud network (VCN) the export set is in.
- availability
Domain string The availability domain the export set is in. May be unset as a blank or NULL value. Example:
Uocm:PHX-AD-1
- compartment
Id 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.
- time
Created string The date and time the export set was created, expressed in RFC 3339 timestamp format. Example:
2016-08-25T21:10:29.600Z
- vcn
Id 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.
- availability
Domain String The availability domain the export set is in. May be unset as a blank or NULL value. Example:
Uocm:PHX-AD-1
- compartment
Id 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.
- time
Created String The date and time the export set was created, expressed in RFC 3339 timestamp format. Example:
2016-08-25T21:10:29.600Z
- vcn
Id 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.
- Availability
Domain string The availability domain the export set is in. May be unset as a blank or NULL value. Example:
Uocm:PHX-AD-1
- Compartment
Id string The OCID of the compartment that contains the export set.
- Display
Name 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
- Max
Fs stringStat Bytes (Updatable) Controls the maximum
tbytes
,fbytes
, andabytes
, values reported byNFS FSSTAT
calls through any associated mount targets. This is an advanced feature. For most applications, use the default value. Thetbytes
value reported byFSSTAT
will bemaxFsStatBytes
. The value offbytes
andabytes
will bemaxFsStatBytes
minus the metered size of the file system. If the metered size is larger thanmaxFsStatBytes
, thenfbytes
andabytes
will both be '0'.- Max
Fs stringStat Files (Updatable) Controls the maximum
tfiles
,ffiles
, andafiles
values reported byNFS FSSTAT
calls through any associated mount targets. This is an advanced feature. For most applications, use the default value. Thetfiles
value reported byFSSTAT
will bemaxFsStatFiles
. The value offfiles
andafiles
will bemaxFsStatFiles
minus the metered size of the file system. If the metered size is larger thanmaxFsStatFiles
, thenffiles
andafiles
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 stringId (Updatable) The OCID of the mount target that the export set is associated with
- State string
The current state of the export set.
- Time
Created string The date and time the export set was created, expressed in RFC 3339 timestamp format. Example:
2016-08-25T21:10:29.600Z
- Vcn
Id string The OCID of the virtual cloud network (VCN) the export set is in.
- Availability
Domain string The availability domain the export set is in. May be unset as a blank or NULL value. Example:
Uocm:PHX-AD-1
- Compartment
Id string The OCID of the compartment that contains the export set.
- Display
Name 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
- Max
Fs stringStat Bytes (Updatable) Controls the maximum
tbytes
,fbytes
, andabytes
, values reported byNFS FSSTAT
calls through any associated mount targets. This is an advanced feature. For most applications, use the default value. Thetbytes
value reported byFSSTAT
will bemaxFsStatBytes
. The value offbytes
andabytes
will bemaxFsStatBytes
minus the metered size of the file system. If the metered size is larger thanmaxFsStatBytes
, thenfbytes
andabytes
will both be '0'.- Max
Fs stringStat Files (Updatable) Controls the maximum
tfiles
,ffiles
, andafiles
values reported byNFS FSSTAT
calls through any associated mount targets. This is an advanced feature. For most applications, use the default value. Thetfiles
value reported byFSSTAT
will bemaxFsStatFiles
. The value offfiles
andafiles
will bemaxFsStatFiles
minus the metered size of the file system. If the metered size is larger thanmaxFsStatFiles
, thenffiles
andafiles
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 stringId (Updatable) The OCID of the mount target that the export set is associated with
- State string
The current state of the export set.
- Time
Created string The date and time the export set was created, expressed in RFC 3339 timestamp format. Example:
2016-08-25T21:10:29.600Z
- Vcn
Id string The OCID of the virtual cloud network (VCN) the export set is in.
- availability
Domain String The availability domain the export set is in. May be unset as a blank or NULL value. Example:
Uocm:PHX-AD-1
- compartment
Id String The OCID of the compartment that contains the export set.
- display
Name 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
- max
Fs StringStat Bytes (Updatable) Controls the maximum
tbytes
,fbytes
, andabytes
, values reported byNFS FSSTAT
calls through any associated mount targets. This is an advanced feature. For most applications, use the default value. Thetbytes
value reported byFSSTAT
will bemaxFsStatBytes
. The value offbytes
andabytes
will bemaxFsStatBytes
minus the metered size of the file system. If the metered size is larger thanmaxFsStatBytes
, thenfbytes
andabytes
will both be '0'.- max
Fs StringStat Files (Updatable) Controls the maximum
tfiles
,ffiles
, andafiles
values reported byNFS FSSTAT
calls through any associated mount targets. This is an advanced feature. For most applications, use the default value. Thetfiles
value reported byFSSTAT
will bemaxFsStatFiles
. The value offfiles
andafiles
will bemaxFsStatFiles
minus the metered size of the file system. If the metered size is larger thanmaxFsStatFiles
, thenffiles
andafiles
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 StringId (Updatable) The OCID of the mount target that the export set is associated with
- state String
The current state of the export set.
- time
Created String The date and time the export set was created, expressed in RFC 3339 timestamp format. Example:
2016-08-25T21:10:29.600Z
- vcn
Id String The OCID of the virtual cloud network (VCN) the export set is in.
- availability
Domain string The availability domain the export set is in. May be unset as a blank or NULL value. Example:
Uocm:PHX-AD-1
- compartment
Id string The OCID of the compartment that contains the export set.
- display
Name 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
- max
Fs stringStat Bytes (Updatable) Controls the maximum
tbytes
,fbytes
, andabytes
, values reported byNFS FSSTAT
calls through any associated mount targets. This is an advanced feature. For most applications, use the default value. Thetbytes
value reported byFSSTAT
will bemaxFsStatBytes
. The value offbytes
andabytes
will bemaxFsStatBytes
minus the metered size of the file system. If the metered size is larger thanmaxFsStatBytes
, thenfbytes
andabytes
will both be '0'.- max
Fs stringStat Files (Updatable) Controls the maximum
tfiles
,ffiles
, andafiles
values reported byNFS FSSTAT
calls through any associated mount targets. This is an advanced feature. For most applications, use the default value. Thetfiles
value reported byFSSTAT
will bemaxFsStatFiles
. The value offfiles
andafiles
will bemaxFsStatFiles
minus the metered size of the file system. If the metered size is larger thanmaxFsStatFiles
, thenffiles
andafiles
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 stringId (Updatable) The OCID of the mount target that the export set is associated with
- state string
The current state of the export set.
- time
Created string The date and time the export set was created, expressed in RFC 3339 timestamp format. Example:
2016-08-25T21:10:29.600Z
- vcn
Id 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_ strstat_ bytes (Updatable) Controls the maximum
tbytes
,fbytes
, andabytes
, values reported byNFS FSSTAT
calls through any associated mount targets. This is an advanced feature. For most applications, use the default value. Thetbytes
value reported byFSSTAT
will bemaxFsStatBytes
. The value offbytes
andabytes
will bemaxFsStatBytes
minus the metered size of the file system. If the metered size is larger thanmaxFsStatBytes
, thenfbytes
andabytes
will both be '0'.- max_
fs_ strstat_ files (Updatable) Controls the maximum
tfiles
,ffiles
, andafiles
values reported byNFS FSSTAT
calls through any associated mount targets. This is an advanced feature. For most applications, use the default value. Thetfiles
value reported byFSSTAT
will bemaxFsStatFiles
. The value offfiles
andafiles
will bemaxFsStatFiles
minus the metered size of the file system. If the metered size is larger thanmaxFsStatFiles
, thenffiles
andafiles
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_ strid (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.
- availability
Domain String The availability domain the export set is in. May be unset as a blank or NULL value. Example:
Uocm:PHX-AD-1
- compartment
Id String The OCID of the compartment that contains the export set.
- display
Name 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
- max
Fs StringStat Bytes (Updatable) Controls the maximum
tbytes
,fbytes
, andabytes
, values reported byNFS FSSTAT
calls through any associated mount targets. This is an advanced feature. For most applications, use the default value. Thetbytes
value reported byFSSTAT
will bemaxFsStatBytes
. The value offbytes
andabytes
will bemaxFsStatBytes
minus the metered size of the file system. If the metered size is larger thanmaxFsStatBytes
, thenfbytes
andabytes
will both be '0'.- max
Fs StringStat Files (Updatable) Controls the maximum
tfiles
,ffiles
, andafiles
values reported byNFS FSSTAT
calls through any associated mount targets. This is an advanced feature. For most applications, use the default value. Thetfiles
value reported byFSSTAT
will bemaxFsStatFiles
. The value offfiles
andafiles
will bemaxFsStatFiles
minus the metered size of the file system. If the metered size is larger thanmaxFsStatFiles
, thenffiles
andafiles
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 StringId (Updatable) The OCID of the mount target that the export set is associated with
- state String
The current state of the export set.
- time
Created String The date and time the export set was created, expressed in RFC 3339 timestamp format. Example:
2016-08-25T21:10:29.600Z
- vcn
Id 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.