pulumi-oci 2.26.0a1741415311__py3-none-any.whl → 2.26.0a1741943394__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 +67 -0
- pulumi_oci/containerengine/_inputs.py +34 -35
- pulumi_oci/containerengine/cluster.py +2 -0
- pulumi_oci/containerengine/container_instance.py +2 -4
- pulumi_oci/containerengine/outputs.py +110 -21
- pulumi_oci/containerinstances/outputs.py +0 -14
- pulumi_oci/core/_inputs.py +21 -33
- pulumi_oci/core/outputs.py +13 -21
- pulumi_oci/database/__init__.py +1 -0
- pulumi_oci/database/_inputs.py +704 -0
- pulumi_oci/database/application_vip.py +59 -10
- pulumi_oci/database/autonomous_database.py +7 -28
- pulumi_oci/database/backup.py +153 -5
- pulumi_oci/database/cloud_exadata_infrastructure.py +126 -0
- pulumi_oci/database/cloud_vm_cluster.py +163 -30
- pulumi_oci/database/db_node.py +64 -8
- pulumi_oci/database/exadata_infrastructure.py +157 -3
- pulumi_oci/database/exadata_infrastructure_configure_exascale_management.py +1615 -0
- pulumi_oci/database/exadb_vm_cluster.py +84 -7
- pulumi_oci/database/exascale_db_storage_vault.py +147 -0
- pulumi_oci/database/external_container_database.py +4 -4
- pulumi_oci/database/external_non_container_database.py +4 -4
- pulumi_oci/database/external_pluggable_database.py +4 -4
- pulumi_oci/database/get_application_vip.py +16 -2
- pulumi_oci/database/get_autonomous_database.py +0 -3
- pulumi_oci/database/get_backups.py +136 -10
- pulumi_oci/database/get_cloud_exadata_infrastructure.py +43 -1
- pulumi_oci/database/get_cloud_vm_cluster.py +59 -3
- pulumi_oci/database/get_cloud_vm_clusters.py +28 -6
- pulumi_oci/database/get_database_software_images.py +20 -1
- pulumi_oci/database/get_db_node.py +31 -4
- pulumi_oci/database/get_db_server.py +15 -1
- pulumi_oci/database/get_exadata_infrastructure.py +57 -1
- pulumi_oci/database/get_exadb_vm_cluster.py +29 -1
- pulumi_oci/database/get_exadb_vm_clusters.py +25 -3
- pulumi_oci/database/get_exascale_db_storage_vault.py +43 -1
- pulumi_oci/database/get_exascale_db_storage_vaults.py +47 -3
- pulumi_oci/database/get_external_container_database.py +1 -1
- pulumi_oci/database/get_external_non_container_database.py +1 -1
- pulumi_oci/database/get_external_pluggable_database.py +1 -1
- pulumi_oci/database/get_flex_components.py +28 -6
- pulumi_oci/database/get_vm_cluster.py +60 -4
- pulumi_oci/database/get_vm_clusters.py +25 -3
- pulumi_oci/database/outputs.py +1084 -42
- pulumi_oci/database/pluggable_database.py +13 -13
- pulumi_oci/database/vm_cluster.py +172 -18
- pulumi_oci/database/vm_cluster_add_virtual_network.py +114 -2
- pulumi_oci/database/vm_cluster_remove_virtual_machine.py +114 -2
- pulumi_oci/datasafe/__init__.py +7 -0
- pulumi_oci/datasafe/_inputs.py +301 -0
- pulumi_oci/datasafe/discovery_mod.py +49 -0
- pulumi_oci/datasafe/get_discovery_job.py +15 -1
- pulumi_oci/datasafe/get_masking_report.py +46 -4
- pulumi_oci/datasafe/get_masking_report_masking_errors.py +166 -0
- pulumi_oci/datasafe/get_security_assessment_finding.py +31 -1
- pulumi_oci/datasafe/get_security_assessment_findings.py +43 -3
- pulumi_oci/datasafe/get_sensitive_column_analytics.py +370 -0
- pulumi_oci/datasafe/get_sensitive_data_model.py +15 -1
- pulumi_oci/datasafe/get_sensitive_type_group.py +253 -0
- pulumi_oci/datasafe/get_sensitive_type_group_grouped_sensitive_types.py +166 -0
- pulumi_oci/datasafe/get_sensitive_type_groups.py +294 -0
- pulumi_oci/datasafe/outputs.py +676 -3
- pulumi_oci/datasafe/sensitive_data_model.py +49 -0
- pulumi_oci/datasafe/sensitive_type_group.py +563 -0
- pulumi_oci/datasafe/sensitive_type_group_grouped_sensitive_type.py +287 -0
- pulumi_oci/datascience/__init__.py +4 -0
- pulumi_oci/datascience/_inputs.py +1160 -41
- pulumi_oci/datascience/get_model.py +29 -1
- pulumi_oci/datascience/get_model_custom_metadata_artifact_content.py +151 -0
- pulumi_oci/datascience/get_model_defined_metadata_artifact_content.py +151 -0
- pulumi_oci/datascience/get_model_version_set.py +15 -1
- pulumi_oci/datascience/get_model_version_sets.py +25 -3
- pulumi_oci/datascience/get_models.py +25 -3
- pulumi_oci/datascience/get_pipeline.py +15 -1
- pulumi_oci/datascience/model.py +64 -0
- pulumi_oci/datascience/model_custom_metadata_artifact.py +418 -0
- pulumi_oci/datascience/model_defined_metadata_artifact.py +418 -0
- pulumi_oci/datascience/model_version_set.py +28 -0
- pulumi_oci/datascience/outputs.py +4343 -2164
- pulumi_oci/datascience/pipeline.py +48 -141
- pulumi_oci/datascience/pipeline_run.py +32 -0
- pulumi_oci/dblm/__init__.py +17 -0
- pulumi_oci/dblm/_inputs.py +275 -0
- pulumi_oci/dblm/get_vulnerability.py +242 -0
- pulumi_oci/dblm/get_vulnerability_aggregated_vulnerability_data.py +220 -0
- pulumi_oci/dblm/get_vulnerability_notifications.py +144 -0
- pulumi_oci/dblm/get_vulnerability_resources.py +258 -0
- pulumi_oci/dblm/get_vulnerability_scan.py +267 -0
- pulumi_oci/dblm/get_vulnerability_scans.py +270 -0
- pulumi_oci/dblm/get_vulnerability_vulnerabilities.py +258 -0
- pulumi_oci/dblm/outputs.py +1294 -0
- pulumi_oci/dblm/vulnerability_scan.py +521 -0
- pulumi_oci/email/dkim.py +120 -20
- pulumi_oci/email/get_dkim.py +40 -1
- pulumi_oci/email/outputs.py +29 -0
- pulumi_oci/filestorage/__init__.py +3 -0
- pulumi_oci/filestorage/_inputs.py +49 -0
- pulumi_oci/filestorage/file_system.py +105 -0
- pulumi_oci/filestorage/file_system_quota_rule.py +593 -0
- pulumi_oci/filestorage/get_file_system_quota_rule.py +248 -0
- pulumi_oci/filestorage/get_file_system_quota_rules.py +210 -0
- pulumi_oci/filestorage/outputs.py +186 -0
- pulumi_oci/mysql/_inputs.py +1239 -10
- pulumi_oci/mysql/channel.py +28 -0
- pulumi_oci/mysql/get_channel.py +15 -1
- pulumi_oci/mysql/get_mysql_backup.py +15 -1
- pulumi_oci/mysql/get_mysql_configuration.py +15 -1
- pulumi_oci/mysql/get_mysql_db_system.py +15 -1
- pulumi_oci/mysql/mysql_backup.py +28 -0
- pulumi_oci/mysql/mysql_configuration.py +106 -0
- pulumi_oci/mysql/mysql_db_system.py +36 -0
- pulumi_oci/mysql/outputs.py +2008 -35
- pulumi_oci/opensearch/__init__.py +3 -0
- pulumi_oci/opensearch/_inputs.py +101 -0
- pulumi_oci/opensearch/cluster.py +76 -29
- pulumi_oci/opensearch/get_opensearch_cluster.py +12 -1
- pulumi_oci/opensearch/get_opensearch_cluster_pipeline.py +433 -0
- pulumi_oci/opensearch/get_opensearch_cluster_pipelines.py +218 -0
- pulumi_oci/opensearch/opensearch_cluster_pipeline.py +1172 -0
- pulumi_oci/opensearch/outputs.py +425 -0
- pulumi_oci/psql/_inputs.py +258 -0
- pulumi_oci/psql/backup.py +129 -28
- pulumi_oci/psql/db_system.py +10 -0
- pulumi_oci/psql/get_backup.py +47 -2
- pulumi_oci/psql/get_backups.py +3 -0
- pulumi_oci/psql/get_configurations.py +23 -1
- pulumi_oci/psql/get_db_system.py +1 -1
- pulumi_oci/psql/get_db_systems.py +1 -1
- pulumi_oci/psql/outputs.py +541 -5
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/redis/redis_cluster.py +7 -7
- {pulumi_oci-2.26.0a1741415311.dist-info → pulumi_oci-2.26.0a1741943394.dist-info}/METADATA +1 -1
- {pulumi_oci-2.26.0a1741415311.dist-info → pulumi_oci-2.26.0a1741943394.dist-info}/RECORD +135 -106
- {pulumi_oci-2.26.0a1741415311.dist-info → pulumi_oci-2.26.0a1741943394.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.26.0a1741415311.dist-info → pulumi_oci-2.26.0a1741943394.dist-info}/top_level.txt +0 -0
@@ -1,7 +1,7 @@
|
|
1
|
-
pulumi_oci/__init__.py,sha256=
|
1
|
+
pulumi_oci/__init__.py,sha256=Sxpia6yPahuO6OS5K68juMLQf3XevZITonshL6nHtdY,179454
|
2
2
|
pulumi_oci/_utilities.py,sha256=yyuODPikZ9pto3JWJRfMJo98dWmQ5_y45-TVcZG_K8Y,10807
|
3
3
|
pulumi_oci/provider.py,sha256=96D04NS2SyFI88Et-fP8TEb08j4LkBBhOh2FY3Zrdns,25254
|
4
|
-
pulumi_oci/pulumi-plugin.json,sha256=
|
4
|
+
pulumi_oci/pulumi-plugin.json,sha256=l7eSn9huwjBjIuYqf9fs3BsCXfg1TxRE0Tfo7WBskc0,80
|
5
5
|
pulumi_oci/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
6
6
|
pulumi_oci/adm/__init__.py,sha256=pxPlS_-eNzVJqBq2i1MCMmmLGhFhW-ATfiH6YEb71xI,1049
|
7
7
|
pulumi_oci/adm/_inputs.py,sha256=YnlFWcwYsWjjrUbroAeHpnljrt9mAPqMtutbJnKVRCk,69792
|
@@ -412,13 +412,13 @@ pulumi_oci/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030
|
|
412
412
|
pulumi_oci/config/__init__.pyi,sha256=nk9k58DjW7xU6QI5z7C9l0M_8w3MVMIrbT-iJFvXzBc,2845
|
413
413
|
pulumi_oci/config/vars.py,sha256=wJ38pfKN693v_wmnB9wYcBd9DylWZMG5UfFwrDQ5U_Y,4471
|
414
414
|
pulumi_oci/containerengine/__init__.py,sha256=SdyuqHYrpB6AkkA98SaO-K5EOeDlCqxREshS6cITv7w,1332
|
415
|
-
pulumi_oci/containerengine/_inputs.py,sha256=
|
415
|
+
pulumi_oci/containerengine/_inputs.py,sha256=W02F3WEN3aaGm-Jk-ZmQIkVx727I7AsAFOkIeF3KM_s,242645
|
416
416
|
pulumi_oci/containerengine/addon.py,sha256=_wxM5WnhWKYW6Yitcrf8JqOe5VQGpaotMzDpUUOK8L4,24731
|
417
|
-
pulumi_oci/containerengine/cluster.py,sha256=
|
417
|
+
pulumi_oci/containerengine/cluster.py,sha256=jbB0uEHirTFgghD1KRxEwhQqZNERPA9Tatmm-kOpfTQ,56532
|
418
418
|
pulumi_oci/containerengine/cluster_complete_credential_rotation_management.py,sha256=djNxV8Ezp2QI195gIZ4JY2av8_-EV_A8hgmhihTqzJ0,9157
|
419
419
|
pulumi_oci/containerengine/cluster_start_credential_rotation_management.py,sha256=T0uorpfS9YPFObM-5Qoqa_vgQe8piGzRc4pAvAacrwM,12502
|
420
420
|
pulumi_oci/containerengine/cluster_workload_mapping.py,sha256=Zb1buFg1fJFqqksdtjA8ZutRwjpCaTpxT59BDWxIOug,24801
|
421
|
-
pulumi_oci/containerengine/container_instance.py,sha256=
|
421
|
+
pulumi_oci/containerengine/container_instance.py,sha256=t1ig75VlGvjyMLFUIcPTX0HHEwBwy44gsObjUkHzfxA,73453
|
422
422
|
pulumi_oci/containerengine/get_addon.py,sha256=GZNioHZA_3FsHqC7v4qUzogDetKVMGUcTI_I36HPXCQ,9611
|
423
423
|
pulumi_oci/containerengine/get_addon_options.py,sha256=_R4vqqtXKgOIBWBgsEDcAbh212ILMfG-mECaP4rsqbQ,6608
|
424
424
|
pulumi_oci/containerengine/get_addons.py,sha256=t77ElKVV94Xp7KqJo9MJiEg6Dyc4pojfQKNlR87XmRo,5026
|
@@ -440,7 +440,7 @@ pulumi_oci/containerengine/get_work_request_errors.py,sha256=vARAZ9S6Tcb-OkDx1kp
|
|
440
440
|
pulumi_oci/containerengine/get_work_request_log_entries.py,sha256=S6hKuFFYt6Qpc4YgySSwVuFZ2gNJZ4VPxlj6OIJ3t1U,7071
|
441
441
|
pulumi_oci/containerengine/get_work_requests.py,sha256=KMi522nPUG7J90CCtAfyOwtIM-MTHj9iz9ll_CYidio,9606
|
442
442
|
pulumi_oci/containerengine/node_pool.py,sha256=3nijuRswpA7ZJw2cFkL76QEsPQh1ySMjoU5U9LrihcA,78811
|
443
|
-
pulumi_oci/containerengine/outputs.py,sha256=
|
443
|
+
pulumi_oci/containerengine/outputs.py,sha256=QJ6e3hMwxABt9XsRUg8-SVDB_YAeYxHzQTI4MvYK3rc,391841
|
444
444
|
pulumi_oci/containerengine/virtual_node_pool.py,sha256=Cz6T2b8Vv9ZJIxA78C6GFbnUZD3TzgrpOZOu_Sm9a2s,54450
|
445
445
|
pulumi_oci/containerinstances/__init__.py,sha256=xO0-NxqDfouoMvYJoAIqyDTwJ_OfkHLWfmRRCIJaflE,480
|
446
446
|
pulumi_oci/containerinstances/_inputs.py,sha256=9xAzmOah2OikS_3-h3r08ldn2X9CPtdvseWpsfFVLHQ,3781
|
@@ -448,9 +448,9 @@ pulumi_oci/containerinstances/get_container_instance.py,sha256=63K1g9wcTH95vi6s8
|
|
448
448
|
pulumi_oci/containerinstances/get_container_instance_shape.py,sha256=2puQ543js43PamPeUrYXvVTtf9ya948ha06Yxqroo6s,6253
|
449
449
|
pulumi_oci/containerinstances/get_container_instance_shapes.py,sha256=STh66iv64cW67gmDFXe-iSAnyvHfZdTMqB4C7_oOBHY,7864
|
450
450
|
pulumi_oci/containerinstances/get_container_instances.py,sha256=P2pHRoapgZgwBk0_v5auM5GUFwDhKmsCcv33xEqcqXk,9836
|
451
|
-
pulumi_oci/containerinstances/outputs.py,sha256=
|
451
|
+
pulumi_oci/containerinstances/outputs.py,sha256=ggpNxDeupL0AotlCwSKnp75ozMxrnPEyxcxaM0cq9Yw,99192
|
452
452
|
pulumi_oci/core/__init__.py,sha256=8yTJ5v7D-q5NaiyZ3k-A653AnKx5rhjjKg9tiQDD_g4,8801
|
453
|
-
pulumi_oci/core/_inputs.py,sha256=
|
453
|
+
pulumi_oci/core/_inputs.py,sha256=V-S_irdLm51OHLgzwzzGMi8yozNJzvLqtTnEIJ0cMSk,1228854
|
454
454
|
pulumi_oci/core/app_catalog_listing_resource_version_agreement.py,sha256=w0xmbvF3ZVEoTyxj-v86bDLlY7tVNxDCW7l1xl9TnrY,14622
|
455
455
|
pulumi_oci/core/app_catalog_subscription.py,sha256=0VyKID-oO2-Ko6sntOgA9Iof9g8xh8LYic1VflGYzM0,29260
|
456
456
|
pulumi_oci/core/boot_volume.py,sha256=PGWxwlIRQqJimDrUgi_NCUXQc-mMlzzpjcJOT02DwMQ,72480
|
@@ -651,7 +651,7 @@ pulumi_oci/core/local_peering_gateway.py,sha256=p1V8uNamUxJa-UpKG4TzBGudP8NNB77l
|
|
651
651
|
pulumi_oci/core/nat_gateway.py,sha256=_I0Ls2WSv32m2-8_S9WYFjGvpt4biSLNvlY-fXMryDc,36333
|
652
652
|
pulumi_oci/core/network_security_group.py,sha256=GAbG1upv4B7ytveFpHLmy1w_N8dQFCaq_05OtFrxIyw,25742
|
653
653
|
pulumi_oci/core/network_security_group_security_rule.py,sha256=h8JYABPvXFPfgCMRghsV0Is2KAYOxJS6x6uDeMmb0_8,54348
|
654
|
-
pulumi_oci/core/outputs.py,sha256=
|
654
|
+
pulumi_oci/core/outputs.py,sha256=XC_upVD56KnuanX6E2iISZ48QkCFBhnq_IDO9W2v5TE,2539413
|
655
655
|
pulumi_oci/core/private_ip.py,sha256=7U5JkefHxTkMsm3GkqfIvYASbw_Vj0E5AdgR8taQ8Vw,45659
|
656
656
|
pulumi_oci/core/public_ip.py,sha256=L-WZ8RuDFtPmkZTxJFUggYipXEZFl6mSb1z2GJwdqx0,49195
|
657
657
|
pulumi_oci/core/public_ip_pool.py,sha256=SxGPeRtTauVvrVomIfsQIwZvIuh8oOwgJmNDGlHzBGQ,24119
|
@@ -676,14 +676,14 @@ pulumi_oci/core/volume_backup_policy_assignment.py,sha256=ttay56UlpUXuMqWaYgPnqu
|
|
676
676
|
pulumi_oci/core/volume_group.py,sha256=aS0UKsHbRlBWPy_5USzXAjZMs1Ms3ewjXYbnKcag_Kw,55133
|
677
677
|
pulumi_oci/core/volume_group_backup.py,sha256=gzCYyFdf1ozd1k9SdScXQ7rYLqqMBG5Dv_S1m8ZS7qk,44707
|
678
678
|
pulumi_oci/core/vtap.py,sha256=DPtuaAL94Be1JGuZdlxbnI82rF21PVhlOY5HqE_Cq8I,62801
|
679
|
-
pulumi_oci/database/__init__.py,sha256=
|
680
|
-
pulumi_oci/database/_inputs.py,sha256=
|
681
|
-
pulumi_oci/database/application_vip.py,sha256=
|
679
|
+
pulumi_oci/database/__init__.py,sha256=jD8hlNw0J9lr6dMdNEw4KurwMQnaxPovI2fk_EF9aOU,10107
|
680
|
+
pulumi_oci/database/_inputs.py,sha256=7YQk7fVi__XcDQmccTf8xAI5t8pbICLW2TQvmGum60s,1145501
|
681
|
+
pulumi_oci/database/application_vip.py,sha256=oKsdf6T7qRe9GpUYlvQAbwgJqBbcaelmV41pb1ExVCg,31388
|
682
682
|
pulumi_oci/database/autonomous_container_database.py,sha256=Dsp3--pSAdU2IwfOg559BvRXqDQ43MIAFdGa5RJmZJ8,173430
|
683
683
|
pulumi_oci/database/autonomous_container_database_dataguard_association.py,sha256=Vqr9H2dth2n-aRH0WozgJE33EijV3LzaQXyyfzla5uU,75512
|
684
684
|
pulumi_oci/database/autonomous_container_database_dataguard_association_operation.py,sha256=KdrGLo1fGVgJL4tpeiYMtjyAyIaWZ7oNCD_vKMof7A8,17941
|
685
685
|
pulumi_oci/database/autonomous_container_database_dataguard_role_change.py,sha256=yML8BbuREYzHrq1dVIYwGlZ5bFpsBVGpT_Y9m-CI4V0,12423
|
686
|
-
pulumi_oci/database/autonomous_database.py,sha256=
|
686
|
+
pulumi_oci/database/autonomous_database.py,sha256=Am_CGcODLpU0SZTxR8_s952-fDtJREMvksE2DsqbWnM,501796
|
687
687
|
pulumi_oci/database/autonomous_database_backup.py,sha256=TMDev4UedzHcRjt5ZfjnoeC3-3OTA7rM4AaAtn_bvhA,43614
|
688
688
|
pulumi_oci/database/autonomous_database_instance_wallet_management.py,sha256=shw6-GEc4MzawcuhYyZCXXOTszzM-P1Of1wCDnjc8hc,18745
|
689
689
|
pulumi_oci/database/autonomous_database_regional_wallet_management.py,sha256=hmbYSqFq3LOc5hXDXtp56_Z8zaCpP2O6celvTcyR8tQ,15757
|
@@ -694,45 +694,46 @@ pulumi_oci/database/autonomous_exadata_infrastructure.py,sha256=vkUN7H-JXCDymotr
|
|
694
694
|
pulumi_oci/database/autonomous_vm_cluster.py,sha256=UPwLicPnXat73GhugjEnuh3BD70gY4vnNMl5JA9Md14,112096
|
695
695
|
pulumi_oci/database/autonomous_vm_cluster_ords_certificate_management.py,sha256=3VC8R-7mlLeETw9AQUaJ_zBt1yzyiZE6Ty7qpp-Csds,21703
|
696
696
|
pulumi_oci/database/autonomous_vm_cluster_ssl_certificate_management.py,sha256=ZdG-Y6UsRnSVg3EwgA6P5MlWQU0NzAgjRHLGolFO-qo,21615
|
697
|
-
pulumi_oci/database/backup.py,sha256=
|
697
|
+
pulumi_oci/database/backup.py,sha256=0QFHAhpxrUagISx4mffdXE2r5TejsT-QkPUstAknyAg,43143
|
698
698
|
pulumi_oci/database/backup_cancel_management.py,sha256=5Z59w58DYCbKVI6YOeuEnO8Oxev0BS2JfZkDxEwyXJQ,11671
|
699
699
|
pulumi_oci/database/backup_destination.py,sha256=1wkliH8rWbX9WQ5dVD6Y_FyiBZtSh0X88dHJ2PLuPhs,50892
|
700
700
|
pulumi_oci/database/cloud_autonomous_vm_cluster.py,sha256=D2U0X-A39aZkcNt1XiPeCd5xwPxqu7jbTfuba1lLlGI,142002
|
701
701
|
pulumi_oci/database/cloud_database_management.py,sha256=kHwdrr3TSpp9JUcaAoysjsc0UwGHtYDXSoRpJq_905k,31752
|
702
|
-
pulumi_oci/database/cloud_exadata_infrastructure.py,sha256=
|
703
|
-
pulumi_oci/database/cloud_vm_cluster.py,sha256=
|
702
|
+
pulumi_oci/database/cloud_exadata_infrastructure.py,sha256=Q_LrGOvmUukt33pmFq-IOeXxeom0IpHAnBJULPZfIkw,88033
|
703
|
+
pulumi_oci/database/cloud_vm_cluster.py,sha256=7twsA4wInQH2YvbE3VNTnUgmhFmkBjrhGrHYE-frOoI,164677
|
704
704
|
pulumi_oci/database/cloud_vm_cluster_iorm_config.py,sha256=YK5oY2uPrGQRl_oOvTf7rPYFNxAAeTx4NqqAc7MxJdc,16572
|
705
705
|
pulumi_oci/database/data_guard_association.py,sha256=LtDAMoj_Eu3_PKYX1E5I6IJ3rUOvtx43whEbgEFKfhg,161827
|
706
706
|
pulumi_oci/database/database.py,sha256=_rJSamz5EaTP5Ck-u1NEaC4BzPvyXF471zHwJlahE0U,86781
|
707
707
|
pulumi_oci/database/database_software_image.py,sha256=rwlamTRDs0vzwRkFiVf2YTcKJWAhflPNsa-28aO55tU,46722
|
708
708
|
pulumi_oci/database/database_upgrade.py,sha256=h99FwIBDgNZhdikYJ1GUz3rYXB5aQxpvHx7Esuc2Ors,61451
|
709
709
|
pulumi_oci/database/db_home.py,sha256=TXATWoFKRZZrPE47a5DmSIBI1txGtgxrsj7MwVFSRlw,57012
|
710
|
-
pulumi_oci/database/db_node.py,sha256=
|
710
|
+
pulumi_oci/database/db_node.py,sha256=3zAbqFh0SFBssm1CiLy_N4zWYPG5mkUxEPFV_XBN-U0,51891
|
711
711
|
pulumi_oci/database/db_node_console_connection.py,sha256=mRmbEFYMH6Mt5sWzDTQ7yXvp7njbGNktRTTEupb1dhM,27134
|
712
712
|
pulumi_oci/database/db_node_console_history.py,sha256=HSyg6bSs6Eli-Ix1krplUS3aOhRzTcg2QwAUodRIgwY,24388
|
713
713
|
pulumi_oci/database/db_system.py,sha256=i4ZrTVXYMEx5txPjNT-z7SHEQnhLjeG0aTCxZOolToU,191532
|
714
714
|
pulumi_oci/database/db_systems_upgrade.py,sha256=jUD83jTCKMRxundnD4vvADAgj8kqUL6479Ibfr75E8A,93945
|
715
|
-
pulumi_oci/database/exadata_infrastructure.py,sha256=
|
715
|
+
pulumi_oci/database/exadata_infrastructure.py,sha256=DL79P6vp27XXtCsiVvzr7x9-wKzKW95TrjAFdoXJ4r0,130019
|
716
716
|
pulumi_oci/database/exadata_infrastructure_compute.py,sha256=rTIYhQ97v5NTKi1ZzFTm9wSA2gVEzYV4OhHt6nBdIuo,75268
|
717
|
+
pulumi_oci/database/exadata_infrastructure_configure_exascale_management.py,sha256=Mz0Tsd_OwkzwFINkSuaXMCpZH8dF0lQcqfEvd_3gfo0,87624
|
717
718
|
pulumi_oci/database/exadata_infrastructure_storage.py,sha256=EIP_JmPDmYXGjt_LcRevR2fDNec3nAjVWWMI0i4kcmo,51643
|
718
719
|
pulumi_oci/database/exadata_iorm_config.py,sha256=qusDf56exj7jL6d-ytbx4PRE_V9_ePcHYia5GfrU3p8,18218
|
719
|
-
pulumi_oci/database/exadb_vm_cluster.py,sha256=
|
720
|
-
pulumi_oci/database/exascale_db_storage_vault.py,sha256
|
720
|
+
pulumi_oci/database/exadb_vm_cluster.py,sha256=Ah2NRdZ2oJ7goTv4_iK9Jyrg55PYW9nuk5derj-7irY,127201
|
721
|
+
pulumi_oci/database/exascale_db_storage_vault.py,sha256=-tyvccP33rLxHfRel-6HumPJPtdpuo3yLygcPrvXJLg,53801
|
721
722
|
pulumi_oci/database/execution_action.py,sha256=QKXPbbBUbtRTlFnAghQ6KzzZiShm5F0WnWdRmmhfG-U,42598
|
722
723
|
pulumi_oci/database/execution_window.py,sha256=hDYw-6UaaasR4H9bwZ8dlxntz317cLN2xAwTDweiWvE,44011
|
723
|
-
pulumi_oci/database/external_container_database.py,sha256=
|
724
|
+
pulumi_oci/database/external_container_database.py,sha256=VL7CHuSxWFLwGGBVLtQLu8sCVEAnOVJRQvr9T6l2uY8,39563
|
724
725
|
pulumi_oci/database/external_container_database_management.py,sha256=_wre8S7BPcZLq08n9PJfZh0pTGY93bOyggoec8kq-Kk,17730
|
725
726
|
pulumi_oci/database/external_container_databases_stack_monitoring.py,sha256=2ddGJZBO_bMrp9AGhs1Lgu0ukS1FS-BSqLruNPMqANQ,17408
|
726
727
|
pulumi_oci/database/external_database_connector.py,sha256=g-ltMAge8JQxC4him5kbml0DSNmnHT7-r9ULOyyikEc,43983
|
727
|
-
pulumi_oci/database/external_non_container_database.py,sha256=
|
728
|
+
pulumi_oci/database/external_non_container_database.py,sha256=39wMvUx0s_hvBBNEAI8FXKikiNErB2egmx9FtPVtByw,41935
|
728
729
|
pulumi_oci/database/external_non_container_database_management.py,sha256=FlVfJ8sDmKVimR3KQliCy3qBQYgze7OUbqCB69dxpN0,17983
|
729
730
|
pulumi_oci/database/external_non_container_database_operations_insights_management.py,sha256=SVrt1ROd2yxQzSxyj1RR1HYsd3dsP8EVSHB4AsIVPM4,18227
|
730
731
|
pulumi_oci/database/external_non_container_databases_stack_monitoring.py,sha256=PAEQN3Gw7QZuxiQ_TH-Hgxmxj8QftYS-s2yIz6yqEZk,17723
|
731
|
-
pulumi_oci/database/external_pluggable_database.py,sha256=
|
732
|
+
pulumi_oci/database/external_pluggable_database.py,sha256=xBL51FSRMEZlOAeHaieZ5XD-reo63foWStyD5FcBLtc,50373
|
732
733
|
pulumi_oci/database/external_pluggable_database_management.py,sha256=EY091JHrtditg1dBoD3ZthD4Tbk1SNFIrPE1QBOCk3M,16240
|
733
734
|
pulumi_oci/database/external_pluggable_database_operations_insights_management.py,sha256=2L6LwRlrEQHeHSAIR9fkMXVeHyefDEGqTDpdh7xn9t0,17927
|
734
735
|
pulumi_oci/database/external_pluggable_databases_stack_monitoring.py,sha256=v6DZQaO3ZYNpjus_Jy_fcaQvpDrdKFFpfa51QFKOwxI,17422
|
735
|
-
pulumi_oci/database/get_application_vip.py,sha256=
|
736
|
+
pulumi_oci/database/get_application_vip.py,sha256=GU9qOTWmJdhG5wbZhwESkI-kdlsqZhHFRLYNQyscIBQ,12520
|
736
737
|
pulumi_oci/database/get_application_vips.py,sha256=IkELK4zMVS5J-R8LysmYNxCKK3crKeF3y_oTwo3MEOo,8584
|
737
738
|
pulumi_oci/database/get_autonomous_character_sets.py,sha256=PYoZrtSl03o16dxXgBlUKDmQ3h9-36GF5vLbO-lJskI,9184
|
738
739
|
pulumi_oci/database/get_autonomous_container_database.py,sha256=Lq4_XOI5EYsoROwg4TchaWj0JXukrluogQuIXCHEYNU,57843
|
@@ -742,7 +743,7 @@ pulumi_oci/database/get_autonomous_container_database_resource_usage.py,sha256=L
|
|
742
743
|
pulumi_oci/database/get_autonomous_container_database_versions.py,sha256=9HE-ThIghRLY3gPOA5YQXqc3zy1ffrRqWwC1ZsGqOeg,8183
|
743
744
|
pulumi_oci/database/get_autonomous_container_databases.py,sha256=iJlx9-0MaxV8M3HSd3Fo-wwCxIUcewLv2ux7AgdSI7w,18903
|
744
745
|
pulumi_oci/database/get_autonomous_container_patches.py,sha256=FarcOzwvRktqTL-klNGowQmteusBjhsiFR1Ik8aApmc,9370
|
745
|
-
pulumi_oci/database/get_autonomous_database.py,sha256=
|
746
|
+
pulumi_oci/database/get_autonomous_database.py,sha256=_Pnxm5R7YDGA26fGShDaIKfV_2phjk8BeCoYislqZEI,126992
|
746
747
|
pulumi_oci/database/get_autonomous_database_backup.py,sha256=AFOGaqlIepz4vIH1-pFtqNRTS86pnt1XmItkBX49Qk4,20005
|
747
748
|
pulumi_oci/database/get_autonomous_database_backups.py,sha256=QNgjBjIo_KGANlXNB1FiMPqHchjgD1OFoO-2OBMIq5Y,11473
|
748
749
|
pulumi_oci/database/get_autonomous_database_dataguard_association.py,sha256=xPzVDdbxvW6wdCfcgeNvG4Drba-QLkahHDzfCtrFxCw,15280
|
@@ -771,17 +772,17 @@ pulumi_oci/database/get_autonomous_vm_cluster_resource_usage.py,sha256=SIme2tdCK
|
|
771
772
|
pulumi_oci/database/get_autonomous_vm_clusters.py,sha256=A-GuQW9KzlMRGRf7Ppxz-4igT67NPNzZk5lJI0Oa8DE,10561
|
772
773
|
pulumi_oci/database/get_backup_destination.py,sha256=Jf6uhJx0Ak7Zhr3W7ZTOIhv9w6Ozu2z9lKIE21ChWR0,18625
|
773
774
|
pulumi_oci/database/get_backup_destinations.py,sha256=bKwkWnj04YYZ3PQ92po_Ixt4iohIIH9aniv54r5D10A,7064
|
774
|
-
pulumi_oci/database/get_backups.py,sha256=
|
775
|
+
pulumi_oci/database/get_backups.py,sha256=Y__9HXAhehG-DXLrKPBjIB_dA4PCCUIWlR2Xgjoe_T0,15642
|
775
776
|
pulumi_oci/database/get_cloud_autonomous_vm_cluster.py,sha256=6FJKeD6NEDk2QFCvh7yusjXBziAAhvCA8AVfV52YAOo,52547
|
776
777
|
pulumi_oci/database/get_cloud_autonomous_vm_cluster_acd_resource_usages.py,sha256=QwTscDgWTe9DNUdBtrd8iy5MhDfmT0Cs4ze4iz7F8Ls,9154
|
777
778
|
pulumi_oci/database/get_cloud_autonomous_vm_cluster_resource_usage.py,sha256=5nutHawkPVBqXkqWYhU1Rjebanv3Z7Se5XFEJTzFnhg,21680
|
778
779
|
pulumi_oci/database/get_cloud_autonomous_vm_clusters.py,sha256=ZPSXfUp9GyZ-KYCmE1PNAz49kM19GpwzAw9cKwJVAlI,12442
|
779
|
-
pulumi_oci/database/get_cloud_exadata_infrastructure.py,sha256=
|
780
|
+
pulumi_oci/database/get_cloud_exadata_infrastructure.py,sha256=hxAzLNIn9x3xKDaQR4uYy0CuMGnSv1HjcXw_JaeMEBc,35228
|
780
781
|
pulumi_oci/database/get_cloud_exadata_infrastructure_un_allocated_resource.py,sha256=bZ99dJ9OnB4ZwokijoCnp8Zqz9F0--op8J6e8w7koRA,11983
|
781
782
|
pulumi_oci/database/get_cloud_exadata_infrastructures.py,sha256=0OT18fmDnx876L1wtDgRDXZ1QSRuHhp1m9zn8qTcA_c,10990
|
782
|
-
pulumi_oci/database/get_cloud_vm_cluster.py,sha256=
|
783
|
+
pulumi_oci/database/get_cloud_vm_cluster.py,sha256=Iuh1CsXFOsracN_TVBmdkKyT00jd3lH25DXJ_SbAcfU,46782
|
783
784
|
pulumi_oci/database/get_cloud_vm_cluster_iorm_config.py,sha256=xyTN0UFZhMK_w4W4UgDvxRnzTPq0rGyDz2kjq4LcNMU,7512
|
784
|
-
pulumi_oci/database/get_cloud_vm_clusters.py,sha256=
|
785
|
+
pulumi_oci/database/get_cloud_vm_clusters.py,sha256=eotKiVe55B6LwlhXjY8AybnLmHautyeZzMEWCk4OLOk,11474
|
785
786
|
pulumi_oci/database/get_data_guard_association.py,sha256=tOnRlS7gXNtm1uok03dx_WOwf522yDVZF7tJu0VZwMo,34314
|
786
787
|
pulumi_oci/database/get_data_guard_associations.py,sha256=GeOSjdSa9glTPoCxhfMoFYwCmfREhU1tXKyLjl85L64,6233
|
787
788
|
pulumi_oci/database/get_database.py,sha256=ze6h8l9RoPOoRsvohEe2G8DRMQBemK9677fQsw-CNWI,31117
|
@@ -790,7 +791,7 @@ pulumi_oci/database/get_database_maintenance_run_history.py,sha256=7eU01SoXZIl_R
|
|
790
791
|
pulumi_oci/database/get_database_pdb_conversion_history_entries.py,sha256=DdOjTt1WrMng4WztddsuHbDl5ZZmfVP5jNAv5Bc6XdA,9906
|
791
792
|
pulumi_oci/database/get_database_pdb_conversion_history_entry.py,sha256=QXcPqf00yqdoa1Z3wSr-B2S8-WRZ-vDwCcYdwqH1GDs,14018
|
792
793
|
pulumi_oci/database/get_database_software_image.py,sha256=AnB1sawtxSCT610j5Kjy3J_Zs69PBcdC4AvBJkto3SA,17045
|
793
|
-
pulumi_oci/database/get_database_software_images.py,sha256=
|
794
|
+
pulumi_oci/database/get_database_software_images.py,sha256=OVAPHZfYX0JZJnZoBWcZi45lq7g0H-B-uziwx3_ad74,13978
|
794
795
|
pulumi_oci/database/get_database_upgrade_history_entries.py,sha256=ycOe6Csv40ucSgukq7wOKQEdmMCMzF7IG73SQoI-p1c,8903
|
795
796
|
pulumi_oci/database/get_database_upgrade_history_entry.py,sha256=EaMV7SjHQ1MUNWZRXcAcy6gn8RBLbdTdBKXpEPkLXJc,13362
|
796
797
|
pulumi_oci/database/get_databases.py,sha256=F5-ZBOt5IqqrzOarNt7wyvA3e0XWgJApkStqkKe5_qM,10094
|
@@ -798,14 +799,14 @@ pulumi_oci/database/get_db_home.py,sha256=K8H5c7Y17E3-eAXioJ-bQg66L-JYnBTIFBA6E-
|
|
798
799
|
pulumi_oci/database/get_db_home_patch_history_entries.py,sha256=diiwUfoe5T1W80t0jMjDhA8XZRG_0exCoCYJ4-PCBAs,6223
|
799
800
|
pulumi_oci/database/get_db_home_patches.py,sha256=jvz-6E4-9gY4qvOwqUOuKtUVJuJwW4jCujNQOZqCgBU,5475
|
800
801
|
pulumi_oci/database/get_db_homes.py,sha256=K32hCqXZvwbC7Qybuusb15GCIXU8Ywvg8mQH3hvEno4,12057
|
801
|
-
pulumi_oci/database/get_db_node.py,sha256=
|
802
|
+
pulumi_oci/database/get_db_node.py,sha256=vI7aCxk8SgzVNnGlHzkv6Qge5g-_Vwppy-52Tew6uiA,22818
|
802
803
|
pulumi_oci/database/get_db_node_console_connection.py,sha256=FeLBDH98XA9aW-gSJu_dD9Wwyf4vBeS7xjRUOLPk4YM,10875
|
803
804
|
pulumi_oci/database/get_db_node_console_connections.py,sha256=R-VP5wJAhAJMFYmsjTfPf9zMzjd9inMSFrAZ6j_HBMw,6190
|
804
805
|
pulumi_oci/database/get_db_node_console_histories.py,sha256=cyAwItZ9KJtCAJIROscG9cRvBq778_PiOPETjf-_Ms0,8538
|
805
806
|
pulumi_oci/database/get_db_node_console_history.py,sha256=k8gd7S8hTxtPUKE1N2gMUdEpBFBI8sgD3k8zFUpg5sg,10168
|
806
807
|
pulumi_oci/database/get_db_node_console_history_content.py,sha256=i05YXy-HIJXeH-bEWtc1qsUyCN5fRIDi6ij0p1VEEto,5722
|
807
808
|
pulumi_oci/database/get_db_nodes.py,sha256=1hEr2jlLWHEXaILdkS9DJRcWyRhuUTy0o1jnONVDQ3g,10572
|
808
|
-
pulumi_oci/database/get_db_server.py,sha256=
|
809
|
+
pulumi_oci/database/get_db_server.py,sha256=oB3tsxaRv6niXiRauX-LCscdctLpFHevSVR0LOOZ24w,20207
|
809
810
|
pulumi_oci/database/get_db_servers.py,sha256=1bo-OLWpKfu9pn0-TFuJta_P14QT7fiDEQ6giupK2BA,9450
|
810
811
|
pulumi_oci/database/get_db_system_compute_performances.py,sha256=laWjxg-rYgo1VYiCyoMYIh1ekgY-7-NMrD_cgBvtdpo,6736
|
811
812
|
pulumi_oci/database/get_db_system_history_entries.py,sha256=UgACfKX8Ql7t6s00PioTpU1fC7Vs2jPwBfttLBnLj_k,6180
|
@@ -816,32 +817,32 @@ pulumi_oci/database/get_db_systems.py,sha256=cVTh4VUmJ0U6wtiGEHlmyOzfPHyULnhbFCC
|
|
816
817
|
pulumi_oci/database/get_db_systems_upgrade_history_entries.py,sha256=lLmzAY_xn0RMOQThkOr2sSMv7DjkNVuWRGd1IuDRXls,8947
|
817
818
|
pulumi_oci/database/get_db_systems_upgrade_history_entry.py,sha256=eVS13iwo1SbJ3XrndwnnjJOWgkFhBXr_VQWgU1KyZes,12651
|
818
819
|
pulumi_oci/database/get_db_versions.py,sha256=q0al6lR6oY3_9DbU715u9-f3N_xDbJbL4CiDnDjEIRw,12954
|
819
|
-
pulumi_oci/database/get_exadata_infrastructure.py,sha256=
|
820
|
+
pulumi_oci/database/get_exadata_infrastructure.py,sha256=PWIMGL0_j1ZSwx8u8tn9vXHVgJvv5GVbwuf0DpVJKAk,44254
|
820
821
|
pulumi_oci/database/get_exadata_infrastructure_download_config_file.py,sha256=H940VotqjxPULX2ef1w5dEMT5gxRZKyiiwJZv0yLG0w,7067
|
821
822
|
pulumi_oci/database/get_exadata_infrastructure_un_allocated_resource.py,sha256=iVQbtVZVN-JIr6pyX3qd2ncP2kDbhQqgfvDcNPcgp2U,11053
|
822
823
|
pulumi_oci/database/get_exadata_infrastructures.py,sha256=fMcwLNpgSWPjCDT6HOkgRHHwkV2uMt98rhscGVn4eys,8670
|
823
824
|
pulumi_oci/database/get_exadata_iorm_config.py,sha256=JQusC4s5LWz3rq5qxPEBannqjT0PDHiyLWgivYHN5Iw,8326
|
824
|
-
pulumi_oci/database/get_exadb_vm_cluster.py,sha256=
|
825
|
+
pulumi_oci/database/get_exadb_vm_cluster.py,sha256=eeTayDb4M1PMrwqO3ex4UDuTsMVFWGUpVS3AgjF5c_o,36641
|
825
826
|
pulumi_oci/database/get_exadb_vm_cluster_update.py,sha256=oawbWSCYSyHgS4I3sEwfMq2w_cLcjxRdmkeV_gnSmgk,10577
|
826
827
|
pulumi_oci/database/get_exadb_vm_cluster_update_history_entries.py,sha256=PimKr9hShyiVM_X04lu2Dv-GWOklFKaswE2WwUaMX7w,8508
|
827
828
|
pulumi_oci/database/get_exadb_vm_cluster_update_history_entry.py,sha256=QVsAhWfH4zuBTUAUoEUiOM3TSmckY292nIHv7G8mqc0,11281
|
828
829
|
pulumi_oci/database/get_exadb_vm_cluster_updates.py,sha256=JI6KRWLVnt5LEnEZuibg74wbLCoN_f1q8L3gzTqbeNY,8718
|
829
|
-
pulumi_oci/database/get_exadb_vm_clusters.py,sha256=
|
830
|
-
pulumi_oci/database/get_exascale_db_storage_vault.py,sha256=
|
831
|
-
pulumi_oci/database/get_exascale_db_storage_vaults.py,sha256=
|
830
|
+
pulumi_oci/database/get_exadb_vm_clusters.py,sha256=8qy5c0uL7UAHnicXjjh1GYf0I8QYYIpjzUI8su6SrRM,11948
|
831
|
+
pulumi_oci/database/get_exascale_db_storage_vault.py,sha256=StLEH-23yf4y5nVd8oyPxtdGpVQZxOOBrec2zmnrh1Y,18621
|
832
|
+
pulumi_oci/database/get_exascale_db_storage_vaults.py,sha256=xFlSOSn2UZEdhQQgZLJ8j0AAZTVYezoJ4cWarmOBlAI,12128
|
832
833
|
pulumi_oci/database/get_execution_action.py,sha256=HSUFl_rW1ecDYHjeqmcdoHeqnh_8J5I-EIOTmvoI6ac,16357
|
833
834
|
pulumi_oci/database/get_execution_actions.py,sha256=x5Vrh0elfTZ7p0eHLfiWXq--zP26yiDOB-mNpoQc1pg,9790
|
834
835
|
pulumi_oci/database/get_execution_window.py,sha256=74MZwYA22dqcWOUdZ9-CDj08J_gmHH1yEXtHTDqsBGY,17685
|
835
836
|
pulumi_oci/database/get_execution_windows.py,sha256=BpomWXjojJ9uhSijXHiBkPgPhbfXaMex2OEzfj_5-v4,9825
|
836
|
-
pulumi_oci/database/get_external_container_database.py,sha256=
|
837
|
+
pulumi_oci/database/get_external_container_database.py,sha256=9ybBjyUn_GqcJodMFVXewkq12Ob_0kM00BjK5wGrb7A,17605
|
837
838
|
pulumi_oci/database/get_external_container_databases.py,sha256=P8hJS76VEgr7rccRUBHCGDedEIErRPBanKvNIcRoaRE,8953
|
838
839
|
pulumi_oci/database/get_external_database_connector.py,sha256=LcEw7ffd-26qTPwNCkAIZlRyIPKzX8IaEpHi_6HC7h4,15842
|
839
840
|
pulumi_oci/database/get_external_database_connectors.py,sha256=Kuli0Z4SkPQApL-gE-RG41MndbIxNgLXBVKjlldKCCk,10625
|
840
|
-
pulumi_oci/database/get_external_non_container_database.py,sha256=
|
841
|
+
pulumi_oci/database/get_external_non_container_database.py,sha256=rkbhABHsrblS_ougGZjHeWqGMTcmLGnoBrP1rbEdpHA,18759
|
841
842
|
pulumi_oci/database/get_external_non_container_databases.py,sha256=_qpuML_rn62bmbTLtwLU1qVtHoO1WuaMXtU64VKt5n0,9178
|
842
|
-
pulumi_oci/database/get_external_pluggable_database.py,sha256=
|
843
|
+
pulumi_oci/database/get_external_pluggable_database.py,sha256=0uSzjjSG_G8w4xr1HqQlL9e_WLn6eqtrwm0OEDhC6SY,20700
|
843
844
|
pulumi_oci/database/get_external_pluggable_databases.py,sha256=8pj9wCQlnnp6sMQY3J1HzMCN8pL7QrcE5bAwxFtLYP0,11290
|
844
|
-
pulumi_oci/database/get_flex_components.py,sha256=
|
845
|
+
pulumi_oci/database/get_flex_components.py,sha256=Q8LtQwCK9R81lnnB1_aYWTrBbr12e6_2iiqgOc3F7QM,8208
|
845
846
|
pulumi_oci/database/get_gi_version_minor_versions.py,sha256=btU98Jgl7VbttN9RzSN5VImtePD358ly93OIEZaC5q8,12203
|
846
847
|
pulumi_oci/database/get_gi_versions.py,sha256=SRclra2qCXjNCzkNIHYoa_5TxX4xd1m0r56YOoefCzU,7545
|
847
848
|
pulumi_oci/database/get_infrastructure_target_version.py,sha256=VmCbGaW0eVtWouGM0u2HTmdvz0Utt-pT0FdTRtHTkHA,9660
|
@@ -866,7 +867,7 @@ pulumi_oci/database/get_scheduling_policy_recommended_scheduled_actions.py,sha25
|
|
866
867
|
pulumi_oci/database/get_scheduling_policy_scheduling_window.py,sha256=vUHk0RtxzfE-UypBCTmD2H1MMlh7wT9V3uc03c6xgQU,13664
|
867
868
|
pulumi_oci/database/get_scheduling_policy_scheduling_windows.py,sha256=gQRmz1RpMueA9nui8HfJnkS7A-qVTYAI0EFs_1-xEwo,10673
|
868
869
|
pulumi_oci/database/get_system_versions.py,sha256=aabPJhS46KFCCq80JfaTm_2rTAX5jN87arzfWR5VTyQ,7780
|
869
|
-
pulumi_oci/database/get_vm_cluster.py,sha256=
|
870
|
+
pulumi_oci/database/get_vm_cluster.py,sha256=q4WIeRT8Dc76ogpNQOJeSdUsTbQjcv4VNP2ePezAPqg,29821
|
870
871
|
pulumi_oci/database/get_vm_cluster_network.py,sha256=3EEblAc777nHyrW835Vzck8YEn3AS1Q0P7SP5wsthPc,16759
|
871
872
|
pulumi_oci/database/get_vm_cluster_network_download_config_file.py,sha256=jRaL3ZGii9T69tHiSruevNG5vIG6nmx9zab4s4RHQv4,8379
|
872
873
|
pulumi_oci/database/get_vm_cluster_networks.py,sha256=RXW-_h-Tk540CfXAGJ3QBhmVyYo0AvhIzVpA_B9fNfw,10800
|
@@ -879,12 +880,12 @@ pulumi_oci/database/get_vm_cluster_update.py,sha256=0qTCcHDipfYpo4jRYeH7J_1d4YvR
|
|
879
880
|
pulumi_oci/database/get_vm_cluster_update_history_entries.py,sha256=HDEon6BY8wYaTnTXKrfwn761HauoCVqVRl7yQnWeNU0,9031
|
880
881
|
pulumi_oci/database/get_vm_cluster_update_history_entry.py,sha256=bcz2RhhXQaXYmXZnYJrEUJlVZbFZtGsIxSOnrKj6Et8,10509
|
881
882
|
pulumi_oci/database/get_vm_cluster_updates.py,sha256=Sa2UlmkCw9As2HtPLRLj5t5OFKTJDTe6qoRphkWh2fo,8150
|
882
|
-
pulumi_oci/database/get_vm_clusters.py,sha256=
|
883
|
+
pulumi_oci/database/get_vm_clusters.py,sha256=YK_x85dBzzEZGUV47p0EgQHtbYVRL88Ura1VZcU6_fo,11149
|
883
884
|
pulumi_oci/database/key_store.py,sha256=utkO4jzVMM59m0NEZdhHdqnIdGpJiNjrW8mQjF9dT4o,27789
|
884
885
|
pulumi_oci/database/maintenance_run.py,sha256=yPbzDimLw6bTc4SlrDj4EM4Y4rQu1f3AWt-IPRO8RWw,65105
|
885
886
|
pulumi_oci/database/oneoff_patch.py,sha256=WmKZ_CNZ6Ns_0s5kRuvyXeT8KgNx24L7oiRQG5CRn-Q,38954
|
886
|
-
pulumi_oci/database/outputs.py,sha256=
|
887
|
-
pulumi_oci/database/pluggable_database.py,sha256=
|
887
|
+
pulumi_oci/database/outputs.py,sha256=gfOCA4ngvpPqiM_QFd70WtdIg69ot6gib0m3n8I_aV0,2740499
|
888
|
+
pulumi_oci/database/pluggable_database.py,sha256=k38To3UOhD9D5tC1jQMvAfT_xdSs2hBdL61W4rA3DPQ,79387
|
888
889
|
pulumi_oci/database/pluggable_database_managements_management.py,sha256=cmW6n0jUdviIoYQ5sHe_AwQWIEXpy8DS1W7fFnMJK2w,52897
|
889
890
|
pulumi_oci/database/pluggable_databases_local_clone.py,sha256=S0EmRLhANos9tiM_yFrDENRZWjiROIr6MorLJlC0qFw,51106
|
890
891
|
pulumi_oci/database/pluggable_databases_remote_clone.py,sha256=lx88HVEoi5p9xGn7Zc0sOiEr4GDtY2xZnQZmCPUPgbg,57777
|
@@ -892,10 +893,10 @@ pulumi_oci/database/scheduled_action.py,sha256=w0RwBr8zZam2VyLKDQk9PoJnXR9S4Qv0Y
|
|
892
893
|
pulumi_oci/database/scheduling_plan.py,sha256=yrMt06_ngqh4pwWRYbd-_U4DPWyLzLmTywG-IcnmcSk,38475
|
893
894
|
pulumi_oci/database/scheduling_policy.py,sha256=vslni9QWOfIun_LOygZ1TMiV1sL578Ie4okBxQ8i7ow,31506
|
894
895
|
pulumi_oci/database/scheduling_policy_scheduling_window.py,sha256=jBvQNWMCQrzK2nlSSVbXPTDFb7yk47VmZZ0Ltek0G24,32082
|
895
|
-
pulumi_oci/database/vm_cluster.py,sha256=
|
896
|
-
pulumi_oci/database/vm_cluster_add_virtual_network.py,sha256=
|
896
|
+
pulumi_oci/database/vm_cluster.py,sha256=ikJnxoCQ6pMPBpAe1n75_JJigAvMc6EmbOWpy9uqMCw,95033
|
897
|
+
pulumi_oci/database/vm_cluster_add_virtual_network.py,sha256=_9jrg-eSCAwhTFzRAsb-FoHrUOwMATrG5tz2YiRalLY,62898
|
897
898
|
pulumi_oci/database/vm_cluster_network.py,sha256=7SeFwVO28VOU3Tg0feDKwIrAwzAj-Jy9JwPZp8fHgTI,48913
|
898
|
-
pulumi_oci/database/vm_cluster_remove_virtual_machine.py,sha256=
|
899
|
+
pulumi_oci/database/vm_cluster_remove_virtual_machine.py,sha256=FP07RBOr071lcDDKqC87cWQ8hutflKohCpgpzsQy9Po,60668
|
899
900
|
pulumi_oci/databasemanagement/__init__.py,sha256=chKHfsA7AyfErUYxjnsydg-k2URfu6O78Ft_OCGlGb4,7495
|
900
901
|
pulumi_oci/databasemanagement/_inputs.py,sha256=U0vvB2DbVgchMHBnkUZ0Y6E_Op0dXzvzrz7kV1Okexw,580833
|
901
902
|
pulumi_oci/databasemanagement/autonomous_database_autonomous_database_dbm_features_management.py,sha256=00ol-U5qXoA6Os8EGlSJfatL0oUBZMdwaq_aExYZ2d8,16991
|
@@ -1143,8 +1144,8 @@ pulumi_oci/datalabellingservice/get_annotation_formats.py,sha256=Fpg6kdL21olhimO
|
|
1143
1144
|
pulumi_oci/datalabellingservice/get_dataset.py,sha256=H5qQ58Hw66emgbU9hoKqLWbwmUtQOMGDPdJKuHHfJyE,17704
|
1144
1145
|
pulumi_oci/datalabellingservice/get_datasets.py,sha256=Ilp3Fsq64qoMjGV-aHNo_uHGWcUN_Nax8TFAK5VINug,9761
|
1145
1146
|
pulumi_oci/datalabellingservice/outputs.py,sha256=r7HiUItducEEuol2RlCy_jnp2xOPDxY0VJ959qNHNyM,52916
|
1146
|
-
pulumi_oci/datasafe/__init__.py,sha256=
|
1147
|
-
pulumi_oci/datasafe/_inputs.py,sha256=
|
1147
|
+
pulumi_oci/datasafe/__init__.py,sha256=rYGV12zBSpP2d8OynJisJhg4beEHbY_7Mb7ddrpwHOQ,9152
|
1148
|
+
pulumi_oci/datasafe/_inputs.py,sha256=zj32uUyF_81mXDDwYhcsKpAaXs7KM3lE2hKa2bwmtjI,446233
|
1148
1149
|
pulumi_oci/datasafe/add_sdm_columns.py,sha256=I0ZEIc33HdUAuVwulwtAKIv9jy5_boMj2bS6HfNkSmY,5588
|
1149
1150
|
pulumi_oci/datasafe/alert.py,sha256=yCxOOJXHrjd4XewKcNKjjHLgsazGf1mP3eQeh3BtkBc,44046
|
1150
1151
|
pulumi_oci/datasafe/alert_policy.py,sha256=M2DzRroRsvfCHuv2ZbGr0us0lLrldEzcc6liSX7rxwA,38400
|
@@ -1165,7 +1166,7 @@ pulumi_oci/datasafe/data_safe_private_endpoint.py,sha256=ECh08fCHb6XEjuCvPSoxGsC
|
|
1165
1166
|
pulumi_oci/datasafe/database_security_config.py,sha256=xemaeRlPPEULTcpV7ff3T3rFwB--1--hXm_OzdtEkhE,38852
|
1166
1167
|
pulumi_oci/datasafe/database_security_config_management.py,sha256=0F3_cU8ETefzg-XiTK5vRHiDEn_i0gn-GVC9zQ7tY-8,39005
|
1167
1168
|
pulumi_oci/datasafe/discovery_jobs_result.py,sha256=vOICfpRc79y6cjmdQFiKeFCAZadTrEX54ppVA-HYLSs,43687
|
1168
|
-
pulumi_oci/datasafe/discovery_mod.py,sha256=
|
1169
|
+
pulumi_oci/datasafe/discovery_mod.py,sha256=Gm6JtkdKDmELJmj5QDkKjQ2MXnE3A9S5ZmeQPEU5Vy0,82155
|
1169
1170
|
pulumi_oci/datasafe/generate_on_prem_connector_configuration.py,sha256=q9e8TFpVdIoiMnzh7BtaV0DzVsnuoefYg98XObPvAp0,13164
|
1170
1171
|
pulumi_oci/datasafe/get_alert.py,sha256=6ogXFLYMvKizha13-iIYWUF50wtI7-JZHhZ94G53skI,18121
|
1171
1172
|
pulumi_oci/datasafe/get_alert_analytic.py,sha256=Lt0fYP-rl6zkLSQQbU27vVM8liSb5jFvoJz5q9IYQaE,16656
|
@@ -1200,7 +1201,7 @@ pulumi_oci/datasafe/get_database_security_config.py,sha256=18SoDzDWLr-xNEzyjiPJb
|
|
1200
1201
|
pulumi_oci/datasafe/get_database_security_configs.py,sha256=0kwqI1atKqMwQWVU8Cye_Jm-lk6SGXboBqN4ZhdCHrA,20714
|
1201
1202
|
pulumi_oci/datasafe/get_discovery_analytic.py,sha256=hggfWMM0Dw-6YeaQVPk_W1WMD5tdjcVYBX71pm5CW0w,10238
|
1202
1203
|
pulumi_oci/datasafe/get_discovery_analytics.py,sha256=UBernV3meJY7SdNEHQxmrXjXf9OiV6oH04pvvmKsSZE,14046
|
1203
|
-
pulumi_oci/datasafe/get_discovery_job.py,sha256=
|
1204
|
+
pulumi_oci/datasafe/get_discovery_job.py,sha256=MdWf912usSZu_eXp4VmVobj_yujQgAqkTOULMYQLsVA,25454
|
1204
1205
|
pulumi_oci/datasafe/get_discovery_jobs_result.py,sha256=QfwqFqUontaHdJES-L7f0jtiQnBsIVc6VIbQyNaN5Ac,20416
|
1205
1206
|
pulumi_oci/datasafe/get_discovery_jobs_results.py,sha256=ASfJ9XeMfyTT7a1LHlV5BQ41TJGkiYZRXuIuutexcWI,14890
|
1206
1207
|
pulumi_oci/datasafe/get_library_masking_format.py,sha256=-YOGqjxQtsR48AsJJm23mIqOpqTUiHI7tod13RrYawM,12041
|
@@ -1218,8 +1219,9 @@ pulumi_oci/datasafe/get_masking_policy_health_reports.py,sha256=rFA_lWSkqQ_4-VvT
|
|
1218
1219
|
pulumi_oci/datasafe/get_masking_policy_masking_objects.py,sha256=gnwnm0YFYjzW4nPem3NBVnu37sMV9uZfFg_5DtUpfCo,10119
|
1219
1220
|
pulumi_oci/datasafe/get_masking_policy_masking_schemas.py,sha256=fHKNn3SvRRfhX03RplHeFJAXaMDHl2jLCpPHPPzknuY,7755
|
1220
1221
|
pulumi_oci/datasafe/get_masking_policy_referential_relations.py,sha256=g6yi4jp3Ba25kev3oRgKcMTKKXxEUEukGsuZ3wiaTbg,13267
|
1221
|
-
pulumi_oci/datasafe/get_masking_report.py,sha256=
|
1222
|
+
pulumi_oci/datasafe/get_masking_report.py,sha256=kEuCtPnoVRA0GXkm1CX1-Zgttd0egVXd2XUPsw9SP8U,19413
|
1222
1223
|
pulumi_oci/datasafe/get_masking_report_masked_columns.py,sha256=NTD1EPUyIR5IiwbjEsV3__TWHNJ7vkN1-UTI8dhcIZw,14160
|
1224
|
+
pulumi_oci/datasafe/get_masking_report_masking_errors.py,sha256=Q34CtPzqCkDX1U2ciruP6F9bfW0FKnaGjAqtGWU2c3o,7515
|
1223
1225
|
pulumi_oci/datasafe/get_masking_reports.py,sha256=_uHVv0tochk_AAWvd76uYC5osyLkU6vvW_rQ_Qr8vvA,11552
|
1224
1226
|
pulumi_oci/datasafe/get_masking_reports_masked_column.py,sha256=KAl-7g5JcGU85W8LvuG7E3uildhHz7IBQGtyQ9Alzmw,12913
|
1225
1227
|
pulumi_oci/datasafe/get_onprem_connector.py,sha256=ftJ3cEw6NfXo_xq699v6Lb4UmjI7alJhsByalZJVkto,11712
|
@@ -1235,9 +1237,9 @@ pulumi_oci/datasafe/get_sdm_masking_policy_difference_difference_columns.py,sha2
|
|
1235
1237
|
pulumi_oci/datasafe/get_sdm_masking_policy_differences.py,sha256=WfhlRMTTQySq1yitaj0mVTCvQgJHlPyg0EiU4Z2evfs,15449
|
1236
1238
|
pulumi_oci/datasafe/get_security_assessment.py,sha256=AyZhfqDdeQvAyHo6oMW54AE06-hL_KmMvbnUDmFflrQ,22040
|
1237
1239
|
pulumi_oci/datasafe/get_security_assessment_comparison.py,sha256=62oFkmTeFd32-_lzPRcY0FdsltL1RD0VHpgY1QtrlII,8734
|
1238
|
-
pulumi_oci/datasafe/get_security_assessment_finding.py,sha256=
|
1240
|
+
pulumi_oci/datasafe/get_security_assessment_finding.py,sha256=S0Ur9bPvLy8it8jWcwb0LeZQL9zZLyyLH4FUqrFPfZ4,12912
|
1239
1241
|
pulumi_oci/datasafe/get_security_assessment_finding_analytics.py,sha256=bo8ku3rCxbuHFpJLLCSONGZMrRegbFxqdXvjrhAatrc,18212
|
1240
|
-
pulumi_oci/datasafe/get_security_assessment_findings.py,sha256=
|
1242
|
+
pulumi_oci/datasafe/get_security_assessment_findings.py,sha256=n1QDknQ2HSYx5evsnDJe9AXK_y2Yao3gBiCV_9BsT1I,18488
|
1241
1243
|
pulumi_oci/datasafe/get_security_assessment_findings_change_audit_logs.py,sha256=LfcsGMZdnLV-v2q80zKK2ytXtbbXLYqm42RuhVcSPdk,22564
|
1242
1244
|
pulumi_oci/datasafe/get_security_assessment_security_feature_analytics.py,sha256=XjvC0ssQa9GeNRbd5zlLZBgATwiSTMh_odhLCh0-72Y,13209
|
1243
1245
|
pulumi_oci/datasafe/get_security_assessment_security_features.py,sha256=vVYbdHe2yebRu1FiOKdmX8Mjhh0G0uU9Gj4tLQDG1XA,30504
|
@@ -1255,7 +1257,8 @@ pulumi_oci/datasafe/get_security_policy_report_database_view_access_entries.py,s
|
|
1255
1257
|
pulumi_oci/datasafe/get_security_policy_report_database_view_access_entry.py,sha256=ZK-2vcsJ5_IpOaVFpIjpxBFsTfgQyyZpXtKqxnk-mdM,21342
|
1256
1258
|
pulumi_oci/datasafe/get_security_policy_report_role_grant_paths.py,sha256=3kZvdZEpE2tNanb2s0vjvJAxz4DSCFeiDRLE2KQRO1I,9416
|
1257
1259
|
pulumi_oci/datasafe/get_security_policy_reports.py,sha256=Hir7a32dwaLS1wFXerKuOOs8uC-I3HZmi9Y6EHpgZyg,16237
|
1258
|
-
pulumi_oci/datasafe/
|
1260
|
+
pulumi_oci/datasafe/get_sensitive_column_analytics.py,sha256=UaGyKwWxMRdeixqlknkBYE2qUbVUJFmBBQcu5PnHVx4,21591
|
1261
|
+
pulumi_oci/datasafe/get_sensitive_data_model.py,sha256=SrqKduaek-Xmz6ntklGLm54hnhDfh0Z89ROqkrhKdBs,20761
|
1259
1262
|
pulumi_oci/datasafe/get_sensitive_data_model_referential_relation.py,sha256=75tGhC9YJCaD1XrKSspzXAE3pLacrtp_vhxSye_CV4g,8813
|
1260
1263
|
pulumi_oci/datasafe/get_sensitive_data_model_referential_relations.py,sha256=Xib1gSU42AaB5rTPYFYrsDLrrwhHQVhotRfGlQbk4z8,15002
|
1261
1264
|
pulumi_oci/datasafe/get_sensitive_data_model_sensitive_objects.py,sha256=xpuQbaOzm1lq171KCNU6buyUxTq1YvXaKvaMY4-NTy4,10707
|
@@ -1265,6 +1268,9 @@ pulumi_oci/datasafe/get_sensitive_data_models.py,sha256=ExDX6bhkXt_r4C5htyzF0ZMe
|
|
1265
1268
|
pulumi_oci/datasafe/get_sensitive_data_models_sensitive_column.py,sha256=dkXjoP4Fr5EnhMkWbz23cN6q_itbbQXa6H07dMTNUPs,21199
|
1266
1269
|
pulumi_oci/datasafe/get_sensitive_data_models_sensitive_columns.py,sha256=ltTRP-zaEP7UXOrQWNSKiZ311_1hvNvKa_Abi7z0-oQ,33251
|
1267
1270
|
pulumi_oci/datasafe/get_sensitive_type.py,sha256=elTGNamxVIfpWA23Oo8JuZHeFdDrExUcAxSDf2fXiU0,16861
|
1271
|
+
pulumi_oci/datasafe/get_sensitive_type_group.py,sha256=BlYq72TpxQFnG7ZqAdbrSLKZPTe8QdtIibtpqz46YUQ,11297
|
1272
|
+
pulumi_oci/datasafe/get_sensitive_type_group_grouped_sensitive_types.py,sha256=fEBFZm2JWN2I_ewGETmbFpwdfRRQRsSq8mOhO2tRAAI,8530
|
1273
|
+
pulumi_oci/datasafe/get_sensitive_type_groups.py,sha256=1_e9qEDKSrHHtI_A_3hPxEPb7bHLb6aDJ_f8W-u54Hk,17341
|
1268
1274
|
pulumi_oci/datasafe/get_sensitive_types.py,sha256=TUBgskwC2u2a5qZn44coicMgd8g_Tu97ZaHuprsYWeY,23670
|
1269
1275
|
pulumi_oci/datasafe/get_sensitive_types_export.py,sha256=6rlfreTZoIOr0CsgcFSR8uGgPGdXR3NR3Ja89iHQcYA,12650
|
1270
1276
|
pulumi_oci/datasafe/get_sensitive_types_exports.py,sha256=sY8vnkwXH6a76x3J-j-x1nKcdKoqEmXU8wzzRbBR7tk,17847
|
@@ -1308,7 +1314,7 @@ pulumi_oci/datasafe/masking_policy.py,sha256=7o7NUo4mD29GHWArXPZGq6K68K3aTRkT3Q_
|
|
1308
1314
|
pulumi_oci/datasafe/masking_policy_health_report_management.py,sha256=sKn_zVyaD-B-nWdw--YEc4tiSKc264v-UL7AEOZoBdo,19537
|
1309
1315
|
pulumi_oci/datasafe/masking_report_management.py,sha256=bETga_n8T453Ovy1vaFtLmDNEk1LL5gA4dR206N9bI8,32183
|
1310
1316
|
pulumi_oci/datasafe/on_prem_connector.py,sha256=aLrvbSJIY-IPwEOZ8OawGZwGdmhM1PWYGoDrhWQPsI4,29965
|
1311
|
-
pulumi_oci/datasafe/outputs.py,sha256=
|
1317
|
+
pulumi_oci/datasafe/outputs.py,sha256=ZKh7tzYPLCyZjPmnOY9SmT7wL-bECr-Ut6e96NgDj8s,1430288
|
1312
1318
|
pulumi_oci/datasafe/report.py,sha256=1FY3RWdV8jiOZ1Kdh8yc_f2aQu8okjO7xPucday88nI,28281
|
1313
1319
|
pulumi_oci/datasafe/report_definition.py,sha256=fWp6K-pwg2tgGKCq9dviD2OTfJrPKUNcVFoDmuyWwOI,68721
|
1314
1320
|
pulumi_oci/datasafe/sdm_masking_policy_difference.py,sha256=HHucE8bQEpn2xKJ7zxJlltPb9Tgkzkh-XkjbBVIzmRU,38019
|
@@ -1317,11 +1323,13 @@ pulumi_oci/datasafe/security_policy.py,sha256=AxiCTTB595HnW8Cwxq4n-n01Fis2XfPijj
|
|
1317
1323
|
pulumi_oci/datasafe/security_policy_deployment.py,sha256=PcNcGVsuvViaC_HQtPazkfgCyjs8wRj2uVaeXq10eHA,33195
|
1318
1324
|
pulumi_oci/datasafe/security_policy_deployment_management.py,sha256=uqtFjYUIXyc53VCCFUVpOaAhAtJDmW3-CavAj0gqwFg,30976
|
1319
1325
|
pulumi_oci/datasafe/security_policy_management.py,sha256=ALEYXcsLDzJH-BNiX5MlshBQ4CFyD8cwdAlwFF50DW4,28831
|
1320
|
-
pulumi_oci/datasafe/sensitive_data_model.py,sha256=
|
1326
|
+
pulumi_oci/datasafe/sensitive_data_model.py,sha256=FSQsigG91nrSptzKk98UQkWRMBKSFJc_5Ih5RFNrefc,72729
|
1321
1327
|
pulumi_oci/datasafe/sensitive_data_model_referential_relation.py,sha256=nWFo4WtkgDIz2CXMgoFGPp8-tskuw2hvVty6TbtVyNA,27892
|
1322
1328
|
pulumi_oci/datasafe/sensitive_data_models_apply_discovery_job_results.py,sha256=0mqebUwNVUhY5lQ-e2_NYEsVSQdOyvZIVIUPG4cn2oE,8004
|
1323
1329
|
pulumi_oci/datasafe/sensitive_data_models_sensitive_column.py,sha256=OUrYxrqemF6P4jLT0CgAaMe33CR_1Uiiui8dfcaB0wE,67631
|
1324
1330
|
pulumi_oci/datasafe/sensitive_type.py,sha256=K2lKeLbVHijOP-Q_ajjkn-i04ISAzeOc_GTSnLjWOLI,51998
|
1331
|
+
pulumi_oci/datasafe/sensitive_type_group.py,sha256=RXcX1Zh0pN8xB3uxfG-kL9a7nUvE5aeXpN_EsqAeRx0,29013
|
1332
|
+
pulumi_oci/datasafe/sensitive_type_group_grouped_sensitive_type.py,sha256=HwY4EDO0nty9c-A-eHiBq0slpjwLNCIPOyjSBkKiqNY,15444
|
1325
1333
|
pulumi_oci/datasafe/sensitive_types_export.py,sha256=_fOuopvkPnPFfuOG_iWOJGfdl3sWbY0MWAU-NJIsV74,35663
|
1326
1334
|
pulumi_oci/datasafe/set_security_assessment_baseline.py,sha256=EOlnJNcf1ywBKBtUv_odDEuxBJm10Hao2D_vAxyd2Wk,12548
|
1327
1335
|
pulumi_oci/datasafe/set_security_assessment_baseline_management.py,sha256=yqlxoEbM-vpzCyCd6KOSSv8GNndFEo_x1-wz98ajXVM,13694
|
@@ -1338,8 +1346,8 @@ pulumi_oci/datasafe/unset_security_assessment_baseline_management.py,sha256=YEYT
|
|
1338
1346
|
pulumi_oci/datasafe/unset_user_assessment_baseline.py,sha256=HBAS6RKPnM-XvQMu8GGM1Zq8GUSGwo7ONQTFEcd4shk,12511
|
1339
1347
|
pulumi_oci/datasafe/unset_user_assessment_baseline_management.py,sha256=35cHHgSOwwXA7KzdBO0h_1q898gblxQZfz8icp2a8zU,12008
|
1340
1348
|
pulumi_oci/datasafe/user_assessment.py,sha256=oHUSZcoIZDf8TGe33spDp9Locz7Jg0atVWBj7n9eDoI,58645
|
1341
|
-
pulumi_oci/datascience/__init__.py,sha256
|
1342
|
-
pulumi_oci/datascience/_inputs.py,sha256=
|
1349
|
+
pulumi_oci/datascience/__init__.py,sha256=-qD8sdDOPU8o98Z4Ut5Z1KyfBGkjR1NIxPq6qUqz0lo,1827
|
1350
|
+
pulumi_oci/datascience/_inputs.py,sha256=KTZ9p2Uq7vnCFxcCDvnoJA2GKE-JNKj7JB5UJpWMdTQ,440071
|
1343
1351
|
pulumi_oci/datascience/get_containers.py,sha256=YGn8S0qa7S7McjJkWE_0mVORj4qlCXyuPSxdGSIMD9Q,11744
|
1344
1352
|
pulumi_oci/datascience/get_fast_launch_job_configs.py,sha256=8vxxnygk-9Iiv213tAczVCZdDIOOqLzCrESiMGKtR6A,6226
|
1345
1353
|
pulumi_oci/datascience/get_job.py,sha256=rTHf2J_91ma5kbDET7ASjdY42NwYWQxMGzR5UmluA7E,19861
|
@@ -1347,18 +1355,20 @@ pulumi_oci/datascience/get_job_run.py,sha256=4b81Cd5JP5i0xk-YbQY5rwFxMPWGLqGwbp2
|
|
1347
1355
|
pulumi_oci/datascience/get_job_runs.py,sha256=99PylZwHPZtz9fEsu-13PPxAXWIT3iocaZ51mWdmtPo,10585
|
1348
1356
|
pulumi_oci/datascience/get_job_shapes.py,sha256=RWlimRA0XYwC625OCLt8SPkvxF6UsrXglSduc-OSIiA,5552
|
1349
1357
|
pulumi_oci/datascience/get_jobs.py,sha256=9n9D_lizqdC7VJJw2ot_YR_KRnALWXhhBeHDV3TDTF0,10535
|
1350
|
-
pulumi_oci/datascience/get_model.py,sha256=
|
1358
|
+
pulumi_oci/datascience/get_model.py,sha256=DtlES5M8W4M_953RHMMCR411M204eK7L17i5qCKym0w,23824
|
1359
|
+
pulumi_oci/datascience/get_model_custom_metadata_artifact_content.py,sha256=iNLd861O6LX84Y1Oj5FyBONw_eeMWI-LX7HSIfL-cSc,7088
|
1360
|
+
pulumi_oci/datascience/get_model_defined_metadata_artifact_content.py,sha256=uLvPzmp86L0HQVly3Ns3N6C2Nx8KaIRfvkkpZhsUN7s,7125
|
1351
1361
|
pulumi_oci/datascience/get_model_deployment.py,sha256=W799z4a-DrNjhnmH1TGuCwc1gGZuNCqlT0bgRK99hr0,15428
|
1352
1362
|
pulumi_oci/datascience/get_model_deployment_shapes.py,sha256=rh8lf-Xv4ZfkVWC7kmcQbj0v5z0VQyf-gpb1XilFALs,6197
|
1353
1363
|
pulumi_oci/datascience/get_model_deployments.py,sha256=2BIs7qdPQb4oJHtVivznkwozpBGUtNQdk95Br57E8eI,12127
|
1354
1364
|
pulumi_oci/datascience/get_model_provenance.py,sha256=UKhKwqV4DEHQ8Ri_3fs9C9DJwEhrgAc7wd7qTR8TYIk,7953
|
1355
|
-
pulumi_oci/datascience/get_model_version_set.py,sha256=
|
1356
|
-
pulumi_oci/datascience/get_model_version_sets.py,sha256=
|
1357
|
-
pulumi_oci/datascience/get_models.py,sha256=
|
1365
|
+
pulumi_oci/datascience/get_model_version_set.py,sha256=KoaX8uBkSnizCnwqrUOQhuA7gAhNvOx6vpvlhR9dgEc,12379
|
1366
|
+
pulumi_oci/datascience/get_model_version_sets.py,sha256=MJU-Ymt8DZCjmleKKxibTk5TCwJKfsR_LmYgcvB2HD4,12497
|
1367
|
+
pulumi_oci/datascience/get_models.py,sha256=YzVtV2NANuH4sjmgR7okthNb8u_yexVTe_Lbqc2eMPo,15310
|
1358
1368
|
pulumi_oci/datascience/get_notebook_session.py,sha256=yttUqw_TS_vUCciS339r7QJhMTJm2RY3o4ZY_M1tBh4,15984
|
1359
1369
|
pulumi_oci/datascience/get_notebook_session_shapes.py,sha256=woPRfu2IF4qQaKOsB2ziF5UHFFYjje_8nvqs4zBolF0,6199
|
1360
1370
|
pulumi_oci/datascience/get_notebook_sessions.py,sha256=xZCk_tZeOWNILf6GArmLl0X98DKDX-2F6ZoRYQcwHKg,11649
|
1361
|
-
pulumi_oci/datascience/get_pipeline.py,sha256=
|
1371
|
+
pulumi_oci/datascience/get_pipeline.py,sha256=dI3PjilHCi20mMqJ9teh5CvOJoKi_5u64RhSAFbRKYk,18091
|
1362
1372
|
pulumi_oci/datascience/get_pipeline_run.py,sha256=PESVrJAStoBRHuhC5sl2-XEIY3qE1Uao3akMxMkOiOo,19908
|
1363
1373
|
pulumi_oci/datascience/get_pipeline_runs.py,sha256=YKxm8SVv1Bxh8H3sMVEzShJnpYhaWVOKdLZK5ENT1fY,11045
|
1364
1374
|
pulumi_oci/datascience/get_pipelines.py,sha256=tG52rgCcCBxdgOfXXkjYJ2beHT9ZWrDsQKAIsuzxaj4,10765
|
@@ -1370,19 +1380,32 @@ pulumi_oci/datascience/get_schedule.py,sha256=qw2NtiVqHdtSs22XChAoa9Oakw1hFDp_Ld
|
|
1370
1380
|
pulumi_oci/datascience/get_schedules.py,sha256=I9igCvNYfmY1NHevzRGlm7tVJIwEpOD-gToR3NKZKJc,9350
|
1371
1381
|
pulumi_oci/datascience/job.py,sha256=CKx-OCPc-mnwV3yya9_ODyadwXkIGLH7jJpx2yXPq88,66918
|
1372
1382
|
pulumi_oci/datascience/job_run.py,sha256=Ezk-s_mKsPjumrgDrPT_jgUMjj1y88OqRrXG4Ruj39U,58133
|
1373
|
-
pulumi_oci/datascience/model.py,sha256=
|
1383
|
+
pulumi_oci/datascience/model.py,sha256=pVMQ8GpAINokIwhmqHxrCVtGvPsDSWIxp5uBsYg5WPc,76166
|
1374
1384
|
pulumi_oci/datascience/model_artifact_export.py,sha256=qpoGIPU6izNwENI_B95Hhfr_XxyyPgEtszWpUHPFjpQ,13053
|
1375
1385
|
pulumi_oci/datascience/model_artifact_import.py,sha256=MazxhVf2vz69NjG5YSr3NT5OQW_1h82t3ifPIF9Uuq8,13518
|
1386
|
+
pulumi_oci/datascience/model_custom_metadata_artifact.py,sha256=mYTxLqRWJkzWBiU1K0-K-vjGEukizqkcTPLg-4Gi1dw,21950
|
1387
|
+
pulumi_oci/datascience/model_defined_metadata_artifact.py,sha256=bJdfFGHyfIO0H8thn7dBboLOJz0rjWsaHLmA9AzWpKY,22040
|
1376
1388
|
pulumi_oci/datascience/model_deployment.py,sha256=-sWUvScp-jh__TSFQgIPf3knqQhMUGdYbCAE4MSsjFc,59961
|
1377
1389
|
pulumi_oci/datascience/model_provenance.py,sha256=bs0nhQLjbJPq48vn2itr1OdNENIDFYEVqt6Hzl3wG6s,24769
|
1378
|
-
pulumi_oci/datascience/model_version_set.py,sha256=
|
1390
|
+
pulumi_oci/datascience/model_version_set.py,sha256=W1aY6Q8ZuF4Zbrttk4_blOtIIoL96AYU1GBoGuiTtno,32982
|
1379
1391
|
pulumi_oci/datascience/notebook_session.py,sha256=HHk9TueUZl2db4m__DO2XRscYdz_PAE5fuB3MqkfKHw,53685
|
1380
|
-
pulumi_oci/datascience/outputs.py,sha256=
|
1381
|
-
pulumi_oci/datascience/pipeline.py,sha256=
|
1382
|
-
pulumi_oci/datascience/pipeline_run.py,sha256=
|
1392
|
+
pulumi_oci/datascience/outputs.py,sha256=f1ZjNzIF3DrCv7m4fqF1qWTC7BGxU1ZebTkGTs1F2vU,900258
|
1393
|
+
pulumi_oci/datascience/pipeline.py,sha256=_e_YvGuS31brdgAQqF92VBs-o2h1zQ_8QH2w3iZ7WlU,52016
|
1394
|
+
pulumi_oci/datascience/pipeline_run.py,sha256=xO0sMheN8faZX9xFTCyK7aFqoBKanwZ2PXuEcd1T04s,64671
|
1383
1395
|
pulumi_oci/datascience/private_endpoint.py,sha256=qw8MZiEbX3YLcTEmWhx57sWNoVAI9BodwGXfu20lsto,41007
|
1384
1396
|
pulumi_oci/datascience/project.py,sha256=t72IVNZviBUE-C8VbNE7RmL1sJV6EwWy9cdQIA27Hlc,27355
|
1385
1397
|
pulumi_oci/datascience/schedule.py,sha256=oiv4Cv4d3rgbywhnQaYlpRN9u4vqjcrM7hWgjkpbjik,59531
|
1398
|
+
pulumi_oci/dblm/__init__.py,sha256=8RqHfMPSs72lhEA7b-iNzhBuOgRSpNd1gHLMeREhU_o,660
|
1399
|
+
pulumi_oci/dblm/_inputs.py,sha256=RuFy9tRdgNo8-IKsrCG6Td97kcXkwpIaGYR44tciCPs,7574
|
1400
|
+
pulumi_oci/dblm/get_vulnerability.py,sha256=JutOFTl-uBl3Eyrxo1u-UgNyAXUU0srk8awkiBvwEng,10977
|
1401
|
+
pulumi_oci/dblm/get_vulnerability_aggregated_vulnerability_data.py,sha256=O9RqWylirSlIVKVTBOvAjWN2Iqp6q1L6PCvcxY9cLhI,11963
|
1402
|
+
pulumi_oci/dblm/get_vulnerability_notifications.py,sha256=jemHwl7X_SRBcNRe84Ve3DBKQHjgfApPkBBQpCEbVuA,6166
|
1403
|
+
pulumi_oci/dblm/get_vulnerability_resources.py,sha256=P7892NTLkbRtYhkWA03cSgDUfNH5w41TRMb6tVq3JpM,12973
|
1404
|
+
pulumi_oci/dblm/get_vulnerability_scan.py,sha256=CUV2Ysp7yhEFe4E9D-YFyjXYbCDu77qOELt35yRPy9g,12232
|
1405
|
+
pulumi_oci/dblm/get_vulnerability_scans.py,sha256=sYslBNKQX3gixuxN3HzpAaHojeXHci66Sa67HA392aU,14221
|
1406
|
+
pulumi_oci/dblm/get_vulnerability_vulnerabilities.py,sha256=nW8YNHGxTCSDTgYO7fx1lcWda1N-pLnBYgZjLfrUeVY,12909
|
1407
|
+
pulumi_oci/dblm/outputs.py,sha256=dQiNqXXjHuvuqR50KwS5uoLXvaXiEA7IVMdVjSUrqWI,45274
|
1408
|
+
pulumi_oci/dblm/vulnerability_scan.py,sha256=p_693KPi0a1BabKDxT1cT-DhNQ4Z_nqr_NZPdQw47Z8,24285
|
1386
1409
|
pulumi_oci/delegateaccesscontrol/__init__.py,sha256=jLm-tjfbPmvSyneDTdnHN4gxE9ajplHXpvD7K4XptAk,999
|
1387
1410
|
pulumi_oci/delegateaccesscontrol/_inputs.py,sha256=XqNArlUOPTJMcg7EvHri_tilqm9O6zOtIvoWXwtBhy4,10703
|
1388
1411
|
pulumi_oci/delegateaccesscontrol/delegation_control.py,sha256=nPwDHmGAfa-bwADeiKDi45vMA97wROHUVGHJ0AmJNik,68011
|
@@ -1527,11 +1550,11 @@ pulumi_oci/dns/zone_promote_dnssec_key_version.py,sha256=vMFfMJpRpD4gFi_dz6bPclP
|
|
1527
1550
|
pulumi_oci/dns/zone_stage_dnssec_key_version.py,sha256=BfnAAeki-oOTzZChZWt7xAWobMpFUBreePCA7rgKWtM,14312
|
1528
1551
|
pulumi_oci/email/__init__.py,sha256=CccmgPhQDCLi1x6p0ZDJLIe284HxWV19bUQhJgFcwwk,782
|
1529
1552
|
pulumi_oci/email/_inputs.py,sha256=90XHXXUXj1dQGvBGj9PevtqfSuzLC4ln_0e4sifSjlo,7933
|
1530
|
-
pulumi_oci/email/dkim.py,sha256=
|
1553
|
+
pulumi_oci/email/dkim.py,sha256=RDk1KOzzr7SuVIKY0axHnW0kM1ExEhU-9kJWZ3wFq6w,46443
|
1531
1554
|
pulumi_oci/email/email_domain.py,sha256=tAc8d-ZK1Y3VR-cnnkcoOspEPUeqEac_eNm1fVkssfI,36713
|
1532
1555
|
pulumi_oci/email/email_return_path.py,sha256=8kpcDWXi95CiS7m5Rcre84x5GRG_duD635wSnov2_iQ,39890
|
1533
1556
|
pulumi_oci/email/get_configuration.py,sha256=aY80r444QQLa4Xo4IMS7Q1FOJnANE-kjkiZLSWiFanA,5758
|
1534
|
-
pulumi_oci/email/get_dkim.py,sha256=
|
1557
|
+
pulumi_oci/email/get_dkim.py,sha256=PFhvFZFQlN-mW6K-JLhxOCcGWMjmd73E3hhe0jnuLyk,15621
|
1535
1558
|
pulumi_oci/email/get_dkims.py,sha256=_TjKphBL_v3Mg9wtbUBUfy50BBWra0gAdIuEsgulFMc,7908
|
1536
1559
|
pulumi_oci/email/get_email_domain.py,sha256=pkx04C5XPIYh1rGn5buzHql28QjxRwOAVtoGM9ILIpw,12535
|
1537
1560
|
pulumi_oci/email/get_email_domains.py,sha256=mCcmVEGuGFFXrXP_poXIcBj0ODgXL2RNl4sC-fBimmQ,8202
|
@@ -1541,7 +1564,7 @@ pulumi_oci/email/get_sender.py,sha256=yE2MRT-Emc7Nh5XQprEEwKCiZJLkU7-MO-o7kNz3ba
|
|
1541
1564
|
pulumi_oci/email/get_senders.py,sha256=7HlKExNDYEKnKvTQdxG3CmZJNqqp6d2j31Bs6nAXYRs,8000
|
1542
1565
|
pulumi_oci/email/get_suppression.py,sha256=mgSwpVWvtOIlIikfs4ALQMH3jdiozTyxQrY6WhrMeVI,9977
|
1543
1566
|
pulumi_oci/email/get_suppressions.py,sha256=bs04UGbj1dFydVdfJTU-JQdQmPKKEXen18cwGcqmrMo,11754
|
1544
|
-
pulumi_oci/email/outputs.py,sha256=
|
1567
|
+
pulumi_oci/email/outputs.py,sha256=NYz8RIv_sqgiHyx1NXmMbVY2vl--8ddpaHm_g5bETkI,43462
|
1545
1568
|
pulumi_oci/email/sender.py,sha256=2gOr3UbuSVYqfIb_Ss8GA_GsSDATPHNUtEpnJKl3p1g,25858
|
1546
1569
|
pulumi_oci/email/suppression.py,sha256=NHZHQjJ9VuqxhG8KG5NFATdPQivcK20aG_JuwyfijTM,22320
|
1547
1570
|
pulumi_oci/events/__init__.py,sha256=s5WifgDAfiU0eAvulJ-z_3vdbDeRHphEqpEnfC6mvhQ,383
|
@@ -1550,14 +1573,17 @@ pulumi_oci/events/get_rule.py,sha256=FVcRRKoLPAyw4vitYbxfI7y5l6mx9y5IgNnojMiVUHg
|
|
1550
1573
|
pulumi_oci/events/get_rules.py,sha256=meRz2WjHwSCRN_6CmeZfhbnFU1l1kXioIIMlYCOyo3s,7818
|
1551
1574
|
pulumi_oci/events/outputs.py,sha256=1tJA_GwFrGsAb5HVG_xvuxNrQVKXnywiXnmq8lKLa4c,26538
|
1552
1575
|
pulumi_oci/events/rule.py,sha256=jbsjvp_CeUtd1yuHNgJPB1hEcSlkAgp_K9wato2L_wc,44326
|
1553
|
-
pulumi_oci/filestorage/__init__.py,sha256=
|
1554
|
-
pulumi_oci/filestorage/_inputs.py,sha256=
|
1576
|
+
pulumi_oci/filestorage/__init__.py,sha256=MeFJtjJDBx_9b43jQL9Oa_n6e9CErj1NqGpw_TaMIx0,1158
|
1577
|
+
pulumi_oci/filestorage/_inputs.py,sha256=U-h0OO-GOGQj9KOXp7v1yTo5-qB2zkRHcKOoopQQ40s,77312
|
1555
1578
|
pulumi_oci/filestorage/export.py,sha256=WVSWhClrEKdqv2OU1XBSzB_U_P8yC1g_2dsaDLqc3p8,39224
|
1556
1579
|
pulumi_oci/filestorage/export_set.py,sha256=jbrq_UHhaP4wrQw-82xEiNSQHCLoCdslZ1RneLh_QH0,28821
|
1557
|
-
pulumi_oci/filestorage/file_system.py,sha256=
|
1580
|
+
pulumi_oci/filestorage/file_system.py,sha256=Eoo5jrmAHR9szhaDHpZ9AbPeiQ27cKZVVM3xp3ykAx4,73927
|
1581
|
+
pulumi_oci/filestorage/file_system_quota_rule.py,sha256=deye9lN2XN5ym-Aa18Lc-r593M4fxd2IUbMvebZ7BiI,31018
|
1558
1582
|
pulumi_oci/filestorage/filesystem_snapshot_policy.py,sha256=z_qGKO70HHsphZCXKwU3DWix7eNSQJftLqygLJDXOu4,43551
|
1559
1583
|
pulumi_oci/filestorage/get_export_sets.py,sha256=axeKm4Kg8F-Vgvuv_zvIpCQ8NHJoyPO7YCMcnlRzOvM,9967
|
1560
1584
|
pulumi_oci/filestorage/get_exports.py,sha256=Jsf6gBZVMKSK1D0lvqmUjNCLJaHNo3I5vDlmbWADlCA,9727
|
1585
|
+
pulumi_oci/filestorage/get_file_system_quota_rule.py,sha256=zblduqbrlj5hQVayyFjc0VcCbdUZu3rsTSTu2Cw1ZYk,11941
|
1586
|
+
pulumi_oci/filestorage/get_file_system_quota_rules.py,sha256=7wCwI_Z0fn5g-feGhB3XQ5k1uJRx9yRhBGPjjwqHVBE,10530
|
1561
1587
|
pulumi_oci/filestorage/get_file_systems.py,sha256=epe_OKq7j2hnrQrmD69rRUI7Jxw9_NALDHPQ7B77vss,15887
|
1562
1588
|
pulumi_oci/filestorage/get_filesystem_snapshot_policies.py,sha256=UIa_ZBs0mEWGOQWkceIUDrJx0pOEmjMZ9GZq9ALDzfo,11226
|
1563
1589
|
pulumi_oci/filestorage/get_filesystem_snapshot_policy.py,sha256=C-eFfuBLIrVl90s5aAovSiLTvtpafX9IXcCyGQpW0DI,13368
|
@@ -1572,7 +1598,7 @@ pulumi_oci/filestorage/get_snapshot.py,sha256=rVkIoFaxNjumzJo4HiW5tPvNcjD0wNsuvP
|
|
1572
1598
|
pulumi_oci/filestorage/get_snapshots.py,sha256=9WUe6gYX1cglCbVQI4nn3i1wKPDUywTDwC8B6WUf7ks,11078
|
1573
1599
|
pulumi_oci/filestorage/mount_target.py,sha256=E4bbDxgcOCM94lDva4rZQfv3d8tOyJXxTwulZOsx9Uo,82418
|
1574
1600
|
pulumi_oci/filestorage/outbound_connector.py,sha256=g-AmgS8T-rPEo0SwrNiiVsl8fwEjpp0NXcXd-CJr5qE,48631
|
1575
|
-
pulumi_oci/filestorage/outputs.py,sha256=
|
1601
|
+
pulumi_oci/filestorage/outputs.py,sha256=ncpjVybGtayXtHpjv2RKnLqcEJ3WtxPyfdPlh6ueasA,205067
|
1576
1602
|
pulumi_oci/filestorage/replication.py,sha256=wPBSZKJFG9gaz7tRJ3tLWV1gH3EqjYVUcduwx1RWkSI,52621
|
1577
1603
|
pulumi_oci/filestorage/snapshot.py,sha256=B_7WE1C_FfKwLNCy0nngdINT5fyh0r15q9JuULJy_JY,42691
|
1578
1604
|
pulumi_oci/fleetappsmanagement/__init__.py,sha256=3CY3llYOLwOKFIfAKn0wUk8bvsRvW8v_DQksc7PYZZI,2169
|
@@ -2310,26 +2336,26 @@ pulumi_oci/monitoring/get_metric_data.py,sha256=AXVjUwPpiBuAr7xSTH2KnQHri9jDmAbp
|
|
2310
2336
|
pulumi_oci/monitoring/get_metrics.py,sha256=FjRie_gZDvBQtFKOvZC5qWIhmLajNumBaRX_E-BUfvM,16559
|
2311
2337
|
pulumi_oci/monitoring/outputs.py,sha256=PRtjJraw3OjXxaNrp1-asv8NheigPUhKprpRCP8oXLw,123069
|
2312
2338
|
pulumi_oci/mysql/__init__.py,sha256=NePAVofUEJFnzHsogn-BAX3FEUTLAqx3umifZgO-SUs,908
|
2313
|
-
pulumi_oci/mysql/_inputs.py,sha256=
|
2314
|
-
pulumi_oci/mysql/channel.py,sha256=
|
2315
|
-
pulumi_oci/mysql/get_channel.py,sha256=
|
2339
|
+
pulumi_oci/mysql/_inputs.py,sha256=ypJtuUtmb9zLEa98E9peHLSmFfww2ivAi_PuxUMxiZA,444277
|
2340
|
+
pulumi_oci/mysql/channel.py,sha256=vZOB-BfDENBWYRPk2_c15H_APs2Il7dXYXddPx0IY0Y,31071
|
2341
|
+
pulumi_oci/mysql/get_channel.py,sha256=hBB3F9A1R47xVItm4vgfcOXJdEnmM2476BXbKHMpN5Y,12189
|
2316
2342
|
pulumi_oci/mysql/get_channels.py,sha256=T7FvJVoXAhKucISMtKbZ7tPCSvHTWaFQusFgRjvnEns,10590
|
2317
2343
|
pulumi_oci/mysql/get_heat_wave_cluster.py,sha256=1WYSeKhEbzIIV9V25DGiy3y0RauSI-iJ1wKRA6zWyow,9375
|
2318
|
-
pulumi_oci/mysql/get_mysql_backup.py,sha256=
|
2344
|
+
pulumi_oci/mysql/get_mysql_backup.py,sha256=tulou1dsRa3RRJ-we8-OLxy9z4yFE_ZnZRfe8Abj4e4,19884
|
2319
2345
|
pulumi_oci/mysql/get_mysql_backups.py,sha256=wHYn9M9vnojvY0V0Fp2WRLspcfjZ6LscGk9xIKxHw6I,10654
|
2320
|
-
pulumi_oci/mysql/get_mysql_configuration.py,sha256
|
2346
|
+
pulumi_oci/mysql/get_mysql_configuration.py,sha256=-pWR4_6KnhzNKaFt2SCDLB7Sy_-EkVWCF1h2Nr-gM78,13306
|
2321
2347
|
pulumi_oci/mysql/get_mysql_configurations.py,sha256=cc-idOpHbn18prXaysAeIu6yY2FfFy4SuCRACzCrT5E,11496
|
2322
|
-
pulumi_oci/mysql/get_mysql_db_system.py,sha256=
|
2348
|
+
pulumi_oci/mysql/get_mysql_db_system.py,sha256=udkomUkzS0_lNB0v6uNDfd_SDWCwT5tlvpb7qvHOYRs,34324
|
2323
2349
|
pulumi_oci/mysql/get_mysql_db_systems.py,sha256=wbnwmBC-0LdFNh_t4ohxyfWxMCAMl28T4_EfV5Q2cz4,14823
|
2324
2350
|
pulumi_oci/mysql/get_mysql_version.py,sha256=uHXt7hLYEoch4TD4zk_OHMgtt214rJ8teDQj5-2PTio,5662
|
2325
2351
|
pulumi_oci/mysql/get_replica.py,sha256=O1uwPdvvfwxaSnMZPZWTa-GdYuR3EdopjeUNLdGIuSY,18081
|
2326
2352
|
pulumi_oci/mysql/get_replicas.py,sha256=8BiHmL6dI5-bhpAIX_oHTAkqjmaIsyr6yAYNT49cDDo,12029
|
2327
2353
|
pulumi_oci/mysql/get_shapes.py,sha256=dHdldas7nPeRW-MjpNmJ6ZAWKnpdWq38_-CwzN6wglo,8811
|
2328
2354
|
pulumi_oci/mysql/heat_wave_cluster.py,sha256=tJNrg8vgd-Yt7Vp5R3LnEYH3yZ96lZVQqIUm3u9iXtU,26950
|
2329
|
-
pulumi_oci/mysql/mysql_backup.py,sha256=
|
2330
|
-
pulumi_oci/mysql/mysql_configuration.py,sha256=
|
2331
|
-
pulumi_oci/mysql/mysql_db_system.py,sha256=
|
2332
|
-
pulumi_oci/mysql/outputs.py,sha256=
|
2355
|
+
pulumi_oci/mysql/mysql_backup.py,sha256=9e3urwRTwm8ouDJTy8qFvlVN_xgMfTKfXspByz9e5rs,48737
|
2356
|
+
pulumi_oci/mysql/mysql_configuration.py,sha256=nAWaj5FTgcluOXLoBYK9Dm1CAmrRlDrhM6yeKVr0vjM,59316
|
2357
|
+
pulumi_oci/mysql/mysql_db_system.py,sha256=vUv-QD3GzObobtTm2Tb9urwWLrf8rb01z1PbJY8PKEI,135928
|
2358
|
+
pulumi_oci/mysql/outputs.py,sha256=0cHegsQEvDW7eL7NI2Ey4rVWr1HulX-8juMzNQysM44,774991
|
2333
2359
|
pulumi_oci/mysql/replica.py,sha256=jTeRnQ0e4Q_peD6eQNJOZb8v62njF9Dy2-8ybkTVNwk,46345
|
2334
2360
|
pulumi_oci/networkfirewall/__init__.py,sha256=6CxpTGYsgQuKkTAQ2Pp9wlTkaCPf0Kz2eChNR2Naaz4,2409
|
2335
2361
|
pulumi_oci/networkfirewall/_inputs.py,sha256=Hs_V4tjuZRftdnk47LYTMqdWuaB5son9Tmmp-1elQDI,45519
|
@@ -2499,14 +2525,17 @@ pulumi_oci/opa/get_opa_instance.py,sha256=XU5-Lnne2g6NKe1yYsHyrXiwSfxBM95en3tivp
|
|
2499
2525
|
pulumi_oci/opa/get_opa_instances.py,sha256=98Vsq4o2PbfyHAmzMyTJMTJwPA5cbV2ZkHyD0NSQnqo,8148
|
2500
2526
|
pulumi_oci/opa/opa_instance.py,sha256=TRh7wo4q8jL12DtvX5wrvKNPqs2Z_Tj_zUigAdAmCkM,49498
|
2501
2527
|
pulumi_oci/opa/outputs.py,sha256=ZAoisNuGTmsJAj4Zqvz2-OCbSXAYl-SkUhYVNRxaNjU,23230
|
2502
|
-
pulumi_oci/opensearch/__init__.py,sha256=
|
2503
|
-
pulumi_oci/opensearch/_inputs.py,sha256=
|
2504
|
-
pulumi_oci/opensearch/cluster.py,sha256=
|
2505
|
-
pulumi_oci/opensearch/get_opensearch_cluster.py,sha256=
|
2528
|
+
pulumi_oci/opensearch/__init__.py,sha256=WXhOdtyJgAd0qdMYlg3JJCHUjYeeTWd7ZHRJGx885Nw,629
|
2529
|
+
pulumi_oci/opensearch/_inputs.py,sha256=7ZVeMkeq_K0v6Jx3XHbiRO2rnn8HBjVfTiFFhIyDf9E,19669
|
2530
|
+
pulumi_oci/opensearch/cluster.py,sha256=2KYrNtX747_bkiHntllG9nOQBj3iCiOqmgE-0SsY1BI,113870
|
2531
|
+
pulumi_oci/opensearch/get_opensearch_cluster.py,sha256=E065Bqn6zWZhnQaNzIFycVnDpJ2Lb9f6WskZlV-Sya0,39175
|
2532
|
+
pulumi_oci/opensearch/get_opensearch_cluster_pipeline.py,sha256=bbfzba3cP1apWL6N12N1Hy9i6hOeTHwaEX4ppf0TGHM,20563
|
2533
|
+
pulumi_oci/opensearch/get_opensearch_cluster_pipelines.py,sha256=zc_Aq4rx2IgQHVZVgb4KQlafx9WGEd4PcYK8xr5UfT4,10588
|
2506
2534
|
pulumi_oci/opensearch/get_opensearch_clusters.py,sha256=iXGgdBa086YPaYo69ujEgxTBtxCaGlmVJxZ2MT2F4tY,9500
|
2507
2535
|
pulumi_oci/opensearch/get_opensearch_version.py,sha256=1ztWgYO7-bsAeSB3CHZdc3tpNWaiVuiyF8VjB7Ta338,5565
|
2508
2536
|
pulumi_oci/opensearch/get_opensearch_versions.py,sha256=8uZGHlSHyMwRW4tdKrKu8eAPtoVamgt5X_oQKDLaxAg,6893
|
2509
|
-
pulumi_oci/opensearch/
|
2537
|
+
pulumi_oci/opensearch/opensearch_cluster_pipeline.py,sha256=J9rMdpXpQ6Sk0TlvZhtqoI_-lTbg2Z1Bng-CDDdPUTU,61603
|
2538
|
+
pulumi_oci/opensearch/outputs.py,sha256=lpfWgS7h2zG51Jr_1xFBIgXmOPZydNu9Q-dwcip2CgA,70057
|
2510
2539
|
pulumi_oci/operatoraccesscontrol/__init__.py,sha256=fg8VIDMKPF90lTmfaU-RlhrS2HKVnJhcaeS2eLkEYeM,736
|
2511
2540
|
pulumi_oci/operatoraccesscontrol/_inputs.py,sha256=EiqC9W9AFfWSkrlcx8SohiVMJ5l2W7iZCDpvWf6fw2g,6056
|
2512
2541
|
pulumi_oci/operatoraccesscontrol/get_access_request.py,sha256=xjtEF7kodtvN16QXEqyt9LteKdWartBruTjKBzEl32M,30362
|
@@ -2727,22 +2756,22 @@ pulumi_oci/osubusage/get_computed_usage.py,sha256=I9cvmnwfK_y66Xb6J8Evm7vjPjlQat
|
|
2727
2756
|
pulumi_oci/osubusage/get_computed_usages.py,sha256=n-yaR5_QrtgPVl1L6NRDsSmxMbHJHoRVQFHuM6gthYA,11634
|
2728
2757
|
pulumi_oci/osubusage/outputs.py,sha256=b0BicdDMUgAaCwxn1gVkljAdezDCeEqVYmv35oFiKo4,37995
|
2729
2758
|
pulumi_oci/psql/__init__.py,sha256=Ze9Vw0SqWLlOMonve0kvQypQH1rN57OusxmHbnPZ2nk,774
|
2730
|
-
pulumi_oci/psql/_inputs.py,sha256=
|
2731
|
-
pulumi_oci/psql/backup.py,sha256=
|
2759
|
+
pulumi_oci/psql/_inputs.py,sha256=PBLNo2JL3lkUYWg5eH07in06rNMyEBjJ_YHG6ngR0Z0,71990
|
2760
|
+
pulumi_oci/psql/backup.py,sha256=Q6VywHT8XtA0m0SHpHtTRssqxa0KXF3UKcYQK6-PzeY,45131
|
2732
2761
|
pulumi_oci/psql/configuration.py,sha256=V7uoXpRd59RIgpXEy-K6Zpp6L1rjvGFs8GOrPDGpYuk,47119
|
2733
|
-
pulumi_oci/psql/db_system.py,sha256=
|
2734
|
-
pulumi_oci/psql/get_backup.py,sha256=
|
2735
|
-
pulumi_oci/psql/get_backups.py,sha256=
|
2762
|
+
pulumi_oci/psql/db_system.py,sha256=z4ZQ-hV6WHX3lGmm6uMqwg_iQdml1k2UO6NHCOrdi80,78933
|
2763
|
+
pulumi_oci/psql/get_backup.py,sha256=6LBsA2_BA674HkNfv7KcufhLG81ba8wOt5pqYhnE0_8,17834
|
2764
|
+
pulumi_oci/psql/get_backups.py,sha256=Mog8NZnN8-B-x6FptjRY69jRbEcxzDDfy5TpNFgXo4U,11242
|
2736
2765
|
pulumi_oci/psql/get_configuration.py,sha256=TBSfs__R5Sq0YJKHmKcEC9nwPu0JNmbH0gpRpc6X_1Y,15453
|
2737
|
-
pulumi_oci/psql/get_configurations.py,sha256=
|
2738
|
-
pulumi_oci/psql/get_db_system.py,sha256=
|
2766
|
+
pulumi_oci/psql/get_configurations.py,sha256=Vc6RmaSNN7DTTvyzaVFN8ETnVNKaT1Su1XnRs1wkRGE,12396
|
2767
|
+
pulumi_oci/psql/get_db_system.py,sha256=C3b2c2lOPS7iCMIbLddXFLMJy578_I6dliOF4HdBTI4,22453
|
2739
2768
|
pulumi_oci/psql/get_db_system_connection_detail.py,sha256=pxsjQleDKDTclQYBuNg2LOzh-A1fJSQdfqMloTJQ2Ew,7421
|
2740
2769
|
pulumi_oci/psql/get_db_system_primary_db_instance.py,sha256=-PVgBgRy3B-xZy9eFieZpLKDEL3zulB1Q-36R9DCVjE,5009
|
2741
|
-
pulumi_oci/psql/get_db_systems.py,sha256=
|
2770
|
+
pulumi_oci/psql/get_db_systems.py,sha256=oYijyscxAUn7hUlvYSk723VawqDM_van-_S_3-7WMZI,8120
|
2742
2771
|
pulumi_oci/psql/get_default_configuration.py,sha256=gQcjKrEvSs2hKRwxw8ovD8RWNGaq9sYefXKr8ovKRxw,11672
|
2743
2772
|
pulumi_oci/psql/get_default_configurations.py,sha256=na7EN0USkboIz2FJffQsmlTFcMhnVUnr8KoDVGDsEHc,10504
|
2744
2773
|
pulumi_oci/psql/get_shapes.py,sha256=0mYv3eWrDY6HxvKSfJrFHpOmY4D98YUTcFioIwT899A,5678
|
2745
|
-
pulumi_oci/psql/outputs.py,sha256=
|
2774
|
+
pulumi_oci/psql/outputs.py,sha256=yLinOvy6pjhhimSOf8p1D3DOF4A0c4WZrkehqZ1XHCs,177579
|
2746
2775
|
pulumi_oci/queue/__init__.py,sha256=jwKK25ETwcG0tqoblRZJX6MN7BKulcDaUyL3ql98tf4,386
|
2747
2776
|
pulumi_oci/queue/_inputs.py,sha256=Y309IljzLWnr4k7SVGurLHOsEOeQvVSI2B2gedww6P4,1811
|
2748
2777
|
pulumi_oci/queue/get_queue.py,sha256=i6bjmxEmDfDd4vBGdg2jmC_f-nPZznEpYpHycbVqn7E,16586
|
@@ -2768,7 +2797,7 @@ pulumi_oci/redis/get_redis_cluster.py,sha256=_uZjFKIIYQfXTJ4pR8LYtmfPUd3Yh-fSfSV
|
|
2768
2797
|
pulumi_oci/redis/get_redis_cluster_nodes.py,sha256=9GxcVV2IT8Bnr1sjqPd3sP_e0OYvmWaEoPm8kd6iVos,7238
|
2769
2798
|
pulumi_oci/redis/get_redis_clusters.py,sha256=pYcqFky26SzgFUbXARqL1nmCYIX7SZ7CfbFJ2ipFlmk,8962
|
2770
2799
|
pulumi_oci/redis/outputs.py,sha256=-43ujsYj_HbOP5Ipe7thjIvNzFbu6Ji0UPtBNaAliSI,26288
|
2771
|
-
pulumi_oci/redis/redis_cluster.py,sha256=
|
2800
|
+
pulumi_oci/redis/redis_cluster.py,sha256=xehz3iMRLEVeen8tU0b-UE3cihaICipV3dwdVOqbevY,52990
|
2772
2801
|
pulumi_oci/resourcemanager/__init__.py,sha256=2G2BH5kW2MtOJKFnTb6Oytp5JQCS7n_E3uSubLhEQqk,553
|
2773
2802
|
pulumi_oci/resourcemanager/_inputs.py,sha256=qAoUwX0F0Xr5tBRs14kDQNXrx8vedRobcbtZQ0ZIo1A,3124
|
2774
2803
|
pulumi_oci/resourcemanager/get_private_endpoint.py,sha256=EdiP_03y8xFfayGEkGmIoU_TCP5_Dj8K6foRp37KI6o,13729
|
@@ -3050,7 +3079,7 @@ pulumi_oci/zpr/get_zpr_policies.py,sha256=xRhJl8bBol1fMs5EXtqBuTMajSv3v0tm1A0a0B
|
|
3050
3079
|
pulumi_oci/zpr/get_zpr_policy.py,sha256=Zx42tYwAMM6gOiNIREiyxZyMA5Gy1aAMsFHAR-zf8bg,11465
|
3051
3080
|
pulumi_oci/zpr/outputs.py,sha256=bLQC7_On52bzTOlKVC9oF2CSxcSo7CiwTmOkBNy7MD4,8943
|
3052
3081
|
pulumi_oci/zpr/zpr_policy.py,sha256=kRQiN_Fg_m8N1oVD93ktqQhhXv8z8y08nBKuypB_t3k,32563
|
3053
|
-
pulumi_oci-2.26.
|
3054
|
-
pulumi_oci-2.26.
|
3055
|
-
pulumi_oci-2.26.
|
3056
|
-
pulumi_oci-2.26.
|
3082
|
+
pulumi_oci-2.26.0a1741943394.dist-info/METADATA,sha256=pj4ccEn9mb3mwvs25zUcFOcpQZcNBxmQoSXqHB78-PQ,4054
|
3083
|
+
pulumi_oci-2.26.0a1741943394.dist-info/WHEEL,sha256=52BFRY2Up02UkjOa29eZOS2VxUrpPORXg1pkohGGUS8,91
|
3084
|
+
pulumi_oci-2.26.0a1741943394.dist-info/top_level.txt,sha256=0k-nWr_IdDNVF3qcT4ALORmmu1SNCLxWZfHDMN7TWsg,11
|
3085
|
+
pulumi_oci-2.26.0a1741943394.dist-info/RECORD,,
|