CreateExportDetails¶
-
class
oci.file_storage.models.
CreateExportDetails
(**kwargs)¶ Bases:
object
Details for creating the export.
-
__init__
(**kwargs)¶ Initializes a new CreateExportDetails object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - export_options (list[ClientOptions]) -- The value to assign to the export_options property of this CreateExportDetails.
- export_set_id (str) -- The value to assign to the export_set_id property of this CreateExportDetails.
- file_system_id (str) -- The value to assign to the file_system_id property of this CreateExportDetails.
- path (str) -- The value to assign to the path property of this CreateExportDetails.
-
export_options
¶ Gets the export_options of this CreateExportDetails. Export options for the new export. If left unspecified, defaults to:
- [
- {
- "source" : "0.0.0.0/0", "requirePrivilegedSourcePort" : false, "access" : "READ_WRITE", "identitySquash" : "NONE"
}
]
Note: Mount targets do not have Internet-routable IP addresses. Therefore they will not be reachable from the Internet, even if an associated ClientOptions item has a source of 0.0.0.0/0.
If set to the empty array then the export will not be visible to any clients.
The export's exportOptions can be changed after creation using the UpdateExport operation.
Returns: The export_options of this CreateExportDetails. Return type: list[ClientOptions]
-
export_set_id
¶ [Required] Gets the export_set_id of this CreateExportDetails. The OCID of this export's export set.
Returns: The export_set_id of this CreateExportDetails. Return type: str
-
file_system_id
¶ [Required] Gets the file_system_id of this CreateExportDetails. The OCID of this export's file system.
Returns: The file_system_id of this CreateExportDetails. Return type: str
-
path
¶ [Required] Gets the path of this CreateExportDetails. Path used to access the associated file system.
Avoid entering confidential information.
Example: /mediafiles
Returns: The path of this CreateExportDetails. Return type: str
-