pulumi-oci 1.42.0a1719036487__py3-none-any.whl → 1.42.0a1719301332__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/_utilities.py +35 -0
- pulumi_oci/budget/budget.py +3 -9
- pulumi_oci/budget/get_budget.py +1 -3
- pulumi_oci/budget/outputs.py +1 -3
- pulumi_oci/containerengine/cluster_complete_credential_rotation_management.py +2 -2
- pulumi_oci/containerengine/get_node_pool.py +2 -6
- pulumi_oci/containerengine/node_pool.py +6 -18
- pulumi_oci/containerengine/outputs.py +2 -6
- pulumi_oci/core/_inputs.py +5 -15
- pulumi_oci/core/boot_volume.py +3 -9
- pulumi_oci/core/get_boot_volume.py +1 -3
- pulumi_oci/core/get_instance.py +3 -9
- pulumi_oci/core/get_virtual_circuit.py +2 -6
- pulumi_oci/core/get_volume.py +2 -6
- pulumi_oci/core/instance.py +9 -27
- pulumi_oci/core/outputs.py +24 -72
- pulumi_oci/core/virtual_circuit.py +5 -15
- pulumi_oci/core/volume.py +6 -18
- pulumi_oci/core/volume_attachment.py +3 -9
- pulumi_oci/core/volume_backup.py +4 -12
- pulumi_oci/core/volume_group.py +3 -9
- pulumi_oci/database/autonomous_database.py +3 -9
- pulumi_oci/database/autonomous_exadata_infrastructure.py +3 -9
- pulumi_oci/database/backup_destination.py +3 -9
- pulumi_oci/database/get_autonomous_database.py +1 -3
- pulumi_oci/database/get_autonomous_database_wallet.py +1 -3
- pulumi_oci/database/get_autonomous_exadata_infrastructure.py +1 -3
- pulumi_oci/database/get_backup_destination.py +1 -3
- pulumi_oci/database/outputs.py +4 -12
- pulumi_oci/datasafe/discovery_jobs_result.py +7 -21
- pulumi_oci/datasafe/get_discovery_jobs_result.py +2 -6
- pulumi_oci/datasafe/outputs.py +3 -9
- pulumi_oci/dns/get_records.py +1 -3
- pulumi_oci/dns/outputs.py +3 -9
- pulumi_oci/dns/record.py +9 -27
- pulumi_oci/identity/outputs.py +3 -9
- pulumi_oci/identity/policy.py +6 -18
- pulumi_oci/loadbalancer/load_balancer.py +2 -6
- pulumi_oci/loadbalancer/outputs.py +1 -3
- pulumi_oci/mysql/_inputs.py +7 -21
- pulumi_oci/mysql/outputs.py +21 -63
- pulumi_oci/objectstorage/get_preauthrequest.py +1 -3
- pulumi_oci/objectstorage/get_replication_policy.py +1 -3
- pulumi_oci/objectstorage/outputs.py +2 -6
- pulumi_oci/objectstorage/preauthrequest.py +3 -9
- pulumi_oci/objectstorage/replication_policy.py +3 -9
- pulumi_oci/ocvp/esxi_host.py +18 -54
- pulumi_oci/ocvp/get_exsi_host.py +6 -18
- pulumi_oci/ocvp/get_sddc.py +31 -93
- pulumi_oci/ocvp/get_supported_host_shapes.py +1 -3
- pulumi_oci/ocvp/outputs.py +39 -117
- pulumi_oci/ocvp/sddc.py +83 -249
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/recoverymod/get_recovery_service_subnet.py +1 -3
- pulumi_oci/recoverymod/outputs.py +1 -3
- pulumi_oci/recoverymod/recovery_service_subnet.py +3 -9
- {pulumi_oci-1.42.0a1719036487.dist-info → pulumi_oci-1.42.0a1719301332.dist-info}/METADATA +1 -1
- {pulumi_oci-1.42.0a1719036487.dist-info → pulumi_oci-1.42.0a1719301332.dist-info}/RECORD +60 -60
- {pulumi_oci-1.42.0a1719036487.dist-info → pulumi_oci-1.42.0a1719301332.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.42.0a1719036487.dist-info → pulumi_oci-1.42.0a1719301332.dist-info}/top_level.txt +0 -0
pulumi_oci/core/instance.py
CHANGED
@@ -412,13 +412,11 @@ class InstanceArgs:
|
|
412
412
|
|
413
413
|
@property
|
414
414
|
@pulumi.getter(name="hostnameLabel")
|
415
|
+
@_utilities.deprecated("""The 'hostname_label' field has been deprecated. Please use 'hostname_label under create_vnic_details' instead.""")
|
415
416
|
def hostname_label(self) -> Optional[pulumi.Input[str]]:
|
416
417
|
"""
|
417
418
|
Deprecated. Instead use `hostnameLabel` in [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/). If you provide both, the values must match.
|
418
419
|
"""
|
419
|
-
warnings.warn("""The 'hostname_label' field has been deprecated. Please use 'hostname_label under create_vnic_details' instead.""", DeprecationWarning)
|
420
|
-
pulumi.log.warn("""hostname_label is deprecated: The 'hostname_label' field has been deprecated. Please use 'hostname_label under create_vnic_details' instead.""")
|
421
|
-
|
422
420
|
return pulumi.get(self, "hostname_label")
|
423
421
|
|
424
422
|
@hostname_label.setter
|
@@ -427,13 +425,11 @@ class InstanceArgs:
|
|
427
425
|
|
428
426
|
@property
|
429
427
|
@pulumi.getter
|
428
|
+
@_utilities.deprecated("""The 'image' field has been deprecated. Please use 'source_details' instead. If both fields are specified, then 'source_details' will be used.""")
|
430
429
|
def image(self) -> Optional[pulumi.Input[str]]:
|
431
430
|
"""
|
432
431
|
Deprecated. Use `sourceDetails` with [InstanceSourceViaImageDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/requests/InstanceSourceViaImageDetails) source type instead. If you specify values for both, the values must match.
|
433
432
|
"""
|
434
|
-
warnings.warn("""The 'image' field has been deprecated. Please use 'source_details' instead. If both fields are specified, then 'source_details' will be used.""", DeprecationWarning)
|
435
|
-
pulumi.log.warn("""image is deprecated: The 'image' field has been deprecated. Please use 'source_details' instead. If both fields are specified, then 'source_details' will be used.""")
|
436
|
-
|
437
433
|
return pulumi.get(self, "image")
|
438
434
|
|
439
435
|
@image.setter
|
@@ -684,13 +680,11 @@ class InstanceArgs:
|
|
684
680
|
|
685
681
|
@property
|
686
682
|
@pulumi.getter(name="subnetId")
|
683
|
+
@_utilities.deprecated("""The 'subnet_id' field has been deprecated. Please use 'subnet_id under create_vnic_details' instead.""")
|
687
684
|
def subnet_id(self) -> Optional[pulumi.Input[str]]:
|
688
685
|
"""
|
689
686
|
Deprecated. Instead use `subnetId` in [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/). At least one of them is required; if you provide both, the values must match.
|
690
687
|
"""
|
691
|
-
warnings.warn("""The 'subnet_id' field has been deprecated. Please use 'subnet_id under create_vnic_details' instead.""", DeprecationWarning)
|
692
|
-
pulumi.log.warn("""subnet_id is deprecated: The 'subnet_id' field has been deprecated. Please use 'subnet_id under create_vnic_details' instead.""")
|
693
|
-
|
694
688
|
return pulumi.get(self, "subnet_id")
|
695
689
|
|
696
690
|
@subnet_id.setter
|
@@ -1160,13 +1154,11 @@ class _InstanceState:
|
|
1160
1154
|
|
1161
1155
|
@property
|
1162
1156
|
@pulumi.getter(name="hostnameLabel")
|
1157
|
+
@_utilities.deprecated("""The 'hostname_label' field has been deprecated. Please use 'hostname_label under create_vnic_details' instead.""")
|
1163
1158
|
def hostname_label(self) -> Optional[pulumi.Input[str]]:
|
1164
1159
|
"""
|
1165
1160
|
Deprecated. Instead use `hostnameLabel` in [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/). If you provide both, the values must match.
|
1166
1161
|
"""
|
1167
|
-
warnings.warn("""The 'hostname_label' field has been deprecated. Please use 'hostname_label under create_vnic_details' instead.""", DeprecationWarning)
|
1168
|
-
pulumi.log.warn("""hostname_label is deprecated: The 'hostname_label' field has been deprecated. Please use 'hostname_label under create_vnic_details' instead.""")
|
1169
|
-
|
1170
1162
|
return pulumi.get(self, "hostname_label")
|
1171
1163
|
|
1172
1164
|
@hostname_label.setter
|
@@ -1175,13 +1167,11 @@ class _InstanceState:
|
|
1175
1167
|
|
1176
1168
|
@property
|
1177
1169
|
@pulumi.getter
|
1170
|
+
@_utilities.deprecated("""The 'image' field has been deprecated. Please use 'source_details' instead. If both fields are specified, then 'source_details' will be used.""")
|
1178
1171
|
def image(self) -> Optional[pulumi.Input[str]]:
|
1179
1172
|
"""
|
1180
1173
|
Deprecated. Use `sourceDetails` with [InstanceSourceViaImageDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/requests/InstanceSourceViaImageDetails) source type instead. If you specify values for both, the values must match.
|
1181
1174
|
"""
|
1182
|
-
warnings.warn("""The 'image' field has been deprecated. Please use 'source_details' instead. If both fields are specified, then 'source_details' will be used.""", DeprecationWarning)
|
1183
|
-
pulumi.log.warn("""image is deprecated: The 'image' field has been deprecated. Please use 'source_details' instead. If both fields are specified, then 'source_details' will be used.""")
|
1184
|
-
|
1185
1175
|
return pulumi.get(self, "image")
|
1186
1176
|
|
1187
1177
|
@image.setter
|
@@ -1496,13 +1486,11 @@ class _InstanceState:
|
|
1496
1486
|
|
1497
1487
|
@property
|
1498
1488
|
@pulumi.getter(name="subnetId")
|
1489
|
+
@_utilities.deprecated("""The 'subnet_id' field has been deprecated. Please use 'subnet_id under create_vnic_details' instead.""")
|
1499
1490
|
def subnet_id(self) -> Optional[pulumi.Input[str]]:
|
1500
1491
|
"""
|
1501
1492
|
Deprecated. Instead use `subnetId` in [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/). At least one of them is required; if you provide both, the values must match.
|
1502
1493
|
"""
|
1503
|
-
warnings.warn("""The 'subnet_id' field has been deprecated. Please use 'subnet_id under create_vnic_details' instead.""", DeprecationWarning)
|
1504
|
-
pulumi.log.warn("""subnet_id is deprecated: The 'subnet_id' field has been deprecated. Please use 'subnet_id under create_vnic_details' instead.""")
|
1505
|
-
|
1506
1494
|
return pulumi.get(self, "subnet_id")
|
1507
1495
|
|
1508
1496
|
@subnet_id.setter
|
@@ -2274,24 +2262,20 @@ class Instance(pulumi.CustomResource):
|
|
2274
2262
|
|
2275
2263
|
@property
|
2276
2264
|
@pulumi.getter(name="hostnameLabel")
|
2265
|
+
@_utilities.deprecated("""The 'hostname_label' field has been deprecated. Please use 'hostname_label under create_vnic_details' instead.""")
|
2277
2266
|
def hostname_label(self) -> pulumi.Output[str]:
|
2278
2267
|
"""
|
2279
2268
|
Deprecated. Instead use `hostnameLabel` in [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/). If you provide both, the values must match.
|
2280
2269
|
"""
|
2281
|
-
warnings.warn("""The 'hostname_label' field has been deprecated. Please use 'hostname_label under create_vnic_details' instead.""", DeprecationWarning)
|
2282
|
-
pulumi.log.warn("""hostname_label is deprecated: The 'hostname_label' field has been deprecated. Please use 'hostname_label under create_vnic_details' instead.""")
|
2283
|
-
|
2284
2270
|
return pulumi.get(self, "hostname_label")
|
2285
2271
|
|
2286
2272
|
@property
|
2287
2273
|
@pulumi.getter
|
2274
|
+
@_utilities.deprecated("""The 'image' field has been deprecated. Please use 'source_details' instead. If both fields are specified, then 'source_details' will be used.""")
|
2288
2275
|
def image(self) -> pulumi.Output[str]:
|
2289
2276
|
"""
|
2290
2277
|
Deprecated. Use `sourceDetails` with [InstanceSourceViaImageDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/requests/InstanceSourceViaImageDetails) source type instead. If you specify values for both, the values must match.
|
2291
2278
|
"""
|
2292
|
-
warnings.warn("""The 'image' field has been deprecated. Please use 'source_details' instead. If both fields are specified, then 'source_details' will be used.""", DeprecationWarning)
|
2293
|
-
pulumi.log.warn("""image is deprecated: The 'image' field has been deprecated. Please use 'source_details' instead. If both fields are specified, then 'source_details' will be used.""")
|
2294
|
-
|
2295
2279
|
return pulumi.get(self, "image")
|
2296
2280
|
|
2297
2281
|
@property
|
@@ -2522,13 +2506,11 @@ class Instance(pulumi.CustomResource):
|
|
2522
2506
|
|
2523
2507
|
@property
|
2524
2508
|
@pulumi.getter(name="subnetId")
|
2509
|
+
@_utilities.deprecated("""The 'subnet_id' field has been deprecated. Please use 'subnet_id under create_vnic_details' instead.""")
|
2525
2510
|
def subnet_id(self) -> pulumi.Output[str]:
|
2526
2511
|
"""
|
2527
2512
|
Deprecated. Instead use `subnetId` in [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/). At least one of them is required; if you provide both, the values must match.
|
2528
2513
|
"""
|
2529
|
-
warnings.warn("""The 'subnet_id' field has been deprecated. Please use 'subnet_id under create_vnic_details' instead.""", DeprecationWarning)
|
2530
|
-
pulumi.log.warn("""subnet_id is deprecated: The 'subnet_id' field has been deprecated. Please use 'subnet_id under create_vnic_details' instead.""")
|
2531
|
-
|
2532
2514
|
return pulumi.get(self, "subnet_id")
|
2533
2515
|
|
2534
2516
|
@property
|
pulumi_oci/core/outputs.py
CHANGED
@@ -3594,10 +3594,8 @@ class DefaultRouteTableRouteRule(dict):
|
|
3594
3594
|
|
3595
3595
|
@property
|
3596
3596
|
@pulumi.getter(name="cidrBlock")
|
3597
|
+
@_utilities.deprecated("""The 'cidr_block' field has been deprecated. Please use 'destination' instead.""")
|
3597
3598
|
def cidr_block(self) -> Optional[str]:
|
3598
|
-
warnings.warn("""The 'cidr_block' field has been deprecated. Please use 'destination' instead.""", DeprecationWarning)
|
3599
|
-
pulumi.log.warn("""cidr_block is deprecated: The 'cidr_block' field has been deprecated. Please use 'destination' instead.""")
|
3600
|
-
|
3601
3599
|
return pulumi.get(self, "cidr_block")
|
3602
3600
|
|
3603
3601
|
@property
|
@@ -11955,10 +11953,8 @@ class IpsecConnectionTunnelManagementBgpSessionInfo(dict):
|
|
11955
11953
|
|
11956
11954
|
@property
|
11957
11955
|
@pulumi.getter(name="bgpIpv6state")
|
11956
|
+
@_utilities.deprecated("""The 'bgp_session_info.0.bgp_ipv6state' field has been deprecated. Please use 'bgp_session_info.0.bgp_ipv6_state' instead.""")
|
11958
11957
|
def bgp_ipv6state(self) -> Optional[str]:
|
11959
|
-
warnings.warn("""The 'bgp_session_info.0.bgp_ipv6state' field has been deprecated. Please use 'bgp_session_info.0.bgp_ipv6_state' instead.""", DeprecationWarning)
|
11960
|
-
pulumi.log.warn("""bgp_ipv6state is deprecated: The 'bgp_session_info.0.bgp_ipv6state' field has been deprecated. Please use 'bgp_session_info.0.bgp_ipv6_state' instead.""")
|
11961
|
-
|
11962
11958
|
return pulumi.get(self, "bgp_ipv6state")
|
11963
11959
|
|
11964
11960
|
@property
|
@@ -12318,10 +12314,8 @@ class IpsecConnectionTunnelManagementPhaseOneDetail(dict):
|
|
12318
12314
|
|
12319
12315
|
@property
|
12320
12316
|
@pulumi.getter(name="remainingLifetime")
|
12317
|
+
@_utilities.deprecated("""The 'phase_one_details.0.remaining_lifetime' field has been deprecated. Please use 'phase_one_details.0.remaining_lifetime_int' instead.""")
|
12321
12318
|
def remaining_lifetime(self) -> Optional[str]:
|
12322
|
-
warnings.warn("""The 'phase_one_details.0.remaining_lifetime' field has been deprecated. Please use 'phase_one_details.0.remaining_lifetime_int' instead.""", DeprecationWarning)
|
12323
|
-
pulumi.log.warn("""remaining_lifetime is deprecated: The 'phase_one_details.0.remaining_lifetime' field has been deprecated. Please use 'phase_one_details.0.remaining_lifetime_int' instead.""")
|
12324
|
-
|
12325
12319
|
return pulumi.get(self, "remaining_lifetime")
|
12326
12320
|
|
12327
12321
|
@property
|
@@ -12519,10 +12513,8 @@ class IpsecConnectionTunnelManagementPhaseTwoDetail(dict):
|
|
12519
12513
|
|
12520
12514
|
@property
|
12521
12515
|
@pulumi.getter(name="remainingLifetime")
|
12516
|
+
@_utilities.deprecated("""The 'phase_two_details.0.remaining_lifetime' field has been deprecated. Please use 'phase_two_details.0.remaining_lifetime_int' instead.""")
|
12522
12517
|
def remaining_lifetime(self) -> Optional[str]:
|
12523
|
-
warnings.warn("""The 'phase_two_details.0.remaining_lifetime' field has been deprecated. Please use 'phase_two_details.0.remaining_lifetime_int' instead.""", DeprecationWarning)
|
12524
|
-
pulumi.log.warn("""remaining_lifetime is deprecated: The 'phase_two_details.0.remaining_lifetime' field has been deprecated. Please use 'phase_two_details.0.remaining_lifetime_int' instead.""")
|
12525
|
-
|
12526
12518
|
return pulumi.get(self, "remaining_lifetime")
|
12527
12519
|
|
12528
12520
|
@property
|
@@ -12842,6 +12834,7 @@ class RouteTableRouteRule(dict):
|
|
12842
12834
|
|
12843
12835
|
@property
|
12844
12836
|
@pulumi.getter(name="cidrBlock")
|
12837
|
+
@_utilities.deprecated("""The 'cidr_block' field has been deprecated. Please use 'destination' instead.""")
|
12845
12838
|
def cidr_block(self) -> Optional[str]:
|
12846
12839
|
"""
|
12847
12840
|
(Updatable) Deprecated. Instead use `destination` and `destinationType`. Requests that include both `cidrBlock` and `destination` will be rejected.
|
@@ -12852,9 +12845,6 @@ class RouteTableRouteRule(dict):
|
|
12852
12845
|
|
12853
12846
|
Example: `0.0.0.0/0`
|
12854
12847
|
"""
|
12855
|
-
warnings.warn("""The 'cidr_block' field has been deprecated. Please use 'destination' instead.""", DeprecationWarning)
|
12856
|
-
pulumi.log.warn("""cidr_block is deprecated: The 'cidr_block' field has been deprecated. Please use 'destination' instead.""")
|
12857
|
-
|
12858
12848
|
return pulumi.get(self, "cidr_block")
|
12859
12849
|
|
12860
12850
|
@property
|
@@ -16310,10 +16300,8 @@ class GetBootVolumesBootVolumeResult(dict):
|
|
16310
16300
|
|
16311
16301
|
@property
|
16312
16302
|
@pulumi.getter(name="backupPolicyId")
|
16303
|
+
@_utilities.deprecated("""The 'backup_policy_id' field has been deprecated. Please use the 'oci_core_volume_backup_policy_assignment' resource instead.""")
|
16313
16304
|
def backup_policy_id(self) -> str:
|
16314
|
-
warnings.warn("""The 'backup_policy_id' field has been deprecated. Please use the 'oci_core_volume_backup_policy_assignment' resource instead.""", DeprecationWarning)
|
16315
|
-
pulumi.log.warn("""backup_policy_id is deprecated: The 'backup_policy_id' field has been deprecated. Please use the 'oci_core_volume_backup_policy_assignment' resource instead.""")
|
16316
|
-
|
16317
16305
|
return pulumi.get(self, "backup_policy_id")
|
16318
16306
|
|
16319
16307
|
@property
|
@@ -35211,10 +35199,8 @@ class GetInstancesInstanceResult(dict):
|
|
35211
35199
|
|
35212
35200
|
@property
|
35213
35201
|
@pulumi.getter(name="hostnameLabel")
|
35202
|
+
@_utilities.deprecated("""The 'hostname_label' field has been deprecated. Please use 'hostname_label under create_vnic_details' instead.""")
|
35214
35203
|
def hostname_label(self) -> str:
|
35215
|
-
warnings.warn("""The 'hostname_label' field has been deprecated. Please use 'hostname_label under create_vnic_details' instead.""", DeprecationWarning)
|
35216
|
-
pulumi.log.warn("""hostname_label is deprecated: The 'hostname_label' field has been deprecated. Please use 'hostname_label under create_vnic_details' instead.""")
|
35217
|
-
|
35218
35204
|
return pulumi.get(self, "hostname_label")
|
35219
35205
|
|
35220
35206
|
@property
|
@@ -35227,13 +35213,11 @@ class GetInstancesInstanceResult(dict):
|
|
35227
35213
|
|
35228
35214
|
@property
|
35229
35215
|
@pulumi.getter
|
35216
|
+
@_utilities.deprecated("""The 'image' field has been deprecated. Please use 'source_details' instead. If both fields are specified, then 'source_details' will be used.""")
|
35230
35217
|
def image(self) -> str:
|
35231
35218
|
"""
|
35232
35219
|
Deprecated. Use `sourceDetails` instead.
|
35233
35220
|
"""
|
35234
|
-
warnings.warn("""The 'image' field has been deprecated. Please use 'source_details' instead. If both fields are specified, then 'source_details' will be used.""", DeprecationWarning)
|
35235
|
-
pulumi.log.warn("""image is deprecated: The 'image' field has been deprecated. Please use 'source_details' instead. If both fields are specified, then 'source_details' will be used.""")
|
35236
|
-
|
35237
35221
|
return pulumi.get(self, "image")
|
35238
35222
|
|
35239
35223
|
@property
|
@@ -35387,10 +35371,8 @@ class GetInstancesInstanceResult(dict):
|
|
35387
35371
|
|
35388
35372
|
@property
|
35389
35373
|
@pulumi.getter(name="subnetId")
|
35374
|
+
@_utilities.deprecated("""The 'subnet_id' field has been deprecated. Please use 'subnet_id under create_vnic_details' instead.""")
|
35390
35375
|
def subnet_id(self) -> str:
|
35391
|
-
warnings.warn("""The 'subnet_id' field has been deprecated. Please use 'subnet_id under create_vnic_details' instead.""", DeprecationWarning)
|
35392
|
-
pulumi.log.warn("""subnet_id is deprecated: The 'subnet_id' field has been deprecated. Please use 'subnet_id under create_vnic_details' instead.""")
|
35393
|
-
|
35394
35376
|
return pulumi.get(self, "subnet_id")
|
35395
35377
|
|
35396
35378
|
@property
|
@@ -37065,10 +37047,8 @@ class GetIpsecConnectionTunnelBgpSessionInfoResult(dict):
|
|
37065
37047
|
|
37066
37048
|
@property
|
37067
37049
|
@pulumi.getter(name="bgpIpv6state")
|
37050
|
+
@_utilities.deprecated("""The 'bgp_session_info.0.bgp_ipv6state' field has been deprecated. Please use 'bgp_session_info.0.bgp_ipv6_state' instead.""")
|
37068
37051
|
def bgp_ipv6state(self) -> str:
|
37069
|
-
warnings.warn("""The 'bgp_session_info.0.bgp_ipv6state' field has been deprecated. Please use 'bgp_session_info.0.bgp_ipv6_state' instead.""", DeprecationWarning)
|
37070
|
-
pulumi.log.warn("""bgp_ipv6state is deprecated: The 'bgp_session_info.0.bgp_ipv6state' field has been deprecated. Please use 'bgp_session_info.0.bgp_ipv6_state' instead.""")
|
37071
|
-
|
37072
37052
|
return pulumi.get(self, "bgp_ipv6state")
|
37073
37053
|
|
37074
37054
|
@property
|
@@ -37301,10 +37281,8 @@ class GetIpsecConnectionTunnelPhaseOneDetailResult(dict):
|
|
37301
37281
|
|
37302
37282
|
@property
|
37303
37283
|
@pulumi.getter(name="remainingLifetime")
|
37284
|
+
@_utilities.deprecated("""The 'phase_one_details.0.remaining_lifetime' field has been deprecated. Please use 'phase_one_details.0.remaining_lifetime_int' instead.""")
|
37304
37285
|
def remaining_lifetime(self) -> str:
|
37305
|
-
warnings.warn("""The 'phase_one_details.0.remaining_lifetime' field has been deprecated. Please use 'phase_one_details.0.remaining_lifetime_int' instead.""", DeprecationWarning)
|
37306
|
-
pulumi.log.warn("""remaining_lifetime is deprecated: The 'phase_one_details.0.remaining_lifetime' field has been deprecated. Please use 'phase_one_details.0.remaining_lifetime_int' instead.""")
|
37307
|
-
|
37308
37286
|
return pulumi.get(self, "remaining_lifetime")
|
37309
37287
|
|
37310
37288
|
@property
|
@@ -37450,10 +37428,8 @@ class GetIpsecConnectionTunnelPhaseTwoDetailResult(dict):
|
|
37450
37428
|
|
37451
37429
|
@property
|
37452
37430
|
@pulumi.getter(name="remainingLifetime")
|
37431
|
+
@_utilities.deprecated("""The 'phase_two_details.0.remaining_lifetime' field has been deprecated. Please use 'phase_two_details.0.remaining_lifetime_int' instead.""")
|
37453
37432
|
def remaining_lifetime(self) -> str:
|
37454
|
-
warnings.warn("""The 'phase_two_details.0.remaining_lifetime' field has been deprecated. Please use 'phase_two_details.0.remaining_lifetime_int' instead.""", DeprecationWarning)
|
37455
|
-
pulumi.log.warn("""remaining_lifetime is deprecated: The 'phase_two_details.0.remaining_lifetime' field has been deprecated. Please use 'phase_two_details.0.remaining_lifetime_int' instead.""")
|
37456
|
-
|
37457
37433
|
return pulumi.get(self, "remaining_lifetime")
|
37458
37434
|
|
37459
37435
|
@property
|
@@ -37890,10 +37866,8 @@ class GetIpsecConnectionTunnelsIpSecConnectionTunnelBgpSessionInfoResult(dict):
|
|
37890
37866
|
|
37891
37867
|
@property
|
37892
37868
|
@pulumi.getter(name="bgpIpv6state")
|
37869
|
+
@_utilities.deprecated("""The 'bgp_session_info.0.bgp_ipv6state' field has been deprecated. Please use 'bgp_session_info.0.bgp_ipv6_state' instead.""")
|
37893
37870
|
def bgp_ipv6state(self) -> str:
|
37894
|
-
warnings.warn("""The 'bgp_session_info.0.bgp_ipv6state' field has been deprecated. Please use 'bgp_session_info.0.bgp_ipv6_state' instead.""", DeprecationWarning)
|
37895
|
-
pulumi.log.warn("""bgp_ipv6state is deprecated: The 'bgp_session_info.0.bgp_ipv6state' field has been deprecated. Please use 'bgp_session_info.0.bgp_ipv6_state' instead.""")
|
37896
|
-
|
37897
37871
|
return pulumi.get(self, "bgp_ipv6state")
|
37898
37872
|
|
37899
37873
|
@property
|
@@ -38126,10 +38100,8 @@ class GetIpsecConnectionTunnelsIpSecConnectionTunnelPhaseOneDetailResult(dict):
|
|
38126
38100
|
|
38127
38101
|
@property
|
38128
38102
|
@pulumi.getter(name="remainingLifetime")
|
38103
|
+
@_utilities.deprecated("""The 'phase_one_details.0.remaining_lifetime' field has been deprecated. Please use 'phase_one_details.0.remaining_lifetime_int' instead.""")
|
38129
38104
|
def remaining_lifetime(self) -> str:
|
38130
|
-
warnings.warn("""The 'phase_one_details.0.remaining_lifetime' field has been deprecated. Please use 'phase_one_details.0.remaining_lifetime_int' instead.""", DeprecationWarning)
|
38131
|
-
pulumi.log.warn("""remaining_lifetime is deprecated: The 'phase_one_details.0.remaining_lifetime' field has been deprecated. Please use 'phase_one_details.0.remaining_lifetime_int' instead.""")
|
38132
|
-
|
38133
38105
|
return pulumi.get(self, "remaining_lifetime")
|
38134
38106
|
|
38135
38107
|
@property
|
@@ -38275,10 +38247,8 @@ class GetIpsecConnectionTunnelsIpSecConnectionTunnelPhaseTwoDetailResult(dict):
|
|
38275
38247
|
|
38276
38248
|
@property
|
38277
38249
|
@pulumi.getter(name="remainingLifetime")
|
38250
|
+
@_utilities.deprecated("""The 'phase_two_details.0.remaining_lifetime' field has been deprecated. Please use 'phase_two_details.0.remaining_lifetime_int' instead.""")
|
38278
38251
|
def remaining_lifetime(self) -> str:
|
38279
|
-
warnings.warn("""The 'phase_two_details.0.remaining_lifetime' field has been deprecated. Please use 'phase_two_details.0.remaining_lifetime_int' instead.""", DeprecationWarning)
|
38280
|
-
pulumi.log.warn("""remaining_lifetime is deprecated: The 'phase_two_details.0.remaining_lifetime' field has been deprecated. Please use 'phase_two_details.0.remaining_lifetime_int' instead.""")
|
38281
|
-
|
38282
38252
|
return pulumi.get(self, "remaining_lifetime")
|
38283
38253
|
|
38284
38254
|
@property
|
@@ -40641,13 +40611,11 @@ class GetRouteTablesRouteTableRouteRuleResult(dict):
|
|
40641
40611
|
|
40642
40612
|
@property
|
40643
40613
|
@pulumi.getter(name="cidrBlock")
|
40614
|
+
@_utilities.deprecated("""The 'cidr_block' field has been deprecated. Please use 'destination' instead.""")
|
40644
40615
|
def cidr_block(self) -> str:
|
40645
40616
|
"""
|
40646
40617
|
Deprecated. Instead use `destination` and `destinationType`. Requests that include both `cidrBlock` and `destination` will be rejected.
|
40647
40618
|
"""
|
40648
|
-
warnings.warn("""The 'cidr_block' field has been deprecated. Please use 'destination' instead.""", DeprecationWarning)
|
40649
|
-
pulumi.log.warn("""cidr_block is deprecated: The 'cidr_block' field has been deprecated. Please use 'destination' instead.""")
|
40650
|
-
|
40651
40619
|
return pulumi.get(self, "cidr_block")
|
40652
40620
|
|
40653
40621
|
@property
|
@@ -44361,13 +44329,11 @@ class GetVirtualCircuitsVirtualCircuitResult(dict):
|
|
44361
44329
|
|
44362
44330
|
@property
|
44363
44331
|
@pulumi.getter(name="bgpManagement")
|
44332
|
+
@_utilities.deprecated("""The 'bgp_management' field has been deprecated. Please use the 'oci_core_fast_connect_provider_service' data source instead.""")
|
44364
44333
|
def bgp_management(self) -> str:
|
44365
44334
|
"""
|
44366
44335
|
Deprecated. Instead use the information in [FastConnectProviderService](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/FastConnectProviderService/).
|
44367
44336
|
"""
|
44368
|
-
warnings.warn("""The 'bgp_management' field has been deprecated. Please use the 'oci_core_fast_connect_provider_service' data source instead.""", DeprecationWarning)
|
44369
|
-
pulumi.log.warn("""bgp_management is deprecated: The 'bgp_management' field has been deprecated. Please use the 'oci_core_fast_connect_provider_service' data source instead.""")
|
44370
|
-
|
44371
44337
|
return pulumi.get(self, "bgp_management")
|
44372
44338
|
|
44373
44339
|
@property
|
@@ -44404,13 +44370,11 @@ class GetVirtualCircuitsVirtualCircuitResult(dict):
|
|
44404
44370
|
|
44405
44371
|
@property
|
44406
44372
|
@pulumi.getter(name="customerBgpAsn")
|
44373
|
+
@_utilities.deprecated("""The 'customer_bgp_asn' field has been deprecated. Please use 'customer_asn' instead.""")
|
44407
44374
|
def customer_bgp_asn(self) -> int:
|
44408
44375
|
"""
|
44409
44376
|
Deprecated. Instead use `customerAsn`. If you specify values for both, the request will be rejected.
|
44410
44377
|
"""
|
44411
|
-
warnings.warn("""The 'customer_bgp_asn' field has been deprecated. Please use 'customer_asn' instead.""", DeprecationWarning)
|
44412
|
-
pulumi.log.warn("""customer_bgp_asn is deprecated: The 'customer_bgp_asn' field has been deprecated. Please use 'customer_asn' instead.""")
|
44413
|
-
|
44414
44378
|
return pulumi.get(self, "customer_bgp_asn")
|
44415
44379
|
|
44416
44380
|
@property
|
@@ -45485,13 +45449,11 @@ class GetVolumeAttachmentsVolumeAttachmentResult(dict):
|
|
45485
45449
|
|
45486
45450
|
@property
|
45487
45451
|
@pulumi.getter(name="compartmentId")
|
45452
|
+
@_utilities.deprecated("""The 'compartment_id' field has been deprecated and may be removed in a future version. Do not use this field.""")
|
45488
45453
|
def compartment_id(self) -> str:
|
45489
45454
|
"""
|
45490
45455
|
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
45491
45456
|
"""
|
45492
|
-
warnings.warn("""The 'compartment_id' field has been deprecated and may be removed in a future version. Do not use this field.""", DeprecationWarning)
|
45493
|
-
pulumi.log.warn("""compartment_id is deprecated: The 'compartment_id' field has been deprecated and may be removed in a future version. Do not use this field.""")
|
45494
|
-
|
45495
45457
|
return pulumi.get(self, "compartment_id")
|
45496
45458
|
|
45497
45459
|
@property
|
@@ -46193,13 +46155,11 @@ class GetVolumeBackupsVolumeBackupResult(dict):
|
|
46193
46155
|
|
46194
46156
|
@property
|
46195
46157
|
@pulumi.getter(name="sizeInMbs")
|
46158
|
+
@_utilities.deprecated("""The 'size_in_mbs' field has been deprecated. Please use 'size_in_gbs' instead.""")
|
46196
46159
|
def size_in_mbs(self) -> str:
|
46197
46160
|
"""
|
46198
46161
|
The size of the volume in MBs. The value must be a multiple of 1024. This field is deprecated. Please use `size_in_gbs`.
|
46199
46162
|
"""
|
46200
|
-
warnings.warn("""The 'size_in_mbs' field has been deprecated. Please use 'size_in_gbs' instead.""", DeprecationWarning)
|
46201
|
-
pulumi.log.warn("""size_in_mbs is deprecated: The 'size_in_mbs' field has been deprecated. Please use 'size_in_gbs' instead.""")
|
46202
|
-
|
46203
46163
|
return pulumi.get(self, "size_in_mbs")
|
46204
46164
|
|
46205
46165
|
@property
|
@@ -46273,13 +46233,11 @@ class GetVolumeBackupsVolumeBackupResult(dict):
|
|
46273
46233
|
|
46274
46234
|
@property
|
46275
46235
|
@pulumi.getter(name="uniqueSizeInMbs")
|
46236
|
+
@_utilities.deprecated("""The 'unique_size_in_mbs' field has been deprecated. Please use 'unique_size_in_gbs' instead.""")
|
46276
46237
|
def unique_size_in_mbs(self) -> str:
|
46277
46238
|
"""
|
46278
46239
|
The size used by the backup, in MBs. It is typically smaller than sizeInMBs, depending on the space consumed on the volume and whether the backup is full or incremental. This field is deprecated. Please use uniqueSizeInGBs.
|
46279
46240
|
"""
|
46280
|
-
warnings.warn("""The 'unique_size_in_mbs' field has been deprecated. Please use 'unique_size_in_gbs' instead.""", DeprecationWarning)
|
46281
|
-
pulumi.log.warn("""unique_size_in_mbs is deprecated: The 'unique_size_in_mbs' field has been deprecated. Please use 'unique_size_in_gbs' instead.""")
|
46282
|
-
|
46283
46241
|
return pulumi.get(self, "unique_size_in_mbs")
|
46284
46242
|
|
46285
46243
|
@property
|
@@ -46945,10 +46903,8 @@ class GetVolumeGroupsVolumeGroupResult(dict):
|
|
46945
46903
|
|
46946
46904
|
@property
|
46947
46905
|
@pulumi.getter(name="backupPolicyId")
|
46906
|
+
@_utilities.deprecated("""The 'backup_policy_id' field has been deprecated. Please use the 'oci_core_volume_backup_policy_assignment' resource instead.""")
|
46948
46907
|
def backup_policy_id(self) -> str:
|
46949
|
-
warnings.warn("""The 'backup_policy_id' field has been deprecated. Please use the 'oci_core_volume_backup_policy_assignment' resource instead.""", DeprecationWarning)
|
46950
|
-
pulumi.log.warn("""backup_policy_id is deprecated: The 'backup_policy_id' field has been deprecated. Please use the 'oci_core_volume_backup_policy_assignment' resource instead.""")
|
46951
|
-
|
46952
46908
|
return pulumi.get(self, "backup_policy_id")
|
46953
46909
|
|
46954
46910
|
@property
|
@@ -47329,10 +47285,8 @@ class GetVolumesVolumeResult(dict):
|
|
47329
47285
|
|
47330
47286
|
@property
|
47331
47287
|
@pulumi.getter(name="backupPolicyId")
|
47288
|
+
@_utilities.deprecated("""The 'backup_policy_id' field has been deprecated. Please use the 'oci_core_volume_backup_policy_assignment' resource instead.""")
|
47332
47289
|
def backup_policy_id(self) -> str:
|
47333
|
-
warnings.warn("""The 'backup_policy_id' field has been deprecated. Please use the 'oci_core_volume_backup_policy_assignment' resource instead.""", DeprecationWarning)
|
47334
|
-
pulumi.log.warn("""backup_policy_id is deprecated: The 'backup_policy_id' field has been deprecated. Please use the 'oci_core_volume_backup_policy_assignment' resource instead.""")
|
47335
|
-
|
47336
47290
|
return pulumi.get(self, "backup_policy_id")
|
47337
47291
|
|
47338
47292
|
@property
|
@@ -47430,13 +47384,11 @@ class GetVolumesVolumeResult(dict):
|
|
47430
47384
|
|
47431
47385
|
@property
|
47432
47386
|
@pulumi.getter(name="sizeInMbs")
|
47387
|
+
@_utilities.deprecated("""The 'size_in_mbs' field has been deprecated. Please use 'size_in_gbs' instead.""")
|
47433
47388
|
def size_in_mbs(self) -> str:
|
47434
47389
|
"""
|
47435
47390
|
The size of the volume in MBs. This field is deprecated. Use `size_in_gbs` instead.
|
47436
47391
|
"""
|
47437
|
-
warnings.warn("""The 'size_in_mbs' field has been deprecated. Please use 'size_in_gbs' instead.""", DeprecationWarning)
|
47438
|
-
pulumi.log.warn("""size_in_mbs is deprecated: The 'size_in_mbs' field has been deprecated. Please use 'size_in_gbs' instead.""")
|
47439
|
-
|
47440
47392
|
return pulumi.get(self, "size_in_mbs")
|
47441
47393
|
|
47442
47394
|
@property
|
@@ -179,13 +179,11 @@ class VirtualCircuitArgs:
|
|
179
179
|
|
180
180
|
@property
|
181
181
|
@pulumi.getter(name="customerBgpAsn")
|
182
|
+
@_utilities.deprecated("""The 'customer_bgp_asn' field has been deprecated. Please use 'customer_asn' instead.""")
|
182
183
|
def customer_bgp_asn(self) -> Optional[pulumi.Input[int]]:
|
183
184
|
"""
|
184
185
|
(Updatable) Deprecated. Instead use `customerAsn`. If you specify values for both, the request will be rejected.
|
185
186
|
"""
|
186
|
-
warnings.warn("""The 'customer_bgp_asn' field has been deprecated. Please use 'customer_asn' instead.""", DeprecationWarning)
|
187
|
-
pulumi.log.warn("""customer_bgp_asn is deprecated: The 'customer_bgp_asn' field has been deprecated. Please use 'customer_asn' instead.""")
|
188
|
-
|
189
187
|
return pulumi.get(self, "customer_bgp_asn")
|
190
188
|
|
191
189
|
@customer_bgp_asn.setter
|
@@ -504,13 +502,11 @@ class _VirtualCircuitState:
|
|
504
502
|
|
505
503
|
@property
|
506
504
|
@pulumi.getter(name="bgpManagement")
|
505
|
+
@_utilities.deprecated("""The 'bgp_management' field has been deprecated. Please use the 'oci_core_fast_connect_provider_service' data source instead.""")
|
507
506
|
def bgp_management(self) -> Optional[pulumi.Input[str]]:
|
508
507
|
"""
|
509
508
|
Deprecated. Instead use the information in [FastConnectProviderService](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/FastConnectProviderService/).
|
510
509
|
"""
|
511
|
-
warnings.warn("""The 'bgp_management' field has been deprecated. Please use the 'oci_core_fast_connect_provider_service' data source instead.""", DeprecationWarning)
|
512
|
-
pulumi.log.warn("""bgp_management is deprecated: The 'bgp_management' field has been deprecated. Please use the 'oci_core_fast_connect_provider_service' data source instead.""")
|
513
|
-
|
514
510
|
return pulumi.get(self, "bgp_management")
|
515
511
|
|
516
512
|
@bgp_management.setter
|
@@ -567,13 +563,11 @@ class _VirtualCircuitState:
|
|
567
563
|
|
568
564
|
@property
|
569
565
|
@pulumi.getter(name="customerBgpAsn")
|
566
|
+
@_utilities.deprecated("""The 'customer_bgp_asn' field has been deprecated. Please use 'customer_asn' instead.""")
|
570
567
|
def customer_bgp_asn(self) -> Optional[pulumi.Input[int]]:
|
571
568
|
"""
|
572
569
|
(Updatable) Deprecated. Instead use `customerAsn`. If you specify values for both, the request will be rejected.
|
573
570
|
"""
|
574
|
-
warnings.warn("""The 'customer_bgp_asn' field has been deprecated. Please use 'customer_asn' instead.""", DeprecationWarning)
|
575
|
-
pulumi.log.warn("""customer_bgp_asn is deprecated: The 'customer_bgp_asn' field has been deprecated. Please use 'customer_asn' instead.""")
|
576
|
-
|
577
571
|
return pulumi.get(self, "customer_bgp_asn")
|
578
572
|
|
579
573
|
@customer_bgp_asn.setter
|
@@ -1233,13 +1227,11 @@ class VirtualCircuit(pulumi.CustomResource):
|
|
1233
1227
|
|
1234
1228
|
@property
|
1235
1229
|
@pulumi.getter(name="bgpManagement")
|
1230
|
+
@_utilities.deprecated("""The 'bgp_management' field has been deprecated. Please use the 'oci_core_fast_connect_provider_service' data source instead.""")
|
1236
1231
|
def bgp_management(self) -> pulumi.Output[str]:
|
1237
1232
|
"""
|
1238
1233
|
Deprecated. Instead use the information in [FastConnectProviderService](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/FastConnectProviderService/).
|
1239
1234
|
"""
|
1240
|
-
warnings.warn("""The 'bgp_management' field has been deprecated. Please use the 'oci_core_fast_connect_provider_service' data source instead.""", DeprecationWarning)
|
1241
|
-
pulumi.log.warn("""bgp_management is deprecated: The 'bgp_management' field has been deprecated. Please use the 'oci_core_fast_connect_provider_service' data source instead.""")
|
1242
|
-
|
1243
1235
|
return pulumi.get(self, "bgp_management")
|
1244
1236
|
|
1245
1237
|
@property
|
@@ -1276,13 +1268,11 @@ class VirtualCircuit(pulumi.CustomResource):
|
|
1276
1268
|
|
1277
1269
|
@property
|
1278
1270
|
@pulumi.getter(name="customerBgpAsn")
|
1271
|
+
@_utilities.deprecated("""The 'customer_bgp_asn' field has been deprecated. Please use 'customer_asn' instead.""")
|
1279
1272
|
def customer_bgp_asn(self) -> pulumi.Output[int]:
|
1280
1273
|
"""
|
1281
1274
|
(Updatable) Deprecated. Instead use `customerAsn`. If you specify values for both, the request will be rejected.
|
1282
1275
|
"""
|
1283
|
-
warnings.warn("""The 'customer_bgp_asn' field has been deprecated. Please use 'customer_asn' instead.""", DeprecationWarning)
|
1284
|
-
pulumi.log.warn("""customer_bgp_asn is deprecated: The 'customer_bgp_asn' field has been deprecated. Please use 'customer_asn' instead.""")
|
1285
|
-
|
1286
1276
|
return pulumi.get(self, "customer_bgp_asn")
|
1287
1277
|
|
1288
1278
|
@property
|
pulumi_oci/core/volume.py
CHANGED
@@ -130,13 +130,11 @@ class VolumeArgs:
|
|
130
130
|
|
131
131
|
@property
|
132
132
|
@pulumi.getter(name="backupPolicyId")
|
133
|
+
@_utilities.deprecated("""The 'backup_policy_id' field has been deprecated. Please use the 'oci_core_volume_backup_policy_assignment' resource instead.""")
|
133
134
|
def backup_policy_id(self) -> Optional[pulumi.Input[str]]:
|
134
135
|
"""
|
135
136
|
If provided, specifies the ID of the volume backup policy to assign to the newly created volume. If omitted, no policy will be assigned. This field is deprecated. Use the `core_get_volume_backup_policy_assignments` instead to assign a backup policy to a volume.
|
136
137
|
"""
|
137
|
-
warnings.warn("""The 'backup_policy_id' field has been deprecated. Please use the 'oci_core_volume_backup_policy_assignment' resource instead.""", DeprecationWarning)
|
138
|
-
pulumi.log.warn("""backup_policy_id is deprecated: The 'backup_policy_id' field has been deprecated. Please use the 'oci_core_volume_backup_policy_assignment' resource instead.""")
|
139
|
-
|
140
138
|
return pulumi.get(self, "backup_policy_id")
|
141
139
|
|
142
140
|
@backup_policy_id.setter
|
@@ -250,13 +248,11 @@ class VolumeArgs:
|
|
250
248
|
|
251
249
|
@property
|
252
250
|
@pulumi.getter(name="sizeInMbs")
|
251
|
+
@_utilities.deprecated("""The 'size_in_mbs' field has been deprecated. Please use 'size_in_gbs' instead.""")
|
253
252
|
def size_in_mbs(self) -> Optional[pulumi.Input[str]]:
|
254
253
|
"""
|
255
254
|
The size of the volume in MBs. The value must be a multiple of 1024. This field is deprecated. Use `size_in_gbs` instead.
|
256
255
|
"""
|
257
|
-
warnings.warn("""The 'size_in_mbs' field has been deprecated. Please use 'size_in_gbs' instead.""", DeprecationWarning)
|
258
|
-
pulumi.log.warn("""size_in_mbs is deprecated: The 'size_in_mbs' field has been deprecated. Please use 'size_in_gbs' instead.""")
|
259
|
-
|
260
256
|
return pulumi.get(self, "size_in_mbs")
|
261
257
|
|
262
258
|
@size_in_mbs.setter
|
@@ -442,13 +438,11 @@ class _VolumeState:
|
|
442
438
|
|
443
439
|
@property
|
444
440
|
@pulumi.getter(name="backupPolicyId")
|
441
|
+
@_utilities.deprecated("""The 'backup_policy_id' field has been deprecated. Please use the 'oci_core_volume_backup_policy_assignment' resource instead.""")
|
445
442
|
def backup_policy_id(self) -> Optional[pulumi.Input[str]]:
|
446
443
|
"""
|
447
444
|
If provided, specifies the ID of the volume backup policy to assign to the newly created volume. If omitted, no policy will be assigned. This field is deprecated. Use the `core_get_volume_backup_policy_assignments` instead to assign a backup policy to a volume.
|
448
445
|
"""
|
449
|
-
warnings.warn("""The 'backup_policy_id' field has been deprecated. Please use the 'oci_core_volume_backup_policy_assignment' resource instead.""", DeprecationWarning)
|
450
|
-
pulumi.log.warn("""backup_policy_id is deprecated: The 'backup_policy_id' field has been deprecated. Please use the 'oci_core_volume_backup_policy_assignment' resource instead.""")
|
451
|
-
|
452
446
|
return pulumi.get(self, "backup_policy_id")
|
453
447
|
|
454
448
|
@backup_policy_id.setter
|
@@ -586,13 +580,11 @@ class _VolumeState:
|
|
586
580
|
|
587
581
|
@property
|
588
582
|
@pulumi.getter(name="sizeInMbs")
|
583
|
+
@_utilities.deprecated("""The 'size_in_mbs' field has been deprecated. Please use 'size_in_gbs' instead.""")
|
589
584
|
def size_in_mbs(self) -> Optional[pulumi.Input[str]]:
|
590
585
|
"""
|
591
586
|
The size of the volume in MBs. The value must be a multiple of 1024. This field is deprecated. Use `size_in_gbs` instead.
|
592
587
|
"""
|
593
|
-
warnings.warn("""The 'size_in_mbs' field has been deprecated. Please use 'size_in_gbs' instead.""", DeprecationWarning)
|
594
|
-
pulumi.log.warn("""size_in_mbs is deprecated: The 'size_in_mbs' field has been deprecated. Please use 'size_in_gbs' instead.""")
|
595
|
-
|
596
588
|
return pulumi.get(self, "size_in_mbs")
|
597
589
|
|
598
590
|
@size_in_mbs.setter
|
@@ -1047,13 +1039,11 @@ class Volume(pulumi.CustomResource):
|
|
1047
1039
|
|
1048
1040
|
@property
|
1049
1041
|
@pulumi.getter(name="backupPolicyId")
|
1042
|
+
@_utilities.deprecated("""The 'backup_policy_id' field has been deprecated. Please use the 'oci_core_volume_backup_policy_assignment' resource instead.""")
|
1050
1043
|
def backup_policy_id(self) -> pulumi.Output[str]:
|
1051
1044
|
"""
|
1052
1045
|
If provided, specifies the ID of the volume backup policy to assign to the newly created volume. If omitted, no policy will be assigned. This field is deprecated. Use the `core_get_volume_backup_policy_assignments` instead to assign a backup policy to a volume.
|
1053
1046
|
"""
|
1054
|
-
warnings.warn("""The 'backup_policy_id' field has been deprecated. Please use the 'oci_core_volume_backup_policy_assignment' resource instead.""", DeprecationWarning)
|
1055
|
-
pulumi.log.warn("""backup_policy_id is deprecated: The 'backup_policy_id' field has been deprecated. Please use the 'oci_core_volume_backup_policy_assignment' resource instead.""")
|
1056
|
-
|
1057
1047
|
return pulumi.get(self, "backup_policy_id")
|
1058
1048
|
|
1059
1049
|
@property
|
@@ -1143,13 +1133,11 @@ class Volume(pulumi.CustomResource):
|
|
1143
1133
|
|
1144
1134
|
@property
|
1145
1135
|
@pulumi.getter(name="sizeInMbs")
|
1136
|
+
@_utilities.deprecated("""The 'size_in_mbs' field has been deprecated. Please use 'size_in_gbs' instead.""")
|
1146
1137
|
def size_in_mbs(self) -> pulumi.Output[str]:
|
1147
1138
|
"""
|
1148
1139
|
The size of the volume in MBs. The value must be a multiple of 1024. This field is deprecated. Use `size_in_gbs` instead.
|
1149
1140
|
"""
|
1150
|
-
warnings.warn("""The 'size_in_mbs' field has been deprecated. Please use 'size_in_gbs' instead.""", DeprecationWarning)
|
1151
|
-
pulumi.log.warn("""size_in_mbs is deprecated: The 'size_in_mbs' field has been deprecated. Please use 'size_in_gbs' instead.""")
|
1152
|
-
|
1153
1141
|
return pulumi.get(self, "size_in_mbs")
|
1154
1142
|
|
1155
1143
|
@property
|