pulumi-oci 1.33.0a1713903118__py3-none-any.whl → 1.34.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 +51 -0
- pulumi_oci/clusterplacementgroups/__init__.py +12 -0
- pulumi_oci/clusterplacementgroups/_inputs.py +159 -0
- pulumi_oci/clusterplacementgroups/cluster_placement_group.py +843 -0
- pulumi_oci/clusterplacementgroups/get_cluster_placement_group.py +298 -0
- pulumi_oci/clusterplacementgroups/get_cluster_placement_groups.py +217 -0
- pulumi_oci/clusterplacementgroups/outputs.py +485 -0
- pulumi_oci/config/__init__.pyi +2 -2
- pulumi_oci/config/vars.py +2 -2
- pulumi_oci/core/_inputs.py +116 -28
- pulumi_oci/core/boot_volume.py +49 -0
- pulumi_oci/core/compute_capacity_reservation.py +2 -0
- pulumi_oci/core/compute_cluster.py +2 -4
- pulumi_oci/core/drg_route_distribution.py +7 -7
- pulumi_oci/core/get_boot_volume.py +14 -1
- pulumi_oci/core/get_cnv_dns_resolver_association.py +2 -2
- pulumi_oci/core/get_instance.py +14 -1
- pulumi_oci/core/get_subnet.py +2 -2
- pulumi_oci/core/get_vcn.py +2 -2
- pulumi_oci/core/get_volume.py +14 -1
- pulumi_oci/core/get_volumes.py +21 -1
- pulumi_oci/core/instance.py +51 -4
- pulumi_oci/core/instance_configuration.py +8 -0
- pulumi_oci/core/outputs.py +302 -45
- pulumi_oci/core/volume.py +49 -0
- pulumi_oci/core/volume_attachment.py +28 -0
- pulumi_oci/core/volume_group.py +49 -0
- pulumi_oci/database/db_home.py +47 -0
- pulumi_oci/database/get_db_home.py +14 -1
- pulumi_oci/database/outputs.py +11 -0
- pulumi_oci/databasemanagement/__init__.py +5 -0
- pulumi_oci/databasemanagement/_inputs.py +1207 -2
- pulumi_oci/databasemanagement/database_dbm_features_management.py +275 -0
- pulumi_oci/databasemanagement/db_management_private_endpoint.py +28 -0
- pulumi_oci/databasemanagement/external_asm.py +28 -0
- pulumi_oci/databasemanagement/external_asm_instance.py +28 -0
- pulumi_oci/databasemanagement/external_cluster.py +28 -0
- pulumi_oci/databasemanagement/external_cluster_instance.py +28 -0
- pulumi_oci/databasemanagement/external_db_home.py +28 -0
- pulumi_oci/databasemanagement/external_db_node.py +28 -0
- pulumi_oci/databasemanagement/external_db_system.py +28 -0
- pulumi_oci/databasemanagement/external_db_system_connector.py +28 -0
- pulumi_oci/databasemanagement/external_db_system_discovery.py +28 -0
- pulumi_oci/databasemanagement/external_exadata_infrastructure.py +28 -0
- pulumi_oci/databasemanagement/external_exadata_storage_connector.py +28 -0
- pulumi_oci/databasemanagement/external_exadata_storage_grid.py +28 -0
- pulumi_oci/databasemanagement/external_exadata_storage_server.py +28 -0
- pulumi_oci/databasemanagement/external_listener.py +28 -0
- pulumi_oci/databasemanagement/externalcontainerdatabase_external_container_dbm_features_management.py +275 -0
- pulumi_oci/databasemanagement/externalnoncontainerdatabase_external_non_container_dbm_features_management.py +275 -0
- pulumi_oci/databasemanagement/externalpluggabledatabase_external_pluggable_dbm_features_management.py +275 -0
- pulumi_oci/databasemanagement/get_db_management_private_endpoint.py +14 -1
- pulumi_oci/databasemanagement/get_external_asm.py +14 -1
- pulumi_oci/databasemanagement/get_external_asm_instance.py +14 -1
- pulumi_oci/databasemanagement/get_external_cluster.py +14 -1
- pulumi_oci/databasemanagement/get_external_cluster_instance.py +14 -1
- pulumi_oci/databasemanagement/get_external_databases.py +18 -1
- pulumi_oci/databasemanagement/get_external_db_home.py +14 -1
- pulumi_oci/databasemanagement/get_external_db_node.py +14 -1
- pulumi_oci/databasemanagement/get_external_db_system.py +14 -1
- pulumi_oci/databasemanagement/get_external_db_system_connector.py +14 -1
- pulumi_oci/databasemanagement/get_external_db_system_discovery.py +14 -1
- pulumi_oci/databasemanagement/get_external_exadata_infrastructure.py +14 -1
- pulumi_oci/databasemanagement/get_external_exadata_storage_connector.py +14 -1
- pulumi_oci/databasemanagement/get_external_exadata_storage_grid.py +14 -1
- pulumi_oci/databasemanagement/get_external_exadata_storage_server.py +14 -1
- pulumi_oci/databasemanagement/get_external_listener.py +14 -1
- pulumi_oci/databasemanagement/get_managed_database_group.py +14 -1
- pulumi_oci/databasemanagement/get_managed_my_sql_database.py +6 -6
- pulumi_oci/databasemanagement/get_named_credential.py +14 -1
- pulumi_oci/databasemanagement/managed_database.py +28 -0
- pulumi_oci/databasemanagement/managed_database_group.py +28 -0
- pulumi_oci/databasemanagement/named_credential.py +28 -0
- pulumi_oci/databasemanagement/outputs.py +1723 -214
- pulumi_oci/databasemanagement/pluggabledatabase_pluggable_database_dbm_features_management.py +275 -0
- pulumi_oci/databasemigration/_inputs.py +20 -0
- pulumi_oci/databasemigration/connection.py +13 -0
- pulumi_oci/databasemigration/get_connection.py +3 -0
- pulumi_oci/databasemigration/get_migration.py +3 -0
- pulumi_oci/databasemigration/migration.py +13 -0
- pulumi_oci/databasemigration/outputs.py +68 -0
- pulumi_oci/datasafe/__init__.py +3 -0
- pulumi_oci/datasafe/_inputs.py +80 -0
- pulumi_oci/datasafe/get_masking_policy.py +11 -1
- pulumi_oci/datasafe/get_masking_policy_health_report.py +235 -0
- pulumi_oci/datasafe/get_masking_policy_health_report_logs.py +153 -0
- pulumi_oci/datasafe/get_masking_policy_health_reports.py +267 -0
- pulumi_oci/datasafe/masking_policy.py +75 -28
- pulumi_oci/datasafe/outputs.py +287 -0
- pulumi_oci/networkloadbalancer/backend_set.py +49 -0
- pulumi_oci/networkloadbalancer/get_backend_set.py +14 -1
- pulumi_oci/networkloadbalancer/network_load_balancers_backend_sets_unified.py +49 -0
- pulumi_oci/networkloadbalancer/outputs.py +11 -0
- pulumi_oci/provider.py +8 -8
- pulumi_oci/recoverymod/_inputs.py +16 -0
- pulumi_oci/recoverymod/get_protected_database.py +25 -5
- pulumi_oci/recoverymod/get_protection_policies.py +1 -7
- pulumi_oci/recoverymod/get_protection_policy.py +15 -8
- pulumi_oci/recoverymod/get_recovery_service_subnet.py +32 -9
- pulumi_oci/recoverymod/get_recovery_service_subnets.py +3 -21
- pulumi_oci/recoverymod/outputs.py +96 -24
- pulumi_oci/recoverymod/protected_database.py +95 -16
- pulumi_oci/recoverymod/protection_policy.py +121 -54
- pulumi_oci/recoverymod/recovery_service_subnet.py +143 -55
- {pulumi_oci-1.33.0a1713903118.dist-info → pulumi_oci-1.34.0.dist-info}/METADATA +1 -1
- {pulumi_oci-1.33.0a1713903118.dist-info → pulumi_oci-1.34.0.dist-info}/RECORD +108 -94
- {pulumi_oci-1.33.0a1713903118.dist-info → pulumi_oci-1.34.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.33.0a1713903118.dist-info → pulumi_oci-1.34.0.dist-info}/top_level.txt +0 -0
pulumi_oci/core/volume.py
CHANGED
@@ -22,6 +22,7 @@ class VolumeArgs:
|
|
22
22
|
backup_policy_id: Optional[pulumi.Input[str]] = None,
|
23
23
|
block_volume_replicas: Optional[pulumi.Input[Sequence[pulumi.Input['VolumeBlockVolumeReplicaArgs']]]] = None,
|
24
24
|
block_volume_replicas_deletion: Optional[pulumi.Input[bool]] = None,
|
25
|
+
cluster_placement_group_id: Optional[pulumi.Input[str]] = None,
|
25
26
|
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
26
27
|
display_name: Optional[pulumi.Input[str]] = None,
|
27
28
|
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
@@ -39,6 +40,7 @@ class VolumeArgs:
|
|
39
40
|
:param pulumi.Input[Sequence[pulumi.Input['VolumeAutotunePolicyArgs']]] autotune_policies: (Updatable) The list of autotune policies to be enabled for this volume.
|
40
41
|
:param pulumi.Input[str] backup_policy_id: If provided, specifies the ID of the volume backup policy to assign to the newly created volume. If omitted, no policy will be assigned. This field is deprecated. Use the `core_get_volume_backup_policy_assignments` instead to assign a backup policy to a volume.
|
41
42
|
:param pulumi.Input[Sequence[pulumi.Input['VolumeBlockVolumeReplicaArgs']]] block_volume_replicas: (Updatable) The list of block volume replicas to be enabled for this volume in the specified destination availability domains.
|
43
|
+
:param pulumi.Input[str] cluster_placement_group_id: The clusterPlacementGroup Id of the volume for volume placement.
|
42
44
|
:param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
43
45
|
:param pulumi.Input[str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
44
46
|
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
@@ -64,6 +66,8 @@ class VolumeArgs:
|
|
64
66
|
pulumi.set(__self__, "block_volume_replicas", block_volume_replicas)
|
65
67
|
if block_volume_replicas_deletion is not None:
|
66
68
|
pulumi.set(__self__, "block_volume_replicas_deletion", block_volume_replicas_deletion)
|
69
|
+
if cluster_placement_group_id is not None:
|
70
|
+
pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
|
67
71
|
if defined_tags is not None:
|
68
72
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
69
73
|
if display_name is not None:
|
@@ -160,6 +164,18 @@ class VolumeArgs:
|
|
160
164
|
def block_volume_replicas_deletion(self, value: Optional[pulumi.Input[bool]]):
|
161
165
|
pulumi.set(self, "block_volume_replicas_deletion", value)
|
162
166
|
|
167
|
+
@property
|
168
|
+
@pulumi.getter(name="clusterPlacementGroupId")
|
169
|
+
def cluster_placement_group_id(self) -> Optional[pulumi.Input[str]]:
|
170
|
+
"""
|
171
|
+
The clusterPlacementGroup Id of the volume for volume placement.
|
172
|
+
"""
|
173
|
+
return pulumi.get(self, "cluster_placement_group_id")
|
174
|
+
|
175
|
+
@cluster_placement_group_id.setter
|
176
|
+
def cluster_placement_group_id(self, value: Optional[pulumi.Input[str]]):
|
177
|
+
pulumi.set(self, "cluster_placement_group_id", value)
|
178
|
+
|
163
179
|
@property
|
164
180
|
@pulumi.getter(name="definedTags")
|
165
181
|
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
|
@@ -292,6 +308,7 @@ class _VolumeState:
|
|
292
308
|
backup_policy_id: Optional[pulumi.Input[str]] = None,
|
293
309
|
block_volume_replicas: Optional[pulumi.Input[Sequence[pulumi.Input['VolumeBlockVolumeReplicaArgs']]]] = None,
|
294
310
|
block_volume_replicas_deletion: Optional[pulumi.Input[bool]] = None,
|
311
|
+
cluster_placement_group_id: Optional[pulumi.Input[str]] = None,
|
295
312
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
296
313
|
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
297
314
|
display_name: Optional[pulumi.Input[str]] = None,
|
@@ -315,6 +332,7 @@ class _VolumeState:
|
|
315
332
|
:param pulumi.Input[str] availability_domain: (Updatable) The availability domain of the block volume replica. Example: `Uocm:PHX-AD-1`
|
316
333
|
:param pulumi.Input[str] backup_policy_id: If provided, specifies the ID of the volume backup policy to assign to the newly created volume. If omitted, no policy will be assigned. This field is deprecated. Use the `core_get_volume_backup_policy_assignments` instead to assign a backup policy to a volume.
|
317
334
|
:param pulumi.Input[Sequence[pulumi.Input['VolumeBlockVolumeReplicaArgs']]] block_volume_replicas: (Updatable) The list of block volume replicas to be enabled for this volume in the specified destination availability domains.
|
335
|
+
:param pulumi.Input[str] cluster_placement_group_id: The clusterPlacementGroup Id of the volume for volume placement.
|
318
336
|
:param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment that contains the volume.
|
319
337
|
:param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
320
338
|
:param pulumi.Input[str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
@@ -348,6 +366,8 @@ class _VolumeState:
|
|
348
366
|
pulumi.set(__self__, "block_volume_replicas", block_volume_replicas)
|
349
367
|
if block_volume_replicas_deletion is not None:
|
350
368
|
pulumi.set(__self__, "block_volume_replicas_deletion", block_volume_replicas_deletion)
|
369
|
+
if cluster_placement_group_id is not None:
|
370
|
+
pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
|
351
371
|
if compartment_id is not None:
|
352
372
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
353
373
|
if defined_tags is not None:
|
@@ -456,6 +476,18 @@ class _VolumeState:
|
|
456
476
|
def block_volume_replicas_deletion(self, value: Optional[pulumi.Input[bool]]):
|
457
477
|
pulumi.set(self, "block_volume_replicas_deletion", value)
|
458
478
|
|
479
|
+
@property
|
480
|
+
@pulumi.getter(name="clusterPlacementGroupId")
|
481
|
+
def cluster_placement_group_id(self) -> Optional[pulumi.Input[str]]:
|
482
|
+
"""
|
483
|
+
The clusterPlacementGroup Id of the volume for volume placement.
|
484
|
+
"""
|
485
|
+
return pulumi.get(self, "cluster_placement_group_id")
|
486
|
+
|
487
|
+
@cluster_placement_group_id.setter
|
488
|
+
def cluster_placement_group_id(self, value: Optional[pulumi.Input[str]]):
|
489
|
+
pulumi.set(self, "cluster_placement_group_id", value)
|
490
|
+
|
459
491
|
@property
|
460
492
|
@pulumi.getter(name="compartmentId")
|
461
493
|
def compartment_id(self) -> Optional[pulumi.Input[str]]:
|
@@ -661,6 +693,7 @@ class Volume(pulumi.CustomResource):
|
|
661
693
|
backup_policy_id: Optional[pulumi.Input[str]] = None,
|
662
694
|
block_volume_replicas: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['VolumeBlockVolumeReplicaArgs']]]]] = None,
|
663
695
|
block_volume_replicas_deletion: Optional[pulumi.Input[bool]] = None,
|
696
|
+
cluster_placement_group_id: Optional[pulumi.Input[str]] = None,
|
664
697
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
665
698
|
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
666
699
|
display_name: Optional[pulumi.Input[str]] = None,
|
@@ -709,6 +742,7 @@ class Volume(pulumi.CustomResource):
|
|
709
742
|
availability_domain=volume_block_volume_replicas_availability_domain,
|
710
743
|
display_name=volume_block_volume_replicas_display_name,
|
711
744
|
)],
|
745
|
+
cluster_placement_group_id=test_group["id"],
|
712
746
|
defined_tags={
|
713
747
|
"Operations.CostCenter": "42",
|
714
748
|
},
|
@@ -742,6 +776,7 @@ class Volume(pulumi.CustomResource):
|
|
742
776
|
:param pulumi.Input[str] availability_domain: (Updatable) The availability domain of the block volume replica. Example: `Uocm:PHX-AD-1`
|
743
777
|
:param pulumi.Input[str] backup_policy_id: If provided, specifies the ID of the volume backup policy to assign to the newly created volume. If omitted, no policy will be assigned. This field is deprecated. Use the `core_get_volume_backup_policy_assignments` instead to assign a backup policy to a volume.
|
744
778
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['VolumeBlockVolumeReplicaArgs']]]] block_volume_replicas: (Updatable) The list of block volume replicas to be enabled for this volume in the specified destination availability domains.
|
779
|
+
:param pulumi.Input[str] cluster_placement_group_id: The clusterPlacementGroup Id of the volume for volume placement.
|
745
780
|
:param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment that contains the volume.
|
746
781
|
:param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
747
782
|
:param pulumi.Input[str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
@@ -797,6 +832,7 @@ class Volume(pulumi.CustomResource):
|
|
797
832
|
availability_domain=volume_block_volume_replicas_availability_domain,
|
798
833
|
display_name=volume_block_volume_replicas_display_name,
|
799
834
|
)],
|
835
|
+
cluster_placement_group_id=test_group["id"],
|
800
836
|
defined_tags={
|
801
837
|
"Operations.CostCenter": "42",
|
802
838
|
},
|
@@ -844,6 +880,7 @@ class Volume(pulumi.CustomResource):
|
|
844
880
|
backup_policy_id: Optional[pulumi.Input[str]] = None,
|
845
881
|
block_volume_replicas: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['VolumeBlockVolumeReplicaArgs']]]]] = None,
|
846
882
|
block_volume_replicas_deletion: Optional[pulumi.Input[bool]] = None,
|
883
|
+
cluster_placement_group_id: Optional[pulumi.Input[str]] = None,
|
847
884
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
848
885
|
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
849
886
|
display_name: Optional[pulumi.Input[str]] = None,
|
@@ -871,6 +908,7 @@ class Volume(pulumi.CustomResource):
|
|
871
908
|
__props__.__dict__["backup_policy_id"] = backup_policy_id
|
872
909
|
__props__.__dict__["block_volume_replicas"] = block_volume_replicas
|
873
910
|
__props__.__dict__["block_volume_replicas_deletion"] = block_volume_replicas_deletion
|
911
|
+
__props__.__dict__["cluster_placement_group_id"] = cluster_placement_group_id
|
874
912
|
if compartment_id is None and not opts.urn:
|
875
913
|
raise TypeError("Missing required property 'compartment_id'")
|
876
914
|
__props__.__dict__["compartment_id"] = compartment_id
|
@@ -906,6 +944,7 @@ class Volume(pulumi.CustomResource):
|
|
906
944
|
backup_policy_id: Optional[pulumi.Input[str]] = None,
|
907
945
|
block_volume_replicas: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['VolumeBlockVolumeReplicaArgs']]]]] = None,
|
908
946
|
block_volume_replicas_deletion: Optional[pulumi.Input[bool]] = None,
|
947
|
+
cluster_placement_group_id: Optional[pulumi.Input[str]] = None,
|
909
948
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
910
949
|
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
911
950
|
display_name: Optional[pulumi.Input[str]] = None,
|
@@ -934,6 +973,7 @@ class Volume(pulumi.CustomResource):
|
|
934
973
|
:param pulumi.Input[str] availability_domain: (Updatable) The availability domain of the block volume replica. Example: `Uocm:PHX-AD-1`
|
935
974
|
:param pulumi.Input[str] backup_policy_id: If provided, specifies the ID of the volume backup policy to assign to the newly created volume. If omitted, no policy will be assigned. This field is deprecated. Use the `core_get_volume_backup_policy_assignments` instead to assign a backup policy to a volume.
|
936
975
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['VolumeBlockVolumeReplicaArgs']]]] block_volume_replicas: (Updatable) The list of block volume replicas to be enabled for this volume in the specified destination availability domains.
|
976
|
+
:param pulumi.Input[str] cluster_placement_group_id: The clusterPlacementGroup Id of the volume for volume placement.
|
937
977
|
:param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment that contains the volume.
|
938
978
|
:param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
939
979
|
:param pulumi.Input[str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
@@ -962,6 +1002,7 @@ class Volume(pulumi.CustomResource):
|
|
962
1002
|
__props__.__dict__["backup_policy_id"] = backup_policy_id
|
963
1003
|
__props__.__dict__["block_volume_replicas"] = block_volume_replicas
|
964
1004
|
__props__.__dict__["block_volume_replicas_deletion"] = block_volume_replicas_deletion
|
1005
|
+
__props__.__dict__["cluster_placement_group_id"] = cluster_placement_group_id
|
965
1006
|
__props__.__dict__["compartment_id"] = compartment_id
|
966
1007
|
__props__.__dict__["defined_tags"] = defined_tags
|
967
1008
|
__props__.__dict__["display_name"] = display_name
|
@@ -1028,6 +1069,14 @@ class Volume(pulumi.CustomResource):
|
|
1028
1069
|
def block_volume_replicas_deletion(self) -> pulumi.Output[Optional[bool]]:
|
1029
1070
|
return pulumi.get(self, "block_volume_replicas_deletion")
|
1030
1071
|
|
1072
|
+
@property
|
1073
|
+
@pulumi.getter(name="clusterPlacementGroupId")
|
1074
|
+
def cluster_placement_group_id(self) -> pulumi.Output[str]:
|
1075
|
+
"""
|
1076
|
+
The clusterPlacementGroup Id of the volume for volume placement.
|
1077
|
+
"""
|
1078
|
+
return pulumi.get(self, "cluster_placement_group_id")
|
1079
|
+
|
1031
1080
|
@property
|
1032
1081
|
@pulumi.getter(name="compartmentId")
|
1033
1082
|
def compartment_id(self) -> pulumi.Output[str]:
|
@@ -243,6 +243,7 @@ class _VolumeAttachmentState:
|
|
243
243
|
is_pv_encryption_in_transit_enabled: Optional[pulumi.Input[bool]] = None,
|
244
244
|
is_read_only: Optional[pulumi.Input[bool]] = None,
|
245
245
|
is_shareable: Optional[pulumi.Input[bool]] = None,
|
246
|
+
is_volume_created_during_launch: Optional[pulumi.Input[bool]] = None,
|
246
247
|
iscsi_login_state: Optional[pulumi.Input[str]] = None,
|
247
248
|
multipath_devices: Optional[pulumi.Input[Sequence[pulumi.Input['VolumeAttachmentMultipathDeviceArgs']]]] = None,
|
248
249
|
port: Optional[pulumi.Input[int]] = None,
|
@@ -268,6 +269,7 @@ class _VolumeAttachmentState:
|
|
268
269
|
:param pulumi.Input[bool] is_pv_encryption_in_transit_enabled: Whether to enable in-transit encryption for the data volume's paravirtualized attachment. The default value is false.
|
269
270
|
:param pulumi.Input[bool] is_read_only: Whether the attachment was created in read-only mode.
|
270
271
|
:param pulumi.Input[bool] is_shareable: Whether the attachment should be created in shareable mode. If an attachment is created in shareable mode, then other instances can attach the same volume, provided that they also create their attachments in shareable mode. Only certain volume types can be attached in shareable mode. Defaults to false if not specified.
|
272
|
+
:param pulumi.Input[bool] is_volume_created_during_launch: Flag indicating if this volume was created for the customer as part of a simplified launch. Used to determine whether the volume requires deletion on instance termination.
|
271
273
|
:param pulumi.Input[str] iscsi_login_state: The iscsi login state of the volume attachment. For a Iscsi volume attachment, all iscsi sessions need to be all logged-in or logged-out to be in logged-in or logged-out state.
|
272
274
|
:param pulumi.Input[Sequence[pulumi.Input['VolumeAttachmentMultipathDeviceArgs']]] multipath_devices: A list of secondary multipath devices
|
273
275
|
:param pulumi.Input[int] port: The volume's iSCSI port, usually port 860 or 3260. Example: `3260`
|
@@ -315,6 +317,8 @@ class _VolumeAttachmentState:
|
|
315
317
|
pulumi.set(__self__, "is_read_only", is_read_only)
|
316
318
|
if is_shareable is not None:
|
317
319
|
pulumi.set(__self__, "is_shareable", is_shareable)
|
320
|
+
if is_volume_created_during_launch is not None:
|
321
|
+
pulumi.set(__self__, "is_volume_created_during_launch", is_volume_created_during_launch)
|
318
322
|
if iscsi_login_state is not None:
|
319
323
|
pulumi.set(__self__, "iscsi_login_state", iscsi_login_state)
|
320
324
|
if multipath_devices is not None:
|
@@ -525,6 +529,18 @@ class _VolumeAttachmentState:
|
|
525
529
|
def is_shareable(self, value: Optional[pulumi.Input[bool]]):
|
526
530
|
pulumi.set(self, "is_shareable", value)
|
527
531
|
|
532
|
+
@property
|
533
|
+
@pulumi.getter(name="isVolumeCreatedDuringLaunch")
|
534
|
+
def is_volume_created_during_launch(self) -> Optional[pulumi.Input[bool]]:
|
535
|
+
"""
|
536
|
+
Flag indicating if this volume was created for the customer as part of a simplified launch. Used to determine whether the volume requires deletion on instance termination.
|
537
|
+
"""
|
538
|
+
return pulumi.get(self, "is_volume_created_during_launch")
|
539
|
+
|
540
|
+
@is_volume_created_during_launch.setter
|
541
|
+
def is_volume_created_during_launch(self, value: Optional[pulumi.Input[bool]]):
|
542
|
+
pulumi.set(self, "is_volume_created_during_launch", value)
|
543
|
+
|
528
544
|
@property
|
529
545
|
@pulumi.getter(name="iscsiLoginState")
|
530
546
|
def iscsi_login_state(self) -> Optional[pulumi.Input[str]]:
|
@@ -783,6 +799,7 @@ class VolumeAttachment(pulumi.CustomResource):
|
|
783
799
|
__props__.__dict__["ipv4"] = None
|
784
800
|
__props__.__dict__["iqn"] = None
|
785
801
|
__props__.__dict__["is_multipath"] = None
|
802
|
+
__props__.__dict__["is_volume_created_during_launch"] = None
|
786
803
|
__props__.__dict__["iscsi_login_state"] = None
|
787
804
|
__props__.__dict__["multipath_devices"] = None
|
788
805
|
__props__.__dict__["port"] = None
|
@@ -814,6 +831,7 @@ class VolumeAttachment(pulumi.CustomResource):
|
|
814
831
|
is_pv_encryption_in_transit_enabled: Optional[pulumi.Input[bool]] = None,
|
815
832
|
is_read_only: Optional[pulumi.Input[bool]] = None,
|
816
833
|
is_shareable: Optional[pulumi.Input[bool]] = None,
|
834
|
+
is_volume_created_during_launch: Optional[pulumi.Input[bool]] = None,
|
817
835
|
iscsi_login_state: Optional[pulumi.Input[str]] = None,
|
818
836
|
multipath_devices: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['VolumeAttachmentMultipathDeviceArgs']]]]] = None,
|
819
837
|
port: Optional[pulumi.Input[int]] = None,
|
@@ -844,6 +862,7 @@ class VolumeAttachment(pulumi.CustomResource):
|
|
844
862
|
:param pulumi.Input[bool] is_pv_encryption_in_transit_enabled: Whether to enable in-transit encryption for the data volume's paravirtualized attachment. The default value is false.
|
845
863
|
:param pulumi.Input[bool] is_read_only: Whether the attachment was created in read-only mode.
|
846
864
|
:param pulumi.Input[bool] is_shareable: Whether the attachment should be created in shareable mode. If an attachment is created in shareable mode, then other instances can attach the same volume, provided that they also create their attachments in shareable mode. Only certain volume types can be attached in shareable mode. Defaults to false if not specified.
|
865
|
+
:param pulumi.Input[bool] is_volume_created_during_launch: Flag indicating if this volume was created for the customer as part of a simplified launch. Used to determine whether the volume requires deletion on instance termination.
|
847
866
|
:param pulumi.Input[str] iscsi_login_state: The iscsi login state of the volume attachment. For a Iscsi volume attachment, all iscsi sessions need to be all logged-in or logged-out to be in logged-in or logged-out state.
|
848
867
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['VolumeAttachmentMultipathDeviceArgs']]]] multipath_devices: A list of secondary multipath devices
|
849
868
|
:param pulumi.Input[int] port: The volume's iSCSI port, usually port 860 or 3260. Example: `3260`
|
@@ -876,6 +895,7 @@ class VolumeAttachment(pulumi.CustomResource):
|
|
876
895
|
__props__.__dict__["is_pv_encryption_in_transit_enabled"] = is_pv_encryption_in_transit_enabled
|
877
896
|
__props__.__dict__["is_read_only"] = is_read_only
|
878
897
|
__props__.__dict__["is_shareable"] = is_shareable
|
898
|
+
__props__.__dict__["is_volume_created_during_launch"] = is_volume_created_during_launch
|
879
899
|
__props__.__dict__["iscsi_login_state"] = iscsi_login_state
|
880
900
|
__props__.__dict__["multipath_devices"] = multipath_devices
|
881
901
|
__props__.__dict__["port"] = port
|
@@ -1016,6 +1036,14 @@ class VolumeAttachment(pulumi.CustomResource):
|
|
1016
1036
|
"""
|
1017
1037
|
return pulumi.get(self, "is_shareable")
|
1018
1038
|
|
1039
|
+
@property
|
1040
|
+
@pulumi.getter(name="isVolumeCreatedDuringLaunch")
|
1041
|
+
def is_volume_created_during_launch(self) -> pulumi.Output[bool]:
|
1042
|
+
"""
|
1043
|
+
Flag indicating if this volume was created for the customer as part of a simplified launch. Used to determine whether the volume requires deletion on instance termination.
|
1044
|
+
"""
|
1045
|
+
return pulumi.get(self, "is_volume_created_during_launch")
|
1046
|
+
|
1019
1047
|
@property
|
1020
1048
|
@pulumi.getter(name="iscsiLoginState")
|
1021
1049
|
def iscsi_login_state(self) -> pulumi.Output[str]:
|
pulumi_oci/core/volume_group.py
CHANGED
@@ -20,6 +20,7 @@ class VolumeGroupArgs:
|
|
20
20
|
compartment_id: pulumi.Input[str],
|
21
21
|
source_details: pulumi.Input['VolumeGroupSourceDetailsArgs'],
|
22
22
|
backup_policy_id: Optional[pulumi.Input[str]] = None,
|
23
|
+
cluster_placement_group_id: Optional[pulumi.Input[str]] = None,
|
23
24
|
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
24
25
|
display_name: Optional[pulumi.Input[str]] = None,
|
25
26
|
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
@@ -33,6 +34,7 @@ class VolumeGroupArgs:
|
|
33
34
|
:param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment that contains the volume group.
|
34
35
|
:param pulumi.Input['VolumeGroupSourceDetailsArgs'] source_details: Specifies the source for a volume group.
|
35
36
|
:param pulumi.Input[str] backup_policy_id: If provided, specifies the ID of the volume backup policy to assign to the newly created volume group. If omitted, no policy will be assigned. This field is deprecated. Use the `core_get_volume_backup_policy_assignments` instead to assign a backup policy to a volume group.
|
37
|
+
:param pulumi.Input[str] cluster_placement_group_id: The clusterPlacementGroup Id of the volume group for volume group placement.
|
36
38
|
:param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
37
39
|
:param pulumi.Input[str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
38
40
|
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
@@ -50,6 +52,8 @@ class VolumeGroupArgs:
|
|
50
52
|
pulumi.log.warn("""backup_policy_id is deprecated: The 'backup_policy_id' field has been deprecated. Please use the 'oci_core_volume_backup_policy_assignment' resource instead.""")
|
51
53
|
if backup_policy_id is not None:
|
52
54
|
pulumi.set(__self__, "backup_policy_id", backup_policy_id)
|
55
|
+
if cluster_placement_group_id is not None:
|
56
|
+
pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
|
53
57
|
if defined_tags is not None:
|
54
58
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
55
59
|
if display_name is not None:
|
@@ -116,6 +120,18 @@ class VolumeGroupArgs:
|
|
116
120
|
def backup_policy_id(self, value: Optional[pulumi.Input[str]]):
|
117
121
|
pulumi.set(self, "backup_policy_id", value)
|
118
122
|
|
123
|
+
@property
|
124
|
+
@pulumi.getter(name="clusterPlacementGroupId")
|
125
|
+
def cluster_placement_group_id(self) -> Optional[pulumi.Input[str]]:
|
126
|
+
"""
|
127
|
+
The clusterPlacementGroup Id of the volume group for volume group placement.
|
128
|
+
"""
|
129
|
+
return pulumi.get(self, "cluster_placement_group_id")
|
130
|
+
|
131
|
+
@cluster_placement_group_id.setter
|
132
|
+
def cluster_placement_group_id(self, value: Optional[pulumi.Input[str]]):
|
133
|
+
pulumi.set(self, "cluster_placement_group_id", value)
|
134
|
+
|
119
135
|
@property
|
120
136
|
@pulumi.getter(name="definedTags")
|
121
137
|
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
|
@@ -203,6 +219,7 @@ class _VolumeGroupState:
|
|
203
219
|
def __init__(__self__, *,
|
204
220
|
availability_domain: Optional[pulumi.Input[str]] = None,
|
205
221
|
backup_policy_id: Optional[pulumi.Input[str]] = None,
|
222
|
+
cluster_placement_group_id: Optional[pulumi.Input[str]] = None,
|
206
223
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
207
224
|
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
208
225
|
display_name: Optional[pulumi.Input[str]] = None,
|
@@ -221,6 +238,7 @@ class _VolumeGroupState:
|
|
221
238
|
Input properties used for looking up and filtering VolumeGroup resources.
|
222
239
|
:param pulumi.Input[str] availability_domain: (Updatable) The availability domain of the volume group replica. Example: `Uocm:PHX-AD-1`
|
223
240
|
:param pulumi.Input[str] backup_policy_id: If provided, specifies the ID of the volume backup policy to assign to the newly created volume group. If omitted, no policy will be assigned. This field is deprecated. Use the `core_get_volume_backup_policy_assignments` instead to assign a backup policy to a volume group.
|
241
|
+
:param pulumi.Input[str] cluster_placement_group_id: The clusterPlacementGroup Id of the volume group for volume group placement.
|
224
242
|
:param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment that contains the volume group.
|
225
243
|
:param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
226
244
|
:param pulumi.Input[str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
@@ -244,6 +262,8 @@ class _VolumeGroupState:
|
|
244
262
|
pulumi.log.warn("""backup_policy_id is deprecated: The 'backup_policy_id' field has been deprecated. Please use the 'oci_core_volume_backup_policy_assignment' resource instead.""")
|
245
263
|
if backup_policy_id is not None:
|
246
264
|
pulumi.set(__self__, "backup_policy_id", backup_policy_id)
|
265
|
+
if cluster_placement_group_id is not None:
|
266
|
+
pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
|
247
267
|
if compartment_id is not None:
|
248
268
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
249
269
|
if defined_tags is not None:
|
@@ -300,6 +320,18 @@ class _VolumeGroupState:
|
|
300
320
|
def backup_policy_id(self, value: Optional[pulumi.Input[str]]):
|
301
321
|
pulumi.set(self, "backup_policy_id", value)
|
302
322
|
|
323
|
+
@property
|
324
|
+
@pulumi.getter(name="clusterPlacementGroupId")
|
325
|
+
def cluster_placement_group_id(self) -> Optional[pulumi.Input[str]]:
|
326
|
+
"""
|
327
|
+
The clusterPlacementGroup Id of the volume group for volume group placement.
|
328
|
+
"""
|
329
|
+
return pulumi.get(self, "cluster_placement_group_id")
|
330
|
+
|
331
|
+
@cluster_placement_group_id.setter
|
332
|
+
def cluster_placement_group_id(self, value: Optional[pulumi.Input[str]]):
|
333
|
+
pulumi.set(self, "cluster_placement_group_id", value)
|
334
|
+
|
303
335
|
@property
|
304
336
|
@pulumi.getter(name="compartmentId")
|
305
337
|
def compartment_id(self) -> Optional[pulumi.Input[str]]:
|
@@ -473,6 +505,7 @@ class VolumeGroup(pulumi.CustomResource):
|
|
473
505
|
opts: Optional[pulumi.ResourceOptions] = None,
|
474
506
|
availability_domain: Optional[pulumi.Input[str]] = None,
|
475
507
|
backup_policy_id: Optional[pulumi.Input[str]] = None,
|
508
|
+
cluster_placement_group_id: Optional[pulumi.Input[str]] = None,
|
476
509
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
477
510
|
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
478
511
|
display_name: Optional[pulumi.Input[str]] = None,
|
@@ -498,6 +531,7 @@ class VolumeGroup(pulumi.CustomResource):
|
|
498
531
|
volume_ids=[volume_group_source_id],
|
499
532
|
),
|
500
533
|
backup_policy_id=test_volume_backup_policies["volumeBackupPolicies"][0]["id"],
|
534
|
+
cluster_placement_group_id=test_group["id"],
|
501
535
|
defined_tags={
|
502
536
|
"Operations.CostCenter": "42",
|
503
537
|
},
|
@@ -524,6 +558,7 @@ class VolumeGroup(pulumi.CustomResource):
|
|
524
558
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
525
559
|
:param pulumi.Input[str] availability_domain: (Updatable) The availability domain of the volume group replica. Example: `Uocm:PHX-AD-1`
|
526
560
|
:param pulumi.Input[str] backup_policy_id: If provided, specifies the ID of the volume backup policy to assign to the newly created volume group. If omitted, no policy will be assigned. This field is deprecated. Use the `core_get_volume_backup_policy_assignments` instead to assign a backup policy to a volume group.
|
561
|
+
:param pulumi.Input[str] cluster_placement_group_id: The clusterPlacementGroup Id of the volume group for volume group placement.
|
527
562
|
:param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment that contains the volume group.
|
528
563
|
:param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
529
564
|
:param pulumi.Input[str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
@@ -556,6 +591,7 @@ class VolumeGroup(pulumi.CustomResource):
|
|
556
591
|
volume_ids=[volume_group_source_id],
|
557
592
|
),
|
558
593
|
backup_policy_id=test_volume_backup_policies["volumeBackupPolicies"][0]["id"],
|
594
|
+
cluster_placement_group_id=test_group["id"],
|
559
595
|
defined_tags={
|
560
596
|
"Operations.CostCenter": "42",
|
561
597
|
},
|
@@ -595,6 +631,7 @@ class VolumeGroup(pulumi.CustomResource):
|
|
595
631
|
opts: Optional[pulumi.ResourceOptions] = None,
|
596
632
|
availability_domain: Optional[pulumi.Input[str]] = None,
|
597
633
|
backup_policy_id: Optional[pulumi.Input[str]] = None,
|
634
|
+
cluster_placement_group_id: Optional[pulumi.Input[str]] = None,
|
598
635
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
599
636
|
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
600
637
|
display_name: Optional[pulumi.Input[str]] = None,
|
@@ -617,6 +654,7 @@ class VolumeGroup(pulumi.CustomResource):
|
|
617
654
|
raise TypeError("Missing required property 'availability_domain'")
|
618
655
|
__props__.__dict__["availability_domain"] = availability_domain
|
619
656
|
__props__.__dict__["backup_policy_id"] = backup_policy_id
|
657
|
+
__props__.__dict__["cluster_placement_group_id"] = cluster_placement_group_id
|
620
658
|
if compartment_id is None and not opts.urn:
|
621
659
|
raise TypeError("Missing required property 'compartment_id'")
|
622
660
|
__props__.__dict__["compartment_id"] = compartment_id
|
@@ -647,6 +685,7 @@ class VolumeGroup(pulumi.CustomResource):
|
|
647
685
|
opts: Optional[pulumi.ResourceOptions] = None,
|
648
686
|
availability_domain: Optional[pulumi.Input[str]] = None,
|
649
687
|
backup_policy_id: Optional[pulumi.Input[str]] = None,
|
688
|
+
cluster_placement_group_id: Optional[pulumi.Input[str]] = None,
|
650
689
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
651
690
|
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
652
691
|
display_name: Optional[pulumi.Input[str]] = None,
|
@@ -670,6 +709,7 @@ class VolumeGroup(pulumi.CustomResource):
|
|
670
709
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
671
710
|
:param pulumi.Input[str] availability_domain: (Updatable) The availability domain of the volume group replica. Example: `Uocm:PHX-AD-1`
|
672
711
|
:param pulumi.Input[str] backup_policy_id: If provided, specifies the ID of the volume backup policy to assign to the newly created volume group. If omitted, no policy will be assigned. This field is deprecated. Use the `core_get_volume_backup_policy_assignments` instead to assign a backup policy to a volume group.
|
712
|
+
:param pulumi.Input[str] cluster_placement_group_id: The clusterPlacementGroup Id of the volume group for volume group placement.
|
673
713
|
:param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment that contains the volume group.
|
674
714
|
:param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
675
715
|
:param pulumi.Input[str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
@@ -692,6 +732,7 @@ class VolumeGroup(pulumi.CustomResource):
|
|
692
732
|
|
693
733
|
__props__.__dict__["availability_domain"] = availability_domain
|
694
734
|
__props__.__dict__["backup_policy_id"] = backup_policy_id
|
735
|
+
__props__.__dict__["cluster_placement_group_id"] = cluster_placement_group_id
|
695
736
|
__props__.__dict__["compartment_id"] = compartment_id
|
696
737
|
__props__.__dict__["defined_tags"] = defined_tags
|
697
738
|
__props__.__dict__["display_name"] = display_name
|
@@ -727,6 +768,14 @@ class VolumeGroup(pulumi.CustomResource):
|
|
727
768
|
|
728
769
|
return pulumi.get(self, "backup_policy_id")
|
729
770
|
|
771
|
+
@property
|
772
|
+
@pulumi.getter(name="clusterPlacementGroupId")
|
773
|
+
def cluster_placement_group_id(self) -> pulumi.Output[str]:
|
774
|
+
"""
|
775
|
+
The clusterPlacementGroup Id of the volume group for volume group placement.
|
776
|
+
"""
|
777
|
+
return pulumi.get(self, "cluster_placement_group_id")
|
778
|
+
|
730
779
|
@property
|
731
780
|
@pulumi.getter(name="compartmentId")
|
732
781
|
def compartment_id(self) -> pulumi.Output[str]:
|
pulumi_oci/database/db_home.py
CHANGED
@@ -25,6 +25,7 @@ class DbHomeArgs:
|
|
25
25
|
enable_database_delete: Optional[pulumi.Input[bool]] = None,
|
26
26
|
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
27
27
|
is_desupported_version: Optional[pulumi.Input[bool]] = None,
|
28
|
+
is_unified_auditing_enabled: Optional[pulumi.Input[bool]] = None,
|
28
29
|
kms_key_id: Optional[pulumi.Input[str]] = None,
|
29
30
|
kms_key_version_id: Optional[pulumi.Input[str]] = None,
|
30
31
|
source: Optional[pulumi.Input[str]] = None,
|
@@ -44,6 +45,7 @@ class DbHomeArgs:
|
|
44
45
|
:param pulumi.Input[bool] enable_database_delete: Defaults to false. If omitted or set to false the provider will not delete databases removed from the Db Home configuration.
|
45
46
|
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
46
47
|
:param pulumi.Input[bool] is_desupported_version: If true, the customer acknowledges that the specified Oracle Database software is an older release that is not currently supported by OCI.
|
48
|
+
:param pulumi.Input[bool] is_unified_auditing_enabled: Indicates whether unified autiding is enabled or not. Set to True to enable unified auditing on respective DBHome.
|
47
49
|
:param pulumi.Input[str] kms_key_id: The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
|
48
50
|
:param pulumi.Input[str] kms_key_version_id: The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
|
49
51
|
:param pulumi.Input[str] source: The source of database: NONE for creating a new database. DB_BACKUP for creating a new database by restoring from a database backup. VM_CLUSTER_NEW for creating a database for VM Cluster.
|
@@ -71,6 +73,8 @@ class DbHomeArgs:
|
|
71
73
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
72
74
|
if is_desupported_version is not None:
|
73
75
|
pulumi.set(__self__, "is_desupported_version", is_desupported_version)
|
76
|
+
if is_unified_auditing_enabled is not None:
|
77
|
+
pulumi.set(__self__, "is_unified_auditing_enabled", is_unified_auditing_enabled)
|
74
78
|
if kms_key_id is not None:
|
75
79
|
pulumi.set(__self__, "kms_key_id", kms_key_id)
|
76
80
|
if kms_key_version_id is not None:
|
@@ -192,6 +196,18 @@ class DbHomeArgs:
|
|
192
196
|
def is_desupported_version(self, value: Optional[pulumi.Input[bool]]):
|
193
197
|
pulumi.set(self, "is_desupported_version", value)
|
194
198
|
|
199
|
+
@property
|
200
|
+
@pulumi.getter(name="isUnifiedAuditingEnabled")
|
201
|
+
def is_unified_auditing_enabled(self) -> Optional[pulumi.Input[bool]]:
|
202
|
+
"""
|
203
|
+
Indicates whether unified autiding is enabled or not. Set to True to enable unified auditing on respective DBHome.
|
204
|
+
"""
|
205
|
+
return pulumi.get(self, "is_unified_auditing_enabled")
|
206
|
+
|
207
|
+
@is_unified_auditing_enabled.setter
|
208
|
+
def is_unified_auditing_enabled(self, value: Optional[pulumi.Input[bool]]):
|
209
|
+
pulumi.set(self, "is_unified_auditing_enabled", value)
|
210
|
+
|
195
211
|
@property
|
196
212
|
@pulumi.getter(name="kmsKeyId")
|
197
213
|
def kms_key_id(self) -> Optional[pulumi.Input[str]]:
|
@@ -259,6 +275,7 @@ class _DbHomeState:
|
|
259
275
|
enable_database_delete: Optional[pulumi.Input[bool]] = None,
|
260
276
|
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
261
277
|
is_desupported_version: Optional[pulumi.Input[bool]] = None,
|
278
|
+
is_unified_auditing_enabled: Optional[pulumi.Input[bool]] = None,
|
262
279
|
kms_key_id: Optional[pulumi.Input[str]] = None,
|
263
280
|
kms_key_version_id: Optional[pulumi.Input[str]] = None,
|
264
281
|
last_patch_history_entry_id: Optional[pulumi.Input[str]] = None,
|
@@ -284,6 +301,7 @@ class _DbHomeState:
|
|
284
301
|
:param pulumi.Input[bool] enable_database_delete: Defaults to false. If omitted or set to false the provider will not delete databases removed from the Db Home configuration.
|
285
302
|
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
286
303
|
:param pulumi.Input[bool] is_desupported_version: If true, the customer acknowledges that the specified Oracle Database software is an older release that is not currently supported by OCI.
|
304
|
+
:param pulumi.Input[bool] is_unified_auditing_enabled: Indicates whether unified autiding is enabled or not. Set to True to enable unified auditing on respective DBHome.
|
287
305
|
:param pulumi.Input[str] kms_key_id: The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
|
288
306
|
:param pulumi.Input[str] kms_key_version_id: The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
|
289
307
|
:param pulumi.Input[str] last_patch_history_entry_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the last patch history. This value is updated as soon as a patch operation is started.
|
@@ -319,6 +337,8 @@ class _DbHomeState:
|
|
319
337
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
320
338
|
if is_desupported_version is not None:
|
321
339
|
pulumi.set(__self__, "is_desupported_version", is_desupported_version)
|
340
|
+
if is_unified_auditing_enabled is not None:
|
341
|
+
pulumi.set(__self__, "is_unified_auditing_enabled", is_unified_auditing_enabled)
|
322
342
|
if kms_key_id is not None:
|
323
343
|
pulumi.set(__self__, "kms_key_id", kms_key_id)
|
324
344
|
if kms_key_version_id is not None:
|
@@ -472,6 +492,18 @@ class _DbHomeState:
|
|
472
492
|
def is_desupported_version(self, value: Optional[pulumi.Input[bool]]):
|
473
493
|
pulumi.set(self, "is_desupported_version", value)
|
474
494
|
|
495
|
+
@property
|
496
|
+
@pulumi.getter(name="isUnifiedAuditingEnabled")
|
497
|
+
def is_unified_auditing_enabled(self) -> Optional[pulumi.Input[bool]]:
|
498
|
+
"""
|
499
|
+
Indicates whether unified autiding is enabled or not. Set to True to enable unified auditing on respective DBHome.
|
500
|
+
"""
|
501
|
+
return pulumi.get(self, "is_unified_auditing_enabled")
|
502
|
+
|
503
|
+
@is_unified_auditing_enabled.setter
|
504
|
+
def is_unified_auditing_enabled(self, value: Optional[pulumi.Input[bool]]):
|
505
|
+
pulumi.set(self, "is_unified_auditing_enabled", value)
|
506
|
+
|
475
507
|
@property
|
476
508
|
@pulumi.getter(name="kmsKeyId")
|
477
509
|
def kms_key_id(self) -> Optional[pulumi.Input[str]]:
|
@@ -587,6 +619,7 @@ class DbHome(pulumi.CustomResource):
|
|
587
619
|
enable_database_delete: Optional[pulumi.Input[bool]] = None,
|
588
620
|
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
589
621
|
is_desupported_version: Optional[pulumi.Input[bool]] = None,
|
622
|
+
is_unified_auditing_enabled: Optional[pulumi.Input[bool]] = None,
|
590
623
|
kms_key_id: Optional[pulumi.Input[str]] = None,
|
591
624
|
kms_key_version_id: Optional[pulumi.Input[str]] = None,
|
592
625
|
source: Optional[pulumi.Input[str]] = None,
|
@@ -630,6 +663,7 @@ class DbHome(pulumi.CustomResource):
|
|
630
663
|
:param pulumi.Input[bool] enable_database_delete: Defaults to false. If omitted or set to false the provider will not delete databases removed from the Db Home configuration.
|
631
664
|
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
632
665
|
:param pulumi.Input[bool] is_desupported_version: If true, the customer acknowledges that the specified Oracle Database software is an older release that is not currently supported by OCI.
|
666
|
+
:param pulumi.Input[bool] is_unified_auditing_enabled: Indicates whether unified autiding is enabled or not. Set to True to enable unified auditing on respective DBHome.
|
633
667
|
:param pulumi.Input[str] kms_key_id: The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
|
634
668
|
:param pulumi.Input[str] kms_key_version_id: The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
|
635
669
|
:param pulumi.Input[str] source: The source of database: NONE for creating a new database. DB_BACKUP for creating a new database by restoring from a database backup. VM_CLUSTER_NEW for creating a database for VM Cluster.
|
@@ -692,6 +726,7 @@ class DbHome(pulumi.CustomResource):
|
|
692
726
|
enable_database_delete: Optional[pulumi.Input[bool]] = None,
|
693
727
|
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
694
728
|
is_desupported_version: Optional[pulumi.Input[bool]] = None,
|
729
|
+
is_unified_auditing_enabled: Optional[pulumi.Input[bool]] = None,
|
695
730
|
kms_key_id: Optional[pulumi.Input[str]] = None,
|
696
731
|
kms_key_version_id: Optional[pulumi.Input[str]] = None,
|
697
732
|
source: Optional[pulumi.Input[str]] = None,
|
@@ -714,6 +749,7 @@ class DbHome(pulumi.CustomResource):
|
|
714
749
|
__props__.__dict__["enable_database_delete"] = enable_database_delete
|
715
750
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
716
751
|
__props__.__dict__["is_desupported_version"] = is_desupported_version
|
752
|
+
__props__.__dict__["is_unified_auditing_enabled"] = is_unified_auditing_enabled
|
717
753
|
__props__.__dict__["kms_key_id"] = kms_key_id
|
718
754
|
__props__.__dict__["kms_key_version_id"] = kms_key_version_id
|
719
755
|
__props__.__dict__["source"] = source
|
@@ -745,6 +781,7 @@ class DbHome(pulumi.CustomResource):
|
|
745
781
|
enable_database_delete: Optional[pulumi.Input[bool]] = None,
|
746
782
|
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
747
783
|
is_desupported_version: Optional[pulumi.Input[bool]] = None,
|
784
|
+
is_unified_auditing_enabled: Optional[pulumi.Input[bool]] = None,
|
748
785
|
kms_key_id: Optional[pulumi.Input[str]] = None,
|
749
786
|
kms_key_version_id: Optional[pulumi.Input[str]] = None,
|
750
787
|
last_patch_history_entry_id: Optional[pulumi.Input[str]] = None,
|
@@ -775,6 +812,7 @@ class DbHome(pulumi.CustomResource):
|
|
775
812
|
:param pulumi.Input[bool] enable_database_delete: Defaults to false. If omitted or set to false the provider will not delete databases removed from the Db Home configuration.
|
776
813
|
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
777
814
|
:param pulumi.Input[bool] is_desupported_version: If true, the customer acknowledges that the specified Oracle Database software is an older release that is not currently supported by OCI.
|
815
|
+
:param pulumi.Input[bool] is_unified_auditing_enabled: Indicates whether unified autiding is enabled or not. Set to True to enable unified auditing on respective DBHome.
|
778
816
|
:param pulumi.Input[str] kms_key_id: The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
|
779
817
|
:param pulumi.Input[str] kms_key_version_id: The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
|
780
818
|
:param pulumi.Input[str] last_patch_history_entry_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the last patch history. This value is updated as soon as a patch operation is started.
|
@@ -803,6 +841,7 @@ class DbHome(pulumi.CustomResource):
|
|
803
841
|
__props__.__dict__["enable_database_delete"] = enable_database_delete
|
804
842
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
805
843
|
__props__.__dict__["is_desupported_version"] = is_desupported_version
|
844
|
+
__props__.__dict__["is_unified_auditing_enabled"] = is_unified_auditing_enabled
|
806
845
|
__props__.__dict__["kms_key_id"] = kms_key_id
|
807
846
|
__props__.__dict__["kms_key_version_id"] = kms_key_version_id
|
808
847
|
__props__.__dict__["last_patch_history_entry_id"] = last_patch_history_entry_id
|
@@ -905,6 +944,14 @@ class DbHome(pulumi.CustomResource):
|
|
905
944
|
"""
|
906
945
|
return pulumi.get(self, "is_desupported_version")
|
907
946
|
|
947
|
+
@property
|
948
|
+
@pulumi.getter(name="isUnifiedAuditingEnabled")
|
949
|
+
def is_unified_auditing_enabled(self) -> pulumi.Output[bool]:
|
950
|
+
"""
|
951
|
+
Indicates whether unified autiding is enabled or not. Set to True to enable unified auditing on respective DBHome.
|
952
|
+
"""
|
953
|
+
return pulumi.get(self, "is_unified_auditing_enabled")
|
954
|
+
|
908
955
|
@property
|
909
956
|
@pulumi.getter(name="kmsKeyId")
|
910
957
|
def kms_key_id(self) -> pulumi.Output[str]:
|