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
@@ -13,6 +13,8 @@ if sys.version_info >= (3, 11):
|
|
13
13
|
else:
|
14
14
|
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
15
15
|
from .. import _utilities
|
16
|
+
from . import outputs
|
17
|
+
from ._inputs import *
|
16
18
|
|
17
19
|
__all__ = ['ReplicationArgs', 'Replication']
|
18
20
|
|
@@ -25,6 +27,8 @@ class ReplicationArgs:
|
|
25
27
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
26
28
|
display_name: Optional[pulumi.Input[str]] = None,
|
27
29
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
30
|
+
is_lock_override: Optional[pulumi.Input[bool]] = None,
|
31
|
+
locks: Optional[pulumi.Input[Sequence[pulumi.Input['ReplicationLockArgs']]]] = None,
|
28
32
|
replication_interval: Optional[pulumi.Input[str]] = None):
|
29
33
|
"""
|
30
34
|
The set of arguments for constructing a Replication resource.
|
@@ -38,6 +42,7 @@ class ReplicationArgs:
|
|
38
42
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] 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"}`
|
39
43
|
: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. An associated replication target will also created with the same `displayName`. Example: `My replication`
|
40
44
|
: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"}`
|
45
|
+
:param pulumi.Input[Sequence[pulumi.Input['ReplicationLockArgs']]] locks: Locks associated with this resource.
|
41
46
|
:param pulumi.Input[str] replication_interval: (Updatable) Duration in minutes between replication snapshots.
|
42
47
|
"""
|
43
48
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
@@ -49,6 +54,10 @@ class ReplicationArgs:
|
|
49
54
|
pulumi.set(__self__, "display_name", display_name)
|
50
55
|
if freeform_tags is not None:
|
51
56
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
57
|
+
if is_lock_override is not None:
|
58
|
+
pulumi.set(__self__, "is_lock_override", is_lock_override)
|
59
|
+
if locks is not None:
|
60
|
+
pulumi.set(__self__, "locks", locks)
|
52
61
|
if replication_interval is not None:
|
53
62
|
pulumi.set(__self__, "replication_interval", replication_interval)
|
54
63
|
|
@@ -128,6 +137,27 @@ class ReplicationArgs:
|
|
128
137
|
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
129
138
|
pulumi.set(self, "freeform_tags", value)
|
130
139
|
|
140
|
+
@property
|
141
|
+
@pulumi.getter(name="isLockOverride")
|
142
|
+
def is_lock_override(self) -> Optional[pulumi.Input[bool]]:
|
143
|
+
return pulumi.get(self, "is_lock_override")
|
144
|
+
|
145
|
+
@is_lock_override.setter
|
146
|
+
def is_lock_override(self, value: Optional[pulumi.Input[bool]]):
|
147
|
+
pulumi.set(self, "is_lock_override", value)
|
148
|
+
|
149
|
+
@property
|
150
|
+
@pulumi.getter
|
151
|
+
def locks(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ReplicationLockArgs']]]]:
|
152
|
+
"""
|
153
|
+
Locks associated with this resource.
|
154
|
+
"""
|
155
|
+
return pulumi.get(self, "locks")
|
156
|
+
|
157
|
+
@locks.setter
|
158
|
+
def locks(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ReplicationLockArgs']]]]):
|
159
|
+
pulumi.set(self, "locks", value)
|
160
|
+
|
131
161
|
@property
|
132
162
|
@pulumi.getter(name="replicationInterval")
|
133
163
|
def replication_interval(self) -> Optional[pulumi.Input[str]]:
|
@@ -151,8 +181,10 @@ class _ReplicationState:
|
|
151
181
|
delta_status: Optional[pulumi.Input[str]] = None,
|
152
182
|
display_name: Optional[pulumi.Input[str]] = None,
|
153
183
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
184
|
+
is_lock_override: Optional[pulumi.Input[bool]] = None,
|
154
185
|
last_snapshot_id: Optional[pulumi.Input[str]] = None,
|
155
186
|
lifecycle_details: Optional[pulumi.Input[str]] = None,
|
187
|
+
locks: Optional[pulumi.Input[Sequence[pulumi.Input['ReplicationLockArgs']]]] = None,
|
156
188
|
recovery_point_time: Optional[pulumi.Input[str]] = None,
|
157
189
|
replication_interval: Optional[pulumi.Input[str]] = None,
|
158
190
|
replication_target_id: Optional[pulumi.Input[str]] = None,
|
@@ -171,6 +203,7 @@ class _ReplicationState:
|
|
171
203
|
: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"}`
|
172
204
|
:param pulumi.Input[str] last_snapshot_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the last snapshot that has been replicated completely. Empty if the copy of the initial snapshot is not complete.
|
173
205
|
:param pulumi.Input[str] lifecycle_details: Additional information about the current 'lifecycleState'.
|
206
|
+
:param pulumi.Input[Sequence[pulumi.Input['ReplicationLockArgs']]] locks: Locks associated with this resource.
|
174
207
|
:param pulumi.Input[str] recovery_point_time: The [`snapshotTime`](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Snapshot/snapshotTime) of the most recent recoverable replication snapshot in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2021-04-04T20:01:29.100Z`
|
175
208
|
:param pulumi.Input[str] replication_interval: (Updatable) Duration in minutes between replication snapshots.
|
176
209
|
:param pulumi.Input[str] replication_target_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the [`ReplicationTarget`](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/ReplicationTarget).
|
@@ -197,10 +230,14 @@ class _ReplicationState:
|
|
197
230
|
pulumi.set(__self__, "display_name", display_name)
|
198
231
|
if freeform_tags is not None:
|
199
232
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
233
|
+
if is_lock_override is not None:
|
234
|
+
pulumi.set(__self__, "is_lock_override", is_lock_override)
|
200
235
|
if last_snapshot_id is not None:
|
201
236
|
pulumi.set(__self__, "last_snapshot_id", last_snapshot_id)
|
202
237
|
if lifecycle_details is not None:
|
203
238
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
239
|
+
if locks is not None:
|
240
|
+
pulumi.set(__self__, "locks", locks)
|
204
241
|
if recovery_point_time is not None:
|
205
242
|
pulumi.set(__self__, "recovery_point_time", recovery_point_time)
|
206
243
|
if replication_interval is not None:
|
@@ -300,6 +337,15 @@ class _ReplicationState:
|
|
300
337
|
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
301
338
|
pulumi.set(self, "freeform_tags", value)
|
302
339
|
|
340
|
+
@property
|
341
|
+
@pulumi.getter(name="isLockOverride")
|
342
|
+
def is_lock_override(self) -> Optional[pulumi.Input[bool]]:
|
343
|
+
return pulumi.get(self, "is_lock_override")
|
344
|
+
|
345
|
+
@is_lock_override.setter
|
346
|
+
def is_lock_override(self, value: Optional[pulumi.Input[bool]]):
|
347
|
+
pulumi.set(self, "is_lock_override", value)
|
348
|
+
|
303
349
|
@property
|
304
350
|
@pulumi.getter(name="lastSnapshotId")
|
305
351
|
def last_snapshot_id(self) -> Optional[pulumi.Input[str]]:
|
@@ -324,6 +370,18 @@ class _ReplicationState:
|
|
324
370
|
def lifecycle_details(self, value: Optional[pulumi.Input[str]]):
|
325
371
|
pulumi.set(self, "lifecycle_details", value)
|
326
372
|
|
373
|
+
@property
|
374
|
+
@pulumi.getter
|
375
|
+
def locks(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ReplicationLockArgs']]]]:
|
376
|
+
"""
|
377
|
+
Locks associated with this resource.
|
378
|
+
"""
|
379
|
+
return pulumi.get(self, "locks")
|
380
|
+
|
381
|
+
@locks.setter
|
382
|
+
def locks(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ReplicationLockArgs']]]]):
|
383
|
+
pulumi.set(self, "locks", value)
|
384
|
+
|
327
385
|
@property
|
328
386
|
@pulumi.getter(name="recoveryPointTime")
|
329
387
|
def recovery_point_time(self) -> Optional[pulumi.Input[str]]:
|
@@ -422,6 +480,8 @@ class Replication(pulumi.CustomResource):
|
|
422
480
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
423
481
|
display_name: Optional[pulumi.Input[str]] = None,
|
424
482
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
483
|
+
is_lock_override: Optional[pulumi.Input[bool]] = None,
|
484
|
+
locks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ReplicationLockArgs', 'ReplicationLockArgsDict']]]]] = None,
|
425
485
|
replication_interval: Optional[pulumi.Input[str]] = None,
|
426
486
|
source_id: Optional[pulumi.Input[str]] = None,
|
427
487
|
target_id: Optional[pulumi.Input[str]] = None,
|
@@ -474,6 +534,12 @@ class Replication(pulumi.CustomResource):
|
|
474
534
|
freeform_tags={
|
475
535
|
"Department": "Finance",
|
476
536
|
},
|
537
|
+
locks=[{
|
538
|
+
"type": replication_locks_type,
|
539
|
+
"message": replication_locks_message,
|
540
|
+
"related_resource_id": test_resource["id"],
|
541
|
+
"time_created": replication_locks_time_created,
|
542
|
+
}],
|
477
543
|
replication_interval=replication_replication_interval)
|
478
544
|
```
|
479
545
|
|
@@ -491,6 +557,7 @@ class Replication(pulumi.CustomResource):
|
|
491
557
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] 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"}`
|
492
558
|
: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. An associated replication target will also created with the same `displayName`. Example: `My replication`
|
493
559
|
: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"}`
|
560
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['ReplicationLockArgs', 'ReplicationLockArgsDict']]]] locks: Locks associated with this resource.
|
494
561
|
:param pulumi.Input[str] replication_interval: (Updatable) Duration in minutes between replication snapshots.
|
495
562
|
:param pulumi.Input[str] source_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the source file system.
|
496
563
|
:param pulumi.Input[str] target_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the target file system.
|
@@ -553,6 +620,12 @@ class Replication(pulumi.CustomResource):
|
|
553
620
|
freeform_tags={
|
554
621
|
"Department": "Finance",
|
555
622
|
},
|
623
|
+
locks=[{
|
624
|
+
"type": replication_locks_type,
|
625
|
+
"message": replication_locks_message,
|
626
|
+
"related_resource_id": test_resource["id"],
|
627
|
+
"time_created": replication_locks_time_created,
|
628
|
+
}],
|
556
629
|
replication_interval=replication_replication_interval)
|
557
630
|
```
|
558
631
|
|
@@ -583,6 +656,8 @@ class Replication(pulumi.CustomResource):
|
|
583
656
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
584
657
|
display_name: Optional[pulumi.Input[str]] = None,
|
585
658
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
659
|
+
is_lock_override: Optional[pulumi.Input[bool]] = None,
|
660
|
+
locks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ReplicationLockArgs', 'ReplicationLockArgsDict']]]]] = None,
|
586
661
|
replication_interval: Optional[pulumi.Input[str]] = None,
|
587
662
|
source_id: Optional[pulumi.Input[str]] = None,
|
588
663
|
target_id: Optional[pulumi.Input[str]] = None,
|
@@ -601,6 +676,8 @@ class Replication(pulumi.CustomResource):
|
|
601
676
|
__props__.__dict__["defined_tags"] = defined_tags
|
602
677
|
__props__.__dict__["display_name"] = display_name
|
603
678
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
679
|
+
__props__.__dict__["is_lock_override"] = is_lock_override
|
680
|
+
__props__.__dict__["locks"] = locks
|
604
681
|
__props__.__dict__["replication_interval"] = replication_interval
|
605
682
|
if source_id is None and not opts.urn:
|
606
683
|
raise TypeError("Missing required property 'source_id'")
|
@@ -634,8 +711,10 @@ class Replication(pulumi.CustomResource):
|
|
634
711
|
delta_status: Optional[pulumi.Input[str]] = None,
|
635
712
|
display_name: Optional[pulumi.Input[str]] = None,
|
636
713
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
714
|
+
is_lock_override: Optional[pulumi.Input[bool]] = None,
|
637
715
|
last_snapshot_id: Optional[pulumi.Input[str]] = None,
|
638
716
|
lifecycle_details: Optional[pulumi.Input[str]] = None,
|
717
|
+
locks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ReplicationLockArgs', 'ReplicationLockArgsDict']]]]] = None,
|
639
718
|
recovery_point_time: Optional[pulumi.Input[str]] = None,
|
640
719
|
replication_interval: Optional[pulumi.Input[str]] = None,
|
641
720
|
replication_target_id: Optional[pulumi.Input[str]] = None,
|
@@ -659,6 +738,7 @@ class Replication(pulumi.CustomResource):
|
|
659
738
|
: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"}`
|
660
739
|
:param pulumi.Input[str] last_snapshot_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the last snapshot that has been replicated completely. Empty if the copy of the initial snapshot is not complete.
|
661
740
|
:param pulumi.Input[str] lifecycle_details: Additional information about the current 'lifecycleState'.
|
741
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['ReplicationLockArgs', 'ReplicationLockArgsDict']]]] locks: Locks associated with this resource.
|
662
742
|
:param pulumi.Input[str] recovery_point_time: The [`snapshotTime`](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Snapshot/snapshotTime) of the most recent recoverable replication snapshot in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2021-04-04T20:01:29.100Z`
|
663
743
|
:param pulumi.Input[str] replication_interval: (Updatable) Duration in minutes between replication snapshots.
|
664
744
|
:param pulumi.Input[str] replication_target_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the [`ReplicationTarget`](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/ReplicationTarget).
|
@@ -682,8 +762,10 @@ class Replication(pulumi.CustomResource):
|
|
682
762
|
__props__.__dict__["delta_status"] = delta_status
|
683
763
|
__props__.__dict__["display_name"] = display_name
|
684
764
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
765
|
+
__props__.__dict__["is_lock_override"] = is_lock_override
|
685
766
|
__props__.__dict__["last_snapshot_id"] = last_snapshot_id
|
686
767
|
__props__.__dict__["lifecycle_details"] = lifecycle_details
|
768
|
+
__props__.__dict__["locks"] = locks
|
687
769
|
__props__.__dict__["recovery_point_time"] = recovery_point_time
|
688
770
|
__props__.__dict__["replication_interval"] = replication_interval
|
689
771
|
__props__.__dict__["replication_target_id"] = replication_target_id
|
@@ -749,6 +831,11 @@ class Replication(pulumi.CustomResource):
|
|
749
831
|
"""
|
750
832
|
return pulumi.get(self, "freeform_tags")
|
751
833
|
|
834
|
+
@property
|
835
|
+
@pulumi.getter(name="isLockOverride")
|
836
|
+
def is_lock_override(self) -> pulumi.Output[bool]:
|
837
|
+
return pulumi.get(self, "is_lock_override")
|
838
|
+
|
752
839
|
@property
|
753
840
|
@pulumi.getter(name="lastSnapshotId")
|
754
841
|
def last_snapshot_id(self) -> pulumi.Output[str]:
|
@@ -765,6 +852,14 @@ class Replication(pulumi.CustomResource):
|
|
765
852
|
"""
|
766
853
|
return pulumi.get(self, "lifecycle_details")
|
767
854
|
|
855
|
+
@property
|
856
|
+
@pulumi.getter
|
857
|
+
def locks(self) -> pulumi.Output[Sequence['outputs.ReplicationLock']]:
|
858
|
+
"""
|
859
|
+
Locks associated with this resource.
|
860
|
+
"""
|
861
|
+
return pulumi.get(self, "locks")
|
862
|
+
|
768
863
|
@property
|
769
864
|
@pulumi.getter(name="recoveryPointTime")
|
770
865
|
def recovery_point_time(self) -> pulumi.Output[str]:
|
@@ -13,6 +13,8 @@ if sys.version_info >= (3, 11):
|
|
13
13
|
else:
|
14
14
|
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
15
15
|
from .. import _utilities
|
16
|
+
from . import outputs
|
17
|
+
from ._inputs import *
|
16
18
|
|
17
19
|
__all__ = ['SnapshotArgs', 'Snapshot']
|
18
20
|
|
@@ -23,6 +25,8 @@ class SnapshotArgs:
|
|
23
25
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
24
26
|
expiration_time: Optional[pulumi.Input[str]] = None,
|
25
27
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
28
|
+
is_lock_override: Optional[pulumi.Input[bool]] = None,
|
29
|
+
locks: Optional[pulumi.Input[Sequence[pulumi.Input['SnapshotLockArgs']]]] = None,
|
26
30
|
name: Optional[pulumi.Input[str]] = None):
|
27
31
|
"""
|
28
32
|
The set of arguments for constructing a Snapshot resource.
|
@@ -30,6 +34,7 @@ class SnapshotArgs:
|
|
30
34
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] 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"}`
|
31
35
|
:param pulumi.Input[str] expiration_time: (Updatable) The time when this snapshot will be deleted.
|
32
36
|
: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"}`
|
37
|
+
:param pulumi.Input[Sequence[pulumi.Input['SnapshotLockArgs']]] locks: Locks associated with this resource.
|
33
38
|
:param pulumi.Input[str] name: Name of the snapshot. This value is immutable. It must also be unique with respect to all other non-DELETED snapshots on the associated file system.
|
34
39
|
|
35
40
|
Avoid entering confidential information.
|
@@ -47,6 +52,10 @@ class SnapshotArgs:
|
|
47
52
|
pulumi.set(__self__, "expiration_time", expiration_time)
|
48
53
|
if freeform_tags is not None:
|
49
54
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
55
|
+
if is_lock_override is not None:
|
56
|
+
pulumi.set(__self__, "is_lock_override", is_lock_override)
|
57
|
+
if locks is not None:
|
58
|
+
pulumi.set(__self__, "locks", locks)
|
50
59
|
if name is not None:
|
51
60
|
pulumi.set(__self__, "name", name)
|
52
61
|
|
@@ -98,6 +107,27 @@ class SnapshotArgs:
|
|
98
107
|
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
99
108
|
pulumi.set(self, "freeform_tags", value)
|
100
109
|
|
110
|
+
@property
|
111
|
+
@pulumi.getter(name="isLockOverride")
|
112
|
+
def is_lock_override(self) -> Optional[pulumi.Input[bool]]:
|
113
|
+
return pulumi.get(self, "is_lock_override")
|
114
|
+
|
115
|
+
@is_lock_override.setter
|
116
|
+
def is_lock_override(self, value: Optional[pulumi.Input[bool]]):
|
117
|
+
pulumi.set(self, "is_lock_override", value)
|
118
|
+
|
119
|
+
@property
|
120
|
+
@pulumi.getter
|
121
|
+
def locks(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['SnapshotLockArgs']]]]:
|
122
|
+
"""
|
123
|
+
Locks associated with this resource.
|
124
|
+
"""
|
125
|
+
return pulumi.get(self, "locks")
|
126
|
+
|
127
|
+
@locks.setter
|
128
|
+
def locks(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['SnapshotLockArgs']]]]):
|
129
|
+
pulumi.set(self, "locks", value)
|
130
|
+
|
101
131
|
@property
|
102
132
|
@pulumi.getter
|
103
133
|
def name(self) -> Optional[pulumi.Input[str]]:
|
@@ -128,7 +158,9 @@ class _SnapshotState:
|
|
128
158
|
filesystem_snapshot_policy_id: Optional[pulumi.Input[str]] = None,
|
129
159
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
130
160
|
is_clone_source: Optional[pulumi.Input[bool]] = None,
|
161
|
+
is_lock_override: Optional[pulumi.Input[bool]] = None,
|
131
162
|
lifecycle_details: Optional[pulumi.Input[str]] = None,
|
163
|
+
locks: Optional[pulumi.Input[Sequence[pulumi.Input['SnapshotLockArgs']]]] = None,
|
132
164
|
name: Optional[pulumi.Input[str]] = None,
|
133
165
|
provenance_id: Optional[pulumi.Input[str]] = None,
|
134
166
|
snapshot_time: Optional[pulumi.Input[str]] = None,
|
@@ -144,6 +176,7 @@ class _SnapshotState:
|
|
144
176
|
: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"}`
|
145
177
|
:param pulumi.Input[bool] is_clone_source: Specifies whether the snapshot has been cloned. See [Cloning a File System](https://docs.cloud.oracle.com/iaas/Content/File/Tasks/cloningFS.htm).
|
146
178
|
:param pulumi.Input[str] lifecycle_details: Additional information about the current `lifecycleState`.
|
179
|
+
:param pulumi.Input[Sequence[pulumi.Input['SnapshotLockArgs']]] locks: Locks associated with this resource.
|
147
180
|
:param pulumi.Input[str] name: Name of the snapshot. This value is immutable. It must also be unique with respect to all other non-DELETED snapshots on the associated file system.
|
148
181
|
|
149
182
|
Avoid entering confidential information.
|
@@ -174,8 +207,12 @@ class _SnapshotState:
|
|
174
207
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
175
208
|
if is_clone_source is not None:
|
176
209
|
pulumi.set(__self__, "is_clone_source", is_clone_source)
|
210
|
+
if is_lock_override is not None:
|
211
|
+
pulumi.set(__self__, "is_lock_override", is_lock_override)
|
177
212
|
if lifecycle_details is not None:
|
178
213
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
214
|
+
if locks is not None:
|
215
|
+
pulumi.set(__self__, "locks", locks)
|
179
216
|
if name is not None:
|
180
217
|
pulumi.set(__self__, "name", name)
|
181
218
|
if provenance_id is not None:
|
@@ -261,6 +298,15 @@ class _SnapshotState:
|
|
261
298
|
def is_clone_source(self, value: Optional[pulumi.Input[bool]]):
|
262
299
|
pulumi.set(self, "is_clone_source", value)
|
263
300
|
|
301
|
+
@property
|
302
|
+
@pulumi.getter(name="isLockOverride")
|
303
|
+
def is_lock_override(self) -> Optional[pulumi.Input[bool]]:
|
304
|
+
return pulumi.get(self, "is_lock_override")
|
305
|
+
|
306
|
+
@is_lock_override.setter
|
307
|
+
def is_lock_override(self, value: Optional[pulumi.Input[bool]]):
|
308
|
+
pulumi.set(self, "is_lock_override", value)
|
309
|
+
|
264
310
|
@property
|
265
311
|
@pulumi.getter(name="lifecycleDetails")
|
266
312
|
def lifecycle_details(self) -> Optional[pulumi.Input[str]]:
|
@@ -273,6 +319,18 @@ class _SnapshotState:
|
|
273
319
|
def lifecycle_details(self, value: Optional[pulumi.Input[str]]):
|
274
320
|
pulumi.set(self, "lifecycle_details", value)
|
275
321
|
|
322
|
+
@property
|
323
|
+
@pulumi.getter
|
324
|
+
def locks(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['SnapshotLockArgs']]]]:
|
325
|
+
"""
|
326
|
+
Locks associated with this resource.
|
327
|
+
"""
|
328
|
+
return pulumi.get(self, "locks")
|
329
|
+
|
330
|
+
@locks.setter
|
331
|
+
def locks(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['SnapshotLockArgs']]]]):
|
332
|
+
pulumi.set(self, "locks", value)
|
333
|
+
|
276
334
|
@property
|
277
335
|
@pulumi.getter
|
278
336
|
def name(self) -> Optional[pulumi.Input[str]]:
|
@@ -366,6 +424,8 @@ class Snapshot(pulumi.CustomResource):
|
|
366
424
|
expiration_time: Optional[pulumi.Input[str]] = None,
|
367
425
|
file_system_id: Optional[pulumi.Input[str]] = None,
|
368
426
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
427
|
+
is_lock_override: Optional[pulumi.Input[bool]] = None,
|
428
|
+
locks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['SnapshotLockArgs', 'SnapshotLockArgsDict']]]]] = None,
|
369
429
|
name: Optional[pulumi.Input[str]] = None,
|
370
430
|
__props__=None):
|
371
431
|
"""
|
@@ -389,7 +449,13 @@ class Snapshot(pulumi.CustomResource):
|
|
389
449
|
expiration_time=snapshot_expiration_time,
|
390
450
|
freeform_tags={
|
391
451
|
"Department": "Finance",
|
392
|
-
}
|
452
|
+
},
|
453
|
+
locks=[{
|
454
|
+
"type": snapshot_locks_type,
|
455
|
+
"message": snapshot_locks_message,
|
456
|
+
"related_resource_id": test_resource["id"],
|
457
|
+
"time_created": snapshot_locks_time_created,
|
458
|
+
}])
|
393
459
|
```
|
394
460
|
|
395
461
|
## Import
|
@@ -406,6 +472,7 @@ class Snapshot(pulumi.CustomResource):
|
|
406
472
|
:param pulumi.Input[str] expiration_time: (Updatable) The time when this snapshot will be deleted.
|
407
473
|
:param pulumi.Input[str] file_system_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the file system to take a snapshot of.
|
408
474
|
: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"}`
|
475
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['SnapshotLockArgs', 'SnapshotLockArgsDict']]]] locks: Locks associated with this resource.
|
409
476
|
:param pulumi.Input[str] name: Name of the snapshot. This value is immutable. It must also be unique with respect to all other non-DELETED snapshots on the associated file system.
|
410
477
|
|
411
478
|
Avoid entering confidential information.
|
@@ -443,7 +510,13 @@ class Snapshot(pulumi.CustomResource):
|
|
443
510
|
expiration_time=snapshot_expiration_time,
|
444
511
|
freeform_tags={
|
445
512
|
"Department": "Finance",
|
446
|
-
}
|
513
|
+
},
|
514
|
+
locks=[{
|
515
|
+
"type": snapshot_locks_type,
|
516
|
+
"message": snapshot_locks_message,
|
517
|
+
"related_resource_id": test_resource["id"],
|
518
|
+
"time_created": snapshot_locks_time_created,
|
519
|
+
}])
|
447
520
|
```
|
448
521
|
|
449
522
|
## Import
|
@@ -473,6 +546,8 @@ class Snapshot(pulumi.CustomResource):
|
|
473
546
|
expiration_time: Optional[pulumi.Input[str]] = None,
|
474
547
|
file_system_id: Optional[pulumi.Input[str]] = None,
|
475
548
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
549
|
+
is_lock_override: Optional[pulumi.Input[bool]] = None,
|
550
|
+
locks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['SnapshotLockArgs', 'SnapshotLockArgsDict']]]]] = None,
|
476
551
|
name: Optional[pulumi.Input[str]] = None,
|
477
552
|
__props__=None):
|
478
553
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
@@ -489,6 +564,8 @@ class Snapshot(pulumi.CustomResource):
|
|
489
564
|
raise TypeError("Missing required property 'file_system_id'")
|
490
565
|
__props__.__dict__["file_system_id"] = file_system_id
|
491
566
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
567
|
+
__props__.__dict__["is_lock_override"] = is_lock_override
|
568
|
+
__props__.__dict__["locks"] = locks
|
492
569
|
__props__.__dict__["name"] = name
|
493
570
|
__props__.__dict__["filesystem_snapshot_policy_id"] = None
|
494
571
|
__props__.__dict__["is_clone_source"] = None
|
@@ -514,7 +591,9 @@ class Snapshot(pulumi.CustomResource):
|
|
514
591
|
filesystem_snapshot_policy_id: Optional[pulumi.Input[str]] = None,
|
515
592
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
516
593
|
is_clone_source: Optional[pulumi.Input[bool]] = None,
|
594
|
+
is_lock_override: Optional[pulumi.Input[bool]] = None,
|
517
595
|
lifecycle_details: Optional[pulumi.Input[str]] = None,
|
596
|
+
locks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['SnapshotLockArgs', 'SnapshotLockArgsDict']]]]] = None,
|
518
597
|
name: Optional[pulumi.Input[str]] = None,
|
519
598
|
provenance_id: Optional[pulumi.Input[str]] = None,
|
520
599
|
snapshot_time: Optional[pulumi.Input[str]] = None,
|
@@ -535,6 +614,7 @@ class Snapshot(pulumi.CustomResource):
|
|
535
614
|
: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"}`
|
536
615
|
:param pulumi.Input[bool] is_clone_source: Specifies whether the snapshot has been cloned. See [Cloning a File System](https://docs.cloud.oracle.com/iaas/Content/File/Tasks/cloningFS.htm).
|
537
616
|
:param pulumi.Input[str] lifecycle_details: Additional information about the current `lifecycleState`.
|
617
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['SnapshotLockArgs', 'SnapshotLockArgsDict']]]] locks: Locks associated with this resource.
|
538
618
|
:param pulumi.Input[str] name: Name of the snapshot. This value is immutable. It must also be unique with respect to all other non-DELETED snapshots on the associated file system.
|
539
619
|
|
540
620
|
Avoid entering confidential information.
|
@@ -563,7 +643,9 @@ class Snapshot(pulumi.CustomResource):
|
|
563
643
|
__props__.__dict__["filesystem_snapshot_policy_id"] = filesystem_snapshot_policy_id
|
564
644
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
565
645
|
__props__.__dict__["is_clone_source"] = is_clone_source
|
646
|
+
__props__.__dict__["is_lock_override"] = is_lock_override
|
566
647
|
__props__.__dict__["lifecycle_details"] = lifecycle_details
|
648
|
+
__props__.__dict__["locks"] = locks
|
567
649
|
__props__.__dict__["name"] = name
|
568
650
|
__props__.__dict__["provenance_id"] = provenance_id
|
569
651
|
__props__.__dict__["snapshot_time"] = snapshot_time
|
@@ -620,6 +702,11 @@ class Snapshot(pulumi.CustomResource):
|
|
620
702
|
"""
|
621
703
|
return pulumi.get(self, "is_clone_source")
|
622
704
|
|
705
|
+
@property
|
706
|
+
@pulumi.getter(name="isLockOverride")
|
707
|
+
def is_lock_override(self) -> pulumi.Output[bool]:
|
708
|
+
return pulumi.get(self, "is_lock_override")
|
709
|
+
|
623
710
|
@property
|
624
711
|
@pulumi.getter(name="lifecycleDetails")
|
625
712
|
def lifecycle_details(self) -> pulumi.Output[str]:
|
@@ -628,6 +715,14 @@ class Snapshot(pulumi.CustomResource):
|
|
628
715
|
"""
|
629
716
|
return pulumi.get(self, "lifecycle_details")
|
630
717
|
|
718
|
+
@property
|
719
|
+
@pulumi.getter
|
720
|
+
def locks(self) -> pulumi.Output[Sequence['outputs.SnapshotLock']]:
|
721
|
+
"""
|
722
|
+
Locks associated with this resource.
|
723
|
+
"""
|
724
|
+
return pulumi.get(self, "locks")
|
725
|
+
|
631
726
|
@property
|
632
727
|
@pulumi.getter
|
633
728
|
def name(self) -> pulumi.Output[str]:
|
@@ -401,6 +401,7 @@ class _DomainsAuthTokenState:
|
|
401
401
|
status: Optional[pulumi.Input[str]] = None,
|
402
402
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input['DomainsAuthTokenTagArgs']]]] = None,
|
403
403
|
tenancy_ocid: Optional[pulumi.Input[str]] = None,
|
404
|
+
token: Optional[pulumi.Input[str]] = None,
|
404
405
|
urnietfparamsscimschemasoracleidcsextensionself_change_user: Optional[pulumi.Input['DomainsAuthTokenUrnietfparamsscimschemasoracleidcsextensionselfChangeUserArgs']] = None,
|
405
406
|
user: Optional[pulumi.Input['DomainsAuthTokenUserArgs']] = None):
|
406
407
|
"""
|
@@ -573,6 +574,17 @@ class _DomainsAuthTokenState:
|
|
573
574
|
* returned: default
|
574
575
|
* type: string
|
575
576
|
* uniqueness: none
|
577
|
+
:param pulumi.Input[str] token: (Updatable) token
|
578
|
+
|
579
|
+
**Added In:** 2010242156
|
580
|
+
|
581
|
+
**SCIM++ Properties:**
|
582
|
+
* caseExact: true
|
583
|
+
* type: string
|
584
|
+
* mutability: readOnly
|
585
|
+
* required: false
|
586
|
+
* returned: default
|
587
|
+
* idcsSensitive: hash_sc
|
576
588
|
:param pulumi.Input['DomainsAuthTokenUrnietfparamsscimschemasoracleidcsextensionselfChangeUserArgs'] urnietfparamsscimschemasoracleidcsextensionself_change_user: Controls whether a user can update themselves or not via User related APIs
|
577
589
|
:param pulumi.Input['DomainsAuthTokenUserArgs'] user: The user linked to the Auth token.
|
578
590
|
|
@@ -626,6 +638,8 @@ class _DomainsAuthTokenState:
|
|
626
638
|
pulumi.set(__self__, "tags", tags)
|
627
639
|
if tenancy_ocid is not None:
|
628
640
|
pulumi.set(__self__, "tenancy_ocid", tenancy_ocid)
|
641
|
+
if token is not None:
|
642
|
+
pulumi.set(__self__, "token", token)
|
629
643
|
if urnietfparamsscimschemasoracleidcsextensionself_change_user is not None:
|
630
644
|
pulumi.set(__self__, "urnietfparamsscimschemasoracleidcsextensionself_change_user", urnietfparamsscimschemasoracleidcsextensionself_change_user)
|
631
645
|
if user is not None:
|
@@ -1019,6 +1033,28 @@ class _DomainsAuthTokenState:
|
|
1019
1033
|
def tenancy_ocid(self, value: Optional[pulumi.Input[str]]):
|
1020
1034
|
pulumi.set(self, "tenancy_ocid", value)
|
1021
1035
|
|
1036
|
+
@property
|
1037
|
+
@pulumi.getter
|
1038
|
+
def token(self) -> Optional[pulumi.Input[str]]:
|
1039
|
+
"""
|
1040
|
+
(Updatable) token
|
1041
|
+
|
1042
|
+
**Added In:** 2010242156
|
1043
|
+
|
1044
|
+
**SCIM++ Properties:**
|
1045
|
+
* caseExact: true
|
1046
|
+
* type: string
|
1047
|
+
* mutability: readOnly
|
1048
|
+
* required: false
|
1049
|
+
* returned: default
|
1050
|
+
* idcsSensitive: hash_sc
|
1051
|
+
"""
|
1052
|
+
return pulumi.get(self, "token")
|
1053
|
+
|
1054
|
+
@token.setter
|
1055
|
+
def token(self, value: Optional[pulumi.Input[str]]):
|
1056
|
+
pulumi.set(self, "token", value)
|
1057
|
+
|
1022
1058
|
@property
|
1023
1059
|
@pulumi.getter(name="urnietfparamsscimschemasoracleidcsextensionselfChangeUser")
|
1024
1060
|
def urnietfparamsscimschemasoracleidcsextensionself_change_user(self) -> Optional[pulumi.Input['DomainsAuthTokenUrnietfparamsscimschemasoracleidcsextensionselfChangeUserArgs']]:
|
@@ -1257,6 +1293,7 @@ class DomainsAuthToken(pulumi.CustomResource):
|
|
1257
1293
|
__props__.__dict__["idcs_prevented_operations"] = None
|
1258
1294
|
__props__.__dict__["metas"] = None
|
1259
1295
|
__props__.__dict__["tenancy_ocid"] = None
|
1296
|
+
__props__.__dict__["token"] = None
|
1260
1297
|
super(DomainsAuthToken, __self__).__init__(
|
1261
1298
|
'oci:Identity/domainsAuthToken:DomainsAuthToken',
|
1262
1299
|
resource_name,
|
@@ -1287,6 +1324,7 @@ class DomainsAuthToken(pulumi.CustomResource):
|
|
1287
1324
|
status: Optional[pulumi.Input[str]] = None,
|
1288
1325
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DomainsAuthTokenTagArgs', 'DomainsAuthTokenTagArgsDict']]]]] = None,
|
1289
1326
|
tenancy_ocid: Optional[pulumi.Input[str]] = None,
|
1327
|
+
token: Optional[pulumi.Input[str]] = None,
|
1290
1328
|
urnietfparamsscimschemasoracleidcsextensionself_change_user: Optional[pulumi.Input[Union['DomainsAuthTokenUrnietfparamsscimschemasoracleidcsextensionselfChangeUserArgs', 'DomainsAuthTokenUrnietfparamsscimschemasoracleidcsextensionselfChangeUserArgsDict']]] = None,
|
1291
1329
|
user: Optional[pulumi.Input[Union['DomainsAuthTokenUserArgs', 'DomainsAuthTokenUserArgsDict']]] = None) -> 'DomainsAuthToken':
|
1292
1330
|
"""
|
@@ -1464,6 +1502,17 @@ class DomainsAuthToken(pulumi.CustomResource):
|
|
1464
1502
|
* returned: default
|
1465
1503
|
* type: string
|
1466
1504
|
* uniqueness: none
|
1505
|
+
:param pulumi.Input[str] token: (Updatable) token
|
1506
|
+
|
1507
|
+
**Added In:** 2010242156
|
1508
|
+
|
1509
|
+
**SCIM++ Properties:**
|
1510
|
+
* caseExact: true
|
1511
|
+
* type: string
|
1512
|
+
* mutability: readOnly
|
1513
|
+
* required: false
|
1514
|
+
* returned: default
|
1515
|
+
* idcsSensitive: hash_sc
|
1467
1516
|
:param pulumi.Input[Union['DomainsAuthTokenUrnietfparamsscimschemasoracleidcsextensionselfChangeUserArgs', 'DomainsAuthTokenUrnietfparamsscimschemasoracleidcsextensionselfChangeUserArgsDict']] urnietfparamsscimschemasoracleidcsextensionself_change_user: Controls whether a user can update themselves or not via User related APIs
|
1468
1517
|
:param pulumi.Input[Union['DomainsAuthTokenUserArgs', 'DomainsAuthTokenUserArgsDict']] user: The user linked to the Auth token.
|
1469
1518
|
|
@@ -1501,6 +1550,7 @@ class DomainsAuthToken(pulumi.CustomResource):
|
|
1501
1550
|
__props__.__dict__["status"] = status
|
1502
1551
|
__props__.__dict__["tags"] = tags
|
1503
1552
|
__props__.__dict__["tenancy_ocid"] = tenancy_ocid
|
1553
|
+
__props__.__dict__["token"] = token
|
1504
1554
|
__props__.__dict__["urnietfparamsscimschemasoracleidcsextensionself_change_user"] = urnietfparamsscimschemasoracleidcsextensionself_change_user
|
1505
1555
|
__props__.__dict__["user"] = user
|
1506
1556
|
return DomainsAuthToken(resource_name, opts=opts, __props__=__props__)
|
@@ -1813,6 +1863,24 @@ class DomainsAuthToken(pulumi.CustomResource):
|
|
1813
1863
|
"""
|
1814
1864
|
return pulumi.get(self, "tenancy_ocid")
|
1815
1865
|
|
1866
|
+
@property
|
1867
|
+
@pulumi.getter
|
1868
|
+
def token(self) -> pulumi.Output[str]:
|
1869
|
+
"""
|
1870
|
+
(Updatable) token
|
1871
|
+
|
1872
|
+
**Added In:** 2010242156
|
1873
|
+
|
1874
|
+
**SCIM++ Properties:**
|
1875
|
+
* caseExact: true
|
1876
|
+
* type: string
|
1877
|
+
* mutability: readOnly
|
1878
|
+
* required: false
|
1879
|
+
* returned: default
|
1880
|
+
* idcsSensitive: hash_sc
|
1881
|
+
"""
|
1882
|
+
return pulumi.get(self, "token")
|
1883
|
+
|
1816
1884
|
@property
|
1817
1885
|
@pulumi.getter(name="urnietfparamsscimschemasoracleidcsextensionselfChangeUser")
|
1818
1886
|
def urnietfparamsscimschemasoracleidcsextensionself_change_user(self) -> pulumi.Output['outputs.DomainsAuthTokenUrnietfparamsscimschemasoracleidcsextensionselfChangeUser']:
|