pulumi-oci 2.31.0a1744784817__py3-none-any.whl → 2.32.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/core/get_volume.py +15 -1
- pulumi_oci/core/instance.py +7 -7
- pulumi_oci/core/instance_configuration.py +0 -750
- pulumi_oci/core/outputs.py +11 -0
- pulumi_oci/core/volume.py +49 -0
- pulumi_oci/dblm/__init__.py +2 -0
- pulumi_oci/dblm/_inputs.py +49 -0
- pulumi_oci/dblm/get_patch_management.py +291 -0
- pulumi_oci/dblm/get_patch_management_databases.py +306 -0
- pulumi_oci/dblm/outputs.py +898 -0
- 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/visualbuilder/_inputs.py +119 -13
- pulumi_oci/visualbuilder/get_vb_instance.py +1 -1
- pulumi_oci/visualbuilder/outputs.py +201 -12
- pulumi_oci/visualbuilder/vb_instance.py +0 -70
- {pulumi_oci-2.31.0a1744784817.dist-info → pulumi_oci-2.32.0.dist-info}/METADATA +1 -1
- {pulumi_oci-2.31.0a1744784817.dist-info → pulumi_oci-2.32.0.dist-info}/RECORD +30 -27
- {pulumi_oci-2.31.0a1744784817.dist-info → pulumi_oci-2.32.0.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.31.0a1744784817.dist-info → pulumi_oci-2.32.0.dist-info}/top_level.txt +0 -0
@@ -24,6 +24,7 @@ from .get_deployment_backups import *
|
|
24
24
|
from .get_deployment_certificate import *
|
25
25
|
from .get_deployment_certificates import *
|
26
26
|
from .get_deployment_environments import *
|
27
|
+
from .get_deployment_peers import *
|
27
28
|
from .get_deployment_type import *
|
28
29
|
from .get_deployment_types import *
|
29
30
|
from .get_deployment_upgrade import *
|
pulumi_oci/goldengate/_inputs.py
CHANGED
@@ -42,6 +42,8 @@ __all__ = [
|
|
42
42
|
'DeploymentOggDataArgsDict',
|
43
43
|
'DeploymentOggDataGroupToRolesMappingArgs',
|
44
44
|
'DeploymentOggDataGroupToRolesMappingArgsDict',
|
45
|
+
'DeploymentPlacementArgs',
|
46
|
+
'DeploymentPlacementArgsDict',
|
45
47
|
'PipelineLockArgs',
|
46
48
|
'PipelineLockArgsDict',
|
47
49
|
'PipelineMappingRuleArgs',
|
@@ -70,6 +72,8 @@ __all__ = [
|
|
70
72
|
'GetDeploymentCertificatesFilterArgsDict',
|
71
73
|
'GetDeploymentEnvironmentsFilterArgs',
|
72
74
|
'GetDeploymentEnvironmentsFilterArgsDict',
|
75
|
+
'GetDeploymentPeersFilterArgs',
|
76
|
+
'GetDeploymentPeersFilterArgsDict',
|
73
77
|
'GetDeploymentTypesFilterArgs',
|
74
78
|
'GetDeploymentTypesFilterArgsDict',
|
75
79
|
'GetDeploymentUpgradesFilterArgs',
|
@@ -1287,6 +1291,58 @@ class DeploymentOggDataGroupToRolesMappingArgs:
|
|
1287
1291
|
pulumi.set(self, "user_group_id", value)
|
1288
1292
|
|
1289
1293
|
|
1294
|
+
if not MYPY:
|
1295
|
+
class DeploymentPlacementArgsDict(TypedDict):
|
1296
|
+
availability_domain: NotRequired[pulumi.Input[builtins.str]]
|
1297
|
+
"""
|
1298
|
+
(Updatable) The availability domain of a placement.
|
1299
|
+
"""
|
1300
|
+
fault_domain: NotRequired[pulumi.Input[builtins.str]]
|
1301
|
+
"""
|
1302
|
+
(Updatable) The fault domain of a placement.
|
1303
|
+
"""
|
1304
|
+
elif False:
|
1305
|
+
DeploymentPlacementArgsDict: TypeAlias = Mapping[str, Any]
|
1306
|
+
|
1307
|
+
@pulumi.input_type
|
1308
|
+
class DeploymentPlacementArgs:
|
1309
|
+
def __init__(__self__, *,
|
1310
|
+
availability_domain: Optional[pulumi.Input[builtins.str]] = None,
|
1311
|
+
fault_domain: Optional[pulumi.Input[builtins.str]] = None):
|
1312
|
+
"""
|
1313
|
+
:param pulumi.Input[builtins.str] availability_domain: (Updatable) The availability domain of a placement.
|
1314
|
+
:param pulumi.Input[builtins.str] fault_domain: (Updatable) The fault domain of a placement.
|
1315
|
+
"""
|
1316
|
+
if availability_domain is not None:
|
1317
|
+
pulumi.set(__self__, "availability_domain", availability_domain)
|
1318
|
+
if fault_domain is not None:
|
1319
|
+
pulumi.set(__self__, "fault_domain", fault_domain)
|
1320
|
+
|
1321
|
+
@property
|
1322
|
+
@pulumi.getter(name="availabilityDomain")
|
1323
|
+
def availability_domain(self) -> Optional[pulumi.Input[builtins.str]]:
|
1324
|
+
"""
|
1325
|
+
(Updatable) The availability domain of a placement.
|
1326
|
+
"""
|
1327
|
+
return pulumi.get(self, "availability_domain")
|
1328
|
+
|
1329
|
+
@availability_domain.setter
|
1330
|
+
def availability_domain(self, value: Optional[pulumi.Input[builtins.str]]):
|
1331
|
+
pulumi.set(self, "availability_domain", value)
|
1332
|
+
|
1333
|
+
@property
|
1334
|
+
@pulumi.getter(name="faultDomain")
|
1335
|
+
def fault_domain(self) -> Optional[pulumi.Input[builtins.str]]:
|
1336
|
+
"""
|
1337
|
+
(Updatable) The fault domain of a placement.
|
1338
|
+
"""
|
1339
|
+
return pulumi.get(self, "fault_domain")
|
1340
|
+
|
1341
|
+
@fault_domain.setter
|
1342
|
+
def fault_domain(self, value: Optional[pulumi.Input[builtins.str]]):
|
1343
|
+
pulumi.set(self, "fault_domain", value)
|
1344
|
+
|
1345
|
+
|
1290
1346
|
if not MYPY:
|
1291
1347
|
class PipelineLockArgsDict(TypedDict):
|
1292
1348
|
type: pulumi.Input[builtins.str]
|
@@ -2107,6 +2163,53 @@ class GetDeploymentEnvironmentsFilterArgs:
|
|
2107
2163
|
pulumi.set(self, "regex", value)
|
2108
2164
|
|
2109
2165
|
|
2166
|
+
if not MYPY:
|
2167
|
+
class GetDeploymentPeersFilterArgsDict(TypedDict):
|
2168
|
+
name: builtins.str
|
2169
|
+
values: Sequence[builtins.str]
|
2170
|
+
regex: NotRequired[builtins.bool]
|
2171
|
+
elif False:
|
2172
|
+
GetDeploymentPeersFilterArgsDict: TypeAlias = Mapping[str, Any]
|
2173
|
+
|
2174
|
+
@pulumi.input_type
|
2175
|
+
class GetDeploymentPeersFilterArgs:
|
2176
|
+
def __init__(__self__, *,
|
2177
|
+
name: builtins.str,
|
2178
|
+
values: Sequence[builtins.str],
|
2179
|
+
regex: Optional[builtins.bool] = None):
|
2180
|
+
pulumi.set(__self__, "name", name)
|
2181
|
+
pulumi.set(__self__, "values", values)
|
2182
|
+
if regex is not None:
|
2183
|
+
pulumi.set(__self__, "regex", regex)
|
2184
|
+
|
2185
|
+
@property
|
2186
|
+
@pulumi.getter
|
2187
|
+
def name(self) -> builtins.str:
|
2188
|
+
return pulumi.get(self, "name")
|
2189
|
+
|
2190
|
+
@name.setter
|
2191
|
+
def name(self, value: builtins.str):
|
2192
|
+
pulumi.set(self, "name", value)
|
2193
|
+
|
2194
|
+
@property
|
2195
|
+
@pulumi.getter
|
2196
|
+
def values(self) -> Sequence[builtins.str]:
|
2197
|
+
return pulumi.get(self, "values")
|
2198
|
+
|
2199
|
+
@values.setter
|
2200
|
+
def values(self, value: Sequence[builtins.str]):
|
2201
|
+
pulumi.set(self, "values", value)
|
2202
|
+
|
2203
|
+
@property
|
2204
|
+
@pulumi.getter
|
2205
|
+
def regex(self) -> Optional[builtins.bool]:
|
2206
|
+
return pulumi.get(self, "regex")
|
2207
|
+
|
2208
|
+
@regex.setter
|
2209
|
+
def regex(self, value: Optional[builtins.bool]):
|
2210
|
+
pulumi.set(self, "regex", value)
|
2211
|
+
|
2212
|
+
|
2110
2213
|
if not MYPY:
|
2111
2214
|
class GetDeploymentTypesFilterArgsDict(TypedDict):
|
2112
2215
|
name: builtins.str
|