pulumi-oci 2.14.0a1730182164__py3-none-any.whl → 2.15.0__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/containerengine/addon.py +54 -7
- pulumi_oci/containerengine/get_addon.py +12 -1
- pulumi_oci/containerengine/outputs.py +9 -1
- pulumi_oci/core/_inputs.py +74 -0
- pulumi_oci/core/get_instance.py +1 -1
- pulumi_oci/core/get_virtual_circuit.py +18 -4
- pulumi_oci/core/instance.py +7 -7
- pulumi_oci/core/instance_pool.py +7 -7
- pulumi_oci/core/outputs.py +165 -7
- pulumi_oci/core/virtual_circuit.py +30 -2
- pulumi_oci/database/_inputs.py +642 -0
- pulumi_oci/database/autonomous_container_database.py +14 -14
- pulumi_oci/database/autonomous_database.py +75 -0
- pulumi_oci/database/get_autonomous_container_database.py +3 -3
- pulumi_oci/database/get_autonomous_database.py +29 -1
- pulumi_oci/database/get_autonomous_databases.py +22 -28
- pulumi_oci/database/outputs.py +1669 -86
- pulumi_oci/datasafe/__init__.py +2 -0
- pulumi_oci/datasafe/_inputs.py +49 -0
- pulumi_oci/datasafe/get_database_security_config.py +307 -0
- pulumi_oci/datasafe/get_database_security_configs.py +342 -0
- pulumi_oci/datasafe/outputs.py +325 -0
- pulumi_oci/datascience/_inputs.py +353 -0
- pulumi_oci/datascience/get_model.py +113 -4
- pulumi_oci/datascience/get_models.py +30 -5
- pulumi_oci/datascience/model.py +346 -5
- pulumi_oci/datascience/outputs.py +778 -1
- pulumi_oci/filestorage/_inputs.py +651 -0
- pulumi_oci/filestorage/export.py +96 -3
- pulumi_oci/filestorage/file_system.py +93 -0
- pulumi_oci/filestorage/filesystem_snapshot_policy.py +93 -0
- pulumi_oci/filestorage/get_filesystem_snapshot_policy.py +26 -1
- pulumi_oci/filestorage/get_outbound_connector.py +26 -1
- pulumi_oci/filestorage/get_replication.py +27 -1
- pulumi_oci/filestorage/get_snapshot.py +27 -1
- pulumi_oci/filestorage/mount_target.py +108 -0
- pulumi_oci/filestorage/outbound_connector.py +93 -0
- pulumi_oci/filestorage/outputs.py +1218 -2
- pulumi_oci/filestorage/replication.py +95 -0
- pulumi_oci/filestorage/snapshot.py +97 -2
- pulumi_oci/identity/domains_auth_token.py +68 -0
- pulumi_oci/identity/domains_customer_secret_key.py +56 -0
- pulumi_oci/identity/domains_oauth2client_credential.py +64 -0
- pulumi_oci/identity/domains_smtp_credential.py +60 -0
- pulumi_oci/identity/get_domains_auth_token.py +15 -1
- pulumi_oci/identity/get_domains_customer_secret_key.py +15 -1
- pulumi_oci/identity/get_domains_oauth2client_credential.py +15 -1
- pulumi_oci/identity/get_domains_smtp_credential.py +15 -1
- pulumi_oci/identity/outputs.py +44 -0
- pulumi_oci/loadbalancer/listener.py +7 -7
- pulumi_oci/networkloadbalancer/get_backend_set.py +1 -1
- pulumi_oci/networkloadbalancer/get_listener.py +15 -1
- pulumi_oci/networkloadbalancer/get_network_load_balancer.py +15 -1
- pulumi_oci/networkloadbalancer/listener.py +49 -0
- pulumi_oci/networkloadbalancer/network_load_balancer.py +47 -0
- pulumi_oci/networkloadbalancer/outputs.py +24 -2
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/resourcescheduler/_inputs.py +24 -21
- pulumi_oci/resourcescheduler/get_schedules.py +6 -6
- pulumi_oci/resourcescheduler/outputs.py +18 -16
- pulumi_oci/resourcescheduler/schedule.py +14 -88
- {pulumi_oci-2.14.0a1730182164.dist-info → pulumi_oci-2.15.0.dist-info}/METADATA +1 -1
- {pulumi_oci-2.14.0a1730182164.dist-info → pulumi_oci-2.15.0.dist-info}/RECORD +65 -63
- {pulumi_oci-2.14.0a1730182164.dist-info → pulumi_oci-2.15.0.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.14.0a1730182164.dist-info → pulumi_oci-2.15.0.dist-info}/top_level.txt +0 -0
pulumi_oci/filestorage/export.py
CHANGED
@@ -25,7 +25,9 @@ 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
|
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):
|
29
31
|
"""
|
30
32
|
The set of arguments for constructing a Export resource.
|
31
33
|
: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.
|
@@ -51,6 +53,7 @@ class ExportArgs:
|
|
51
53
|
|
52
54
|
The export's `exportOptions` can be changed after creation using the `UpdateExport` operation.
|
53
55
|
: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.
|
54
57
|
"""
|
55
58
|
pulumi.set(__self__, "export_set_id", export_set_id)
|
56
59
|
pulumi.set(__self__, "file_system_id", file_system_id)
|
@@ -59,6 +62,10 @@ class ExportArgs:
|
|
59
62
|
pulumi.set(__self__, "export_options", export_options)
|
60
63
|
if is_idmap_groups_for_sys_auth is not None:
|
61
64
|
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)
|
62
69
|
|
63
70
|
@property
|
64
71
|
@pulumi.getter(name="exportSetId")
|
@@ -138,6 +145,27 @@ class ExportArgs:
|
|
138
145
|
def is_idmap_groups_for_sys_auth(self, value: Optional[pulumi.Input[bool]]):
|
139
146
|
pulumi.set(self, "is_idmap_groups_for_sys_auth", value)
|
140
147
|
|
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
|
+
|
141
169
|
|
142
170
|
@pulumi.input_type
|
143
171
|
class _ExportState:
|
@@ -146,6 +174,8 @@ class _ExportState:
|
|
146
174
|
export_set_id: Optional[pulumi.Input[str]] = None,
|
147
175
|
file_system_id: Optional[pulumi.Input[str]] = None,
|
148
176
|
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,
|
149
179
|
path: Optional[pulumi.Input[str]] = None,
|
150
180
|
state: Optional[pulumi.Input[str]] = None,
|
151
181
|
time_created: Optional[pulumi.Input[str]] = None):
|
@@ -165,6 +195,7 @@ class _ExportState:
|
|
165
195
|
: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.
|
166
196
|
: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.
|
167
197
|
: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.
|
168
199
|
:param pulumi.Input[str] path: Path used to access the associated file system.
|
169
200
|
|
170
201
|
Avoid entering confidential information.
|
@@ -185,6 +216,10 @@ class _ExportState:
|
|
185
216
|
pulumi.set(__self__, "file_system_id", file_system_id)
|
186
217
|
if is_idmap_groups_for_sys_auth is not None:
|
187
218
|
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)
|
188
223
|
if path is not None:
|
189
224
|
pulumi.set(__self__, "path", path)
|
190
225
|
if state is not None:
|
@@ -250,6 +285,27 @@ class _ExportState:
|
|
250
285
|
def is_idmap_groups_for_sys_auth(self, value: Optional[pulumi.Input[bool]]):
|
251
286
|
pulumi.set(self, "is_idmap_groups_for_sys_auth", value)
|
252
287
|
|
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
|
+
|
253
309
|
@property
|
254
310
|
@pulumi.getter
|
255
311
|
def path(self) -> Optional[pulumi.Input[str]]:
|
@@ -304,6 +360,8 @@ class Export(pulumi.CustomResource):
|
|
304
360
|
export_set_id: Optional[pulumi.Input[str]] = None,
|
305
361
|
file_system_id: Optional[pulumi.Input[str]] = None,
|
306
362
|
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,
|
307
365
|
path: Optional[pulumi.Input[str]] = None,
|
308
366
|
__props__=None):
|
309
367
|
"""
|
@@ -332,7 +390,13 @@ class Export(pulumi.CustomResource):
|
|
332
390
|
"is_anonymous_access_allowed": export_export_options_is_anonymous_access_allowed,
|
333
391
|
"require_privileged_source_port": export_export_options_require_privileged_source_port,
|
334
392
|
}],
|
335
|
-
is_idmap_groups_for_sys_auth=export_is_idmap_groups_for_sys_auth
|
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
|
+
}])
|
336
400
|
```
|
337
401
|
|
338
402
|
## Import
|
@@ -359,6 +423,7 @@ class Export(pulumi.CustomResource):
|
|
359
423
|
: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.
|
360
424
|
: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.
|
361
425
|
: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.
|
362
427
|
:param pulumi.Input[str] path: Path used to access the associated file system.
|
363
428
|
|
364
429
|
Avoid entering confidential information.
|
@@ -401,7 +466,13 @@ class Export(pulumi.CustomResource):
|
|
401
466
|
"is_anonymous_access_allowed": export_export_options_is_anonymous_access_allowed,
|
402
467
|
"require_privileged_source_port": export_export_options_require_privileged_source_port,
|
403
468
|
}],
|
404
|
-
is_idmap_groups_for_sys_auth=export_is_idmap_groups_for_sys_auth
|
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
|
+
}])
|
405
476
|
```
|
406
477
|
|
407
478
|
## Import
|
@@ -431,6 +502,8 @@ class Export(pulumi.CustomResource):
|
|
431
502
|
export_set_id: Optional[pulumi.Input[str]] = None,
|
432
503
|
file_system_id: Optional[pulumi.Input[str]] = None,
|
433
504
|
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,
|
434
507
|
path: Optional[pulumi.Input[str]] = None,
|
435
508
|
__props__=None):
|
436
509
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
@@ -449,6 +522,8 @@ class Export(pulumi.CustomResource):
|
|
449
522
|
raise TypeError("Missing required property 'file_system_id'")
|
450
523
|
__props__.__dict__["file_system_id"] = file_system_id
|
451
524
|
__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
|
452
527
|
if path is None and not opts.urn:
|
453
528
|
raise TypeError("Missing required property 'path'")
|
454
529
|
__props__.__dict__["path"] = path
|
@@ -468,6 +543,8 @@ class Export(pulumi.CustomResource):
|
|
468
543
|
export_set_id: Optional[pulumi.Input[str]] = None,
|
469
544
|
file_system_id: Optional[pulumi.Input[str]] = None,
|
470
545
|
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,
|
471
548
|
path: Optional[pulumi.Input[str]] = None,
|
472
549
|
state: Optional[pulumi.Input[str]] = None,
|
473
550
|
time_created: Optional[pulumi.Input[str]] = None) -> 'Export':
|
@@ -492,6 +569,7 @@ class Export(pulumi.CustomResource):
|
|
492
569
|
: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.
|
493
570
|
: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.
|
494
571
|
: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.
|
495
573
|
:param pulumi.Input[str] path: Path used to access the associated file system.
|
496
574
|
|
497
575
|
Avoid entering confidential information.
|
@@ -512,6 +590,8 @@ class Export(pulumi.CustomResource):
|
|
512
590
|
__props__.__dict__["export_set_id"] = export_set_id
|
513
591
|
__props__.__dict__["file_system_id"] = file_system_id
|
514
592
|
__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
|
515
595
|
__props__.__dict__["path"] = path
|
516
596
|
__props__.__dict__["state"] = state
|
517
597
|
__props__.__dict__["time_created"] = time_created
|
@@ -559,6 +639,19 @@ class Export(pulumi.CustomResource):
|
|
559
639
|
"""
|
560
640
|
return pulumi.get(self, "is_idmap_groups_for_sys_auth")
|
561
641
|
|
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
|
+
|
562
655
|
@property
|
563
656
|
@pulumi.getter
|
564
657
|
def path(self) -> pulumi.Output[str]:
|
@@ -29,7 +29,9 @@ 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,
|
32
33
|
kms_key_id: Optional[pulumi.Input[str]] = None,
|
34
|
+
locks: Optional[pulumi.Input[Sequence[pulumi.Input['FileSystemLockArgs']]]] = None,
|
33
35
|
source_snapshot_id: Optional[pulumi.Input[str]] = None):
|
34
36
|
"""
|
35
37
|
The set of arguments for constructing a FileSystem resource.
|
@@ -48,6 +50,7 @@ class FileSystemArgs:
|
|
48
50
|
May be unset as a blank value.
|
49
51
|
: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"}`
|
50
52
|
: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.
|
51
54
|
: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).
|
52
55
|
"""
|
53
56
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
@@ -64,8 +67,12 @@ class FileSystemArgs:
|
|
64
67
|
pulumi.set(__self__, "filesystem_snapshot_policy_id", filesystem_snapshot_policy_id)
|
65
68
|
if freeform_tags is not None:
|
66
69
|
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)
|
67
72
|
if kms_key_id is not None:
|
68
73
|
pulumi.set(__self__, "kms_key_id", kms_key_id)
|
74
|
+
if locks is not None:
|
75
|
+
pulumi.set(__self__, "locks", locks)
|
69
76
|
if source_snapshot_id is not None:
|
70
77
|
pulumi.set(__self__, "source_snapshot_id", source_snapshot_id)
|
71
78
|
|
@@ -171,6 +178,15 @@ class FileSystemArgs:
|
|
171
178
|
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
172
179
|
pulumi.set(self, "freeform_tags", value)
|
173
180
|
|
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
|
+
|
174
190
|
@property
|
175
191
|
@pulumi.getter(name="kmsKeyId")
|
176
192
|
def kms_key_id(self) -> Optional[pulumi.Input[str]]:
|
@@ -183,6 +199,18 @@ class FileSystemArgs:
|
|
183
199
|
def kms_key_id(self, value: Optional[pulumi.Input[str]]):
|
184
200
|
pulumi.set(self, "kms_key_id", value)
|
185
201
|
|
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
|
+
|
186
214
|
@property
|
187
215
|
@pulumi.getter(name="sourceSnapshotId")
|
188
216
|
def source_snapshot_id(self) -> Optional[pulumi.Input[str]]:
|
@@ -210,9 +238,11 @@ class _FileSystemState:
|
|
210
238
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
211
239
|
is_clone_parent: Optional[pulumi.Input[bool]] = None,
|
212
240
|
is_hydrated: Optional[pulumi.Input[bool]] = None,
|
241
|
+
is_lock_override: Optional[pulumi.Input[bool]] = None,
|
213
242
|
is_targetable: Optional[pulumi.Input[bool]] = None,
|
214
243
|
kms_key_id: Optional[pulumi.Input[str]] = None,
|
215
244
|
lifecycle_details: Optional[pulumi.Input[str]] = None,
|
245
|
+
locks: Optional[pulumi.Input[Sequence[pulumi.Input['FileSystemLockArgs']]]] = None,
|
216
246
|
metered_bytes: Optional[pulumi.Input[str]] = None,
|
217
247
|
replication_target_id: Optional[pulumi.Input[str]] = None,
|
218
248
|
source_details: Optional[pulumi.Input[Sequence[pulumi.Input['FileSystemSourceDetailArgs']]]] = None,
|
@@ -241,6 +271,7 @@ class _FileSystemState:
|
|
241
271
|
: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).
|
242
272
|
: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.
|
243
273
|
: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.
|
244
275
|
: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).
|
245
276
|
: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.
|
246
277
|
:param pulumi.Input[Sequence[pulumi.Input['FileSystemSourceDetailArgs']]] source_details: Source information for the file system.
|
@@ -270,12 +301,16 @@ class _FileSystemState:
|
|
270
301
|
pulumi.set(__self__, "is_clone_parent", is_clone_parent)
|
271
302
|
if is_hydrated is not None:
|
272
303
|
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)
|
273
306
|
if is_targetable is not None:
|
274
307
|
pulumi.set(__self__, "is_targetable", is_targetable)
|
275
308
|
if kms_key_id is not None:
|
276
309
|
pulumi.set(__self__, "kms_key_id", kms_key_id)
|
277
310
|
if lifecycle_details is not None:
|
278
311
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
312
|
+
if locks is not None:
|
313
|
+
pulumi.set(__self__, "locks", locks)
|
279
314
|
if metered_bytes is not None:
|
280
315
|
pulumi.set(__self__, "metered_bytes", metered_bytes)
|
281
316
|
if replication_target_id is not None:
|
@@ -427,6 +462,15 @@ class _FileSystemState:
|
|
427
462
|
def is_hydrated(self, value: Optional[pulumi.Input[bool]]):
|
428
463
|
pulumi.set(self, "is_hydrated", value)
|
429
464
|
|
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
|
+
|
430
474
|
@property
|
431
475
|
@pulumi.getter(name="isTargetable")
|
432
476
|
def is_targetable(self) -> Optional[pulumi.Input[bool]]:
|
@@ -463,6 +507,18 @@ class _FileSystemState:
|
|
463
507
|
def lifecycle_details(self, value: Optional[pulumi.Input[str]]):
|
464
508
|
pulumi.set(self, "lifecycle_details", value)
|
465
509
|
|
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
|
+
|
466
522
|
@property
|
467
523
|
@pulumi.getter(name="meteredBytes")
|
468
524
|
def metered_bytes(self) -> Optional[pulumi.Input[str]]:
|
@@ -549,7 +605,9 @@ class FileSystem(pulumi.CustomResource):
|
|
549
605
|
display_name: Optional[pulumi.Input[str]] = None,
|
550
606
|
filesystem_snapshot_policy_id: Optional[pulumi.Input[str]] = None,
|
551
607
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
608
|
+
is_lock_override: Optional[pulumi.Input[bool]] = None,
|
552
609
|
kms_key_id: Optional[pulumi.Input[str]] = None,
|
610
|
+
locks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['FileSystemLockArgs', 'FileSystemLockArgsDict']]]]] = None,
|
553
611
|
source_snapshot_id: Optional[pulumi.Input[str]] = None,
|
554
612
|
__props__=None):
|
555
613
|
"""
|
@@ -604,6 +662,12 @@ class FileSystem(pulumi.CustomResource):
|
|
604
662
|
"Department": "Finance",
|
605
663
|
},
|
606
664
|
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
|
+
}],
|
607
671
|
source_snapshot_id=test_snapshot["id"])
|
608
672
|
```
|
609
673
|
|
@@ -632,6 +696,7 @@ class FileSystem(pulumi.CustomResource):
|
|
632
696
|
May be unset as a blank value.
|
633
697
|
: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"}`
|
634
698
|
: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.
|
635
700
|
: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).
|
636
701
|
"""
|
637
702
|
...
|
@@ -692,6 +757,12 @@ class FileSystem(pulumi.CustomResource):
|
|
692
757
|
"Department": "Finance",
|
693
758
|
},
|
694
759
|
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
|
+
}],
|
695
766
|
source_snapshot_id=test_snapshot["id"])
|
696
767
|
```
|
697
768
|
|
@@ -726,7 +797,9 @@ class FileSystem(pulumi.CustomResource):
|
|
726
797
|
display_name: Optional[pulumi.Input[str]] = None,
|
727
798
|
filesystem_snapshot_policy_id: Optional[pulumi.Input[str]] = None,
|
728
799
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
800
|
+
is_lock_override: Optional[pulumi.Input[bool]] = None,
|
729
801
|
kms_key_id: Optional[pulumi.Input[str]] = None,
|
802
|
+
locks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['FileSystemLockArgs', 'FileSystemLockArgsDict']]]]] = None,
|
730
803
|
source_snapshot_id: Optional[pulumi.Input[str]] = None,
|
731
804
|
__props__=None):
|
732
805
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
@@ -749,7 +822,9 @@ class FileSystem(pulumi.CustomResource):
|
|
749
822
|
__props__.__dict__["display_name"] = display_name
|
750
823
|
__props__.__dict__["filesystem_snapshot_policy_id"] = filesystem_snapshot_policy_id
|
751
824
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
825
|
+
__props__.__dict__["is_lock_override"] = is_lock_override
|
752
826
|
__props__.__dict__["kms_key_id"] = kms_key_id
|
827
|
+
__props__.__dict__["locks"] = locks
|
753
828
|
__props__.__dict__["source_snapshot_id"] = source_snapshot_id
|
754
829
|
__props__.__dict__["clone_count"] = None
|
755
830
|
__props__.__dict__["is_clone_parent"] = None
|
@@ -782,9 +857,11 @@ class FileSystem(pulumi.CustomResource):
|
|
782
857
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
783
858
|
is_clone_parent: Optional[pulumi.Input[bool]] = None,
|
784
859
|
is_hydrated: Optional[pulumi.Input[bool]] = None,
|
860
|
+
is_lock_override: Optional[pulumi.Input[bool]] = None,
|
785
861
|
is_targetable: Optional[pulumi.Input[bool]] = None,
|
786
862
|
kms_key_id: Optional[pulumi.Input[str]] = None,
|
787
863
|
lifecycle_details: Optional[pulumi.Input[str]] = None,
|
864
|
+
locks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['FileSystemLockArgs', 'FileSystemLockArgsDict']]]]] = None,
|
788
865
|
metered_bytes: Optional[pulumi.Input[str]] = None,
|
789
866
|
replication_target_id: Optional[pulumi.Input[str]] = None,
|
790
867
|
source_details: Optional[pulumi.Input[Sequence[pulumi.Input[Union['FileSystemSourceDetailArgs', 'FileSystemSourceDetailArgsDict']]]]] = None,
|
@@ -818,6 +895,7 @@ class FileSystem(pulumi.CustomResource):
|
|
818
895
|
: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).
|
819
896
|
: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.
|
820
897
|
: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.
|
821
899
|
: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).
|
822
900
|
: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.
|
823
901
|
:param pulumi.Input[Sequence[pulumi.Input[Union['FileSystemSourceDetailArgs', 'FileSystemSourceDetailArgsDict']]]] source_details: Source information for the file system.
|
@@ -840,9 +918,11 @@ class FileSystem(pulumi.CustomResource):
|
|
840
918
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
841
919
|
__props__.__dict__["is_clone_parent"] = is_clone_parent
|
842
920
|
__props__.__dict__["is_hydrated"] = is_hydrated
|
921
|
+
__props__.__dict__["is_lock_override"] = is_lock_override
|
843
922
|
__props__.__dict__["is_targetable"] = is_targetable
|
844
923
|
__props__.__dict__["kms_key_id"] = kms_key_id
|
845
924
|
__props__.__dict__["lifecycle_details"] = lifecycle_details
|
925
|
+
__props__.__dict__["locks"] = locks
|
846
926
|
__props__.__dict__["metered_bytes"] = metered_bytes
|
847
927
|
__props__.__dict__["replication_target_id"] = replication_target_id
|
848
928
|
__props__.__dict__["source_details"] = source_details
|
@@ -945,6 +1025,11 @@ class FileSystem(pulumi.CustomResource):
|
|
945
1025
|
"""
|
946
1026
|
return pulumi.get(self, "is_hydrated")
|
947
1027
|
|
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
|
+
|
948
1033
|
@property
|
949
1034
|
@pulumi.getter(name="isTargetable")
|
950
1035
|
def is_targetable(self) -> pulumi.Output[bool]:
|
@@ -969,6 +1054,14 @@ class FileSystem(pulumi.CustomResource):
|
|
969
1054
|
"""
|
970
1055
|
return pulumi.get(self, "lifecycle_details")
|
971
1056
|
|
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
|
+
|
972
1065
|
@property
|
973
1066
|
@pulumi.getter(name="meteredBytes")
|
974
1067
|
def metered_bytes(self) -> pulumi.Output[str]:
|