pulumi-oci 1.33.0a1713903118__py3-none-any.whl → 1.33.0a1714072500__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_oci/__init__.py +11 -0
- pulumi_oci/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/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/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/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-1.33.0a1713903118.dist-info → pulumi_oci-1.33.0a1714072500.dist-info}/METADATA +1 -1
- {pulumi_oci-1.33.0a1713903118.dist-info → pulumi_oci-1.33.0a1714072500.dist-info}/RECORD +39 -33
- {pulumi_oci-1.33.0a1713903118.dist-info → pulumi_oci-1.33.0a1714072500.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.33.0a1713903118.dist-info → pulumi_oci-1.33.0a1714072500.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]:
|
@@ -959,7 +959,11 @@ class MigrationDataTransferMediumDetailsV2Args:
|
|
959
959
|
secret_access_key: Optional[pulumi.Input[str]] = None):
|
960
960
|
"""
|
961
961
|
:param pulumi.Input[str] type: (Updatable) Migration type.
|
962
|
+
:param pulumi.Input[str] access_key_id: (Updatable) AWS access key credentials identifier Details: https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html#access-keys-and-secret-access-keys
|
962
963
|
:param pulumi.Input[str] name: (Updatable) Name of directory object in database
|
964
|
+
:param pulumi.Input['MigrationDataTransferMediumDetailsV2ObjectStorageBucketArgs'] object_storage_bucket: (Updatable) In lieu of a network database link, Oracle Cloud Infrastructure Object Storage bucket will be used to store Data Pump dump files for the migration. Additionally, it can be specified alongside a database link data transfer medium.
|
965
|
+
:param pulumi.Input[str] region: (Updatable) AWS region code where the S3 bucket is located. Region code should match the documented available regions: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html#concepts-available-regions
|
966
|
+
:param pulumi.Input[str] secret_access_key: (Updatable) AWS secret access key credentials Details: https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html#access-keys-and-secret-access-keys
|
963
967
|
"""
|
964
968
|
pulumi.set(__self__, "type", type)
|
965
969
|
if access_key_id is not None:
|
@@ -988,6 +992,9 @@ class MigrationDataTransferMediumDetailsV2Args:
|
|
988
992
|
@property
|
989
993
|
@pulumi.getter(name="accessKeyId")
|
990
994
|
def access_key_id(self) -> Optional[pulumi.Input[str]]:
|
995
|
+
"""
|
996
|
+
(Updatable) AWS access key credentials identifier Details: https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html#access-keys-and-secret-access-keys
|
997
|
+
"""
|
991
998
|
return pulumi.get(self, "access_key_id")
|
992
999
|
|
993
1000
|
@access_key_id.setter
|
@@ -1009,6 +1016,9 @@ class MigrationDataTransferMediumDetailsV2Args:
|
|
1009
1016
|
@property
|
1010
1017
|
@pulumi.getter(name="objectStorageBucket")
|
1011
1018
|
def object_storage_bucket(self) -> Optional[pulumi.Input['MigrationDataTransferMediumDetailsV2ObjectStorageBucketArgs']]:
|
1019
|
+
"""
|
1020
|
+
(Updatable) In lieu of a network database link, Oracle Cloud Infrastructure Object Storage bucket will be used to store Data Pump dump files for the migration. Additionally, it can be specified alongside a database link data transfer medium.
|
1021
|
+
"""
|
1012
1022
|
return pulumi.get(self, "object_storage_bucket")
|
1013
1023
|
|
1014
1024
|
@object_storage_bucket.setter
|
@@ -1018,6 +1028,9 @@ class MigrationDataTransferMediumDetailsV2Args:
|
|
1018
1028
|
@property
|
1019
1029
|
@pulumi.getter
|
1020
1030
|
def region(self) -> Optional[pulumi.Input[str]]:
|
1031
|
+
"""
|
1032
|
+
(Updatable) AWS region code where the S3 bucket is located. Region code should match the documented available regions: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html#concepts-available-regions
|
1033
|
+
"""
|
1021
1034
|
return pulumi.get(self, "region")
|
1022
1035
|
|
1023
1036
|
@region.setter
|
@@ -1027,6 +1040,9 @@ class MigrationDataTransferMediumDetailsV2Args:
|
|
1027
1040
|
@property
|
1028
1041
|
@pulumi.getter(name="secretAccessKey")
|
1029
1042
|
def secret_access_key(self) -> Optional[pulumi.Input[str]]:
|
1043
|
+
"""
|
1044
|
+
(Updatable) AWS secret access key credentials Details: https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html#access-keys-and-secret-access-keys
|
1045
|
+
"""
|
1030
1046
|
return pulumi.get(self, "secret_access_key")
|
1031
1047
|
|
1032
1048
|
@secret_access_key.setter
|
@@ -1398,6 +1414,7 @@ class MigrationDumpTransferDetailsArgs:
|
|
1398
1414
|
source: Optional[pulumi.Input['MigrationDumpTransferDetailsSourceArgs']] = None,
|
1399
1415
|
target: Optional[pulumi.Input['MigrationDumpTransferDetailsTargetArgs']] = None):
|
1400
1416
|
"""
|
1417
|
+
:param pulumi.Input[str] shared_storage_mount_target_id: Optional OCID of the shared storage mount target.
|
1401
1418
|
:param pulumi.Input['MigrationDumpTransferDetailsSourceArgs'] source: (Updatable) Optional additional properties for dump transfer in source or target host. Default kind is CURL
|
1402
1419
|
:param pulumi.Input['MigrationDumpTransferDetailsTargetArgs'] target: (Updatable) Optional additional properties for dump transfer in source or target host. Default kind is CURL
|
1403
1420
|
"""
|
@@ -1411,6 +1428,9 @@ class MigrationDumpTransferDetailsArgs:
|
|
1411
1428
|
@property
|
1412
1429
|
@pulumi.getter(name="sharedStorageMountTargetId")
|
1413
1430
|
def shared_storage_mount_target_id(self) -> Optional[pulumi.Input[str]]:
|
1431
|
+
"""
|
1432
|
+
Optional OCID of the shared storage mount target.
|
1433
|
+
"""
|
1414
1434
|
return pulumi.get(self, "shared_storage_mount_target_id")
|
1415
1435
|
|
1416
1436
|
@shared_storage_mount_target_id.setter
|
@@ -45,6 +45,7 @@ class ConnectionArgs:
|
|
45
45
|
:param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
46
46
|
:param pulumi.Input[str] display_name: (Updatable) Database Connection display name identifier.
|
47
47
|
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
48
|
+
:param pulumi.Input[str] manual_database_sub_type: Database manual connection subtype. This value can only be specified for manual connections.
|
48
49
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] nsg_ids: (Updatable) An array of Network Security Group OCIDs used to define network access for Connections.
|
49
50
|
:param pulumi.Input['ConnectionPrivateEndpointArgs'] private_endpoint: (Updatable) Oracle Cloud Infrastructure Private Endpoint configuration details. Not required for source container database connections, it will default to the specified Source Database Connection Private Endpoint.
|
50
51
|
:param pulumi.Input['ConnectionReplicationCredentialsArgs'] replication_credentials: (Updatable) Database Administrator Credentials details.
|
@@ -206,6 +207,9 @@ class ConnectionArgs:
|
|
206
207
|
@property
|
207
208
|
@pulumi.getter(name="manualDatabaseSubType")
|
208
209
|
def manual_database_sub_type(self) -> Optional[pulumi.Input[str]]:
|
210
|
+
"""
|
211
|
+
Database manual connection subtype. This value can only be specified for manual connections.
|
212
|
+
"""
|
209
213
|
return pulumi.get(self, "manual_database_sub_type")
|
210
214
|
|
211
215
|
@manual_database_sub_type.setter
|
@@ -324,6 +328,7 @@ class _ConnectionState:
|
|
324
328
|
:param pulumi.Input[str] display_name: (Updatable) Database Connection display name identifier.
|
325
329
|
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
326
330
|
:param pulumi.Input[str] lifecycle_details: A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
|
331
|
+
:param pulumi.Input[str] manual_database_sub_type: Database manual connection subtype. This value can only be specified for manual connections.
|
327
332
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] nsg_ids: (Updatable) An array of Network Security Group OCIDs used to define network access for Connections.
|
328
333
|
:param pulumi.Input['ConnectionPrivateEndpointArgs'] private_endpoint: (Updatable) Oracle Cloud Infrastructure Private Endpoint configuration details. Not required for source container database connections, it will default to the specified Source Database Connection Private Endpoint.
|
329
334
|
:param pulumi.Input['ConnectionReplicationCredentialsArgs'] replication_credentials: (Updatable) Database Administrator Credentials details.
|
@@ -518,6 +523,9 @@ class _ConnectionState:
|
|
518
523
|
@property
|
519
524
|
@pulumi.getter(name="manualDatabaseSubType")
|
520
525
|
def manual_database_sub_type(self) -> Optional[pulumi.Input[str]]:
|
526
|
+
"""
|
527
|
+
Database manual connection subtype. This value can only be specified for manual connections.
|
528
|
+
"""
|
521
529
|
return pulumi.get(self, "manual_database_sub_type")
|
522
530
|
|
523
531
|
@manual_database_sub_type.setter
|
@@ -758,6 +766,7 @@ class Connection(pulumi.CustomResource):
|
|
758
766
|
:param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
759
767
|
:param pulumi.Input[str] display_name: (Updatable) Database Connection display name identifier.
|
760
768
|
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
769
|
+
:param pulumi.Input[str] manual_database_sub_type: Database manual connection subtype. This value can only be specified for manual connections.
|
761
770
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] nsg_ids: (Updatable) An array of Network Security Group OCIDs used to define network access for Connections.
|
762
771
|
:param pulumi.Input[pulumi.InputType['ConnectionPrivateEndpointArgs']] private_endpoint: (Updatable) Oracle Cloud Infrastructure Private Endpoint configuration details. Not required for source container database connections, it will default to the specified Source Database Connection Private Endpoint.
|
763
772
|
:param pulumi.Input[pulumi.InputType['ConnectionReplicationCredentialsArgs']] replication_credentials: (Updatable) Database Administrator Credentials details.
|
@@ -962,6 +971,7 @@ class Connection(pulumi.CustomResource):
|
|
962
971
|
:param pulumi.Input[str] display_name: (Updatable) Database Connection display name identifier.
|
963
972
|
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
964
973
|
:param pulumi.Input[str] lifecycle_details: A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
|
974
|
+
:param pulumi.Input[str] manual_database_sub_type: Database manual connection subtype. This value can only be specified for manual connections.
|
965
975
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] nsg_ids: (Updatable) An array of Network Security Group OCIDs used to define network access for Connections.
|
966
976
|
:param pulumi.Input[pulumi.InputType['ConnectionPrivateEndpointArgs']] private_endpoint: (Updatable) Oracle Cloud Infrastructure Private Endpoint configuration details. Not required for source container database connections, it will default to the specified Source Database Connection Private Endpoint.
|
967
977
|
:param pulumi.Input[pulumi.InputType['ConnectionReplicationCredentialsArgs']] replication_credentials: (Updatable) Database Administrator Credentials details.
|
@@ -1094,6 +1104,9 @@ class Connection(pulumi.CustomResource):
|
|
1094
1104
|
@property
|
1095
1105
|
@pulumi.getter(name="manualDatabaseSubType")
|
1096
1106
|
def manual_database_sub_type(self) -> pulumi.Output[str]:
|
1107
|
+
"""
|
1108
|
+
Database manual connection subtype. This value can only be specified for manual connections.
|
1109
|
+
"""
|
1097
1110
|
return pulumi.get(self, "manual_database_sub_type")
|
1098
1111
|
|
1099
1112
|
@property
|
@@ -203,6 +203,9 @@ class GetConnectionResult:
|
|
203
203
|
@property
|
204
204
|
@pulumi.getter(name="manualDatabaseSubType")
|
205
205
|
def manual_database_sub_type(self) -> str:
|
206
|
+
"""
|
207
|
+
Database manual connection subtype. This value can only be specified for manual connections.
|
208
|
+
"""
|
206
209
|
return pulumi.get(self, "manual_database_sub_type")
|
207
210
|
|
208
211
|
@property
|
@@ -165,6 +165,9 @@ class GetMigrationResult:
|
|
165
165
|
@property
|
166
166
|
@pulumi.getter(name="dataTransferMediumDetailsV2s")
|
167
167
|
def data_transfer_medium_details_v2s(self) -> Sequence['outputs.GetMigrationDataTransferMediumDetailsV2Result']:
|
168
|
+
"""
|
169
|
+
Optional additional properties for dump transfer in source or target host.
|
170
|
+
"""
|
168
171
|
return pulumi.get(self, "data_transfer_medium_details_v2s")
|
169
172
|
|
170
173
|
@property
|