pulumi-oci 2.1.0a1719905039__py3-none-any.whl → 2.1.0a1720054142__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_oci/__init__.py +43 -0
- pulumi_oci/database/__init__.py +11 -0
- pulumi_oci/database/_inputs.py +607 -0
- pulumi_oci/database/db_node.py +28 -0
- pulumi_oci/database/exadb_vm_cluster.py +1761 -0
- pulumi_oci/database/exascale_db_storage_vault.py +787 -0
- pulumi_oci/database/get_backups.py +22 -5
- pulumi_oci/database/get_db_node.py +14 -1
- pulumi_oci/database/get_db_nodes.py +2 -2
- pulumi_oci/database/get_exadb_vm_cluster.py +614 -0
- pulumi_oci/database/get_exadb_vm_cluster_update.py +226 -0
- pulumi_oci/database/get_exadb_vm_cluster_update_history_entries.py +153 -0
- pulumi_oci/database/get_exadb_vm_cluster_update_history_entry.py +226 -0
- pulumi_oci/database/get_exadb_vm_cluster_updates.py +173 -0
- pulumi_oci/database/get_exadb_vm_clusters.py +196 -0
- pulumi_oci/database/get_exascale_db_storage_vault.py +301 -0
- pulumi_oci/database/get_exascale_db_storage_vaults.py +176 -0
- pulumi_oci/database/get_gi_version_minor_versions.py +221 -0
- pulumi_oci/database/get_gi_versions.py +22 -5
- pulumi_oci/database/outputs.py +2050 -0
- pulumi_oci/database/pluggable_database.py +7 -7
- pulumi_oci/databasemigration/__init__.py +6 -0
- pulumi_oci/databasemigration/_inputs.py +1577 -0
- pulumi_oci/databasemigration/connection.py +2019 -0
- pulumi_oci/databasemigration/get_connection.py +616 -0
- pulumi_oci/databasemigration/get_connections.py +225 -0
- pulumi_oci/databasemigration/get_job_advisor_report.py +2 -10
- pulumi_oci/databasemigration/get_migration.py +427 -0
- pulumi_oci/databasemigration/get_migration_object_types.py +24 -13
- pulumi_oci/databasemigration/get_migrations.py +407 -0
- pulumi_oci/databasemigration/job.py +16 -20
- pulumi_oci/databasemigration/migration.py +1471 -0
- pulumi_oci/databasemigration/outputs.py +4301 -73
- pulumi_oci/filestorage/_inputs.py +10 -18
- pulumi_oci/filestorage/export.py +28 -7
- pulumi_oci/filestorage/file_system.py +159 -35
- pulumi_oci/filestorage/outputs.py +55 -34
- pulumi_oci/generativeai/_inputs.py +50 -2
- pulumi_oci/generativeai/dedicated_ai_cluster.py +30 -2
- pulumi_oci/generativeai/endpoint.py +2 -2
- pulumi_oci/generativeai/get_dedicated_ai_cluster.py +2 -47
- pulumi_oci/generativeai/get_dedicated_ai_clusters.py +2 -14
- pulumi_oci/generativeai/get_endpoint.py +2 -26
- pulumi_oci/generativeai/get_endpoints.py +2 -8
- pulumi_oci/generativeai/get_model.py +2 -38
- pulumi_oci/generativeai/get_models.py +2 -8
- pulumi_oci/generativeai/model.py +2 -2
- pulumi_oci/generativeai/outputs.py +86 -310
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/resourcescheduler/__init__.py +12 -0
- pulumi_oci/resourcescheduler/_inputs.py +224 -0
- pulumi_oci/resourcescheduler/get_schedule.py +340 -0
- pulumi_oci/resourcescheduler/get_schedules.py +193 -0
- pulumi_oci/resourcescheduler/outputs.py +687 -0
- pulumi_oci/resourcescheduler/schedule.py +977 -0
- {pulumi_oci-2.1.0a1719905039.dist-info → pulumi_oci-2.1.0a1720054142.dist-info}/METADATA +1 -1
- {pulumi_oci-2.1.0a1719905039.dist-info → pulumi_oci-2.1.0a1720054142.dist-info}/RECORD +59 -36
- {pulumi_oci-2.1.0a1719905039.dist-info → pulumi_oci-2.1.0a1720054142.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.1.0a1719905039.dist-info → pulumi_oci-2.1.0a1720054142.dist-info}/top_level.txt +0 -0
@@ -172,11 +172,7 @@ class FileSystemSourceDetailArgs:
|
|
172
172
|
source_snapshot_id: Optional[pulumi.Input[str]] = None):
|
173
173
|
"""
|
174
174
|
:param pulumi.Input[str] parent_file_system_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the file system that contains the source snapshot of a cloned file system. See [Cloning a File System](https://docs.cloud.oracle.com/iaas/Content/File/Tasks/cloningFS.htm).
|
175
|
-
:param pulumi.Input[str] source_snapshot_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the snapshot used to create a cloned file system. See [Cloning a File System](https://docs.cloud.oracle.com/iaas/Content/File/Tasks/cloningFS.htm).
|
176
|
-
|
177
|
-
|
178
|
-
** IMPORTANT **
|
179
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
175
|
+
:param pulumi.Input[str] source_snapshot_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the snapshot used to create a cloned file system. See [Cloning a File System](https://docs.cloud.oracle.com/iaas/Content/File/Tasks/cloningFS.htm).
|
180
176
|
"""
|
181
177
|
if parent_file_system_id is not None:
|
182
178
|
pulumi.set(__self__, "parent_file_system_id", parent_file_system_id)
|
@@ -199,11 +195,7 @@ class FileSystemSourceDetailArgs:
|
|
199
195
|
@pulumi.getter(name="sourceSnapshotId")
|
200
196
|
def source_snapshot_id(self) -> Optional[pulumi.Input[str]]:
|
201
197
|
"""
|
202
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the snapshot used to create a cloned file system. See [Cloning a File System](https://docs.cloud.oracle.com/iaas/Content/File/Tasks/cloningFS.htm).
|
203
|
-
|
204
|
-
|
205
|
-
** IMPORTANT **
|
206
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
198
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the snapshot used to create a cloned file system. See [Cloning a File System](https://docs.cloud.oracle.com/iaas/Content/File/Tasks/cloningFS.htm).
|
207
199
|
"""
|
208
200
|
return pulumi.get(self, "source_snapshot_id")
|
209
201
|
|
@@ -227,10 +219,10 @@ class FilesystemSnapshotPolicyScheduleArgs:
|
|
227
219
|
"""
|
228
220
|
:param pulumi.Input[str] period: (Updatable) The frequency of scheduled snapshots.
|
229
221
|
:param pulumi.Input[str] time_zone: (Updatable) Time zone used for scheduling the snapshot.
|
230
|
-
:param pulumi.Input[int] day_of_month: (Updatable) The day of the month to create a scheduled snapshot. If the day does not exist for the month, snapshot creation will be skipped. Used for MONTHLY and YEARLY snapshot schedules.
|
231
|
-
:param pulumi.Input[str] day_of_week: (Updatable) The day of the week to create a scheduled snapshot. Used for WEEKLY snapshot schedules.
|
232
|
-
:param pulumi.Input[int] hour_of_day: (Updatable) The hour of the day to create a DAILY, WEEKLY, MONTHLY, or YEARLY snapshot. If not set,
|
233
|
-
:param pulumi.Input[str] month: (Updatable) The month to create a scheduled snapshot. Used only for YEARLY snapshot schedules.
|
222
|
+
:param pulumi.Input[int] day_of_month: (Updatable) The day of the month to create a scheduled snapshot. If the day does not exist for the month, snapshot creation will be skipped. Used for MONTHLY and YEARLY snapshot schedules. If not set, the system chooses a value at creation time.
|
223
|
+
:param pulumi.Input[str] day_of_week: (Updatable) The day of the week to create a scheduled snapshot. Used for WEEKLY snapshot schedules. If not set, the system chooses a value at creation time.
|
224
|
+
:param pulumi.Input[int] hour_of_day: (Updatable) The hour of the day to create a DAILY, WEEKLY, MONTHLY, or YEARLY snapshot. If not set, the system chooses a value at creation time.
|
225
|
+
:param pulumi.Input[str] month: (Updatable) The month to create a scheduled snapshot. Used only for YEARLY snapshot schedules. If not set, the system chooses a value at creation time.
|
234
226
|
:param pulumi.Input[str] retention_duration_in_seconds: (Updatable) The number of seconds to retain snapshots created with this schedule. Snapshot expiration time will not be set if this value is empty.
|
235
227
|
:param pulumi.Input[str] schedule_prefix: (Updatable) A name prefix to be applied to snapshots created by this schedule. Example: `compliance1`
|
236
228
|
:param pulumi.Input[str] time_schedule_start: (Updatable) The starting point used to begin the scheduling of the snapshots based upon recurrence string in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. If no `timeScheduleStart` is provided, the value will be set to the time when the schedule was created.
|
@@ -280,7 +272,7 @@ class FilesystemSnapshotPolicyScheduleArgs:
|
|
280
272
|
@pulumi.getter(name="dayOfMonth")
|
281
273
|
def day_of_month(self) -> Optional[pulumi.Input[int]]:
|
282
274
|
"""
|
283
|
-
(Updatable) The day of the month to create a scheduled snapshot. If the day does not exist for the month, snapshot creation will be skipped. Used for MONTHLY and YEARLY snapshot schedules.
|
275
|
+
(Updatable) The day of the month to create a scheduled snapshot. If the day does not exist for the month, snapshot creation will be skipped. Used for MONTHLY and YEARLY snapshot schedules. If not set, the system chooses a value at creation time.
|
284
276
|
"""
|
285
277
|
return pulumi.get(self, "day_of_month")
|
286
278
|
|
@@ -292,7 +284,7 @@ class FilesystemSnapshotPolicyScheduleArgs:
|
|
292
284
|
@pulumi.getter(name="dayOfWeek")
|
293
285
|
def day_of_week(self) -> Optional[pulumi.Input[str]]:
|
294
286
|
"""
|
295
|
-
(Updatable) The day of the week to create a scheduled snapshot. Used for WEEKLY snapshot schedules.
|
287
|
+
(Updatable) The day of the week to create a scheduled snapshot. Used for WEEKLY snapshot schedules. If not set, the system chooses a value at creation time.
|
296
288
|
"""
|
297
289
|
return pulumi.get(self, "day_of_week")
|
298
290
|
|
@@ -304,7 +296,7 @@ class FilesystemSnapshotPolicyScheduleArgs:
|
|
304
296
|
@pulumi.getter(name="hourOfDay")
|
305
297
|
def hour_of_day(self) -> Optional[pulumi.Input[int]]:
|
306
298
|
"""
|
307
|
-
(Updatable) The hour of the day to create a DAILY, WEEKLY, MONTHLY, or YEARLY snapshot. If not set,
|
299
|
+
(Updatable) The hour of the day to create a DAILY, WEEKLY, MONTHLY, or YEARLY snapshot. If not set, the system chooses a value at creation time.
|
308
300
|
"""
|
309
301
|
return pulumi.get(self, "hour_of_day")
|
310
302
|
|
@@ -316,7 +308,7 @@ class FilesystemSnapshotPolicyScheduleArgs:
|
|
316
308
|
@pulumi.getter
|
317
309
|
def month(self) -> Optional[pulumi.Input[str]]:
|
318
310
|
"""
|
319
|
-
(Updatable) The month to create a scheduled snapshot. Used only for YEARLY snapshot schedules.
|
311
|
+
(Updatable) The month to create a scheduled snapshot. Used only for YEARLY snapshot schedules. If not set, the system chooses a value at creation time.
|
320
312
|
"""
|
321
313
|
return pulumi.get(self, "month")
|
322
314
|
|
pulumi_oci/filestorage/export.py
CHANGED
@@ -34,9 +34,12 @@ class ExportArgs:
|
|
34
34
|
|
35
35
|
** IMPORTANT **
|
36
36
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
37
|
-
:param pulumi.Input[Sequence[pulumi.Input['ExportExportOptionArgs']]] export_options: (Updatable) Export options for the new export.
|
37
|
+
:param pulumi.Input[Sequence[pulumi.Input['ExportExportOptionArgs']]] export_options: (Updatable) Export options for the new export. For exports of mount targets with IPv4 address, if client options are left unspecified, client options would default to:
|
38
|
+
|
38
39
|
[ { "source" : "0.0.0.0/0", "requirePrivilegedSourcePort" : false, "access": "READ_WRITE", "identitySquash": "NONE", "anonymousUid": 65534, "anonymousGid": 65534, "isAnonymousAccessAllowed": false, "allowedAuth": ["SYS"] } ]
|
39
40
|
|
41
|
+
For exports of mount targets with IPv6 address, if client options are left unspecified, client options would be an empty array, i.e. export would not be visible to any clients.
|
42
|
+
|
40
43
|
**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`.
|
41
44
|
|
42
45
|
**If set to the empty array then the export will not be visible to any clients.**
|
@@ -100,9 +103,12 @@ class ExportArgs:
|
|
100
103
|
@pulumi.getter(name="exportOptions")
|
101
104
|
def export_options(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ExportExportOptionArgs']]]]:
|
102
105
|
"""
|
103
|
-
(Updatable) Export options for the new export.
|
106
|
+
(Updatable) Export options for the new export. For exports of mount targets with IPv4 address, if client options are left unspecified, client options would default to:
|
107
|
+
|
104
108
|
[ { "source" : "0.0.0.0/0", "requirePrivilegedSourcePort" : false, "access": "READ_WRITE", "identitySquash": "NONE", "anonymousUid": 65534, "anonymousGid": 65534, "isAnonymousAccessAllowed": false, "allowedAuth": ["SYS"] } ]
|
105
109
|
|
110
|
+
For exports of mount targets with IPv6 address, if client options are left unspecified, client options would be an empty array, i.e. export would not be visible to any clients.
|
111
|
+
|
106
112
|
**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`.
|
107
113
|
|
108
114
|
**If set to the empty array then the export will not be visible to any clients.**
|
@@ -140,9 +146,12 @@ class _ExportState:
|
|
140
146
|
time_created: Optional[pulumi.Input[str]] = None):
|
141
147
|
"""
|
142
148
|
Input properties used for looking up and filtering Export resources.
|
143
|
-
:param pulumi.Input[Sequence[pulumi.Input['ExportExportOptionArgs']]] export_options: (Updatable) Export options for the new export.
|
149
|
+
:param pulumi.Input[Sequence[pulumi.Input['ExportExportOptionArgs']]] export_options: (Updatable) Export options for the new export. For exports of mount targets with IPv4 address, if client options are left unspecified, client options would default to:
|
150
|
+
|
144
151
|
[ { "source" : "0.0.0.0/0", "requirePrivilegedSourcePort" : false, "access": "READ_WRITE", "identitySquash": "NONE", "anonymousUid": 65534, "anonymousGid": 65534, "isAnonymousAccessAllowed": false, "allowedAuth": ["SYS"] } ]
|
145
152
|
|
153
|
+
For exports of mount targets with IPv6 address, if client options are left unspecified, client options would be an empty array, i.e. export would not be visible to any clients.
|
154
|
+
|
146
155
|
**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`.
|
147
156
|
|
148
157
|
**If set to the empty array then the export will not be visible to any clients.**
|
@@ -182,9 +191,12 @@ class _ExportState:
|
|
182
191
|
@pulumi.getter(name="exportOptions")
|
183
192
|
def export_options(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ExportExportOptionArgs']]]]:
|
184
193
|
"""
|
185
|
-
(Updatable) Export options for the new export.
|
194
|
+
(Updatable) Export options for the new export. For exports of mount targets with IPv4 address, if client options are left unspecified, client options would default to:
|
195
|
+
|
186
196
|
[ { "source" : "0.0.0.0/0", "requirePrivilegedSourcePort" : false, "access": "READ_WRITE", "identitySquash": "NONE", "anonymousUid": 65534, "anonymousGid": 65534, "isAnonymousAccessAllowed": false, "allowedAuth": ["SYS"] } ]
|
187
197
|
|
198
|
+
For exports of mount targets with IPv6 address, if client options are left unspecified, client options would be an empty array, i.e. export would not be visible to any clients.
|
199
|
+
|
188
200
|
**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`.
|
189
201
|
|
190
202
|
**If set to the empty array then the export will not be visible to any clients.**
|
@@ -328,9 +340,12 @@ class Export(pulumi.CustomResource):
|
|
328
340
|
|
329
341
|
:param str resource_name: The name of the resource.
|
330
342
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
331
|
-
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ExportExportOptionArgs']]]] export_options: (Updatable) Export options for the new export.
|
343
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ExportExportOptionArgs']]]] export_options: (Updatable) Export options for the new export. For exports of mount targets with IPv4 address, if client options are left unspecified, client options would default to:
|
344
|
+
|
332
345
|
[ { "source" : "0.0.0.0/0", "requirePrivilegedSourcePort" : false, "access": "READ_WRITE", "identitySquash": "NONE", "anonymousUid": 65534, "anonymousGid": 65534, "isAnonymousAccessAllowed": false, "allowedAuth": ["SYS"] } ]
|
333
346
|
|
347
|
+
For exports of mount targets with IPv6 address, if client options are left unspecified, client options would be an empty array, i.e. export would not be visible to any clients.
|
348
|
+
|
334
349
|
**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`.
|
335
350
|
|
336
351
|
**If set to the empty array then the export will not be visible to any clients.**
|
@@ -458,9 +473,12 @@ class Export(pulumi.CustomResource):
|
|
458
473
|
:param str resource_name: The unique name of the resulting resource.
|
459
474
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
460
475
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
461
|
-
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ExportExportOptionArgs']]]] export_options: (Updatable) Export options for the new export.
|
476
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ExportExportOptionArgs']]]] export_options: (Updatable) Export options for the new export. For exports of mount targets with IPv4 address, if client options are left unspecified, client options would default to:
|
477
|
+
|
462
478
|
[ { "source" : "0.0.0.0/0", "requirePrivilegedSourcePort" : false, "access": "READ_WRITE", "identitySquash": "NONE", "anonymousUid": 65534, "anonymousGid": 65534, "isAnonymousAccessAllowed": false, "allowedAuth": ["SYS"] } ]
|
463
479
|
|
480
|
+
For exports of mount targets with IPv6 address, if client options are left unspecified, client options would be an empty array, i.e. export would not be visible to any clients.
|
481
|
+
|
464
482
|
**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`.
|
465
483
|
|
466
484
|
**If set to the empty array then the export will not be visible to any clients.**
|
@@ -498,9 +516,12 @@ class Export(pulumi.CustomResource):
|
|
498
516
|
@pulumi.getter(name="exportOptions")
|
499
517
|
def export_options(self) -> pulumi.Output[Sequence['outputs.ExportExportOption']]:
|
500
518
|
"""
|
501
|
-
(Updatable) Export options for the new export.
|
519
|
+
(Updatable) Export options for the new export. For exports of mount targets with IPv4 address, if client options are left unspecified, client options would default to:
|
520
|
+
|
502
521
|
[ { "source" : "0.0.0.0/0", "requirePrivilegedSourcePort" : false, "access": "READ_WRITE", "identitySquash": "NONE", "anonymousUid": 65534, "anonymousGid": 65534, "isAnonymousAccessAllowed": false, "allowedAuth": ["SYS"] } ]
|
503
522
|
|
523
|
+
For exports of mount targets with IPv6 address, if client options are left unspecified, client options would be an empty array, i.e. export would not be visible to any clients.
|
524
|
+
|
504
525
|
**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`.
|
505
526
|
|
506
527
|
**If set to the empty array then the export will not be visible to any clients.**
|
@@ -18,7 +18,9 @@ class FileSystemArgs:
|
|
18
18
|
def __init__(__self__, *,
|
19
19
|
availability_domain: pulumi.Input[str],
|
20
20
|
compartment_id: pulumi.Input[str],
|
21
|
+
clone_attach_status: Optional[pulumi.Input[str]] = None,
|
21
22
|
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
23
|
+
detach_clone_trigger: Optional[pulumi.Input[int]] = None,
|
22
24
|
display_name: Optional[pulumi.Input[str]] = None,
|
23
25
|
filesystem_snapshot_policy_id: Optional[pulumi.Input[str]] = None,
|
24
26
|
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
@@ -28,23 +30,29 @@ class FileSystemArgs:
|
|
28
30
|
The set of arguments for constructing a FileSystem resource.
|
29
31
|
:param pulumi.Input[str] availability_domain: The availability domain to create the file system in. Example: `Uocm:PHX-AD-1`
|
30
32
|
:param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment to create the file system in.
|
33
|
+
:param pulumi.Input[str] clone_attach_status: Specifies whether the clone file system is attached to its parent file system. If the value is set to 'DETACH', then the file system will be created, which is deep copied from the snapshot specified by sourceSnapshotId, else will remain attached to its parent.
|
31
34
|
:param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
35
|
+
:param pulumi.Input[int] detach_clone_trigger: (Updatable) An optional property when incremented triggers Detach Clone. Could be set to any integer value.
|
36
|
+
|
37
|
+
|
38
|
+
** IMPORTANT **
|
39
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
32
40
|
:param pulumi.Input[str] display_name: (Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: `My file system`
|
33
41
|
:param pulumi.Input[str] filesystem_snapshot_policy_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the associated file system snapshot policy, which controls the frequency of snapshot creation and retention period of the taken snapshots.
|
34
42
|
|
35
43
|
May be unset as a blank value.
|
36
44
|
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (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](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
37
45
|
:param pulumi.Input[str] kms_key_id: (Updatable) The OCID of KMS key used to encrypt the encryption keys associated with this file system. May be unset as a blank or deleted from the configuration to remove the KMS key.
|
38
|
-
:param pulumi.Input[str] source_snapshot_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the snapshot used to create a cloned file system. See [Cloning a File System](https://docs.cloud.oracle.com/iaas/Content/File/Tasks/cloningFS.htm).
|
39
|
-
|
40
|
-
|
41
|
-
** IMPORTANT **
|
42
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
46
|
+
:param pulumi.Input[str] source_snapshot_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the snapshot used to create a cloned file system. See [Cloning a File System](https://docs.cloud.oracle.com/iaas/Content/File/Tasks/cloningFS.htm).
|
43
47
|
"""
|
44
48
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
45
49
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
50
|
+
if clone_attach_status is not None:
|
51
|
+
pulumi.set(__self__, "clone_attach_status", clone_attach_status)
|
46
52
|
if defined_tags is not None:
|
47
53
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
54
|
+
if detach_clone_trigger is not None:
|
55
|
+
pulumi.set(__self__, "detach_clone_trigger", detach_clone_trigger)
|
48
56
|
if display_name is not None:
|
49
57
|
pulumi.set(__self__, "display_name", display_name)
|
50
58
|
if filesystem_snapshot_policy_id is not None:
|
@@ -80,6 +88,18 @@ class FileSystemArgs:
|
|
80
88
|
def compartment_id(self, value: pulumi.Input[str]):
|
81
89
|
pulumi.set(self, "compartment_id", value)
|
82
90
|
|
91
|
+
@property
|
92
|
+
@pulumi.getter(name="cloneAttachStatus")
|
93
|
+
def clone_attach_status(self) -> Optional[pulumi.Input[str]]:
|
94
|
+
"""
|
95
|
+
Specifies whether the clone file system is attached to its parent file system. If the value is set to 'DETACH', then the file system will be created, which is deep copied from the snapshot specified by sourceSnapshotId, else will remain attached to its parent.
|
96
|
+
"""
|
97
|
+
return pulumi.get(self, "clone_attach_status")
|
98
|
+
|
99
|
+
@clone_attach_status.setter
|
100
|
+
def clone_attach_status(self, value: Optional[pulumi.Input[str]]):
|
101
|
+
pulumi.set(self, "clone_attach_status", value)
|
102
|
+
|
83
103
|
@property
|
84
104
|
@pulumi.getter(name="definedTags")
|
85
105
|
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
|
@@ -92,6 +112,22 @@ class FileSystemArgs:
|
|
92
112
|
def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
|
93
113
|
pulumi.set(self, "defined_tags", value)
|
94
114
|
|
115
|
+
@property
|
116
|
+
@pulumi.getter(name="detachCloneTrigger")
|
117
|
+
def detach_clone_trigger(self) -> Optional[pulumi.Input[int]]:
|
118
|
+
"""
|
119
|
+
(Updatable) An optional property when incremented triggers Detach Clone. Could be set to any integer value.
|
120
|
+
|
121
|
+
|
122
|
+
** IMPORTANT **
|
123
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
124
|
+
"""
|
125
|
+
return pulumi.get(self, "detach_clone_trigger")
|
126
|
+
|
127
|
+
@detach_clone_trigger.setter
|
128
|
+
def detach_clone_trigger(self, value: Optional[pulumi.Input[int]]):
|
129
|
+
pulumi.set(self, "detach_clone_trigger", value)
|
130
|
+
|
95
131
|
@property
|
96
132
|
@pulumi.getter(name="displayName")
|
97
133
|
def display_name(self) -> Optional[pulumi.Input[str]]:
|
@@ -146,11 +182,7 @@ class FileSystemArgs:
|
|
146
182
|
@pulumi.getter(name="sourceSnapshotId")
|
147
183
|
def source_snapshot_id(self) -> Optional[pulumi.Input[str]]:
|
148
184
|
"""
|
149
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the snapshot used to create a cloned file system. See [Cloning a File System](https://docs.cloud.oracle.com/iaas/Content/File/Tasks/cloningFS.htm).
|
150
|
-
|
151
|
-
|
152
|
-
** IMPORTANT **
|
153
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
185
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the snapshot used to create a cloned file system. See [Cloning a File System](https://docs.cloud.oracle.com/iaas/Content/File/Tasks/cloningFS.htm).
|
154
186
|
"""
|
155
187
|
return pulumi.get(self, "source_snapshot_id")
|
156
188
|
|
@@ -163,8 +195,11 @@ class FileSystemArgs:
|
|
163
195
|
class _FileSystemState:
|
164
196
|
def __init__(__self__, *,
|
165
197
|
availability_domain: Optional[pulumi.Input[str]] = None,
|
198
|
+
clone_attach_status: Optional[pulumi.Input[str]] = None,
|
199
|
+
clone_count: Optional[pulumi.Input[int]] = None,
|
166
200
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
167
201
|
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
202
|
+
detach_clone_trigger: Optional[pulumi.Input[int]] = None,
|
168
203
|
display_name: Optional[pulumi.Input[str]] = None,
|
169
204
|
filesystem_snapshot_policy_id: Optional[pulumi.Input[str]] = None,
|
170
205
|
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
@@ -182,8 +217,15 @@ class _FileSystemState:
|
|
182
217
|
"""
|
183
218
|
Input properties used for looking up and filtering FileSystem resources.
|
184
219
|
:param pulumi.Input[str] availability_domain: The availability domain to create the file system in. Example: `Uocm:PHX-AD-1`
|
220
|
+
:param pulumi.Input[str] clone_attach_status: Specifies whether the clone file system is attached to its parent file system. If the value is set to 'DETACH', then the file system will be created, which is deep copied from the snapshot specified by sourceSnapshotId, else will remain attached to its parent.
|
221
|
+
:param pulumi.Input[int] clone_count: Specifies the total number of children of a file system.
|
185
222
|
:param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment to create the file system in.
|
186
223
|
:param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
224
|
+
:param pulumi.Input[int] detach_clone_trigger: (Updatable) An optional property when incremented triggers Detach Clone. Could be set to any integer value.
|
225
|
+
|
226
|
+
|
227
|
+
** IMPORTANT **
|
228
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
187
229
|
:param pulumi.Input[str] display_name: (Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: `My file system`
|
188
230
|
:param pulumi.Input[str] filesystem_snapshot_policy_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the associated file system snapshot policy, which controls the frequency of snapshot creation and retention period of the taken snapshots.
|
189
231
|
|
@@ -197,20 +239,22 @@ class _FileSystemState:
|
|
197
239
|
:param pulumi.Input[str] metered_bytes: The number of bytes consumed by the file system, including any snapshots. This number reflects the metered size of the file system and is updated asynchronously with respect to updates to the file system. For more information, see [File System Usage and Metering](https://docs.cloud.oracle.com/iaas/Content/File/Concepts/FSutilization.htm).
|
198
240
|
:param pulumi.Input[str] replication_target_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the replication target associated with the file system. Empty if the file system is not being used as target in a replication.
|
199
241
|
:param pulumi.Input[Sequence[pulumi.Input['FileSystemSourceDetailArgs']]] source_details: Source information for the file system.
|
200
|
-
:param pulumi.Input[str] source_snapshot_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the snapshot used to create a cloned file system. See [Cloning a File System](https://docs.cloud.oracle.com/iaas/Content/File/Tasks/cloningFS.htm).
|
201
|
-
|
202
|
-
|
203
|
-
** IMPORTANT **
|
204
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
242
|
+
:param pulumi.Input[str] source_snapshot_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the snapshot used to create a cloned file system. See [Cloning a File System](https://docs.cloud.oracle.com/iaas/Content/File/Tasks/cloningFS.htm).
|
205
243
|
:param pulumi.Input[str] state: The current state of the file system.
|
206
244
|
:param pulumi.Input[str] time_created: The date and time the file system was created, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z`
|
207
245
|
"""
|
208
246
|
if availability_domain is not None:
|
209
247
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
248
|
+
if clone_attach_status is not None:
|
249
|
+
pulumi.set(__self__, "clone_attach_status", clone_attach_status)
|
250
|
+
if clone_count is not None:
|
251
|
+
pulumi.set(__self__, "clone_count", clone_count)
|
210
252
|
if compartment_id is not None:
|
211
253
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
212
254
|
if defined_tags is not None:
|
213
255
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
256
|
+
if detach_clone_trigger is not None:
|
257
|
+
pulumi.set(__self__, "detach_clone_trigger", detach_clone_trigger)
|
214
258
|
if display_name is not None:
|
215
259
|
pulumi.set(__self__, "display_name", display_name)
|
216
260
|
if filesystem_snapshot_policy_id is not None:
|
@@ -252,6 +296,30 @@ class _FileSystemState:
|
|
252
296
|
def availability_domain(self, value: Optional[pulumi.Input[str]]):
|
253
297
|
pulumi.set(self, "availability_domain", value)
|
254
298
|
|
299
|
+
@property
|
300
|
+
@pulumi.getter(name="cloneAttachStatus")
|
301
|
+
def clone_attach_status(self) -> Optional[pulumi.Input[str]]:
|
302
|
+
"""
|
303
|
+
Specifies whether the clone file system is attached to its parent file system. If the value is set to 'DETACH', then the file system will be created, which is deep copied from the snapshot specified by sourceSnapshotId, else will remain attached to its parent.
|
304
|
+
"""
|
305
|
+
return pulumi.get(self, "clone_attach_status")
|
306
|
+
|
307
|
+
@clone_attach_status.setter
|
308
|
+
def clone_attach_status(self, value: Optional[pulumi.Input[str]]):
|
309
|
+
pulumi.set(self, "clone_attach_status", value)
|
310
|
+
|
311
|
+
@property
|
312
|
+
@pulumi.getter(name="cloneCount")
|
313
|
+
def clone_count(self) -> Optional[pulumi.Input[int]]:
|
314
|
+
"""
|
315
|
+
Specifies the total number of children of a file system.
|
316
|
+
"""
|
317
|
+
return pulumi.get(self, "clone_count")
|
318
|
+
|
319
|
+
@clone_count.setter
|
320
|
+
def clone_count(self, value: Optional[pulumi.Input[int]]):
|
321
|
+
pulumi.set(self, "clone_count", value)
|
322
|
+
|
255
323
|
@property
|
256
324
|
@pulumi.getter(name="compartmentId")
|
257
325
|
def compartment_id(self) -> Optional[pulumi.Input[str]]:
|
@@ -276,6 +344,22 @@ class _FileSystemState:
|
|
276
344
|
def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
|
277
345
|
pulumi.set(self, "defined_tags", value)
|
278
346
|
|
347
|
+
@property
|
348
|
+
@pulumi.getter(name="detachCloneTrigger")
|
349
|
+
def detach_clone_trigger(self) -> Optional[pulumi.Input[int]]:
|
350
|
+
"""
|
351
|
+
(Updatable) An optional property when incremented triggers Detach Clone. Could be set to any integer value.
|
352
|
+
|
353
|
+
|
354
|
+
** IMPORTANT **
|
355
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
356
|
+
"""
|
357
|
+
return pulumi.get(self, "detach_clone_trigger")
|
358
|
+
|
359
|
+
@detach_clone_trigger.setter
|
360
|
+
def detach_clone_trigger(self, value: Optional[pulumi.Input[int]]):
|
361
|
+
pulumi.set(self, "detach_clone_trigger", value)
|
362
|
+
|
279
363
|
@property
|
280
364
|
@pulumi.getter(name="displayName")
|
281
365
|
def display_name(self) -> Optional[pulumi.Input[str]]:
|
@@ -414,11 +498,7 @@ class _FileSystemState:
|
|
414
498
|
@pulumi.getter(name="sourceSnapshotId")
|
415
499
|
def source_snapshot_id(self) -> Optional[pulumi.Input[str]]:
|
416
500
|
"""
|
417
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the snapshot used to create a cloned file system. See [Cloning a File System](https://docs.cloud.oracle.com/iaas/Content/File/Tasks/cloningFS.htm).
|
418
|
-
|
419
|
-
|
420
|
-
** IMPORTANT **
|
421
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
501
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the snapshot used to create a cloned file system. See [Cloning a File System](https://docs.cloud.oracle.com/iaas/Content/File/Tasks/cloningFS.htm).
|
422
502
|
"""
|
423
503
|
return pulumi.get(self, "source_snapshot_id")
|
424
504
|
|
@@ -457,8 +537,10 @@ class FileSystem(pulumi.CustomResource):
|
|
457
537
|
resource_name: str,
|
458
538
|
opts: Optional[pulumi.ResourceOptions] = None,
|
459
539
|
availability_domain: Optional[pulumi.Input[str]] = None,
|
540
|
+
clone_attach_status: Optional[pulumi.Input[str]] = None,
|
460
541
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
461
542
|
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
543
|
+
detach_clone_trigger: Optional[pulumi.Input[int]] = None,
|
462
544
|
display_name: Optional[pulumi.Input[str]] = None,
|
463
545
|
filesystem_snapshot_policy_id: Optional[pulumi.Input[str]] = None,
|
464
546
|
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
@@ -507,6 +589,7 @@ class FileSystem(pulumi.CustomResource):
|
|
507
589
|
test_file_system = oci.file_storage.FileSystem("test_file_system",
|
508
590
|
availability_domain=file_system_availability_domain,
|
509
591
|
compartment_id=compartment_id,
|
592
|
+
clone_attach_status=file_system_clone_attach_status,
|
510
593
|
defined_tags={
|
511
594
|
"Operations.CostCenter": "42",
|
512
595
|
},
|
@@ -530,19 +613,21 @@ class FileSystem(pulumi.CustomResource):
|
|
530
613
|
:param str resource_name: The name of the resource.
|
531
614
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
532
615
|
:param pulumi.Input[str] availability_domain: The availability domain to create the file system in. Example: `Uocm:PHX-AD-1`
|
616
|
+
:param pulumi.Input[str] clone_attach_status: Specifies whether the clone file system is attached to its parent file system. If the value is set to 'DETACH', then the file system will be created, which is deep copied from the snapshot specified by sourceSnapshotId, else will remain attached to its parent.
|
533
617
|
:param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment to create the file system in.
|
534
618
|
:param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
619
|
+
:param pulumi.Input[int] detach_clone_trigger: (Updatable) An optional property when incremented triggers Detach Clone. Could be set to any integer value.
|
620
|
+
|
621
|
+
|
622
|
+
** IMPORTANT **
|
623
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
535
624
|
:param pulumi.Input[str] display_name: (Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: `My file system`
|
536
625
|
:param pulumi.Input[str] filesystem_snapshot_policy_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the associated file system snapshot policy, which controls the frequency of snapshot creation and retention period of the taken snapshots.
|
537
626
|
|
538
627
|
May be unset as a blank value.
|
539
628
|
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (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](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
540
629
|
:param pulumi.Input[str] kms_key_id: (Updatable) The OCID of KMS key used to encrypt the encryption keys associated with this file system. May be unset as a blank or deleted from the configuration to remove the KMS key.
|
541
|
-
:param pulumi.Input[str] source_snapshot_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the snapshot used to create a cloned file system. See [Cloning a File System](https://docs.cloud.oracle.com/iaas/Content/File/Tasks/cloningFS.htm).
|
542
|
-
|
543
|
-
|
544
|
-
** IMPORTANT **
|
545
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
630
|
+
:param pulumi.Input[str] source_snapshot_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the snapshot used to create a cloned file system. See [Cloning a File System](https://docs.cloud.oracle.com/iaas/Content/File/Tasks/cloningFS.htm).
|
546
631
|
"""
|
547
632
|
...
|
548
633
|
@overload
|
@@ -592,6 +677,7 @@ class FileSystem(pulumi.CustomResource):
|
|
592
677
|
test_file_system = oci.file_storage.FileSystem("test_file_system",
|
593
678
|
availability_domain=file_system_availability_domain,
|
594
679
|
compartment_id=compartment_id,
|
680
|
+
clone_attach_status=file_system_clone_attach_status,
|
595
681
|
defined_tags={
|
596
682
|
"Operations.CostCenter": "42",
|
597
683
|
},
|
@@ -628,8 +714,10 @@ class FileSystem(pulumi.CustomResource):
|
|
628
714
|
resource_name: str,
|
629
715
|
opts: Optional[pulumi.ResourceOptions] = None,
|
630
716
|
availability_domain: Optional[pulumi.Input[str]] = None,
|
717
|
+
clone_attach_status: Optional[pulumi.Input[str]] = None,
|
631
718
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
632
719
|
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
720
|
+
detach_clone_trigger: Optional[pulumi.Input[int]] = None,
|
633
721
|
display_name: Optional[pulumi.Input[str]] = None,
|
634
722
|
filesystem_snapshot_policy_id: Optional[pulumi.Input[str]] = None,
|
635
723
|
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
@@ -647,15 +735,18 @@ class FileSystem(pulumi.CustomResource):
|
|
647
735
|
if availability_domain is None and not opts.urn:
|
648
736
|
raise TypeError("Missing required property 'availability_domain'")
|
649
737
|
__props__.__dict__["availability_domain"] = availability_domain
|
738
|
+
__props__.__dict__["clone_attach_status"] = clone_attach_status
|
650
739
|
if compartment_id is None and not opts.urn:
|
651
740
|
raise TypeError("Missing required property 'compartment_id'")
|
652
741
|
__props__.__dict__["compartment_id"] = compartment_id
|
653
742
|
__props__.__dict__["defined_tags"] = defined_tags
|
743
|
+
__props__.__dict__["detach_clone_trigger"] = detach_clone_trigger
|
654
744
|
__props__.__dict__["display_name"] = display_name
|
655
745
|
__props__.__dict__["filesystem_snapshot_policy_id"] = filesystem_snapshot_policy_id
|
656
746
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
657
747
|
__props__.__dict__["kms_key_id"] = kms_key_id
|
658
748
|
__props__.__dict__["source_snapshot_id"] = source_snapshot_id
|
749
|
+
__props__.__dict__["clone_count"] = None
|
659
750
|
__props__.__dict__["is_clone_parent"] = None
|
660
751
|
__props__.__dict__["is_hydrated"] = None
|
661
752
|
__props__.__dict__["is_targetable"] = None
|
@@ -676,8 +767,11 @@ class FileSystem(pulumi.CustomResource):
|
|
676
767
|
id: pulumi.Input[str],
|
677
768
|
opts: Optional[pulumi.ResourceOptions] = None,
|
678
769
|
availability_domain: Optional[pulumi.Input[str]] = None,
|
770
|
+
clone_attach_status: Optional[pulumi.Input[str]] = None,
|
771
|
+
clone_count: Optional[pulumi.Input[int]] = None,
|
679
772
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
680
773
|
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
774
|
+
detach_clone_trigger: Optional[pulumi.Input[int]] = None,
|
681
775
|
display_name: Optional[pulumi.Input[str]] = None,
|
682
776
|
filesystem_snapshot_policy_id: Optional[pulumi.Input[str]] = None,
|
683
777
|
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
@@ -700,8 +794,15 @@ class FileSystem(pulumi.CustomResource):
|
|
700
794
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
701
795
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
702
796
|
:param pulumi.Input[str] availability_domain: The availability domain to create the file system in. Example: `Uocm:PHX-AD-1`
|
797
|
+
:param pulumi.Input[str] clone_attach_status: Specifies whether the clone file system is attached to its parent file system. If the value is set to 'DETACH', then the file system will be created, which is deep copied from the snapshot specified by sourceSnapshotId, else will remain attached to its parent.
|
798
|
+
:param pulumi.Input[int] clone_count: Specifies the total number of children of a file system.
|
703
799
|
:param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment to create the file system in.
|
704
800
|
:param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
801
|
+
:param pulumi.Input[int] detach_clone_trigger: (Updatable) An optional property when incremented triggers Detach Clone. Could be set to any integer value.
|
802
|
+
|
803
|
+
|
804
|
+
** IMPORTANT **
|
805
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
705
806
|
:param pulumi.Input[str] display_name: (Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: `My file system`
|
706
807
|
:param pulumi.Input[str] filesystem_snapshot_policy_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the associated file system snapshot policy, which controls the frequency of snapshot creation and retention period of the taken snapshots.
|
707
808
|
|
@@ -715,11 +816,7 @@ class FileSystem(pulumi.CustomResource):
|
|
715
816
|
:param pulumi.Input[str] metered_bytes: The number of bytes consumed by the file system, including any snapshots. This number reflects the metered size of the file system and is updated asynchronously with respect to updates to the file system. For more information, see [File System Usage and Metering](https://docs.cloud.oracle.com/iaas/Content/File/Concepts/FSutilization.htm).
|
716
817
|
:param pulumi.Input[str] replication_target_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the replication target associated with the file system. Empty if the file system is not being used as target in a replication.
|
717
818
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['FileSystemSourceDetailArgs']]]] source_details: Source information for the file system.
|
718
|
-
:param pulumi.Input[str] source_snapshot_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the snapshot used to create a cloned file system. See [Cloning a File System](https://docs.cloud.oracle.com/iaas/Content/File/Tasks/cloningFS.htm).
|
719
|
-
|
720
|
-
|
721
|
-
** IMPORTANT **
|
722
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
819
|
+
:param pulumi.Input[str] source_snapshot_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the snapshot used to create a cloned file system. See [Cloning a File System](https://docs.cloud.oracle.com/iaas/Content/File/Tasks/cloningFS.htm).
|
723
820
|
:param pulumi.Input[str] state: The current state of the file system.
|
724
821
|
:param pulumi.Input[str] time_created: The date and time the file system was created, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z`
|
725
822
|
"""
|
@@ -728,8 +825,11 @@ class FileSystem(pulumi.CustomResource):
|
|
728
825
|
__props__ = _FileSystemState.__new__(_FileSystemState)
|
729
826
|
|
730
827
|
__props__.__dict__["availability_domain"] = availability_domain
|
828
|
+
__props__.__dict__["clone_attach_status"] = clone_attach_status
|
829
|
+
__props__.__dict__["clone_count"] = clone_count
|
731
830
|
__props__.__dict__["compartment_id"] = compartment_id
|
732
831
|
__props__.__dict__["defined_tags"] = defined_tags
|
832
|
+
__props__.__dict__["detach_clone_trigger"] = detach_clone_trigger
|
733
833
|
__props__.__dict__["display_name"] = display_name
|
734
834
|
__props__.__dict__["filesystem_snapshot_policy_id"] = filesystem_snapshot_policy_id
|
735
835
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
@@ -754,6 +854,22 @@ class FileSystem(pulumi.CustomResource):
|
|
754
854
|
"""
|
755
855
|
return pulumi.get(self, "availability_domain")
|
756
856
|
|
857
|
+
@property
|
858
|
+
@pulumi.getter(name="cloneAttachStatus")
|
859
|
+
def clone_attach_status(self) -> pulumi.Output[str]:
|
860
|
+
"""
|
861
|
+
Specifies whether the clone file system is attached to its parent file system. If the value is set to 'DETACH', then the file system will be created, which is deep copied from the snapshot specified by sourceSnapshotId, else will remain attached to its parent.
|
862
|
+
"""
|
863
|
+
return pulumi.get(self, "clone_attach_status")
|
864
|
+
|
865
|
+
@property
|
866
|
+
@pulumi.getter(name="cloneCount")
|
867
|
+
def clone_count(self) -> pulumi.Output[int]:
|
868
|
+
"""
|
869
|
+
Specifies the total number of children of a file system.
|
870
|
+
"""
|
871
|
+
return pulumi.get(self, "clone_count")
|
872
|
+
|
757
873
|
@property
|
758
874
|
@pulumi.getter(name="compartmentId")
|
759
875
|
def compartment_id(self) -> pulumi.Output[str]:
|
@@ -770,6 +886,18 @@ class FileSystem(pulumi.CustomResource):
|
|
770
886
|
"""
|
771
887
|
return pulumi.get(self, "defined_tags")
|
772
888
|
|
889
|
+
@property
|
890
|
+
@pulumi.getter(name="detachCloneTrigger")
|
891
|
+
def detach_clone_trigger(self) -> pulumi.Output[Optional[int]]:
|
892
|
+
"""
|
893
|
+
(Updatable) An optional property when incremented triggers Detach Clone. Could be set to any integer value.
|
894
|
+
|
895
|
+
|
896
|
+
** IMPORTANT **
|
897
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
898
|
+
"""
|
899
|
+
return pulumi.get(self, "detach_clone_trigger")
|
900
|
+
|
773
901
|
@property
|
774
902
|
@pulumi.getter(name="displayName")
|
775
903
|
def display_name(self) -> pulumi.Output[str]:
|
@@ -864,11 +992,7 @@ class FileSystem(pulumi.CustomResource):
|
|
864
992
|
@pulumi.getter(name="sourceSnapshotId")
|
865
993
|
def source_snapshot_id(self) -> pulumi.Output[str]:
|
866
994
|
"""
|
867
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the snapshot used to create a cloned file system. See [Cloning a File System](https://docs.cloud.oracle.com/iaas/Content/File/Tasks/cloningFS.htm).
|
868
|
-
|
869
|
-
|
870
|
-
** IMPORTANT **
|
871
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
995
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the snapshot used to create a cloned file system. See [Cloning a File System](https://docs.cloud.oracle.com/iaas/Content/File/Tasks/cloningFS.htm).
|
872
996
|
"""
|
873
997
|
return pulumi.get(self, "source_snapshot_id")
|
874
998
|
|