pulumi-oci 1.33.0__py3-none-any.whl → 1.33.0a1713903118__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_oci/__init__.py +0 -11
- pulumi_oci/core/_inputs.py +28 -116
- pulumi_oci/core/boot_volume.py +0 -49
- pulumi_oci/core/compute_capacity_reservation.py +0 -2
- pulumi_oci/core/compute_cluster.py +4 -2
- pulumi_oci/core/drg_route_distribution.py +7 -7
- pulumi_oci/core/get_boot_volume.py +1 -14
- pulumi_oci/core/get_cnv_dns_resolver_association.py +2 -2
- pulumi_oci/core/get_instance.py +1 -14
- pulumi_oci/core/get_subnet.py +2 -2
- pulumi_oci/core/get_vcn.py +2 -2
- pulumi_oci/core/get_volume.py +1 -14
- pulumi_oci/core/get_volumes.py +1 -21
- pulumi_oci/core/instance.py +4 -51
- pulumi_oci/core/instance_configuration.py +0 -8
- pulumi_oci/core/outputs.py +45 -302
- pulumi_oci/core/volume.py +0 -49
- pulumi_oci/core/volume_attachment.py +0 -28
- pulumi_oci/core/volume_group.py +0 -49
- pulumi_oci/databasemigration/_inputs.py +0 -20
- pulumi_oci/databasemigration/connection.py +0 -13
- pulumi_oci/databasemigration/get_connection.py +0 -3
- pulumi_oci/databasemigration/get_migration.py +0 -3
- pulumi_oci/databasemigration/migration.py +0 -13
- pulumi_oci/databasemigration/outputs.py +0 -68
- pulumi_oci/networkloadbalancer/backend_set.py +0 -49
- pulumi_oci/networkloadbalancer/get_backend_set.py +1 -14
- pulumi_oci/networkloadbalancer/network_load_balancers_backend_sets_unified.py +0 -49
- pulumi_oci/networkloadbalancer/outputs.py +0 -11
- {pulumi_oci-1.33.0.dist-info → pulumi_oci-1.33.0a1713903118.dist-info}/METADATA +1 -1
- {pulumi_oci-1.33.0.dist-info → pulumi_oci-1.33.0a1713903118.dist-info}/RECORD +33 -39
- pulumi_oci/clusterplacementgroups/__init__.py +0 -12
- pulumi_oci/clusterplacementgroups/_inputs.py +0 -159
- pulumi_oci/clusterplacementgroups/cluster_placement_group.py +0 -843
- pulumi_oci/clusterplacementgroups/get_cluster_placement_group.py +0 -298
- pulumi_oci/clusterplacementgroups/get_cluster_placement_groups.py +0 -217
- pulumi_oci/clusterplacementgroups/outputs.py +0 -485
- {pulumi_oci-1.33.0.dist-info → pulumi_oci-1.33.0a1713903118.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.33.0.dist-info → pulumi_oci-1.33.0a1713903118.dist-info}/top_level.txt +0 -0
@@ -22,7 +22,6 @@ 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,
|
26
25
|
is_preserve_source: Optional[pulumi.Input[bool]] = None,
|
27
26
|
name: Optional[pulumi.Input[str]] = None):
|
28
27
|
"""
|
@@ -37,7 +36,6 @@ class NetworkLoadBalancersBackendSetsUnifiedArgs:
|
|
37
36
|
:param pulumi.Input[Sequence[pulumi.Input['NetworkLoadBalancersBackendSetsUnifiedBackendArgs']]] backends: (Updatable) An array of backends to be associated with the backend set.
|
38
37
|
:param pulumi.Input[str] ip_version: (Updatable) IP version associated with the backend set.
|
39
38
|
: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.
|
41
39
|
: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.
|
42
40
|
:param pulumi.Input[str] name: A user-friendly name for the backend set that must be unique and cannot be changed.
|
43
41
|
|
@@ -54,8 +52,6 @@ class NetworkLoadBalancersBackendSetsUnifiedArgs:
|
|
54
52
|
pulumi.set(__self__, "ip_version", ip_version)
|
55
53
|
if is_fail_open is not None:
|
56
54
|
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)
|
59
55
|
if is_preserve_source is not None:
|
60
56
|
pulumi.set(__self__, "is_preserve_source", is_preserve_source)
|
61
57
|
if name is not None:
|
@@ -137,18 +133,6 @@ class NetworkLoadBalancersBackendSetsUnifiedArgs:
|
|
137
133
|
def is_fail_open(self, value: Optional[pulumi.Input[bool]]):
|
138
134
|
pulumi.set(self, "is_fail_open", value)
|
139
135
|
|
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
|
-
|
152
136
|
@property
|
153
137
|
@pulumi.getter(name="isPreserveSource")
|
154
138
|
def is_preserve_source(self) -> Optional[pulumi.Input[bool]]:
|
@@ -185,7 +169,6 @@ class _NetworkLoadBalancersBackendSetsUnifiedState:
|
|
185
169
|
health_checker: Optional[pulumi.Input['NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgs']] = None,
|
186
170
|
ip_version: Optional[pulumi.Input[str]] = None,
|
187
171
|
is_fail_open: Optional[pulumi.Input[bool]] = None,
|
188
|
-
is_instant_failover_enabled: Optional[pulumi.Input[bool]] = None,
|
189
172
|
is_preserve_source: Optional[pulumi.Input[bool]] = None,
|
190
173
|
name: Optional[pulumi.Input[str]] = None,
|
191
174
|
network_load_balancer_id: Optional[pulumi.Input[str]] = None,
|
@@ -196,7 +179,6 @@ class _NetworkLoadBalancersBackendSetsUnifiedState:
|
|
196
179
|
: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).
|
197
180
|
:param pulumi.Input[str] ip_version: (Updatable) IP version associated with the backend set.
|
198
181
|
: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.
|
200
182
|
: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.
|
201
183
|
:param pulumi.Input[str] name: A user-friendly name for the backend set that must be unique and cannot be changed.
|
202
184
|
|
@@ -218,8 +200,6 @@ class _NetworkLoadBalancersBackendSetsUnifiedState:
|
|
218
200
|
pulumi.set(__self__, "ip_version", ip_version)
|
219
201
|
if is_fail_open is not None:
|
220
202
|
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)
|
223
203
|
if is_preserve_source is not None:
|
224
204
|
pulumi.set(__self__, "is_preserve_source", is_preserve_source)
|
225
205
|
if name is not None:
|
@@ -277,18 +257,6 @@ class _NetworkLoadBalancersBackendSetsUnifiedState:
|
|
277
257
|
def is_fail_open(self, value: Optional[pulumi.Input[bool]]):
|
278
258
|
pulumi.set(self, "is_fail_open", value)
|
279
259
|
|
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
|
-
|
292
260
|
@property
|
293
261
|
@pulumi.getter(name="isPreserveSource")
|
294
262
|
def is_preserve_source(self) -> Optional[pulumi.Input[bool]]:
|
@@ -355,7 +323,6 @@ class NetworkLoadBalancersBackendSetsUnified(pulumi.CustomResource):
|
|
355
323
|
health_checker: Optional[pulumi.Input[pulumi.InputType['NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgs']]] = None,
|
356
324
|
ip_version: Optional[pulumi.Input[str]] = None,
|
357
325
|
is_fail_open: Optional[pulumi.Input[bool]] = None,
|
358
|
-
is_instant_failover_enabled: Optional[pulumi.Input[bool]] = None,
|
359
326
|
is_preserve_source: Optional[pulumi.Input[bool]] = None,
|
360
327
|
name: Optional[pulumi.Input[str]] = None,
|
361
328
|
network_load_balancer_id: Optional[pulumi.Input[str]] = None,
|
@@ -406,7 +373,6 @@ class NetworkLoadBalancersBackendSetsUnified(pulumi.CustomResource):
|
|
406
373
|
weight=network_load_balancers_backend_sets_unified_backends_weight,
|
407
374
|
)],
|
408
375
|
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,
|
410
376
|
is_fail_open=network_load_balancers_backend_sets_unified_is_fail_open,
|
411
377
|
is_preserve_source=network_load_balancers_backend_sets_unified_is_preserve_source)
|
412
378
|
```
|
@@ -425,7 +391,6 @@ class NetworkLoadBalancersBackendSetsUnified(pulumi.CustomResource):
|
|
425
391
|
: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).
|
426
392
|
:param pulumi.Input[str] ip_version: (Updatable) IP version associated with the backend set.
|
427
393
|
: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.
|
429
394
|
: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.
|
430
395
|
:param pulumi.Input[str] name: A user-friendly name for the backend set that must be unique and cannot be changed.
|
431
396
|
|
@@ -490,7 +455,6 @@ class NetworkLoadBalancersBackendSetsUnified(pulumi.CustomResource):
|
|
490
455
|
weight=network_load_balancers_backend_sets_unified_backends_weight,
|
491
456
|
)],
|
492
457
|
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,
|
494
458
|
is_fail_open=network_load_balancers_backend_sets_unified_is_fail_open,
|
495
459
|
is_preserve_source=network_load_balancers_backend_sets_unified_is_preserve_source)
|
496
460
|
```
|
@@ -522,7 +486,6 @@ class NetworkLoadBalancersBackendSetsUnified(pulumi.CustomResource):
|
|
522
486
|
health_checker: Optional[pulumi.Input[pulumi.InputType['NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgs']]] = None,
|
523
487
|
ip_version: Optional[pulumi.Input[str]] = None,
|
524
488
|
is_fail_open: Optional[pulumi.Input[bool]] = None,
|
525
|
-
is_instant_failover_enabled: Optional[pulumi.Input[bool]] = None,
|
526
489
|
is_preserve_source: Optional[pulumi.Input[bool]] = None,
|
527
490
|
name: Optional[pulumi.Input[str]] = None,
|
528
491
|
network_load_balancer_id: Optional[pulumi.Input[str]] = None,
|
@@ -542,7 +505,6 @@ class NetworkLoadBalancersBackendSetsUnified(pulumi.CustomResource):
|
|
542
505
|
__props__.__dict__["health_checker"] = health_checker
|
543
506
|
__props__.__dict__["ip_version"] = ip_version
|
544
507
|
__props__.__dict__["is_fail_open"] = is_fail_open
|
545
|
-
__props__.__dict__["is_instant_failover_enabled"] = is_instant_failover_enabled
|
546
508
|
__props__.__dict__["is_preserve_source"] = is_preserve_source
|
547
509
|
__props__.__dict__["name"] = name
|
548
510
|
if network_load_balancer_id is None and not opts.urn:
|
@@ -565,7 +527,6 @@ class NetworkLoadBalancersBackendSetsUnified(pulumi.CustomResource):
|
|
565
527
|
health_checker: Optional[pulumi.Input[pulumi.InputType['NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgs']]] = None,
|
566
528
|
ip_version: Optional[pulumi.Input[str]] = None,
|
567
529
|
is_fail_open: Optional[pulumi.Input[bool]] = None,
|
568
|
-
is_instant_failover_enabled: Optional[pulumi.Input[bool]] = None,
|
569
530
|
is_preserve_source: Optional[pulumi.Input[bool]] = None,
|
570
531
|
name: Optional[pulumi.Input[str]] = None,
|
571
532
|
network_load_balancer_id: Optional[pulumi.Input[str]] = None,
|
@@ -581,7 +542,6 @@ class NetworkLoadBalancersBackendSetsUnified(pulumi.CustomResource):
|
|
581
542
|
: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).
|
582
543
|
:param pulumi.Input[str] ip_version: (Updatable) IP version associated with the backend set.
|
583
544
|
: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.
|
585
545
|
: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.
|
586
546
|
:param pulumi.Input[str] name: A user-friendly name for the backend set that must be unique and cannot be changed.
|
587
547
|
|
@@ -603,7 +563,6 @@ class NetworkLoadBalancersBackendSetsUnified(pulumi.CustomResource):
|
|
603
563
|
__props__.__dict__["health_checker"] = health_checker
|
604
564
|
__props__.__dict__["ip_version"] = ip_version
|
605
565
|
__props__.__dict__["is_fail_open"] = is_fail_open
|
606
|
-
__props__.__dict__["is_instant_failover_enabled"] = is_instant_failover_enabled
|
607
566
|
__props__.__dict__["is_preserve_source"] = is_preserve_source
|
608
567
|
__props__.__dict__["name"] = name
|
609
568
|
__props__.__dict__["network_load_balancer_id"] = network_load_balancer_id
|
@@ -642,14 +601,6 @@ class NetworkLoadBalancersBackendSetsUnified(pulumi.CustomResource):
|
|
642
601
|
"""
|
643
602
|
return pulumi.get(self, "is_fail_open")
|
644
603
|
|
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
|
-
|
653
604
|
@property
|
654
605
|
@pulumi.getter(name="isPreserveSource")
|
655
606
|
def is_preserve_source(self) -> pulumi.Output[bool]:
|
@@ -1299,7 +1299,6 @@ class GetBackendSetsBackendSetCollectionItemResult(dict):
|
|
1299
1299
|
id: str,
|
1300
1300
|
ip_version: str,
|
1301
1301
|
is_fail_open: bool,
|
1302
|
-
is_instant_failover_enabled: bool,
|
1303
1302
|
is_preserve_source: bool,
|
1304
1303
|
name: str,
|
1305
1304
|
network_load_balancer_id: str,
|
@@ -1309,7 +1308,6 @@ class GetBackendSetsBackendSetCollectionItemResult(dict):
|
|
1309
1308
|
: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).
|
1310
1309
|
:param str ip_version: IP version associated with the backend set.
|
1311
1310
|
: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.
|
1313
1311
|
: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.
|
1314
1312
|
:param str name: A user-friendly name for the backend set that must be unique and cannot be changed.
|
1315
1313
|
: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.
|
@@ -1320,7 +1318,6 @@ class GetBackendSetsBackendSetCollectionItemResult(dict):
|
|
1320
1318
|
pulumi.set(__self__, "id", id)
|
1321
1319
|
pulumi.set(__self__, "ip_version", ip_version)
|
1322
1320
|
pulumi.set(__self__, "is_fail_open", is_fail_open)
|
1323
|
-
pulumi.set(__self__, "is_instant_failover_enabled", is_instant_failover_enabled)
|
1324
1321
|
pulumi.set(__self__, "is_preserve_source", is_preserve_source)
|
1325
1322
|
pulumi.set(__self__, "name", name)
|
1326
1323
|
pulumi.set(__self__, "network_load_balancer_id", network_load_balancer_id)
|
@@ -1363,14 +1360,6 @@ class GetBackendSetsBackendSetCollectionItemResult(dict):
|
|
1363
1360
|
"""
|
1364
1361
|
return pulumi.get(self, "is_fail_open")
|
1365
1362
|
|
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
|
-
|
1374
1363
|
@property
|
1375
1364
|
@pulumi.getter(name="isPreserveSource")
|
1376
1365
|
def is_preserve_source(self) -> bool:
|
@@ -1,4 +1,4 @@
|
|
1
|
-
pulumi_oci/__init__.py,sha256=
|
1
|
+
pulumi_oci/__init__.py,sha256=mYV2LtWu28ZWdKHNjNCSjsNsHIwVwAvf92QvwjOGz8I,147356
|
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,12 +361,6 @@ 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
|
370
364
|
pulumi_oci/computecloud/__init__.py,sha256=yBhXbzpPtk8e9mUO3nQK6tk8HqfH5TNeex9yp9I15DY,614
|
371
365
|
pulumi_oci/computecloud/_inputs.py,sha256=wqLvyFWbrcjSSN1mRYKhIXDLs55krgI_cyabAi-uwYE,36705
|
372
366
|
pulumi_oci/computecloud/at_customer_ccc_infrastructure.py,sha256=QIxmXD70ttnbpMfvAPRqO8tYwyDXr4wf6HB2C_U6d0k,54593
|
@@ -423,17 +417,17 @@ pulumi_oci/containerinstances/get_container_instance_shapes.py,sha256=RWotHRCbVW
|
|
423
417
|
pulumi_oci/containerinstances/get_container_instances.py,sha256=2pS0FViyGoOrqVg-foeYDm4C7lX7WhqlMaUeeGtRlL4,8619
|
424
418
|
pulumi_oci/containerinstances/outputs.py,sha256=K1Kf3-8xpQM9OcZOnQQG972UwHvbtboWNqYnib8J0hw,99442
|
425
419
|
pulumi_oci/core/__init__.py,sha256=1GusBEmlUsbsrbDNFi5y0kaT_whekHP4LjiFbm85QvY,8463
|
426
|
-
pulumi_oci/core/_inputs.py,sha256=
|
420
|
+
pulumi_oci/core/_inputs.py,sha256=ZHMuH6NBVkmZoJte5hjp8gTw-s_wQCq7JxGDI_AG3jE,878552
|
427
421
|
pulumi_oci/core/app_catalog_listing_resource_version_agreement.py,sha256=kd8-X0DLdG80KR4Re1Bzs3YzRfhRCraKfwNBJy6KJss,14448
|
428
422
|
pulumi_oci/core/app_catalog_subscription.py,sha256=0p4-GPnr_1F2G_si0_4tQMpEpmWadv-zhAoUKEVPdPw,29086
|
429
|
-
pulumi_oci/core/boot_volume.py,sha256=
|
423
|
+
pulumi_oci/core/boot_volume.py,sha256=8GeCcZuYm1pkqKrjymO6wMVuGxM9pXDpJqb1MP8Ooh0,61916
|
430
424
|
pulumi_oci/core/boot_volume_backup.py,sha256=8H5Ls8S6ma7BvwLx0qqSQkipl5918G4Zv7vJibK1oqM,46141
|
431
425
|
pulumi_oci/core/capture_filter.py,sha256=K377rXEBUBh-sce-CfHl9c32R3FP8706mJuT0tlGcEo,42487
|
432
426
|
pulumi_oci/core/cluster_network.py,sha256=1tIFSuHf-Ahc92WozHuW8vucDmyeMNeSX2XRxheBDjM,45069
|
433
427
|
pulumi_oci/core/compute_capacity_report.py,sha256=oggvhFkrBCCNJU_cglpMToVWpDSYX5G5KrWjSkCdtg0,17829
|
434
|
-
pulumi_oci/core/compute_capacity_reservation.py,sha256=
|
428
|
+
pulumi_oci/core/compute_capacity_reservation.py,sha256=Wh1M0lTrK9U7z3odNC9zymvdd8ByEDAj1zVZJ1od428,43930
|
435
429
|
pulumi_oci/core/compute_capacity_topology.py,sha256=G5NGvgVRoLcowfaQgVm-dynnETJt2rRUg2Z4hs1h6ow,31297
|
436
|
-
pulumi_oci/core/compute_cluster.py,sha256=
|
430
|
+
pulumi_oci/core/compute_cluster.py,sha256=Juv4lk4yNAW1_AIPG6GfMUughT4ssAMm_dWIS6EgAQY,26780
|
437
431
|
pulumi_oci/core/compute_image_capability_schema.py,sha256=znxIusPYNN5gHiejRDbPlOO-9AP_sQVx1tcM2gRed0M,30556
|
438
432
|
pulumi_oci/core/console_history.py,sha256=bl35UqjzZ6HLfcgjc2GV-AuOlH-hRAqiB-FaeMd8LbM,25801
|
439
433
|
pulumi_oci/core/cpe.py,sha256=oXJBjJIXU22s61rjacuHSpWSryi_LtXDwG5O65pYnSc,38437
|
@@ -448,7 +442,7 @@ pulumi_oci/core/drg.py,sha256=G1H1p_46oy74udyWOjBBGLgyFPJ_5oh7JIfChDB8WL0,29245
|
|
448
442
|
pulumi_oci/core/drg_attachment.py,sha256=xGtvAxW4EmVspwq8R0neGA8tCcqV_qA8itA7HPrR8YE,53464
|
449
443
|
pulumi_oci/core/drg_attachment_management.py,sha256=7d0cXXc6qnqiyMKEJJDiLYZlPQ-R4tRyJfUtOkEn9Fs,53566
|
450
444
|
pulumi_oci/core/drg_attachments_list.py,sha256=cZsjOnEeDC1TxdFribkAVepzDA-PpqfIEVLNLgxaGpQ,14848
|
451
|
-
pulumi_oci/core/drg_route_distribution.py,sha256=
|
445
|
+
pulumi_oci/core/drg_route_distribution.py,sha256=X2O3m4MyNqJaPO5mhLTp2Kp5Uz5IYYZ4PCyHNkntcwc,27128
|
452
446
|
pulumi_oci/core/drg_route_distribution_statement.py,sha256=opUHH2pRo5CEhuJ4Cg-K7QWWCzIkfMhEKThhWcG3bT8,20570
|
453
447
|
pulumi_oci/core/drg_route_table.py,sha256=jOxcioGmUX212JXJZgO4MEepQ-EbYPbgcbbnvtjkJ9M,34174
|
454
448
|
pulumi_oci/core/drg_route_table_route_rule.py,sha256=dwMO1wUSsUzuDPKQQz9ywBgZ9ZOKPudYvl8tmAaTLTU,28566
|
@@ -459,7 +453,7 @@ pulumi_oci/core/get_app_catalog_listings.py,sha256=SNN2H7R9K5WbSsIcK9wb6Kubahwqc
|
|
459
453
|
pulumi_oci/core/get_app_catalog_subscriptions.py,sha256=Kmnva16JilKk-7tIZLjhxp5TRfAHDpYFqN_q2dmGOTg,6370
|
460
454
|
pulumi_oci/core/get_block_volume_replica.py,sha256=M1YP_wQcshxJzM_n_rpsQWzheAXGTLVTd-5nvQgpQvs,10617
|
461
455
|
pulumi_oci/core/get_block_volume_replicas.py,sha256=C4h64YARmKHVqmlra9uy4bfdmjq0wZtf_rdQsImsPeo,9982
|
462
|
-
pulumi_oci/core/get_boot_volume.py,sha256=
|
456
|
+
pulumi_oci/core/get_boot_volume.py,sha256=awV1x0sQFJb6TBjpjfqu9_5Xj09e6ZbIi9sWOIFLZLg,17370
|
463
457
|
pulumi_oci/core/get_boot_volume_attachments.py,sha256=LVnX3402RtvchRLZ-ciNYH6F_i9HbDGoNZneFblVHXs,8766
|
464
458
|
pulumi_oci/core/get_boot_volume_backup.py,sha256=3VvlyzCiRKgUB_S2O73QWED6wbJulERRwaWzagvXRuA,15246
|
465
459
|
pulumi_oci/core/get_boot_volume_backups.py,sha256=Doo4VkYrV_oAv_5quZlWBfjFb4uuL_CBhGkFu_8_CrU,9735
|
@@ -474,7 +468,7 @@ pulumi_oci/core/get_capture_filters.py,sha256=bBnkW0rMCSQWuzJzChDfD6uTJEaz56JnvI
|
|
474
468
|
pulumi_oci/core/get_cluster_network.py,sha256=dHIm2sL9VFKn7Feb4df5vAjTM8YTM1_Gjilg999q_Eg,11810
|
475
469
|
pulumi_oci/core/get_cluster_network_instances.py,sha256=AaQSDCfzGjQyGgLKutWyDTjiN--Vwu0qVIr1wutfLVM,7687
|
476
470
|
pulumi_oci/core/get_cluster_networks.py,sha256=8B2BdSKOCTo_ViJOP8JE9iDKwOb9i6ccZ30t3tbREE4,7401
|
477
|
-
pulumi_oci/core/get_cnv_dns_resolver_association.py,sha256=
|
471
|
+
pulumi_oci/core/get_cnv_dns_resolver_association.py,sha256=LOKT4nu-qE2p5iFFa-aHiOiRTi5gbGLb0GvOA6zEyaE,4841
|
478
472
|
pulumi_oci/core/get_compute_capacity_reservation.py,sha256=VA9CCdIR4taCFKKr0Ul8Ly_ssEYYF9y7_qapzvEcI7Q,12812
|
479
473
|
pulumi_oci/core/get_compute_capacity_reservation_instance_shapes.py,sha256=qKCCZbeAdG3ca4doYebci2rk57UoegKvLNzC-hPM1Ds,8606
|
480
474
|
pulumi_oci/core/get_compute_capacity_reservation_instances.py,sha256=r9isdhXH26Yly18GSAsWXHw4OOe2YWfocIrzGZ9HkBI,8481
|
@@ -525,7 +519,7 @@ pulumi_oci/core/get_image.py,sha256=mC6rwa6QKfM3raXqdWxRnQaRXw_h6cMfksu4dfhq6JY,
|
|
525
519
|
pulumi_oci/core/get_image_shape.py,sha256=cph_vSjGQKPH0fWUczkZGCUBFH_Dd3X4DKhnkrI_jd0,5957
|
526
520
|
pulumi_oci/core/get_image_shapes.py,sha256=fFwX2iLzTysmSZ1LuIB202ObYNI-Jyn5F7dIKDz5Hlo,4962
|
527
521
|
pulumi_oci/core/get_images.py,sha256=1yTgf5p0jvO5x2jLYErL-S0u-e6-fj1khX4svL2lnQg,12878
|
528
|
-
pulumi_oci/core/get_instance.py,sha256=
|
522
|
+
pulumi_oci/core/get_instance.py,sha256=AfkGA1ftJQegUEYWXVq-ReZbwEOcfDLvXyji2Ydo9Yc,32310
|
529
523
|
pulumi_oci/core/get_instance_configuration.py,sha256=CogTrU9SDdi4IBSet812w520kIwv-16kvUSaeMy7vzM,9493
|
530
524
|
pulumi_oci/core/get_instance_configurations.py,sha256=8Lh80BRWGXyA0RXif_q_F_RiaH9dlOUBfyMoXKj3CWc,5374
|
531
525
|
pulumi_oci/core/get_instance_console_connections.py,sha256=2Manh6C6d1AR5ea0BEvaKFGhiuXrtahwAcZZmRlaWWs,6989
|
@@ -573,10 +567,10 @@ pulumi_oci/core/get_service_gateways.py,sha256=CcImuH8JAA9u3f0R3kQsVUIVU4MagsKdV
|
|
573
567
|
pulumi_oci/core/get_services.py,sha256=sxLxvCXG6tefEtmnJuJbKsOrL4nPEpoHKiDRGYpUhtk,3787
|
574
568
|
pulumi_oci/core/get_shape.py,sha256=QDrNpm-jAyzo1ola8m1L4F1WzxdnAyd6v-mP8ZUI_VQ,4962
|
575
569
|
pulumi_oci/core/get_shapes.py,sha256=bpX0ntarb3vve5s8Z4RD5DP__a58oMKNyvEf7Dnhaos,6644
|
576
|
-
pulumi_oci/core/get_subnet.py,sha256
|
570
|
+
pulumi_oci/core/get_subnet.py,sha256=F3m85eoTrXuA1RZbqdU7z-SkGAh2wStTemlHPtPqVqc,17831
|
577
571
|
pulumi_oci/core/get_subnets.py,sha256=9LxJN0RWnJHyS1TkV126LhV5EvJSryIrlG7WFI6hyno,7913
|
578
572
|
pulumi_oci/core/get_tunnel_security_associations.py,sha256=x3-dsdwbXhNue16EyBmzPyeOeniLOvT-hopvx6fA90U,6381
|
579
|
-
pulumi_oci/core/get_vcn.py,sha256=
|
573
|
+
pulumi_oci/core/get_vcn.py,sha256=ojuryXStJNUwL-0xrNvWJxqLs18zRca8MHT6SFoPUE0,15591
|
580
574
|
pulumi_oci/core/get_vcns.py,sha256=g-AFL25va5LD1lkUkG4rYtIymZVhD_f4YMy8KHb8y_Q,6831
|
581
575
|
pulumi_oci/core/get_virtual_circuit.py,sha256=AI7eW1UD7S49UTtIToCWVhBshKBJJ4YfEZC9Doh0kYg,23453
|
582
576
|
pulumi_oci/core/get_virtual_circuit_associated_tunnels.py,sha256=-B256ILB4RhHzRHPYQei3CnBD8GwXhAzc1ZyW13eJ-A,5974
|
@@ -588,7 +582,7 @@ pulumi_oci/core/get_vlan.py,sha256=llTTUzYFMEHw3msdgs7_33TzMCD2cLP2T8te5nqIpq8,1
|
|
588
582
|
pulumi_oci/core/get_vlans.py,sha256=e3H6ixPa93HVs3v5nwNO7_lRJDJka6t38kfmGBBXVcM,7563
|
589
583
|
pulumi_oci/core/get_vnic.py,sha256=dLrGlvfV_69wdyqiii_RfUwFxobYZJAI4Td3vPkbAgA,14879
|
590
584
|
pulumi_oci/core/get_vnic_attachments.py,sha256=WKbGhSxsq8sec7Juzg_rSRPAJZoeAP7yGrxo6OmwkmU,8326
|
591
|
-
pulumi_oci/core/get_volume.py,sha256=
|
585
|
+
pulumi_oci/core/get_volume.py,sha256=wsqqbMzm6_SkmybhPFul5mOrJ-OQorFnfAlajbxMwCA,17327
|
592
586
|
pulumi_oci/core/get_volume_attachments.py,sha256=eWlMyz6cBoUxBMzkfpgJaoM7YWQquCnR1L4cT7ffKLA,8847
|
593
587
|
pulumi_oci/core/get_volume_backup_policies.py,sha256=wgXWMHGhOewIb0TrCAEwfXubUbqxEnzXXGWkLgEIxhQ,5784
|
594
588
|
pulumi_oci/core/get_volume_backup_policy_assignments.py,sha256=o4LJqFfxouDU2TYi3YpsYCjGSnq2t_n9JI3fCft6ekw,5857
|
@@ -597,12 +591,12 @@ pulumi_oci/core/get_volume_group_backups.py,sha256=EPhCrxjXnZ1PIj80n2d2EzsBAZ5Ah
|
|
597
591
|
pulumi_oci/core/get_volume_group_replica.py,sha256=i2llD6lEMk2DQYD_JQhYX3S1TKnC9MhqGKRUMHeKTJA,10654
|
598
592
|
pulumi_oci/core/get_volume_group_replicas.py,sha256=ipxeH442OgcnR1t0o00wc8LdjWaKtmOEJZqkUW-dUxs,8935
|
599
593
|
pulumi_oci/core/get_volume_groups.py,sha256=ZZPWYukTZVinAE36McV7OAFp1v172ystBslth-WazwE,8429
|
600
|
-
pulumi_oci/core/get_volumes.py,sha256=
|
594
|
+
pulumi_oci/core/get_volumes.py,sha256=L4j700ftQAc8Hv1YHrCIClnZPOk8Q9d_KFL6tYLqOzs,8805
|
601
595
|
pulumi_oci/core/get_vtap.py,sha256=IuA9zNHeGaT9vrh_Vi6BIucOeJyoHf8Hhr_aBElOYjM,16433
|
602
596
|
pulumi_oci/core/get_vtaps.py,sha256=muLikKTZtQYk5f9BhK3Js9CKiuIHBW0LF6tUYa3hg8g,11852
|
603
597
|
pulumi_oci/core/image.py,sha256=6QtaLPfQ7Y_Ynuyii3dAXiKO8dN-NXvQqmIxWCtRVAE,48352
|
604
|
-
pulumi_oci/core/instance.py,sha256=
|
605
|
-
pulumi_oci/core/instance_configuration.py,sha256=
|
598
|
+
pulumi_oci/core/instance.py,sha256=WMSaeFS6mMiuDBdbnW-S1ySYlhK-VPbJ8SdCu9P90HQ,176310
|
599
|
+
pulumi_oci/core/instance_configuration.py,sha256=SzKJF-Bb_5G-cmWXcI_75Ozdc2VRUc9KbJb-PSD-rSc,110311
|
606
600
|
pulumi_oci/core/instance_console_connection.py,sha256=GJfa2N9zZfFutzfcwfrW92FL7_Fnr28bkSBJCh3mrtY,27431
|
607
601
|
pulumi_oci/core/instance_pool.py,sha256=5AzP4bk1COiR4vSMrEzu0aviT-Pp4luoUdshedGOVew,54731
|
608
602
|
pulumi_oci/core/instance_pool_instance.py,sha256=4bnOHmSq1EMSWst8FV4Y5EfhkZVJQEpY0goBWWZJSHg,30950
|
@@ -615,7 +609,7 @@ pulumi_oci/core/local_peering_gateway.py,sha256=kSPyvBRh4rgkugRBDTSuv5jTCmdgG7dF
|
|
615
609
|
pulumi_oci/core/nat_gateway.py,sha256=7FIymW5Rq6w7C0T74OLWb9D4KqP_vzwXnEIbNWGdsGI,35795
|
616
610
|
pulumi_oci/core/network_security_group.py,sha256=a21EveqIOiR-5WtrggBFPmYa8eBTqRGnvJs3IWm4q3g,25204
|
617
611
|
pulumi_oci/core/network_security_group_security_rule.py,sha256=GzGrWhi00hYtOlGlvyaKmzd24DuTFtcbK8Ce40i8hc8,66994
|
618
|
-
pulumi_oci/core/outputs.py,sha256=
|
612
|
+
pulumi_oci/core/outputs.py,sha256=c_YBiF2CFgdQW5Cgum2wUiHG8Dye0rNaSPpLHcwDjpU,2345257
|
619
613
|
pulumi_oci/core/private_ip.py,sha256=jZNtIz8hDmlMu93cmBLs8Qu4HzbzDAoPKvlT3Z0TKI0,42259
|
620
614
|
pulumi_oci/core/public_ip.py,sha256=_5YTm4mbyjlMw_foyTmI86yS8JaXxXImlYhckPlko0I,46005
|
621
615
|
pulumi_oci/core/public_ip_pool.py,sha256=LIVV7ooE-khuPJOWOCL6v1_o7zj94Evgze3tt2Qs8ao,23581
|
@@ -632,12 +626,12 @@ pulumi_oci/core/virtual_circuit.py,sha256=sGTIjkxQsOoIv4U5f5XzUhHRRIOMjE4VGm990m
|
|
632
626
|
pulumi_oci/core/virtual_network.py,sha256=p4tTe3wGzsdmCVHyqRhI3tOzvSyDlYoOoFD3d0BxL2k,28955
|
633
627
|
pulumi_oci/core/vlan.py,sha256=Dumae20Hnp6nYxKjmEBvPx1a935boGkNXBTuQCQry3I,44797
|
634
628
|
pulumi_oci/core/vnic_attachment.py,sha256=BDbswC2TXdy7PAGsO1eCKW7kdYnc99eM74waMejYh68,36500
|
635
|
-
pulumi_oci/core/volume.py,sha256=
|
636
|
-
pulumi_oci/core/volume_attachment.py,sha256=
|
629
|
+
pulumi_oci/core/volume.py,sha256=hIG_qBiNUbiVOF9GV95qj61j9sZFdA6mUR8EafLdbbE,67374
|
630
|
+
pulumi_oci/core/volume_attachment.py,sha256=JNtpNbq9rkbbvm5qUm77VGPXIZoUWr2ULbc_oXvcmJE,56003
|
637
631
|
pulumi_oci/core/volume_backup.py,sha256=FFfR-9vNkPcOdrWEhDdEdpvjFcilnCbj2xQj-39vTEM,49356
|
638
632
|
pulumi_oci/core/volume_backup_policy.py,sha256=v1F4P8WIN1qaVNlk_h1R9lSyjZAgMjzl8ezRsdgIuHc,29488
|
639
633
|
pulumi_oci/core/volume_backup_policy_assignment.py,sha256=_LyNLJU6ft34Rpjp-vsXzylj4dkhS9_SGq6ZZfcRWTQ,13080
|
640
|
-
pulumi_oci/core/volume_group.py,sha256=
|
634
|
+
pulumi_oci/core/volume_group.py,sha256=ON1mHw_piL8bA-pawYOgGuu20vrs7hK4pm0aut5e-4I,47355
|
641
635
|
pulumi_oci/core/volume_group_backup.py,sha256=TaESViXt6JzduODOxkqrAV7h1lFo9udAkM26QIECb6c,44014
|
642
636
|
pulumi_oci/core/vtap.py,sha256=AQrHKZ0ErnxhB9JSwf1_rUX6TbP8MDEgOni0hUF3j14,61269
|
643
637
|
pulumi_oci/database/__init__.py,sha256=vmk_ABTY9egQLB9TjjbjLk9eoslzGAmlgEGmikTVIvs,8711
|
@@ -955,18 +949,18 @@ pulumi_oci/databasemanagement/managed_databases_reset_database_parameter.py,sha2
|
|
955
949
|
pulumi_oci/databasemanagement/named_credential.py,sha256=fSyu_7YBINtxb0GjC1I9zrnuoXItyZa70HnUqNuy3hA,37248
|
956
950
|
pulumi_oci/databasemanagement/outputs.py,sha256=qUoLNNb7a9z2bX9XBcBqM5Kl4ywebtoQBLmiOxYZqaU,1149412
|
957
951
|
pulumi_oci/databasemigration/__init__.py,sha256=wq-hZhb2rxiz9X5A9L-7N8RfkwhB3NXCbKKHsqsNolI,614
|
958
|
-
pulumi_oci/databasemigration/_inputs.py,sha256=
|
959
|
-
pulumi_oci/databasemigration/connection.py,sha256=
|
960
|
-
pulumi_oci/databasemigration/get_connection.py,sha256
|
952
|
+
pulumi_oci/databasemigration/_inputs.py,sha256=j96cYLCY-ht1_Mm5mS_1hgdKhz0oVBU-biz2BXvXQhk,112963
|
953
|
+
pulumi_oci/databasemigration/connection.py,sha256=qR5FbMy03hhy_8sq18pdI-P5_K-hPU4ovd4A9l8RvQA,64982
|
954
|
+
pulumi_oci/databasemigration/get_connection.py,sha256=31vtNoTcaTxe_JY3mnvwrP5lBtW89LXTumxBvjFdHbY,17131
|
961
955
|
pulumi_oci/databasemigration/get_connections.py,sha256=Tb1NuJWRGB8W3T9V3NoV8e9E4WLRJyg9hcL58BA15F4,6763
|
962
956
|
pulumi_oci/databasemigration/get_job_advisor_report.py,sha256=25Y-IntdZiB3GHAiEwJPULwMrmkO867aUuyrqj-jd6s,7193
|
963
957
|
pulumi_oci/databasemigration/get_job_output.py,sha256=TMABuPbwUJXWgNGhRdA_J-jnD_bh0tlzQ05Btrcuufc,3556
|
964
|
-
pulumi_oci/databasemigration/get_migration.py,sha256=
|
958
|
+
pulumi_oci/databasemigration/get_migration.py,sha256=p8B4vLBQFO2GjBH4zsr0ZqvuOluVmtL4EuJdJfDRFLM,21874
|
965
959
|
pulumi_oci/databasemigration/get_migration_object_types.py,sha256=p_-CLNt3MHp116WFZJzDKR6ROjXODJ9lv-mMsUyjtZw,4545
|
966
960
|
pulumi_oci/databasemigration/get_migrations.py,sha256=yh0yr51texthV6hwh1V1UFtwB8XyqXNjJCafFybWPhQ,7749
|
967
961
|
pulumi_oci/databasemigration/job.py,sha256=eOVu77VejVD5_TR3dSXbUlcxR3WLlUTcNDvchCg0A9Y,26557
|
968
|
-
pulumi_oci/databasemigration/migration.py,sha256=
|
969
|
-
pulumi_oci/databasemigration/outputs.py,sha256=
|
962
|
+
pulumi_oci/databasemigration/migration.py,sha256=vdtnwWDnhFjWbAT_VxCU5VDngfHxqmoJHSQ-ilOywVs,95372
|
963
|
+
pulumi_oci/databasemigration/outputs.py,sha256=BfJZWIqqDuBpppz-7b9QZHTnTEeteE6EXsrLfh9WG_U,269116
|
970
964
|
pulumi_oci/databasetools/__init__.py,sha256=E0X8vTRKspPI8060q1z3elp-zq_y06OAs_0Td99nZrU,699
|
971
965
|
pulumi_oci/databasetools/_inputs.py,sha256=jFeArAPuKxOcrODtMU-4GJ6ZwcKIjYQgB6gonQEbojk,26823
|
972
966
|
pulumi_oci/databasetools/database_tools_connection.py,sha256=COEN2w48lh4qqprZj0lgPwhUjSoZooP776z8pLZntwk,53688
|
@@ -2102,9 +2096,9 @@ pulumi_oci/networkfirewall/outputs.py,sha256=DmKd3qesmhQUKv0pzbJSVUB5mtG1T5gLSGK
|
|
2102
2096
|
pulumi_oci/networkloadbalancer/__init__.py,sha256=urfLKBZti02PqzrKDjUdZ8SZHck_DsNXj1KDF6-BYtk,938
|
2103
2097
|
pulumi_oci/networkloadbalancer/_inputs.py,sha256=COHdjhzBuLidhHwesIM0lnH45hF95kFUKNGEq8qxrrs,55523
|
2104
2098
|
pulumi_oci/networkloadbalancer/backend.py,sha256=Uu7trbRmJjDgEF7K6sAAdW0QVhAw-FRyo3v83kiAQak,34924
|
2105
|
-
pulumi_oci/networkloadbalancer/backend_set.py,sha256=
|
2099
|
+
pulumi_oci/networkloadbalancer/backend_set.py,sha256=RqKXnBVdg0bD91fKRj5XNwOQ0OYrlYhOJs6-BRgT1j0,32674
|
2106
2100
|
pulumi_oci/networkloadbalancer/get_backend_health.py,sha256=vGLqOMzlJKDpBQe597uHq9fbzA3Ln7HlWQx_1DX1Am0,8471
|
2107
|
-
pulumi_oci/networkloadbalancer/get_backend_set.py,sha256
|
2101
|
+
pulumi_oci/networkloadbalancer/get_backend_set.py,sha256=-Xn_1Jmu2-gFpXCpplNUnhp-mTF9XyTyqrg_xjoLBv4,8510
|
2108
2102
|
pulumi_oci/networkloadbalancer/get_backend_set_health.py,sha256=YVc_nZWVdFEA30MWj3xk-y9D33JUCqTSWNKqjRcVNfQ,6547
|
2109
2103
|
pulumi_oci/networkloadbalancer/get_backend_sets.py,sha256=qqEohGXItT7w0Y56l194kcvgeICSHctkRYnwgf6G4N0,5304
|
2110
2104
|
pulumi_oci/networkloadbalancer/get_backends.py,sha256=ROqKbEJHlLI0Q3nMX1j1VdsFw8rnnbysHY92KX6mTLo,6203
|
@@ -2117,8 +2111,8 @@ pulumi_oci/networkloadbalancer/get_network_load_balancers_policies.py,sha256=FC3
|
|
2117
2111
|
pulumi_oci/networkloadbalancer/get_network_load_balancers_protocols.py,sha256=BeaLDC96v79aKeZ5-96W72Znvlb720a2GRRrKEttsNQ,4998
|
2118
2112
|
pulumi_oci/networkloadbalancer/listener.py,sha256=xq7MdKYiqN4kzyFncqHq7Jn-CeV1fio4h00trKhvd_c,23392
|
2119
2113
|
pulumi_oci/networkloadbalancer/network_load_balancer.py,sha256=ewPrEdNKMkCPxI5nIA0n_a2d7n74obMUZVFcENO1Kq0,66114
|
2120
|
-
pulumi_oci/networkloadbalancer/network_load_balancers_backend_sets_unified.py,sha256=
|
2121
|
-
pulumi_oci/networkloadbalancer/outputs.py,sha256=
|
2114
|
+
pulumi_oci/networkloadbalancer/network_load_balancers_backend_sets_unified.py,sha256=TqAg4NYWeE0mrKWdj9-wOM9s7p1Y5ooesLdIzoHYxVU,38592
|
2115
|
+
pulumi_oci/networkloadbalancer/outputs.py,sha256=a2QsYqAUg6wGUKOmQEQSV2GYJoS1Q-9rItdqkwervZI,116707
|
2122
2116
|
pulumi_oci/nosql/__init__.py,sha256=-ek2jAAWYNxuP3L92fUIFWteYxUOBDcs1fLMbUC_Eug,488
|
2123
2117
|
pulumi_oci/nosql/_inputs.py,sha256=UGERTjYw4FJw8rYdKn8QwAjnHvJlrIr5bfW7AwgZGEQ,21829
|
2124
2118
|
pulumi_oci/nosql/get_index.py,sha256=h1P8050whb-z0v2rl-_LCrZlxatdGijtGrHfEz_MqmQ,8495
|
@@ -2660,7 +2654,7 @@ pulumi_oci/waf/get_web_app_firewall_policies.py,sha256=2EXX-nZiSRnou_ywPuVnvH9CT
|
|
2660
2654
|
pulumi_oci/waf/get_web_app_firewall_policy.py,sha256=iXFu2wfolxLPGoRpC9PvrbsMvIURoaPHkg6WVLdoEd8,14234
|
2661
2655
|
pulumi_oci/waf/network_address_list.py,sha256=XLU1RQ191_PIRyAmCu458aUENmayf90epspt4drevwk,32543
|
2662
2656
|
pulumi_oci/waf/outputs.py,sha256=L_Ay91T3B8xIip2QKrOOW99UlLifV9ByKqO-js2Y84w,227577
|
2663
|
-
pulumi_oci-1.33.
|
2664
|
-
pulumi_oci-1.33.
|
2665
|
-
pulumi_oci-1.33.
|
2666
|
-
pulumi_oci-1.33.
|
2657
|
+
pulumi_oci-1.33.0a1713903118.dist-info/METADATA,sha256=0iLmfEmMLK_KWKktSzQKXLJgwG50Pb1iLaOQjlVnhBU,3899
|
2658
|
+
pulumi_oci-1.33.0a1713903118.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
2659
|
+
pulumi_oci-1.33.0a1713903118.dist-info/top_level.txt,sha256=0k-nWr_IdDNVF3qcT4ALORmmu1SNCLxWZfHDMN7TWsg,11
|
2660
|
+
pulumi_oci-1.33.0a1713903118.dist-info/RECORD,,
|
@@ -1,12 +0,0 @@
|
|
1
|
-
# coding=utf-8
|
2
|
-
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
|
-
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
-
|
5
|
-
from .. import _utilities
|
6
|
-
import typing
|
7
|
-
# Export this package's modules as members:
|
8
|
-
from .cluster_placement_group import *
|
9
|
-
from .get_cluster_placement_group import *
|
10
|
-
from .get_cluster_placement_groups import *
|
11
|
-
from ._inputs import *
|
12
|
-
from . import outputs
|
@@ -1,159 +0,0 @@
|
|
1
|
-
# coding=utf-8
|
2
|
-
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
|
-
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
-
|
5
|
-
import copy
|
6
|
-
import warnings
|
7
|
-
import pulumi
|
8
|
-
import pulumi.runtime
|
9
|
-
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
10
|
-
from .. import _utilities
|
11
|
-
|
12
|
-
__all__ = [
|
13
|
-
'ClusterPlacementGroupCapabilitiesArgs',
|
14
|
-
'ClusterPlacementGroupCapabilitiesItemArgs',
|
15
|
-
'ClusterPlacementGroupPlacementInstructionArgs',
|
16
|
-
'GetClusterPlacementGroupsFilterArgs',
|
17
|
-
]
|
18
|
-
|
19
|
-
@pulumi.input_type
|
20
|
-
class ClusterPlacementGroupCapabilitiesArgs:
|
21
|
-
def __init__(__self__, *,
|
22
|
-
items: pulumi.Input[Sequence[pulumi.Input['ClusterPlacementGroupCapabilitiesItemArgs']]]):
|
23
|
-
"""
|
24
|
-
:param pulumi.Input[Sequence[pulumi.Input['ClusterPlacementGroupCapabilitiesItemArgs']]] items: The supported resources.
|
25
|
-
"""
|
26
|
-
pulumi.set(__self__, "items", items)
|
27
|
-
|
28
|
-
@property
|
29
|
-
@pulumi.getter
|
30
|
-
def items(self) -> pulumi.Input[Sequence[pulumi.Input['ClusterPlacementGroupCapabilitiesItemArgs']]]:
|
31
|
-
"""
|
32
|
-
The supported resources.
|
33
|
-
"""
|
34
|
-
return pulumi.get(self, "items")
|
35
|
-
|
36
|
-
@items.setter
|
37
|
-
def items(self, value: pulumi.Input[Sequence[pulumi.Input['ClusterPlacementGroupCapabilitiesItemArgs']]]):
|
38
|
-
pulumi.set(self, "items", value)
|
39
|
-
|
40
|
-
|
41
|
-
@pulumi.input_type
|
42
|
-
class ClusterPlacementGroupCapabilitiesItemArgs:
|
43
|
-
def __init__(__self__, *,
|
44
|
-
name: pulumi.Input[str],
|
45
|
-
service: pulumi.Input[str]):
|
46
|
-
"""
|
47
|
-
:param pulumi.Input[str] name: The friendly name of the cluster placement group.
|
48
|
-
:param pulumi.Input[str] service: The service that the resource is part of.
|
49
|
-
"""
|
50
|
-
pulumi.set(__self__, "name", name)
|
51
|
-
pulumi.set(__self__, "service", service)
|
52
|
-
|
53
|
-
@property
|
54
|
-
@pulumi.getter
|
55
|
-
def name(self) -> pulumi.Input[str]:
|
56
|
-
"""
|
57
|
-
The friendly name of the cluster placement group.
|
58
|
-
"""
|
59
|
-
return pulumi.get(self, "name")
|
60
|
-
|
61
|
-
@name.setter
|
62
|
-
def name(self, value: pulumi.Input[str]):
|
63
|
-
pulumi.set(self, "name", value)
|
64
|
-
|
65
|
-
@property
|
66
|
-
@pulumi.getter
|
67
|
-
def service(self) -> pulumi.Input[str]:
|
68
|
-
"""
|
69
|
-
The service that the resource is part of.
|
70
|
-
"""
|
71
|
-
return pulumi.get(self, "service")
|
72
|
-
|
73
|
-
@service.setter
|
74
|
-
def service(self, value: pulumi.Input[str]):
|
75
|
-
pulumi.set(self, "service", value)
|
76
|
-
|
77
|
-
|
78
|
-
@pulumi.input_type
|
79
|
-
class ClusterPlacementGroupPlacementInstructionArgs:
|
80
|
-
def __init__(__self__, *,
|
81
|
-
type: pulumi.Input[str],
|
82
|
-
value: pulumi.Input[str]):
|
83
|
-
"""
|
84
|
-
:param pulumi.Input[str] type: The type of placement instruction.
|
85
|
-
:param pulumi.Input[str] value: The value of the token designated for placement of the cluster placement group upon creation.
|
86
|
-
"""
|
87
|
-
pulumi.set(__self__, "type", type)
|
88
|
-
pulumi.set(__self__, "value", value)
|
89
|
-
|
90
|
-
@property
|
91
|
-
@pulumi.getter
|
92
|
-
def type(self) -> pulumi.Input[str]:
|
93
|
-
"""
|
94
|
-
The type of placement instruction.
|
95
|
-
"""
|
96
|
-
return pulumi.get(self, "type")
|
97
|
-
|
98
|
-
@type.setter
|
99
|
-
def type(self, value: pulumi.Input[str]):
|
100
|
-
pulumi.set(self, "type", value)
|
101
|
-
|
102
|
-
@property
|
103
|
-
@pulumi.getter
|
104
|
-
def value(self) -> pulumi.Input[str]:
|
105
|
-
"""
|
106
|
-
The value of the token designated for placement of the cluster placement group upon creation.
|
107
|
-
"""
|
108
|
-
return pulumi.get(self, "value")
|
109
|
-
|
110
|
-
@value.setter
|
111
|
-
def value(self, value: pulumi.Input[str]):
|
112
|
-
pulumi.set(self, "value", value)
|
113
|
-
|
114
|
-
|
115
|
-
@pulumi.input_type
|
116
|
-
class GetClusterPlacementGroupsFilterArgs:
|
117
|
-
def __init__(__self__, *,
|
118
|
-
name: str,
|
119
|
-
values: Sequence[str],
|
120
|
-
regex: Optional[bool] = None):
|
121
|
-
"""
|
122
|
-
:param str name: A filter to return only the resources that match the entire display name specified.
|
123
|
-
"""
|
124
|
-
pulumi.set(__self__, "name", name)
|
125
|
-
pulumi.set(__self__, "values", values)
|
126
|
-
if regex is not None:
|
127
|
-
pulumi.set(__self__, "regex", regex)
|
128
|
-
|
129
|
-
@property
|
130
|
-
@pulumi.getter
|
131
|
-
def name(self) -> str:
|
132
|
-
"""
|
133
|
-
A filter to return only the resources that match the entire display name specified.
|
134
|
-
"""
|
135
|
-
return pulumi.get(self, "name")
|
136
|
-
|
137
|
-
@name.setter
|
138
|
-
def name(self, value: str):
|
139
|
-
pulumi.set(self, "name", value)
|
140
|
-
|
141
|
-
@property
|
142
|
-
@pulumi.getter
|
143
|
-
def values(self) -> Sequence[str]:
|
144
|
-
return pulumi.get(self, "values")
|
145
|
-
|
146
|
-
@values.setter
|
147
|
-
def values(self, value: Sequence[str]):
|
148
|
-
pulumi.set(self, "values", value)
|
149
|
-
|
150
|
-
@property
|
151
|
-
@pulumi.getter
|
152
|
-
def regex(self) -> Optional[bool]:
|
153
|
-
return pulumi.get(self, "regex")
|
154
|
-
|
155
|
-
@regex.setter
|
156
|
-
def regex(self, value: Optional[bool]):
|
157
|
-
pulumi.set(self, "regex", value)
|
158
|
-
|
159
|
-
|