pulumi-oci 1.38.0a1717136770__py3-none-any.whl → 1.39.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (48) hide show
  1. pulumi_oci/__init__.py +19 -0
  2. pulumi_oci/bigdataservice/__init__.py +1 -0
  3. pulumi_oci/bigdataservice/_inputs.py +103 -2
  4. pulumi_oci/bigdataservice/bds_instance_os_patch_action.py +239 -0
  5. pulumi_oci/bigdataservice/outputs.py +174 -6
  6. pulumi_oci/database/__init__.py +1 -0
  7. pulumi_oci/database/_inputs.py +44 -4
  8. pulumi_oci/database/autonomous_database.py +61 -14
  9. pulumi_oci/database/cloud_autonomous_vm_cluster.py +25 -7
  10. pulumi_oci/database/get_autonomous_character_sets.py +4 -0
  11. pulumi_oci/database/get_autonomous_database.py +14 -1
  12. pulumi_oci/database/get_autonomous_database_peers.py +133 -0
  13. pulumi_oci/database/outputs.py +102 -6
  14. pulumi_oci/demandsignal/__init__.py +12 -0
  15. pulumi_oci/demandsignal/_inputs.py +267 -0
  16. pulumi_oci/demandsignal/get_occ_demand_signal.py +259 -0
  17. pulumi_oci/demandsignal/get_occ_demand_signals.py +183 -0
  18. pulumi_oci/demandsignal/occ_demand_signal.py +630 -0
  19. pulumi_oci/demandsignal/outputs.py +700 -0
  20. pulumi_oci/goldengate/_inputs.py +219 -6
  21. pulumi_oci/goldengate/connection.py +334 -0
  22. pulumi_oci/goldengate/connection_assignment.py +68 -19
  23. pulumi_oci/goldengate/deployment.py +88 -7
  24. pulumi_oci/goldengate/deployment_backup.py +122 -3
  25. pulumi_oci/goldengate/deployment_certificate.py +59 -10
  26. pulumi_oci/goldengate/get_connection.py +80 -1
  27. pulumi_oci/goldengate/get_connection_assignment.py +11 -1
  28. pulumi_oci/goldengate/get_deployment.py +25 -2
  29. pulumi_oci/goldengate/get_deployment_backup.py +38 -1
  30. pulumi_oci/goldengate/get_deployment_certificate.py +12 -2
  31. pulumi_oci/goldengate/get_deployment_certificates.py +3 -0
  32. pulumi_oci/goldengate/get_trail_files.py +2 -2
  33. pulumi_oci/goldengate/get_trail_sequences.py +2 -2
  34. pulumi_oci/goldengate/outputs.py +720 -12
  35. pulumi_oci/jms/get_java_downloads_java_download_report.py +28 -2
  36. pulumi_oci/jms/get_java_downloads_java_download_token.py +4 -4
  37. pulumi_oci/jms/get_java_downloads_java_license_acceptance_record.py +2 -2
  38. pulumi_oci/jms/java_downloads_java_download_report.py +96 -6
  39. pulumi_oci/jms/java_downloads_java_download_token.py +14 -12
  40. pulumi_oci/jms/java_downloads_java_license_acceptance_record.py +41 -16
  41. pulumi_oci/jms/outputs.py +38 -16
  42. pulumi_oci/loadbalancer/_inputs.py +4 -0
  43. pulumi_oci/loadbalancer/outputs.py +4 -0
  44. pulumi_oci/pulumi-plugin.json +1 -1
  45. {pulumi_oci-1.38.0a1717136770.dist-info → pulumi_oci-1.39.0.dist-info}/METADATA +1 -1
  46. {pulumi_oci-1.38.0a1717136770.dist-info → pulumi_oci-1.39.0.dist-info}/RECORD +48 -40
  47. {pulumi_oci-1.38.0a1717136770.dist-info → pulumi_oci-1.39.0.dist-info}/WHEEL +0 -0
  48. {pulumi_oci-1.38.0a1717136770.dist-info → pulumi_oci-1.39.0.dist-info}/top_level.txt +0 -0
