pulumi-oci 2.13.0a1729198151__py3-none-any.whl → 2.14.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.
- pulumi_oci/__init__.py +24 -19
- pulumi_oci/containerengine/_inputs.py +341 -0
- pulumi_oci/containerengine/cluster.py +64 -0
- pulumi_oci/containerengine/get_cluster.py +12 -1
- pulumi_oci/containerengine/outputs.py +582 -0
- pulumi_oci/core/_inputs.py +373 -37
- pulumi_oci/core/boot_volume.py +90 -5
- pulumi_oci/core/get_block_volume_replica.py +15 -1
- pulumi_oci/core/get_boot_volume.py +15 -4
- pulumi_oci/core/get_boot_volume_replica.py +15 -1
- pulumi_oci/core/get_instance.py +1 -1
- pulumi_oci/core/get_virtual_circuit.py +18 -4
- pulumi_oci/core/get_volume.py +18 -4
- pulumi_oci/core/instance.py +7 -7
- pulumi_oci/core/instance_configuration.py +4 -0
- pulumi_oci/core/outputs.py +738 -53
- pulumi_oci/core/virtual_circuit.py +30 -2
- pulumi_oci/core/volume.py +110 -12
- pulumi_oci/core/volume_backup_policy_assignment.py +68 -19
- pulumi_oci/core/volume_group.py +56 -5
- pulumi_oci/database/_inputs.py +642 -0
- pulumi_oci/database/autonomous_container_database.py +14 -14
- pulumi_oci/database/autonomous_database.py +75 -0
- pulumi_oci/database/get_autonomous_container_database.py +3 -3
- pulumi_oci/database/get_autonomous_database.py +29 -1
- pulumi_oci/database/get_autonomous_databases.py +22 -28
- pulumi_oci/database/outputs.py +1669 -86
- pulumi_oci/datasafe/__init__.py +1 -0
- pulumi_oci/datasafe/generate_on_prem_connector_configuration.py +271 -0
- pulumi_oci/datascience/_inputs.py +353 -0
- pulumi_oci/datascience/get_model.py +85 -1
- pulumi_oci/datascience/get_models.py +5 -0
- pulumi_oci/datascience/model.py +206 -66
- pulumi_oci/datascience/outputs.py +759 -0
- pulumi_oci/desktops/_inputs.py +175 -13
- pulumi_oci/desktops/desktop_pool.py +67 -0
- pulumi_oci/desktops/get_desktop_pool.py +16 -1
- pulumi_oci/desktops/outputs.py +339 -18
- pulumi_oci/dns/__init__.py +2 -0
- pulumi_oci/dns/_inputs.py +1157 -12
- pulumi_oci/dns/action_create_zone_from_zone_file.py +42 -2
- pulumi_oci/dns/get_records.py +45 -13
- pulumi_oci/dns/get_resolver.py +8 -6
- pulumi_oci/dns/get_resolver_endpoint.py +8 -6
- pulumi_oci/dns/get_resolver_endpoints.py +2 -2
- pulumi_oci/dns/get_resolvers.py +12 -12
- pulumi_oci/dns/get_rrset.py +16 -16
- pulumi_oci/dns/get_rrsets.py +12 -10
- pulumi_oci/dns/get_view.py +8 -4
- pulumi_oci/dns/get_views.py +12 -12
- pulumi_oci/dns/get_zones.py +33 -13
- pulumi_oci/dns/outputs.py +1388 -79
- pulumi_oci/dns/record.py +12 -12
- pulumi_oci/dns/resolver.py +7 -7
- pulumi_oci/dns/resolver_endpoint.py +2 -2
- pulumi_oci/dns/rrset.py +50 -41
- pulumi_oci/dns/zone.py +176 -17
- pulumi_oci/dns/zone_promote_dnssec_key_version.py +328 -0
- pulumi_oci/dns/zone_stage_dnssec_key_version.py +318 -0
- pulumi_oci/filestorage/_inputs.py +651 -0
- pulumi_oci/filestorage/export.py +96 -3
- pulumi_oci/filestorage/file_system.py +93 -0
- pulumi_oci/filestorage/filesystem_snapshot_policy.py +93 -0
- pulumi_oci/filestorage/get_filesystem_snapshot_policy.py +26 -1
- pulumi_oci/filestorage/get_outbound_connector.py +26 -1
- pulumi_oci/filestorage/get_replication.py +27 -1
- pulumi_oci/filestorage/get_snapshot.py +27 -1
- pulumi_oci/filestorage/mount_target.py +108 -0
- pulumi_oci/filestorage/outbound_connector.py +93 -0
- pulumi_oci/filestorage/outputs.py +1218 -2
- pulumi_oci/filestorage/replication.py +95 -0
- pulumi_oci/filestorage/snapshot.py +97 -2
- pulumi_oci/goldengate/__init__.py +1 -0
- pulumi_oci/goldengate/_inputs.py +165 -0
- pulumi_oci/goldengate/connection.py +49 -35
- pulumi_oci/goldengate/database_registration.py +7 -7
- pulumi_oci/goldengate/deployment.py +79 -4
- pulumi_oci/goldengate/get_deployment.py +30 -2
- pulumi_oci/goldengate/get_deployment_environments.py +144 -0
- pulumi_oci/goldengate/outputs.py +409 -2
- pulumi_oci/networkloadbalancer/get_network_load_balancer.py +15 -1
- pulumi_oci/networkloadbalancer/network_load_balancer.py +47 -0
- pulumi_oci/networkloadbalancer/outputs.py +11 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-2.13.0a1729198151.dist-info → pulumi_oci-2.14.0.dist-info}/METADATA +1 -1
- {pulumi_oci-2.13.0a1729198151.dist-info → pulumi_oci-2.14.0.dist-info}/RECORD +88 -93
- {pulumi_oci-2.13.0a1729198151.dist-info → pulumi_oci-2.14.0.dist-info}/WHEEL +1 -1
- pulumi_oci/globallydistributeddatabase/__init__.py +0 -15
- pulumi_oci/globallydistributeddatabase/_inputs.py +0 -1289
- pulumi_oci/globallydistributeddatabase/get_private_endpoint.py +0 -323
- pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +0 -191
- pulumi_oci/globallydistributeddatabase/get_sharded_database.py +0 -660
- pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +0 -191
- pulumi_oci/globallydistributeddatabase/outputs.py +0 -2063
- pulumi_oci/globallydistributeddatabase/private_endpoint.py +0 -747
- pulumi_oci/globallydistributeddatabase/sharded_database.py +0 -1821
- {pulumi_oci-2.13.0a1729198151.dist-info → pulumi_oci-2.14.0.dist-info}/top_level.txt +0 -0
pulumi_oci/core/volume_group.py
CHANGED
@@ -32,7 +32,8 @@ class VolumeGroupArgs:
|
|
32
32
|
preserve_volume_replica: Optional[pulumi.Input[bool]] = None,
|
33
33
|
volume_group_replicas: Optional[pulumi.Input[Sequence[pulumi.Input['VolumeGroupVolumeGroupReplicaArgs']]]] = None,
|
34
34
|
volume_group_replicas_deletion: Optional[pulumi.Input[bool]] = None,
|
35
|
-
volume_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None
|
35
|
+
volume_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
36
|
+
xrc_kms_key_id: Optional[pulumi.Input[str]] = None):
|
36
37
|
"""
|
37
38
|
The set of arguments for constructing a VolumeGroup resource.
|
38
39
|
:param pulumi.Input[str] availability_domain: The availability domain of the volume group.
|
@@ -48,6 +49,7 @@ class VolumeGroupArgs:
|
|
48
49
|
|
49
50
|
** IMPORTANT **
|
50
51
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
52
|
+
:param pulumi.Input[str] xrc_kms_key_id: The OCID of the Vault service key which is the master encryption key for the volume's cross region backups, which will be used in the destination region to encrypt the backup's encryption keys. For more information about the Vault service and encryption keys, see [Overview of Vault service](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm) and [Using Keys](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Tasks/usingkeys.htm).
|
51
53
|
"""
|
52
54
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
53
55
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
@@ -73,6 +75,8 @@ class VolumeGroupArgs:
|
|
73
75
|
pulumi.set(__self__, "volume_group_replicas_deletion", volume_group_replicas_deletion)
|
74
76
|
if volume_ids is not None:
|
75
77
|
pulumi.set(__self__, "volume_ids", volume_ids)
|
78
|
+
if xrc_kms_key_id is not None:
|
79
|
+
pulumi.set(__self__, "xrc_kms_key_id", xrc_kms_key_id)
|
76
80
|
|
77
81
|
@property
|
78
82
|
@pulumi.getter(name="availabilityDomain")
|
@@ -216,6 +220,18 @@ class VolumeGroupArgs:
|
|
216
220
|
def volume_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
217
221
|
pulumi.set(self, "volume_ids", value)
|
218
222
|
|
223
|
+
@property
|
224
|
+
@pulumi.getter(name="xrcKmsKeyId")
|
225
|
+
def xrc_kms_key_id(self) -> Optional[pulumi.Input[str]]:
|
226
|
+
"""
|
227
|
+
The OCID of the Vault service key which is the master encryption key for the volume's cross region backups, which will be used in the destination region to encrypt the backup's encryption keys. For more information about the Vault service and encryption keys, see [Overview of Vault service](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm) and [Using Keys](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Tasks/usingkeys.htm).
|
228
|
+
"""
|
229
|
+
return pulumi.get(self, "xrc_kms_key_id")
|
230
|
+
|
231
|
+
@xrc_kms_key_id.setter
|
232
|
+
def xrc_kms_key_id(self, value: Optional[pulumi.Input[str]]):
|
233
|
+
pulumi.set(self, "xrc_kms_key_id", value)
|
234
|
+
|
219
235
|
|
220
236
|
@pulumi.input_type
|
221
237
|
class _VolumeGroupState:
|
@@ -236,7 +252,8 @@ class _VolumeGroupState:
|
|
236
252
|
time_created: Optional[pulumi.Input[str]] = None,
|
237
253
|
volume_group_replicas: Optional[pulumi.Input[Sequence[pulumi.Input['VolumeGroupVolumeGroupReplicaArgs']]]] = None,
|
238
254
|
volume_group_replicas_deletion: Optional[pulumi.Input[bool]] = None,
|
239
|
-
volume_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None
|
255
|
+
volume_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
256
|
+
xrc_kms_key_id: Optional[pulumi.Input[str]] = None):
|
240
257
|
"""
|
241
258
|
Input properties used for looking up and filtering VolumeGroup resources.
|
242
259
|
:param pulumi.Input[str] availability_domain: The availability domain of the volume group.
|
@@ -257,6 +274,7 @@ class _VolumeGroupState:
|
|
257
274
|
|
258
275
|
** IMPORTANT **
|
259
276
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
277
|
+
:param pulumi.Input[str] xrc_kms_key_id: The OCID of the Vault service key which is the master encryption key for the volume's cross region backups, which will be used in the destination region to encrypt the backup's encryption keys. For more information about the Vault service and encryption keys, see [Overview of Vault service](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm) and [Using Keys](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Tasks/usingkeys.htm).
|
260
278
|
"""
|
261
279
|
if availability_domain is not None:
|
262
280
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
@@ -295,6 +313,8 @@ class _VolumeGroupState:
|
|
295
313
|
pulumi.set(__self__, "volume_group_replicas_deletion", volume_group_replicas_deletion)
|
296
314
|
if volume_ids is not None:
|
297
315
|
pulumi.set(__self__, "volume_ids", volume_ids)
|
316
|
+
if xrc_kms_key_id is not None:
|
317
|
+
pulumi.set(__self__, "xrc_kms_key_id", xrc_kms_key_id)
|
298
318
|
|
299
319
|
@property
|
300
320
|
@pulumi.getter(name="availabilityDomain")
|
@@ -498,6 +518,18 @@ class _VolumeGroupState:
|
|
498
518
|
def volume_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
499
519
|
pulumi.set(self, "volume_ids", value)
|
500
520
|
|
521
|
+
@property
|
522
|
+
@pulumi.getter(name="xrcKmsKeyId")
|
523
|
+
def xrc_kms_key_id(self) -> Optional[pulumi.Input[str]]:
|
524
|
+
"""
|
525
|
+
The OCID of the Vault service key which is the master encryption key for the volume's cross region backups, which will be used in the destination region to encrypt the backup's encryption keys. For more information about the Vault service and encryption keys, see [Overview of Vault service](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm) and [Using Keys](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Tasks/usingkeys.htm).
|
526
|
+
"""
|
527
|
+
return pulumi.get(self, "xrc_kms_key_id")
|
528
|
+
|
529
|
+
@xrc_kms_key_id.setter
|
530
|
+
def xrc_kms_key_id(self, value: Optional[pulumi.Input[str]]):
|
531
|
+
pulumi.set(self, "xrc_kms_key_id", value)
|
532
|
+
|
501
533
|
|
502
534
|
class VolumeGroup(pulumi.CustomResource):
|
503
535
|
@overload
|
@@ -516,6 +548,7 @@ class VolumeGroup(pulumi.CustomResource):
|
|
516
548
|
volume_group_replicas: Optional[pulumi.Input[Sequence[pulumi.Input[Union['VolumeGroupVolumeGroupReplicaArgs', 'VolumeGroupVolumeGroupReplicaArgsDict']]]]] = None,
|
517
549
|
volume_group_replicas_deletion: Optional[pulumi.Input[bool]] = None,
|
518
550
|
volume_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
551
|
+
xrc_kms_key_id: Optional[pulumi.Input[str]] = None,
|
519
552
|
__props__=None):
|
520
553
|
"""
|
521
554
|
## Example Usage
|
@@ -543,8 +576,10 @@ class VolumeGroup(pulumi.CustomResource):
|
|
543
576
|
volume_group_replicas=[{
|
544
577
|
"availability_domain": volume_group_volume_group_replicas_availability_domain,
|
545
578
|
"display_name": volume_group_volume_group_replicas_display_name,
|
579
|
+
"xrr_kms_key_id": test_key["id"],
|
546
580
|
}],
|
547
|
-
volume_ids=[volume_group_source_id]
|
581
|
+
volume_ids=[volume_group_source_id],
|
582
|
+
xrc_kms_key_id=test_key["id"])
|
548
583
|
```
|
549
584
|
|
550
585
|
## Import
|
@@ -570,6 +605,7 @@ class VolumeGroup(pulumi.CustomResource):
|
|
570
605
|
|
571
606
|
** IMPORTANT **
|
572
607
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
608
|
+
:param pulumi.Input[str] xrc_kms_key_id: The OCID of the Vault service key which is the master encryption key for the volume's cross region backups, which will be used in the destination region to encrypt the backup's encryption keys. For more information about the Vault service and encryption keys, see [Overview of Vault service](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm) and [Using Keys](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Tasks/usingkeys.htm).
|
573
609
|
"""
|
574
610
|
...
|
575
611
|
@overload
|
@@ -603,8 +639,10 @@ class VolumeGroup(pulumi.CustomResource):
|
|
603
639
|
volume_group_replicas=[{
|
604
640
|
"availability_domain": volume_group_volume_group_replicas_availability_domain,
|
605
641
|
"display_name": volume_group_volume_group_replicas_display_name,
|
642
|
+
"xrr_kms_key_id": test_key["id"],
|
606
643
|
}],
|
607
|
-
volume_ids=[volume_group_source_id]
|
644
|
+
volume_ids=[volume_group_source_id],
|
645
|
+
xrc_kms_key_id=test_key["id"])
|
608
646
|
```
|
609
647
|
|
610
648
|
## Import
|
@@ -642,6 +680,7 @@ class VolumeGroup(pulumi.CustomResource):
|
|
642
680
|
volume_group_replicas: Optional[pulumi.Input[Sequence[pulumi.Input[Union['VolumeGroupVolumeGroupReplicaArgs', 'VolumeGroupVolumeGroupReplicaArgsDict']]]]] = None,
|
643
681
|
volume_group_replicas_deletion: Optional[pulumi.Input[bool]] = None,
|
644
682
|
volume_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
683
|
+
xrc_kms_key_id: Optional[pulumi.Input[str]] = None,
|
645
684
|
__props__=None):
|
646
685
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
647
686
|
if not isinstance(opts, pulumi.ResourceOptions):
|
@@ -669,6 +708,7 @@ class VolumeGroup(pulumi.CustomResource):
|
|
669
708
|
__props__.__dict__["volume_group_replicas"] = volume_group_replicas
|
670
709
|
__props__.__dict__["volume_group_replicas_deletion"] = volume_group_replicas_deletion
|
671
710
|
__props__.__dict__["volume_ids"] = volume_ids
|
711
|
+
__props__.__dict__["xrc_kms_key_id"] = xrc_kms_key_id
|
672
712
|
__props__.__dict__["is_hydrated"] = None
|
673
713
|
__props__.__dict__["size_in_gbs"] = None
|
674
714
|
__props__.__dict__["size_in_mbs"] = None
|
@@ -700,7 +740,8 @@ class VolumeGroup(pulumi.CustomResource):
|
|
700
740
|
time_created: Optional[pulumi.Input[str]] = None,
|
701
741
|
volume_group_replicas: Optional[pulumi.Input[Sequence[pulumi.Input[Union['VolumeGroupVolumeGroupReplicaArgs', 'VolumeGroupVolumeGroupReplicaArgsDict']]]]] = None,
|
702
742
|
volume_group_replicas_deletion: Optional[pulumi.Input[bool]] = None,
|
703
|
-
volume_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None
|
743
|
+
volume_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
744
|
+
xrc_kms_key_id: Optional[pulumi.Input[str]] = None) -> 'VolumeGroup':
|
704
745
|
"""
|
705
746
|
Get an existing VolumeGroup resource's state with the given name, id, and optional extra
|
706
747
|
properties used to qualify the lookup.
|
@@ -726,6 +767,7 @@ class VolumeGroup(pulumi.CustomResource):
|
|
726
767
|
|
727
768
|
** IMPORTANT **
|
728
769
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
770
|
+
:param pulumi.Input[str] xrc_kms_key_id: The OCID of the Vault service key which is the master encryption key for the volume's cross region backups, which will be used in the destination region to encrypt the backup's encryption keys. For more information about the Vault service and encryption keys, see [Overview of Vault service](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm) and [Using Keys](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Tasks/usingkeys.htm).
|
729
771
|
"""
|
730
772
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
731
773
|
|
@@ -748,6 +790,7 @@ class VolumeGroup(pulumi.CustomResource):
|
|
748
790
|
__props__.__dict__["volume_group_replicas"] = volume_group_replicas
|
749
791
|
__props__.__dict__["volume_group_replicas_deletion"] = volume_group_replicas_deletion
|
750
792
|
__props__.__dict__["volume_ids"] = volume_ids
|
793
|
+
__props__.__dict__["xrc_kms_key_id"] = xrc_kms_key_id
|
751
794
|
return VolumeGroup(resource_name, opts=opts, __props__=__props__)
|
752
795
|
|
753
796
|
@property
|
@@ -884,3 +927,11 @@ class VolumeGroup(pulumi.CustomResource):
|
|
884
927
|
"""
|
885
928
|
return pulumi.get(self, "volume_ids")
|
886
929
|
|
930
|
+
@property
|
931
|
+
@pulumi.getter(name="xrcKmsKeyId")
|
932
|
+
def xrc_kms_key_id(self) -> pulumi.Output[str]:
|
933
|
+
"""
|
934
|
+
The OCID of the Vault service key which is the master encryption key for the volume's cross region backups, which will be used in the destination region to encrypt the backup's encryption keys. For more information about the Vault service and encryption keys, see [Overview of Vault service](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm) and [Using Keys](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Tasks/usingkeys.htm).
|
935
|
+
"""
|
936
|
+
return pulumi.get(self, "xrc_kms_key_id")
|
937
|
+
|