pulumi-oci 2.14.0__py3-none-any.whl → 2.14.0a1730182164__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_oci/core/_inputs.py +0 -74
- pulumi_oci/core/get_instance.py +1 -1
- pulumi_oci/core/get_virtual_circuit.py +4 -18
- pulumi_oci/core/instance.py +7 -7
- pulumi_oci/core/outputs.py +7 -165
- pulumi_oci/core/virtual_circuit.py +2 -30
- pulumi_oci/database/_inputs.py +0 -642
- pulumi_oci/database/autonomous_container_database.py +14 -14
- pulumi_oci/database/autonomous_database.py +0 -75
- pulumi_oci/database/get_autonomous_container_database.py +3 -3
- pulumi_oci/database/get_autonomous_database.py +1 -29
- pulumi_oci/database/get_autonomous_databases.py +28 -22
- pulumi_oci/database/outputs.py +89 -1672
- pulumi_oci/datascience/_inputs.py +0 -353
- pulumi_oci/datascience/get_model.py +1 -85
- pulumi_oci/datascience/get_models.py +0 -5
- pulumi_oci/datascience/model.py +66 -206
- pulumi_oci/datascience/outputs.py +0 -759
- pulumi_oci/filestorage/_inputs.py +0 -651
- pulumi_oci/filestorage/export.py +3 -96
- pulumi_oci/filestorage/file_system.py +0 -93
- pulumi_oci/filestorage/filesystem_snapshot_policy.py +0 -93
- pulumi_oci/filestorage/get_filesystem_snapshot_policy.py +1 -26
- pulumi_oci/filestorage/get_outbound_connector.py +1 -26
- pulumi_oci/filestorage/get_replication.py +1 -27
- pulumi_oci/filestorage/get_snapshot.py +1 -27
- pulumi_oci/filestorage/mount_target.py +0 -108
- pulumi_oci/filestorage/outbound_connector.py +0 -93
- pulumi_oci/filestorage/outputs.py +9 -1225
- pulumi_oci/filestorage/replication.py +0 -95
- pulumi_oci/filestorage/snapshot.py +2 -97
- pulumi_oci/networkloadbalancer/get_network_load_balancer.py +1 -15
- pulumi_oci/networkloadbalancer/network_load_balancer.py +0 -47
- pulumi_oci/networkloadbalancer/outputs.py +0 -11
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-2.14.0.dist-info → pulumi_oci-2.14.0a1730182164.dist-info}/METADATA +1 -1
- {pulumi_oci-2.14.0.dist-info → pulumi_oci-2.14.0a1730182164.dist-info}/RECORD +39 -39
- {pulumi_oci-2.14.0.dist-info → pulumi_oci-2.14.0a1730182164.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.14.0.dist-info → pulumi_oci-2.14.0a1730182164.dist-info}/top_level.txt +0 -0
@@ -26,8 +26,6 @@ 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,
|
31
29
|
policy_prefix: Optional[pulumi.Input[str]] = None,
|
32
30
|
schedules: Optional[pulumi.Input[Sequence[pulumi.Input['FilesystemSnapshotPolicyScheduleArgs']]]] = None,
|
33
31
|
state: Optional[pulumi.Input[str]] = None):
|
@@ -38,7 +36,6 @@ class FilesystemSnapshotPolicyArgs:
|
|
38
36
|
: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
37
|
: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`
|
40
38
|
: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.
|
42
39
|
:param pulumi.Input[str] policy_prefix: (Updatable) The prefix to apply to all snapshots created by this policy. Example: `acme`
|
43
40
|
: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.
|
44
41
|
|
@@ -57,10 +54,6 @@ class FilesystemSnapshotPolicyArgs:
|
|
57
54
|
pulumi.set(__self__, "display_name", display_name)
|
58
55
|
if freeform_tags is not None:
|
59
56
|
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)
|
64
57
|
if policy_prefix is not None:
|
65
58
|
pulumi.set(__self__, "policy_prefix", policy_prefix)
|
66
59
|
if schedules is not None:
|
@@ -128,27 +121,6 @@ class FilesystemSnapshotPolicyArgs:
|
|
128
121
|
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
129
122
|
pulumi.set(self, "freeform_tags", value)
|
130
123
|
|
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
|
-
|
152
124
|
@property
|
153
125
|
@pulumi.getter(name="policyPrefix")
|
154
126
|
def policy_prefix(self) -> Optional[pulumi.Input[str]]:
|
@@ -200,8 +172,6 @@ class _FilesystemSnapshotPolicyState:
|
|
200
172
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
201
173
|
display_name: Optional[pulumi.Input[str]] = None,
|
202
174
|
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,
|
205
175
|
policy_prefix: Optional[pulumi.Input[str]] = None,
|
206
176
|
schedules: Optional[pulumi.Input[Sequence[pulumi.Input['FilesystemSnapshotPolicyScheduleArgs']]]] = None,
|
207
177
|
state: Optional[pulumi.Input[str]] = None,
|
@@ -213,7 +183,6 @@ class _FilesystemSnapshotPolicyState:
|
|
213
183
|
: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"}`
|
214
184
|
: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`
|
215
185
|
: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.
|
217
186
|
:param pulumi.Input[str] policy_prefix: (Updatable) The prefix to apply to all snapshots created by this policy. Example: `acme`
|
218
187
|
: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.
|
219
188
|
|
@@ -235,10 +204,6 @@ class _FilesystemSnapshotPolicyState:
|
|
235
204
|
pulumi.set(__self__, "display_name", display_name)
|
236
205
|
if freeform_tags is not None:
|
237
206
|
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)
|
242
207
|
if policy_prefix is not None:
|
243
208
|
pulumi.set(__self__, "policy_prefix", policy_prefix)
|
244
209
|
if schedules is not None:
|
@@ -308,27 +273,6 @@ class _FilesystemSnapshotPolicyState:
|
|
308
273
|
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
309
274
|
pulumi.set(self, "freeform_tags", value)
|
310
275
|
|
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
|
-
|
332
276
|
@property
|
333
277
|
@pulumi.getter(name="policyPrefix")
|
334
278
|
def policy_prefix(self) -> Optional[pulumi.Input[str]]:
|
@@ -394,8 +338,6 @@ class FilesystemSnapshotPolicy(pulumi.CustomResource):
|
|
394
338
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
395
339
|
display_name: Optional[pulumi.Input[str]] = None,
|
396
340
|
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,
|
399
341
|
policy_prefix: Optional[pulumi.Input[str]] = None,
|
400
342
|
schedules: Optional[pulumi.Input[Sequence[pulumi.Input[Union['FilesystemSnapshotPolicyScheduleArgs', 'FilesystemSnapshotPolicyScheduleArgsDict']]]]] = None,
|
401
343
|
state: Optional[pulumi.Input[str]] = None,
|
@@ -425,12 +367,6 @@ class FilesystemSnapshotPolicy(pulumi.CustomResource):
|
|
425
367
|
freeform_tags={
|
426
368
|
"Department": "Finance",
|
427
369
|
},
|
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
|
-
}],
|
434
370
|
policy_prefix=filesystem_snapshot_policy_policy_prefix,
|
435
371
|
schedules=[{
|
436
372
|
"period": filesystem_snapshot_policy_schedules_period,
|
@@ -460,7 +396,6 @@ class FilesystemSnapshotPolicy(pulumi.CustomResource):
|
|
460
396
|
: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"}`
|
461
397
|
: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`
|
462
398
|
: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.
|
464
399
|
:param pulumi.Input[str] policy_prefix: (Updatable) The prefix to apply to all snapshots created by this policy. Example: `acme`
|
465
400
|
: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.
|
466
401
|
|
@@ -502,12 +437,6 @@ class FilesystemSnapshotPolicy(pulumi.CustomResource):
|
|
502
437
|
freeform_tags={
|
503
438
|
"Department": "Finance",
|
504
439
|
},
|
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
|
-
}],
|
511
440
|
policy_prefix=filesystem_snapshot_policy_policy_prefix,
|
512
441
|
schedules=[{
|
513
442
|
"period": filesystem_snapshot_policy_schedules_period,
|
@@ -550,8 +479,6 @@ class FilesystemSnapshotPolicy(pulumi.CustomResource):
|
|
550
479
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
551
480
|
display_name: Optional[pulumi.Input[str]] = None,
|
552
481
|
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,
|
555
482
|
policy_prefix: Optional[pulumi.Input[str]] = None,
|
556
483
|
schedules: Optional[pulumi.Input[Sequence[pulumi.Input[Union['FilesystemSnapshotPolicyScheduleArgs', 'FilesystemSnapshotPolicyScheduleArgsDict']]]]] = None,
|
557
484
|
state: Optional[pulumi.Input[str]] = None,
|
@@ -573,8 +500,6 @@ class FilesystemSnapshotPolicy(pulumi.CustomResource):
|
|
573
500
|
__props__.__dict__["defined_tags"] = defined_tags
|
574
501
|
__props__.__dict__["display_name"] = display_name
|
575
502
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
576
|
-
__props__.__dict__["is_lock_override"] = is_lock_override
|
577
|
-
__props__.__dict__["locks"] = locks
|
578
503
|
__props__.__dict__["policy_prefix"] = policy_prefix
|
579
504
|
__props__.__dict__["schedules"] = schedules
|
580
505
|
__props__.__dict__["state"] = state
|
@@ -594,8 +519,6 @@ class FilesystemSnapshotPolicy(pulumi.CustomResource):
|
|
594
519
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
595
520
|
display_name: Optional[pulumi.Input[str]] = None,
|
596
521
|
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,
|
599
522
|
policy_prefix: Optional[pulumi.Input[str]] = None,
|
600
523
|
schedules: Optional[pulumi.Input[Sequence[pulumi.Input[Union['FilesystemSnapshotPolicyScheduleArgs', 'FilesystemSnapshotPolicyScheduleArgsDict']]]]] = None,
|
601
524
|
state: Optional[pulumi.Input[str]] = None,
|
@@ -612,7 +535,6 @@ class FilesystemSnapshotPolicy(pulumi.CustomResource):
|
|
612
535
|
: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"}`
|
613
536
|
: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`
|
614
537
|
: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.
|
616
538
|
:param pulumi.Input[str] policy_prefix: (Updatable) The prefix to apply to all snapshots created by this policy. Example: `acme`
|
617
539
|
: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.
|
618
540
|
|
@@ -633,8 +555,6 @@ class FilesystemSnapshotPolicy(pulumi.CustomResource):
|
|
633
555
|
__props__.__dict__["defined_tags"] = defined_tags
|
634
556
|
__props__.__dict__["display_name"] = display_name
|
635
557
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
636
|
-
__props__.__dict__["is_lock_override"] = is_lock_override
|
637
|
-
__props__.__dict__["locks"] = locks
|
638
558
|
__props__.__dict__["policy_prefix"] = policy_prefix
|
639
559
|
__props__.__dict__["schedules"] = schedules
|
640
560
|
__props__.__dict__["state"] = state
|
@@ -681,19 +601,6 @@ class FilesystemSnapshotPolicy(pulumi.CustomResource):
|
|
681
601
|
"""
|
682
602
|
return pulumi.get(self, "freeform_tags")
|
683
603
|
|
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
|
-
|
697
604
|
@property
|
698
605
|
@pulumi.getter(name="policyPrefix")
|
699
606
|
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,
|
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):
|
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,12 +49,6 @@ 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)
|
58
52
|
if policy_prefix and not isinstance(policy_prefix, str):
|
59
53
|
raise TypeError("Expected argument 'policy_prefix' to be a str")
|
60
54
|
pulumi.set(__self__, "policy_prefix", policy_prefix)
|
@@ -121,19 +115,6 @@ class GetFilesystemSnapshotPolicyResult:
|
|
121
115
|
"""
|
122
116
|
return pulumi.get(self, "id")
|
123
117
|
|
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
|
-
|
137
118
|
@property
|
138
119
|
@pulumi.getter(name="policyPrefix")
|
139
120
|
def policy_prefix(self) -> str:
|
@@ -180,8 +161,6 @@ class AwaitableGetFilesystemSnapshotPolicyResult(GetFilesystemSnapshotPolicyResu
|
|
180
161
|
filesystem_snapshot_policy_id=self.filesystem_snapshot_policy_id,
|
181
162
|
freeform_tags=self.freeform_tags,
|
182
163
|
id=self.id,
|
183
|
-
is_lock_override=self.is_lock_override,
|
184
|
-
locks=self.locks,
|
185
164
|
policy_prefix=self.policy_prefix,
|
186
165
|
schedules=self.schedules,
|
187
166
|
state=self.state,
|
@@ -220,8 +199,6 @@ def get_filesystem_snapshot_policy(filesystem_snapshot_policy_id: Optional[str]
|
|
220
199
|
filesystem_snapshot_policy_id=pulumi.get(__ret__, 'filesystem_snapshot_policy_id'),
|
221
200
|
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
222
201
|
id=pulumi.get(__ret__, 'id'),
|
223
|
-
is_lock_override=pulumi.get(__ret__, 'is_lock_override'),
|
224
|
-
locks=pulumi.get(__ret__, 'locks'),
|
225
202
|
policy_prefix=pulumi.get(__ret__, 'policy_prefix'),
|
226
203
|
schedules=pulumi.get(__ret__, 'schedules'),
|
227
204
|
state=pulumi.get(__ret__, 'state'),
|
@@ -257,8 +234,6 @@ def get_filesystem_snapshot_policy_output(filesystem_snapshot_policy_id: Optiona
|
|
257
234
|
filesystem_snapshot_policy_id=pulumi.get(__response__, 'filesystem_snapshot_policy_id'),
|
258
235
|
freeform_tags=pulumi.get(__response__, 'freeform_tags'),
|
259
236
|
id=pulumi.get(__response__, 'id'),
|
260
|
-
is_lock_override=pulumi.get(__response__, 'is_lock_override'),
|
261
|
-
locks=pulumi.get(__response__, 'locks'),
|
262
237
|
policy_prefix=pulumi.get(__response__, 'policy_prefix'),
|
263
238
|
schedules=pulumi.get(__response__, 'schedules'),
|
264
239
|
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,
|
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):
|
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,12 +55,6 @@ 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)
|
64
58
|
if outbound_connector_id and not isinstance(outbound_connector_id, str):
|
65
59
|
raise TypeError("Expected argument 'outbound_connector_id' to be a str")
|
66
60
|
pulumi.set(__self__, "outbound_connector_id", outbound_connector_id)
|
@@ -149,19 +143,6 @@ class GetOutboundConnectorResult:
|
|
149
143
|
"""
|
150
144
|
return pulumi.get(self, "id")
|
151
145
|
|
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
|
-
|
165
146
|
@property
|
166
147
|
@pulumi.getter(name="outboundConnectorId")
|
167
148
|
def outbound_connector_id(self) -> str:
|
@@ -215,8 +196,6 @@ class AwaitableGetOutboundConnectorResult(GetOutboundConnectorResult):
|
|
215
196
|
endpoints=self.endpoints,
|
216
197
|
freeform_tags=self.freeform_tags,
|
217
198
|
id=self.id,
|
218
|
-
is_lock_override=self.is_lock_override,
|
219
|
-
locks=self.locks,
|
220
199
|
outbound_connector_id=self.outbound_connector_id,
|
221
200
|
password_secret_id=self.password_secret_id,
|
222
201
|
password_secret_version=self.password_secret_version,
|
@@ -258,8 +237,6 @@ def get_outbound_connector(outbound_connector_id: Optional[str] = None,
|
|
258
237
|
endpoints=pulumi.get(__ret__, 'endpoints'),
|
259
238
|
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
260
239
|
id=pulumi.get(__ret__, 'id'),
|
261
|
-
is_lock_override=pulumi.get(__ret__, 'is_lock_override'),
|
262
|
-
locks=pulumi.get(__ret__, 'locks'),
|
263
240
|
outbound_connector_id=pulumi.get(__ret__, 'outbound_connector_id'),
|
264
241
|
password_secret_id=pulumi.get(__ret__, 'password_secret_id'),
|
265
242
|
password_secret_version=pulumi.get(__ret__, 'password_secret_version'),
|
@@ -298,8 +275,6 @@ def get_outbound_connector_output(outbound_connector_id: Optional[pulumi.Input[s
|
|
298
275
|
endpoints=pulumi.get(__response__, 'endpoints'),
|
299
276
|
freeform_tags=pulumi.get(__response__, 'freeform_tags'),
|
300
277
|
id=pulumi.get(__response__, 'id'),
|
301
|
-
is_lock_override=pulumi.get(__response__, 'is_lock_override'),
|
302
|
-
locks=pulumi.get(__response__, 'locks'),
|
303
278
|
outbound_connector_id=pulumi.get(__response__, 'outbound_connector_id'),
|
304
279
|
password_secret_id=pulumi.get(__response__, 'password_secret_id'),
|
305
280
|
password_secret_version=pulumi.get(__response__, 'password_secret_version'),
|
@@ -13,7 +13,6 @@ 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
16
|
|
18
17
|
__all__ = [
|
19
18
|
'GetReplicationResult',
|
@@ -27,7 +26,7 @@ class GetReplicationResult:
|
|
27
26
|
"""
|
28
27
|
A collection of values returned by getReplication.
|
29
28
|
"""
|
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,
|
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):
|
31
30
|
if availability_domain and not isinstance(availability_domain, str):
|
32
31
|
raise TypeError("Expected argument 'availability_domain' to be a str")
|
33
32
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
@@ -52,18 +51,12 @@ class GetReplicationResult:
|
|
52
51
|
if id and not isinstance(id, str):
|
53
52
|
raise TypeError("Expected argument 'id' to be a str")
|
54
53
|
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)
|
58
54
|
if last_snapshot_id and not isinstance(last_snapshot_id, str):
|
59
55
|
raise TypeError("Expected argument 'last_snapshot_id' to be a str")
|
60
56
|
pulumi.set(__self__, "last_snapshot_id", last_snapshot_id)
|
61
57
|
if lifecycle_details and not isinstance(lifecycle_details, str):
|
62
58
|
raise TypeError("Expected argument 'lifecycle_details' to be a str")
|
63
59
|
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)
|
67
60
|
if recovery_point_time and not isinstance(recovery_point_time, str):
|
68
61
|
raise TypeError("Expected argument 'recovery_point_time' to be a str")
|
69
62
|
pulumi.set(__self__, "recovery_point_time", recovery_point_time)
|
@@ -153,11 +146,6 @@ class GetReplicationResult:
|
|
153
146
|
"""
|
154
147
|
return pulumi.get(self, "id")
|
155
148
|
|
156
|
-
@property
|
157
|
-
@pulumi.getter(name="isLockOverride")
|
158
|
-
def is_lock_override(self) -> bool:
|
159
|
-
return pulumi.get(self, "is_lock_override")
|
160
|
-
|
161
149
|
@property
|
162
150
|
@pulumi.getter(name="lastSnapshotId")
|
163
151
|
def last_snapshot_id(self) -> str:
|
@@ -174,14 +162,6 @@ class GetReplicationResult:
|
|
174
162
|
"""
|
175
163
|
return pulumi.get(self, "lifecycle_details")
|
176
164
|
|
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
|
-
|
185
165
|
@property
|
186
166
|
@pulumi.getter(name="recoveryPointTime")
|
187
167
|
def recovery_point_time(self) -> str:
|
@@ -258,10 +238,8 @@ class AwaitableGetReplicationResult(GetReplicationResult):
|
|
258
238
|
display_name=self.display_name,
|
259
239
|
freeform_tags=self.freeform_tags,
|
260
240
|
id=self.id,
|
261
|
-
is_lock_override=self.is_lock_override,
|
262
241
|
last_snapshot_id=self.last_snapshot_id,
|
263
242
|
lifecycle_details=self.lifecycle_details,
|
264
|
-
locks=self.locks,
|
265
243
|
recovery_point_time=self.recovery_point_time,
|
266
244
|
replication_id=self.replication_id,
|
267
245
|
replication_interval=self.replication_interval,
|
@@ -305,10 +283,8 @@ def get_replication(replication_id: Optional[str] = None,
|
|
305
283
|
display_name=pulumi.get(__ret__, 'display_name'),
|
306
284
|
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
307
285
|
id=pulumi.get(__ret__, 'id'),
|
308
|
-
is_lock_override=pulumi.get(__ret__, 'is_lock_override'),
|
309
286
|
last_snapshot_id=pulumi.get(__ret__, 'last_snapshot_id'),
|
310
287
|
lifecycle_details=pulumi.get(__ret__, 'lifecycle_details'),
|
311
|
-
locks=pulumi.get(__ret__, 'locks'),
|
312
288
|
recovery_point_time=pulumi.get(__ret__, 'recovery_point_time'),
|
313
289
|
replication_id=pulumi.get(__ret__, 'replication_id'),
|
314
290
|
replication_interval=pulumi.get(__ret__, 'replication_interval'),
|
@@ -349,10 +325,8 @@ def get_replication_output(replication_id: Optional[pulumi.Input[str]] = None,
|
|
349
325
|
display_name=pulumi.get(__response__, 'display_name'),
|
350
326
|
freeform_tags=pulumi.get(__response__, 'freeform_tags'),
|
351
327
|
id=pulumi.get(__response__, 'id'),
|
352
|
-
is_lock_override=pulumi.get(__response__, 'is_lock_override'),
|
353
328
|
last_snapshot_id=pulumi.get(__response__, 'last_snapshot_id'),
|
354
329
|
lifecycle_details=pulumi.get(__response__, 'lifecycle_details'),
|
355
|
-
locks=pulumi.get(__response__, 'locks'),
|
356
330
|
recovery_point_time=pulumi.get(__response__, 'recovery_point_time'),
|
357
331
|
replication_id=pulumi.get(__response__, 'replication_id'),
|
358
332
|
replication_interval=pulumi.get(__response__, 'replication_interval'),
|
@@ -13,7 +13,6 @@ 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
16
|
|
18
17
|
__all__ = [
|
19
18
|
'GetSnapshotResult',
|
@@ -27,7 +26,7 @@ class GetSnapshotResult:
|
|
27
26
|
"""
|
28
27
|
A collection of values returned by getSnapshot.
|
29
28
|
"""
|
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,
|
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):
|
31
30
|
if defined_tags and not isinstance(defined_tags, dict):
|
32
31
|
raise TypeError("Expected argument 'defined_tags' to be a dict")
|
33
32
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
@@ -49,15 +48,9 @@ class GetSnapshotResult:
|
|
49
48
|
if is_clone_source and not isinstance(is_clone_source, bool):
|
50
49
|
raise TypeError("Expected argument 'is_clone_source' to be a bool")
|
51
50
|
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)
|
55
51
|
if lifecycle_details and not isinstance(lifecycle_details, str):
|
56
52
|
raise TypeError("Expected argument 'lifecycle_details' to be a str")
|
57
53
|
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)
|
61
54
|
if name and not isinstance(name, str):
|
62
55
|
raise TypeError("Expected argument 'name' to be a str")
|
63
56
|
pulumi.set(__self__, "name", name)
|
@@ -136,11 +129,6 @@ class GetSnapshotResult:
|
|
136
129
|
"""
|
137
130
|
return pulumi.get(self, "is_clone_source")
|
138
131
|
|
139
|
-
@property
|
140
|
-
@pulumi.getter(name="isLockOverride")
|
141
|
-
def is_lock_override(self) -> bool:
|
142
|
-
return pulumi.get(self, "is_lock_override")
|
143
|
-
|
144
132
|
@property
|
145
133
|
@pulumi.getter(name="lifecycleDetails")
|
146
134
|
def lifecycle_details(self) -> str:
|
@@ -149,14 +137,6 @@ class GetSnapshotResult:
|
|
149
137
|
"""
|
150
138
|
return pulumi.get(self, "lifecycle_details")
|
151
139
|
|
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
|
-
|
160
140
|
@property
|
161
141
|
@pulumi.getter
|
162
142
|
def name(self) -> str:
|
@@ -227,9 +207,7 @@ class AwaitableGetSnapshotResult(GetSnapshotResult):
|
|
227
207
|
freeform_tags=self.freeform_tags,
|
228
208
|
id=self.id,
|
229
209
|
is_clone_source=self.is_clone_source,
|
230
|
-
is_lock_override=self.is_lock_override,
|
231
210
|
lifecycle_details=self.lifecycle_details,
|
232
|
-
locks=self.locks,
|
233
211
|
name=self.name,
|
234
212
|
provenance_id=self.provenance_id,
|
235
213
|
snapshot_id=self.snapshot_id,
|
@@ -271,9 +249,7 @@ def get_snapshot(snapshot_id: Optional[str] = None,
|
|
271
249
|
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
272
250
|
id=pulumi.get(__ret__, 'id'),
|
273
251
|
is_clone_source=pulumi.get(__ret__, 'is_clone_source'),
|
274
|
-
is_lock_override=pulumi.get(__ret__, 'is_lock_override'),
|
275
252
|
lifecycle_details=pulumi.get(__ret__, 'lifecycle_details'),
|
276
|
-
locks=pulumi.get(__ret__, 'locks'),
|
277
253
|
name=pulumi.get(__ret__, 'name'),
|
278
254
|
provenance_id=pulumi.get(__ret__, 'provenance_id'),
|
279
255
|
snapshot_id=pulumi.get(__ret__, 'snapshot_id'),
|
@@ -312,9 +288,7 @@ def get_snapshot_output(snapshot_id: Optional[pulumi.Input[str]] = None,
|
|
312
288
|
freeform_tags=pulumi.get(__response__, 'freeform_tags'),
|
313
289
|
id=pulumi.get(__response__, 'id'),
|
314
290
|
is_clone_source=pulumi.get(__response__, 'is_clone_source'),
|
315
|
-
is_lock_override=pulumi.get(__response__, 'is_lock_override'),
|
316
291
|
lifecycle_details=pulumi.get(__response__, 'lifecycle_details'),
|
317
|
-
locks=pulumi.get(__response__, 'locks'),
|
318
292
|
name=pulumi.get(__response__, 'name'),
|
319
293
|
provenance_id=pulumi.get(__response__, 'provenance_id'),
|
320
294
|
snapshot_id=pulumi.get(__response__, 'snapshot_id'),
|