@@ -13,8 +13,11 @@ __all__ = [
13
13
  'ConnectionAdditionalAttributeArgs',
14
14
  'ConnectionBootstrapServerArgs',
15
15
  'ConnectionIngressIpArgs',
16
+ 'ConnectionLockArgs',
17
+ 'DeploymentBackupLockArgs',
16
18
  'DeploymentDeploymentDiagnosticDataArgs',
17
19
  'DeploymentIngressIpArgs',
20
+ 'DeploymentLockArgs',
18
21
  'DeploymentMaintenanceConfigurationArgs',
19
22
  'DeploymentMaintenanceWindowArgs',
20
23
  'DeploymentOggDataArgs',
@@ -151,6 +154,146 @@ class ConnectionIngressIpArgs:
151
154
  pulumi.set(self, "ingress_ip", value)
152
155
 
153
156
 
157
+ @pulumi.input_type
158
+ class ConnectionLockArgs:
159
+ def __init__(__self__, *,
160
+ type: pulumi.Input[str],
161
+ message: Optional[pulumi.Input[str]] = None,
162
+ related_resource_id: Optional[pulumi.Input[str]] = None,
163
+ time_created: Optional[pulumi.Input[str]] = None):
164
+ """
165
+ :param pulumi.Input[str] type: Type of the lock.
166
+ :param pulumi.Input[str] message: A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
167
+ :param pulumi.Input[str] related_resource_id: The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
168
+ :param pulumi.Input[str] time_created: The time the resource was created. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
169
+ """
170
+ pulumi.set(__self__, "type", type)
171
+ if message is not None:
172
+ pulumi.set(__self__, "message", message)
173
+ if related_resource_id is not None:
174
+ pulumi.set(__self__, "related_resource_id", related_resource_id)
175
+ if time_created is not None:
176
+ pulumi.set(__self__, "time_created", time_created)
177
+
178
+ @property
179
+ @pulumi.getter
180
+ def type(self) -> pulumi.Input[str]:
181
+ """
182
+ Type of the lock.
183
+ """
184
+ return pulumi.get(self, "type")
185
+
186
+ @type.setter
187
+ def type(self, value: pulumi.Input[str]):
188
+ pulumi.set(self, "type", value)
189
+
190
+ @property
191
+ @pulumi.getter
192
+ def message(self) -> Optional[pulumi.Input[str]]:
193
+ """
194
+ A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
195
+ """
196
+ return pulumi.get(self, "message")
197
+
198
+ @message.setter
199
+ def message(self, value: Optional[pulumi.Input[str]]):
200
+ pulumi.set(self, "message", value)
201
+
202
+ @property
203
+ @pulumi.getter(name="relatedResourceId")
204
+ def related_resource_id(self) -> Optional[pulumi.Input[str]]:
205
+ """
206
+ The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
207
+ """
208
+ return pulumi.get(self, "related_resource_id")
209
+
210
+ @related_resource_id.setter
211
+ def related_resource_id(self, value: Optional[pulumi.Input[str]]):
212
+ pulumi.set(self, "related_resource_id", value)
213
+
214
+ @property
215
+ @pulumi.getter(name="timeCreated")
216
+ def time_created(self) -> Optional[pulumi.Input[str]]:
217
+ """
218
+ The time the resource was created. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
219
+ """
220
+ return pulumi.get(self, "time_created")
221
+
222
+ @time_created.setter
223
+ def time_created(self, value: Optional[pulumi.Input[str]]):
224
+ pulumi.set(self, "time_created", value)
225
+
226
+
227
+ @pulumi.input_type
228
+ class DeploymentBackupLockArgs:
229
+ def __init__(__self__, *,
230
+ type: pulumi.Input[str],
231
+ message: Optional[pulumi.Input[str]] = None,
232
+ related_resource_id: Optional[pulumi.Input[str]] = None,
233
+ time_created: Optional[pulumi.Input[str]] = None):
234
+ """
235
+ :param pulumi.Input[str] type: Type of the lock.
236
+ :param pulumi.Input[str] message: A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
237
+ :param pulumi.Input[str] related_resource_id: The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
238
+ :param pulumi.Input[str] time_created: The time the resource was created. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
239
+ """
240
+ pulumi.set(__self__, "type", type)
241
+ if message is not None:
242
+ pulumi.set(__self__, "message", message)
243
+ if related_resource_id is not None:
244
+ pulumi.set(__self__, "related_resource_id", related_resource_id)
245
+ if time_created is not None:
246
+ pulumi.set(__self__, "time_created", time_created)
247
+
248
+ @property
249
+ @pulumi.getter
250
+ def type(self) -> pulumi.Input[str]:
251
+ """
252
+ Type of the lock.
253
+ """
254
+ return pulumi.get(self, "type")
255
+
256
+ @type.setter
257
+ def type(self, value: pulumi.Input[str]):
258
+ pulumi.set(self, "type", value)
259
+
260
+ @property
261
+ @pulumi.getter
262
+ def message(self) -> Optional[pulumi.Input[str]]:
263
+ """
264
+ A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
265
+ """
266
+ return pulumi.get(self, "message")
267
+
268
+ @message.setter
269
+ def message(self, value: Optional[pulumi.Input[str]]):
270
+ pulumi.set(self, "message", value)
271
+
272
+ @property
273
+ @pulumi.getter(name="relatedResourceId")
274
+ def related_resource_id(self) -> Optional[pulumi.Input[str]]:
275
+ """
276
+ The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
277
+ """
278
+ return pulumi.get(self, "related_resource_id")
279
+
280
+ @related_resource_id.setter
281
+ def related_resource_id(self, value: Optional[pulumi.Input[str]]):
282
+ pulumi.set(self, "related_resource_id", value)
283
+
284
+ @property
285
+ @pulumi.getter(name="timeCreated")
286
+ def time_created(self) -> Optional[pulumi.Input[str]]:
287
+ """
288
+ The time the resource was created. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
289
+ """
290
+ return pulumi.get(self, "time_created")
291
+
292
+ @time_created.setter
293
+ def time_created(self, value: Optional[pulumi.Input[str]]):
294
+ pulumi.set(self, "time_created", value)
295
+
296
+
154
297
  @pulumi.input_type
155
298
  class DeploymentDeploymentDiagnosticDataArgs:
156
299
  def __init__(__self__, *,
@@ -277,6 +420,76 @@ class DeploymentIngressIpArgs:
277
420
  pulumi.set(self, "ingress_ip", value)
278
421
 
279
422
 
423
+ @pulumi.input_type
424
+ class DeploymentLockArgs:
425
+ def __init__(__self__, *,
426
+ type: pulumi.Input[str],
427
+ message: Optional[pulumi.Input[str]] = None,
428
+ related_resource_id: Optional[pulumi.Input[str]] = None,
429
+ time_created: Optional[pulumi.Input[str]] = None):
430
+ """
431
+ :param pulumi.Input[str] type: Type of the lock.
432
+ :param pulumi.Input[str] message: A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
433
+ :param pulumi.Input[str] related_resource_id: The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
434
+ :param pulumi.Input[str] time_created: The time the resource was created. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
435
+ """
436
+ pulumi.set(__self__, "type", type)
437
+ if message is not None:
438
+ pulumi.set(__self__, "message", message)
439
+ if related_resource_id is not None:
440
+ pulumi.set(__self__, "related_resource_id", related_resource_id)
441
+ if time_created is not None:
442
+ pulumi.set(__self__, "time_created", time_created)
443
+
444
+ @property
445
+ @pulumi.getter
446
+ def type(self) -> pulumi.Input[str]:
447
+ """
448
+ Type of the lock.
449
+ """
450
+ return pulumi.get(self, "type")
451
+
452
+ @type.setter
453
+ def type(self, value: pulumi.Input[str]):
454
+ pulumi.set(self, "type", value)
455
+
456
+ @property
457
+ @pulumi.getter
458
+ def message(self) -> Optional[pulumi.Input[str]]:
459
+ """
460
+ A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
461
+ """
462
+ return pulumi.get(self, "message")
463
+
464
+ @message.setter
465
+ def message(self, value: Optional[pulumi.Input[str]]):
466
+ pulumi.set(self, "message", value)
467
+
468
+ @property
469
+ @pulumi.getter(name="relatedResourceId")
470
+ def related_resource_id(self) -> Optional[pulumi.Input[str]]:
471
+ """
472
+ The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
473
+ """
474
+ return pulumi.get(self, "related_resource_id")
475
+
476
+ @related_resource_id.setter
477
+ def related_resource_id(self, value: Optional[pulumi.Input[str]]):
478
+ pulumi.set(self, "related_resource_id", value)
479
+
480
+ @property
481
+ @pulumi.getter(name="timeCreated")
482
+ def time_created(self) -> Optional[pulumi.Input[str]]:
483
+ """
484
+ The time the resource was created. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
485
+ """
486
+ return pulumi.get(self, "time_created")
487
+
488
+ @time_created.setter
489
+ def time_created(self, value: Optional[pulumi.Input[str]]):
490
+ pulumi.set(self, "time_created", value)
491
+
492
+
280
493
  @pulumi.input_type
281
494
  class DeploymentMaintenanceConfigurationArgs:
282
495
  def __init__(__self__, *,
@@ -417,11 +630,11 @@ class DeploymentOggDataArgs:
417
630
  :param pulumi.Input[str] deployment_name: The name given to the GoldenGate service deployment. The name must be 1 to 32 characters long, must contain only alphanumeric characters and must start with a letter.
418
631
  :param pulumi.Input[str] admin_password: (Updatable) The password associated with the GoldenGate deployment console username. The password must be 8 to 30 characters long and must contain at least 1 uppercase, 1 lowercase, 1 numeric, and 1 special character. Special characters such as ‘$’, ‘^’, or ‘?’ are not allowed. This field will be deprecated and replaced by "passwordSecretId".
419
632
  :param pulumi.Input[str] admin_username: (Updatable) The GoldenGate deployment console username.
420
- :param pulumi.Input[str] certificate: (Updatable) A PEM-encoded SSL certificate.
633
+ :param pulumi.Input[str] certificate: (Updatable) The base64 encoded content of the PEM file containing the SSL certificate.
421
634
  :param pulumi.Input[str] credential_store: (Updatable) The type of credential store for OGG.
422
635
  :param pulumi.Input[str] identity_domain_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Identity Domain when IAM credential store is used.
423
- :param pulumi.Input[str] key: (Updatable) A PEM-encoded private key.
424
- :param pulumi.Input[str] ogg_version: (Updatable) Version of ogg to use by deployment. By updating version you can upgrade your deployment to a newer version. Downgrade to older version is not supported.
636
+ :param pulumi.Input[str] key: (Updatable) The base64 encoded content of the PEM file containing the private key.
637
+ :param pulumi.Input[str] ogg_version: Version of OGG
425
638
  :param pulumi.Input[str] password_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the deployment password is stored.
426
639
  """
427
640
  pulumi.set(__self__, "deployment_name", deployment_name)
@@ -482,7 +695,7 @@ class DeploymentOggDataArgs:
482
695
  @pulumi.getter
483
696
  def certificate(self) -> Optional[pulumi.Input[str]]:
484
697
  """
485
- (Updatable) A PEM-encoded SSL certificate.
698
+ (Updatable) The base64 encoded content of the PEM file containing the SSL certificate.
486
699
  """
487
700
  return pulumi.get(self, "certificate")
488
701
 
@@ -518,7 +731,7 @@ class DeploymentOggDataArgs:
518
731
  @pulumi.getter
519
732
  def key(self) -> Optional[pulumi.Input[str]]:
520
733
  """
521
- (Updatable) A PEM-encoded private key.
734
+ (Updatable) The base64 encoded content of the PEM file containing the private key.
522
735
  """
523
736
  return pulumi.get(self, "key")
524
737
 
@@ -530,7 +743,7 @@ class DeploymentOggDataArgs:
530
743
  @pulumi.getter(name="oggVersion")
531
744
  def ogg_version(self) -> Optional[pulumi.Input[str]]:
532
745
  """
533
- (Updatable) Version of ogg to use by deployment. By updating version you can upgrade your deployment to a newer version. Downgrade to older version is not supported.
746
+ Version of OGG
534
747
  """
535
748
  return pulumi.get(self, "ogg_version")
536
749