pulumi-oci 1.39.0a1717654903__py3-none-any.whl → 1.39.0a1717785264__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/__init__.py +11 -0
- pulumi_oci/database/__init__.py +1 -0
- pulumi_oci/database/_inputs.py +44 -4
- pulumi_oci/database/autonomous_database.py +61 -14
- pulumi_oci/database/cloud_autonomous_vm_cluster.py +25 -7
- pulumi_oci/database/get_autonomous_character_sets.py +4 -0
- pulumi_oci/database/get_autonomous_database.py +14 -1
- pulumi_oci/database/get_autonomous_database_peers.py +133 -0
- pulumi_oci/database/outputs.py +102 -6
- pulumi_oci/demandsignal/__init__.py +12 -0
- pulumi_oci/demandsignal/_inputs.py +267 -0
- pulumi_oci/demandsignal/get_occ_demand_signal.py +259 -0
- pulumi_oci/demandsignal/get_occ_demand_signals.py +183 -0
- pulumi_oci/demandsignal/occ_demand_signal.py +630 -0
- pulumi_oci/demandsignal/outputs.py +700 -0
- pulumi_oci/goldengate/_inputs.py +219 -6
- pulumi_oci/goldengate/connection.py +334 -0
- pulumi_oci/goldengate/connection_assignment.py +68 -19
- pulumi_oci/goldengate/deployment.py +88 -7
- pulumi_oci/goldengate/deployment_backup.py +122 -3
- pulumi_oci/goldengate/deployment_certificate.py +59 -10
- pulumi_oci/goldengate/get_connection.py +80 -1
- pulumi_oci/goldengate/get_connection_assignment.py +11 -1
- pulumi_oci/goldengate/get_deployment.py +25 -2
- pulumi_oci/goldengate/get_deployment_backup.py +38 -1
- pulumi_oci/goldengate/get_deployment_certificate.py +12 -2
- pulumi_oci/goldengate/get_deployment_certificates.py +3 -0
- pulumi_oci/goldengate/get_trail_files.py +2 -2
- pulumi_oci/goldengate/get_trail_sequences.py +2 -2
- pulumi_oci/goldengate/outputs.py +720 -12
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-1.39.0a1717654903.dist-info → pulumi_oci-1.39.0a1717785264.dist-info}/METADATA +1 -1
- {pulumi_oci-1.39.0a1717654903.dist-info → pulumi_oci-1.39.0a1717785264.dist-info}/RECORD +35 -28
- {pulumi_oci-1.39.0a1717654903.dist-info → pulumi_oci-1.39.0a1717785264.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.39.0a1717654903.dist-info → pulumi_oci-1.39.0a1717785264.dist-info}/top_level.txt +0 -0
@@ -8,6 +8,8 @@ import pulumi
|
|
8
8
|
import pulumi.runtime
|
9
9
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
10
10
|
from .. import _utilities
|
11
|
+
from . import outputs
|
12
|
+
from ._inputs import *
|
11
13
|
|
12
14
|
__all__ = ['DeploymentBackupArgs', 'DeploymentBackup']
|
13
15
|
|
@@ -21,7 +23,9 @@ class DeploymentBackupArgs:
|
|
21
23
|
namespace: pulumi.Input[str],
|
22
24
|
object: pulumi.Input[str],
|
23
25
|
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
24
|
-
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None
|
26
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
27
|
+
is_lock_override: Optional[pulumi.Input[bool]] = None,
|
28
|
+
locks: Optional[pulumi.Input[Sequence[pulumi.Input['DeploymentBackupLockArgs']]]] = None):
|
25
29
|
"""
|
26
30
|
The set of arguments for constructing a DeploymentBackup resource.
|
27
31
|
:param pulumi.Input[str] bucket: Name of the bucket where the object is to be uploaded in the object storage
|
@@ -36,6 +40,7 @@ class DeploymentBackupArgs:
|
|
36
40
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
37
41
|
:param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
38
42
|
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
43
|
+
:param pulumi.Input[Sequence[pulumi.Input['DeploymentBackupLockArgs']]] locks: Locks associated with this resource.
|
39
44
|
"""
|
40
45
|
pulumi.set(__self__, "bucket", bucket)
|
41
46
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
@@ -47,6 +52,10 @@ class DeploymentBackupArgs:
|
|
47
52
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
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
|
|
51
60
|
@property
|
52
61
|
@pulumi.getter
|
@@ -148,6 +157,27 @@ class DeploymentBackupArgs:
|
|
148
157
|
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
|
149
158
|
pulumi.set(self, "freeform_tags", value)
|
150
159
|
|
160
|
+
@property
|
161
|
+
@pulumi.getter(name="isLockOverride")
|
162
|
+
def is_lock_override(self) -> Optional[pulumi.Input[bool]]:
|
163
|
+
return pulumi.get(self, "is_lock_override")
|
164
|
+
|
165
|
+
@is_lock_override.setter
|
166
|
+
def is_lock_override(self, value: Optional[pulumi.Input[bool]]):
|
167
|
+
pulumi.set(self, "is_lock_override", value)
|
168
|
+
|
169
|
+
@property
|
170
|
+
@pulumi.getter
|
171
|
+
def locks(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DeploymentBackupLockArgs']]]]:
|
172
|
+
"""
|
173
|
+
Locks associated with this resource.
|
174
|
+
"""
|
175
|
+
return pulumi.get(self, "locks")
|
176
|
+
|
177
|
+
@locks.setter
|
178
|
+
def locks(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['DeploymentBackupLockArgs']]]]):
|
179
|
+
pulumi.set(self, "locks", value)
|
180
|
+
|
151
181
|
|
152
182
|
@pulumi.input_type
|
153
183
|
class _DeploymentBackupState:
|
@@ -157,10 +187,13 @@ class _DeploymentBackupState:
|
|
157
187
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
158
188
|
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
159
189
|
deployment_id: Optional[pulumi.Input[str]] = None,
|
190
|
+
deployment_type: Optional[pulumi.Input[str]] = None,
|
160
191
|
display_name: Optional[pulumi.Input[str]] = None,
|
161
192
|
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
162
193
|
is_automatic: Optional[pulumi.Input[bool]] = None,
|
194
|
+
is_lock_override: Optional[pulumi.Input[bool]] = None,
|
163
195
|
lifecycle_details: Optional[pulumi.Input[str]] = None,
|
196
|
+
locks: Optional[pulumi.Input[Sequence[pulumi.Input['DeploymentBackupLockArgs']]]] = None,
|
164
197
|
namespace: Optional[pulumi.Input[str]] = None,
|
165
198
|
object: Optional[pulumi.Input[str]] = None,
|
166
199
|
ogg_version: Optional[pulumi.Input[str]] = None,
|
@@ -178,10 +211,12 @@ class _DeploymentBackupState:
|
|
178
211
|
:param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment being referenced.
|
179
212
|
:param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
180
213
|
:param pulumi.Input[str] deployment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the deployment being referenced.
|
214
|
+
:param pulumi.Input[str] deployment_type: The type of deployment, which can be any one of the Allowed values. NOTE: Use of the value 'OGG' is maintained for backward compatibility purposes. Its use is discouraged in favor of 'DATABASE_ORACLE'.
|
181
215
|
:param pulumi.Input[str] display_name: An object's Display Name.
|
182
216
|
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
183
217
|
:param pulumi.Input[bool] is_automatic: True if this object is automatically created
|
184
218
|
:param pulumi.Input[str] lifecycle_details: Describes the object's current state in detail. For example, it can be used to provide actionable information for a resource in a Failed state.
|
219
|
+
:param pulumi.Input[Sequence[pulumi.Input['DeploymentBackupLockArgs']]] locks: Locks associated with this resource.
|
185
220
|
:param pulumi.Input[str] namespace: Name of namespace that serves as a container for all of your buckets
|
186
221
|
:param pulumi.Input[str] object: Name of the object to be uploaded to object storage
|
187
222
|
|
@@ -207,14 +242,20 @@ class _DeploymentBackupState:
|
|
207
242
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
208
243
|
if deployment_id is not None:
|
209
244
|
pulumi.set(__self__, "deployment_id", deployment_id)
|
245
|
+
if deployment_type is not None:
|
246
|
+
pulumi.set(__self__, "deployment_type", deployment_type)
|
210
247
|
if display_name is not None:
|
211
248
|
pulumi.set(__self__, "display_name", display_name)
|
212
249
|
if freeform_tags is not None:
|
213
250
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
214
251
|
if is_automatic is not None:
|
215
252
|
pulumi.set(__self__, "is_automatic", is_automatic)
|
253
|
+
if is_lock_override is not None:
|
254
|
+
pulumi.set(__self__, "is_lock_override", is_lock_override)
|
216
255
|
if lifecycle_details is not None:
|
217
256
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
257
|
+
if locks is not None:
|
258
|
+
pulumi.set(__self__, "locks", locks)
|
218
259
|
if namespace is not None:
|
219
260
|
pulumi.set(__self__, "namespace", namespace)
|
220
261
|
if object is not None:
|
@@ -296,6 +337,18 @@ class _DeploymentBackupState:
|
|
296
337
|
def deployment_id(self, value: Optional[pulumi.Input[str]]):
|
297
338
|
pulumi.set(self, "deployment_id", value)
|
298
339
|
|
340
|
+
@property
|
341
|
+
@pulumi.getter(name="deploymentType")
|
342
|
+
def deployment_type(self) -> Optional[pulumi.Input[str]]:
|
343
|
+
"""
|
344
|
+
The type of deployment, which can be any one of the Allowed values. NOTE: Use of the value 'OGG' is maintained for backward compatibility purposes. Its use is discouraged in favor of 'DATABASE_ORACLE'.
|
345
|
+
"""
|
346
|
+
return pulumi.get(self, "deployment_type")
|
347
|
+
|
348
|
+
@deployment_type.setter
|
349
|
+
def deployment_type(self, value: Optional[pulumi.Input[str]]):
|
350
|
+
pulumi.set(self, "deployment_type", value)
|
351
|
+
|
299
352
|
@property
|
300
353
|
@pulumi.getter(name="displayName")
|
301
354
|
def display_name(self) -> Optional[pulumi.Input[str]]:
|
@@ -332,6 +385,15 @@ class _DeploymentBackupState:
|
|
332
385
|
def is_automatic(self, value: Optional[pulumi.Input[bool]]):
|
333
386
|
pulumi.set(self, "is_automatic", value)
|
334
387
|
|
388
|
+
@property
|
389
|
+
@pulumi.getter(name="isLockOverride")
|
390
|
+
def is_lock_override(self) -> Optional[pulumi.Input[bool]]:
|
391
|
+
return pulumi.get(self, "is_lock_override")
|
392
|
+
|
393
|
+
@is_lock_override.setter
|
394
|
+
def is_lock_override(self, value: Optional[pulumi.Input[bool]]):
|
395
|
+
pulumi.set(self, "is_lock_override", value)
|
396
|
+
|
335
397
|
@property
|
336
398
|
@pulumi.getter(name="lifecycleDetails")
|
337
399
|
def lifecycle_details(self) -> Optional[pulumi.Input[str]]:
|
@@ -344,6 +406,18 @@ class _DeploymentBackupState:
|
|
344
406
|
def lifecycle_details(self, value: Optional[pulumi.Input[str]]):
|
345
407
|
pulumi.set(self, "lifecycle_details", value)
|
346
408
|
|
409
|
+
@property
|
410
|
+
@pulumi.getter
|
411
|
+
def locks(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DeploymentBackupLockArgs']]]]:
|
412
|
+
"""
|
413
|
+
Locks associated with this resource.
|
414
|
+
"""
|
415
|
+
return pulumi.get(self, "locks")
|
416
|
+
|
417
|
+
@locks.setter
|
418
|
+
def locks(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['DeploymentBackupLockArgs']]]]):
|
419
|
+
pulumi.set(self, "locks", value)
|
420
|
+
|
347
421
|
@property
|
348
422
|
@pulumi.getter
|
349
423
|
def namespace(self) -> Optional[pulumi.Input[str]]:
|
@@ -480,6 +554,8 @@ class DeploymentBackup(pulumi.CustomResource):
|
|
480
554
|
deployment_id: Optional[pulumi.Input[str]] = None,
|
481
555
|
display_name: Optional[pulumi.Input[str]] = None,
|
482
556
|
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
557
|
+
is_lock_override: Optional[pulumi.Input[bool]] = None,
|
558
|
+
locks: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DeploymentBackupLockArgs']]]]] = None,
|
483
559
|
namespace: Optional[pulumi.Input[str]] = None,
|
484
560
|
object: Optional[pulumi.Input[str]] = None,
|
485
561
|
__props__=None):
|
@@ -506,7 +582,11 @@ class DeploymentBackup(pulumi.CustomResource):
|
|
506
582
|
},
|
507
583
|
freeform_tags={
|
508
584
|
"bar-key": "value",
|
509
|
-
}
|
585
|
+
},
|
586
|
+
locks=[oci.golden_gate.DeploymentBackupLockArgs(
|
587
|
+
type=deployment_backup_locks_type,
|
588
|
+
message=deployment_backup_locks_message,
|
589
|
+
)])
|
510
590
|
```
|
511
591
|
|
512
592
|
## Import
|
@@ -525,6 +605,7 @@ class DeploymentBackup(pulumi.CustomResource):
|
|
525
605
|
:param pulumi.Input[str] deployment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the deployment being referenced.
|
526
606
|
:param pulumi.Input[str] display_name: An object's Display Name.
|
527
607
|
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
608
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DeploymentBackupLockArgs']]]] locks: Locks associated with this resource.
|
528
609
|
:param pulumi.Input[str] namespace: Name of namespace that serves as a container for all of your buckets
|
529
610
|
:param pulumi.Input[str] object: Name of the object to be uploaded to object storage
|
530
611
|
|
@@ -561,7 +642,11 @@ class DeploymentBackup(pulumi.CustomResource):
|
|
561
642
|
},
|
562
643
|
freeform_tags={
|
563
644
|
"bar-key": "value",
|
564
|
-
}
|
645
|
+
},
|
646
|
+
locks=[oci.golden_gate.DeploymentBackupLockArgs(
|
647
|
+
type=deployment_backup_locks_type,
|
648
|
+
message=deployment_backup_locks_message,
|
649
|
+
)])
|
565
650
|
```
|
566
651
|
|
567
652
|
## Import
|
@@ -593,6 +678,8 @@ class DeploymentBackup(pulumi.CustomResource):
|
|
593
678
|
deployment_id: Optional[pulumi.Input[str]] = None,
|
594
679
|
display_name: Optional[pulumi.Input[str]] = None,
|
595
680
|
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
681
|
+
is_lock_override: Optional[pulumi.Input[bool]] = None,
|
682
|
+
locks: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DeploymentBackupLockArgs']]]]] = None,
|
596
683
|
namespace: Optional[pulumi.Input[str]] = None,
|
597
684
|
object: Optional[pulumi.Input[str]] = None,
|
598
685
|
__props__=None):
|
@@ -618,6 +705,8 @@ class DeploymentBackup(pulumi.CustomResource):
|
|
618
705
|
raise TypeError("Missing required property 'display_name'")
|
619
706
|
__props__.__dict__["display_name"] = display_name
|
620
707
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
708
|
+
__props__.__dict__["is_lock_override"] = is_lock_override
|
709
|
+
__props__.__dict__["locks"] = locks
|
621
710
|
if namespace is None and not opts.urn:
|
622
711
|
raise TypeError("Missing required property 'namespace'")
|
623
712
|
__props__.__dict__["namespace"] = namespace
|
@@ -625,6 +714,7 @@ class DeploymentBackup(pulumi.CustomResource):
|
|
625
714
|
raise TypeError("Missing required property 'object'")
|
626
715
|
__props__.__dict__["object"] = object
|
627
716
|
__props__.__dict__["backup_type"] = None
|
717
|
+
__props__.__dict__["deployment_type"] = None
|
628
718
|
__props__.__dict__["is_automatic"] = None
|
629
719
|
__props__.__dict__["lifecycle_details"] = None
|
630
720
|
__props__.__dict__["ogg_version"] = None
|
@@ -650,10 +740,13 @@ class DeploymentBackup(pulumi.CustomResource):
|
|
650
740
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
651
741
|
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
652
742
|
deployment_id: Optional[pulumi.Input[str]] = None,
|
743
|
+
deployment_type: Optional[pulumi.Input[str]] = None,
|
653
744
|
display_name: Optional[pulumi.Input[str]] = None,
|
654
745
|
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
655
746
|
is_automatic: Optional[pulumi.Input[bool]] = None,
|
747
|
+
is_lock_override: Optional[pulumi.Input[bool]] = None,
|
656
748
|
lifecycle_details: Optional[pulumi.Input[str]] = None,
|
749
|
+
locks: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DeploymentBackupLockArgs']]]]] = None,
|
657
750
|
namespace: Optional[pulumi.Input[str]] = None,
|
658
751
|
object: Optional[pulumi.Input[str]] = None,
|
659
752
|
ogg_version: Optional[pulumi.Input[str]] = None,
|
@@ -676,10 +769,12 @@ class DeploymentBackup(pulumi.CustomResource):
|
|
676
769
|
:param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment being referenced.
|
677
770
|
:param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
678
771
|
:param pulumi.Input[str] deployment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the deployment being referenced.
|
772
|
+
:param pulumi.Input[str] deployment_type: The type of deployment, which can be any one of the Allowed values. NOTE: Use of the value 'OGG' is maintained for backward compatibility purposes. Its use is discouraged in favor of 'DATABASE_ORACLE'.
|
679
773
|
:param pulumi.Input[str] display_name: An object's Display Name.
|
680
774
|
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
681
775
|
:param pulumi.Input[bool] is_automatic: True if this object is automatically created
|
682
776
|
:param pulumi.Input[str] lifecycle_details: Describes the object's current state in detail. For example, it can be used to provide actionable information for a resource in a Failed state.
|
777
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DeploymentBackupLockArgs']]]] locks: Locks associated with this resource.
|
683
778
|
:param pulumi.Input[str] namespace: Name of namespace that serves as a container for all of your buckets
|
684
779
|
:param pulumi.Input[str] object: Name of the object to be uploaded to object storage
|
685
780
|
|
@@ -704,10 +799,13 @@ class DeploymentBackup(pulumi.CustomResource):
|
|
704
799
|
__props__.__dict__["compartment_id"] = compartment_id
|
705
800
|
__props__.__dict__["defined_tags"] = defined_tags
|
706
801
|
__props__.__dict__["deployment_id"] = deployment_id
|
802
|
+
__props__.__dict__["deployment_type"] = deployment_type
|
707
803
|
__props__.__dict__["display_name"] = display_name
|
708
804
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
709
805
|
__props__.__dict__["is_automatic"] = is_automatic
|
806
|
+
__props__.__dict__["is_lock_override"] = is_lock_override
|
710
807
|
__props__.__dict__["lifecycle_details"] = lifecycle_details
|
808
|
+
__props__.__dict__["locks"] = locks
|
711
809
|
__props__.__dict__["namespace"] = namespace
|
712
810
|
__props__.__dict__["object"] = object
|
713
811
|
__props__.__dict__["ogg_version"] = ogg_version
|
@@ -760,6 +858,14 @@ class DeploymentBackup(pulumi.CustomResource):
|
|
760
858
|
"""
|
761
859
|
return pulumi.get(self, "deployment_id")
|
762
860
|
|
861
|
+
@property
|
862
|
+
@pulumi.getter(name="deploymentType")
|
863
|
+
def deployment_type(self) -> pulumi.Output[str]:
|
864
|
+
"""
|
865
|
+
The type of deployment, which can be any one of the Allowed values. NOTE: Use of the value 'OGG' is maintained for backward compatibility purposes. Its use is discouraged in favor of 'DATABASE_ORACLE'.
|
866
|
+
"""
|
867
|
+
return pulumi.get(self, "deployment_type")
|
868
|
+
|
763
869
|
@property
|
764
870
|
@pulumi.getter(name="displayName")
|
765
871
|
def display_name(self) -> pulumi.Output[str]:
|
@@ -784,6 +890,11 @@ class DeploymentBackup(pulumi.CustomResource):
|
|
784
890
|
"""
|
785
891
|
return pulumi.get(self, "is_automatic")
|
786
892
|
|
893
|
+
@property
|
894
|
+
@pulumi.getter(name="isLockOverride")
|
895
|
+
def is_lock_override(self) -> pulumi.Output[bool]:
|
896
|
+
return pulumi.get(self, "is_lock_override")
|
897
|
+
|
787
898
|
@property
|
788
899
|
@pulumi.getter(name="lifecycleDetails")
|
789
900
|
def lifecycle_details(self) -> pulumi.Output[str]:
|
@@ -792,6 +903,14 @@ class DeploymentBackup(pulumi.CustomResource):
|
|
792
903
|
"""
|
793
904
|
return pulumi.get(self, "lifecycle_details")
|
794
905
|
|
906
|
+
@property
|
907
|
+
@pulumi.getter
|
908
|
+
def locks(self) -> pulumi.Output[Sequence['outputs.DeploymentBackupLock']]:
|
909
|
+
"""
|
910
|
+
Locks associated with this resource.
|
911
|
+
"""
|
912
|
+
return pulumi.get(self, "locks")
|
913
|
+
|
795
914
|
@property
|
796
915
|
@pulumi.getter
|
797
916
|
def namespace(self) -> pulumi.Output[str]:
|
@@ -16,26 +16,30 @@ class DeploymentCertificateArgs:
|
|
16
16
|
def __init__(__self__, *,
|
17
17
|
certificate_content: pulumi.Input[str],
|
18
18
|
deployment_id: pulumi.Input[str],
|
19
|
-
key: pulumi.Input[str]
|
19
|
+
key: pulumi.Input[str],
|
20
|
+
is_lock_override: Optional[pulumi.Input[bool]] = None):
|
20
21
|
"""
|
21
22
|
The set of arguments for constructing a DeploymentCertificate resource.
|
22
|
-
:param pulumi.Input[str] certificate_content:
|
23
|
+
:param pulumi.Input[str] certificate_content: The base64 encoded content of the PEM file containing the SSL certificate.
|
23
24
|
:param pulumi.Input[str] deployment_id: A unique Deployment identifier.
|
24
25
|
:param pulumi.Input[str] key: The identifier key (unique name in the scope of the deployment) of the certificate being referenced. It must be 1 to 32 characters long, must contain only alphanumeric characters and must start with a letter.
|
25
26
|
|
26
27
|
|
27
28
|
** IMPORTANT **
|
28
29
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
30
|
+
:param pulumi.Input[bool] is_lock_override: Whether to override locks (if any exist).
|
29
31
|
"""
|
30
32
|
pulumi.set(__self__, "certificate_content", certificate_content)
|
31
33
|
pulumi.set(__self__, "deployment_id", deployment_id)
|
32
34
|
pulumi.set(__self__, "key", key)
|
35
|
+
if is_lock_override is not None:
|
36
|
+
pulumi.set(__self__, "is_lock_override", is_lock_override)
|
33
37
|
|
34
38
|
@property
|
35
39
|
@pulumi.getter(name="certificateContent")
|
36
40
|
def certificate_content(self) -> pulumi.Input[str]:
|
37
41
|
"""
|
38
|
-
|
42
|
+
The base64 encoded content of the PEM file containing the SSL certificate.
|
39
43
|
"""
|
40
44
|
return pulumi.get(self, "certificate_content")
|
41
45
|
|
@@ -71,6 +75,18 @@ class DeploymentCertificateArgs:
|
|
71
75
|
def key(self, value: pulumi.Input[str]):
|
72
76
|
pulumi.set(self, "key", value)
|
73
77
|
|
78
|
+
@property
|
79
|
+
@pulumi.getter(name="isLockOverride")
|
80
|
+
def is_lock_override(self) -> Optional[pulumi.Input[bool]]:
|
81
|
+
"""
|
82
|
+
Whether to override locks (if any exist).
|
83
|
+
"""
|
84
|
+
return pulumi.get(self, "is_lock_override")
|
85
|
+
|
86
|
+
@is_lock_override.setter
|
87
|
+
def is_lock_override(self, value: Optional[pulumi.Input[bool]]):
|
88
|
+
pulumi.set(self, "is_lock_override", value)
|
89
|
+
|
74
90
|
|
75
91
|
@pulumi.input_type
|
76
92
|
class _DeploymentCertificateState:
|
@@ -79,6 +95,7 @@ class _DeploymentCertificateState:
|
|
79
95
|
certificate_content: Optional[pulumi.Input[str]] = None,
|
80
96
|
deployment_id: Optional[pulumi.Input[str]] = None,
|
81
97
|
is_ca: Optional[pulumi.Input[bool]] = None,
|
98
|
+
is_lock_override: Optional[pulumi.Input[bool]] = None,
|
82
99
|
is_self_signed: Optional[pulumi.Input[bool]] = None,
|
83
100
|
issuer: Optional[pulumi.Input[str]] = None,
|
84
101
|
key: Optional[pulumi.Input[str]] = None,
|
@@ -98,9 +115,10 @@ class _DeploymentCertificateState:
|
|
98
115
|
"""
|
99
116
|
Input properties used for looking up and filtering DeploymentCertificate resources.
|
100
117
|
:param pulumi.Input[str] authority_key_id: The Certificate authority key id.
|
101
|
-
:param pulumi.Input[str] certificate_content:
|
118
|
+
:param pulumi.Input[str] certificate_content: The base64 encoded content of the PEM file containing the SSL certificate.
|
102
119
|
:param pulumi.Input[str] deployment_id: A unique Deployment identifier.
|
103
120
|
:param pulumi.Input[bool] is_ca: Indicates if the certificate is ca.
|
121
|
+
:param pulumi.Input[bool] is_lock_override: Whether to override locks (if any exist).
|
104
122
|
:param pulumi.Input[bool] is_self_signed: Indicates if the certificate is self signed.
|
105
123
|
:param pulumi.Input[str] issuer: The Certificate issuer.
|
106
124
|
:param pulumi.Input[str] key: The identifier key (unique name in the scope of the deployment) of the certificate being referenced. It must be 1 to 32 characters long, must contain only alphanumeric characters and must start with a letter.
|
@@ -130,6 +148,8 @@ class _DeploymentCertificateState:
|
|
130
148
|
pulumi.set(__self__, "deployment_id", deployment_id)
|
131
149
|
if is_ca is not None:
|
132
150
|
pulumi.set(__self__, "is_ca", is_ca)
|
151
|
+
if is_lock_override is not None:
|
152
|
+
pulumi.set(__self__, "is_lock_override", is_lock_override)
|
133
153
|
if is_self_signed is not None:
|
134
154
|
pulumi.set(__self__, "is_self_signed", is_self_signed)
|
135
155
|
if issuer is not None:
|
@@ -179,7 +199,7 @@ class _DeploymentCertificateState:
|
|
179
199
|
@pulumi.getter(name="certificateContent")
|
180
200
|
def certificate_content(self) -> Optional[pulumi.Input[str]]:
|
181
201
|
"""
|
182
|
-
|
202
|
+
The base64 encoded content of the PEM file containing the SSL certificate.
|
183
203
|
"""
|
184
204
|
return pulumi.get(self, "certificate_content")
|
185
205
|
|
@@ -211,6 +231,18 @@ class _DeploymentCertificateState:
|
|
211
231
|
def is_ca(self, value: Optional[pulumi.Input[bool]]):
|
212
232
|
pulumi.set(self, "is_ca", value)
|
213
233
|
|
234
|
+
@property
|
235
|
+
@pulumi.getter(name="isLockOverride")
|
236
|
+
def is_lock_override(self) -> Optional[pulumi.Input[bool]]:
|
237
|
+
"""
|
238
|
+
Whether to override locks (if any exist).
|
239
|
+
"""
|
240
|
+
return pulumi.get(self, "is_lock_override")
|
241
|
+
|
242
|
+
@is_lock_override.setter
|
243
|
+
def is_lock_override(self, value: Optional[pulumi.Input[bool]]):
|
244
|
+
pulumi.set(self, "is_lock_override", value)
|
245
|
+
|
214
246
|
@property
|
215
247
|
@pulumi.getter(name="isSelfSigned")
|
216
248
|
def is_self_signed(self) -> Optional[pulumi.Input[bool]]:
|
@@ -415,6 +447,7 @@ class DeploymentCertificate(pulumi.CustomResource):
|
|
415
447
|
opts: Optional[pulumi.ResourceOptions] = None,
|
416
448
|
certificate_content: Optional[pulumi.Input[str]] = None,
|
417
449
|
deployment_id: Optional[pulumi.Input[str]] = None,
|
450
|
+
is_lock_override: Optional[pulumi.Input[bool]] = None,
|
418
451
|
key: Optional[pulumi.Input[str]] = None,
|
419
452
|
__props__=None):
|
420
453
|
"""
|
@@ -431,7 +464,8 @@ class DeploymentCertificate(pulumi.CustomResource):
|
|
431
464
|
test_deployment_certificate = oci.golden_gate.DeploymentCertificate("test_deployment_certificate",
|
432
465
|
certificate_content=deployment_certificate_certificate_content,
|
433
466
|
deployment_id=test_deployment["id"],
|
434
|
-
key=deployment_certificate_key
|
467
|
+
key=deployment_certificate_key,
|
468
|
+
is_lock_override=deployment_certificate_is_lock_override)
|
435
469
|
```
|
436
470
|
|
437
471
|
## Import
|
@@ -444,8 +478,9 @@ class DeploymentCertificate(pulumi.CustomResource):
|
|
444
478
|
|
445
479
|
:param str resource_name: The name of the resource.
|
446
480
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
447
|
-
:param pulumi.Input[str] certificate_content:
|
481
|
+
:param pulumi.Input[str] certificate_content: The base64 encoded content of the PEM file containing the SSL certificate.
|
448
482
|
:param pulumi.Input[str] deployment_id: A unique Deployment identifier.
|
483
|
+
:param pulumi.Input[bool] is_lock_override: Whether to override locks (if any exist).
|
449
484
|
:param pulumi.Input[str] key: The identifier key (unique name in the scope of the deployment) of the certificate being referenced. It must be 1 to 32 characters long, must contain only alphanumeric characters and must start with a letter.
|
450
485
|
|
451
486
|
|
@@ -472,7 +507,8 @@ class DeploymentCertificate(pulumi.CustomResource):
|
|
472
507
|
test_deployment_certificate = oci.golden_gate.DeploymentCertificate("test_deployment_certificate",
|
473
508
|
certificate_content=deployment_certificate_certificate_content,
|
474
509
|
deployment_id=test_deployment["id"],
|
475
|
-
key=deployment_certificate_key
|
510
|
+
key=deployment_certificate_key,
|
511
|
+
is_lock_override=deployment_certificate_is_lock_override)
|
476
512
|
```
|
477
513
|
|
478
514
|
## Import
|
@@ -500,6 +536,7 @@ class DeploymentCertificate(pulumi.CustomResource):
|
|
500
536
|
opts: Optional[pulumi.ResourceOptions] = None,
|
501
537
|
certificate_content: Optional[pulumi.Input[str]] = None,
|
502
538
|
deployment_id: Optional[pulumi.Input[str]] = None,
|
539
|
+
is_lock_override: Optional[pulumi.Input[bool]] = None,
|
503
540
|
key: Optional[pulumi.Input[str]] = None,
|
504
541
|
__props__=None):
|
505
542
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
@@ -516,6 +553,7 @@ class DeploymentCertificate(pulumi.CustomResource):
|
|
516
553
|
if deployment_id is None and not opts.urn:
|
517
554
|
raise TypeError("Missing required property 'deployment_id'")
|
518
555
|
__props__.__dict__["deployment_id"] = deployment_id
|
556
|
+
__props__.__dict__["is_lock_override"] = is_lock_override
|
519
557
|
if key is None and not opts.urn:
|
520
558
|
raise TypeError("Missing required property 'key'")
|
521
559
|
__props__.__dict__["key"] = key
|
@@ -550,6 +588,7 @@ class DeploymentCertificate(pulumi.CustomResource):
|
|
550
588
|
certificate_content: Optional[pulumi.Input[str]] = None,
|
551
589
|
deployment_id: Optional[pulumi.Input[str]] = None,
|
552
590
|
is_ca: Optional[pulumi.Input[bool]] = None,
|
591
|
+
is_lock_override: Optional[pulumi.Input[bool]] = None,
|
553
592
|
is_self_signed: Optional[pulumi.Input[bool]] = None,
|
554
593
|
issuer: Optional[pulumi.Input[str]] = None,
|
555
594
|
key: Optional[pulumi.Input[str]] = None,
|
@@ -574,9 +613,10 @@ class DeploymentCertificate(pulumi.CustomResource):
|
|
574
613
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
575
614
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
576
615
|
:param pulumi.Input[str] authority_key_id: The Certificate authority key id.
|
577
|
-
:param pulumi.Input[str] certificate_content:
|
616
|
+
:param pulumi.Input[str] certificate_content: The base64 encoded content of the PEM file containing the SSL certificate.
|
578
617
|
:param pulumi.Input[str] deployment_id: A unique Deployment identifier.
|
579
618
|
:param pulumi.Input[bool] is_ca: Indicates if the certificate is ca.
|
619
|
+
:param pulumi.Input[bool] is_lock_override: Whether to override locks (if any exist).
|
580
620
|
:param pulumi.Input[bool] is_self_signed: Indicates if the certificate is self signed.
|
581
621
|
:param pulumi.Input[str] issuer: The Certificate issuer.
|
582
622
|
:param pulumi.Input[str] key: The identifier key (unique name in the scope of the deployment) of the certificate being referenced. It must be 1 to 32 characters long, must contain only alphanumeric characters and must start with a letter.
|
@@ -606,6 +646,7 @@ class DeploymentCertificate(pulumi.CustomResource):
|
|
606
646
|
__props__.__dict__["certificate_content"] = certificate_content
|
607
647
|
__props__.__dict__["deployment_id"] = deployment_id
|
608
648
|
__props__.__dict__["is_ca"] = is_ca
|
649
|
+
__props__.__dict__["is_lock_override"] = is_lock_override
|
609
650
|
__props__.__dict__["is_self_signed"] = is_self_signed
|
610
651
|
__props__.__dict__["issuer"] = issuer
|
611
652
|
__props__.__dict__["key"] = key
|
@@ -636,7 +677,7 @@ class DeploymentCertificate(pulumi.CustomResource):
|
|
636
677
|
@pulumi.getter(name="certificateContent")
|
637
678
|
def certificate_content(self) -> pulumi.Output[str]:
|
638
679
|
"""
|
639
|
-
|
680
|
+
The base64 encoded content of the PEM file containing the SSL certificate.
|
640
681
|
"""
|
641
682
|
return pulumi.get(self, "certificate_content")
|
642
683
|
|
@@ -656,6 +697,14 @@ class DeploymentCertificate(pulumi.CustomResource):
|
|
656
697
|
"""
|
657
698
|
return pulumi.get(self, "is_ca")
|
658
699
|
|
700
|
+
@property
|
701
|
+
@pulumi.getter(name="isLockOverride")
|
702
|
+
def is_lock_override(self) -> pulumi.Output[bool]:
|
703
|
+
"""
|
704
|
+
Whether to override locks (if any exist).
|
705
|
+
"""
|
706
|
+
return pulumi.get(self, "is_lock_override")
|
707
|
+
|
659
708
|
@property
|
660
709
|
@pulumi.getter(name="isSelfSigned")
|
661
710
|
def is_self_signed(self) -> pulumi.Output[bool]:
|