oci.Lustre.FileStorageObjectStorageLink
This resource provides the Object Storage Link resource in Oracle Cloud Infrastructure Lustre File Storage service.
Creates an Object Storage link.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testObjectStorageLink = new oci.lustre.FileStorageObjectStorageLink("test_object_storage_link", {
availabilityDomain: objectStorageLinkAvailabilityDomain,
compartmentId: compartmentId,
fileSystemPath: objectStorageLinkFileSystemPath,
isOverwrite: objectStorageLinkIsOverwrite,
lustreFileSystemId: testLustreFileSystem.id,
objectStoragePrefix: objectStorageLinkObjectStoragePrefix,
definedTags: {
"Operations.CostCenter": "42",
},
displayName: objectStorageLinkDisplayName,
freeformTags: {
Department: "Finance",
},
});
import pulumi
import pulumi_oci as oci
test_object_storage_link = oci.lustre.FileStorageObjectStorageLink("test_object_storage_link",
availability_domain=object_storage_link_availability_domain,
compartment_id=compartment_id,
file_system_path=object_storage_link_file_system_path,
is_overwrite=object_storage_link_is_overwrite,
lustre_file_system_id=test_lustre_file_system["id"],
object_storage_prefix=object_storage_link_object_storage_prefix,
defined_tags={
"Operations.CostCenter": "42",
},
display_name=object_storage_link_display_name,
freeform_tags={
"Department": "Finance",
})
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v3/go/oci/lustre"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := lustre.NewFileStorageObjectStorageLink(ctx, "test_object_storage_link", &lustre.FileStorageObjectStorageLinkArgs{
AvailabilityDomain: pulumi.Any(objectStorageLinkAvailabilityDomain),
CompartmentId: pulumi.Any(compartmentId),
FileSystemPath: pulumi.Any(objectStorageLinkFileSystemPath),
IsOverwrite: pulumi.Any(objectStorageLinkIsOverwrite),
LustreFileSystemId: pulumi.Any(testLustreFileSystem.Id),
ObjectStoragePrefix: pulumi.Any(objectStorageLinkObjectStoragePrefix),
DefinedTags: pulumi.StringMap{
"Operations.CostCenter": pulumi.String("42"),
},
DisplayName: pulumi.Any(objectStorageLinkDisplayName),
FreeformTags: pulumi.StringMap{
"Department": pulumi.String("Finance"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testObjectStorageLink = new Oci.Lustre.FileStorageObjectStorageLink("test_object_storage_link", new()
{
AvailabilityDomain = objectStorageLinkAvailabilityDomain,
CompartmentId = compartmentId,
FileSystemPath = objectStorageLinkFileSystemPath,
IsOverwrite = objectStorageLinkIsOverwrite,
LustreFileSystemId = testLustreFileSystem.Id,
ObjectStoragePrefix = objectStorageLinkObjectStoragePrefix,
DefinedTags =
{
{ "Operations.CostCenter", "42" },
},
DisplayName = objectStorageLinkDisplayName,
FreeformTags =
{
{ "Department", "Finance" },
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Lustre.FileStorageObjectStorageLink;
import com.pulumi.oci.Lustre.FileStorageObjectStorageLinkArgs;
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 testObjectStorageLink = new FileStorageObjectStorageLink("testObjectStorageLink", FileStorageObjectStorageLinkArgs.builder()
.availabilityDomain(objectStorageLinkAvailabilityDomain)
.compartmentId(compartmentId)
.fileSystemPath(objectStorageLinkFileSystemPath)
.isOverwrite(objectStorageLinkIsOverwrite)
.lustreFileSystemId(testLustreFileSystem.id())
.objectStoragePrefix(objectStorageLinkObjectStoragePrefix)
.definedTags(Map.of("Operations.CostCenter", "42"))
.displayName(objectStorageLinkDisplayName)
.freeformTags(Map.of("Department", "Finance"))
.build());
}
}
resources:
testObjectStorageLink:
type: oci:Lustre:FileStorageObjectStorageLink
name: test_object_storage_link
properties:
availabilityDomain: ${objectStorageLinkAvailabilityDomain}
compartmentId: ${compartmentId}
fileSystemPath: ${objectStorageLinkFileSystemPath}
isOverwrite: ${objectStorageLinkIsOverwrite}
lustreFileSystemId: ${testLustreFileSystem.id}
objectStoragePrefix: ${objectStorageLinkObjectStoragePrefix}
definedTags:
Operations.CostCenter: '42'
displayName: ${objectStorageLinkDisplayName}
freeformTags:
Department: Finance
Create FileStorageObjectStorageLink Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new FileStorageObjectStorageLink(name: string, args: FileStorageObjectStorageLinkArgs, opts?: CustomResourceOptions);@overload
def FileStorageObjectStorageLink(resource_name: str,
args: FileStorageObjectStorageLinkArgs,
opts: Optional[ResourceOptions] = None)
@overload
def FileStorageObjectStorageLink(resource_name: str,
opts: Optional[ResourceOptions] = None,
is_overwrite: Optional[bool] = None,
compartment_id: Optional[str] = None,
object_storage_prefix: Optional[str] = None,
availability_domain: Optional[str] = None,
file_system_path: Optional[str] = None,
lustre_file_system_id: Optional[str] = None,
display_name: Optional[str] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
defined_tags: Optional[Mapping[str, str]] = None,
start_export_to_object_trigger: Optional[int] = None,
start_import_from_object_trigger: Optional[int] = None,
stop_export_to_object_trigger: Optional[int] = None,
stop_import_from_object_trigger: Optional[int] = None)func NewFileStorageObjectStorageLink(ctx *Context, name string, args FileStorageObjectStorageLinkArgs, opts ...ResourceOption) (*FileStorageObjectStorageLink, error)public FileStorageObjectStorageLink(string name, FileStorageObjectStorageLinkArgs args, CustomResourceOptions? opts = null)
public FileStorageObjectStorageLink(String name, FileStorageObjectStorageLinkArgs args)
public FileStorageObjectStorageLink(String name, FileStorageObjectStorageLinkArgs args, CustomResourceOptions options)
type: oci:Lustre:FileStorageObjectStorageLink
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 FileStorageObjectStorageLinkArgs
- 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 FileStorageObjectStorageLinkArgs
- 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 FileStorageObjectStorageLinkArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args FileStorageObjectStorageLinkArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args FileStorageObjectStorageLinkArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var fileStorageObjectStorageLinkResource = new Oci.Lustre.FileStorageObjectStorageLink("fileStorageObjectStorageLinkResource", new()
{
IsOverwrite = false,
CompartmentId = "string",
ObjectStoragePrefix = "string",
AvailabilityDomain = "string",
FileSystemPath = "string",
LustreFileSystemId = "string",
DisplayName = "string",
FreeformTags =
{
{ "string", "string" },
},
DefinedTags =
{
{ "string", "string" },
},
StartExportToObjectTrigger = 0,
StartImportFromObjectTrigger = 0,
StopExportToObjectTrigger = 0,
StopImportFromObjectTrigger = 0,
});
example, err := lustre.NewFileStorageObjectStorageLink(ctx, "fileStorageObjectStorageLinkResource", &lustre.FileStorageObjectStorageLinkArgs{
IsOverwrite: pulumi.Bool(false),
CompartmentId: pulumi.String("string"),
ObjectStoragePrefix: pulumi.String("string"),
AvailabilityDomain: pulumi.String("string"),
FileSystemPath: pulumi.String("string"),
LustreFileSystemId: pulumi.String("string"),
DisplayName: pulumi.String("string"),
FreeformTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
DefinedTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
StartExportToObjectTrigger: pulumi.Int(0),
StartImportFromObjectTrigger: pulumi.Int(0),
StopExportToObjectTrigger: pulumi.Int(0),
StopImportFromObjectTrigger: pulumi.Int(0),
})
var fileStorageObjectStorageLinkResource = new FileStorageObjectStorageLink("fileStorageObjectStorageLinkResource", FileStorageObjectStorageLinkArgs.builder()
.isOverwrite(false)
.compartmentId("string")
.objectStoragePrefix("string")
.availabilityDomain("string")
.fileSystemPath("string")
.lustreFileSystemId("string")
.displayName("string")
.freeformTags(Map.of("string", "string"))
.definedTags(Map.of("string", "string"))
.startExportToObjectTrigger(0)
.startImportFromObjectTrigger(0)
.stopExportToObjectTrigger(0)
.stopImportFromObjectTrigger(0)
.build());
file_storage_object_storage_link_resource = oci.lustre.FileStorageObjectStorageLink("fileStorageObjectStorageLinkResource",
is_overwrite=False,
compartment_id="string",
object_storage_prefix="string",
availability_domain="string",
file_system_path="string",
lustre_file_system_id="string",
display_name="string",
freeform_tags={
"string": "string",
},
defined_tags={
"string": "string",
},
start_export_to_object_trigger=0,
start_import_from_object_trigger=0,
stop_export_to_object_trigger=0,
stop_import_from_object_trigger=0)
const fileStorageObjectStorageLinkResource = new oci.lustre.FileStorageObjectStorageLink("fileStorageObjectStorageLinkResource", {
isOverwrite: false,
compartmentId: "string",
objectStoragePrefix: "string",
availabilityDomain: "string",
fileSystemPath: "string",
lustreFileSystemId: "string",
displayName: "string",
freeformTags: {
string: "string",
},
definedTags: {
string: "string",
},
startExportToObjectTrigger: 0,
startImportFromObjectTrigger: 0,
stopExportToObjectTrigger: 0,
stopImportFromObjectTrigger: 0,
});
type: oci:Lustre:FileStorageObjectStorageLink
properties:
availabilityDomain: string
compartmentId: string
definedTags:
string: string
displayName: string
fileSystemPath: string
freeformTags:
string: string
isOverwrite: false
lustreFileSystemId: string
objectStoragePrefix: string
startExportToObjectTrigger: 0
startImportFromObjectTrigger: 0
stopExportToObjectTrigger: 0
stopImportFromObjectTrigger: 0
FileStorageObjectStorageLink Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The FileStorageObjectStorageLink resource accepts the following input properties:
- Availability
Domain string - The availability domain that the Lustre file system is in. May be unset as a blank or NULL value. Example:
Uocm:PHX-AD-1 - Compartment
Id string - (Updatable) The OCID of the compartment that contains the Object Storage link.
- File
System stringPath - The path in the Lustre file system used for this Object Storage link. Example:
myFileSystem/mount/myDirectory - Is
Overwrite bool - (Updatable) The flag is an identifier to tell whether the job run has overwrite enabled. If
isOverwriteis false, the file to be imported or exported will be skipped if it already exists. IfisOverwriteis true, the file to be imported or exported will be overwritten if it already exists. - Lustre
File stringSystem Id - The OCID of the associated Lustre file system.
- Object
Storage stringPrefix - The Object Storage namespace and bucket name, including optional object prefix string, to use as the source for imports or destination for exports. Example:
objectStorageNamespace:/bucketName/optionalFolder/optionalPrefix - Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - 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 Object Storage Link - Dictionary<string, string>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"} - Start
Export intTo Object Trigger - (Updatable) An optional property when incremented triggers Start Export To Object. Could be set to any integer value.
- Start
Import intFrom Object Trigger - (Updatable) An optional property when incremented triggers Start Import From Object. Could be set to any integer value.
- Stop
Export intTo Object Trigger - (Updatable) An optional property when incremented triggers Stop Export To Object. Could be set to any integer value.
- Stop
Import intFrom Object Trigger (Updatable) An optional property when incremented triggers Stop Import From Object. Could be set to any integer value.
** 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
- Availability
Domain string - The availability domain that the Lustre file system is in. May be unset as a blank or NULL value. Example:
Uocm:PHX-AD-1 - Compartment
Id string - (Updatable) The OCID of the compartment that contains the Object Storage link.
- File
System stringPath - The path in the Lustre file system used for this Object Storage link. Example:
myFileSystem/mount/myDirectory - Is
Overwrite bool - (Updatable) The flag is an identifier to tell whether the job run has overwrite enabled. If
isOverwriteis false, the file to be imported or exported will be skipped if it already exists. IfisOverwriteis true, the file to be imported or exported will be overwritten if it already exists. - Lustre
File stringSystem Id - The OCID of the associated Lustre file system.
- Object
Storage stringPrefix - The Object Storage namespace and bucket name, including optional object prefix string, to use as the source for imports or destination for exports. Example:
objectStorageNamespace:/bucketName/optionalFolder/optionalPrefix - map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - 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 Object Storage Link - map[string]string
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"} - Start
Export intTo Object Trigger - (Updatable) An optional property when incremented triggers Start Export To Object. Could be set to any integer value.
- Start
Import intFrom Object Trigger - (Updatable) An optional property when incremented triggers Start Import From Object. Could be set to any integer value.
- Stop
Export intTo Object Trigger - (Updatable) An optional property when incremented triggers Stop Export To Object. Could be set to any integer value.
- Stop
Import intFrom Object Trigger (Updatable) An optional property when incremented triggers Stop Import From Object. Could be set to any integer value.
** 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
- availability
Domain String - The availability domain that the Lustre file system is in. May be unset as a blank or NULL value. Example:
Uocm:PHX-AD-1 - compartment
Id String - (Updatable) The OCID of the compartment that contains the Object Storage link.
- file
System StringPath - The path in the Lustre file system used for this Object Storage link. Example:
myFileSystem/mount/myDirectory - is
Overwrite Boolean - (Updatable) The flag is an identifier to tell whether the job run has overwrite enabled. If
isOverwriteis false, the file to be imported or exported will be skipped if it already exists. IfisOverwriteis true, the file to be imported or exported will be overwritten if it already exists. - lustre
File StringSystem Id - The OCID of the associated Lustre file system.
- object
Storage StringPrefix - The Object Storage namespace and bucket name, including optional object prefix string, to use as the source for imports or destination for exports. Example:
objectStorageNamespace:/bucketName/optionalFolder/optionalPrefix - Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - 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 Object Storage Link - Map<String,String>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"} - start
Export IntegerTo Object Trigger - (Updatable) An optional property when incremented triggers Start Export To Object. Could be set to any integer value.
- start
Import IntegerFrom Object Trigger - (Updatable) An optional property when incremented triggers Start Import From Object. Could be set to any integer value.
- stop
Export IntegerTo Object Trigger - (Updatable) An optional property when incremented triggers Stop Export To Object. Could be set to any integer value.
- stop
Import IntegerFrom Object Trigger (Updatable) An optional property when incremented triggers Stop Import From Object. Could be set to any integer value.
** 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
- availability
Domain string - The availability domain that the Lustre file system is in. May be unset as a blank or NULL value. Example:
Uocm:PHX-AD-1 - compartment
Id string - (Updatable) The OCID of the compartment that contains the Object Storage link.
- file
System stringPath - The path in the Lustre file system used for this Object Storage link. Example:
myFileSystem/mount/myDirectory - is
Overwrite boolean - (Updatable) The flag is an identifier to tell whether the job run has overwrite enabled. If
isOverwriteis false, the file to be imported or exported will be skipped if it already exists. IfisOverwriteis true, the file to be imported or exported will be overwritten if it already exists. - lustre
File stringSystem Id - The OCID of the associated Lustre file system.
- object
Storage stringPrefix - The Object Storage namespace and bucket name, including optional object prefix string, to use as the source for imports or destination for exports. Example:
objectStorageNamespace:/bucketName/optionalFolder/optionalPrefix - {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - 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 Object Storage Link - {[key: string]: string}
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"} - start
Export numberTo Object Trigger - (Updatable) An optional property when incremented triggers Start Export To Object. Could be set to any integer value.
- start
Import numberFrom Object Trigger - (Updatable) An optional property when incremented triggers Start Import From Object. Could be set to any integer value.
- stop
Export numberTo Object Trigger - (Updatable) An optional property when incremented triggers Stop Export To Object. Could be set to any integer value.
- stop
Import numberFrom Object Trigger (Updatable) An optional property when incremented triggers Stop Import From Object. Could be set to any integer value.
** 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
- availability_
domain str - The availability domain that the Lustre file system is in. May be unset as a blank or NULL value. Example:
Uocm:PHX-AD-1 - compartment_
id str - (Updatable) The OCID of the compartment that contains the Object Storage link.
- file_
system_ strpath - The path in the Lustre file system used for this Object Storage link. Example:
myFileSystem/mount/myDirectory - is_
overwrite bool - (Updatable) The flag is an identifier to tell whether the job run has overwrite enabled. If
isOverwriteis false, the file to be imported or exported will be skipped if it already exists. IfisOverwriteis true, the file to be imported or exported will be overwritten if it already exists. - lustre_
file_ strsystem_ id - The OCID of the associated Lustre file system.
- object_
storage_ strprefix - The Object Storage namespace and bucket name, including optional object prefix string, to use as the source for imports or destination for exports. Example:
objectStorageNamespace:/bucketName/optionalFolder/optionalPrefix - Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - 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 Object Storage Link - Mapping[str, str]
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"} - start_
export_ intto_ object_ trigger - (Updatable) An optional property when incremented triggers Start Export To Object. Could be set to any integer value.
- start_
import_ intfrom_ object_ trigger - (Updatable) An optional property when incremented triggers Start Import From Object. Could be set to any integer value.
- stop_
export_ intto_ object_ trigger - (Updatable) An optional property when incremented triggers Stop Export To Object. Could be set to any integer value.
- stop_
import_ intfrom_ object_ trigger (Updatable) An optional property when incremented triggers Stop Import From Object. Could be set to any integer value.
** 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
- availability
Domain String - The availability domain that the Lustre file system is in. May be unset as a blank or NULL value. Example:
Uocm:PHX-AD-1 - compartment
Id String - (Updatable) The OCID of the compartment that contains the Object Storage link.
- file
System StringPath - The path in the Lustre file system used for this Object Storage link. Example:
myFileSystem/mount/myDirectory - is
Overwrite Boolean - (Updatable) The flag is an identifier to tell whether the job run has overwrite enabled. If
isOverwriteis false, the file to be imported or exported will be skipped if it already exists. IfisOverwriteis true, the file to be imported or exported will be overwritten if it already exists. - lustre
File StringSystem Id - The OCID of the associated Lustre file system.
- object
Storage StringPrefix - The Object Storage namespace and bucket name, including optional object prefix string, to use as the source for imports or destination for exports. Example:
objectStorageNamespace:/bucketName/optionalFolder/optionalPrefix - Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - 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 Object Storage Link - Map<String>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"} - start
Export NumberTo Object Trigger - (Updatable) An optional property when incremented triggers Start Export To Object. Could be set to any integer value.
- start
Import NumberFrom Object Trigger - (Updatable) An optional property when incremented triggers Start Import From Object. Could be set to any integer value.
- stop
Export NumberTo Object Trigger - (Updatable) An optional property when incremented triggers Stop Export To Object. Could be set to any integer value.
- stop
Import NumberFrom Object Trigger (Updatable) An optional property when incremented triggers Stop Import From Object. Could be set to any integer value.
** 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 FileStorageObjectStorageLink resource produces the following output properties:
- Current
Job stringId - The OCID of currently running sync job. If no sync job is running, then this will be empty.
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Job stringId - The OCID of last succeeded sync job. If no sync job has previously run, then this will be empty.
- Lifecycle
Details string - A message that describes the current state of the Object Storage link in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
- State string
- The current state of the Object Storage link.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - Time
Created string - The date and time the Lustre file system was created, expressed in RFC 3339 timestamp format. Example:
2024-04-25T21:10:29.600Z - Time
Updated string - The date and time the Object Storage link was updated, in the format defined by RFC 3339. Example:
2024-04-25T21:10:29.600Z
- Current
Job stringId - The OCID of currently running sync job. If no sync job is running, then this will be empty.
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Job stringId - The OCID of last succeeded sync job. If no sync job has previously run, then this will be empty.
- Lifecycle
Details string - A message that describes the current state of the Object Storage link in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
- State string
- The current state of the Object Storage link.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - Time
Created string - The date and time the Lustre file system was created, expressed in RFC 3339 timestamp format. Example:
2024-04-25T21:10:29.600Z - Time
Updated string - The date and time the Object Storage link was updated, in the format defined by RFC 3339. Example:
2024-04-25T21:10:29.600Z
- current
Job StringId - The OCID of currently running sync job. If no sync job is running, then this will be empty.
- id String
- The provider-assigned unique ID for this managed resource.
- last
Job StringId - The OCID of last succeeded sync job. If no sync job has previously run, then this will be empty.
- lifecycle
Details String - A message that describes the current state of the Object Storage link in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
- state String
- The current state of the Object Storage link.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created String - The date and time the Lustre file system was created, expressed in RFC 3339 timestamp format. Example:
2024-04-25T21:10:29.600Z - time
Updated String - The date and time the Object Storage link was updated, in the format defined by RFC 3339. Example:
2024-04-25T21:10:29.600Z
- current
Job stringId - The OCID of currently running sync job. If no sync job is running, then this will be empty.
- id string
- The provider-assigned unique ID for this managed resource.
- last
Job stringId - The OCID of last succeeded sync job. If no sync job has previously run, then this will be empty.
- lifecycle
Details string - A message that describes the current state of the Object Storage link in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
- state string
- The current state of the Object Storage link.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created string - The date and time the Lustre file system was created, expressed in RFC 3339 timestamp format. Example:
2024-04-25T21:10:29.600Z - time
Updated string - The date and time the Object Storage link was updated, in the format defined by RFC 3339. Example:
2024-04-25T21:10:29.600Z
- current_
job_ strid - The OCID of currently running sync job. If no sync job is running, then this will be empty.
- id str
- The provider-assigned unique ID for this managed resource.
- last_
job_ strid - The OCID of last succeeded sync job. If no sync job has previously run, then this will be empty.
- lifecycle_
details str - A message that describes the current state of the Object Storage link in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
- state str
- The current state of the Object Storage link.
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time_
created str - The date and time the Lustre file system was created, expressed in RFC 3339 timestamp format. Example:
2024-04-25T21:10:29.600Z - time_
updated str - The date and time the Object Storage link was updated, in the format defined by RFC 3339. Example:
2024-04-25T21:10:29.600Z
- current
Job StringId - The OCID of currently running sync job. If no sync job is running, then this will be empty.
- id String
- The provider-assigned unique ID for this managed resource.
- last
Job StringId - The OCID of last succeeded sync job. If no sync job has previously run, then this will be empty.
- lifecycle
Details String - A message that describes the current state of the Object Storage link in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
- state String
- The current state of the Object Storage link.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created String - The date and time the Lustre file system was created, expressed in RFC 3339 timestamp format. Example:
2024-04-25T21:10:29.600Z - time
Updated String - The date and time the Object Storage link was updated, in the format defined by RFC 3339. Example:
2024-04-25T21:10:29.600Z
Look up Existing FileStorageObjectStorageLink Resource
Get an existing FileStorageObjectStorageLink 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?: FileStorageObjectStorageLinkState, opts?: CustomResourceOptions): FileStorageObjectStorageLink@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
availability_domain: Optional[str] = None,
compartment_id: Optional[str] = None,
current_job_id: Optional[str] = None,
defined_tags: Optional[Mapping[str, str]] = None,
display_name: Optional[str] = None,
file_system_path: Optional[str] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
is_overwrite: Optional[bool] = None,
last_job_id: Optional[str] = None,
lifecycle_details: Optional[str] = None,
lustre_file_system_id: Optional[str] = None,
object_storage_prefix: Optional[str] = None,
start_export_to_object_trigger: Optional[int] = None,
start_import_from_object_trigger: Optional[int] = None,
state: Optional[str] = None,
stop_export_to_object_trigger: Optional[int] = None,
stop_import_from_object_trigger: Optional[int] = None,
system_tags: Optional[Mapping[str, str]] = None,
time_created: Optional[str] = None,
time_updated: Optional[str] = None) -> FileStorageObjectStorageLinkfunc GetFileStorageObjectStorageLink(ctx *Context, name string, id IDInput, state *FileStorageObjectStorageLinkState, opts ...ResourceOption) (*FileStorageObjectStorageLink, error)public static FileStorageObjectStorageLink Get(string name, Input<string> id, FileStorageObjectStorageLinkState? state, CustomResourceOptions? opts = null)public static FileStorageObjectStorageLink get(String name, Output<String> id, FileStorageObjectStorageLinkState state, CustomResourceOptions options)resources: _: type: oci:Lustre:FileStorageObjectStorageLink get: id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Availability
Domain string - The availability domain that the Lustre file system is in. May be unset as a blank or NULL value. Example:
Uocm:PHX-AD-1 - Compartment
Id string - (Updatable) The OCID of the compartment that contains the Object Storage link.
- Current
Job stringId - The OCID of currently running sync job. If no sync job is running, then this will be empty.
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - 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 Object Storage Link - File
System stringPath - The path in the Lustre file system used for this Object Storage link. Example:
myFileSystem/mount/myDirectory - Dictionary<string, string>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"} - Is
Overwrite bool - (Updatable) The flag is an identifier to tell whether the job run has overwrite enabled. If
isOverwriteis false, the file to be imported or exported will be skipped if it already exists. IfisOverwriteis true, the file to be imported or exported will be overwritten if it already exists. - Last
Job stringId - The OCID of last succeeded sync job. If no sync job has previously run, then this will be empty.
- Lifecycle
Details string - A message that describes the current state of the Object Storage link in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
- Lustre
File stringSystem Id - The OCID of the associated Lustre file system.
- Object
Storage stringPrefix - The Object Storage namespace and bucket name, including optional object prefix string, to use as the source for imports or destination for exports. Example:
objectStorageNamespace:/bucketName/optionalFolder/optionalPrefix - Start
Export intTo Object Trigger - (Updatable) An optional property when incremented triggers Start Export To Object. Could be set to any integer value.
- Start
Import intFrom Object Trigger - (Updatable) An optional property when incremented triggers Start Import From Object. Could be set to any integer value.
- State string
- The current state of the Object Storage link.
- Stop
Export intTo Object Trigger - (Updatable) An optional property when incremented triggers Stop Export To Object. Could be set to any integer value.
- Stop
Import intFrom Object Trigger (Updatable) An optional property when incremented triggers Stop Import From Object. Could be set to any integer value.
** 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
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - Time
Created string - The date and time the Lustre file system was created, expressed in RFC 3339 timestamp format. Example:
2024-04-25T21:10:29.600Z - Time
Updated string - The date and time the Object Storage link was updated, in the format defined by RFC 3339. Example:
2024-04-25T21:10:29.600Z
- Availability
Domain string - The availability domain that the Lustre file system is in. May be unset as a blank or NULL value. Example:
Uocm:PHX-AD-1 - Compartment
Id string - (Updatable) The OCID of the compartment that contains the Object Storage link.
- Current
Job stringId - The OCID of currently running sync job. If no sync job is running, then this will be empty.
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - 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 Object Storage Link - File
System stringPath - The path in the Lustre file system used for this Object Storage link. Example:
myFileSystem/mount/myDirectory - map[string]string
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"} - Is
Overwrite bool - (Updatable) The flag is an identifier to tell whether the job run has overwrite enabled. If
isOverwriteis false, the file to be imported or exported will be skipped if it already exists. IfisOverwriteis true, the file to be imported or exported will be overwritten if it already exists. - Last
Job stringId - The OCID of last succeeded sync job. If no sync job has previously run, then this will be empty.
- Lifecycle
Details string - A message that describes the current state of the Object Storage link in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
- Lustre
File stringSystem Id - The OCID of the associated Lustre file system.
- Object
Storage stringPrefix - The Object Storage namespace and bucket name, including optional object prefix string, to use as the source for imports or destination for exports. Example:
objectStorageNamespace:/bucketName/optionalFolder/optionalPrefix - Start
Export intTo Object Trigger - (Updatable) An optional property when incremented triggers Start Export To Object. Could be set to any integer value.
- Start
Import intFrom Object Trigger - (Updatable) An optional property when incremented triggers Start Import From Object. Could be set to any integer value.
- State string
- The current state of the Object Storage link.
- Stop
Export intTo Object Trigger - (Updatable) An optional property when incremented triggers Stop Export To Object. Could be set to any integer value.
- Stop
Import intFrom Object Trigger (Updatable) An optional property when incremented triggers Stop Import From Object. Could be set to any integer value.
** 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
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - Time
Created string - The date and time the Lustre file system was created, expressed in RFC 3339 timestamp format. Example:
2024-04-25T21:10:29.600Z - Time
Updated string - The date and time the Object Storage link was updated, in the format defined by RFC 3339. Example:
2024-04-25T21:10:29.600Z
- availability
Domain String - The availability domain that the Lustre file system is in. May be unset as a blank or NULL value. Example:
Uocm:PHX-AD-1 - compartment
Id String - (Updatable) The OCID of the compartment that contains the Object Storage link.
- current
Job StringId - The OCID of currently running sync job. If no sync job is running, then this will be empty.
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - 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 Object Storage Link - file
System StringPath - The path in the Lustre file system used for this Object Storage link. Example:
myFileSystem/mount/myDirectory - Map<String,String>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"} - is
Overwrite Boolean - (Updatable) The flag is an identifier to tell whether the job run has overwrite enabled. If
isOverwriteis false, the file to be imported or exported will be skipped if it already exists. IfisOverwriteis true, the file to be imported or exported will be overwritten if it already exists. - last
Job StringId - The OCID of last succeeded sync job. If no sync job has previously run, then this will be empty.
- lifecycle
Details String - A message that describes the current state of the Object Storage link in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
- lustre
File StringSystem Id - The OCID of the associated Lustre file system.
- object
Storage StringPrefix - The Object Storage namespace and bucket name, including optional object prefix string, to use as the source for imports or destination for exports. Example:
objectStorageNamespace:/bucketName/optionalFolder/optionalPrefix - start
Export IntegerTo Object Trigger - (Updatable) An optional property when incremented triggers Start Export To Object. Could be set to any integer value.
- start
Import IntegerFrom Object Trigger - (Updatable) An optional property when incremented triggers Start Import From Object. Could be set to any integer value.
- state String
- The current state of the Object Storage link.
- stop
Export IntegerTo Object Trigger - (Updatable) An optional property when incremented triggers Stop Export To Object. Could be set to any integer value.
- stop
Import IntegerFrom Object Trigger (Updatable) An optional property when incremented triggers Stop Import From Object. Could be set to any integer value.
** 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
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created String - The date and time the Lustre file system was created, expressed in RFC 3339 timestamp format. Example:
2024-04-25T21:10:29.600Z - time
Updated String - The date and time the Object Storage link was updated, in the format defined by RFC 3339. Example:
2024-04-25T21:10:29.600Z
- availability
Domain string - The availability domain that the Lustre file system is in. May be unset as a blank or NULL value. Example:
Uocm:PHX-AD-1 - compartment
Id string - (Updatable) The OCID of the compartment that contains the Object Storage link.
- current
Job stringId - The OCID of currently running sync job. If no sync job is running, then this will be empty.
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - 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 Object Storage Link - file
System stringPath - The path in the Lustre file system used for this Object Storage link. Example:
myFileSystem/mount/myDirectory - {[key: string]: string}
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"} - is
Overwrite boolean - (Updatable) The flag is an identifier to tell whether the job run has overwrite enabled. If
isOverwriteis false, the file to be imported or exported will be skipped if it already exists. IfisOverwriteis true, the file to be imported or exported will be overwritten if it already exists. - last
Job stringId - The OCID of last succeeded sync job. If no sync job has previously run, then this will be empty.
- lifecycle
Details string - A message that describes the current state of the Object Storage link in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
- lustre
File stringSystem Id - The OCID of the associated Lustre file system.
- object
Storage stringPrefix - The Object Storage namespace and bucket name, including optional object prefix string, to use as the source for imports or destination for exports. Example:
objectStorageNamespace:/bucketName/optionalFolder/optionalPrefix - start
Export numberTo Object Trigger - (Updatable) An optional property when incremented triggers Start Export To Object. Could be set to any integer value.
- start
Import numberFrom Object Trigger - (Updatable) An optional property when incremented triggers Start Import From Object. Could be set to any integer value.
- state string
- The current state of the Object Storage link.
- stop
Export numberTo Object Trigger - (Updatable) An optional property when incremented triggers Stop Export To Object. Could be set to any integer value.
- stop
Import numberFrom Object Trigger (Updatable) An optional property when incremented triggers Stop Import From Object. Could be set to any integer value.
** 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
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created string - The date and time the Lustre file system was created, expressed in RFC 3339 timestamp format. Example:
2024-04-25T21:10:29.600Z - time
Updated string - The date and time the Object Storage link was updated, in the format defined by RFC 3339. Example:
2024-04-25T21:10:29.600Z
- availability_
domain str - The availability domain that the Lustre file system is in. May be unset as a blank or NULL value. Example:
Uocm:PHX-AD-1 - compartment_
id str - (Updatable) The OCID of the compartment that contains the Object Storage link.
- current_
job_ strid - The OCID of currently running sync job. If no sync job is running, then this will be empty.
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - 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 Object Storage Link - file_
system_ strpath - The path in the Lustre file system used for this Object Storage link. Example:
myFileSystem/mount/myDirectory - Mapping[str, str]
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"} - is_
overwrite bool - (Updatable) The flag is an identifier to tell whether the job run has overwrite enabled. If
isOverwriteis false, the file to be imported or exported will be skipped if it already exists. IfisOverwriteis true, the file to be imported or exported will be overwritten if it already exists. - last_
job_ strid - The OCID of last succeeded sync job. If no sync job has previously run, then this will be empty.
- lifecycle_
details str - A message that describes the current state of the Object Storage link in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
- lustre_
file_ strsystem_ id - The OCID of the associated Lustre file system.
- object_
storage_ strprefix - The Object Storage namespace and bucket name, including optional object prefix string, to use as the source for imports or destination for exports. Example:
objectStorageNamespace:/bucketName/optionalFolder/optionalPrefix - start_
export_ intto_ object_ trigger - (Updatable) An optional property when incremented triggers Start Export To Object. Could be set to any integer value.
- start_
import_ intfrom_ object_ trigger - (Updatable) An optional property when incremented triggers Start Import From Object. Could be set to any integer value.
- state str
- The current state of the Object Storage link.
- stop_
export_ intto_ object_ trigger - (Updatable) An optional property when incremented triggers Stop Export To Object. Could be set to any integer value.
- stop_
import_ intfrom_ object_ trigger (Updatable) An optional property when incremented triggers Stop Import From Object. Could be set to any integer value.
** 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
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time_
created str - The date and time the Lustre file system was created, expressed in RFC 3339 timestamp format. Example:
2024-04-25T21:10:29.600Z - time_
updated str - The date and time the Object Storage link was updated, in the format defined by RFC 3339. Example:
2024-04-25T21:10:29.600Z
- availability
Domain String - The availability domain that the Lustre file system is in. May be unset as a blank or NULL value. Example:
Uocm:PHX-AD-1 - compartment
Id String - (Updatable) The OCID of the compartment that contains the Object Storage link.
- current
Job StringId - The OCID of currently running sync job. If no sync job is running, then this will be empty.
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - 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 Object Storage Link - file
System StringPath - The path in the Lustre file system used for this Object Storage link. Example:
myFileSystem/mount/myDirectory - Map<String>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"} - is
Overwrite Boolean - (Updatable) The flag is an identifier to tell whether the job run has overwrite enabled. If
isOverwriteis false, the file to be imported or exported will be skipped if it already exists. IfisOverwriteis true, the file to be imported or exported will be overwritten if it already exists. - last
Job StringId - The OCID of last succeeded sync job. If no sync job has previously run, then this will be empty.
- lifecycle
Details String - A message that describes the current state of the Object Storage link in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
- lustre
File StringSystem Id - The OCID of the associated Lustre file system.
- object
Storage StringPrefix - The Object Storage namespace and bucket name, including optional object prefix string, to use as the source for imports or destination for exports. Example:
objectStorageNamespace:/bucketName/optionalFolder/optionalPrefix - start
Export NumberTo Object Trigger - (Updatable) An optional property when incremented triggers Start Export To Object. Could be set to any integer value.
- start
Import NumberFrom Object Trigger - (Updatable) An optional property when incremented triggers Start Import From Object. Could be set to any integer value.
- state String
- The current state of the Object Storage link.
- stop
Export NumberTo Object Trigger - (Updatable) An optional property when incremented triggers Stop Export To Object. Could be set to any integer value.
- stop
Import NumberFrom Object Trigger (Updatable) An optional property when incremented triggers Stop Import From Object. Could be set to any integer value.
** 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
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created String - The date and time the Lustre file system was created, expressed in RFC 3339 timestamp format. Example:
2024-04-25T21:10:29.600Z - time
Updated String - The date and time the Object Storage link was updated, in the format defined by RFC 3339. Example:
2024-04-25T21:10:29.600Z
Import
ObjectStorageLinks can be imported using the id, e.g.
$ pulumi import oci:Lustre/fileStorageObjectStorageLink:FileStorageObjectStorageLink test_object_storage_link "id"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
ociTerraform Provider.
