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