pulumi-oci 1.20.0a1706213871__py3-none-any.whl → 1.21.0a1706309702__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/core/get_boot_volume_attachments.py +36 -2
- pulumi_oci/database/autonomous_database_wallet.py +18 -0
- pulumi_oci/database/vm_cluster_network.py +20 -7
- pulumi_oci/loadbalancer/_inputs.py +12 -0
- pulumi_oci/loadbalancer/outputs.py +12 -0
- {pulumi_oci-1.20.0a1706213871.dist-info → pulumi_oci-1.21.0a1706309702.dist-info}/METADATA +1 -1
- {pulumi_oci-1.20.0a1706213871.dist-info → pulumi_oci-1.21.0a1706309702.dist-info}/RECORD +9 -9
- {pulumi_oci-1.20.0a1706213871.dist-info → pulumi_oci-1.21.0a1706309702.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.20.0a1706213871.dist-info → pulumi_oci-1.21.0a1706309702.dist-info}/top_level.txt +0 -0
@@ -122,7 +122,24 @@ def get_boot_volume_attachments(availability_domain: Optional[str] = None,
|
|
122
122
|
instance_id: Optional[str] = None,
|
123
123
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetBootVolumeAttachmentsResult:
|
124
124
|
"""
|
125
|
-
|
125
|
+
This data source provides the list of Boot Volume Attachments in Oracle Cloud Infrastructure Core service.
|
126
|
+
|
127
|
+
Lists the boot volume attachments in the specified compartment. You can filter the
|
128
|
+
list by specifying an instance OCID, boot volume OCID, or both.
|
129
|
+
|
130
|
+
## Example Usage
|
131
|
+
|
132
|
+
```python
|
133
|
+
import pulumi
|
134
|
+
import pulumi_oci as oci
|
135
|
+
|
136
|
+
test_boot_volume_attachments = oci.Core.get_boot_volume_attachments(availability_domain=var["boot_volume_attachment_availability_domain"],
|
137
|
+
compartment_id=var["compartment_id"],
|
138
|
+
boot_volume_id=oci_core_boot_volume["test_boot_volume"]["id"],
|
139
|
+
instance_id=oci_core_instance["test_instance"]["id"])
|
140
|
+
```
|
141
|
+
For more detailed implementation refer the instance example
|
142
|
+
|
126
143
|
|
127
144
|
:param str availability_domain: The name of the availability domain. Example: `Uocm:PHX-AD-1`
|
128
145
|
:param str boot_volume_id: The OCID of the boot volume.
|
@@ -156,7 +173,24 @@ def get_boot_volume_attachments_output(availability_domain: Optional[pulumi.Inpu
|
|
156
173
|
instance_id: Optional[pulumi.Input[Optional[str]]] = None,
|
157
174
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetBootVolumeAttachmentsResult]:
|
158
175
|
"""
|
159
|
-
|
176
|
+
This data source provides the list of Boot Volume Attachments in Oracle Cloud Infrastructure Core service.
|
177
|
+
|
178
|
+
Lists the boot volume attachments in the specified compartment. You can filter the
|
179
|
+
list by specifying an instance OCID, boot volume OCID, or both.
|
180
|
+
|
181
|
+
## Example Usage
|
182
|
+
|
183
|
+
```python
|
184
|
+
import pulumi
|
185
|
+
import pulumi_oci as oci
|
186
|
+
|
187
|
+
test_boot_volume_attachments = oci.Core.get_boot_volume_attachments(availability_domain=var["boot_volume_attachment_availability_domain"],
|
188
|
+
compartment_id=var["compartment_id"],
|
189
|
+
boot_volume_id=oci_core_boot_volume["test_boot_volume"]["id"],
|
190
|
+
instance_id=oci_core_instance["test_instance"]["id"])
|
191
|
+
```
|
192
|
+
For more detailed implementation refer the instance example
|
193
|
+
|
160
194
|
|
161
195
|
:param str availability_domain: The name of the availability domain. Example: `Uocm:PHX-AD-1`
|
162
196
|
:param str boot_volume_id: The OCID of the boot volume.
|
@@ -229,6 +229,15 @@ class AutonomousDatabaseWallet(pulumi.CustomResource):
|
|
229
229
|
password: Optional[pulumi.Input[str]] = None,
|
230
230
|
__props__=None):
|
231
231
|
"""
|
232
|
+
This resource provides the Autonomous Database Wallet resource in Oracle Cloud Infrastructure Database service.
|
233
|
+
|
234
|
+
Creates and downloads a wallet for the specified Autonomous Database.
|
235
|
+
|
236
|
+
If passing the base64 encoded content to a `local_file` resource, please use the `content_base64` attribute of the `local_file` resource.
|
237
|
+
See this example for more details.
|
238
|
+
|
239
|
+
Recreate the resource to create and download a new wallet.
|
240
|
+
|
232
241
|
## Example Usage
|
233
242
|
|
234
243
|
```python
|
@@ -267,6 +276,15 @@ class AutonomousDatabaseWallet(pulumi.CustomResource):
|
|
267
276
|
args: AutonomousDatabaseWalletArgs,
|
268
277
|
opts: Optional[pulumi.ResourceOptions] = None):
|
269
278
|
"""
|
279
|
+
This resource provides the Autonomous Database Wallet resource in Oracle Cloud Infrastructure Database service.
|
280
|
+
|
281
|
+
Creates and downloads a wallet for the specified Autonomous Database.
|
282
|
+
|
283
|
+
If passing the base64 encoded content to a `local_file` resource, please use the `content_base64` attribute of the `local_file` resource.
|
284
|
+
See this example for more details.
|
285
|
+
|
286
|
+
Recreate the resource to create and download a new wallet.
|
287
|
+
|
270
288
|
## Example Usage
|
271
289
|
|
272
290
|
```python
|
@@ -34,12 +34,13 @@ class VmClusterNetworkArgs:
|
|
34
34
|
:param pulumi.Input[str] display_name: The user-friendly name for the Exadata Cloud@Customer VM cluster network. The name does not need to be unique.
|
35
35
|
:param pulumi.Input[str] exadata_infrastructure_id: The Exadata infrastructure [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
36
36
|
:param pulumi.Input[Sequence[pulumi.Input['VmClusterNetworkScanArgs']]] scans: (Updatable) The SCAN details.
|
37
|
-
:param pulumi.Input[Sequence[pulumi.Input['VmClusterNetworkVmNetworkArgs']]] vm_networks:
|
37
|
+
:param pulumi.Input[Sequence[pulumi.Input['VmClusterNetworkVmNetworkArgs']]] vm_networks: Details of the client and backup networks.
|
38
38
|
:param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
|
39
39
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] dns: (Updatable) The list of DNS server IP addresses. Maximum of 3 allowed.
|
40
40
|
:param pulumi.Input[Sequence[pulumi.Input['VmClusterNetworkDrScanArgs']]] dr_scans: (Updatable) The SCAN details for DR network
|
41
41
|
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
42
42
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ntps: (Updatable) The list of NTP server IP addresses. Maximum of 3 allowed.
|
43
|
+
:param pulumi.Input[bool] validate_vm_cluster_network: (Updatable) A boolean flag indicating whether or not to validate VM cluster network after creation. Updates are not allowed on validated exadata VM cluster network. Note: Deleting a VM Cluster (Updatable) Details of the client and backup networks.
|
43
44
|
"""
|
44
45
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
45
46
|
pulumi.set(__self__, "display_name", display_name)
|
@@ -113,7 +114,7 @@ class VmClusterNetworkArgs:
|
|
113
114
|
@pulumi.getter(name="vmNetworks")
|
114
115
|
def vm_networks(self) -> pulumi.Input[Sequence[pulumi.Input['VmClusterNetworkVmNetworkArgs']]]:
|
115
116
|
"""
|
116
|
-
|
117
|
+
Details of the client and backup networks.
|
117
118
|
"""
|
118
119
|
return pulumi.get(self, "vm_networks")
|
119
120
|
|
@@ -193,6 +194,9 @@ class VmClusterNetworkArgs:
|
|
193
194
|
@property
|
194
195
|
@pulumi.getter(name="validateVmClusterNetwork")
|
195
196
|
def validate_vm_cluster_network(self) -> Optional[pulumi.Input[bool]]:
|
197
|
+
"""
|
198
|
+
(Updatable) A boolean flag indicating whether or not to validate VM cluster network after creation. Updates are not allowed on validated exadata VM cluster network. Note: Deleting a VM Cluster (Updatable) Details of the client and backup networks.
|
199
|
+
"""
|
196
200
|
return pulumi.get(self, "validate_vm_cluster_network")
|
197
201
|
|
198
202
|
@validate_vm_cluster_network.setter
|
@@ -233,8 +237,9 @@ class _VmClusterNetworkState:
|
|
233
237
|
:param pulumi.Input[Sequence[pulumi.Input['VmClusterNetworkScanArgs']]] scans: (Updatable) The SCAN details.
|
234
238
|
:param pulumi.Input[str] state: (Updatable) The current state of the VM cluster network nodes. CREATING - The resource is being created REQUIRES_VALIDATION - The resource is created and may not be usable until it is validated. VALIDATING - The resource is being validated and not available to use. VALIDATED - The resource is validated and is available for consumption by VM cluster. VALIDATION_FAILED - The resource validation has failed and might require user input to be corrected. UPDATING - The resource is being updated and not available to use. ALLOCATED - The resource is currently being used by VM cluster. TERMINATING - The resource is being deleted and not available to use. TERMINATED - The resource is deleted and unavailable. FAILED - The resource is in a failed state due to validation or other errors.
|
235
239
|
:param pulumi.Input[str] time_created: The date and time when the VM cluster network was created.
|
240
|
+
:param pulumi.Input[bool] validate_vm_cluster_network: (Updatable) A boolean flag indicating whether or not to validate VM cluster network after creation. Updates are not allowed on validated exadata VM cluster network. Note: Deleting a VM Cluster (Updatable) Details of the client and backup networks.
|
236
241
|
:param pulumi.Input[str] vm_cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the associated VM Cluster.
|
237
|
-
:param pulumi.Input[Sequence[pulumi.Input['VmClusterNetworkVmNetworkArgs']]] vm_networks:
|
242
|
+
:param pulumi.Input[Sequence[pulumi.Input['VmClusterNetworkVmNetworkArgs']]] vm_networks: Details of the client and backup networks.
|
238
243
|
"""
|
239
244
|
if action is not None:
|
240
245
|
pulumi.set(__self__, "action", action)
|
@@ -425,6 +430,9 @@ class _VmClusterNetworkState:
|
|
425
430
|
@property
|
426
431
|
@pulumi.getter(name="validateVmClusterNetwork")
|
427
432
|
def validate_vm_cluster_network(self) -> Optional[pulumi.Input[bool]]:
|
433
|
+
"""
|
434
|
+
(Updatable) A boolean flag indicating whether or not to validate VM cluster network after creation. Updates are not allowed on validated exadata VM cluster network. Note: Deleting a VM Cluster (Updatable) Details of the client and backup networks.
|
435
|
+
"""
|
428
436
|
return pulumi.get(self, "validate_vm_cluster_network")
|
429
437
|
|
430
438
|
@validate_vm_cluster_network.setter
|
@@ -447,7 +455,7 @@ class _VmClusterNetworkState:
|
|
447
455
|
@pulumi.getter(name="vmNetworks")
|
448
456
|
def vm_networks(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['VmClusterNetworkVmNetworkArgs']]]]:
|
449
457
|
"""
|
450
|
-
|
458
|
+
Details of the client and backup networks.
|
451
459
|
"""
|
452
460
|
return pulumi.get(self, "vm_networks")
|
453
461
|
|
@@ -545,7 +553,8 @@ class VmClusterNetwork(pulumi.CustomResource):
|
|
545
553
|
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
546
554
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ntps: (Updatable) The list of NTP server IP addresses. Maximum of 3 allowed.
|
547
555
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['VmClusterNetworkScanArgs']]]] scans: (Updatable) The SCAN details.
|
548
|
-
:param pulumi.Input[
|
556
|
+
:param pulumi.Input[bool] validate_vm_cluster_network: (Updatable) A boolean flag indicating whether or not to validate VM cluster network after creation. Updates are not allowed on validated exadata VM cluster network. Note: Deleting a VM Cluster (Updatable) Details of the client and backup networks.
|
557
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['VmClusterNetworkVmNetworkArgs']]]] vm_networks: Details of the client and backup networks.
|
549
558
|
"""
|
550
559
|
...
|
551
560
|
@overload
|
@@ -720,8 +729,9 @@ class VmClusterNetwork(pulumi.CustomResource):
|
|
720
729
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['VmClusterNetworkScanArgs']]]] scans: (Updatable) The SCAN details.
|
721
730
|
:param pulumi.Input[str] state: (Updatable) The current state of the VM cluster network nodes. CREATING - The resource is being created REQUIRES_VALIDATION - The resource is created and may not be usable until it is validated. VALIDATING - The resource is being validated and not available to use. VALIDATED - The resource is validated and is available for consumption by VM cluster. VALIDATION_FAILED - The resource validation has failed and might require user input to be corrected. UPDATING - The resource is being updated and not available to use. ALLOCATED - The resource is currently being used by VM cluster. TERMINATING - The resource is being deleted and not available to use. TERMINATED - The resource is deleted and unavailable. FAILED - The resource is in a failed state due to validation or other errors.
|
722
731
|
:param pulumi.Input[str] time_created: The date and time when the VM cluster network was created.
|
732
|
+
:param pulumi.Input[bool] validate_vm_cluster_network: (Updatable) A boolean flag indicating whether or not to validate VM cluster network after creation. Updates are not allowed on validated exadata VM cluster network. Note: Deleting a VM Cluster (Updatable) Details of the client and backup networks.
|
723
733
|
:param pulumi.Input[str] vm_cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the associated VM Cluster.
|
724
|
-
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['VmClusterNetworkVmNetworkArgs']]]] vm_networks:
|
734
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['VmClusterNetworkVmNetworkArgs']]]] vm_networks: Details of the client and backup networks.
|
725
735
|
"""
|
726
736
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
727
737
|
|
@@ -849,6 +859,9 @@ class VmClusterNetwork(pulumi.CustomResource):
|
|
849
859
|
@property
|
850
860
|
@pulumi.getter(name="validateVmClusterNetwork")
|
851
861
|
def validate_vm_cluster_network(self) -> pulumi.Output[Optional[bool]]:
|
862
|
+
"""
|
863
|
+
(Updatable) A boolean flag indicating whether or not to validate VM cluster network after creation. Updates are not allowed on validated exadata VM cluster network. Note: Deleting a VM Cluster (Updatable) Details of the client and backup networks.
|
864
|
+
"""
|
852
865
|
return pulumi.get(self, "validate_vm_cluster_network")
|
853
866
|
|
854
867
|
@property
|
@@ -863,7 +876,7 @@ class VmClusterNetwork(pulumi.CustomResource):
|
|
863
876
|
@pulumi.getter(name="vmNetworks")
|
864
877
|
def vm_networks(self) -> pulumi.Output[Sequence['outputs.VmClusterNetworkVmNetwork']]:
|
865
878
|
"""
|
866
|
-
|
879
|
+
Details of the client and backup networks.
|
867
880
|
"""
|
868
881
|
return pulumi.get(self, "vm_networks")
|
869
882
|
|
@@ -1056,12 +1056,18 @@ class LoadBalancerIpAddressDetailArgs:
|
|
1056
1056
|
class LoadBalancerIpAddressDetailReservedIpArgs:
|
1057
1057
|
def __init__(__self__, *,
|
1058
1058
|
id: Optional[pulumi.Input[str]] = None):
|
1059
|
+
"""
|
1060
|
+
:param pulumi.Input[str] id: Ocid of the pre-created public IP that should be attached to this load balancer. The public IP will be attached to a private IP. **Note** If public IP resource is present in the config, the pulumi preview will throw `After applying this step and refreshing, the plan was not empty` error, and `private_ip_id` needs to be added as an input argument to the public IP resource block or ignore from its lifecycle as shown in examples to resolve this error.
|
1061
|
+
"""
|
1059
1062
|
if id is not None:
|
1060
1063
|
pulumi.set(__self__, "id", id)
|
1061
1064
|
|
1062
1065
|
@property
|
1063
1066
|
@pulumi.getter
|
1064
1067
|
def id(self) -> Optional[pulumi.Input[str]]:
|
1068
|
+
"""
|
1069
|
+
Ocid of the pre-created public IP that should be attached to this load balancer. The public IP will be attached to a private IP. **Note** If public IP resource is present in the config, the pulumi preview will throw `After applying this step and refreshing, the plan was not empty` error, and `private_ip_id` needs to be added as an input argument to the public IP resource block or ignore from its lifecycle as shown in examples to resolve this error.
|
1070
|
+
"""
|
1065
1071
|
return pulumi.get(self, "id")
|
1066
1072
|
|
1067
1073
|
@id.setter
|
@@ -1073,12 +1079,18 @@ class LoadBalancerIpAddressDetailReservedIpArgs:
|
|
1073
1079
|
class LoadBalancerReservedIpArgs:
|
1074
1080
|
def __init__(__self__, *,
|
1075
1081
|
id: Optional[pulumi.Input[str]] = None):
|
1082
|
+
"""
|
1083
|
+
:param pulumi.Input[str] id: Ocid of the pre-created public IP that should be attached to this load balancer. The public IP will be attached to a private IP. **Note** If public IP resource is present in the config, the pulumi preview will throw `After applying this step and refreshing, the plan was not empty` error, and `private_ip_id` needs to be added as an input argument to the public IP resource block or ignore from its lifecycle as shown in examples to resolve this error.
|
1084
|
+
"""
|
1076
1085
|
if id is not None:
|
1077
1086
|
pulumi.set(__self__, "id", id)
|
1078
1087
|
|
1079
1088
|
@property
|
1080
1089
|
@pulumi.getter
|
1081
1090
|
def id(self) -> Optional[pulumi.Input[str]]:
|
1091
|
+
"""
|
1092
|
+
Ocid of the pre-created public IP that should be attached to this load balancer. The public IP will be attached to a private IP. **Note** If public IP resource is present in the config, the pulumi preview will throw `After applying this step and refreshing, the plan was not empty` error, and `private_ip_id` needs to be added as an input argument to the public IP resource block or ignore from its lifecycle as shown in examples to resolve this error.
|
1093
|
+
"""
|
1082
1094
|
return pulumi.get(self, "id")
|
1083
1095
|
|
1084
1096
|
@id.setter
|
@@ -1097,12 +1097,18 @@ class LoadBalancerIpAddressDetail(dict):
|
|
1097
1097
|
class LoadBalancerIpAddressDetailReservedIp(dict):
|
1098
1098
|
def __init__(__self__, *,
|
1099
1099
|
id: Optional[str] = None):
|
1100
|
+
"""
|
1101
|
+
:param str id: Ocid of the pre-created public IP that should be attached to this load balancer. The public IP will be attached to a private IP. **Note** If public IP resource is present in the config, the pulumi preview will throw `After applying this step and refreshing, the plan was not empty` error, and `private_ip_id` needs to be added as an input argument to the public IP resource block or ignore from its lifecycle as shown in examples to resolve this error.
|
1102
|
+
"""
|
1100
1103
|
if id is not None:
|
1101
1104
|
pulumi.set(__self__, "id", id)
|
1102
1105
|
|
1103
1106
|
@property
|
1104
1107
|
@pulumi.getter
|
1105
1108
|
def id(self) -> Optional[str]:
|
1109
|
+
"""
|
1110
|
+
Ocid of the pre-created public IP that should be attached to this load balancer. The public IP will be attached to a private IP. **Note** If public IP resource is present in the config, the pulumi preview will throw `After applying this step and refreshing, the plan was not empty` error, and `private_ip_id` needs to be added as an input argument to the public IP resource block or ignore from its lifecycle as shown in examples to resolve this error.
|
1111
|
+
"""
|
1106
1112
|
return pulumi.get(self, "id")
|
1107
1113
|
|
1108
1114
|
|
@@ -1110,12 +1116,18 @@ class LoadBalancerIpAddressDetailReservedIp(dict):
|
|
1110
1116
|
class LoadBalancerReservedIp(dict):
|
1111
1117
|
def __init__(__self__, *,
|
1112
1118
|
id: Optional[str] = None):
|
1119
|
+
"""
|
1120
|
+
:param str id: Ocid of the pre-created public IP that should be attached to this load balancer. The public IP will be attached to a private IP. **Note** If public IP resource is present in the config, the pulumi preview will throw `After applying this step and refreshing, the plan was not empty` error, and `private_ip_id` needs to be added as an input argument to the public IP resource block or ignore from its lifecycle as shown in examples to resolve this error.
|
1121
|
+
"""
|
1113
1122
|
if id is not None:
|
1114
1123
|
pulumi.set(__self__, "id", id)
|
1115
1124
|
|
1116
1125
|
@property
|
1117
1126
|
@pulumi.getter
|
1118
1127
|
def id(self) -> Optional[str]:
|
1128
|
+
"""
|
1129
|
+
Ocid of the pre-created public IP that should be attached to this load balancer. The public IP will be attached to a private IP. **Note** If public IP resource is present in the config, the pulumi preview will throw `After applying this step and refreshing, the plan was not empty` error, and `private_ip_id` needs to be added as an input argument to the public IP resource block or ignore from its lifecycle as shown in examples to resolve this error.
|
1130
|
+
"""
|
1119
1131
|
return pulumi.get(self, "id")
|
1120
1132
|
|
1121
1133
|
|
@@ -440,7 +440,7 @@ pulumi_oci/core/get_app_catalog_subscriptions.py,sha256=FsBV-zR_2t3MC1V76OnFiW-n
|
|
440
440
|
pulumi_oci/core/get_block_volume_replica.py,sha256=VFF8Vml8Ny284-7_lGJCxKCD0By5ineS9MRFHnCabeM,10623
|
441
441
|
pulumi_oci/core/get_block_volume_replicas.py,sha256=23rizzX-NDo5dsY-tBHyvcWCT1Xxr3GXPAOjIanX5UI,10104
|
442
442
|
pulumi_oci/core/get_boot_volume.py,sha256=VIHrGWAc35WAJF0fpOSBUfWeuQUQHpENigHJ0L-O7zg,17376
|
443
|
-
pulumi_oci/core/get_boot_volume_attachments.py,sha256=
|
443
|
+
pulumi_oci/core/get_boot_volume_attachments.py,sha256=0qxpsFTjBo7tr86yHA-VwK9kRNDAb8_mNgeCs0NsaGM,8884
|
444
444
|
pulumi_oci/core/get_boot_volume_backup.py,sha256=kNR3RAu80eEAJF44EoSOHQQL9ddkDeJVhxQp24K14t8,15252
|
445
445
|
pulumi_oci/core/get_boot_volume_backups.py,sha256=pr_IECK74kgEYVKa32bE1kWTojUYL_loShfXhEzCSXg,9887
|
446
446
|
pulumi_oci/core/get_boot_volume_replica.py,sha256=A0xOPV4s-Ju-2jwQjtJ-8s7aECVH0HwDsUgl5AW2-H8,11061
|
@@ -632,7 +632,7 @@ pulumi_oci/database/autonomous_database_backup.py,sha256=uPNTd62MBVJA7rVm-khKDSe
|
|
632
632
|
pulumi_oci/database/autonomous_database_instance_wallet_management.py,sha256=u4nkO-dH_cL8ovTaMiTBeGAKVZk2mf5xnXRi7Xvqr3s,18661
|
633
633
|
pulumi_oci/database/autonomous_database_regional_wallet_management.py,sha256=asn2msSPYMDgERjsAUEBCNiuJZgrcOigEehRFXuAhoo,15601
|
634
634
|
pulumi_oci/database/autonomous_database_saas_admin_user.py,sha256=zcLCMDzJ9ky2Pn_Pge1mA84u-RlCaIdX5VSrgQG4yv8,26672
|
635
|
-
pulumi_oci/database/autonomous_database_wallet.py,sha256=
|
635
|
+
pulumi_oci/database/autonomous_database_wallet.py,sha256=uyieY6prT7QQTD3kQ_EDTqWdkG1E7JI-IZ2gLUnPlUg,21182
|
636
636
|
pulumi_oci/database/autonomous_exadata_infrastructure.py,sha256=CwjxfuueaBm5xCfQI0YnJQ40mdVuxnUjfy3QW67qjFY,68591
|
637
637
|
pulumi_oci/database/autonomous_vm_cluster.py,sha256=KkPrknU8YwLDhlN79CfStzP76v1jg8WPfoIWREHWmGA,109639
|
638
638
|
pulumi_oci/database/autonomous_vm_cluster_ords_certificate_management.py,sha256=h0oQwPfE9lW7npY0t1IFWuFdNPKWlyczq6KXSTbHrBw,21855
|
@@ -803,7 +803,7 @@ pulumi_oci/database/pluggable_databases_local_clone.py,sha256=uBP5KxZWVevTxD8P3u
|
|
803
803
|
pulumi_oci/database/pluggable_databases_remote_clone.py,sha256=v9kmksbehuKgjZCHxLiVKfe9-So561mEjbteROeKfUQ,57199
|
804
804
|
pulumi_oci/database/vm_cluster.py,sha256=wSaSQdJdr7gRWkHzEKBpDs3XpXuys3OkLULglUinNJ4,74285
|
805
805
|
pulumi_oci/database/vm_cluster_add_virtual_network.py,sha256=6B9XF_2IawQN0Dl2Oo7vXnD0UpmdNsifd97VvUojcNs,50736
|
806
|
-
pulumi_oci/database/vm_cluster_network.py,sha256=
|
806
|
+
pulumi_oci/database/vm_cluster_network.py,sha256=HWN9Qvflb9j_DQck7swz8qbCdeFcs_JQmKP6rjkqWX0,50775
|
807
807
|
pulumi_oci/database/vm_cluster_remove_virtual_machine.py,sha256=nouVa9oFyciXN0Rv8vwY9vU9490iOjpvg5ZAq9wXnRM,48437
|
808
808
|
pulumi_oci/databasemanagement/__init__.py,sha256=qVyTNP-R9snG5jivC-eVw56NfWTKRHIQ7RyOtQFOx4I,6371
|
809
809
|
pulumi_oci/databasemanagement/_inputs.py,sha256=fGAn0U0s4jqnvvoCS74jZ_0abR_OXEP44TpueikQvpk,262483
|
@@ -1799,7 +1799,7 @@ pulumi_oci/limits/get_services.py,sha256=rUbeJb-LviS6kLnnzx8wEmxLl01i8fETBiuAXqX
|
|
1799
1799
|
pulumi_oci/limits/outputs.py,sha256=4xzrDTB9kqJN3I3qPzAWee2WjZAhwd7vMZ3oxbx6ZRE,22754
|
1800
1800
|
pulumi_oci/limits/quota.py,sha256=cxXQ7TyOvDXkNlDnDuuuMLOpntixNdan98eKudw4ir0,29629
|
1801
1801
|
pulumi_oci/loadbalancer/__init__.py,sha256=MEaFdbTIsnehC12wXAUwvJcOEZM4WCItCZ52hjWqJWA,1231
|
1802
|
-
pulumi_oci/loadbalancer/_inputs.py,sha256
|
1802
|
+
pulumi_oci/loadbalancer/_inputs.py,sha256=BWYRDhqJ0ap-LxOBMeWu9Z_ljMLF-srzK7liw6seqJ4,130357
|
1803
1803
|
pulumi_oci/loadbalancer/backend.py,sha256=Ls4gAoJhb8jLCLG5iAeO95AcUBUQw7Jkzj1auNJVG44,32061
|
1804
1804
|
pulumi_oci/loadbalancer/backend_set.py,sha256=FfBQXcMWy6fli-voIcYJXmoxewrBTsHOqcZ09JkOl54,59452
|
1805
1805
|
pulumi_oci/loadbalancer/certificate.py,sha256=3j_WlvSO6IgJIyNv9TXozwNNtdsmxDufS00y4mdV_F4,33090
|
@@ -1826,7 +1826,7 @@ pulumi_oci/loadbalancer/hostname.py,sha256=aBD4qe0P9Azo-QxkfYaRWh5szNcWdrfKK3rFj
|
|
1826
1826
|
pulumi_oci/loadbalancer/listener.py,sha256=zn8_fEh7u7OTiJ8Lbk4LtC6K0bu90hEIGmOjZC1_hwY,42021
|
1827
1827
|
pulumi_oci/loadbalancer/load_balancer.py,sha256=s10VHdu-I0T-iYZZbSIthSXDw46U3YlcCKgJs8mB2Ho,68072
|
1828
1828
|
pulumi_oci/loadbalancer/load_balancer_routing_policy.py,sha256=2RuP3a8oWreybBOo4nJ7u9y5wGHAXTFoZJewL2pWrrw,19516
|
1829
|
-
pulumi_oci/loadbalancer/outputs.py,sha256=
|
1829
|
+
pulumi_oci/loadbalancer/outputs.py,sha256=at_2UlEccaO_LbMEYqkTQS2wrAqP1Hq_2q0ld7NMfeA,242728
|
1830
1830
|
pulumi_oci/loadbalancer/path_route_set.py,sha256=zsNFrjy8RpEVcEhR6IN2G4RdtBZp5_X4YiRaX08QQew,14993
|
1831
1831
|
pulumi_oci/loadbalancer/rule_set.py,sha256=2OignCA4wrVK4jje3mn3SYe4KGohZm_jqWZU0a2KlmM,18834
|
1832
1832
|
pulumi_oci/loadbalancer/ssl_cipher_suite.py,sha256=fpMhuJWdtknTC3sDUzdBO0DReWEUa7f6Axyh25BmDnE,16597
|
@@ -2610,7 +2610,7 @@ pulumi_oci/waf/get_web_app_firewall_policies.py,sha256=KJZEdRiQjG67_3x9zDG9u6m7h
|
|
2610
2610
|
pulumi_oci/waf/get_web_app_firewall_policy.py,sha256=t31n_rsb6FWI8YkhndA1ucpKIbWq9XTogW-6D3Bbfe4,14240
|
2611
2611
|
pulumi_oci/waf/network_address_list.py,sha256=dMGab_fwT5pPiLF9kQ3j-Qd-RkXkDfyz306u2eQh0WQ,32655
|
2612
2612
|
pulumi_oci/waf/outputs.py,sha256=L_Ay91T3B8xIip2QKrOOW99UlLifV9ByKqO-js2Y84w,227577
|
2613
|
-
pulumi_oci-1.
|
2614
|
-
pulumi_oci-1.
|
2615
|
-
pulumi_oci-1.
|
2616
|
-
pulumi_oci-1.
|
2613
|
+
pulumi_oci-1.21.0a1706309702.dist-info/METADATA,sha256=tM0ZuXb51cNx4z1cyIJXeqmu_dT8N6n-cHaHqNRyNbc,3899
|
2614
|
+
pulumi_oci-1.21.0a1706309702.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
2615
|
+
pulumi_oci-1.21.0a1706309702.dist-info/top_level.txt,sha256=0k-nWr_IdDNVF3qcT4ALORmmu1SNCLxWZfHDMN7TWsg,11
|
2616
|
+
pulumi_oci-1.21.0a1706309702.dist-info/RECORD,,
|
File without changes
|
{pulumi_oci-1.20.0a1706213871.dist-info → pulumi_oci-1.21.0a1706309702.dist-info}/top_level.txt
RENAMED
File without changes
|