pulumi-oci 1.33.0__py3-none-any.whl → 1.33.0a1713903118__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 +0 -11
- pulumi_oci/core/_inputs.py +28 -116
- pulumi_oci/core/boot_volume.py +0 -49
- pulumi_oci/core/compute_capacity_reservation.py +0 -2
- pulumi_oci/core/compute_cluster.py +4 -2
- pulumi_oci/core/drg_route_distribution.py +7 -7
- pulumi_oci/core/get_boot_volume.py +1 -14
- pulumi_oci/core/get_cnv_dns_resolver_association.py +2 -2
- pulumi_oci/core/get_instance.py +1 -14
- pulumi_oci/core/get_subnet.py +2 -2
- pulumi_oci/core/get_vcn.py +2 -2
- pulumi_oci/core/get_volume.py +1 -14
- pulumi_oci/core/get_volumes.py +1 -21
- pulumi_oci/core/instance.py +4 -51
- pulumi_oci/core/instance_configuration.py +0 -8
- pulumi_oci/core/outputs.py +45 -302
- pulumi_oci/core/volume.py +0 -49
- pulumi_oci/core/volume_attachment.py +0 -28
- pulumi_oci/core/volume_group.py +0 -49
- pulumi_oci/databasemigration/_inputs.py +0 -20
- pulumi_oci/databasemigration/connection.py +0 -13
- pulumi_oci/databasemigration/get_connection.py +0 -3
- pulumi_oci/databasemigration/get_migration.py +0 -3
- pulumi_oci/databasemigration/migration.py +0 -13
- pulumi_oci/databasemigration/outputs.py +0 -68
- pulumi_oci/networkloadbalancer/backend_set.py +0 -49
- pulumi_oci/networkloadbalancer/get_backend_set.py +1 -14
- pulumi_oci/networkloadbalancer/network_load_balancers_backend_sets_unified.py +0 -49
- pulumi_oci/networkloadbalancer/outputs.py +0 -11
- {pulumi_oci-1.33.0.dist-info → pulumi_oci-1.33.0a1713903118.dist-info}/METADATA +1 -1
- {pulumi_oci-1.33.0.dist-info → pulumi_oci-1.33.0a1713903118.dist-info}/RECORD +33 -39
- pulumi_oci/clusterplacementgroups/__init__.py +0 -12
- pulumi_oci/clusterplacementgroups/_inputs.py +0 -159
- pulumi_oci/clusterplacementgroups/cluster_placement_group.py +0 -843
- pulumi_oci/clusterplacementgroups/get_cluster_placement_group.py +0 -298
- pulumi_oci/clusterplacementgroups/get_cluster_placement_groups.py +0 -217
- pulumi_oci/clusterplacementgroups/outputs.py +0 -485
- {pulumi_oci-1.33.0.dist-info → pulumi_oci-1.33.0a1713903118.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.33.0.dist-info → pulumi_oci-1.33.0a1713903118.dist-info}/top_level.txt +0 -0
pulumi_oci/core/volume.py
CHANGED
@@ -22,7 +22,6 @@ 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,
|
26
25
|
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
27
26
|
display_name: Optional[pulumi.Input[str]] = None,
|
28
27
|
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
@@ -40,7 +39,6 @@ class VolumeArgs:
|
|
40
39
|
:param pulumi.Input[Sequence[pulumi.Input['VolumeAutotunePolicyArgs']]] autotune_policies: (Updatable) The list of autotune policies to be enabled for this volume.
|
41
40
|
: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.
|
42
41
|
: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.
|
44
42
|
: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"}`
|
45
43
|
: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.
|
46
44
|
: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"}`
|
@@ -66,8 +64,6 @@ class VolumeArgs:
|
|
66
64
|
pulumi.set(__self__, "block_volume_replicas", block_volume_replicas)
|
67
65
|
if block_volume_replicas_deletion is not None:
|
68
66
|
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)
|
71
67
|
if defined_tags is not None:
|
72
68
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
73
69
|
if display_name is not None:
|
@@ -164,18 +160,6 @@ class VolumeArgs:
|
|
164
160
|
def block_volume_replicas_deletion(self, value: Optional[pulumi.Input[bool]]):
|
165
161
|
pulumi.set(self, "block_volume_replicas_deletion", value)
|
166
162
|
|
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
|
-
|
179
163
|
@property
|
180
164
|
@pulumi.getter(name="definedTags")
|
181
165
|
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
|
@@ -308,7 +292,6 @@ class _VolumeState:
|
|
308
292
|
backup_policy_id: Optional[pulumi.Input[str]] = None,
|
309
293
|
block_volume_replicas: Optional[pulumi.Input[Sequence[pulumi.Input['VolumeBlockVolumeReplicaArgs']]]] = None,
|
310
294
|
block_volume_replicas_deletion: Optional[pulumi.Input[bool]] = None,
|
311
|
-
cluster_placement_group_id: Optional[pulumi.Input[str]] = None,
|
312
295
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
313
296
|
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
314
297
|
display_name: Optional[pulumi.Input[str]] = None,
|
@@ -332,7 +315,6 @@ class _VolumeState:
|
|
332
315
|
:param pulumi.Input[str] availability_domain: (Updatable) The availability domain of the block volume replica. Example: `Uocm:PHX-AD-1`
|
333
316
|
: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.
|
334
317
|
: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.
|
336
318
|
:param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment that contains the volume.
|
337
319
|
: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"}`
|
338
320
|
: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.
|
@@ -366,8 +348,6 @@ class _VolumeState:
|
|
366
348
|
pulumi.set(__self__, "block_volume_replicas", block_volume_replicas)
|
367
349
|
if block_volume_replicas_deletion is not None:
|
368
350
|
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)
|
371
351
|
if compartment_id is not None:
|
372
352
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
373
353
|
if defined_tags is not None:
|
@@ -476,18 +456,6 @@ class _VolumeState:
|
|
476
456
|
def block_volume_replicas_deletion(self, value: Optional[pulumi.Input[bool]]):
|
477
457
|
pulumi.set(self, "block_volume_replicas_deletion", value)
|
478
458
|
|
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
|
-
|
491
459
|
@property
|
492
460
|
@pulumi.getter(name="compartmentId")
|
493
461
|
def compartment_id(self) -> Optional[pulumi.Input[str]]:
|
@@ -693,7 +661,6 @@ class Volume(pulumi.CustomResource):
|
|
693
661
|
backup_policy_id: Optional[pulumi.Input[str]] = None,
|
694
662
|
block_volume_replicas: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['VolumeBlockVolumeReplicaArgs']]]]] = None,
|
695
663
|
block_volume_replicas_deletion: Optional[pulumi.Input[bool]] = None,
|
696
|
-
cluster_placement_group_id: Optional[pulumi.Input[str]] = None,
|
697
664
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
698
665
|
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
699
666
|
display_name: Optional[pulumi.Input[str]] = None,
|
@@ -742,7 +709,6 @@ class Volume(pulumi.CustomResource):
|
|
742
709
|
availability_domain=volume_block_volume_replicas_availability_domain,
|
743
710
|
display_name=volume_block_volume_replicas_display_name,
|
744
711
|
)],
|
745
|
-
cluster_placement_group_id=test_group["id"],
|
746
712
|
defined_tags={
|
747
713
|
"Operations.CostCenter": "42",
|
748
714
|
},
|
@@ -776,7 +742,6 @@ class Volume(pulumi.CustomResource):
|
|
776
742
|
:param pulumi.Input[str] availability_domain: (Updatable) The availability domain of the block volume replica. Example: `Uocm:PHX-AD-1`
|
777
743
|
: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.
|
778
744
|
: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.
|
780
745
|
:param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment that contains the volume.
|
781
746
|
: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"}`
|
782
747
|
: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.
|
@@ -832,7 +797,6 @@ class Volume(pulumi.CustomResource):
|
|
832
797
|
availability_domain=volume_block_volume_replicas_availability_domain,
|
833
798
|
display_name=volume_block_volume_replicas_display_name,
|
834
799
|
)],
|
835
|
-
cluster_placement_group_id=test_group["id"],
|
836
800
|
defined_tags={
|
837
801
|
"Operations.CostCenter": "42",
|
838
802
|
},
|
@@ -880,7 +844,6 @@ class Volume(pulumi.CustomResource):
|
|
880
844
|
backup_policy_id: Optional[pulumi.Input[str]] = None,
|
881
845
|
block_volume_replicas: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['VolumeBlockVolumeReplicaArgs']]]]] = None,
|
882
846
|
block_volume_replicas_deletion: Optional[pulumi.Input[bool]] = None,
|
883
|
-
cluster_placement_group_id: Optional[pulumi.Input[str]] = None,
|
884
847
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
885
848
|
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
886
849
|
display_name: Optional[pulumi.Input[str]] = None,
|
@@ -908,7 +871,6 @@ class Volume(pulumi.CustomResource):
|
|
908
871
|
__props__.__dict__["backup_policy_id"] = backup_policy_id
|
909
872
|
__props__.__dict__["block_volume_replicas"] = block_volume_replicas
|
910
873
|
__props__.__dict__["block_volume_replicas_deletion"] = block_volume_replicas_deletion
|
911
|
-
__props__.__dict__["cluster_placement_group_id"] = cluster_placement_group_id
|
912
874
|
if compartment_id is None and not opts.urn:
|
913
875
|
raise TypeError("Missing required property 'compartment_id'")
|
914
876
|
__props__.__dict__["compartment_id"] = compartment_id
|
@@ -944,7 +906,6 @@ class Volume(pulumi.CustomResource):
|
|
944
906
|
backup_policy_id: Optional[pulumi.Input[str]] = None,
|
945
907
|
block_volume_replicas: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['VolumeBlockVolumeReplicaArgs']]]]] = None,
|
946
908
|
block_volume_replicas_deletion: Optional[pulumi.Input[bool]] = None,
|
947
|
-
cluster_placement_group_id: Optional[pulumi.Input[str]] = None,
|
948
909
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
949
910
|
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
950
911
|
display_name: Optional[pulumi.Input[str]] = None,
|
@@ -973,7 +934,6 @@ class Volume(pulumi.CustomResource):
|
|
973
934
|
:param pulumi.Input[str] availability_domain: (Updatable) The availability domain of the block volume replica. Example: `Uocm:PHX-AD-1`
|
974
935
|
: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.
|
975
936
|
: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.
|
977
937
|
:param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment that contains the volume.
|
978
938
|
: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"}`
|
979
939
|
: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.
|
@@ -1002,7 +962,6 @@ class Volume(pulumi.CustomResource):
|
|
1002
962
|
__props__.__dict__["backup_policy_id"] = backup_policy_id
|
1003
963
|
__props__.__dict__["block_volume_replicas"] = block_volume_replicas
|
1004
964
|
__props__.__dict__["block_volume_replicas_deletion"] = block_volume_replicas_deletion
|
1005
|
-
__props__.__dict__["cluster_placement_group_id"] = cluster_placement_group_id
|
1006
965
|
__props__.__dict__["compartment_id"] = compartment_id
|
1007
966
|
__props__.__dict__["defined_tags"] = defined_tags
|
1008
967
|
__props__.__dict__["display_name"] = display_name
|
@@ -1069,14 +1028,6 @@ class Volume(pulumi.CustomResource):
|
|
1069
1028
|
def block_volume_replicas_deletion(self) -> pulumi.Output[Optional[bool]]:
|
1070
1029
|
return pulumi.get(self, "block_volume_replicas_deletion")
|
1071
1030
|
|
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
|
-
|
1080
1031
|
@property
|
1081
1032
|
@pulumi.getter(name="compartmentId")
|
1082
1033
|
def compartment_id(self) -> pulumi.Output[str]:
|
@@ -243,7 +243,6 @@ 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,
|
247
246
|
iscsi_login_state: Optional[pulumi.Input[str]] = None,
|
248
247
|
multipath_devices: Optional[pulumi.Input[Sequence[pulumi.Input['VolumeAttachmentMultipathDeviceArgs']]]] = None,
|
249
248
|
port: Optional[pulumi.Input[int]] = None,
|
@@ -269,7 +268,6 @@ class _VolumeAttachmentState:
|
|
269
268
|
: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.
|
270
269
|
:param pulumi.Input[bool] is_read_only: Whether the attachment was created in read-only mode.
|
271
270
|
: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.
|
273
271
|
: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.
|
274
272
|
:param pulumi.Input[Sequence[pulumi.Input['VolumeAttachmentMultipathDeviceArgs']]] multipath_devices: A list of secondary multipath devices
|
275
273
|
:param pulumi.Input[int] port: The volume's iSCSI port, usually port 860 or 3260. Example: `3260`
|
@@ -317,8 +315,6 @@ class _VolumeAttachmentState:
|
|
317
315
|
pulumi.set(__self__, "is_read_only", is_read_only)
|
318
316
|
if is_shareable is not None:
|
319
317
|
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)
|
322
318
|
if iscsi_login_state is not None:
|
323
319
|
pulumi.set(__self__, "iscsi_login_state", iscsi_login_state)
|
324
320
|
if multipath_devices is not None:
|
@@ -529,18 +525,6 @@ class _VolumeAttachmentState:
|
|
529
525
|
def is_shareable(self, value: Optional[pulumi.Input[bool]]):
|
530
526
|
pulumi.set(self, "is_shareable", value)
|
531
527
|
|
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
|
-
|
544
528
|
@property
|
545
529
|
@pulumi.getter(name="iscsiLoginState")
|
546
530
|
def iscsi_login_state(self) -> Optional[pulumi.Input[str]]:
|
@@ -799,7 +783,6 @@ class VolumeAttachment(pulumi.CustomResource):
|
|
799
783
|
__props__.__dict__["ipv4"] = None
|
800
784
|
__props__.__dict__["iqn"] = None
|
801
785
|
__props__.__dict__["is_multipath"] = None
|
802
|
-
__props__.__dict__["is_volume_created_during_launch"] = None
|
803
786
|
__props__.__dict__["iscsi_login_state"] = None
|
804
787
|
__props__.__dict__["multipath_devices"] = None
|
805
788
|
__props__.__dict__["port"] = None
|
@@ -831,7 +814,6 @@ class VolumeAttachment(pulumi.CustomResource):
|
|
831
814
|
is_pv_encryption_in_transit_enabled: Optional[pulumi.Input[bool]] = None,
|
832
815
|
is_read_only: Optional[pulumi.Input[bool]] = None,
|
833
816
|
is_shareable: Optional[pulumi.Input[bool]] = None,
|
834
|
-
is_volume_created_during_launch: Optional[pulumi.Input[bool]] = None,
|
835
817
|
iscsi_login_state: Optional[pulumi.Input[str]] = None,
|
836
818
|
multipath_devices: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['VolumeAttachmentMultipathDeviceArgs']]]]] = None,
|
837
819
|
port: Optional[pulumi.Input[int]] = None,
|
@@ -862,7 +844,6 @@ class VolumeAttachment(pulumi.CustomResource):
|
|
862
844
|
: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.
|
863
845
|
:param pulumi.Input[bool] is_read_only: Whether the attachment was created in read-only mode.
|
864
846
|
: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.
|
866
847
|
: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.
|
867
848
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['VolumeAttachmentMultipathDeviceArgs']]]] multipath_devices: A list of secondary multipath devices
|
868
849
|
:param pulumi.Input[int] port: The volume's iSCSI port, usually port 860 or 3260. Example: `3260`
|
@@ -895,7 +876,6 @@ class VolumeAttachment(pulumi.CustomResource):
|
|
895
876
|
__props__.__dict__["is_pv_encryption_in_transit_enabled"] = is_pv_encryption_in_transit_enabled
|
896
877
|
__props__.__dict__["is_read_only"] = is_read_only
|
897
878
|
__props__.__dict__["is_shareable"] = is_shareable
|
898
|
-
__props__.__dict__["is_volume_created_during_launch"] = is_volume_created_during_launch
|
899
879
|
__props__.__dict__["iscsi_login_state"] = iscsi_login_state
|
900
880
|
__props__.__dict__["multipath_devices"] = multipath_devices
|
901
881
|
__props__.__dict__["port"] = port
|
@@ -1036,14 +1016,6 @@ class VolumeAttachment(pulumi.CustomResource):
|
|
1036
1016
|
"""
|
1037
1017
|
return pulumi.get(self, "is_shareable")
|
1038
1018
|
|
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
|
-
|
1047
1019
|
@property
|
1048
1020
|
@pulumi.getter(name="iscsiLoginState")
|
1049
1021
|
def iscsi_login_state(self) -> pulumi.Output[str]:
|
pulumi_oci/core/volume_group.py
CHANGED
@@ -20,7 +20,6 @@ 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,
|
24
23
|
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
25
24
|
display_name: Optional[pulumi.Input[str]] = None,
|
26
25
|
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
@@ -34,7 +33,6 @@ class VolumeGroupArgs:
|
|
34
33
|
:param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment that contains the volume group.
|
35
34
|
:param pulumi.Input['VolumeGroupSourceDetailsArgs'] source_details: Specifies the source for a volume group.
|
36
35
|
: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.
|
38
36
|
: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"}`
|
39
37
|
: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.
|
40
38
|
: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"}`
|
@@ -52,8 +50,6 @@ class VolumeGroupArgs:
|
|
52
50
|
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.""")
|
53
51
|
if backup_policy_id is not None:
|
54
52
|
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)
|
57
53
|
if defined_tags is not None:
|
58
54
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
59
55
|
if display_name is not None:
|
@@ -120,18 +116,6 @@ class VolumeGroupArgs:
|
|
120
116
|
def backup_policy_id(self, value: Optional[pulumi.Input[str]]):
|
121
117
|
pulumi.set(self, "backup_policy_id", value)
|
122
118
|
|
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
|
-
|
135
119
|
@property
|
136
120
|
@pulumi.getter(name="definedTags")
|
137
121
|
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
|
@@ -219,7 +203,6 @@ class _VolumeGroupState:
|
|
219
203
|
def __init__(__self__, *,
|
220
204
|
availability_domain: Optional[pulumi.Input[str]] = None,
|
221
205
|
backup_policy_id: Optional[pulumi.Input[str]] = None,
|
222
|
-
cluster_placement_group_id: Optional[pulumi.Input[str]] = None,
|
223
206
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
224
207
|
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
225
208
|
display_name: Optional[pulumi.Input[str]] = None,
|
@@ -238,7 +221,6 @@ class _VolumeGroupState:
|
|
238
221
|
Input properties used for looking up and filtering VolumeGroup resources.
|
239
222
|
:param pulumi.Input[str] availability_domain: (Updatable) The availability domain of the volume group replica. Example: `Uocm:PHX-AD-1`
|
240
223
|
: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.
|
242
224
|
:param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment that contains the volume group.
|
243
225
|
: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"}`
|
244
226
|
: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.
|
@@ -262,8 +244,6 @@ class _VolumeGroupState:
|
|
262
244
|
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.""")
|
263
245
|
if backup_policy_id is not None:
|
264
246
|
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)
|
267
247
|
if compartment_id is not None:
|
268
248
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
269
249
|
if defined_tags is not None:
|
@@ -320,18 +300,6 @@ class _VolumeGroupState:
|
|
320
300
|
def backup_policy_id(self, value: Optional[pulumi.Input[str]]):
|
321
301
|
pulumi.set(self, "backup_policy_id", value)
|
322
302
|
|
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
|
-
|
335
303
|
@property
|
336
304
|
@pulumi.getter(name="compartmentId")
|
337
305
|
def compartment_id(self) -> Optional[pulumi.Input[str]]:
|
@@ -505,7 +473,6 @@ class VolumeGroup(pulumi.CustomResource):
|
|
505
473
|
opts: Optional[pulumi.ResourceOptions] = None,
|
506
474
|
availability_domain: Optional[pulumi.Input[str]] = None,
|
507
475
|
backup_policy_id: Optional[pulumi.Input[str]] = None,
|
508
|
-
cluster_placement_group_id: Optional[pulumi.Input[str]] = None,
|
509
476
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
510
477
|
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
511
478
|
display_name: Optional[pulumi.Input[str]] = None,
|
@@ -531,7 +498,6 @@ class VolumeGroup(pulumi.CustomResource):
|
|
531
498
|
volume_ids=[volume_group_source_id],
|
532
499
|
),
|
533
500
|
backup_policy_id=test_volume_backup_policies["volumeBackupPolicies"][0]["id"],
|
534
|
-
cluster_placement_group_id=test_group["id"],
|
535
501
|
defined_tags={
|
536
502
|
"Operations.CostCenter": "42",
|
537
503
|
},
|
@@ -558,7 +524,6 @@ class VolumeGroup(pulumi.CustomResource):
|
|
558
524
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
559
525
|
:param pulumi.Input[str] availability_domain: (Updatable) The availability domain of the volume group replica. Example: `Uocm:PHX-AD-1`
|
560
526
|
: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.
|
562
527
|
:param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment that contains the volume group.
|
563
528
|
: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"}`
|
564
529
|
: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.
|
@@ -591,7 +556,6 @@ class VolumeGroup(pulumi.CustomResource):
|
|
591
556
|
volume_ids=[volume_group_source_id],
|
592
557
|
),
|
593
558
|
backup_policy_id=test_volume_backup_policies["volumeBackupPolicies"][0]["id"],
|
594
|
-
cluster_placement_group_id=test_group["id"],
|
595
559
|
defined_tags={
|
596
560
|
"Operations.CostCenter": "42",
|
597
561
|
},
|
@@ -631,7 +595,6 @@ class VolumeGroup(pulumi.CustomResource):
|
|
631
595
|
opts: Optional[pulumi.ResourceOptions] = None,
|
632
596
|
availability_domain: Optional[pulumi.Input[str]] = None,
|
633
597
|
backup_policy_id: Optional[pulumi.Input[str]] = None,
|
634
|
-
cluster_placement_group_id: Optional[pulumi.Input[str]] = None,
|
635
598
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
636
599
|
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
637
600
|
display_name: Optional[pulumi.Input[str]] = None,
|
@@ -654,7 +617,6 @@ class VolumeGroup(pulumi.CustomResource):
|
|
654
617
|
raise TypeError("Missing required property 'availability_domain'")
|
655
618
|
__props__.__dict__["availability_domain"] = availability_domain
|
656
619
|
__props__.__dict__["backup_policy_id"] = backup_policy_id
|
657
|
-
__props__.__dict__["cluster_placement_group_id"] = cluster_placement_group_id
|
658
620
|
if compartment_id is None and not opts.urn:
|
659
621
|
raise TypeError("Missing required property 'compartment_id'")
|
660
622
|
__props__.__dict__["compartment_id"] = compartment_id
|
@@ -685,7 +647,6 @@ class VolumeGroup(pulumi.CustomResource):
|
|
685
647
|
opts: Optional[pulumi.ResourceOptions] = None,
|
686
648
|
availability_domain: Optional[pulumi.Input[str]] = None,
|
687
649
|
backup_policy_id: Optional[pulumi.Input[str]] = None,
|
688
|
-
cluster_placement_group_id: Optional[pulumi.Input[str]] = None,
|
689
650
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
690
651
|
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
691
652
|
display_name: Optional[pulumi.Input[str]] = None,
|
@@ -709,7 +670,6 @@ class VolumeGroup(pulumi.CustomResource):
|
|
709
670
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
710
671
|
:param pulumi.Input[str] availability_domain: (Updatable) The availability domain of the volume group replica. Example: `Uocm:PHX-AD-1`
|
711
672
|
: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.
|
713
673
|
:param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment that contains the volume group.
|
714
674
|
: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"}`
|
715
675
|
: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.
|
@@ -732,7 +692,6 @@ class VolumeGroup(pulumi.CustomResource):
|
|
732
692
|
|
733
693
|
__props__.__dict__["availability_domain"] = availability_domain
|
734
694
|
__props__.__dict__["backup_policy_id"] = backup_policy_id
|
735
|
-
__props__.__dict__["cluster_placement_group_id"] = cluster_placement_group_id
|
736
695
|
__props__.__dict__["compartment_id"] = compartment_id
|
737
696
|
__props__.__dict__["defined_tags"] = defined_tags
|
738
697
|
__props__.__dict__["display_name"] = display_name
|
@@ -768,14 +727,6 @@ class VolumeGroup(pulumi.CustomResource):
|
|
768
727
|
|
769
728
|
return pulumi.get(self, "backup_policy_id")
|
770
729
|
|
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
|
-
|
779
730
|
@property
|
780
731
|
@pulumi.getter(name="compartmentId")
|
781
732
|
def compartment_id(self) -> pulumi.Output[str]:
|
@@ -959,11 +959,7 @@ 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
|
963
962
|
: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
|
967
963
|
"""
|
968
964
|
pulumi.set(__self__, "type", type)
|
969
965
|
if access_key_id is not None:
|
@@ -992,9 +988,6 @@ class MigrationDataTransferMediumDetailsV2Args:
|
|
992
988
|
@property
|
993
989
|
@pulumi.getter(name="accessKeyId")
|
994
990
|
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
|
-
"""
|
998
991
|
return pulumi.get(self, "access_key_id")
|
999
992
|
|
1000
993
|
@access_key_id.setter
|
@@ -1016,9 +1009,6 @@ class MigrationDataTransferMediumDetailsV2Args:
|
|
1016
1009
|
@property
|
1017
1010
|
@pulumi.getter(name="objectStorageBucket")
|
1018
1011
|
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
|
-
"""
|
1022
1012
|
return pulumi.get(self, "object_storage_bucket")
|
1023
1013
|
|
1024
1014
|
@object_storage_bucket.setter
|
@@ -1028,9 +1018,6 @@ class MigrationDataTransferMediumDetailsV2Args:
|
|
1028
1018
|
@property
|
1029
1019
|
@pulumi.getter
|
1030
1020
|
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
|
-
"""
|
1034
1021
|
return pulumi.get(self, "region")
|
1035
1022
|
|
1036
1023
|
@region.setter
|
@@ -1040,9 +1027,6 @@ class MigrationDataTransferMediumDetailsV2Args:
|
|
1040
1027
|
@property
|
1041
1028
|
@pulumi.getter(name="secretAccessKey")
|
1042
1029
|
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
|
-
"""
|
1046
1030
|
return pulumi.get(self, "secret_access_key")
|
1047
1031
|
|
1048
1032
|
@secret_access_key.setter
|
@@ -1414,7 +1398,6 @@ class MigrationDumpTransferDetailsArgs:
|
|
1414
1398
|
source: Optional[pulumi.Input['MigrationDumpTransferDetailsSourceArgs']] = None,
|
1415
1399
|
target: Optional[pulumi.Input['MigrationDumpTransferDetailsTargetArgs']] = None):
|
1416
1400
|
"""
|
1417
|
-
:param pulumi.Input[str] shared_storage_mount_target_id: Optional OCID of the shared storage mount target.
|
1418
1401
|
:param pulumi.Input['MigrationDumpTransferDetailsSourceArgs'] source: (Updatable) Optional additional properties for dump transfer in source or target host. Default kind is CURL
|
1419
1402
|
:param pulumi.Input['MigrationDumpTransferDetailsTargetArgs'] target: (Updatable) Optional additional properties for dump transfer in source or target host. Default kind is CURL
|
1420
1403
|
"""
|
@@ -1428,9 +1411,6 @@ class MigrationDumpTransferDetailsArgs:
|
|
1428
1411
|
@property
|
1429
1412
|
@pulumi.getter(name="sharedStorageMountTargetId")
|
1430
1413
|
def shared_storage_mount_target_id(self) -> Optional[pulumi.Input[str]]:
|
1431
|
-
"""
|
1432
|
-
Optional OCID of the shared storage mount target.
|
1433
|
-
"""
|
1434
1414
|
return pulumi.get(self, "shared_storage_mount_target_id")
|
1435
1415
|
|
1436
1416
|
@shared_storage_mount_target_id.setter
|
@@ -45,7 +45,6 @@ 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.
|
49
48
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] nsg_ids: (Updatable) An array of Network Security Group OCIDs used to define network access for Connections.
|
50
49
|
: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.
|
51
50
|
:param pulumi.Input['ConnectionReplicationCredentialsArgs'] replication_credentials: (Updatable) Database Administrator Credentials details.
|
@@ -207,9 +206,6 @@ class ConnectionArgs:
|
|
207
206
|
@property
|
208
207
|
@pulumi.getter(name="manualDatabaseSubType")
|
209
208
|
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
|
-
"""
|
213
209
|
return pulumi.get(self, "manual_database_sub_type")
|
214
210
|
|
215
211
|
@manual_database_sub_type.setter
|
@@ -328,7 +324,6 @@ class _ConnectionState:
|
|
328
324
|
:param pulumi.Input[str] display_name: (Updatable) Database Connection display name identifier.
|
329
325
|
: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"}`
|
330
326
|
: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.
|
332
327
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] nsg_ids: (Updatable) An array of Network Security Group OCIDs used to define network access for Connections.
|
333
328
|
: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.
|
334
329
|
:param pulumi.Input['ConnectionReplicationCredentialsArgs'] replication_credentials: (Updatable) Database Administrator Credentials details.
|
@@ -523,9 +518,6 @@ class _ConnectionState:
|
|
523
518
|
@property
|
524
519
|
@pulumi.getter(name="manualDatabaseSubType")
|
525
520
|
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
|
-
"""
|
529
521
|
return pulumi.get(self, "manual_database_sub_type")
|
530
522
|
|
531
523
|
@manual_database_sub_type.setter
|
@@ -766,7 +758,6 @@ class Connection(pulumi.CustomResource):
|
|
766
758
|
: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"}`
|
767
759
|
:param pulumi.Input[str] display_name: (Updatable) Database Connection display name identifier.
|
768
760
|
: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.
|
770
761
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] nsg_ids: (Updatable) An array of Network Security Group OCIDs used to define network access for Connections.
|
771
762
|
: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.
|
772
763
|
:param pulumi.Input[pulumi.InputType['ConnectionReplicationCredentialsArgs']] replication_credentials: (Updatable) Database Administrator Credentials details.
|
@@ -971,7 +962,6 @@ class Connection(pulumi.CustomResource):
|
|
971
962
|
:param pulumi.Input[str] display_name: (Updatable) Database Connection display name identifier.
|
972
963
|
: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"}`
|
973
964
|
: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.
|
975
965
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] nsg_ids: (Updatable) An array of Network Security Group OCIDs used to define network access for Connections.
|
976
966
|
: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.
|
977
967
|
:param pulumi.Input[pulumi.InputType['ConnectionReplicationCredentialsArgs']] replication_credentials: (Updatable) Database Administrator Credentials details.
|
@@ -1104,9 +1094,6 @@ class Connection(pulumi.CustomResource):
|
|
1104
1094
|
@property
|
1105
1095
|
@pulumi.getter(name="manualDatabaseSubType")
|
1106
1096
|
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
|
-
"""
|
1110
1097
|
return pulumi.get(self, "manual_database_sub_type")
|
1111
1098
|
|
1112
1099
|
@property
|
@@ -203,9 +203,6 @@ 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
|
-
"""
|
209
206
|
return pulumi.get(self, "manual_database_sub_type")
|
210
207
|
|
211
208
|
@property
|
@@ -165,9 +165,6 @@ 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
|
-
"""
|
171
168
|
return pulumi.get(self, "data_transfer_medium_details_v2s")
|
172
169
|
|
173
170
|
@property
|