pulumi-oci 2.14.0__py3-none-any.whl → 2.14.0a1730182164__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/core/_inputs.py +0 -74
- pulumi_oci/core/get_instance.py +1 -1
- pulumi_oci/core/get_virtual_circuit.py +4 -18
- pulumi_oci/core/instance.py +7 -7
- pulumi_oci/core/outputs.py +7 -165
- pulumi_oci/core/virtual_circuit.py +2 -30
- pulumi_oci/database/_inputs.py +0 -642
- pulumi_oci/database/autonomous_container_database.py +14 -14
- pulumi_oci/database/autonomous_database.py +0 -75
- pulumi_oci/database/get_autonomous_container_database.py +3 -3
- pulumi_oci/database/get_autonomous_database.py +1 -29
- pulumi_oci/database/get_autonomous_databases.py +28 -22
- pulumi_oci/database/outputs.py +89 -1672
- pulumi_oci/datascience/_inputs.py +0 -353
- pulumi_oci/datascience/get_model.py +1 -85
- pulumi_oci/datascience/get_models.py +0 -5
- pulumi_oci/datascience/model.py +66 -206
- pulumi_oci/datascience/outputs.py +0 -759
- pulumi_oci/filestorage/_inputs.py +0 -651
- pulumi_oci/filestorage/export.py +3 -96
- pulumi_oci/filestorage/file_system.py +0 -93
- pulumi_oci/filestorage/filesystem_snapshot_policy.py +0 -93
- pulumi_oci/filestorage/get_filesystem_snapshot_policy.py +1 -26
- pulumi_oci/filestorage/get_outbound_connector.py +1 -26
- pulumi_oci/filestorage/get_replication.py +1 -27
- pulumi_oci/filestorage/get_snapshot.py +1 -27
- pulumi_oci/filestorage/mount_target.py +0 -108
- pulumi_oci/filestorage/outbound_connector.py +0 -93
- pulumi_oci/filestorage/outputs.py +9 -1225
- pulumi_oci/filestorage/replication.py +0 -95
- pulumi_oci/filestorage/snapshot.py +2 -97
- pulumi_oci/networkloadbalancer/get_network_load_balancer.py +1 -15
- pulumi_oci/networkloadbalancer/network_load_balancer.py +0 -47
- pulumi_oci/networkloadbalancer/outputs.py +0 -11
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-2.14.0.dist-info → pulumi_oci-2.14.0a1730182164.dist-info}/METADATA +1 -1
- {pulumi_oci-2.14.0.dist-info → pulumi_oci-2.14.0a1730182164.dist-info}/RECORD +39 -39
- {pulumi_oci-2.14.0.dist-info → pulumi_oci-2.14.0a1730182164.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.14.0.dist-info → pulumi_oci-2.14.0a1730182164.dist-info}/top_level.txt +0 -0
pulumi_oci/filestorage/export.py
CHANGED
@@ -25,9 +25,7 @@ class ExportArgs:
|
|
25
25
|
file_system_id: pulumi.Input[str],
|
26
26
|
path: pulumi.Input[str],
|
27
27
|
export_options: Optional[pulumi.Input[Sequence[pulumi.Input['ExportExportOptionArgs']]]] = None,
|
28
|
-
is_idmap_groups_for_sys_auth: Optional[pulumi.Input[bool]] = None
|
29
|
-
is_lock_override: Optional[pulumi.Input[bool]] = None,
|
30
|
-
locks: Optional[pulumi.Input[Sequence[pulumi.Input['ExportLockArgs']]]] = None):
|
28
|
+
is_idmap_groups_for_sys_auth: Optional[pulumi.Input[bool]] = None):
|
31
29
|
"""
|
32
30
|
The set of arguments for constructing a Export resource.
|
33
31
|
:param pulumi.Input[str] export_set_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of this export's export set.
|
@@ -53,7 +51,6 @@ class ExportArgs:
|
|
53
51
|
|
54
52
|
The export's `exportOptions` can be changed after creation using the `UpdateExport` operation.
|
55
53
|
:param pulumi.Input[bool] is_idmap_groups_for_sys_auth: (Updatable) Whether or not the export should use ID mapping for Unix groups rather than the group list provided within an NFS request's RPC header. When this flag is true the Unix UID from the RPC header is used to retrieve the list of secondary groups from a the ID mapping subsystem. The primary GID is always taken from the RPC header. If ID mapping is not configured, incorrectly configured, unavailable, or cannot be used to determine a list of secondary groups then an empty secondary group list is used for authorization. If the number of groups exceeds the limit of 256 groups, the list retrieved from LDAP is truncated to the first 256 groups read.
|
56
|
-
:param pulumi.Input[Sequence[pulumi.Input['ExportLockArgs']]] locks: Locks associated with this resource.
|
57
54
|
"""
|
58
55
|
pulumi.set(__self__, "export_set_id", export_set_id)
|
59
56
|
pulumi.set(__self__, "file_system_id", file_system_id)
|
@@ -62,10 +59,6 @@ class ExportArgs:
|
|
62
59
|
pulumi.set(__self__, "export_options", export_options)
|
63
60
|
if is_idmap_groups_for_sys_auth is not None:
|
64
61
|
pulumi.set(__self__, "is_idmap_groups_for_sys_auth", is_idmap_groups_for_sys_auth)
|
65
|
-
if is_lock_override is not None:
|
66
|
-
pulumi.set(__self__, "is_lock_override", is_lock_override)
|
67
|
-
if locks is not None:
|
68
|
-
pulumi.set(__self__, "locks", locks)
|
69
62
|
|
70
63
|
@property
|
71
64
|
@pulumi.getter(name="exportSetId")
|
@@ -145,27 +138,6 @@ class ExportArgs:
|
|
145
138
|
def is_idmap_groups_for_sys_auth(self, value: Optional[pulumi.Input[bool]]):
|
146
139
|
pulumi.set(self, "is_idmap_groups_for_sys_auth", value)
|
147
140
|
|
148
|
-
@property
|
149
|
-
@pulumi.getter(name="isLockOverride")
|
150
|
-
def is_lock_override(self) -> Optional[pulumi.Input[bool]]:
|
151
|
-
return pulumi.get(self, "is_lock_override")
|
152
|
-
|
153
|
-
@is_lock_override.setter
|
154
|
-
def is_lock_override(self, value: Optional[pulumi.Input[bool]]):
|
155
|
-
pulumi.set(self, "is_lock_override", value)
|
156
|
-
|
157
|
-
@property
|
158
|
-
@pulumi.getter
|
159
|
-
def locks(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ExportLockArgs']]]]:
|
160
|
-
"""
|
161
|
-
Locks associated with this resource.
|
162
|
-
"""
|
163
|
-
return pulumi.get(self, "locks")
|
164
|
-
|
165
|
-
@locks.setter
|
166
|
-
def locks(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ExportLockArgs']]]]):
|
167
|
-
pulumi.set(self, "locks", value)
|
168
|
-
|
169
141
|
|
170
142
|
@pulumi.input_type
|
171
143
|
class _ExportState:
|
@@ -174,8 +146,6 @@ class _ExportState:
|
|
174
146
|
export_set_id: Optional[pulumi.Input[str]] = None,
|
175
147
|
file_system_id: Optional[pulumi.Input[str]] = None,
|
176
148
|
is_idmap_groups_for_sys_auth: Optional[pulumi.Input[bool]] = None,
|
177
|
-
is_lock_override: Optional[pulumi.Input[bool]] = None,
|
178
|
-
locks: Optional[pulumi.Input[Sequence[pulumi.Input['ExportLockArgs']]]] = None,
|
179
149
|
path: Optional[pulumi.Input[str]] = None,
|
180
150
|
state: Optional[pulumi.Input[str]] = None,
|
181
151
|
time_created: Optional[pulumi.Input[str]] = None):
|
@@ -195,7 +165,6 @@ class _ExportState:
|
|
195
165
|
:param pulumi.Input[str] export_set_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of this export's export set.
|
196
166
|
:param pulumi.Input[str] file_system_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of this export's file system.
|
197
167
|
:param pulumi.Input[bool] is_idmap_groups_for_sys_auth: (Updatable) Whether or not the export should use ID mapping for Unix groups rather than the group list provided within an NFS request's RPC header. When this flag is true the Unix UID from the RPC header is used to retrieve the list of secondary groups from a the ID mapping subsystem. The primary GID is always taken from the RPC header. If ID mapping is not configured, incorrectly configured, unavailable, or cannot be used to determine a list of secondary groups then an empty secondary group list is used for authorization. If the number of groups exceeds the limit of 256 groups, the list retrieved from LDAP is truncated to the first 256 groups read.
|
198
|
-
:param pulumi.Input[Sequence[pulumi.Input['ExportLockArgs']]] locks: Locks associated with this resource.
|
199
168
|
:param pulumi.Input[str] path: Path used to access the associated file system.
|
200
169
|
|
201
170
|
Avoid entering confidential information.
|
@@ -216,10 +185,6 @@ class _ExportState:
|
|
216
185
|
pulumi.set(__self__, "file_system_id", file_system_id)
|
217
186
|
if is_idmap_groups_for_sys_auth is not None:
|
218
187
|
pulumi.set(__self__, "is_idmap_groups_for_sys_auth", is_idmap_groups_for_sys_auth)
|
219
|
-
if is_lock_override is not None:
|
220
|
-
pulumi.set(__self__, "is_lock_override", is_lock_override)
|
221
|
-
if locks is not None:
|
222
|
-
pulumi.set(__self__, "locks", locks)
|
223
188
|
if path is not None:
|
224
189
|
pulumi.set(__self__, "path", path)
|
225
190
|
if state is not None:
|
@@ -285,27 +250,6 @@ class _ExportState:
|
|
285
250
|
def is_idmap_groups_for_sys_auth(self, value: Optional[pulumi.Input[bool]]):
|
286
251
|
pulumi.set(self, "is_idmap_groups_for_sys_auth", value)
|
287
252
|
|
288
|
-
@property
|
289
|
-
@pulumi.getter(name="isLockOverride")
|
290
|
-
def is_lock_override(self) -> Optional[pulumi.Input[bool]]:
|
291
|
-
return pulumi.get(self, "is_lock_override")
|
292
|
-
|
293
|
-
@is_lock_override.setter
|
294
|
-
def is_lock_override(self, value: Optional[pulumi.Input[bool]]):
|
295
|
-
pulumi.set(self, "is_lock_override", value)
|
296
|
-
|
297
|
-
@property
|
298
|
-
@pulumi.getter
|
299
|
-
def locks(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ExportLockArgs']]]]:
|
300
|
-
"""
|
301
|
-
Locks associated with this resource.
|
302
|
-
"""
|
303
|
-
return pulumi.get(self, "locks")
|
304
|
-
|
305
|
-
@locks.setter
|
306
|
-
def locks(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ExportLockArgs']]]]):
|
307
|
-
pulumi.set(self, "locks", value)
|
308
|
-
|
309
253
|
@property
|
310
254
|
@pulumi.getter
|
311
255
|
def path(self) -> Optional[pulumi.Input[str]]:
|
@@ -360,8 +304,6 @@ class Export(pulumi.CustomResource):
|
|
360
304
|
export_set_id: Optional[pulumi.Input[str]] = None,
|
361
305
|
file_system_id: Optional[pulumi.Input[str]] = None,
|
362
306
|
is_idmap_groups_for_sys_auth: Optional[pulumi.Input[bool]] = None,
|
363
|
-
is_lock_override: Optional[pulumi.Input[bool]] = None,
|
364
|
-
locks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ExportLockArgs', 'ExportLockArgsDict']]]]] = None,
|
365
307
|
path: Optional[pulumi.Input[str]] = None,
|
366
308
|
__props__=None):
|
367
309
|
"""
|
@@ -390,13 +332,7 @@ class Export(pulumi.CustomResource):
|
|
390
332
|
"is_anonymous_access_allowed": export_export_options_is_anonymous_access_allowed,
|
391
333
|
"require_privileged_source_port": export_export_options_require_privileged_source_port,
|
392
334
|
}],
|
393
|
-
is_idmap_groups_for_sys_auth=export_is_idmap_groups_for_sys_auth
|
394
|
-
locks=[{
|
395
|
-
"type": export_locks_type,
|
396
|
-
"message": export_locks_message,
|
397
|
-
"related_resource_id": test_resource["id"],
|
398
|
-
"time_created": export_locks_time_created,
|
399
|
-
}])
|
335
|
+
is_idmap_groups_for_sys_auth=export_is_idmap_groups_for_sys_auth)
|
400
336
|
```
|
401
337
|
|
402
338
|
## Import
|
@@ -423,7 +359,6 @@ class Export(pulumi.CustomResource):
|
|
423
359
|
:param pulumi.Input[str] export_set_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of this export's export set.
|
424
360
|
:param pulumi.Input[str] file_system_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of this export's file system.
|
425
361
|
:param pulumi.Input[bool] is_idmap_groups_for_sys_auth: (Updatable) Whether or not the export should use ID mapping for Unix groups rather than the group list provided within an NFS request's RPC header. When this flag is true the Unix UID from the RPC header is used to retrieve the list of secondary groups from a the ID mapping subsystem. The primary GID is always taken from the RPC header. If ID mapping is not configured, incorrectly configured, unavailable, or cannot be used to determine a list of secondary groups then an empty secondary group list is used for authorization. If the number of groups exceeds the limit of 256 groups, the list retrieved from LDAP is truncated to the first 256 groups read.
|
426
|
-
:param pulumi.Input[Sequence[pulumi.Input[Union['ExportLockArgs', 'ExportLockArgsDict']]]] locks: Locks associated with this resource.
|
427
362
|
:param pulumi.Input[str] path: Path used to access the associated file system.
|
428
363
|
|
429
364
|
Avoid entering confidential information.
|
@@ -466,13 +401,7 @@ class Export(pulumi.CustomResource):
|
|
466
401
|
"is_anonymous_access_allowed": export_export_options_is_anonymous_access_allowed,
|
467
402
|
"require_privileged_source_port": export_export_options_require_privileged_source_port,
|
468
403
|
}],
|
469
|
-
is_idmap_groups_for_sys_auth=export_is_idmap_groups_for_sys_auth
|
470
|
-
locks=[{
|
471
|
-
"type": export_locks_type,
|
472
|
-
"message": export_locks_message,
|
473
|
-
"related_resource_id": test_resource["id"],
|
474
|
-
"time_created": export_locks_time_created,
|
475
|
-
}])
|
404
|
+
is_idmap_groups_for_sys_auth=export_is_idmap_groups_for_sys_auth)
|
476
405
|
```
|
477
406
|
|
478
407
|
## Import
|
@@ -502,8 +431,6 @@ class Export(pulumi.CustomResource):
|
|
502
431
|
export_set_id: Optional[pulumi.Input[str]] = None,
|
503
432
|
file_system_id: Optional[pulumi.Input[str]] = None,
|
504
433
|
is_idmap_groups_for_sys_auth: Optional[pulumi.Input[bool]] = None,
|
505
|
-
is_lock_override: Optional[pulumi.Input[bool]] = None,
|
506
|
-
locks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ExportLockArgs', 'ExportLockArgsDict']]]]] = None,
|
507
434
|
path: Optional[pulumi.Input[str]] = None,
|
508
435
|
__props__=None):
|
509
436
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
@@ -522,8 +449,6 @@ class Export(pulumi.CustomResource):
|
|
522
449
|
raise TypeError("Missing required property 'file_system_id'")
|
523
450
|
__props__.__dict__["file_system_id"] = file_system_id
|
524
451
|
__props__.__dict__["is_idmap_groups_for_sys_auth"] = is_idmap_groups_for_sys_auth
|
525
|
-
__props__.__dict__["is_lock_override"] = is_lock_override
|
526
|
-
__props__.__dict__["locks"] = locks
|
527
452
|
if path is None and not opts.urn:
|
528
453
|
raise TypeError("Missing required property 'path'")
|
529
454
|
__props__.__dict__["path"] = path
|
@@ -543,8 +468,6 @@ class Export(pulumi.CustomResource):
|
|
543
468
|
export_set_id: Optional[pulumi.Input[str]] = None,
|
544
469
|
file_system_id: Optional[pulumi.Input[str]] = None,
|
545
470
|
is_idmap_groups_for_sys_auth: Optional[pulumi.Input[bool]] = None,
|
546
|
-
is_lock_override: Optional[pulumi.Input[bool]] = None,
|
547
|
-
locks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ExportLockArgs', 'ExportLockArgsDict']]]]] = None,
|
548
471
|
path: Optional[pulumi.Input[str]] = None,
|
549
472
|
state: Optional[pulumi.Input[str]] = None,
|
550
473
|
time_created: Optional[pulumi.Input[str]] = None) -> 'Export':
|
@@ -569,7 +492,6 @@ class Export(pulumi.CustomResource):
|
|
569
492
|
:param pulumi.Input[str] export_set_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of this export's export set.
|
570
493
|
:param pulumi.Input[str] file_system_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of this export's file system.
|
571
494
|
:param pulumi.Input[bool] is_idmap_groups_for_sys_auth: (Updatable) Whether or not the export should use ID mapping for Unix groups rather than the group list provided within an NFS request's RPC header. When this flag is true the Unix UID from the RPC header is used to retrieve the list of secondary groups from a the ID mapping subsystem. The primary GID is always taken from the RPC header. If ID mapping is not configured, incorrectly configured, unavailable, or cannot be used to determine a list of secondary groups then an empty secondary group list is used for authorization. If the number of groups exceeds the limit of 256 groups, the list retrieved from LDAP is truncated to the first 256 groups read.
|
572
|
-
:param pulumi.Input[Sequence[pulumi.Input[Union['ExportLockArgs', 'ExportLockArgsDict']]]] locks: Locks associated with this resource.
|
573
495
|
:param pulumi.Input[str] path: Path used to access the associated file system.
|
574
496
|
|
575
497
|
Avoid entering confidential information.
|
@@ -590,8 +512,6 @@ class Export(pulumi.CustomResource):
|
|
590
512
|
__props__.__dict__["export_set_id"] = export_set_id
|
591
513
|
__props__.__dict__["file_system_id"] = file_system_id
|
592
514
|
__props__.__dict__["is_idmap_groups_for_sys_auth"] = is_idmap_groups_for_sys_auth
|
593
|
-
__props__.__dict__["is_lock_override"] = is_lock_override
|
594
|
-
__props__.__dict__["locks"] = locks
|
595
515
|
__props__.__dict__["path"] = path
|
596
516
|
__props__.__dict__["state"] = state
|
597
517
|
__props__.__dict__["time_created"] = time_created
|
@@ -639,19 +559,6 @@ class Export(pulumi.CustomResource):
|
|
639
559
|
"""
|
640
560
|
return pulumi.get(self, "is_idmap_groups_for_sys_auth")
|
641
561
|
|
642
|
-
@property
|
643
|
-
@pulumi.getter(name="isLockOverride")
|
644
|
-
def is_lock_override(self) -> pulumi.Output[bool]:
|
645
|
-
return pulumi.get(self, "is_lock_override")
|
646
|
-
|
647
|
-
@property
|
648
|
-
@pulumi.getter
|
649
|
-
def locks(self) -> pulumi.Output[Sequence['outputs.ExportLock']]:
|
650
|
-
"""
|
651
|
-
Locks associated with this resource.
|
652
|
-
"""
|
653
|
-
return pulumi.get(self, "locks")
|
654
|
-
|
655
562
|
@property
|
656
563
|
@pulumi.getter
|
657
564
|
def path(self) -> pulumi.Output[str]:
|
@@ -29,9 +29,7 @@ class FileSystemArgs:
|
|
29
29
|
display_name: Optional[pulumi.Input[str]] = None,
|
30
30
|
filesystem_snapshot_policy_id: Optional[pulumi.Input[str]] = None,
|
31
31
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
32
|
-
is_lock_override: Optional[pulumi.Input[bool]] = None,
|
33
32
|
kms_key_id: Optional[pulumi.Input[str]] = None,
|
34
|
-
locks: Optional[pulumi.Input[Sequence[pulumi.Input['FileSystemLockArgs']]]] = None,
|
35
33
|
source_snapshot_id: Optional[pulumi.Input[str]] = None):
|
36
34
|
"""
|
37
35
|
The set of arguments for constructing a FileSystem resource.
|
@@ -50,7 +48,6 @@ class FileSystemArgs:
|
|
50
48
|
May be unset as a blank value.
|
51
49
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] 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"}`
|
52
50
|
: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.
|
53
|
-
:param pulumi.Input[Sequence[pulumi.Input['FileSystemLockArgs']]] locks: Locks associated with this resource.
|
54
51
|
: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).
|
55
52
|
"""
|
56
53
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
@@ -67,12 +64,8 @@ class FileSystemArgs:
|
|
67
64
|
pulumi.set(__self__, "filesystem_snapshot_policy_id", filesystem_snapshot_policy_id)
|
68
65
|
if freeform_tags is not None:
|
69
66
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
70
|
-
if is_lock_override is not None:
|
71
|
-
pulumi.set(__self__, "is_lock_override", is_lock_override)
|
72
67
|
if kms_key_id is not None:
|
73
68
|
pulumi.set(__self__, "kms_key_id", kms_key_id)
|
74
|
-
if locks is not None:
|
75
|
-
pulumi.set(__self__, "locks", locks)
|
76
69
|
if source_snapshot_id is not None:
|
77
70
|
pulumi.set(__self__, "source_snapshot_id", source_snapshot_id)
|
78
71
|
|
@@ -178,15 +171,6 @@ class FileSystemArgs:
|
|
178
171
|
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
179
172
|
pulumi.set(self, "freeform_tags", value)
|
180
173
|
|
181
|
-
@property
|
182
|
-
@pulumi.getter(name="isLockOverride")
|
183
|
-
def is_lock_override(self) -> Optional[pulumi.Input[bool]]:
|
184
|
-
return pulumi.get(self, "is_lock_override")
|
185
|
-
|
186
|
-
@is_lock_override.setter
|
187
|
-
def is_lock_override(self, value: Optional[pulumi.Input[bool]]):
|
188
|
-
pulumi.set(self, "is_lock_override", value)
|
189
|
-
|
190
174
|
@property
|
191
175
|
@pulumi.getter(name="kmsKeyId")
|
192
176
|
def kms_key_id(self) -> Optional[pulumi.Input[str]]:
|
@@ -199,18 +183,6 @@ class FileSystemArgs:
|
|
199
183
|
def kms_key_id(self, value: Optional[pulumi.Input[str]]):
|
200
184
|
pulumi.set(self, "kms_key_id", value)
|
201
185
|
|
202
|
-
@property
|
203
|
-
@pulumi.getter
|
204
|
-
def locks(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['FileSystemLockArgs']]]]:
|
205
|
-
"""
|
206
|
-
Locks associated with this resource.
|
207
|
-
"""
|
208
|
-
return pulumi.get(self, "locks")
|
209
|
-
|
210
|
-
@locks.setter
|
211
|
-
def locks(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['FileSystemLockArgs']]]]):
|
212
|
-
pulumi.set(self, "locks", value)
|
213
|
-
|
214
186
|
@property
|
215
187
|
@pulumi.getter(name="sourceSnapshotId")
|
216
188
|
def source_snapshot_id(self) -> Optional[pulumi.Input[str]]:
|
@@ -238,11 +210,9 @@ class _FileSystemState:
|
|
238
210
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
239
211
|
is_clone_parent: Optional[pulumi.Input[bool]] = None,
|
240
212
|
is_hydrated: Optional[pulumi.Input[bool]] = None,
|
241
|
-
is_lock_override: Optional[pulumi.Input[bool]] = None,
|
242
213
|
is_targetable: Optional[pulumi.Input[bool]] = None,
|
243
214
|
kms_key_id: Optional[pulumi.Input[str]] = None,
|
244
215
|
lifecycle_details: Optional[pulumi.Input[str]] = None,
|
245
|
-
locks: Optional[pulumi.Input[Sequence[pulumi.Input['FileSystemLockArgs']]]] = None,
|
246
216
|
metered_bytes: Optional[pulumi.Input[str]] = None,
|
247
217
|
replication_target_id: Optional[pulumi.Input[str]] = None,
|
248
218
|
source_details: Optional[pulumi.Input[Sequence[pulumi.Input['FileSystemSourceDetailArgs']]]] = None,
|
@@ -271,7 +241,6 @@ class _FileSystemState:
|
|
271
241
|
:param pulumi.Input[bool] is_targetable: Specifies whether the file system can be used as a target file system for replication. The system sets this value to `true` if the file system is unexported, hasn't yet been specified as a target file system in any replication resource, and has no user snapshots. After the file system has been specified as a target in a replication, or if the file system contains user snapshots, the system sets this value to `false`. For more information, see [Using Replication](https://docs.cloud.oracle.com/iaas/Content/File/Tasks/using-replication.htm).
|
272
242
|
: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.
|
273
243
|
:param pulumi.Input[str] lifecycle_details: Additional information about the current 'lifecycleState'.
|
274
|
-
:param pulumi.Input[Sequence[pulumi.Input['FileSystemLockArgs']]] locks: Locks associated with this resource.
|
275
244
|
: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).
|
276
245
|
: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.
|
277
246
|
:param pulumi.Input[Sequence[pulumi.Input['FileSystemSourceDetailArgs']]] source_details: Source information for the file system.
|
@@ -301,16 +270,12 @@ class _FileSystemState:
|
|
301
270
|
pulumi.set(__self__, "is_clone_parent", is_clone_parent)
|
302
271
|
if is_hydrated is not None:
|
303
272
|
pulumi.set(__self__, "is_hydrated", is_hydrated)
|
304
|
-
if is_lock_override is not None:
|
305
|
-
pulumi.set(__self__, "is_lock_override", is_lock_override)
|
306
273
|
if is_targetable is not None:
|
307
274
|
pulumi.set(__self__, "is_targetable", is_targetable)
|
308
275
|
if kms_key_id is not None:
|
309
276
|
pulumi.set(__self__, "kms_key_id", kms_key_id)
|
310
277
|
if lifecycle_details is not None:
|
311
278
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
312
|
-
if locks is not None:
|
313
|
-
pulumi.set(__self__, "locks", locks)
|
314
279
|
if metered_bytes is not None:
|
315
280
|
pulumi.set(__self__, "metered_bytes", metered_bytes)
|
316
281
|
if replication_target_id is not None:
|
@@ -462,15 +427,6 @@ class _FileSystemState:
|
|
462
427
|
def is_hydrated(self, value: Optional[pulumi.Input[bool]]):
|
463
428
|
pulumi.set(self, "is_hydrated", value)
|
464
429
|
|
465
|
-
@property
|
466
|
-
@pulumi.getter(name="isLockOverride")
|
467
|
-
def is_lock_override(self) -> Optional[pulumi.Input[bool]]:
|
468
|
-
return pulumi.get(self, "is_lock_override")
|
469
|
-
|
470
|
-
@is_lock_override.setter
|
471
|
-
def is_lock_override(self, value: Optional[pulumi.Input[bool]]):
|
472
|
-
pulumi.set(self, "is_lock_override", value)
|
473
|
-
|
474
430
|
@property
|
475
431
|
@pulumi.getter(name="isTargetable")
|
476
432
|
def is_targetable(self) -> Optional[pulumi.Input[bool]]:
|
@@ -507,18 +463,6 @@ class _FileSystemState:
|
|
507
463
|
def lifecycle_details(self, value: Optional[pulumi.Input[str]]):
|
508
464
|
pulumi.set(self, "lifecycle_details", value)
|
509
465
|
|
510
|
-
@property
|
511
|
-
@pulumi.getter
|
512
|
-
def locks(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['FileSystemLockArgs']]]]:
|
513
|
-
"""
|
514
|
-
Locks associated with this resource.
|
515
|
-
"""
|
516
|
-
return pulumi.get(self, "locks")
|
517
|
-
|
518
|
-
@locks.setter
|
519
|
-
def locks(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['FileSystemLockArgs']]]]):
|
520
|
-
pulumi.set(self, "locks", value)
|
521
|
-
|
522
466
|
@property
|
523
467
|
@pulumi.getter(name="meteredBytes")
|
524
468
|
def metered_bytes(self) -> Optional[pulumi.Input[str]]:
|
@@ -605,9 +549,7 @@ class FileSystem(pulumi.CustomResource):
|
|
605
549
|
display_name: Optional[pulumi.Input[str]] = None,
|
606
550
|
filesystem_snapshot_policy_id: Optional[pulumi.Input[str]] = None,
|
607
551
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
608
|
-
is_lock_override: Optional[pulumi.Input[bool]] = None,
|
609
552
|
kms_key_id: Optional[pulumi.Input[str]] = None,
|
610
|
-
locks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['FileSystemLockArgs', 'FileSystemLockArgsDict']]]]] = None,
|
611
553
|
source_snapshot_id: Optional[pulumi.Input[str]] = None,
|
612
554
|
__props__=None):
|
613
555
|
"""
|
@@ -662,12 +604,6 @@ class FileSystem(pulumi.CustomResource):
|
|
662
604
|
"Department": "Finance",
|
663
605
|
},
|
664
606
|
kms_key_id=test_key["id"],
|
665
|
-
locks=[{
|
666
|
-
"type": file_system_locks_type,
|
667
|
-
"message": file_system_locks_message,
|
668
|
-
"related_resource_id": test_resource["id"],
|
669
|
-
"time_created": file_system_locks_time_created,
|
670
|
-
}],
|
671
607
|
source_snapshot_id=test_snapshot["id"])
|
672
608
|
```
|
673
609
|
|
@@ -696,7 +632,6 @@ class FileSystem(pulumi.CustomResource):
|
|
696
632
|
May be unset as a blank value.
|
697
633
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] 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"}`
|
698
634
|
: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.
|
699
|
-
:param pulumi.Input[Sequence[pulumi.Input[Union['FileSystemLockArgs', 'FileSystemLockArgsDict']]]] locks: Locks associated with this resource.
|
700
635
|
: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).
|
701
636
|
"""
|
702
637
|
...
|
@@ -757,12 +692,6 @@ class FileSystem(pulumi.CustomResource):
|
|
757
692
|
"Department": "Finance",
|
758
693
|
},
|
759
694
|
kms_key_id=test_key["id"],
|
760
|
-
locks=[{
|
761
|
-
"type": file_system_locks_type,
|
762
|
-
"message": file_system_locks_message,
|
763
|
-
"related_resource_id": test_resource["id"],
|
764
|
-
"time_created": file_system_locks_time_created,
|
765
|
-
}],
|
766
695
|
source_snapshot_id=test_snapshot["id"])
|
767
696
|
```
|
768
697
|
|
@@ -797,9 +726,7 @@ class FileSystem(pulumi.CustomResource):
|
|
797
726
|
display_name: Optional[pulumi.Input[str]] = None,
|
798
727
|
filesystem_snapshot_policy_id: Optional[pulumi.Input[str]] = None,
|
799
728
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
800
|
-
is_lock_override: Optional[pulumi.Input[bool]] = None,
|
801
729
|
kms_key_id: Optional[pulumi.Input[str]] = None,
|
802
|
-
locks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['FileSystemLockArgs', 'FileSystemLockArgsDict']]]]] = None,
|
803
730
|
source_snapshot_id: Optional[pulumi.Input[str]] = None,
|
804
731
|
__props__=None):
|
805
732
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
@@ -822,9 +749,7 @@ class FileSystem(pulumi.CustomResource):
|
|
822
749
|
__props__.__dict__["display_name"] = display_name
|
823
750
|
__props__.__dict__["filesystem_snapshot_policy_id"] = filesystem_snapshot_policy_id
|
824
751
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
825
|
-
__props__.__dict__["is_lock_override"] = is_lock_override
|
826
752
|
__props__.__dict__["kms_key_id"] = kms_key_id
|
827
|
-
__props__.__dict__["locks"] = locks
|
828
753
|
__props__.__dict__["source_snapshot_id"] = source_snapshot_id
|
829
754
|
__props__.__dict__["clone_count"] = None
|
830
755
|
__props__.__dict__["is_clone_parent"] = None
|
@@ -857,11 +782,9 @@ class FileSystem(pulumi.CustomResource):
|
|
857
782
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
858
783
|
is_clone_parent: Optional[pulumi.Input[bool]] = None,
|
859
784
|
is_hydrated: Optional[pulumi.Input[bool]] = None,
|
860
|
-
is_lock_override: Optional[pulumi.Input[bool]] = None,
|
861
785
|
is_targetable: Optional[pulumi.Input[bool]] = None,
|
862
786
|
kms_key_id: Optional[pulumi.Input[str]] = None,
|
863
787
|
lifecycle_details: Optional[pulumi.Input[str]] = None,
|
864
|
-
locks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['FileSystemLockArgs', 'FileSystemLockArgsDict']]]]] = None,
|
865
788
|
metered_bytes: Optional[pulumi.Input[str]] = None,
|
866
789
|
replication_target_id: Optional[pulumi.Input[str]] = None,
|
867
790
|
source_details: Optional[pulumi.Input[Sequence[pulumi.Input[Union['FileSystemSourceDetailArgs', 'FileSystemSourceDetailArgsDict']]]]] = None,
|
@@ -895,7 +818,6 @@ class FileSystem(pulumi.CustomResource):
|
|
895
818
|
:param pulumi.Input[bool] is_targetable: Specifies whether the file system can be used as a target file system for replication. The system sets this value to `true` if the file system is unexported, hasn't yet been specified as a target file system in any replication resource, and has no user snapshots. After the file system has been specified as a target in a replication, or if the file system contains user snapshots, the system sets this value to `false`. For more information, see [Using Replication](https://docs.cloud.oracle.com/iaas/Content/File/Tasks/using-replication.htm).
|
896
819
|
: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.
|
897
820
|
:param pulumi.Input[str] lifecycle_details: Additional information about the current 'lifecycleState'.
|
898
|
-
:param pulumi.Input[Sequence[pulumi.Input[Union['FileSystemLockArgs', 'FileSystemLockArgsDict']]]] locks: Locks associated with this resource.
|
899
821
|
: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).
|
900
822
|
: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.
|
901
823
|
:param pulumi.Input[Sequence[pulumi.Input[Union['FileSystemSourceDetailArgs', 'FileSystemSourceDetailArgsDict']]]] source_details: Source information for the file system.
|
@@ -918,11 +840,9 @@ class FileSystem(pulumi.CustomResource):
|
|
918
840
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
919
841
|
__props__.__dict__["is_clone_parent"] = is_clone_parent
|
920
842
|
__props__.__dict__["is_hydrated"] = is_hydrated
|
921
|
-
__props__.__dict__["is_lock_override"] = is_lock_override
|
922
843
|
__props__.__dict__["is_targetable"] = is_targetable
|
923
844
|
__props__.__dict__["kms_key_id"] = kms_key_id
|
924
845
|
__props__.__dict__["lifecycle_details"] = lifecycle_details
|
925
|
-
__props__.__dict__["locks"] = locks
|
926
846
|
__props__.__dict__["metered_bytes"] = metered_bytes
|
927
847
|
__props__.__dict__["replication_target_id"] = replication_target_id
|
928
848
|
__props__.__dict__["source_details"] = source_details
|
@@ -1025,11 +945,6 @@ class FileSystem(pulumi.CustomResource):
|
|
1025
945
|
"""
|
1026
946
|
return pulumi.get(self, "is_hydrated")
|
1027
947
|
|
1028
|
-
@property
|
1029
|
-
@pulumi.getter(name="isLockOverride")
|
1030
|
-
def is_lock_override(self) -> pulumi.Output[bool]:
|
1031
|
-
return pulumi.get(self, "is_lock_override")
|
1032
|
-
|
1033
948
|
@property
|
1034
949
|
@pulumi.getter(name="isTargetable")
|
1035
950
|
def is_targetable(self) -> pulumi.Output[bool]:
|
@@ -1054,14 +969,6 @@ class FileSystem(pulumi.CustomResource):
|
|
1054
969
|
"""
|
1055
970
|
return pulumi.get(self, "lifecycle_details")
|
1056
971
|
|
1057
|
-
@property
|
1058
|
-
@pulumi.getter
|
1059
|
-
def locks(self) -> pulumi.Output[Sequence['outputs.FileSystemLock']]:
|
1060
|
-
"""
|
1061
|
-
Locks associated with this resource.
|
1062
|
-
"""
|
1063
|
-
return pulumi.get(self, "locks")
|
1064
|
-
|
1065
972
|
@property
|
1066
973
|
@pulumi.getter(name="meteredBytes")
|
1067
974
|
def metered_bytes(self) -> pulumi.Output[str]:
|