pulumi-oci 1.33.0a1713903118__py3-none-any.whl → 1.33.0a1714072500__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_oci/__init__.py +11 -0
- pulumi_oci/clusterplacementgroups/__init__.py +12 -0
- pulumi_oci/clusterplacementgroups/_inputs.py +159 -0
- pulumi_oci/clusterplacementgroups/cluster_placement_group.py +843 -0
- pulumi_oci/clusterplacementgroups/get_cluster_placement_group.py +298 -0
- pulumi_oci/clusterplacementgroups/get_cluster_placement_groups.py +217 -0
- pulumi_oci/clusterplacementgroups/outputs.py +485 -0
- pulumi_oci/core/_inputs.py +116 -28
- pulumi_oci/core/boot_volume.py +49 -0
- pulumi_oci/core/compute_capacity_reservation.py +2 -0
- pulumi_oci/core/compute_cluster.py +2 -4
- pulumi_oci/core/drg_route_distribution.py +7 -7
- pulumi_oci/core/get_boot_volume.py +14 -1
- pulumi_oci/core/get_cnv_dns_resolver_association.py +2 -2
- pulumi_oci/core/get_instance.py +14 -1
- pulumi_oci/core/get_subnet.py +2 -2
- pulumi_oci/core/get_vcn.py +2 -2
- pulumi_oci/core/get_volume.py +14 -1
- pulumi_oci/core/get_volumes.py +21 -1
- pulumi_oci/core/instance.py +51 -4
- pulumi_oci/core/instance_configuration.py +8 -0
- pulumi_oci/core/outputs.py +302 -45
- pulumi_oci/core/volume.py +49 -0
- pulumi_oci/core/volume_attachment.py +28 -0
- pulumi_oci/core/volume_group.py +49 -0
- pulumi_oci/databasemigration/_inputs.py +20 -0
- pulumi_oci/databasemigration/connection.py +13 -0
- pulumi_oci/databasemigration/get_connection.py +3 -0
- pulumi_oci/databasemigration/get_migration.py +3 -0
- pulumi_oci/databasemigration/migration.py +13 -0
- pulumi_oci/databasemigration/outputs.py +68 -0
- pulumi_oci/networkloadbalancer/backend_set.py +49 -0
- pulumi_oci/networkloadbalancer/get_backend_set.py +14 -1
- pulumi_oci/networkloadbalancer/network_load_balancers_backend_sets_unified.py +49 -0
- pulumi_oci/networkloadbalancer/outputs.py +11 -0
- {pulumi_oci-1.33.0a1713903118.dist-info → pulumi_oci-1.33.0a1714072500.dist-info}/METADATA +1 -1
- {pulumi_oci-1.33.0a1713903118.dist-info → pulumi_oci-1.33.0a1714072500.dist-info}/RECORD +39 -33
- {pulumi_oci-1.33.0a1713903118.dist-info → pulumi_oci-1.33.0a1714072500.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.33.0a1713903118.dist-info → pulumi_oci-1.33.0a1714072500.dist-info}/top_level.txt +0 -0
@@ -22,6 +22,7 @@ class NetworkLoadBalancersBackendSetsUnifiedArgs:
|
|
22
22
|
backends: Optional[pulumi.Input[Sequence[pulumi.Input['NetworkLoadBalancersBackendSetsUnifiedBackendArgs']]]] = None,
|
23
23
|
ip_version: Optional[pulumi.Input[str]] = None,
|
24
24
|
is_fail_open: Optional[pulumi.Input[bool]] = None,
|
25
|
+
is_instant_failover_enabled: Optional[pulumi.Input[bool]] = None,
|
25
26
|
is_preserve_source: Optional[pulumi.Input[bool]] = None,
|
26
27
|
name: Optional[pulumi.Input[str]] = None):
|
27
28
|
"""
|
@@ -36,6 +37,7 @@ class NetworkLoadBalancersBackendSetsUnifiedArgs:
|
|
36
37
|
:param pulumi.Input[Sequence[pulumi.Input['NetworkLoadBalancersBackendSetsUnifiedBackendArgs']]] backends: (Updatable) An array of backends to be associated with the backend set.
|
37
38
|
:param pulumi.Input[str] ip_version: (Updatable) IP version associated with the backend set.
|
38
39
|
:param pulumi.Input[bool] is_fail_open: (Updatable) If enabled, the network load balancer will continue to distribute traffic in the configured distribution in the event all backends are unhealthy. The value is false by default.
|
40
|
+
:param pulumi.Input[bool] is_instant_failover_enabled: (Updatable) If enabled existing connections will be forwarded to an alternative healthy backend as soon as current backend becomes unhealthy.
|
39
41
|
:param pulumi.Input[bool] is_preserve_source: (Updatable) If this parameter is enabled, then the network load balancer preserves the source IP of the packet when it is forwarded to backends. Backends see the original source IP. If the isPreserveSourceDestination parameter is enabled for the network load balancer resource, then this parameter cannot be disabled. The value is true by default.
|
40
42
|
:param pulumi.Input[str] name: A user-friendly name for the backend set that must be unique and cannot be changed.
|
41
43
|
|
@@ -52,6 +54,8 @@ class NetworkLoadBalancersBackendSetsUnifiedArgs:
|
|
52
54
|
pulumi.set(__self__, "ip_version", ip_version)
|
53
55
|
if is_fail_open is not None:
|
54
56
|
pulumi.set(__self__, "is_fail_open", is_fail_open)
|
57
|
+
if is_instant_failover_enabled is not None:
|
58
|
+
pulumi.set(__self__, "is_instant_failover_enabled", is_instant_failover_enabled)
|
55
59
|
if is_preserve_source is not None:
|
56
60
|
pulumi.set(__self__, "is_preserve_source", is_preserve_source)
|
57
61
|
if name is not None:
|
@@ -133,6 +137,18 @@ class NetworkLoadBalancersBackendSetsUnifiedArgs:
|
|
133
137
|
def is_fail_open(self, value: Optional[pulumi.Input[bool]]):
|
134
138
|
pulumi.set(self, "is_fail_open", value)
|
135
139
|
|
140
|
+
@property
|
141
|
+
@pulumi.getter(name="isInstantFailoverEnabled")
|
142
|
+
def is_instant_failover_enabled(self) -> Optional[pulumi.Input[bool]]:
|
143
|
+
"""
|
144
|
+
(Updatable) If enabled existing connections will be forwarded to an alternative healthy backend as soon as current backend becomes unhealthy.
|
145
|
+
"""
|
146
|
+
return pulumi.get(self, "is_instant_failover_enabled")
|
147
|
+
|
148
|
+
@is_instant_failover_enabled.setter
|
149
|
+
def is_instant_failover_enabled(self, value: Optional[pulumi.Input[bool]]):
|
150
|
+
pulumi.set(self, "is_instant_failover_enabled", value)
|
151
|
+
|
136
152
|
@property
|
137
153
|
@pulumi.getter(name="isPreserveSource")
|
138
154
|
def is_preserve_source(self) -> Optional[pulumi.Input[bool]]:
|
@@ -169,6 +185,7 @@ class _NetworkLoadBalancersBackendSetsUnifiedState:
|
|
169
185
|
health_checker: Optional[pulumi.Input['NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgs']] = None,
|
170
186
|
ip_version: Optional[pulumi.Input[str]] = None,
|
171
187
|
is_fail_open: Optional[pulumi.Input[bool]] = None,
|
188
|
+
is_instant_failover_enabled: Optional[pulumi.Input[bool]] = None,
|
172
189
|
is_preserve_source: Optional[pulumi.Input[bool]] = None,
|
173
190
|
name: Optional[pulumi.Input[str]] = None,
|
174
191
|
network_load_balancer_id: Optional[pulumi.Input[str]] = None,
|
@@ -179,6 +196,7 @@ class _NetworkLoadBalancersBackendSetsUnifiedState:
|
|
179
196
|
:param pulumi.Input['NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgs'] health_checker: (Updatable) The health check policy configuration. For more information, see [Editing Health Check Policies](https://docs.cloud.oracle.com/iaas/Content/Balance/Tasks/editinghealthcheck.htm).
|
180
197
|
:param pulumi.Input[str] ip_version: (Updatable) IP version associated with the backend set.
|
181
198
|
:param pulumi.Input[bool] is_fail_open: (Updatable) If enabled, the network load balancer will continue to distribute traffic in the configured distribution in the event all backends are unhealthy. The value is false by default.
|
199
|
+
:param pulumi.Input[bool] is_instant_failover_enabled: (Updatable) If enabled existing connections will be forwarded to an alternative healthy backend as soon as current backend becomes unhealthy.
|
182
200
|
:param pulumi.Input[bool] is_preserve_source: (Updatable) If this parameter is enabled, then the network load balancer preserves the source IP of the packet when it is forwarded to backends. Backends see the original source IP. If the isPreserveSourceDestination parameter is enabled for the network load balancer resource, then this parameter cannot be disabled. The value is true by default.
|
183
201
|
:param pulumi.Input[str] name: A user-friendly name for the backend set that must be unique and cannot be changed.
|
184
202
|
|
@@ -200,6 +218,8 @@ class _NetworkLoadBalancersBackendSetsUnifiedState:
|
|
200
218
|
pulumi.set(__self__, "ip_version", ip_version)
|
201
219
|
if is_fail_open is not None:
|
202
220
|
pulumi.set(__self__, "is_fail_open", is_fail_open)
|
221
|
+
if is_instant_failover_enabled is not None:
|
222
|
+
pulumi.set(__self__, "is_instant_failover_enabled", is_instant_failover_enabled)
|
203
223
|
if is_preserve_source is not None:
|
204
224
|
pulumi.set(__self__, "is_preserve_source", is_preserve_source)
|
205
225
|
if name is not None:
|
@@ -257,6 +277,18 @@ class _NetworkLoadBalancersBackendSetsUnifiedState:
|
|
257
277
|
def is_fail_open(self, value: Optional[pulumi.Input[bool]]):
|
258
278
|
pulumi.set(self, "is_fail_open", value)
|
259
279
|
|
280
|
+
@property
|
281
|
+
@pulumi.getter(name="isInstantFailoverEnabled")
|
282
|
+
def is_instant_failover_enabled(self) -> Optional[pulumi.Input[bool]]:
|
283
|
+
"""
|
284
|
+
(Updatable) If enabled existing connections will be forwarded to an alternative healthy backend as soon as current backend becomes unhealthy.
|
285
|
+
"""
|
286
|
+
return pulumi.get(self, "is_instant_failover_enabled")
|
287
|
+
|
288
|
+
@is_instant_failover_enabled.setter
|
289
|
+
def is_instant_failover_enabled(self, value: Optional[pulumi.Input[bool]]):
|
290
|
+
pulumi.set(self, "is_instant_failover_enabled", value)
|
291
|
+
|
260
292
|
@property
|
261
293
|
@pulumi.getter(name="isPreserveSource")
|
262
294
|
def is_preserve_source(self) -> Optional[pulumi.Input[bool]]:
|
@@ -323,6 +355,7 @@ class NetworkLoadBalancersBackendSetsUnified(pulumi.CustomResource):
|
|
323
355
|
health_checker: Optional[pulumi.Input[pulumi.InputType['NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgs']]] = None,
|
324
356
|
ip_version: Optional[pulumi.Input[str]] = None,
|
325
357
|
is_fail_open: Optional[pulumi.Input[bool]] = None,
|
358
|
+
is_instant_failover_enabled: Optional[pulumi.Input[bool]] = None,
|
326
359
|
is_preserve_source: Optional[pulumi.Input[bool]] = None,
|
327
360
|
name: Optional[pulumi.Input[str]] = None,
|
328
361
|
network_load_balancer_id: Optional[pulumi.Input[str]] = None,
|
@@ -373,6 +406,7 @@ class NetworkLoadBalancersBackendSetsUnified(pulumi.CustomResource):
|
|
373
406
|
weight=network_load_balancers_backend_sets_unified_backends_weight,
|
374
407
|
)],
|
375
408
|
ip_version=network_load_balancers_backend_sets_unified_ip_version,
|
409
|
+
is_instant_failover_enabled=network_load_balancers_backend_sets_unified_is_instant_failover_enabled,
|
376
410
|
is_fail_open=network_load_balancers_backend_sets_unified_is_fail_open,
|
377
411
|
is_preserve_source=network_load_balancers_backend_sets_unified_is_preserve_source)
|
378
412
|
```
|
@@ -391,6 +425,7 @@ class NetworkLoadBalancersBackendSetsUnified(pulumi.CustomResource):
|
|
391
425
|
:param pulumi.Input[pulumi.InputType['NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgs']] health_checker: (Updatable) The health check policy configuration. For more information, see [Editing Health Check Policies](https://docs.cloud.oracle.com/iaas/Content/Balance/Tasks/editinghealthcheck.htm).
|
392
426
|
:param pulumi.Input[str] ip_version: (Updatable) IP version associated with the backend set.
|
393
427
|
:param pulumi.Input[bool] is_fail_open: (Updatable) If enabled, the network load balancer will continue to distribute traffic in the configured distribution in the event all backends are unhealthy. The value is false by default.
|
428
|
+
:param pulumi.Input[bool] is_instant_failover_enabled: (Updatable) If enabled existing connections will be forwarded to an alternative healthy backend as soon as current backend becomes unhealthy.
|
394
429
|
:param pulumi.Input[bool] is_preserve_source: (Updatable) If this parameter is enabled, then the network load balancer preserves the source IP of the packet when it is forwarded to backends. Backends see the original source IP. If the isPreserveSourceDestination parameter is enabled for the network load balancer resource, then this parameter cannot be disabled. The value is true by default.
|
395
430
|
:param pulumi.Input[str] name: A user-friendly name for the backend set that must be unique and cannot be changed.
|
396
431
|
|
@@ -455,6 +490,7 @@ class NetworkLoadBalancersBackendSetsUnified(pulumi.CustomResource):
|
|
455
490
|
weight=network_load_balancers_backend_sets_unified_backends_weight,
|
456
491
|
)],
|
457
492
|
ip_version=network_load_balancers_backend_sets_unified_ip_version,
|
493
|
+
is_instant_failover_enabled=network_load_balancers_backend_sets_unified_is_instant_failover_enabled,
|
458
494
|
is_fail_open=network_load_balancers_backend_sets_unified_is_fail_open,
|
459
495
|
is_preserve_source=network_load_balancers_backend_sets_unified_is_preserve_source)
|
460
496
|
```
|
@@ -486,6 +522,7 @@ class NetworkLoadBalancersBackendSetsUnified(pulumi.CustomResource):
|
|
486
522
|
health_checker: Optional[pulumi.Input[pulumi.InputType['NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgs']]] = None,
|
487
523
|
ip_version: Optional[pulumi.Input[str]] = None,
|
488
524
|
is_fail_open: Optional[pulumi.Input[bool]] = None,
|
525
|
+
is_instant_failover_enabled: Optional[pulumi.Input[bool]] = None,
|
489
526
|
is_preserve_source: Optional[pulumi.Input[bool]] = None,
|
490
527
|
name: Optional[pulumi.Input[str]] = None,
|
491
528
|
network_load_balancer_id: Optional[pulumi.Input[str]] = None,
|
@@ -505,6 +542,7 @@ class NetworkLoadBalancersBackendSetsUnified(pulumi.CustomResource):
|
|
505
542
|
__props__.__dict__["health_checker"] = health_checker
|
506
543
|
__props__.__dict__["ip_version"] = ip_version
|
507
544
|
__props__.__dict__["is_fail_open"] = is_fail_open
|
545
|
+
__props__.__dict__["is_instant_failover_enabled"] = is_instant_failover_enabled
|
508
546
|
__props__.__dict__["is_preserve_source"] = is_preserve_source
|
509
547
|
__props__.__dict__["name"] = name
|
510
548
|
if network_load_balancer_id is None and not opts.urn:
|
@@ -527,6 +565,7 @@ class NetworkLoadBalancersBackendSetsUnified(pulumi.CustomResource):
|
|
527
565
|
health_checker: Optional[pulumi.Input[pulumi.InputType['NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgs']]] = None,
|
528
566
|
ip_version: Optional[pulumi.Input[str]] = None,
|
529
567
|
is_fail_open: Optional[pulumi.Input[bool]] = None,
|
568
|
+
is_instant_failover_enabled: Optional[pulumi.Input[bool]] = None,
|
530
569
|
is_preserve_source: Optional[pulumi.Input[bool]] = None,
|
531
570
|
name: Optional[pulumi.Input[str]] = None,
|
532
571
|
network_load_balancer_id: Optional[pulumi.Input[str]] = None,
|
@@ -542,6 +581,7 @@ class NetworkLoadBalancersBackendSetsUnified(pulumi.CustomResource):
|
|
542
581
|
:param pulumi.Input[pulumi.InputType['NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgs']] health_checker: (Updatable) The health check policy configuration. For more information, see [Editing Health Check Policies](https://docs.cloud.oracle.com/iaas/Content/Balance/Tasks/editinghealthcheck.htm).
|
543
582
|
:param pulumi.Input[str] ip_version: (Updatable) IP version associated with the backend set.
|
544
583
|
:param pulumi.Input[bool] is_fail_open: (Updatable) If enabled, the network load balancer will continue to distribute traffic in the configured distribution in the event all backends are unhealthy. The value is false by default.
|
584
|
+
:param pulumi.Input[bool] is_instant_failover_enabled: (Updatable) If enabled existing connections will be forwarded to an alternative healthy backend as soon as current backend becomes unhealthy.
|
545
585
|
:param pulumi.Input[bool] is_preserve_source: (Updatable) If this parameter is enabled, then the network load balancer preserves the source IP of the packet when it is forwarded to backends. Backends see the original source IP. If the isPreserveSourceDestination parameter is enabled for the network load balancer resource, then this parameter cannot be disabled. The value is true by default.
|
546
586
|
:param pulumi.Input[str] name: A user-friendly name for the backend set that must be unique and cannot be changed.
|
547
587
|
|
@@ -563,6 +603,7 @@ class NetworkLoadBalancersBackendSetsUnified(pulumi.CustomResource):
|
|
563
603
|
__props__.__dict__["health_checker"] = health_checker
|
564
604
|
__props__.__dict__["ip_version"] = ip_version
|
565
605
|
__props__.__dict__["is_fail_open"] = is_fail_open
|
606
|
+
__props__.__dict__["is_instant_failover_enabled"] = is_instant_failover_enabled
|
566
607
|
__props__.__dict__["is_preserve_source"] = is_preserve_source
|
567
608
|
__props__.__dict__["name"] = name
|
568
609
|
__props__.__dict__["network_load_balancer_id"] = network_load_balancer_id
|
@@ -601,6 +642,14 @@ class NetworkLoadBalancersBackendSetsUnified(pulumi.CustomResource):
|
|
601
642
|
"""
|
602
643
|
return pulumi.get(self, "is_fail_open")
|
603
644
|
|
645
|
+
@property
|
646
|
+
@pulumi.getter(name="isInstantFailoverEnabled")
|
647
|
+
def is_instant_failover_enabled(self) -> pulumi.Output[bool]:
|
648
|
+
"""
|
649
|
+
(Updatable) If enabled existing connections will be forwarded to an alternative healthy backend as soon as current backend becomes unhealthy.
|
650
|
+
"""
|
651
|
+
return pulumi.get(self, "is_instant_failover_enabled")
|
652
|
+
|
604
653
|
@property
|
605
654
|
@pulumi.getter(name="isPreserveSource")
|
606
655
|
def is_preserve_source(self) -> pulumi.Output[bool]:
|
@@ -1299,6 +1299,7 @@ class GetBackendSetsBackendSetCollectionItemResult(dict):
|
|
1299
1299
|
id: str,
|
1300
1300
|
ip_version: str,
|
1301
1301
|
is_fail_open: bool,
|
1302
|
+
is_instant_failover_enabled: bool,
|
1302
1303
|
is_preserve_source: bool,
|
1303
1304
|
name: str,
|
1304
1305
|
network_load_balancer_id: str,
|
@@ -1308,6 +1309,7 @@ class GetBackendSetsBackendSetCollectionItemResult(dict):
|
|
1308
1309
|
:param Sequence['GetBackendSetsBackendSetCollectionItemHealthCheckerArgs'] health_checkers: The health check policy configuration. For more information, see [Editing Health Check Policies](https://docs.cloud.oracle.com/iaas/Content/Balance/Tasks/editinghealthcheck.htm).
|
1309
1310
|
:param str ip_version: IP version associated with the backend set.
|
1310
1311
|
:param bool is_fail_open: If enabled, the network load balancer will continue to distribute traffic in the configured distribution in the event all backends are unhealthy. The value is false by default.
|
1312
|
+
:param bool is_instant_failover_enabled: If enabled existing connections will be forwarded to an alternative healthy backend as soon as current backend becomes unhealthy.
|
1311
1313
|
:param bool is_preserve_source: If this parameter is enabled, then the network load balancer preserves the source IP of the packet when it is forwarded to backends. Backends see the original source IP. If the isPreserveSourceDestination parameter is enabled for the network load balancer resource, then this parameter cannot be disabled. The value is true by default.
|
1312
1314
|
:param str name: A user-friendly name for the backend set that must be unique and cannot be changed.
|
1313
1315
|
:param str network_load_balancer_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the network load balancer to update.
|
@@ -1318,6 +1320,7 @@ class GetBackendSetsBackendSetCollectionItemResult(dict):
|
|
1318
1320
|
pulumi.set(__self__, "id", id)
|
1319
1321
|
pulumi.set(__self__, "ip_version", ip_version)
|
1320
1322
|
pulumi.set(__self__, "is_fail_open", is_fail_open)
|
1323
|
+
pulumi.set(__self__, "is_instant_failover_enabled", is_instant_failover_enabled)
|
1321
1324
|
pulumi.set(__self__, "is_preserve_source", is_preserve_source)
|
1322
1325
|
pulumi.set(__self__, "name", name)
|
1323
1326
|
pulumi.set(__self__, "network_load_balancer_id", network_load_balancer_id)
|
@@ -1360,6 +1363,14 @@ class GetBackendSetsBackendSetCollectionItemResult(dict):
|
|
1360
1363
|
"""
|
1361
1364
|
return pulumi.get(self, "is_fail_open")
|
1362
1365
|
|
1366
|
+
@property
|
1367
|
+
@pulumi.getter(name="isInstantFailoverEnabled")
|
1368
|
+
def is_instant_failover_enabled(self) -> bool:
|
1369
|
+
"""
|
1370
|
+
If enabled existing connections will be forwarded to an alternative healthy backend as soon as current backend becomes unhealthy.
|
1371
|
+
"""
|
1372
|
+
return pulumi.get(self, "is_instant_failover_enabled")
|
1373
|
+
|
1363
1374
|
@property
|
1364
1375
|
@pulumi.getter(name="isPreserveSource")
|
1365
1376
|
def is_preserve_source(self) -> bool:
|
@@ -1,4 +1,4 @@
|
|
1
|
-
pulumi_oci/__init__.py,sha256=
|
1
|
+
pulumi_oci/__init__.py,sha256=blWeLPZC_Y3bCjXtmwu5i6kEzV68GS5gStWo_9mgmWk,147818
|
2
2
|
pulumi_oci/_utilities.py,sha256=b6gJn0IIeM1t6Q7EVjqw3yhuGyP-uENQhtL5yp7aHR8,9248
|
3
3
|
pulumi_oci/provider.py,sha256=xb4xvGxOAQDmgHlar9M1AaiSt9ZiwtfITBZBtsdkfbg,24464
|
4
4
|
pulumi_oci/pulumi-plugin.json,sha256=M43fXbtz4Dlbv_jxw-1L4SOTGFmJN2lYa7ePzB7DmBs,40
|
@@ -361,6 +361,12 @@ pulumi_oci/cloudmigrations/migration_plan.py,sha256=Ar2cIZVdJ5aX9hjf5PlJQvmgHX30
|
|
361
361
|
pulumi_oci/cloudmigrations/outputs.py,sha256=yqEHz7gfAeK-vD2K99-omGexGV2YXaElZcfgjM1NGgA,616399
|
362
362
|
pulumi_oci/cloudmigrations/replication_schedule.py,sha256=yu5o0xSvu3u58Fy3Rfs_DPguBQtPMIFSAw70dcT7St8,27578
|
363
363
|
pulumi_oci/cloudmigrations/target_asset.py,sha256=ndC7xV5xGc_dMnRbJZerxtZiWakBtgkIIUniUKLShT8,50257
|
364
|
+
pulumi_oci/clusterplacementgroups/__init__.py,sha256=b_2kfthDePE5hJoeZ8QIfutFKk9ClL5W4RFf3kOztFs,440
|
365
|
+
pulumi_oci/clusterplacementgroups/_inputs.py,sha256=NZWV0xHvWkq5r9mbm-Mep76XpSZ6zPZmzu1PPFYT0FY,4851
|
366
|
+
pulumi_oci/clusterplacementgroups/cluster_placement_group.py,sha256=1L9exKBA6kxJgIeGQqSwOu3OtvjFlicy9sEZLAhwC7k,43427
|
367
|
+
pulumi_oci/clusterplacementgroups/get_cluster_placement_group.py,sha256=yKkOX_Yfqhf4mJ2r0kotfptEbb5H5hIy-2nrpvib77Q,13351
|
368
|
+
pulumi_oci/clusterplacementgroups/get_cluster_placement_groups.py,sha256=AukdKVkSetOQyhMd06wRCZWuY0VrzsMGcf1CtYW1HYE,10649
|
369
|
+
pulumi_oci/clusterplacementgroups/outputs.py,sha256=yfKVK-UbbvEAzAxn7hwYeM6itMRSmtKpFmIDbuPUzoI,18622
|
364
370
|
pulumi_oci/computecloud/__init__.py,sha256=yBhXbzpPtk8e9mUO3nQK6tk8HqfH5TNeex9yp9I15DY,614
|
365
371
|
pulumi_oci/computecloud/_inputs.py,sha256=wqLvyFWbrcjSSN1mRYKhIXDLs55krgI_cyabAi-uwYE,36705
|
366
372
|
pulumi_oci/computecloud/at_customer_ccc_infrastructure.py,sha256=QIxmXD70ttnbpMfvAPRqO8tYwyDXr4wf6HB2C_U6d0k,54593
|
@@ -417,17 +423,17 @@ pulumi_oci/containerinstances/get_container_instance_shapes.py,sha256=RWotHRCbVW
|
|
417
423
|
pulumi_oci/containerinstances/get_container_instances.py,sha256=2pS0FViyGoOrqVg-foeYDm4C7lX7WhqlMaUeeGtRlL4,8619
|
418
424
|
pulumi_oci/containerinstances/outputs.py,sha256=K1Kf3-8xpQM9OcZOnQQG972UwHvbtboWNqYnib8J0hw,99442
|
419
425
|
pulumi_oci/core/__init__.py,sha256=1GusBEmlUsbsrbDNFi5y0kaT_whekHP4LjiFbm85QvY,8463
|
420
|
-
pulumi_oci/core/_inputs.py,sha256=
|
426
|
+
pulumi_oci/core/_inputs.py,sha256=q0HGmdPYwTEbTqlmA5-IYD2jvuo4_UrW7_B3Fjq9WLA,882736
|
421
427
|
pulumi_oci/core/app_catalog_listing_resource_version_agreement.py,sha256=kd8-X0DLdG80KR4Re1Bzs3YzRfhRCraKfwNBJy6KJss,14448
|
422
428
|
pulumi_oci/core/app_catalog_subscription.py,sha256=0p4-GPnr_1F2G_si0_4tQMpEpmWadv-zhAoUKEVPdPw,29086
|
423
|
-
pulumi_oci/core/boot_volume.py,sha256=
|
429
|
+
pulumi_oci/core/boot_volume.py,sha256=OGAlK2tahbgaKqdqsL7s-kxG_G3l4kOJPzKurLtfU-o,64639
|
424
430
|
pulumi_oci/core/boot_volume_backup.py,sha256=8H5Ls8S6ma7BvwLx0qqSQkipl5918G4Zv7vJibK1oqM,46141
|
425
431
|
pulumi_oci/core/capture_filter.py,sha256=K377rXEBUBh-sce-CfHl9c32R3FP8706mJuT0tlGcEo,42487
|
426
432
|
pulumi_oci/core/cluster_network.py,sha256=1tIFSuHf-Ahc92WozHuW8vucDmyeMNeSX2XRxheBDjM,45069
|
427
433
|
pulumi_oci/core/compute_capacity_report.py,sha256=oggvhFkrBCCNJU_cglpMToVWpDSYX5G5KrWjSkCdtg0,17829
|
428
|
-
pulumi_oci/core/compute_capacity_reservation.py,sha256=
|
434
|
+
pulumi_oci/core/compute_capacity_reservation.py,sha256=IJ8eM4rFsx6hypQMTMGC3DDi4ZaNtd1GVHnc8F_w5Ag,44052
|
429
435
|
pulumi_oci/core/compute_capacity_topology.py,sha256=G5NGvgVRoLcowfaQgVm-dynnETJt2rRUg2Z4hs1h6ow,31297
|
430
|
-
pulumi_oci/core/compute_cluster.py,sha256=
|
436
|
+
pulumi_oci/core/compute_cluster.py,sha256=x2LPjXKLyOPpu46UGCFwEvaUysLMZsBYABfcHp867Ic,26656
|
431
437
|
pulumi_oci/core/compute_image_capability_schema.py,sha256=znxIusPYNN5gHiejRDbPlOO-9AP_sQVx1tcM2gRed0M,30556
|
432
438
|
pulumi_oci/core/console_history.py,sha256=bl35UqjzZ6HLfcgjc2GV-AuOlH-hRAqiB-FaeMd8LbM,25801
|
433
439
|
pulumi_oci/core/cpe.py,sha256=oXJBjJIXU22s61rjacuHSpWSryi_LtXDwG5O65pYnSc,38437
|
@@ -442,7 +448,7 @@ pulumi_oci/core/drg.py,sha256=G1H1p_46oy74udyWOjBBGLgyFPJ_5oh7JIfChDB8WL0,29245
|
|
442
448
|
pulumi_oci/core/drg_attachment.py,sha256=xGtvAxW4EmVspwq8R0neGA8tCcqV_qA8itA7HPrR8YE,53464
|
443
449
|
pulumi_oci/core/drg_attachment_management.py,sha256=7d0cXXc6qnqiyMKEJJDiLYZlPQ-R4tRyJfUtOkEn9Fs,53566
|
444
450
|
pulumi_oci/core/drg_attachments_list.py,sha256=cZsjOnEeDC1TxdFribkAVepzDA-PpqfIEVLNLgxaGpQ,14848
|
445
|
-
pulumi_oci/core/drg_route_distribution.py,sha256=
|
451
|
+
pulumi_oci/core/drg_route_distribution.py,sha256=v38n2LdXo3egi90clUo1dkk9IBCylW2o5h3jEiLdL-c,27135
|
446
452
|
pulumi_oci/core/drg_route_distribution_statement.py,sha256=opUHH2pRo5CEhuJ4Cg-K7QWWCzIkfMhEKThhWcG3bT8,20570
|
447
453
|
pulumi_oci/core/drg_route_table.py,sha256=jOxcioGmUX212JXJZgO4MEepQ-EbYPbgcbbnvtjkJ9M,34174
|
448
454
|
pulumi_oci/core/drg_route_table_route_rule.py,sha256=dwMO1wUSsUzuDPKQQz9ywBgZ9ZOKPudYvl8tmAaTLTU,28566
|
@@ -453,7 +459,7 @@ pulumi_oci/core/get_app_catalog_listings.py,sha256=SNN2H7R9K5WbSsIcK9wb6Kubahwqc
|
|
453
459
|
pulumi_oci/core/get_app_catalog_subscriptions.py,sha256=Kmnva16JilKk-7tIZLjhxp5TRfAHDpYFqN_q2dmGOTg,6370
|
454
460
|
pulumi_oci/core/get_block_volume_replica.py,sha256=M1YP_wQcshxJzM_n_rpsQWzheAXGTLVTd-5nvQgpQvs,10617
|
455
461
|
pulumi_oci/core/get_block_volume_replicas.py,sha256=C4h64YARmKHVqmlra9uy4bfdmjq0wZtf_rdQsImsPeo,9982
|
456
|
-
pulumi_oci/core/get_boot_volume.py,sha256=
|
462
|
+
pulumi_oci/core/get_boot_volume.py,sha256=z4cV_iGH07CA3lThfiBg26smP46WfM9AuT6DFZPxijc,18103
|
457
463
|
pulumi_oci/core/get_boot_volume_attachments.py,sha256=LVnX3402RtvchRLZ-ciNYH6F_i9HbDGoNZneFblVHXs,8766
|
458
464
|
pulumi_oci/core/get_boot_volume_backup.py,sha256=3VvlyzCiRKgUB_S2O73QWED6wbJulERRwaWzagvXRuA,15246
|
459
465
|
pulumi_oci/core/get_boot_volume_backups.py,sha256=Doo4VkYrV_oAv_5quZlWBfjFb4uuL_CBhGkFu_8_CrU,9735
|
@@ -468,7 +474,7 @@ pulumi_oci/core/get_capture_filters.py,sha256=bBnkW0rMCSQWuzJzChDfD6uTJEaz56JnvI
|
|
468
474
|
pulumi_oci/core/get_cluster_network.py,sha256=dHIm2sL9VFKn7Feb4df5vAjTM8YTM1_Gjilg999q_Eg,11810
|
469
475
|
pulumi_oci/core/get_cluster_network_instances.py,sha256=AaQSDCfzGjQyGgLKutWyDTjiN--Vwu0qVIr1wutfLVM,7687
|
470
476
|
pulumi_oci/core/get_cluster_networks.py,sha256=8B2BdSKOCTo_ViJOP8JE9iDKwOb9i6ccZ30t3tbREE4,7401
|
471
|
-
pulumi_oci/core/get_cnv_dns_resolver_association.py,sha256=
|
477
|
+
pulumi_oci/core/get_cnv_dns_resolver_association.py,sha256=b9iwJDn8ms72dFsEnX3LW2uBEDwbuOYos-Wsu4mhVhs,4857
|
472
478
|
pulumi_oci/core/get_compute_capacity_reservation.py,sha256=VA9CCdIR4taCFKKr0Ul8Ly_ssEYYF9y7_qapzvEcI7Q,12812
|
473
479
|
pulumi_oci/core/get_compute_capacity_reservation_instance_shapes.py,sha256=qKCCZbeAdG3ca4doYebci2rk57UoegKvLNzC-hPM1Ds,8606
|
474
480
|
pulumi_oci/core/get_compute_capacity_reservation_instances.py,sha256=r9isdhXH26Yly18GSAsWXHw4OOe2YWfocIrzGZ9HkBI,8481
|
@@ -519,7 +525,7 @@ pulumi_oci/core/get_image.py,sha256=mC6rwa6QKfM3raXqdWxRnQaRXw_h6cMfksu4dfhq6JY,
|
|
519
525
|
pulumi_oci/core/get_image_shape.py,sha256=cph_vSjGQKPH0fWUczkZGCUBFH_Dd3X4DKhnkrI_jd0,5957
|
520
526
|
pulumi_oci/core/get_image_shapes.py,sha256=fFwX2iLzTysmSZ1LuIB202ObYNI-Jyn5F7dIKDz5Hlo,4962
|
521
527
|
pulumi_oci/core/get_images.py,sha256=1yTgf5p0jvO5x2jLYErL-S0u-e6-fj1khX4svL2lnQg,12878
|
522
|
-
pulumi_oci/core/get_instance.py,sha256=
|
528
|
+
pulumi_oci/core/get_instance.py,sha256=QO9IJYbTrFzk1-zQg1CaSMAotgCKjTBI13tuBEJQmFI,33035
|
523
529
|
pulumi_oci/core/get_instance_configuration.py,sha256=CogTrU9SDdi4IBSet812w520kIwv-16kvUSaeMy7vzM,9493
|
524
530
|
pulumi_oci/core/get_instance_configurations.py,sha256=8Lh80BRWGXyA0RXif_q_F_RiaH9dlOUBfyMoXKj3CWc,5374
|
525
531
|
pulumi_oci/core/get_instance_console_connections.py,sha256=2Manh6C6d1AR5ea0BEvaKFGhiuXrtahwAcZZmRlaWWs,6989
|
@@ -567,10 +573,10 @@ pulumi_oci/core/get_service_gateways.py,sha256=CcImuH8JAA9u3f0R3kQsVUIVU4MagsKdV
|
|
567
573
|
pulumi_oci/core/get_services.py,sha256=sxLxvCXG6tefEtmnJuJbKsOrL4nPEpoHKiDRGYpUhtk,3787
|
568
574
|
pulumi_oci/core/get_shape.py,sha256=QDrNpm-jAyzo1ola8m1L4F1WzxdnAyd6v-mP8ZUI_VQ,4962
|
569
575
|
pulumi_oci/core/get_shapes.py,sha256=bpX0ntarb3vve5s8Z4RD5DP__a58oMKNyvEf7Dnhaos,6644
|
570
|
-
pulumi_oci/core/get_subnet.py,sha256
|
576
|
+
pulumi_oci/core/get_subnet.py,sha256=-qDLI_Y7tUSo9LbuLc5at_oBbTc2wyy67tJGc2zx9Us,17847
|
571
577
|
pulumi_oci/core/get_subnets.py,sha256=9LxJN0RWnJHyS1TkV126LhV5EvJSryIrlG7WFI6hyno,7913
|
572
578
|
pulumi_oci/core/get_tunnel_security_associations.py,sha256=x3-dsdwbXhNue16EyBmzPyeOeniLOvT-hopvx6fA90U,6381
|
573
|
-
pulumi_oci/core/get_vcn.py,sha256=
|
579
|
+
pulumi_oci/core/get_vcn.py,sha256=jhd1ko5CR_MPF4PMbll663thDqFn0k6amHLs9jVEsRY,15607
|
574
580
|
pulumi_oci/core/get_vcns.py,sha256=g-AFL25va5LD1lkUkG4rYtIymZVhD_f4YMy8KHb8y_Q,6831
|
575
581
|
pulumi_oci/core/get_virtual_circuit.py,sha256=AI7eW1UD7S49UTtIToCWVhBshKBJJ4YfEZC9Doh0kYg,23453
|
576
582
|
pulumi_oci/core/get_virtual_circuit_associated_tunnels.py,sha256=-B256ILB4RhHzRHPYQei3CnBD8GwXhAzc1ZyW13eJ-A,5974
|
@@ -582,7 +588,7 @@ pulumi_oci/core/get_vlan.py,sha256=llTTUzYFMEHw3msdgs7_33TzMCD2cLP2T8te5nqIpq8,1
|
|
582
588
|
pulumi_oci/core/get_vlans.py,sha256=e3H6ixPa93HVs3v5nwNO7_lRJDJka6t38kfmGBBXVcM,7563
|
583
589
|
pulumi_oci/core/get_vnic.py,sha256=dLrGlvfV_69wdyqiii_RfUwFxobYZJAI4Td3vPkbAgA,14879
|
584
590
|
pulumi_oci/core/get_vnic_attachments.py,sha256=WKbGhSxsq8sec7Juzg_rSRPAJZoeAP7yGrxo6OmwkmU,8326
|
585
|
-
pulumi_oci/core/get_volume.py,sha256=
|
591
|
+
pulumi_oci/core/get_volume.py,sha256=ij5G45tOibehQIYURAwXD8K3JjcfmmLbr5TfXhdua4o,18060
|
586
592
|
pulumi_oci/core/get_volume_attachments.py,sha256=eWlMyz6cBoUxBMzkfpgJaoM7YWQquCnR1L4cT7ffKLA,8847
|
587
593
|
pulumi_oci/core/get_volume_backup_policies.py,sha256=wgXWMHGhOewIb0TrCAEwfXubUbqxEnzXXGWkLgEIxhQ,5784
|
588
594
|
pulumi_oci/core/get_volume_backup_policy_assignments.py,sha256=o4LJqFfxouDU2TYi3YpsYCjGSnq2t_n9JI3fCft6ekw,5857
|
@@ -591,12 +597,12 @@ pulumi_oci/core/get_volume_group_backups.py,sha256=EPhCrxjXnZ1PIj80n2d2EzsBAZ5Ah
|
|
591
597
|
pulumi_oci/core/get_volume_group_replica.py,sha256=i2llD6lEMk2DQYD_JQhYX3S1TKnC9MhqGKRUMHeKTJA,10654
|
592
598
|
pulumi_oci/core/get_volume_group_replicas.py,sha256=ipxeH442OgcnR1t0o00wc8LdjWaKtmOEJZqkUW-dUxs,8935
|
593
599
|
pulumi_oci/core/get_volume_groups.py,sha256=ZZPWYukTZVinAE36McV7OAFp1v172ystBslth-WazwE,8429
|
594
|
-
pulumi_oci/core/get_volumes.py,sha256=
|
600
|
+
pulumi_oci/core/get_volumes.py,sha256=5aWizuhWE-SsjteAMJi5AI3O5fV9F1WwbA9v7OxsCao,10154
|
595
601
|
pulumi_oci/core/get_vtap.py,sha256=IuA9zNHeGaT9vrh_Vi6BIucOeJyoHf8Hhr_aBElOYjM,16433
|
596
602
|
pulumi_oci/core/get_vtaps.py,sha256=muLikKTZtQYk5f9BhK3Js9CKiuIHBW0LF6tUYa3hg8g,11852
|
597
603
|
pulumi_oci/core/image.py,sha256=6QtaLPfQ7Y_Ynuyii3dAXiKO8dN-NXvQqmIxWCtRVAE,48352
|
598
|
-
pulumi_oci/core/instance.py,sha256=
|
599
|
-
pulumi_oci/core/instance_configuration.py,sha256=
|
604
|
+
pulumi_oci/core/instance.py,sha256=GS2faP_7cr9VjpRleHGgjQsNZqAEN-X0s4z5pOAssr4,178905
|
605
|
+
pulumi_oci/core/instance_configuration.py,sha256=ziQxlk9NlQmwIXhEFbiPB5vU0Ud5X__fBSWiYm82_rI,110903
|
600
606
|
pulumi_oci/core/instance_console_connection.py,sha256=GJfa2N9zZfFutzfcwfrW92FL7_Fnr28bkSBJCh3mrtY,27431
|
601
607
|
pulumi_oci/core/instance_pool.py,sha256=5AzP4bk1COiR4vSMrEzu0aviT-Pp4luoUdshedGOVew,54731
|
602
608
|
pulumi_oci/core/instance_pool_instance.py,sha256=4bnOHmSq1EMSWst8FV4Y5EfhkZVJQEpY0goBWWZJSHg,30950
|
@@ -609,7 +615,7 @@ pulumi_oci/core/local_peering_gateway.py,sha256=kSPyvBRh4rgkugRBDTSuv5jTCmdgG7dF
|
|
609
615
|
pulumi_oci/core/nat_gateway.py,sha256=7FIymW5Rq6w7C0T74OLWb9D4KqP_vzwXnEIbNWGdsGI,35795
|
610
616
|
pulumi_oci/core/network_security_group.py,sha256=a21EveqIOiR-5WtrggBFPmYa8eBTqRGnvJs3IWm4q3g,25204
|
611
617
|
pulumi_oci/core/network_security_group_security_rule.py,sha256=GzGrWhi00hYtOlGlvyaKmzd24DuTFtcbK8Ce40i8hc8,66994
|
612
|
-
pulumi_oci/core/outputs.py,sha256=
|
618
|
+
pulumi_oci/core/outputs.py,sha256=E_u6fBXx_FNyf6nMPpgoeAM0ItcIxZSqLs4Q8iW-I8Y,2356875
|
613
619
|
pulumi_oci/core/private_ip.py,sha256=jZNtIz8hDmlMu93cmBLs8Qu4HzbzDAoPKvlT3Z0TKI0,42259
|
614
620
|
pulumi_oci/core/public_ip.py,sha256=_5YTm4mbyjlMw_foyTmI86yS8JaXxXImlYhckPlko0I,46005
|
615
621
|
pulumi_oci/core/public_ip_pool.py,sha256=LIVV7ooE-khuPJOWOCL6v1_o7zj94Evgze3tt2Qs8ao,23581
|
@@ -626,12 +632,12 @@ pulumi_oci/core/virtual_circuit.py,sha256=sGTIjkxQsOoIv4U5f5XzUhHRRIOMjE4VGm990m
|
|
626
632
|
pulumi_oci/core/virtual_network.py,sha256=p4tTe3wGzsdmCVHyqRhI3tOzvSyDlYoOoFD3d0BxL2k,28955
|
627
633
|
pulumi_oci/core/vlan.py,sha256=Dumae20Hnp6nYxKjmEBvPx1a935boGkNXBTuQCQry3I,44797
|
628
634
|
pulumi_oci/core/vnic_attachment.py,sha256=BDbswC2TXdy7PAGsO1eCKW7kdYnc99eM74waMejYh68,36500
|
629
|
-
pulumi_oci/core/volume.py,sha256=
|
630
|
-
pulumi_oci/core/volume_attachment.py,sha256=
|
635
|
+
pulumi_oci/core/volume.py,sha256=kEho5pBa3K568scCAwF45Xizzdfd3U9Ir3vqk0m-ce4,70097
|
636
|
+
pulumi_oci/core/volume_attachment.py,sha256=QRyAjjdAOP4WR2EZaZtfrOWFjWxaFYiiH_Hid8yWKOY,58003
|
631
637
|
pulumi_oci/core/volume_backup.py,sha256=FFfR-9vNkPcOdrWEhDdEdpvjFcilnCbj2xQj-39vTEM,49356
|
632
638
|
pulumi_oci/core/volume_backup_policy.py,sha256=v1F4P8WIN1qaVNlk_h1R9lSyjZAgMjzl8ezRsdgIuHc,29488
|
633
639
|
pulumi_oci/core/volume_backup_policy_assignment.py,sha256=_LyNLJU6ft34Rpjp-vsXzylj4dkhS9_SGq6ZZfcRWTQ,13080
|
634
|
-
pulumi_oci/core/volume_group.py,sha256=
|
640
|
+
pulumi_oci/core/volume_group.py,sha256=VXEhKjaXq0QUeJoZFosaCe8j2XwXV4wtrA_OaSy6lHg,50162
|
635
641
|
pulumi_oci/core/volume_group_backup.py,sha256=TaESViXt6JzduODOxkqrAV7h1lFo9udAkM26QIECb6c,44014
|
636
642
|
pulumi_oci/core/vtap.py,sha256=AQrHKZ0ErnxhB9JSwf1_rUX6TbP8MDEgOni0hUF3j14,61269
|
637
643
|
pulumi_oci/database/__init__.py,sha256=vmk_ABTY9egQLB9TjjbjLk9eoslzGAmlgEGmikTVIvs,8711
|
@@ -949,18 +955,18 @@ pulumi_oci/databasemanagement/managed_databases_reset_database_parameter.py,sha2
|
|
949
955
|
pulumi_oci/databasemanagement/named_credential.py,sha256=fSyu_7YBINtxb0GjC1I9zrnuoXItyZa70HnUqNuy3hA,37248
|
950
956
|
pulumi_oci/databasemanagement/outputs.py,sha256=qUoLNNb7a9z2bX9XBcBqM5Kl4ywebtoQBLmiOxYZqaU,1149412
|
951
957
|
pulumi_oci/databasemigration/__init__.py,sha256=wq-hZhb2rxiz9X5A9L-7N8RfkwhB3NXCbKKHsqsNolI,614
|
952
|
-
pulumi_oci/databasemigration/_inputs.py,sha256=
|
953
|
-
pulumi_oci/databasemigration/connection.py,sha256=
|
954
|
-
pulumi_oci/databasemigration/get_connection.py,sha256
|
958
|
+
pulumi_oci/databasemigration/_inputs.py,sha256=jVdjPjxHwL03bjHTSziHgcxi6Ars6SJB7RCsPohIJqA,115147
|
959
|
+
pulumi_oci/databasemigration/connection.py,sha256=vDW5X5hLli80x9zsje_1LbE8hZd5UrYP-tJeqDR5aAE,65965
|
960
|
+
pulumi_oci/databasemigration/get_connection.py,sha256=-8hIQD-wwoLFviDFTZ8YltdqeuiT-YcOkY0ZAB6QV3I,17256
|
955
961
|
pulumi_oci/databasemigration/get_connections.py,sha256=Tb1NuJWRGB8W3T9V3NoV8e9E4WLRJyg9hcL58BA15F4,6763
|
956
962
|
pulumi_oci/databasemigration/get_job_advisor_report.py,sha256=25Y-IntdZiB3GHAiEwJPULwMrmkO867aUuyrqj-jd6s,7193
|
957
963
|
pulumi_oci/databasemigration/get_job_output.py,sha256=TMABuPbwUJXWgNGhRdA_J-jnD_bh0tlzQ05Btrcuufc,3556
|
958
|
-
pulumi_oci/databasemigration/get_migration.py,sha256=
|
964
|
+
pulumi_oci/databasemigration/get_migration.py,sha256=XjLPkII4r74XA8dlbabYDEd10xeISqtLIslTb0_a1KY,21981
|
959
965
|
pulumi_oci/databasemigration/get_migration_object_types.py,sha256=p_-CLNt3MHp116WFZJzDKR6ROjXODJ9lv-mMsUyjtZw,4545
|
960
966
|
pulumi_oci/databasemigration/get_migrations.py,sha256=yh0yr51texthV6hwh1V1UFtwB8XyqXNjJCafFybWPhQ,7749
|
961
967
|
pulumi_oci/databasemigration/job.py,sha256=eOVu77VejVD5_TR3dSXbUlcxR3WLlUTcNDvchCg0A9Y,26557
|
962
|
-
pulumi_oci/databasemigration/migration.py,sha256=
|
963
|
-
pulumi_oci/databasemigration/outputs.py,sha256=
|
968
|
+
pulumi_oci/databasemigration/migration.py,sha256=X4bByzs9HN-vDOY5r0BNtAE1v1NVg42vCt1xcC0_Wko,96533
|
969
|
+
pulumi_oci/databasemigration/outputs.py,sha256=9mlcmMwlxRwGLVvnJ-pJF-JmSGdyhxdxbffGNW3Bfig,275892
|
964
970
|
pulumi_oci/databasetools/__init__.py,sha256=E0X8vTRKspPI8060q1z3elp-zq_y06OAs_0Td99nZrU,699
|
965
971
|
pulumi_oci/databasetools/_inputs.py,sha256=jFeArAPuKxOcrODtMU-4GJ6ZwcKIjYQgB6gonQEbojk,26823
|
966
972
|
pulumi_oci/databasetools/database_tools_connection.py,sha256=COEN2w48lh4qqprZj0lgPwhUjSoZooP776z8pLZntwk,53688
|
@@ -2096,9 +2102,9 @@ pulumi_oci/networkfirewall/outputs.py,sha256=DmKd3qesmhQUKv0pzbJSVUB5mtG1T5gLSGK
|
|
2096
2102
|
pulumi_oci/networkloadbalancer/__init__.py,sha256=urfLKBZti02PqzrKDjUdZ8SZHck_DsNXj1KDF6-BYtk,938
|
2097
2103
|
pulumi_oci/networkloadbalancer/_inputs.py,sha256=COHdjhzBuLidhHwesIM0lnH45hF95kFUKNGEq8qxrrs,55523
|
2098
2104
|
pulumi_oci/networkloadbalancer/backend.py,sha256=Uu7trbRmJjDgEF7K6sAAdW0QVhAw-FRyo3v83kiAQak,34924
|
2099
|
-
pulumi_oci/networkloadbalancer/backend_set.py,sha256=
|
2105
|
+
pulumi_oci/networkloadbalancer/backend_set.py,sha256=ynepa-93u24F7lzY4Kxpgc7qJ_VoTvJYd--fPGguO_o,36032
|
2100
2106
|
pulumi_oci/networkloadbalancer/get_backend_health.py,sha256=vGLqOMzlJKDpBQe597uHq9fbzA3Ln7HlWQx_1DX1Am0,8471
|
2101
|
-
pulumi_oci/networkloadbalancer/get_backend_set.py,sha256
|
2107
|
+
pulumi_oci/networkloadbalancer/get_backend_set.py,sha256=zQ4ydxEnRDtNrEvHKwskakRfy86myP8NFoMx_dSdQ-c,9324
|
2102
2108
|
pulumi_oci/networkloadbalancer/get_backend_set_health.py,sha256=YVc_nZWVdFEA30MWj3xk-y9D33JUCqTSWNKqjRcVNfQ,6547
|
2103
2109
|
pulumi_oci/networkloadbalancer/get_backend_sets.py,sha256=qqEohGXItT7w0Y56l194kcvgeICSHctkRYnwgf6G4N0,5304
|
2104
2110
|
pulumi_oci/networkloadbalancer/get_backends.py,sha256=ROqKbEJHlLI0Q3nMX1j1VdsFw8rnnbysHY92KX6mTLo,6203
|
@@ -2111,8 +2117,8 @@ pulumi_oci/networkloadbalancer/get_network_load_balancers_policies.py,sha256=FC3
|
|
2111
2117
|
pulumi_oci/networkloadbalancer/get_network_load_balancers_protocols.py,sha256=BeaLDC96v79aKeZ5-96W72Znvlb720a2GRRrKEttsNQ,4998
|
2112
2118
|
pulumi_oci/networkloadbalancer/listener.py,sha256=xq7MdKYiqN4kzyFncqHq7Jn-CeV1fio4h00trKhvd_c,23392
|
2113
2119
|
pulumi_oci/networkloadbalancer/network_load_balancer.py,sha256=ewPrEdNKMkCPxI5nIA0n_a2d7n74obMUZVFcENO1Kq0,66114
|
2114
|
-
pulumi_oci/networkloadbalancer/network_load_balancers_backend_sets_unified.py,sha256=
|
2115
|
-
pulumi_oci/networkloadbalancer/outputs.py,sha256=
|
2120
|
+
pulumi_oci/networkloadbalancer/network_load_balancers_backend_sets_unified.py,sha256=9Uwu-YX8VOKtDfT4Qisjg2yqgJrg-fASFlrUvwm17uQ,42014
|
2121
|
+
pulumi_oci/networkloadbalancer/outputs.py,sha256=6yzhXJE_qax5Bi00zsjePP623MycWYa1ANiqFBoYqNY,117370
|
2116
2122
|
pulumi_oci/nosql/__init__.py,sha256=-ek2jAAWYNxuP3L92fUIFWteYxUOBDcs1fLMbUC_Eug,488
|
2117
2123
|
pulumi_oci/nosql/_inputs.py,sha256=UGERTjYw4FJw8rYdKn8QwAjnHvJlrIr5bfW7AwgZGEQ,21829
|
2118
2124
|
pulumi_oci/nosql/get_index.py,sha256=h1P8050whb-z0v2rl-_LCrZlxatdGijtGrHfEz_MqmQ,8495
|
@@ -2654,7 +2660,7 @@ pulumi_oci/waf/get_web_app_firewall_policies.py,sha256=2EXX-nZiSRnou_ywPuVnvH9CT
|
|
2654
2660
|
pulumi_oci/waf/get_web_app_firewall_policy.py,sha256=iXFu2wfolxLPGoRpC9PvrbsMvIURoaPHkg6WVLdoEd8,14234
|
2655
2661
|
pulumi_oci/waf/network_address_list.py,sha256=XLU1RQ191_PIRyAmCu458aUENmayf90epspt4drevwk,32543
|
2656
2662
|
pulumi_oci/waf/outputs.py,sha256=L_Ay91T3B8xIip2QKrOOW99UlLifV9ByKqO-js2Y84w,227577
|
2657
|
-
pulumi_oci-1.33.
|
2658
|
-
pulumi_oci-1.33.
|
2659
|
-
pulumi_oci-1.33.
|
2660
|
-
pulumi_oci-1.33.
|
2663
|
+
pulumi_oci-1.33.0a1714072500.dist-info/METADATA,sha256=AzmJQGpqIlO5wcnJu3OsFJ3DQY8rn2CQc64hKngak1A,3899
|
2664
|
+
pulumi_oci-1.33.0a1714072500.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
2665
|
+
pulumi_oci-1.33.0a1714072500.dist-info/top_level.txt,sha256=0k-nWr_IdDNVF3qcT4ALORmmu1SNCLxWZfHDMN7TWsg,11
|
2666
|
+
pulumi_oci-1.33.0a1714072500.dist-info/RECORD,,
|
File without changes
|
{pulumi_oci-1.33.0a1713903118.dist-info → pulumi_oci-1.33.0a1714072500.dist-info}/top_level.txt
RENAMED
File without changes
|