pulumi-oci 2.30.0a1744654696__py3-none-any.whl → 2.31.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_oci/containerengine/_inputs.py +20 -19
- pulumi_oci/containerengine/container_instance.py +2 -2
- pulumi_oci/containerengine/outputs.py +12 -11
- pulumi_oci/goldengate/__init__.py +1 -0
- pulumi_oci/goldengate/_inputs.py +103 -0
- pulumi_oci/goldengate/deployment.py +308 -68
- pulumi_oci/goldengate/get_deployment.py +85 -1
- pulumi_oci/goldengate/get_deployment_peers.py +192 -0
- pulumi_oci/goldengate/outputs.py +364 -0
- pulumi_oci/loadbalancer/load_balancer.py +49 -0
- pulumi_oci/loadbalancer/outputs.py +11 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-2.30.0a1744654696.dist-info → pulumi_oci-2.31.0.dist-info}/METADATA +1 -1
- {pulumi_oci-2.30.0a1744654696.dist-info → pulumi_oci-2.31.0.dist-info}/RECORD +16 -15
- {pulumi_oci-2.30.0a1744654696.dist-info → pulumi_oci-2.31.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.30.0a1744654696.dist-info → pulumi_oci-2.31.0.dist-info}/top_level.txt +0 -0
pulumi_oci/goldengate/outputs.py
CHANGED
@@ -30,6 +30,7 @@ __all__ = [
|
|
30
30
|
'DeploymentMaintenanceWindow',
|
31
31
|
'DeploymentOggData',
|
32
32
|
'DeploymentOggDataGroupToRolesMapping',
|
33
|
+
'DeploymentPlacement',
|
33
34
|
'PipelineLock',
|
34
35
|
'PipelineMappingRule',
|
35
36
|
'PipelinePipelineDiagnosticData',
|
@@ -74,6 +75,10 @@ __all__ = [
|
|
74
75
|
'GetDeploymentMaintenanceWindowResult',
|
75
76
|
'GetDeploymentOggDataResult',
|
76
77
|
'GetDeploymentOggDataGroupToRolesMappingResult',
|
78
|
+
'GetDeploymentPeersDeploymentPeerCollectionResult',
|
79
|
+
'GetDeploymentPeersDeploymentPeerCollectionItemResult',
|
80
|
+
'GetDeploymentPeersFilterResult',
|
81
|
+
'GetDeploymentPlacementResult',
|
77
82
|
'GetDeploymentTypeItemResult',
|
78
83
|
'GetDeploymentTypesDeploymentTypeCollectionResult',
|
79
84
|
'GetDeploymentTypesDeploymentTypeCollectionItemResult',
|
@@ -94,6 +99,7 @@ __all__ = [
|
|
94
99
|
'GetDeploymentsDeploymentCollectionItemMaintenanceWindowResult',
|
95
100
|
'GetDeploymentsDeploymentCollectionItemOggDataResult',
|
96
101
|
'GetDeploymentsDeploymentCollectionItemOggDataGroupToRolesMappingResult',
|
102
|
+
'GetDeploymentsDeploymentCollectionItemPlacementResult',
|
97
103
|
'GetDeploymentsFilterResult',
|
98
104
|
'GetMessageItemResult',
|
99
105
|
'GetMessagesDeploymentMessagesCollectionResult',
|
@@ -1094,6 +1100,56 @@ class DeploymentOggDataGroupToRolesMapping(dict):
|
|
1094
1100
|
return pulumi.get(self, "user_group_id")
|
1095
1101
|
|
1096
1102
|
|
1103
|
+
@pulumi.output_type
|
1104
|
+
class DeploymentPlacement(dict):
|
1105
|
+
@staticmethod
|
1106
|
+
def __key_warning(key: str):
|
1107
|
+
suggest = None
|
1108
|
+
if key == "availabilityDomain":
|
1109
|
+
suggest = "availability_domain"
|
1110
|
+
elif key == "faultDomain":
|
1111
|
+
suggest = "fault_domain"
|
1112
|
+
|
1113
|
+
if suggest:
|
1114
|
+
pulumi.log.warn(f"Key '{key}' not found in DeploymentPlacement. Access the value via the '{suggest}' property getter instead.")
|
1115
|
+
|
1116
|
+
def __getitem__(self, key: str) -> Any:
|
1117
|
+
DeploymentPlacement.__key_warning(key)
|
1118
|
+
return super().__getitem__(key)
|
1119
|
+
|
1120
|
+
def get(self, key: str, default = None) -> Any:
|
1121
|
+
DeploymentPlacement.__key_warning(key)
|
1122
|
+
return super().get(key, default)
|
1123
|
+
|
1124
|
+
def __init__(__self__, *,
|
1125
|
+
availability_domain: Optional[builtins.str] = None,
|
1126
|
+
fault_domain: Optional[builtins.str] = None):
|
1127
|
+
"""
|
1128
|
+
:param builtins.str availability_domain: (Updatable) The availability domain of a placement.
|
1129
|
+
:param builtins.str fault_domain: (Updatable) The fault domain of a placement.
|
1130
|
+
"""
|
1131
|
+
if availability_domain is not None:
|
1132
|
+
pulumi.set(__self__, "availability_domain", availability_domain)
|
1133
|
+
if fault_domain is not None:
|
1134
|
+
pulumi.set(__self__, "fault_domain", fault_domain)
|
1135
|
+
|
1136
|
+
@property
|
1137
|
+
@pulumi.getter(name="availabilityDomain")
|
1138
|
+
def availability_domain(self) -> Optional[builtins.str]:
|
1139
|
+
"""
|
1140
|
+
(Updatable) The availability domain of a placement.
|
1141
|
+
"""
|
1142
|
+
return pulumi.get(self, "availability_domain")
|
1143
|
+
|
1144
|
+
@property
|
1145
|
+
@pulumi.getter(name="faultDomain")
|
1146
|
+
def fault_domain(self) -> Optional[builtins.str]:
|
1147
|
+
"""
|
1148
|
+
(Updatable) The fault domain of a placement.
|
1149
|
+
"""
|
1150
|
+
return pulumi.get(self, "fault_domain")
|
1151
|
+
|
1152
|
+
|
1097
1153
|
@pulumi.output_type
|
1098
1154
|
class PipelineLock(dict):
|
1099
1155
|
def __init__(__self__, *,
|
@@ -4818,6 +4874,208 @@ class GetDeploymentOggDataGroupToRolesMappingResult(dict):
|
|
4818
4874
|
return pulumi.get(self, "user_group_id")
|
4819
4875
|
|
4820
4876
|
|
4877
|
+
@pulumi.output_type
|
4878
|
+
class GetDeploymentPeersDeploymentPeerCollectionResult(dict):
|
4879
|
+
def __init__(__self__, *,
|
4880
|
+
items: Sequence['outputs.GetDeploymentPeersDeploymentPeerCollectionItemResult']):
|
4881
|
+
"""
|
4882
|
+
:param Sequence['GetDeploymentPeersDeploymentPeerCollectionItemArgs'] items: An array of DeploymentPeers.
|
4883
|
+
"""
|
4884
|
+
pulumi.set(__self__, "items", items)
|
4885
|
+
|
4886
|
+
@property
|
4887
|
+
@pulumi.getter
|
4888
|
+
def items(self) -> Sequence['outputs.GetDeploymentPeersDeploymentPeerCollectionItemResult']:
|
4889
|
+
"""
|
4890
|
+
An array of DeploymentPeers.
|
4891
|
+
"""
|
4892
|
+
return pulumi.get(self, "items")
|
4893
|
+
|
4894
|
+
|
4895
|
+
@pulumi.output_type
|
4896
|
+
class GetDeploymentPeersDeploymentPeerCollectionItemResult(dict):
|
4897
|
+
def __init__(__self__, *,
|
4898
|
+
availability_domain: builtins.str,
|
4899
|
+
deployment_id: builtins.str,
|
4900
|
+
display_name: builtins.str,
|
4901
|
+
fault_domain: builtins.str,
|
4902
|
+
peer_role: builtins.str,
|
4903
|
+
peer_type: builtins.str,
|
4904
|
+
region: builtins.str,
|
4905
|
+
state: builtins.str,
|
4906
|
+
time_created: builtins.str,
|
4907
|
+
time_role_changed: builtins.str,
|
4908
|
+
time_updated: builtins.str):
|
4909
|
+
"""
|
4910
|
+
:param builtins.str availability_domain: The availability domain of a placement.
|
4911
|
+
:param builtins.str deployment_id: A unique Deployment identifier.
|
4912
|
+
:param builtins.str display_name: A filter to return only the resources that match the entire 'displayName' given.
|
4913
|
+
:param builtins.str fault_domain: The fault domain of a placement.
|
4914
|
+
:param builtins.str peer_role: The type of the deployment role.
|
4915
|
+
:param builtins.str peer_type: The type of the deployment peer.
|
4916
|
+
:param builtins.str region: The name of the region. e.g.: us-ashburn-1 If the region is not provided, backend will default to the default region.
|
4917
|
+
:param builtins.str state: A filter to return only the resources that match the 'lifecycleState' given.
|
4918
|
+
:param builtins.str time_created: The time the resource was created. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
|
4919
|
+
:param builtins.str time_role_changed: The time of the last role change. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
|
4920
|
+
:param builtins.str time_updated: The time the resource was last updated. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
|
4921
|
+
"""
|
4922
|
+
pulumi.set(__self__, "availability_domain", availability_domain)
|
4923
|
+
pulumi.set(__self__, "deployment_id", deployment_id)
|
4924
|
+
pulumi.set(__self__, "display_name", display_name)
|
4925
|
+
pulumi.set(__self__, "fault_domain", fault_domain)
|
4926
|
+
pulumi.set(__self__, "peer_role", peer_role)
|
4927
|
+
pulumi.set(__self__, "peer_type", peer_type)
|
4928
|
+
pulumi.set(__self__, "region", region)
|
4929
|
+
pulumi.set(__self__, "state", state)
|
4930
|
+
pulumi.set(__self__, "time_created", time_created)
|
4931
|
+
pulumi.set(__self__, "time_role_changed", time_role_changed)
|
4932
|
+
pulumi.set(__self__, "time_updated", time_updated)
|
4933
|
+
|
4934
|
+
@property
|
4935
|
+
@pulumi.getter(name="availabilityDomain")
|
4936
|
+
def availability_domain(self) -> builtins.str:
|
4937
|
+
"""
|
4938
|
+
The availability domain of a placement.
|
4939
|
+
"""
|
4940
|
+
return pulumi.get(self, "availability_domain")
|
4941
|
+
|
4942
|
+
@property
|
4943
|
+
@pulumi.getter(name="deploymentId")
|
4944
|
+
def deployment_id(self) -> builtins.str:
|
4945
|
+
"""
|
4946
|
+
A unique Deployment identifier.
|
4947
|
+
"""
|
4948
|
+
return pulumi.get(self, "deployment_id")
|
4949
|
+
|
4950
|
+
@property
|
4951
|
+
@pulumi.getter(name="displayName")
|
4952
|
+
def display_name(self) -> builtins.str:
|
4953
|
+
"""
|
4954
|
+
A filter to return only the resources that match the entire 'displayName' given.
|
4955
|
+
"""
|
4956
|
+
return pulumi.get(self, "display_name")
|
4957
|
+
|
4958
|
+
@property
|
4959
|
+
@pulumi.getter(name="faultDomain")
|
4960
|
+
def fault_domain(self) -> builtins.str:
|
4961
|
+
"""
|
4962
|
+
The fault domain of a placement.
|
4963
|
+
"""
|
4964
|
+
return pulumi.get(self, "fault_domain")
|
4965
|
+
|
4966
|
+
@property
|
4967
|
+
@pulumi.getter(name="peerRole")
|
4968
|
+
def peer_role(self) -> builtins.str:
|
4969
|
+
"""
|
4970
|
+
The type of the deployment role.
|
4971
|
+
"""
|
4972
|
+
return pulumi.get(self, "peer_role")
|
4973
|
+
|
4974
|
+
@property
|
4975
|
+
@pulumi.getter(name="peerType")
|
4976
|
+
def peer_type(self) -> builtins.str:
|
4977
|
+
"""
|
4978
|
+
The type of the deployment peer.
|
4979
|
+
"""
|
4980
|
+
return pulumi.get(self, "peer_type")
|
4981
|
+
|
4982
|
+
@property
|
4983
|
+
@pulumi.getter
|
4984
|
+
def region(self) -> builtins.str:
|
4985
|
+
"""
|
4986
|
+
The name of the region. e.g.: us-ashburn-1 If the region is not provided, backend will default to the default region.
|
4987
|
+
"""
|
4988
|
+
return pulumi.get(self, "region")
|
4989
|
+
|
4990
|
+
@property
|
4991
|
+
@pulumi.getter
|
4992
|
+
def state(self) -> builtins.str:
|
4993
|
+
"""
|
4994
|
+
A filter to return only the resources that match the 'lifecycleState' given.
|
4995
|
+
"""
|
4996
|
+
return pulumi.get(self, "state")
|
4997
|
+
|
4998
|
+
@property
|
4999
|
+
@pulumi.getter(name="timeCreated")
|
5000
|
+
def time_created(self) -> builtins.str:
|
5001
|
+
"""
|
5002
|
+
The time the resource was created. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
|
5003
|
+
"""
|
5004
|
+
return pulumi.get(self, "time_created")
|
5005
|
+
|
5006
|
+
@property
|
5007
|
+
@pulumi.getter(name="timeRoleChanged")
|
5008
|
+
def time_role_changed(self) -> builtins.str:
|
5009
|
+
"""
|
5010
|
+
The time of the last role change. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
|
5011
|
+
"""
|
5012
|
+
return pulumi.get(self, "time_role_changed")
|
5013
|
+
|
5014
|
+
@property
|
5015
|
+
@pulumi.getter(name="timeUpdated")
|
5016
|
+
def time_updated(self) -> builtins.str:
|
5017
|
+
"""
|
5018
|
+
The time the resource was last updated. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
|
5019
|
+
"""
|
5020
|
+
return pulumi.get(self, "time_updated")
|
5021
|
+
|
5022
|
+
|
5023
|
+
@pulumi.output_type
|
5024
|
+
class GetDeploymentPeersFilterResult(dict):
|
5025
|
+
def __init__(__self__, *,
|
5026
|
+
name: builtins.str,
|
5027
|
+
values: Sequence[builtins.str],
|
5028
|
+
regex: Optional[builtins.bool] = None):
|
5029
|
+
pulumi.set(__self__, "name", name)
|
5030
|
+
pulumi.set(__self__, "values", values)
|
5031
|
+
if regex is not None:
|
5032
|
+
pulumi.set(__self__, "regex", regex)
|
5033
|
+
|
5034
|
+
@property
|
5035
|
+
@pulumi.getter
|
5036
|
+
def name(self) -> builtins.str:
|
5037
|
+
return pulumi.get(self, "name")
|
5038
|
+
|
5039
|
+
@property
|
5040
|
+
@pulumi.getter
|
5041
|
+
def values(self) -> Sequence[builtins.str]:
|
5042
|
+
return pulumi.get(self, "values")
|
5043
|
+
|
5044
|
+
@property
|
5045
|
+
@pulumi.getter
|
5046
|
+
def regex(self) -> Optional[builtins.bool]:
|
5047
|
+
return pulumi.get(self, "regex")
|
5048
|
+
|
5049
|
+
|
5050
|
+
@pulumi.output_type
|
5051
|
+
class GetDeploymentPlacementResult(dict):
|
5052
|
+
def __init__(__self__, *,
|
5053
|
+
availability_domain: builtins.str,
|
5054
|
+
fault_domain: builtins.str):
|
5055
|
+
"""
|
5056
|
+
:param builtins.str availability_domain: The availability domain of a placement.
|
5057
|
+
:param builtins.str fault_domain: The fault domain of a placement.
|
5058
|
+
"""
|
5059
|
+
pulumi.set(__self__, "availability_domain", availability_domain)
|
5060
|
+
pulumi.set(__self__, "fault_domain", fault_domain)
|
5061
|
+
|
5062
|
+
@property
|
5063
|
+
@pulumi.getter(name="availabilityDomain")
|
5064
|
+
def availability_domain(self) -> builtins.str:
|
5065
|
+
"""
|
5066
|
+
The availability domain of a placement.
|
5067
|
+
"""
|
5068
|
+
return pulumi.get(self, "availability_domain")
|
5069
|
+
|
5070
|
+
@property
|
5071
|
+
@pulumi.getter(name="faultDomain")
|
5072
|
+
def fault_domain(self) -> builtins.str:
|
5073
|
+
"""
|
5074
|
+
The fault domain of a placement.
|
5075
|
+
"""
|
5076
|
+
return pulumi.get(self, "fault_domain")
|
5077
|
+
|
5078
|
+
|
4821
5079
|
@pulumi.output_type
|
4822
5080
|
class GetDeploymentTypeItemResult(dict):
|
4823
5081
|
def __init__(__self__, *,
|
@@ -4919,6 +5177,7 @@ class GetDeploymentTypesDeploymentTypeCollectionItemResult(dict):
|
|
4919
5177
|
display_name: builtins.str,
|
4920
5178
|
ogg_version: builtins.str,
|
4921
5179
|
source_technologies: Sequence[builtins.str],
|
5180
|
+
supported_capabilities: Sequence[builtins.str],
|
4922
5181
|
supported_technologies_url: builtins.str,
|
4923
5182
|
target_technologies: Sequence[builtins.str]):
|
4924
5183
|
"""
|
@@ -4929,6 +5188,7 @@ class GetDeploymentTypesDeploymentTypeCollectionItemResult(dict):
|
|
4929
5188
|
:param builtins.str display_name: A filter to return only the resources that match the entire 'displayName' given.
|
4930
5189
|
:param builtins.str ogg_version: Allows to query by a specific GoldenGate version.
|
4931
5190
|
:param Sequence[builtins.str] source_technologies: List of the supported technologies generally. The value is a freeform text string generally consisting of a description of the technology and optionally the speific version(s) support. For example, [ "Oracle Database 19c", "Oracle Exadata", "OCI Streaming" ]
|
5191
|
+
:param Sequence[builtins.str] supported_capabilities: Specifies supported capabilities or features by a deployment type .
|
4932
5192
|
:param builtins.str supported_technologies_url: The URL to the webpage listing the supported technologies.
|
4933
5193
|
:param Sequence[builtins.str] target_technologies: List of the supported technologies generally. The value is a freeform text string generally consisting of a description of the technology and optionally the speific version(s) support. For example, [ "Oracle Database 19c", "Oracle Exadata", "OCI Streaming" ]
|
4934
5194
|
"""
|
@@ -4939,6 +5199,7 @@ class GetDeploymentTypesDeploymentTypeCollectionItemResult(dict):
|
|
4939
5199
|
pulumi.set(__self__, "display_name", display_name)
|
4940
5200
|
pulumi.set(__self__, "ogg_version", ogg_version)
|
4941
5201
|
pulumi.set(__self__, "source_technologies", source_technologies)
|
5202
|
+
pulumi.set(__self__, "supported_capabilities", supported_capabilities)
|
4942
5203
|
pulumi.set(__self__, "supported_technologies_url", supported_technologies_url)
|
4943
5204
|
pulumi.set(__self__, "target_technologies", target_technologies)
|
4944
5205
|
|
@@ -4998,6 +5259,14 @@ class GetDeploymentTypesDeploymentTypeCollectionItemResult(dict):
|
|
4998
5259
|
"""
|
4999
5260
|
return pulumi.get(self, "source_technologies")
|
5000
5261
|
|
5262
|
+
@property
|
5263
|
+
@pulumi.getter(name="supportedCapabilities")
|
5264
|
+
def supported_capabilities(self) -> Sequence[builtins.str]:
|
5265
|
+
"""
|
5266
|
+
Specifies supported capabilities or features by a deployment type .
|
5267
|
+
"""
|
5268
|
+
return pulumi.get(self, "supported_capabilities")
|
5269
|
+
|
5001
5270
|
@property
|
5002
5271
|
@pulumi.getter(name="supportedTechnologiesUrl")
|
5003
5272
|
def supported_technologies_url(self) -> builtins.str:
|
@@ -5544,6 +5813,7 @@ class GetDeploymentsDeploymentCollectionResult(dict):
|
|
5544
5813
|
@pulumi.output_type
|
5545
5814
|
class GetDeploymentsDeploymentCollectionItemResult(dict):
|
5546
5815
|
def __init__(__self__, *,
|
5816
|
+
availability_domain: builtins.str,
|
5547
5817
|
backup_schedules: Sequence['outputs.GetDeploymentsDeploymentCollectionItemBackupScheduleResult'],
|
5548
5818
|
category: builtins.str,
|
5549
5819
|
compartment_id: builtins.str,
|
@@ -5551,11 +5821,13 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
|
|
5551
5821
|
defined_tags: Mapping[str, builtins.str],
|
5552
5822
|
deployment_backup_id: builtins.str,
|
5553
5823
|
deployment_diagnostic_datas: Sequence['outputs.GetDeploymentsDeploymentCollectionItemDeploymentDiagnosticDataResult'],
|
5824
|
+
deployment_role: builtins.str,
|
5554
5825
|
deployment_type: builtins.str,
|
5555
5826
|
deployment_url: builtins.str,
|
5556
5827
|
description: builtins.str,
|
5557
5828
|
display_name: builtins.str,
|
5558
5829
|
environment_type: builtins.str,
|
5830
|
+
fault_domain: builtins.str,
|
5559
5831
|
fqdn: builtins.str,
|
5560
5832
|
freeform_tags: Mapping[str, builtins.str],
|
5561
5833
|
id: builtins.str,
|
@@ -5578,8 +5850,10 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
|
|
5578
5850
|
next_maintenance_description: builtins.str,
|
5579
5851
|
nsg_ids: Sequence[builtins.str],
|
5580
5852
|
ogg_datas: Sequence['outputs.GetDeploymentsDeploymentCollectionItemOggDataResult'],
|
5853
|
+
placements: Sequence['outputs.GetDeploymentsDeploymentCollectionItemPlacementResult'],
|
5581
5854
|
private_ip_address: builtins.str,
|
5582
5855
|
public_ip_address: builtins.str,
|
5856
|
+
source_deployment_id: builtins.str,
|
5583
5857
|
state: builtins.str,
|
5584
5858
|
storage_utilization_in_bytes: builtins.str,
|
5585
5859
|
subnet_id: builtins.str,
|
@@ -5589,9 +5863,11 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
|
|
5589
5863
|
time_next_backup_scheduled: builtins.str,
|
5590
5864
|
time_of_next_maintenance: builtins.str,
|
5591
5865
|
time_ogg_version_supported_until: builtins.str,
|
5866
|
+
time_role_changed: builtins.str,
|
5592
5867
|
time_updated: builtins.str,
|
5593
5868
|
time_upgrade_required: builtins.str):
|
5594
5869
|
"""
|
5870
|
+
:param builtins.str availability_domain: The availability domain of a placement.
|
5595
5871
|
:param Sequence['GetDeploymentsDeploymentCollectionItemBackupScheduleArgs'] backup_schedules: Defines the schedule of the deployment backup.
|
5596
5872
|
:param builtins.str category: The deployment category defines the broad separation of the deployment type into three categories. Currently the separation is 'DATA_REPLICATION', 'STREAM_ANALYTICS' and 'DATA_TRANSFORMS'.
|
5597
5873
|
:param builtins.str compartment_id: The OCID of the compartment that contains the work request. Work requests should be scoped to the same compartment as the resource the work request affects. If the work request concerns multiple resources, and those resources are not in the same compartment, it is up to the service team to pick the primary resource whose compartment should be used.
|
@@ -5599,11 +5875,13 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
|
|
5599
5875
|
:param Mapping[str, builtins.str] defined_tags: Tags defined for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
5600
5876
|
:param builtins.str deployment_backup_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup being referenced.
|
5601
5877
|
:param Sequence['GetDeploymentsDeploymentCollectionItemDeploymentDiagnosticDataArgs'] deployment_diagnostic_datas: Information regarding the deployment diagnostic collection
|
5878
|
+
:param builtins.str deployment_role: The type of the deployment role.
|
5602
5879
|
:param builtins.str deployment_type: The type of deployment, which can be any one of the Allowed values. NOTE: Use of the value 'OGG' is maintained for backward compatibility purposes. Its use is discouraged in favor of 'DATABASE_ORACLE'.
|
5603
5880
|
:param builtins.str deployment_url: The URL of a resource.
|
5604
5881
|
:param builtins.str description: Metadata about this specific object.
|
5605
5882
|
:param builtins.str display_name: A filter to return only the resources that match the entire 'displayName' given.
|
5606
5883
|
:param builtins.str environment_type: Specifies whether the deployment is used in a production or development/testing environment.
|
5884
|
+
:param builtins.str fault_domain: The fault domain of a placement.
|
5607
5885
|
:param builtins.str fqdn: A filter to return only the resources that match the 'fqdn' given.
|
5608
5886
|
:param Mapping[str, builtins.str] freeform_tags: A simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
5609
5887
|
:param builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the deployment being referenced.
|
@@ -5625,8 +5903,10 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
|
|
5625
5903
|
:param builtins.str next_maintenance_description: Description of the next maintenance.
|
5626
5904
|
:param Sequence[builtins.str] nsg_ids: An array of Network Security Group OCIDs used to define network access for either Deployments or Connections.
|
5627
5905
|
:param Sequence['GetDeploymentsDeploymentCollectionItemOggDataArgs'] ogg_datas: Deployment Data for an OggDeployment
|
5906
|
+
:param Sequence['GetDeploymentsDeploymentCollectionItemPlacementArgs'] placements: An array of local peers of deployment
|
5628
5907
|
:param builtins.str private_ip_address: The private IP address in the customer's VCN representing the access point for the associated endpoint service in the GoldenGate service VCN.
|
5629
5908
|
:param builtins.str public_ip_address: The public IP address representing the access point for the Deployment.
|
5909
|
+
:param builtins.str source_deployment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the deployment being referenced.
|
5630
5910
|
:param builtins.str state: A filter to return only the resources that match the 'lifecycleState' given.
|
5631
5911
|
:param builtins.str storage_utilization_in_bytes: The amount of storage being utilized (in bytes)
|
5632
5912
|
:param builtins.str subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet of the deployment's private endpoint. The subnet must be a private subnet. For backward compatibility, public subnets are allowed until May 31 2025, after which the private subnet will be enforced.
|
@@ -5636,9 +5916,11 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
|
|
5636
5916
|
:param builtins.str time_next_backup_scheduled: The timestamp of next deployment backup scheduled. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2024-10-26T20:19:29.600Z`.
|
5637
5917
|
:param builtins.str time_of_next_maintenance: The time of next maintenance schedule. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
|
5638
5918
|
:param builtins.str time_ogg_version_supported_until: The time until OGG version is supported. After this date has passed OGG version will not be available anymore. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
|
5919
|
+
:param builtins.str time_role_changed: The time of the last role change. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
|
5639
5920
|
:param builtins.str time_updated: The time the resource was last updated. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
|
5640
5921
|
:param builtins.str time_upgrade_required: Note: Deprecated: Use timeOfNextMaintenance instead, or related upgrade records to check, when deployment will be forced to upgrade to a newer version. Old description: The date the existing version in use will no longer be considered as usable and an upgrade will be required. This date is typically 6 months after the version was released for use by GGS. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
|
5641
5922
|
"""
|
5923
|
+
pulumi.set(__self__, "availability_domain", availability_domain)
|
5642
5924
|
pulumi.set(__self__, "backup_schedules", backup_schedules)
|
5643
5925
|
pulumi.set(__self__, "category", category)
|
5644
5926
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
@@ -5646,11 +5928,13 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
|
|
5646
5928
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
5647
5929
|
pulumi.set(__self__, "deployment_backup_id", deployment_backup_id)
|
5648
5930
|
pulumi.set(__self__, "deployment_diagnostic_datas", deployment_diagnostic_datas)
|
5931
|
+
pulumi.set(__self__, "deployment_role", deployment_role)
|
5649
5932
|
pulumi.set(__self__, "deployment_type", deployment_type)
|
5650
5933
|
pulumi.set(__self__, "deployment_url", deployment_url)
|
5651
5934
|
pulumi.set(__self__, "description", description)
|
5652
5935
|
pulumi.set(__self__, "display_name", display_name)
|
5653
5936
|
pulumi.set(__self__, "environment_type", environment_type)
|
5937
|
+
pulumi.set(__self__, "fault_domain", fault_domain)
|
5654
5938
|
pulumi.set(__self__, "fqdn", fqdn)
|
5655
5939
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
5656
5940
|
pulumi.set(__self__, "id", id)
|
@@ -5673,8 +5957,10 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
|
|
5673
5957
|
pulumi.set(__self__, "next_maintenance_description", next_maintenance_description)
|
5674
5958
|
pulumi.set(__self__, "nsg_ids", nsg_ids)
|
5675
5959
|
pulumi.set(__self__, "ogg_datas", ogg_datas)
|
5960
|
+
pulumi.set(__self__, "placements", placements)
|
5676
5961
|
pulumi.set(__self__, "private_ip_address", private_ip_address)
|
5677
5962
|
pulumi.set(__self__, "public_ip_address", public_ip_address)
|
5963
|
+
pulumi.set(__self__, "source_deployment_id", source_deployment_id)
|
5678
5964
|
pulumi.set(__self__, "state", state)
|
5679
5965
|
pulumi.set(__self__, "storage_utilization_in_bytes", storage_utilization_in_bytes)
|
5680
5966
|
pulumi.set(__self__, "subnet_id", subnet_id)
|
@@ -5684,9 +5970,18 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
|
|
5684
5970
|
pulumi.set(__self__, "time_next_backup_scheduled", time_next_backup_scheduled)
|
5685
5971
|
pulumi.set(__self__, "time_of_next_maintenance", time_of_next_maintenance)
|
5686
5972
|
pulumi.set(__self__, "time_ogg_version_supported_until", time_ogg_version_supported_until)
|
5973
|
+
pulumi.set(__self__, "time_role_changed", time_role_changed)
|
5687
5974
|
pulumi.set(__self__, "time_updated", time_updated)
|
5688
5975
|
pulumi.set(__self__, "time_upgrade_required", time_upgrade_required)
|
5689
5976
|
|
5977
|
+
@property
|
5978
|
+
@pulumi.getter(name="availabilityDomain")
|
5979
|
+
def availability_domain(self) -> builtins.str:
|
5980
|
+
"""
|
5981
|
+
The availability domain of a placement.
|
5982
|
+
"""
|
5983
|
+
return pulumi.get(self, "availability_domain")
|
5984
|
+
|
5690
5985
|
@property
|
5691
5986
|
@pulumi.getter(name="backupSchedules")
|
5692
5987
|
def backup_schedules(self) -> Sequence['outputs.GetDeploymentsDeploymentCollectionItemBackupScheduleResult']:
|
@@ -5743,6 +6038,14 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
|
|
5743
6038
|
"""
|
5744
6039
|
return pulumi.get(self, "deployment_diagnostic_datas")
|
5745
6040
|
|
6041
|
+
@property
|
6042
|
+
@pulumi.getter(name="deploymentRole")
|
6043
|
+
def deployment_role(self) -> builtins.str:
|
6044
|
+
"""
|
6045
|
+
The type of the deployment role.
|
6046
|
+
"""
|
6047
|
+
return pulumi.get(self, "deployment_role")
|
6048
|
+
|
5746
6049
|
@property
|
5747
6050
|
@pulumi.getter(name="deploymentType")
|
5748
6051
|
def deployment_type(self) -> builtins.str:
|
@@ -5783,6 +6086,14 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
|
|
5783
6086
|
"""
|
5784
6087
|
return pulumi.get(self, "environment_type")
|
5785
6088
|
|
6089
|
+
@property
|
6090
|
+
@pulumi.getter(name="faultDomain")
|
6091
|
+
def fault_domain(self) -> builtins.str:
|
6092
|
+
"""
|
6093
|
+
The fault domain of a placement.
|
6094
|
+
"""
|
6095
|
+
return pulumi.get(self, "fault_domain")
|
6096
|
+
|
5786
6097
|
@property
|
5787
6098
|
@pulumi.getter
|
5788
6099
|
def fqdn(self) -> builtins.str:
|
@@ -5956,6 +6267,14 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
|
|
5956
6267
|
"""
|
5957
6268
|
return pulumi.get(self, "ogg_datas")
|
5958
6269
|
|
6270
|
+
@property
|
6271
|
+
@pulumi.getter
|
6272
|
+
def placements(self) -> Sequence['outputs.GetDeploymentsDeploymentCollectionItemPlacementResult']:
|
6273
|
+
"""
|
6274
|
+
An array of local peers of deployment
|
6275
|
+
"""
|
6276
|
+
return pulumi.get(self, "placements")
|
6277
|
+
|
5959
6278
|
@property
|
5960
6279
|
@pulumi.getter(name="privateIpAddress")
|
5961
6280
|
def private_ip_address(self) -> builtins.str:
|
@@ -5972,6 +6291,14 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
|
|
5972
6291
|
"""
|
5973
6292
|
return pulumi.get(self, "public_ip_address")
|
5974
6293
|
|
6294
|
+
@property
|
6295
|
+
@pulumi.getter(name="sourceDeploymentId")
|
6296
|
+
def source_deployment_id(self) -> builtins.str:
|
6297
|
+
"""
|
6298
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the deployment being referenced.
|
6299
|
+
"""
|
6300
|
+
return pulumi.get(self, "source_deployment_id")
|
6301
|
+
|
5975
6302
|
@property
|
5976
6303
|
@pulumi.getter
|
5977
6304
|
def state(self) -> builtins.str:
|
@@ -6044,6 +6371,14 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
|
|
6044
6371
|
"""
|
6045
6372
|
return pulumi.get(self, "time_ogg_version_supported_until")
|
6046
6373
|
|
6374
|
+
@property
|
6375
|
+
@pulumi.getter(name="timeRoleChanged")
|
6376
|
+
def time_role_changed(self) -> builtins.str:
|
6377
|
+
"""
|
6378
|
+
The time of the last role change. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
|
6379
|
+
"""
|
6380
|
+
return pulumi.get(self, "time_role_changed")
|
6381
|
+
|
6047
6382
|
@property
|
6048
6383
|
@pulumi.getter(name="timeUpdated")
|
6049
6384
|
def time_updated(self) -> builtins.str:
|
@@ -6527,6 +6862,35 @@ class GetDeploymentsDeploymentCollectionItemOggDataGroupToRolesMappingResult(dic
|
|
6527
6862
|
return pulumi.get(self, "user_group_id")
|
6528
6863
|
|
6529
6864
|
|
6865
|
+
@pulumi.output_type
|
6866
|
+
class GetDeploymentsDeploymentCollectionItemPlacementResult(dict):
|
6867
|
+
def __init__(__self__, *,
|
6868
|
+
availability_domain: builtins.str,
|
6869
|
+
fault_domain: builtins.str):
|
6870
|
+
"""
|
6871
|
+
:param builtins.str availability_domain: The availability domain of a placement.
|
6872
|
+
:param builtins.str fault_domain: The fault domain of a placement.
|
6873
|
+
"""
|
6874
|
+
pulumi.set(__self__, "availability_domain", availability_domain)
|
6875
|
+
pulumi.set(__self__, "fault_domain", fault_domain)
|
6876
|
+
|
6877
|
+
@property
|
6878
|
+
@pulumi.getter(name="availabilityDomain")
|
6879
|
+
def availability_domain(self) -> builtins.str:
|
6880
|
+
"""
|
6881
|
+
The availability domain of a placement.
|
6882
|
+
"""
|
6883
|
+
return pulumi.get(self, "availability_domain")
|
6884
|
+
|
6885
|
+
@property
|
6886
|
+
@pulumi.getter(name="faultDomain")
|
6887
|
+
def fault_domain(self) -> builtins.str:
|
6888
|
+
"""
|
6889
|
+
The fault domain of a placement.
|
6890
|
+
"""
|
6891
|
+
return pulumi.get(self, "fault_domain")
|
6892
|
+
|
6893
|
+
|
6530
6894
|
@pulumi.output_type
|
6531
6895
|
class GetDeploymentsFilterResult(dict):
|
6532
6896
|
def __init__(__self__, *,
|