pulumi-oci 2.30.0a1744439401__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/core/_inputs.py +21 -21
- pulumi_oci/core/get_ipv6.py +32 -2
- pulumi_oci/core/get_private_ip.py +33 -3
- pulumi_oci/core/get_private_ips.py +51 -1
- pulumi_oci/core/get_vnic.py +4 -1
- pulumi_oci/core/ipv6.py +155 -44
- pulumi_oci/core/outputs.py +71 -17
- pulumi_oci/core/private_ip.py +124 -20
- pulumi_oci/functions/invoke_function.py +52 -3
- pulumi_oci/goldengate/__init__.py +1 -0
- pulumi_oci/goldengate/_inputs.py +238 -1
- 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/get_pipeline.py +15 -1
- pulumi_oci/goldengate/get_pipeline_running_processes.py +2 -2
- pulumi_oci/goldengate/outputs.py +627 -3
- pulumi_oci/goldengate/pipeline.py +28 -0
- pulumi_oci/kms/_inputs.py +48 -0
- pulumi_oci/kms/outputs.py +48 -0
- pulumi_oci/kms/vault_verification.py +37 -1
- pulumi_oci/loadbalancer/load_balancer.py +49 -0
- pulumi_oci/loadbalancer/outputs.py +11 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/sch/_inputs.py +223 -1
- pulumi_oci/sch/outputs.py +472 -31
- {pulumi_oci-2.30.0a1744439401.dist-info → pulumi_oci-2.31.0.dist-info}/METADATA +1 -1
- {pulumi_oci-2.30.0a1744439401.dist-info → pulumi_oci-2.31.0.dist-info}/RECORD +33 -32
- {pulumi_oci-2.30.0a1744439401.dist-info → pulumi_oci-2.31.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.30.0a1744439401.dist-info → pulumi_oci-2.31.0.dist-info}/top_level.txt +0 -0
pulumi_oci/goldengate/_inputs.py
CHANGED
@@ -42,10 +42,14 @@ __all__ = [
|
|
42
42
|
'DeploymentOggDataArgsDict',
|
43
43
|
'DeploymentOggDataGroupToRolesMappingArgs',
|
44
44
|
'DeploymentOggDataGroupToRolesMappingArgsDict',
|
45
|
+
'DeploymentPlacementArgs',
|
46
|
+
'DeploymentPlacementArgsDict',
|
45
47
|
'PipelineLockArgs',
|
46
48
|
'PipelineLockArgsDict',
|
47
49
|
'PipelineMappingRuleArgs',
|
48
50
|
'PipelineMappingRuleArgsDict',
|
51
|
+
'PipelinePipelineDiagnosticDataArgs',
|
52
|
+
'PipelinePipelineDiagnosticDataArgsDict',
|
49
53
|
'PipelineProcessOptionsArgs',
|
50
54
|
'PipelineProcessOptionsArgsDict',
|
51
55
|
'PipelineProcessOptionsInitialDataLoadArgs',
|
@@ -68,6 +72,8 @@ __all__ = [
|
|
68
72
|
'GetDeploymentCertificatesFilterArgsDict',
|
69
73
|
'GetDeploymentEnvironmentsFilterArgs',
|
70
74
|
'GetDeploymentEnvironmentsFilterArgsDict',
|
75
|
+
'GetDeploymentPeersFilterArgs',
|
76
|
+
'GetDeploymentPeersFilterArgsDict',
|
71
77
|
'GetDeploymentTypesFilterArgs',
|
72
78
|
'GetDeploymentTypesFilterArgsDict',
|
73
79
|
'GetDeploymentUpgradesFilterArgs',
|
@@ -1285,6 +1291,58 @@ class DeploymentOggDataGroupToRolesMappingArgs:
|
|
1285
1291
|
pulumi.set(self, "user_group_id", value)
|
1286
1292
|
|
1287
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
|
+
|
1288
1346
|
if not MYPY:
|
1289
1347
|
class PipelineLockArgsDict(TypedDict):
|
1290
1348
|
type: pulumi.Input[builtins.str]
|
@@ -1408,6 +1466,118 @@ class PipelineMappingRuleArgs:
|
|
1408
1466
|
pulumi.set(self, "target", value)
|
1409
1467
|
|
1410
1468
|
|
1469
|
+
if not MYPY:
|
1470
|
+
class PipelinePipelineDiagnosticDataArgsDict(TypedDict):
|
1471
|
+
bucket: NotRequired[pulumi.Input[builtins.str]]
|
1472
|
+
"""
|
1473
|
+
Name of the bucket where the object is to be uploaded in the object storage
|
1474
|
+
"""
|
1475
|
+
diagnostic_state: NotRequired[pulumi.Input[builtins.str]]
|
1476
|
+
"""
|
1477
|
+
The state of the pipeline diagnostics collection.
|
1478
|
+
"""
|
1479
|
+
namespace: NotRequired[pulumi.Input[builtins.str]]
|
1480
|
+
"""
|
1481
|
+
Name of namespace that serves as a container for all of your buckets
|
1482
|
+
"""
|
1483
|
+
object: NotRequired[pulumi.Input[builtins.str]]
|
1484
|
+
"""
|
1485
|
+
Name of the diagnostic collected and uploaded to object storage
|
1486
|
+
"""
|
1487
|
+
time_last_collected: NotRequired[pulumi.Input[builtins.str]]
|
1488
|
+
"""
|
1489
|
+
The date and time the diagnostic data was last collected for the pipeline. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2024-07-25T21:10:29.600Z`.
|
1490
|
+
"""
|
1491
|
+
elif False:
|
1492
|
+
PipelinePipelineDiagnosticDataArgsDict: TypeAlias = Mapping[str, Any]
|
1493
|
+
|
1494
|
+
@pulumi.input_type
|
1495
|
+
class PipelinePipelineDiagnosticDataArgs:
|
1496
|
+
def __init__(__self__, *,
|
1497
|
+
bucket: Optional[pulumi.Input[builtins.str]] = None,
|
1498
|
+
diagnostic_state: Optional[pulumi.Input[builtins.str]] = None,
|
1499
|
+
namespace: Optional[pulumi.Input[builtins.str]] = None,
|
1500
|
+
object: Optional[pulumi.Input[builtins.str]] = None,
|
1501
|
+
time_last_collected: Optional[pulumi.Input[builtins.str]] = None):
|
1502
|
+
"""
|
1503
|
+
:param pulumi.Input[builtins.str] bucket: Name of the bucket where the object is to be uploaded in the object storage
|
1504
|
+
:param pulumi.Input[builtins.str] diagnostic_state: The state of the pipeline diagnostics collection.
|
1505
|
+
:param pulumi.Input[builtins.str] namespace: Name of namespace that serves as a container for all of your buckets
|
1506
|
+
:param pulumi.Input[builtins.str] object: Name of the diagnostic collected and uploaded to object storage
|
1507
|
+
:param pulumi.Input[builtins.str] time_last_collected: The date and time the diagnostic data was last collected for the pipeline. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2024-07-25T21:10:29.600Z`.
|
1508
|
+
"""
|
1509
|
+
if bucket is not None:
|
1510
|
+
pulumi.set(__self__, "bucket", bucket)
|
1511
|
+
if diagnostic_state is not None:
|
1512
|
+
pulumi.set(__self__, "diagnostic_state", diagnostic_state)
|
1513
|
+
if namespace is not None:
|
1514
|
+
pulumi.set(__self__, "namespace", namespace)
|
1515
|
+
if object is not None:
|
1516
|
+
pulumi.set(__self__, "object", object)
|
1517
|
+
if time_last_collected is not None:
|
1518
|
+
pulumi.set(__self__, "time_last_collected", time_last_collected)
|
1519
|
+
|
1520
|
+
@property
|
1521
|
+
@pulumi.getter
|
1522
|
+
def bucket(self) -> Optional[pulumi.Input[builtins.str]]:
|
1523
|
+
"""
|
1524
|
+
Name of the bucket where the object is to be uploaded in the object storage
|
1525
|
+
"""
|
1526
|
+
return pulumi.get(self, "bucket")
|
1527
|
+
|
1528
|
+
@bucket.setter
|
1529
|
+
def bucket(self, value: Optional[pulumi.Input[builtins.str]]):
|
1530
|
+
pulumi.set(self, "bucket", value)
|
1531
|
+
|
1532
|
+
@property
|
1533
|
+
@pulumi.getter(name="diagnosticState")
|
1534
|
+
def diagnostic_state(self) -> Optional[pulumi.Input[builtins.str]]:
|
1535
|
+
"""
|
1536
|
+
The state of the pipeline diagnostics collection.
|
1537
|
+
"""
|
1538
|
+
return pulumi.get(self, "diagnostic_state")
|
1539
|
+
|
1540
|
+
@diagnostic_state.setter
|
1541
|
+
def diagnostic_state(self, value: Optional[pulumi.Input[builtins.str]]):
|
1542
|
+
pulumi.set(self, "diagnostic_state", value)
|
1543
|
+
|
1544
|
+
@property
|
1545
|
+
@pulumi.getter
|
1546
|
+
def namespace(self) -> Optional[pulumi.Input[builtins.str]]:
|
1547
|
+
"""
|
1548
|
+
Name of namespace that serves as a container for all of your buckets
|
1549
|
+
"""
|
1550
|
+
return pulumi.get(self, "namespace")
|
1551
|
+
|
1552
|
+
@namespace.setter
|
1553
|
+
def namespace(self, value: Optional[pulumi.Input[builtins.str]]):
|
1554
|
+
pulumi.set(self, "namespace", value)
|
1555
|
+
|
1556
|
+
@property
|
1557
|
+
@pulumi.getter
|
1558
|
+
def object(self) -> Optional[pulumi.Input[builtins.str]]:
|
1559
|
+
"""
|
1560
|
+
Name of the diagnostic collected and uploaded to object storage
|
1561
|
+
"""
|
1562
|
+
return pulumi.get(self, "object")
|
1563
|
+
|
1564
|
+
@object.setter
|
1565
|
+
def object(self, value: Optional[pulumi.Input[builtins.str]]):
|
1566
|
+
pulumi.set(self, "object", value)
|
1567
|
+
|
1568
|
+
@property
|
1569
|
+
@pulumi.getter(name="timeLastCollected")
|
1570
|
+
def time_last_collected(self) -> Optional[pulumi.Input[builtins.str]]:
|
1571
|
+
"""
|
1572
|
+
The date and time the diagnostic data was last collected for the pipeline. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2024-07-25T21:10:29.600Z`.
|
1573
|
+
"""
|
1574
|
+
return pulumi.get(self, "time_last_collected")
|
1575
|
+
|
1576
|
+
@time_last_collected.setter
|
1577
|
+
def time_last_collected(self, value: Optional[pulumi.Input[builtins.str]]):
|
1578
|
+
pulumi.set(self, "time_last_collected", value)
|
1579
|
+
|
1580
|
+
|
1411
1581
|
if not MYPY:
|
1412
1582
|
class PipelineProcessOptionsArgsDict(TypedDict):
|
1413
1583
|
initial_data_load: pulumi.Input['PipelineProcessOptionsInitialDataLoadArgsDict']
|
@@ -1422,6 +1592,10 @@ if not MYPY:
|
|
1422
1592
|
"""
|
1423
1593
|
(Updatable) If ENABLED, then the replication process restarts itself upon failure. This option applies when creating or updating a pipeline.
|
1424
1594
|
"""
|
1595
|
+
start_using_default_mapping: NotRequired[pulumi.Input[builtins.str]]
|
1596
|
+
"""
|
1597
|
+
(Updatable) If ENABLED, then the pipeline is started as part of pipeline creation. It uses default mapping. This option applies when creating or updating a pipeline.
|
1598
|
+
"""
|
1425
1599
|
elif False:
|
1426
1600
|
PipelineProcessOptionsArgsDict: TypeAlias = Mapping[str, Any]
|
1427
1601
|
|
@@ -1430,15 +1604,19 @@ class PipelineProcessOptionsArgs:
|
|
1430
1604
|
def __init__(__self__, *,
|
1431
1605
|
initial_data_load: pulumi.Input['PipelineProcessOptionsInitialDataLoadArgs'],
|
1432
1606
|
replicate_schema_change: pulumi.Input['PipelineProcessOptionsReplicateSchemaChangeArgs'],
|
1433
|
-
should_restart_on_failure: pulumi.Input[builtins.str]
|
1607
|
+
should_restart_on_failure: pulumi.Input[builtins.str],
|
1608
|
+
start_using_default_mapping: Optional[pulumi.Input[builtins.str]] = None):
|
1434
1609
|
"""
|
1435
1610
|
:param pulumi.Input['PipelineProcessOptionsInitialDataLoadArgs'] initial_data_load: (Updatable) Options required for the pipeline Initial Data Load. If enabled, copies existing data from source to target before replication.
|
1436
1611
|
:param pulumi.Input['PipelineProcessOptionsReplicateSchemaChangeArgs'] replicate_schema_change: (Updatable) Options required for pipeline Initial Data Load. If enabled, copies existing data from source to target before replication.
|
1437
1612
|
:param pulumi.Input[builtins.str] should_restart_on_failure: (Updatable) If ENABLED, then the replication process restarts itself upon failure. This option applies when creating or updating a pipeline.
|
1613
|
+
:param pulumi.Input[builtins.str] start_using_default_mapping: (Updatable) If ENABLED, then the pipeline is started as part of pipeline creation. It uses default mapping. This option applies when creating or updating a pipeline.
|
1438
1614
|
"""
|
1439
1615
|
pulumi.set(__self__, "initial_data_load", initial_data_load)
|
1440
1616
|
pulumi.set(__self__, "replicate_schema_change", replicate_schema_change)
|
1441
1617
|
pulumi.set(__self__, "should_restart_on_failure", should_restart_on_failure)
|
1618
|
+
if start_using_default_mapping is not None:
|
1619
|
+
pulumi.set(__self__, "start_using_default_mapping", start_using_default_mapping)
|
1442
1620
|
|
1443
1621
|
@property
|
1444
1622
|
@pulumi.getter(name="initialDataLoad")
|
@@ -1476,6 +1654,18 @@ class PipelineProcessOptionsArgs:
|
|
1476
1654
|
def should_restart_on_failure(self, value: pulumi.Input[builtins.str]):
|
1477
1655
|
pulumi.set(self, "should_restart_on_failure", value)
|
1478
1656
|
|
1657
|
+
@property
|
1658
|
+
@pulumi.getter(name="startUsingDefaultMapping")
|
1659
|
+
def start_using_default_mapping(self) -> Optional[pulumi.Input[builtins.str]]:
|
1660
|
+
"""
|
1661
|
+
(Updatable) If ENABLED, then the pipeline is started as part of pipeline creation. It uses default mapping. This option applies when creating or updating a pipeline.
|
1662
|
+
"""
|
1663
|
+
return pulumi.get(self, "start_using_default_mapping")
|
1664
|
+
|
1665
|
+
@start_using_default_mapping.setter
|
1666
|
+
def start_using_default_mapping(self, value: Optional[pulumi.Input[builtins.str]]):
|
1667
|
+
pulumi.set(self, "start_using_default_mapping", value)
|
1668
|
+
|
1479
1669
|
|
1480
1670
|
if not MYPY:
|
1481
1671
|
class PipelineProcessOptionsInitialDataLoadArgsDict(TypedDict):
|
@@ -1973,6 +2163,53 @@ class GetDeploymentEnvironmentsFilterArgs:
|
|
1973
2163
|
pulumi.set(self, "regex", value)
|
1974
2164
|
|
1975
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
|
+
|
1976
2213
|
if not MYPY:
|
1977
2214
|
class GetDeploymentTypesFilterArgsDict(TypedDict):
|
1978
2215
|
name: builtins.str
|