pulumi-oci 2.14.0a1730182164__py3-none-any.whl → 2.14.0a1730198001__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 +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/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/datascience/_inputs.py +353 -0
- pulumi_oci/datascience/get_model.py +85 -1
- pulumi_oci/datascience/get_models.py +5 -0
- pulumi_oci/datascience/model.py +206 -66
- pulumi_oci/datascience/outputs.py +759 -0
- 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/networkloadbalancer/get_network_load_balancer.py +15 -1
- pulumi_oci/networkloadbalancer/network_load_balancer.py +47 -0
- pulumi_oci/networkloadbalancer/outputs.py +11 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-2.14.0a1730182164.dist-info → pulumi_oci-2.14.0a1730198001.dist-info}/METADATA +1 -1
- {pulumi_oci-2.14.0a1730182164.dist-info → pulumi_oci-2.14.0a1730198001.dist-info}/RECORD +39 -39
- {pulumi_oci-2.14.0a1730182164.dist-info → pulumi_oci-2.14.0a1730198001.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.14.0a1730182164.dist-info → pulumi_oci-2.14.0a1730198001.dist-info}/top_level.txt +0 -0
@@ -26,6 +26,8 @@ class FilesystemSnapshotPolicyArgs:
|
|
26
26
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
27
27
|
display_name: Optional[pulumi.Input[str]] = None,
|
28
28
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
29
|
+
is_lock_override: Optional[pulumi.Input[bool]] = None,
|
30
|
+
locks: Optional[pulumi.Input[Sequence[pulumi.Input['FilesystemSnapshotPolicyLockArgs']]]] = None,
|
29
31
|
policy_prefix: Optional[pulumi.Input[str]] = None,
|
30
32
|
schedules: Optional[pulumi.Input[Sequence[pulumi.Input['FilesystemSnapshotPolicyScheduleArgs']]]] = None,
|
31
33
|
state: Optional[pulumi.Input[str]] = None):
|
@@ -36,6 +38,7 @@ class FilesystemSnapshotPolicyArgs:
|
|
36
38
|
: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"}`
|
37
39
|
:param pulumi.Input[str] display_name: (Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: `policy1`
|
38
40
|
: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"}`
|
41
|
+
:param pulumi.Input[Sequence[pulumi.Input['FilesystemSnapshotPolicyLockArgs']]] locks: Locks associated with this resource.
|
39
42
|
:param pulumi.Input[str] policy_prefix: (Updatable) The prefix to apply to all snapshots created by this policy. Example: `acme`
|
40
43
|
:param pulumi.Input[Sequence[pulumi.Input['FilesystemSnapshotPolicyScheduleArgs']]] schedules: (Updatable) The list of associated snapshot schedules. A maximum of 10 schedules can be associated with a policy.
|
41
44
|
|
@@ -54,6 +57,10 @@ class FilesystemSnapshotPolicyArgs:
|
|
54
57
|
pulumi.set(__self__, "display_name", display_name)
|
55
58
|
if freeform_tags is not None:
|
56
59
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
60
|
+
if is_lock_override is not None:
|
61
|
+
pulumi.set(__self__, "is_lock_override", is_lock_override)
|
62
|
+
if locks is not None:
|
63
|
+
pulumi.set(__self__, "locks", locks)
|
57
64
|
if policy_prefix is not None:
|
58
65
|
pulumi.set(__self__, "policy_prefix", policy_prefix)
|
59
66
|
if schedules is not None:
|
@@ -121,6 +128,27 @@ class FilesystemSnapshotPolicyArgs:
|
|
121
128
|
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
122
129
|
pulumi.set(self, "freeform_tags", value)
|
123
130
|
|
131
|
+
@property
|
132
|
+
@pulumi.getter(name="isLockOverride")
|
133
|
+
def is_lock_override(self) -> Optional[pulumi.Input[bool]]:
|
134
|
+
return pulumi.get(self, "is_lock_override")
|
135
|
+
|
136
|
+
@is_lock_override.setter
|
137
|
+
def is_lock_override(self, value: Optional[pulumi.Input[bool]]):
|
138
|
+
pulumi.set(self, "is_lock_override", value)
|
139
|
+
|
140
|
+
@property
|
141
|
+
@pulumi.getter
|
142
|
+
def locks(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['FilesystemSnapshotPolicyLockArgs']]]]:
|
143
|
+
"""
|
144
|
+
Locks associated with this resource.
|
145
|
+
"""
|
146
|
+
return pulumi.get(self, "locks")
|
147
|
+
|
148
|
+
@locks.setter
|
149
|
+
def locks(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['FilesystemSnapshotPolicyLockArgs']]]]):
|
150
|
+
pulumi.set(self, "locks", value)
|
151
|
+
|
124
152
|
@property
|
125
153
|
@pulumi.getter(name="policyPrefix")
|
126
154
|
def policy_prefix(self) -> Optional[pulumi.Input[str]]:
|
@@ -172,6 +200,8 @@ class _FilesystemSnapshotPolicyState:
|
|
172
200
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
173
201
|
display_name: Optional[pulumi.Input[str]] = None,
|
174
202
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
203
|
+
is_lock_override: Optional[pulumi.Input[bool]] = None,
|
204
|
+
locks: Optional[pulumi.Input[Sequence[pulumi.Input['FilesystemSnapshotPolicyLockArgs']]]] = None,
|
175
205
|
policy_prefix: Optional[pulumi.Input[str]] = None,
|
176
206
|
schedules: Optional[pulumi.Input[Sequence[pulumi.Input['FilesystemSnapshotPolicyScheduleArgs']]]] = None,
|
177
207
|
state: Optional[pulumi.Input[str]] = None,
|
@@ -183,6 +213,7 @@ class _FilesystemSnapshotPolicyState:
|
|
183
213
|
: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"}`
|
184
214
|
:param pulumi.Input[str] display_name: (Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: `policy1`
|
185
215
|
: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"}`
|
216
|
+
:param pulumi.Input[Sequence[pulumi.Input['FilesystemSnapshotPolicyLockArgs']]] locks: Locks associated with this resource.
|
186
217
|
:param pulumi.Input[str] policy_prefix: (Updatable) The prefix to apply to all snapshots created by this policy. Example: `acme`
|
187
218
|
:param pulumi.Input[Sequence[pulumi.Input['FilesystemSnapshotPolicyScheduleArgs']]] schedules: (Updatable) The list of associated snapshot schedules. A maximum of 10 schedules can be associated with a policy.
|
188
219
|
|
@@ -204,6 +235,10 @@ class _FilesystemSnapshotPolicyState:
|
|
204
235
|
pulumi.set(__self__, "display_name", display_name)
|
205
236
|
if freeform_tags is not None:
|
206
237
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
238
|
+
if is_lock_override is not None:
|
239
|
+
pulumi.set(__self__, "is_lock_override", is_lock_override)
|
240
|
+
if locks is not None:
|
241
|
+
pulumi.set(__self__, "locks", locks)
|
207
242
|
if policy_prefix is not None:
|
208
243
|
pulumi.set(__self__, "policy_prefix", policy_prefix)
|
209
244
|
if schedules is not None:
|
@@ -273,6 +308,27 @@ class _FilesystemSnapshotPolicyState:
|
|
273
308
|
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
274
309
|
pulumi.set(self, "freeform_tags", value)
|
275
310
|
|
311
|
+
@property
|
312
|
+
@pulumi.getter(name="isLockOverride")
|
313
|
+
def is_lock_override(self) -> Optional[pulumi.Input[bool]]:
|
314
|
+
return pulumi.get(self, "is_lock_override")
|
315
|
+
|
316
|
+
@is_lock_override.setter
|
317
|
+
def is_lock_override(self, value: Optional[pulumi.Input[bool]]):
|
318
|
+
pulumi.set(self, "is_lock_override", value)
|
319
|
+
|
320
|
+
@property
|
321
|
+
@pulumi.getter
|
322
|
+
def locks(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['FilesystemSnapshotPolicyLockArgs']]]]:
|
323
|
+
"""
|
324
|
+
Locks associated with this resource.
|
325
|
+
"""
|
326
|
+
return pulumi.get(self, "locks")
|
327
|
+
|
328
|
+
@locks.setter
|
329
|
+
def locks(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['FilesystemSnapshotPolicyLockArgs']]]]):
|
330
|
+
pulumi.set(self, "locks", value)
|
331
|
+
|
276
332
|
@property
|
277
333
|
@pulumi.getter(name="policyPrefix")
|
278
334
|
def policy_prefix(self) -> Optional[pulumi.Input[str]]:
|
@@ -338,6 +394,8 @@ class FilesystemSnapshotPolicy(pulumi.CustomResource):
|
|
338
394
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
339
395
|
display_name: Optional[pulumi.Input[str]] = None,
|
340
396
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
397
|
+
is_lock_override: Optional[pulumi.Input[bool]] = None,
|
398
|
+
locks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['FilesystemSnapshotPolicyLockArgs', 'FilesystemSnapshotPolicyLockArgsDict']]]]] = None,
|
341
399
|
policy_prefix: Optional[pulumi.Input[str]] = None,
|
342
400
|
schedules: Optional[pulumi.Input[Sequence[pulumi.Input[Union['FilesystemSnapshotPolicyScheduleArgs', 'FilesystemSnapshotPolicyScheduleArgsDict']]]]] = None,
|
343
401
|
state: Optional[pulumi.Input[str]] = None,
|
@@ -367,6 +425,12 @@ class FilesystemSnapshotPolicy(pulumi.CustomResource):
|
|
367
425
|
freeform_tags={
|
368
426
|
"Department": "Finance",
|
369
427
|
},
|
428
|
+
locks=[{
|
429
|
+
"type": filesystem_snapshot_policy_locks_type,
|
430
|
+
"message": filesystem_snapshot_policy_locks_message,
|
431
|
+
"related_resource_id": test_resource["id"],
|
432
|
+
"time_created": filesystem_snapshot_policy_locks_time_created,
|
433
|
+
}],
|
370
434
|
policy_prefix=filesystem_snapshot_policy_policy_prefix,
|
371
435
|
schedules=[{
|
372
436
|
"period": filesystem_snapshot_policy_schedules_period,
|
@@ -396,6 +460,7 @@ class FilesystemSnapshotPolicy(pulumi.CustomResource):
|
|
396
460
|
: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"}`
|
397
461
|
:param pulumi.Input[str] display_name: (Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: `policy1`
|
398
462
|
: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"}`
|
463
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['FilesystemSnapshotPolicyLockArgs', 'FilesystemSnapshotPolicyLockArgsDict']]]] locks: Locks associated with this resource.
|
399
464
|
:param pulumi.Input[str] policy_prefix: (Updatable) The prefix to apply to all snapshots created by this policy. Example: `acme`
|
400
465
|
:param pulumi.Input[Sequence[pulumi.Input[Union['FilesystemSnapshotPolicyScheduleArgs', 'FilesystemSnapshotPolicyScheduleArgsDict']]]] schedules: (Updatable) The list of associated snapshot schedules. A maximum of 10 schedules can be associated with a policy.
|
401
466
|
|
@@ -437,6 +502,12 @@ class FilesystemSnapshotPolicy(pulumi.CustomResource):
|
|
437
502
|
freeform_tags={
|
438
503
|
"Department": "Finance",
|
439
504
|
},
|
505
|
+
locks=[{
|
506
|
+
"type": filesystem_snapshot_policy_locks_type,
|
507
|
+
"message": filesystem_snapshot_policy_locks_message,
|
508
|
+
"related_resource_id": test_resource["id"],
|
509
|
+
"time_created": filesystem_snapshot_policy_locks_time_created,
|
510
|
+
}],
|
440
511
|
policy_prefix=filesystem_snapshot_policy_policy_prefix,
|
441
512
|
schedules=[{
|
442
513
|
"period": filesystem_snapshot_policy_schedules_period,
|
@@ -479,6 +550,8 @@ class FilesystemSnapshotPolicy(pulumi.CustomResource):
|
|
479
550
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
480
551
|
display_name: Optional[pulumi.Input[str]] = None,
|
481
552
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
553
|
+
is_lock_override: Optional[pulumi.Input[bool]] = None,
|
554
|
+
locks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['FilesystemSnapshotPolicyLockArgs', 'FilesystemSnapshotPolicyLockArgsDict']]]]] = None,
|
482
555
|
policy_prefix: Optional[pulumi.Input[str]] = None,
|
483
556
|
schedules: Optional[pulumi.Input[Sequence[pulumi.Input[Union['FilesystemSnapshotPolicyScheduleArgs', 'FilesystemSnapshotPolicyScheduleArgsDict']]]]] = None,
|
484
557
|
state: Optional[pulumi.Input[str]] = None,
|
@@ -500,6 +573,8 @@ class FilesystemSnapshotPolicy(pulumi.CustomResource):
|
|
500
573
|
__props__.__dict__["defined_tags"] = defined_tags
|
501
574
|
__props__.__dict__["display_name"] = display_name
|
502
575
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
576
|
+
__props__.__dict__["is_lock_override"] = is_lock_override
|
577
|
+
__props__.__dict__["locks"] = locks
|
503
578
|
__props__.__dict__["policy_prefix"] = policy_prefix
|
504
579
|
__props__.__dict__["schedules"] = schedules
|
505
580
|
__props__.__dict__["state"] = state
|
@@ -519,6 +594,8 @@ class FilesystemSnapshotPolicy(pulumi.CustomResource):
|
|
519
594
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
520
595
|
display_name: Optional[pulumi.Input[str]] = None,
|
521
596
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
597
|
+
is_lock_override: Optional[pulumi.Input[bool]] = None,
|
598
|
+
locks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['FilesystemSnapshotPolicyLockArgs', 'FilesystemSnapshotPolicyLockArgsDict']]]]] = None,
|
522
599
|
policy_prefix: Optional[pulumi.Input[str]] = None,
|
523
600
|
schedules: Optional[pulumi.Input[Sequence[pulumi.Input[Union['FilesystemSnapshotPolicyScheduleArgs', 'FilesystemSnapshotPolicyScheduleArgsDict']]]]] = None,
|
524
601
|
state: Optional[pulumi.Input[str]] = None,
|
@@ -535,6 +612,7 @@ class FilesystemSnapshotPolicy(pulumi.CustomResource):
|
|
535
612
|
: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"}`
|
536
613
|
:param pulumi.Input[str] display_name: (Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: `policy1`
|
537
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"}`
|
615
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['FilesystemSnapshotPolicyLockArgs', 'FilesystemSnapshotPolicyLockArgsDict']]]] locks: Locks associated with this resource.
|
538
616
|
:param pulumi.Input[str] policy_prefix: (Updatable) The prefix to apply to all snapshots created by this policy. Example: `acme`
|
539
617
|
:param pulumi.Input[Sequence[pulumi.Input[Union['FilesystemSnapshotPolicyScheduleArgs', 'FilesystemSnapshotPolicyScheduleArgsDict']]]] schedules: (Updatable) The list of associated snapshot schedules. A maximum of 10 schedules can be associated with a policy.
|
540
618
|
|
@@ -555,6 +633,8 @@ class FilesystemSnapshotPolicy(pulumi.CustomResource):
|
|
555
633
|
__props__.__dict__["defined_tags"] = defined_tags
|
556
634
|
__props__.__dict__["display_name"] = display_name
|
557
635
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
636
|
+
__props__.__dict__["is_lock_override"] = is_lock_override
|
637
|
+
__props__.__dict__["locks"] = locks
|
558
638
|
__props__.__dict__["policy_prefix"] = policy_prefix
|
559
639
|
__props__.__dict__["schedules"] = schedules
|
560
640
|
__props__.__dict__["state"] = state
|
@@ -601,6 +681,19 @@ class FilesystemSnapshotPolicy(pulumi.CustomResource):
|
|
601
681
|
"""
|
602
682
|
return pulumi.get(self, "freeform_tags")
|
603
683
|
|
684
|
+
@property
|
685
|
+
@pulumi.getter(name="isLockOverride")
|
686
|
+
def is_lock_override(self) -> pulumi.Output[bool]:
|
687
|
+
return pulumi.get(self, "is_lock_override")
|
688
|
+
|
689
|
+
@property
|
690
|
+
@pulumi.getter
|
691
|
+
def locks(self) -> pulumi.Output[Sequence['outputs.FilesystemSnapshotPolicyLock']]:
|
692
|
+
"""
|
693
|
+
Locks associated with this resource.
|
694
|
+
"""
|
695
|
+
return pulumi.get(self, "locks")
|
696
|
+
|
604
697
|
@property
|
605
698
|
@pulumi.getter(name="policyPrefix")
|
606
699
|
def policy_prefix(self) -> pulumi.Output[str]:
|
@@ -27,7 +27,7 @@ class GetFilesystemSnapshotPolicyResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getFilesystemSnapshotPolicy.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, availability_domain=None, compartment_id=None, defined_tags=None, display_name=None, filesystem_snapshot_policy_id=None, freeform_tags=None, id=None, policy_prefix=None, schedules=None, state=None, time_created=None):
|
30
|
+
def __init__(__self__, availability_domain=None, compartment_id=None, defined_tags=None, display_name=None, filesystem_snapshot_policy_id=None, freeform_tags=None, id=None, is_lock_override=None, locks=None, policy_prefix=None, schedules=None, state=None, time_created=None):
|
31
31
|
if availability_domain and not isinstance(availability_domain, str):
|
32
32
|
raise TypeError("Expected argument 'availability_domain' to be a str")
|
33
33
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
@@ -49,6 +49,12 @@ class GetFilesystemSnapshotPolicyResult:
|
|
49
49
|
if id and not isinstance(id, str):
|
50
50
|
raise TypeError("Expected argument 'id' to be a str")
|
51
51
|
pulumi.set(__self__, "id", id)
|
52
|
+
if is_lock_override and not isinstance(is_lock_override, bool):
|
53
|
+
raise TypeError("Expected argument 'is_lock_override' to be a bool")
|
54
|
+
pulumi.set(__self__, "is_lock_override", is_lock_override)
|
55
|
+
if locks and not isinstance(locks, list):
|
56
|
+
raise TypeError("Expected argument 'locks' to be a list")
|
57
|
+
pulumi.set(__self__, "locks", locks)
|
52
58
|
if policy_prefix and not isinstance(policy_prefix, str):
|
53
59
|
raise TypeError("Expected argument 'policy_prefix' to be a str")
|
54
60
|
pulumi.set(__self__, "policy_prefix", policy_prefix)
|
@@ -115,6 +121,19 @@ class GetFilesystemSnapshotPolicyResult:
|
|
115
121
|
"""
|
116
122
|
return pulumi.get(self, "id")
|
117
123
|
|
124
|
+
@property
|
125
|
+
@pulumi.getter(name="isLockOverride")
|
126
|
+
def is_lock_override(self) -> bool:
|
127
|
+
return pulumi.get(self, "is_lock_override")
|
128
|
+
|
129
|
+
@property
|
130
|
+
@pulumi.getter
|
131
|
+
def locks(self) -> Sequence['outputs.GetFilesystemSnapshotPolicyLockResult']:
|
132
|
+
"""
|
133
|
+
Locks associated with this resource.
|
134
|
+
"""
|
135
|
+
return pulumi.get(self, "locks")
|
136
|
+
|
118
137
|
@property
|
119
138
|
@pulumi.getter(name="policyPrefix")
|
120
139
|
def policy_prefix(self) -> str:
|
@@ -161,6 +180,8 @@ class AwaitableGetFilesystemSnapshotPolicyResult(GetFilesystemSnapshotPolicyResu
|
|
161
180
|
filesystem_snapshot_policy_id=self.filesystem_snapshot_policy_id,
|
162
181
|
freeform_tags=self.freeform_tags,
|
163
182
|
id=self.id,
|
183
|
+
is_lock_override=self.is_lock_override,
|
184
|
+
locks=self.locks,
|
164
185
|
policy_prefix=self.policy_prefix,
|
165
186
|
schedules=self.schedules,
|
166
187
|
state=self.state,
|
@@ -199,6 +220,8 @@ def get_filesystem_snapshot_policy(filesystem_snapshot_policy_id: Optional[str]
|
|
199
220
|
filesystem_snapshot_policy_id=pulumi.get(__ret__, 'filesystem_snapshot_policy_id'),
|
200
221
|
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
201
222
|
id=pulumi.get(__ret__, 'id'),
|
223
|
+
is_lock_override=pulumi.get(__ret__, 'is_lock_override'),
|
224
|
+
locks=pulumi.get(__ret__, 'locks'),
|
202
225
|
policy_prefix=pulumi.get(__ret__, 'policy_prefix'),
|
203
226
|
schedules=pulumi.get(__ret__, 'schedules'),
|
204
227
|
state=pulumi.get(__ret__, 'state'),
|
@@ -234,6 +257,8 @@ def get_filesystem_snapshot_policy_output(filesystem_snapshot_policy_id: Optiona
|
|
234
257
|
filesystem_snapshot_policy_id=pulumi.get(__response__, 'filesystem_snapshot_policy_id'),
|
235
258
|
freeform_tags=pulumi.get(__response__, 'freeform_tags'),
|
236
259
|
id=pulumi.get(__response__, 'id'),
|
260
|
+
is_lock_override=pulumi.get(__response__, 'is_lock_override'),
|
261
|
+
locks=pulumi.get(__response__, 'locks'),
|
237
262
|
policy_prefix=pulumi.get(__response__, 'policy_prefix'),
|
238
263
|
schedules=pulumi.get(__response__, 'schedules'),
|
239
264
|
state=pulumi.get(__response__, 'state'),
|
@@ -27,7 +27,7 @@ class GetOutboundConnectorResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getOutboundConnector.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, availability_domain=None, bind_distinguished_name=None, compartment_id=None, connector_type=None, defined_tags=None, display_name=None, endpoints=None, freeform_tags=None, id=None, outbound_connector_id=None, password_secret_id=None, password_secret_version=None, state=None, time_created=None):
|
30
|
+
def __init__(__self__, availability_domain=None, bind_distinguished_name=None, compartment_id=None, connector_type=None, defined_tags=None, display_name=None, endpoints=None, freeform_tags=None, id=None, is_lock_override=None, locks=None, outbound_connector_id=None, password_secret_id=None, password_secret_version=None, state=None, time_created=None):
|
31
31
|
if availability_domain and not isinstance(availability_domain, str):
|
32
32
|
raise TypeError("Expected argument 'availability_domain' to be a str")
|
33
33
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
@@ -55,6 +55,12 @@ class GetOutboundConnectorResult:
|
|
55
55
|
if id and not isinstance(id, str):
|
56
56
|
raise TypeError("Expected argument 'id' to be a str")
|
57
57
|
pulumi.set(__self__, "id", id)
|
58
|
+
if is_lock_override and not isinstance(is_lock_override, bool):
|
59
|
+
raise TypeError("Expected argument 'is_lock_override' to be a bool")
|
60
|
+
pulumi.set(__self__, "is_lock_override", is_lock_override)
|
61
|
+
if locks and not isinstance(locks, list):
|
62
|
+
raise TypeError("Expected argument 'locks' to be a list")
|
63
|
+
pulumi.set(__self__, "locks", locks)
|
58
64
|
if outbound_connector_id and not isinstance(outbound_connector_id, str):
|
59
65
|
raise TypeError("Expected argument 'outbound_connector_id' to be a str")
|
60
66
|
pulumi.set(__self__, "outbound_connector_id", outbound_connector_id)
|
@@ -143,6 +149,19 @@ class GetOutboundConnectorResult:
|
|
143
149
|
"""
|
144
150
|
return pulumi.get(self, "id")
|
145
151
|
|
152
|
+
@property
|
153
|
+
@pulumi.getter(name="isLockOverride")
|
154
|
+
def is_lock_override(self) -> bool:
|
155
|
+
return pulumi.get(self, "is_lock_override")
|
156
|
+
|
157
|
+
@property
|
158
|
+
@pulumi.getter
|
159
|
+
def locks(self) -> Sequence['outputs.GetOutboundConnectorLockResult']:
|
160
|
+
"""
|
161
|
+
Locks associated with this resource.
|
162
|
+
"""
|
163
|
+
return pulumi.get(self, "locks")
|
164
|
+
|
146
165
|
@property
|
147
166
|
@pulumi.getter(name="outboundConnectorId")
|
148
167
|
def outbound_connector_id(self) -> str:
|
@@ -196,6 +215,8 @@ class AwaitableGetOutboundConnectorResult(GetOutboundConnectorResult):
|
|
196
215
|
endpoints=self.endpoints,
|
197
216
|
freeform_tags=self.freeform_tags,
|
198
217
|
id=self.id,
|
218
|
+
is_lock_override=self.is_lock_override,
|
219
|
+
locks=self.locks,
|
199
220
|
outbound_connector_id=self.outbound_connector_id,
|
200
221
|
password_secret_id=self.password_secret_id,
|
201
222
|
password_secret_version=self.password_secret_version,
|
@@ -237,6 +258,8 @@ def get_outbound_connector(outbound_connector_id: Optional[str] = None,
|
|
237
258
|
endpoints=pulumi.get(__ret__, 'endpoints'),
|
238
259
|
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
239
260
|
id=pulumi.get(__ret__, 'id'),
|
261
|
+
is_lock_override=pulumi.get(__ret__, 'is_lock_override'),
|
262
|
+
locks=pulumi.get(__ret__, 'locks'),
|
240
263
|
outbound_connector_id=pulumi.get(__ret__, 'outbound_connector_id'),
|
241
264
|
password_secret_id=pulumi.get(__ret__, 'password_secret_id'),
|
242
265
|
password_secret_version=pulumi.get(__ret__, 'password_secret_version'),
|
@@ -275,6 +298,8 @@ def get_outbound_connector_output(outbound_connector_id: Optional[pulumi.Input[s
|
|
275
298
|
endpoints=pulumi.get(__response__, 'endpoints'),
|
276
299
|
freeform_tags=pulumi.get(__response__, 'freeform_tags'),
|
277
300
|
id=pulumi.get(__response__, 'id'),
|
301
|
+
is_lock_override=pulumi.get(__response__, 'is_lock_override'),
|
302
|
+
locks=pulumi.get(__response__, 'locks'),
|
278
303
|
outbound_connector_id=pulumi.get(__response__, 'outbound_connector_id'),
|
279
304
|
password_secret_id=pulumi.get(__response__, 'password_secret_id'),
|
280
305
|
password_secret_version=pulumi.get(__response__, 'password_secret_version'),
|
@@ -13,6 +13,7 @@ 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
|
16
17
|
|
17
18
|
__all__ = [
|
18
19
|
'GetReplicationResult',
|
@@ -26,7 +27,7 @@ class GetReplicationResult:
|
|
26
27
|
"""
|
27
28
|
A collection of values returned by getReplication.
|
28
29
|
"""
|
29
|
-
def __init__(__self__, availability_domain=None, compartment_id=None, defined_tags=None, delta_progress=None, delta_status=None, display_name=None, freeform_tags=None, id=None, last_snapshot_id=None, lifecycle_details=None, recovery_point_time=None, replication_id=None, replication_interval=None, replication_target_id=None, source_id=None, state=None, target_id=None, time_created=None):
|
30
|
+
def __init__(__self__, availability_domain=None, compartment_id=None, defined_tags=None, delta_progress=None, delta_status=None, display_name=None, freeform_tags=None, id=None, is_lock_override=None, last_snapshot_id=None, lifecycle_details=None, locks=None, recovery_point_time=None, replication_id=None, replication_interval=None, replication_target_id=None, source_id=None, state=None, target_id=None, time_created=None):
|
30
31
|
if availability_domain and not isinstance(availability_domain, str):
|
31
32
|
raise TypeError("Expected argument 'availability_domain' to be a str")
|
32
33
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
@@ -51,12 +52,18 @@ class GetReplicationResult:
|
|
51
52
|
if id and not isinstance(id, str):
|
52
53
|
raise TypeError("Expected argument 'id' to be a str")
|
53
54
|
pulumi.set(__self__, "id", id)
|
55
|
+
if is_lock_override and not isinstance(is_lock_override, bool):
|
56
|
+
raise TypeError("Expected argument 'is_lock_override' to be a bool")
|
57
|
+
pulumi.set(__self__, "is_lock_override", is_lock_override)
|
54
58
|
if last_snapshot_id and not isinstance(last_snapshot_id, str):
|
55
59
|
raise TypeError("Expected argument 'last_snapshot_id' to be a str")
|
56
60
|
pulumi.set(__self__, "last_snapshot_id", last_snapshot_id)
|
57
61
|
if lifecycle_details and not isinstance(lifecycle_details, str):
|
58
62
|
raise TypeError("Expected argument 'lifecycle_details' to be a str")
|
59
63
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
64
|
+
if locks and not isinstance(locks, list):
|
65
|
+
raise TypeError("Expected argument 'locks' to be a list")
|
66
|
+
pulumi.set(__self__, "locks", locks)
|
60
67
|
if recovery_point_time and not isinstance(recovery_point_time, str):
|
61
68
|
raise TypeError("Expected argument 'recovery_point_time' to be a str")
|
62
69
|
pulumi.set(__self__, "recovery_point_time", recovery_point_time)
|
@@ -146,6 +153,11 @@ class GetReplicationResult:
|
|
146
153
|
"""
|
147
154
|
return pulumi.get(self, "id")
|
148
155
|
|
156
|
+
@property
|
157
|
+
@pulumi.getter(name="isLockOverride")
|
158
|
+
def is_lock_override(self) -> bool:
|
159
|
+
return pulumi.get(self, "is_lock_override")
|
160
|
+
|
149
161
|
@property
|
150
162
|
@pulumi.getter(name="lastSnapshotId")
|
151
163
|
def last_snapshot_id(self) -> str:
|
@@ -162,6 +174,14 @@ class GetReplicationResult:
|
|
162
174
|
"""
|
163
175
|
return pulumi.get(self, "lifecycle_details")
|
164
176
|
|
177
|
+
@property
|
178
|
+
@pulumi.getter
|
179
|
+
def locks(self) -> Sequence['outputs.GetReplicationLockResult']:
|
180
|
+
"""
|
181
|
+
Locks associated with this resource.
|
182
|
+
"""
|
183
|
+
return pulumi.get(self, "locks")
|
184
|
+
|
165
185
|
@property
|
166
186
|
@pulumi.getter(name="recoveryPointTime")
|
167
187
|
def recovery_point_time(self) -> str:
|
@@ -238,8 +258,10 @@ class AwaitableGetReplicationResult(GetReplicationResult):
|
|
238
258
|
display_name=self.display_name,
|
239
259
|
freeform_tags=self.freeform_tags,
|
240
260
|
id=self.id,
|
261
|
+
is_lock_override=self.is_lock_override,
|
241
262
|
last_snapshot_id=self.last_snapshot_id,
|
242
263
|
lifecycle_details=self.lifecycle_details,
|
264
|
+
locks=self.locks,
|
243
265
|
recovery_point_time=self.recovery_point_time,
|
244
266
|
replication_id=self.replication_id,
|
245
267
|
replication_interval=self.replication_interval,
|
@@ -283,8 +305,10 @@ def get_replication(replication_id: Optional[str] = None,
|
|
283
305
|
display_name=pulumi.get(__ret__, 'display_name'),
|
284
306
|
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
285
307
|
id=pulumi.get(__ret__, 'id'),
|
308
|
+
is_lock_override=pulumi.get(__ret__, 'is_lock_override'),
|
286
309
|
last_snapshot_id=pulumi.get(__ret__, 'last_snapshot_id'),
|
287
310
|
lifecycle_details=pulumi.get(__ret__, 'lifecycle_details'),
|
311
|
+
locks=pulumi.get(__ret__, 'locks'),
|
288
312
|
recovery_point_time=pulumi.get(__ret__, 'recovery_point_time'),
|
289
313
|
replication_id=pulumi.get(__ret__, 'replication_id'),
|
290
314
|
replication_interval=pulumi.get(__ret__, 'replication_interval'),
|
@@ -325,8 +349,10 @@ def get_replication_output(replication_id: Optional[pulumi.Input[str]] = None,
|
|
325
349
|
display_name=pulumi.get(__response__, 'display_name'),
|
326
350
|
freeform_tags=pulumi.get(__response__, 'freeform_tags'),
|
327
351
|
id=pulumi.get(__response__, 'id'),
|
352
|
+
is_lock_override=pulumi.get(__response__, 'is_lock_override'),
|
328
353
|
last_snapshot_id=pulumi.get(__response__, 'last_snapshot_id'),
|
329
354
|
lifecycle_details=pulumi.get(__response__, 'lifecycle_details'),
|
355
|
+
locks=pulumi.get(__response__, 'locks'),
|
330
356
|
recovery_point_time=pulumi.get(__response__, 'recovery_point_time'),
|
331
357
|
replication_id=pulumi.get(__response__, 'replication_id'),
|
332
358
|
replication_interval=pulumi.get(__response__, 'replication_interval'),
|
@@ -13,6 +13,7 @@ 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
|
16
17
|
|
17
18
|
__all__ = [
|
18
19
|
'GetSnapshotResult',
|
@@ -26,7 +27,7 @@ class GetSnapshotResult:
|
|
26
27
|
"""
|
27
28
|
A collection of values returned by getSnapshot.
|
28
29
|
"""
|
29
|
-
def __init__(__self__, defined_tags=None, expiration_time=None, file_system_id=None, filesystem_snapshot_policy_id=None, freeform_tags=None, id=None, is_clone_source=None, lifecycle_details=None, name=None, provenance_id=None, snapshot_id=None, snapshot_time=None, snapshot_type=None, state=None, time_created=None):
|
30
|
+
def __init__(__self__, defined_tags=None, expiration_time=None, file_system_id=None, filesystem_snapshot_policy_id=None, freeform_tags=None, id=None, is_clone_source=None, is_lock_override=None, lifecycle_details=None, locks=None, name=None, provenance_id=None, snapshot_id=None, snapshot_time=None, snapshot_type=None, state=None, time_created=None):
|
30
31
|
if defined_tags and not isinstance(defined_tags, dict):
|
31
32
|
raise TypeError("Expected argument 'defined_tags' to be a dict")
|
32
33
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
@@ -48,9 +49,15 @@ class GetSnapshotResult:
|
|
48
49
|
if is_clone_source and not isinstance(is_clone_source, bool):
|
49
50
|
raise TypeError("Expected argument 'is_clone_source' to be a bool")
|
50
51
|
pulumi.set(__self__, "is_clone_source", is_clone_source)
|
52
|
+
if is_lock_override and not isinstance(is_lock_override, bool):
|
53
|
+
raise TypeError("Expected argument 'is_lock_override' to be a bool")
|
54
|
+
pulumi.set(__self__, "is_lock_override", is_lock_override)
|
51
55
|
if lifecycle_details and not isinstance(lifecycle_details, str):
|
52
56
|
raise TypeError("Expected argument 'lifecycle_details' to be a str")
|
53
57
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
58
|
+
if locks and not isinstance(locks, list):
|
59
|
+
raise TypeError("Expected argument 'locks' to be a list")
|
60
|
+
pulumi.set(__self__, "locks", locks)
|
54
61
|
if name and not isinstance(name, str):
|
55
62
|
raise TypeError("Expected argument 'name' to be a str")
|
56
63
|
pulumi.set(__self__, "name", name)
|
@@ -129,6 +136,11 @@ class GetSnapshotResult:
|
|
129
136
|
"""
|
130
137
|
return pulumi.get(self, "is_clone_source")
|
131
138
|
|
139
|
+
@property
|
140
|
+
@pulumi.getter(name="isLockOverride")
|
141
|
+
def is_lock_override(self) -> bool:
|
142
|
+
return pulumi.get(self, "is_lock_override")
|
143
|
+
|
132
144
|
@property
|
133
145
|
@pulumi.getter(name="lifecycleDetails")
|
134
146
|
def lifecycle_details(self) -> str:
|
@@ -137,6 +149,14 @@ class GetSnapshotResult:
|
|
137
149
|
"""
|
138
150
|
return pulumi.get(self, "lifecycle_details")
|
139
151
|
|
152
|
+
@property
|
153
|
+
@pulumi.getter
|
154
|
+
def locks(self) -> Sequence['outputs.GetSnapshotLockResult']:
|
155
|
+
"""
|
156
|
+
Locks associated with this resource.
|
157
|
+
"""
|
158
|
+
return pulumi.get(self, "locks")
|
159
|
+
|
140
160
|
@property
|
141
161
|
@pulumi.getter
|
142
162
|
def name(self) -> str:
|
@@ -207,7 +227,9 @@ class AwaitableGetSnapshotResult(GetSnapshotResult):
|
|
207
227
|
freeform_tags=self.freeform_tags,
|
208
228
|
id=self.id,
|
209
229
|
is_clone_source=self.is_clone_source,
|
230
|
+
is_lock_override=self.is_lock_override,
|
210
231
|
lifecycle_details=self.lifecycle_details,
|
232
|
+
locks=self.locks,
|
211
233
|
name=self.name,
|
212
234
|
provenance_id=self.provenance_id,
|
213
235
|
snapshot_id=self.snapshot_id,
|
@@ -249,7 +271,9 @@ def get_snapshot(snapshot_id: Optional[str] = None,
|
|
249
271
|
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
250
272
|
id=pulumi.get(__ret__, 'id'),
|
251
273
|
is_clone_source=pulumi.get(__ret__, 'is_clone_source'),
|
274
|
+
is_lock_override=pulumi.get(__ret__, 'is_lock_override'),
|
252
275
|
lifecycle_details=pulumi.get(__ret__, 'lifecycle_details'),
|
276
|
+
locks=pulumi.get(__ret__, 'locks'),
|
253
277
|
name=pulumi.get(__ret__, 'name'),
|
254
278
|
provenance_id=pulumi.get(__ret__, 'provenance_id'),
|
255
279
|
snapshot_id=pulumi.get(__ret__, 'snapshot_id'),
|
@@ -288,7 +312,9 @@ def get_snapshot_output(snapshot_id: Optional[pulumi.Input[str]] = None,
|
|
288
312
|
freeform_tags=pulumi.get(__response__, 'freeform_tags'),
|
289
313
|
id=pulumi.get(__response__, 'id'),
|
290
314
|
is_clone_source=pulumi.get(__response__, 'is_clone_source'),
|
315
|
+
is_lock_override=pulumi.get(__response__, 'is_lock_override'),
|
291
316
|
lifecycle_details=pulumi.get(__response__, 'lifecycle_details'),
|
317
|
+
locks=pulumi.get(__response__, 'locks'),
|
292
318
|
name=pulumi.get(__response__, 'name'),
|
293
319
|
provenance_id=pulumi.get(__response__, 'provenance_id'),
|
294
320
|
snapshot_id=pulumi.get(__response__, 'snapshot_id'),
|