pulumi-oci 1.35.0a1715235617__py3-none-any.whl → 1.35.0a1715356469__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/database/_inputs.py +112 -0
- pulumi_oci/database/cloud_exadata_infrastructure.py +28 -0
- pulumi_oci/database/cloud_vm_cluster.py +55 -0
- pulumi_oci/database/get_cloud_exadata_infrastructure.py +14 -1
- pulumi_oci/database/get_cloud_vm_cluster.py +14 -1
- pulumi_oci/database/outputs.py +316 -6
- pulumi_oci/disasterrecovery/_inputs.py +16 -0
- pulumi_oci/disasterrecovery/outputs.py +36 -0
- pulumi_oci/loadbalancer/_inputs.py +144 -20
- pulumi_oci/loadbalancer/backend.py +49 -0
- pulumi_oci/loadbalancer/backend_set.py +57 -0
- pulumi_oci/loadbalancer/get_listener_rules.py +2 -2
- pulumi_oci/loadbalancer/load_balancer.py +98 -7
- pulumi_oci/loadbalancer/outputs.py +361 -36
- pulumi_oci/loadbalancer/rule_set.py +10 -0
- pulumi_oci/provider.py +0 -8
- {pulumi_oci-1.35.0a1715235617.dist-info → pulumi_oci-1.35.0a1715356469.dist-info}/METADATA +1 -1
- {pulumi_oci-1.35.0a1715235617.dist-info → pulumi_oci-1.35.0a1715356469.dist-info}/RECORD +20 -20
- {pulumi_oci-1.35.0a1715235617.dist-info → pulumi_oci-1.35.0a1715356469.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.35.0a1715235617.dist-info → pulumi_oci-1.35.0a1715356469.dist-info}/top_level.txt +0 -0
@@ -182,9 +182,14 @@ class RuleSet(pulumi.CustomResource):
|
|
182
182
|
attribute_value=rule_set_items_conditions_attribute_value,
|
183
183
|
operator=rule_set_items_conditions_operator,
|
184
184
|
)],
|
185
|
+
default_max_connections=rule_set_items_default_max_connections,
|
185
186
|
description=rule_set_items_description,
|
186
187
|
header=rule_set_items_header,
|
187
188
|
http_large_header_size_in_kb=rule_set_items_http_large_header_size_in_kb,
|
189
|
+
ip_max_connections=[oci.load_balancer.RuleSetItemIpMaxConnectionArgs(
|
190
|
+
ip_addresses=rule_set_items_ip_max_connections_ip_addresses,
|
191
|
+
max_connections=rule_set_items_ip_max_connections_max_connections,
|
192
|
+
)],
|
188
193
|
prefix=rule_set_items_prefix,
|
189
194
|
redirect_uri=oci.load_balancer.RuleSetItemRedirectUriArgs(
|
190
195
|
host=rule_set_items_redirect_uri_host,
|
@@ -248,9 +253,14 @@ class RuleSet(pulumi.CustomResource):
|
|
248
253
|
attribute_value=rule_set_items_conditions_attribute_value,
|
249
254
|
operator=rule_set_items_conditions_operator,
|
250
255
|
)],
|
256
|
+
default_max_connections=rule_set_items_default_max_connections,
|
251
257
|
description=rule_set_items_description,
|
252
258
|
header=rule_set_items_header,
|
253
259
|
http_large_header_size_in_kb=rule_set_items_http_large_header_size_in_kb,
|
260
|
+
ip_max_connections=[oci.load_balancer.RuleSetItemIpMaxConnectionArgs(
|
261
|
+
ip_addresses=rule_set_items_ip_max_connections_ip_addresses,
|
262
|
+
max_connections=rule_set_items_ip_max_connections_max_connections,
|
263
|
+
)],
|
254
264
|
prefix=rule_set_items_prefix,
|
255
265
|
redirect_uri=oci.load_balancer.RuleSetItemRedirectUriArgs(
|
256
266
|
host=rule_set_items_redirect_uri_host,
|
pulumi_oci/provider.py
CHANGED
@@ -36,8 +36,6 @@ class ProviderArgs:
|
|
36
36
|
consistency problems but it also introduced performance issues on destroy operations.
|
37
37
|
:param pulumi.Input[str] fingerprint: (Optional) The fingerprint for the user's RSA key. This can be found in user settings in the Oracle Cloud Infrastructure
|
38
38
|
console. Required if auth is set to 'ApiKey', ignored otherwise.
|
39
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] ignore_defined_tags: (Optional) List of defined tags keys that Terraform should ignore when planning creates and updates to the associated
|
40
|
-
remote object
|
41
39
|
:param pulumi.Input[str] private_key: (Optional) A PEM formatted RSA private key for the user. A private_key or a private_key_path must be provided if auth is
|
42
40
|
set to 'ApiKey', ignored otherwise.
|
43
41
|
:param pulumi.Input[str] private_key_password: (Optional) The password used to secure the private key.
|
@@ -134,10 +132,6 @@ class ProviderArgs:
|
|
134
132
|
@property
|
135
133
|
@pulumi.getter(name="ignoreDefinedTags")
|
136
134
|
def ignore_defined_tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
137
|
-
"""
|
138
|
-
(Optional) List of defined tags keys that Terraform should ignore when planning creates and updates to the associated
|
139
|
-
remote object
|
140
|
-
"""
|
141
135
|
return pulumi.get(self, "ignore_defined_tags")
|
142
136
|
|
143
137
|
@ignore_defined_tags.setter
|
@@ -281,8 +275,6 @@ class Provider(pulumi.ProviderResource):
|
|
281
275
|
consistency problems but it also introduced performance issues on destroy operations.
|
282
276
|
:param pulumi.Input[str] fingerprint: (Optional) The fingerprint for the user's RSA key. This can be found in user settings in the Oracle Cloud Infrastructure
|
283
277
|
console. Required if auth is set to 'ApiKey', ignored otherwise.
|
284
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] ignore_defined_tags: (Optional) List of defined tags keys that Terraform should ignore when planning creates and updates to the associated
|
285
|
-
remote object
|
286
278
|
:param pulumi.Input[str] private_key: (Optional) A PEM formatted RSA private key for the user. A private_key or a private_key_path must be provided if auth is
|
287
279
|
set to 'ApiKey', ignored otherwise.
|
288
280
|
:param pulumi.Input[str] private_key_password: (Optional) The password used to secure the private key.
|
@@ -1,6 +1,6 @@
|
|
1
1
|
pulumi_oci/__init__.py,sha256=C3ZKDKzpjFFTbIp46sSd6rHGszpGn37iPqFD2PWvlW8,149684
|
2
2
|
pulumi_oci/_utilities.py,sha256=b6gJn0IIeM1t6Q7EVjqw3yhuGyP-uENQhtL5yp7aHR8,9248
|
3
|
-
pulumi_oci/provider.py,sha256=
|
3
|
+
pulumi_oci/provider.py,sha256=9MXW-Zeh5jJ_T7w9PgSlFcu0s4_tylBZIVYdFLmo_fU,23922
|
4
4
|
pulumi_oci/pulumi-plugin.json,sha256=M43fXbtz4Dlbv_jxw-1L4SOTGFmJN2lYa7ePzB7DmBs,40
|
5
5
|
pulumi_oci/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
6
6
|
pulumi_oci/adm/__init__.py,sha256=pxPlS_-eNzVJqBq2i1MCMmmLGhFhW-ATfiH6YEb71xI,1049
|
@@ -641,7 +641,7 @@ pulumi_oci/core/volume_group.py,sha256=VXEhKjaXq0QUeJoZFosaCe8j2XwXV4wtrA_OaSy6l
|
|
641
641
|
pulumi_oci/core/volume_group_backup.py,sha256=TaESViXt6JzduODOxkqrAV7h1lFo9udAkM26QIECb6c,44014
|
642
642
|
pulumi_oci/core/vtap.py,sha256=AQrHKZ0ErnxhB9JSwf1_rUX6TbP8MDEgOni0hUF3j14,61269
|
643
643
|
pulumi_oci/database/__init__.py,sha256=vmk_ABTY9egQLB9TjjbjLk9eoslzGAmlgEGmikTVIvs,8711
|
644
|
-
pulumi_oci/database/_inputs.py,sha256=
|
644
|
+
pulumi_oci/database/_inputs.py,sha256=KTJWrhHB8RH65y_HH015zxcYQ9YUMS9j4GvleuUyys4,660600
|
645
645
|
pulumi_oci/database/application_vip.py,sha256=wFPa33DBZ-_ZzawwFeIyt4o47oh67WRJEYBbvRF0CCg,28983
|
646
646
|
pulumi_oci/database/autonomous_container_database.py,sha256=8KBRkXFQ3H2jSqiNl8bFB4SKp4qakiaiU5hXtylcGq8,161652
|
647
647
|
pulumi_oci/database/autonomous_container_database_dataguard_association.py,sha256=HHFxeeHKgSEMhCYdk_Pj7f1yf-o2QUTp4lmjFHCTGpY,75309
|
@@ -663,8 +663,8 @@ pulumi_oci/database/backup_cancel_management.py,sha256=5kwBqClQIROezxrAcF5ZzZucB
|
|
663
663
|
pulumi_oci/database/backup_destination.py,sha256=vyOkGRcPDLTt4s1J1fOqnocA-yE4IXFdaPs365CpdLA,44747
|
664
664
|
pulumi_oci/database/cloud_autonomous_vm_cluster.py,sha256=s7i1QzRBNO5SxIlL0p7X2tJColZFnaOUXUGcDonR5j4,133603
|
665
665
|
pulumi_oci/database/cloud_database_management.py,sha256=hE5t_w8E_5D75SKSsnpBKrK15HQIgBoMiiQp6CVUZik,31228
|
666
|
-
pulumi_oci/database/cloud_exadata_infrastructure.py,sha256=
|
667
|
-
pulumi_oci/database/cloud_vm_cluster.py,sha256=
|
666
|
+
pulumi_oci/database/cloud_exadata_infrastructure.py,sha256=shQWwJJtw0P9Bx52HfTaiuxoIFC6uRvmEwn9icmOROU,76522
|
667
|
+
pulumi_oci/database/cloud_vm_cluster.py,sha256=UAs5JgFjpx-THK5H7PmoO3xl6IQwx2966cASB5ufKcw,140669
|
668
668
|
pulumi_oci/database/cloud_vm_cluster_iorm_config.py,sha256=UN2Ml5xck0_nqD82sv7pmB4_woxA3aAmfToEQQo0g_M,16325
|
669
669
|
pulumi_oci/database/data_guard_association.py,sha256=IBvXcvgaY0l8RJ_lqGzQ-34nwumwR7vvUt46IKuxoEY,146829
|
670
670
|
pulumi_oci/database/database.py,sha256=cAae3mqS-AooBFgJm9MeUb871AolYclrc1ypWeE6Cjs,88184
|
@@ -735,10 +735,10 @@ pulumi_oci/database/get_cloud_autonomous_vm_cluster.py,sha256=Ee8UEwcAus7E9lqjI6
|
|
735
735
|
pulumi_oci/database/get_cloud_autonomous_vm_cluster_acd_resource_usages.py,sha256=aRM0Sp9ou1Y4poiDfF0Mm4bZjcXANb1cRAVsHFHW8m0,7951
|
736
736
|
pulumi_oci/database/get_cloud_autonomous_vm_cluster_resource_usage.py,sha256=94giNp7KoOpAWgiZfonpwDefioqj4bm3AlK7D6x0WIo,19175
|
737
737
|
pulumi_oci/database/get_cloud_autonomous_vm_clusters.py,sha256=yva0lt9mK2Qzczi83vhA8SERXoKEW369jb1Xy83E9Ok,11026
|
738
|
-
pulumi_oci/database/get_cloud_exadata_infrastructure.py,sha256=
|
738
|
+
pulumi_oci/database/get_cloud_exadata_infrastructure.py,sha256=qygL0vdq1IPxM_8JwfDpNxSGiaP3LXMIPfG2_XAf5VU,28165
|
739
739
|
pulumi_oci/database/get_cloud_exadata_infrastructure_un_allocated_resource.py,sha256=-eEd5Ov56fPnYl0MZuZwhDNIVdSg7Sg8stppneK_rqw,10604
|
740
740
|
pulumi_oci/database/get_cloud_exadata_infrastructures.py,sha256=gxnEoWawE3in9ERmZsqhidgO-M61of3HRrlJ7EKnfTk,9715
|
741
|
-
pulumi_oci/database/get_cloud_vm_cluster.py,sha256=
|
741
|
+
pulumi_oci/database/get_cloud_vm_cluster.py,sha256=0B-Pm0klE3BJG_SAf6DwMsfpeQikzaUrc4GUKM8Ps_0,36785
|
742
742
|
pulumi_oci/database/get_cloud_vm_cluster_iorm_config.py,sha256=HMjmZZzZVNMn047jiR4CjsK0QIFN2d0Nv4z6N1fCN8I,6599
|
743
743
|
pulumi_oci/database/get_cloud_vm_clusters.py,sha256=xoHjNEOOV22GBIftpUBl9EDtpX4LHO-I6DURf-yerUY,8981
|
744
744
|
pulumi_oci/database/get_data_guard_association.py,sha256=ZowgRiU6bVQQGyWAzjRjm3mp3bOEcwkGR0vtBR1pSlQ,28316
|
@@ -819,7 +819,7 @@ pulumi_oci/database/get_vm_clusters.py,sha256=aRT1n3DsQbZP6zUflQUu_U0ozwdVN5o6Mj
|
|
819
819
|
pulumi_oci/database/key_store.py,sha256=oN3pJ2ttFWOBm3nOciCLPV6PsyhMVcdY4DbvDvwV8iE,25402
|
820
820
|
pulumi_oci/database/maintenance_run.py,sha256=cyDRkOk_5KcUT3DoGuNxz1Ca0cJbdzrFNNhxfRatP_8,58494
|
821
821
|
pulumi_oci/database/oneoff_patch.py,sha256=vI2EkITWfZEhCTvYQSUJgswX6f9ZdA3sgC59ZGYwRhc,38416
|
822
|
-
pulumi_oci/database/outputs.py,sha256=
|
822
|
+
pulumi_oci/database/outputs.py,sha256=lqimoAF04JsG6F2iS-W0p8MUcOiaPy0gqZ14BdImWNg,2095289
|
823
823
|
pulumi_oci/database/pluggable_database.py,sha256=UYXCRUig97Hz22B-0KChjDoWaxdFPgNNbwfUpcVRM5g,71689
|
824
824
|
pulumi_oci/database/pluggable_database_managements_management.py,sha256=cYRG-2zkTBknBJjEjC97B8_XhM2C63jZL92QUS9U6m8,52153
|
825
825
|
pulumi_oci/database/pluggable_databases_local_clone.py,sha256=0NGYmSvbHSKW9TwDrNeOCOGH91SU7Ji5PDf-c70IBsQ,50354
|
@@ -1329,7 +1329,7 @@ pulumi_oci/devops/repository_mirror.py,sha256=QiQiMDfwrcw1AyH73YNWqNBoL_XPoSdQRM
|
|
1329
1329
|
pulumi_oci/devops/repository_ref.py,sha256=dEsH9qktn8QOndqAFE1GQNvRai8tuXHZ608ex7nBTQ4,21872
|
1330
1330
|
pulumi_oci/devops/trigger.py,sha256=gdDC_uqNqkMaXHqAadUe5tzKM6BdkwxcB4lOmBq31X0,41090
|
1331
1331
|
pulumi_oci/disasterrecovery/__init__.py,sha256=7KleD-hSyUzKkdXcRIDujms_xktRCUn-6DFX5pKrijo,614
|
1332
|
-
pulumi_oci/disasterrecovery/_inputs.py,sha256=
|
1332
|
+
pulumi_oci/disasterrecovery/_inputs.py,sha256=z0U208sS5J5xkivs8nIvuW3Cyr9wlD_mfahduu44CcU,89418
|
1333
1333
|
pulumi_oci/disasterrecovery/dr_plan.py,sha256=k6KG54e7yzapC5vQZSMLtw9gN4nViOSjD3i72b3b7HE,32122
|
1334
1334
|
pulumi_oci/disasterrecovery/dr_plan_execution.py,sha256=oV2ojwRyYAfFdwaBXZ7OTnYx8Qd9RPLqypEcos9GLnw,42795
|
1335
1335
|
pulumi_oci/disasterrecovery/dr_protection_group.py,sha256=q8AMY7a36qUTEHLpoyFs_F59Pv98EUCoWiICfEFClqk,51466
|
@@ -1339,7 +1339,7 @@ pulumi_oci/disasterrecovery/get_dr_plan_executions.py,sha256=FwlIe5rMooHlLPIpqvj
|
|
1339
1339
|
pulumi_oci/disasterrecovery/get_dr_plans.py,sha256=nCBitG3S_hX79A1o0iWRPc56vYQcQ04BDukXpKFi3UQ,8749
|
1340
1340
|
pulumi_oci/disasterrecovery/get_dr_protection_group.py,sha256=XzKrrh_NAgEF8nfqxh3R_1UIJ9A104tWk0oOmkOXMgE,13704
|
1341
1341
|
pulumi_oci/disasterrecovery/get_dr_protection_groups.py,sha256=E9Ob-vNqeePC4sWWKf1fr_hOoDRDA7J2X_i_vDD-hB0,10825
|
1342
|
-
pulumi_oci/disasterrecovery/outputs.py,sha256
|
1342
|
+
pulumi_oci/disasterrecovery/outputs.py,sha256=w6eP1LNdDKUMMdvxdDwahmTc9ZCWTpJaSE7KbNzpC8Q,233150
|
1343
1343
|
pulumi_oci/dns/__init__.py,sha256=rJmauYv4n0eB4hP0n-huHYUFdW2OcjhaV5t5UGeC7Ho,1106
|
1344
1344
|
pulumi_oci/dns/_inputs.py,sha256=9XzgiPx6lwskcZJLd3glsN1XA_4WLJZh0fYnaPsUjgw,64156
|
1345
1345
|
pulumi_oci/dns/action_create_zone_from_zone_file.py,sha256=gnisUQYYhDGr940PHR58kp0lpU4EdsGP5tGMsih4MOw,37153
|
@@ -1848,9 +1848,9 @@ pulumi_oci/limits/get_services.py,sha256=ibYVcHKg46zGxuoHMy482Mf8MwoLlQ0ftNkrLRq
|
|
1848
1848
|
pulumi_oci/limits/outputs.py,sha256=4xzrDTB9kqJN3I3qPzAWee2WjZAhwd7vMZ3oxbx6ZRE,22754
|
1849
1849
|
pulumi_oci/limits/quota.py,sha256=hZrhH9FPlGgGxQzB2ZtX2Ha-7uwepbWhHnCm8mg1dIo,29555
|
1850
1850
|
pulumi_oci/loadbalancer/__init__.py,sha256=MEaFdbTIsnehC12wXAUwvJcOEZM4WCItCZ52hjWqJWA,1231
|
1851
|
-
pulumi_oci/loadbalancer/_inputs.py,sha256=
|
1852
|
-
pulumi_oci/loadbalancer/backend.py,sha256=
|
1853
|
-
pulumi_oci/loadbalancer/backend_set.py,sha256=
|
1851
|
+
pulumi_oci/loadbalancer/_inputs.py,sha256=NagDPiOrpUlBzo6BL3nAXqy03tknmLm-CIQWab0qb_o,138238
|
1852
|
+
pulumi_oci/loadbalancer/backend.py,sha256=Q54YSbDq1KRKsYdt0EN232HQUS7aWTZa1ctq8p-KV_E,35364
|
1853
|
+
pulumi_oci/loadbalancer/backend_set.py,sha256=wbUIs8hvr1KCCrXDUsSAgeBVgVUQ2awGoFjKA1D1ZG8,64160
|
1854
1854
|
pulumi_oci/loadbalancer/certificate.py,sha256=vnjWLTNnIaQvpeGFVN40IBjxwN61oFgWdmWpevmHYLI,31966
|
1855
1855
|
pulumi_oci/loadbalancer/get_backend_health.py,sha256=Uk35NWb52lPldvpKvKEXu5S7iuYfJl5CpWE_TpotGms,7508
|
1856
1856
|
pulumi_oci/loadbalancer/get_backend_set_health.py,sha256=-t8mJ-0UKYeTfiN3Luk5pUUDBUzaTm6oly5D4BdoQ78,9180
|
@@ -1859,7 +1859,7 @@ pulumi_oci/loadbalancer/get_backends.py,sha256=-ejno41MBINx8tq06Yr29IrlF_WCCgB6V
|
|
1859
1859
|
pulumi_oci/loadbalancer/get_certificates.py,sha256=SO-SBLlVGbtrdr3C_zCL97UkjSYj5lbcpfbH2PM4s9g,4999
|
1860
1860
|
pulumi_oci/loadbalancer/get_health.py,sha256=ZH6JTdqlafAkyYK0JHw51pz193VnwodlAvOOhRVVjy0,8488
|
1861
1861
|
pulumi_oci/loadbalancer/get_hostnames.py,sha256=sXmhJWrqh24qcJmnSeg0oEXv03h6OKD4bxQKcHGViH8,4839
|
1862
|
-
pulumi_oci/loadbalancer/get_listener_rules.py,sha256=
|
1862
|
+
pulumi_oci/loadbalancer/get_listener_rules.py,sha256=Qk2JiHbfKNfHLY-PlNg9q35lo6cbxfH5rims7kuac-0,6396
|
1863
1863
|
pulumi_oci/loadbalancer/get_load_balancer_routing_policies.py,sha256=hTYo7LTBD4PdFhp_cD0wCFwJzRQaGsnhDJ9-MsTECbI,5566
|
1864
1864
|
pulumi_oci/loadbalancer/get_load_balancer_routing_policy.py,sha256=1fRWWXx3QG6i2312I2If_NdFTlP46smmLhnDOfBOS3M,7046
|
1865
1865
|
pulumi_oci/loadbalancer/get_load_balancers.py,sha256=IMUVInDJsQUI9cAxLBE8xeP316QEVvbk6KsrnNaTUSM,8163
|
@@ -1873,11 +1873,11 @@ pulumi_oci/loadbalancer/get_ssl_cipher_suite.py,sha256=KGuH8dXS5qPfyOh1KsDwQC-dM
|
|
1873
1873
|
pulumi_oci/loadbalancer/get_ssl_cipher_suites.py,sha256=hGDLTuTRJJ795RYM7Y8fYBvequg8_RsHFPMJmB44Fu0,5131
|
1874
1874
|
pulumi_oci/loadbalancer/hostname.py,sha256=pJ2uFqd3yvQKZknoZqVpmE0ZocBiu8d5GaMNhXo62lM,14651
|
1875
1875
|
pulumi_oci/loadbalancer/listener.py,sha256=RRcm0qddhvIpQDdv3kHB060so4_0eXEX9Zn2KK7vBbU,41437
|
1876
|
-
pulumi_oci/loadbalancer/load_balancer.py,sha256=
|
1876
|
+
pulumi_oci/loadbalancer/load_balancer.py,sha256=R4-s7EadOoJ62pORjilvMAmlqqhWgAnpSmSLqFpDXtY,73103
|
1877
1877
|
pulumi_oci/loadbalancer/load_balancer_routing_policy.py,sha256=JfDGYCXItLKcbcLDxE76p-5FOdf-xYLs3hU6PX2bBBs,19434
|
1878
|
-
pulumi_oci/loadbalancer/outputs.py,sha256=
|
1878
|
+
pulumi_oci/loadbalancer/outputs.py,sha256=YD_twc4GoDm003mX3tuRVTAVkrxD8wv_AOPGnfwEOBM,262643
|
1879
1879
|
pulumi_oci/loadbalancer/path_route_set.py,sha256=raq1HEOJ03xhUIDtK6pTZSkBkZizwBSGCDplhRcguEY,14909
|
1880
|
-
pulumi_oci/loadbalancer/rule_set.py,sha256=
|
1880
|
+
pulumi_oci/loadbalancer/rule_set.py,sha256=oQmuSBhLiM2F419trBuAt1SLLjjWI3vNqH4QxaTmW2w,19272
|
1881
1881
|
pulumi_oci/loadbalancer/ssl_cipher_suite.py,sha256=TB7iW-BpEd9sM2k78vUdESKrerdeN-UkVZK8mK8krW8,18984
|
1882
1882
|
pulumi_oci/loganalytics/__init__.py,sha256=i6Iw8rHB0By3JmTEm29LRUWQWRtyBdcf1PE8aCo6zMo,2184
|
1883
1883
|
pulumi_oci/loganalytics/_inputs.py,sha256=ErWlUSE7hjz_i3m6BHWjbNmAsaNLykacQ57TlQ98C1Y,50705
|
@@ -2668,7 +2668,7 @@ pulumi_oci/waf/get_web_app_firewall_policies.py,sha256=2EXX-nZiSRnou_ywPuVnvH9CT
|
|
2668
2668
|
pulumi_oci/waf/get_web_app_firewall_policy.py,sha256=iXFu2wfolxLPGoRpC9PvrbsMvIURoaPHkg6WVLdoEd8,14234
|
2669
2669
|
pulumi_oci/waf/network_address_list.py,sha256=XLU1RQ191_PIRyAmCu458aUENmayf90epspt4drevwk,32543
|
2670
2670
|
pulumi_oci/waf/outputs.py,sha256=L_Ay91T3B8xIip2QKrOOW99UlLifV9ByKqO-js2Y84w,227577
|
2671
|
-
pulumi_oci-1.35.
|
2672
|
-
pulumi_oci-1.35.
|
2673
|
-
pulumi_oci-1.35.
|
2674
|
-
pulumi_oci-1.35.
|
2671
|
+
pulumi_oci-1.35.0a1715356469.dist-info/METADATA,sha256=sOjiCIsv-aILC2Owvo8xtqN8XV5tXeyKlGOQ2vGuY-0,3899
|
2672
|
+
pulumi_oci-1.35.0a1715356469.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
2673
|
+
pulumi_oci-1.35.0a1715356469.dist-info/top_level.txt,sha256=0k-nWr_IdDNVF3qcT4ALORmmu1SNCLxWZfHDMN7TWsg,11
|
2674
|
+
pulumi_oci-1.35.0a1715356469.dist-info/RECORD,,
|
File without changes
|
{pulumi_oci-1.35.0a1715235617.dist-info → pulumi_oci-1.35.0a1715356469.dist-info}/top_level.txt
RENAMED
File without changes
|