pulumi-oci 2.26.0a1741847591__py3-none-any.whl → 2.27.0__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 +211 -0
- pulumi_oci/containerengine/_inputs.py +43 -44
- pulumi_oci/containerengine/cluster.py +2 -0
- pulumi_oci/containerengine/container_instance.py +2 -4
- pulumi_oci/containerengine/outputs.py +128 -43
- pulumi_oci/containerinstances/outputs.py +0 -14
- pulumi_oci/core/__init__.py +7 -0
- pulumi_oci/core/_inputs.py +168 -33
- pulumi_oci/core/compute_gpu_memory_cluster.py +706 -0
- pulumi_oci/core/compute_gpu_memory_fabric.py +667 -0
- pulumi_oci/core/get_compute_gpu_memory_cluster.py +281 -0
- pulumi_oci/core/get_compute_gpu_memory_cluster_instances.py +144 -0
- pulumi_oci/core/get_compute_gpu_memory_clusters.py +232 -0
- pulumi_oci/core/get_compute_gpu_memory_fabric.py +309 -0
- pulumi_oci/core/get_compute_gpu_memory_fabrics.py +289 -0
- pulumi_oci/core/outputs.py +595 -21
- pulumi_oci/database/__init__.py +3 -0
- pulumi_oci/database/_inputs.py +4116 -1225
- pulumi_oci/database/application_vip.py +59 -10
- pulumi_oci/database/autonomous_container_database.py +305 -52
- pulumi_oci/database/autonomous_container_database_add_standby.py +2183 -0
- pulumi_oci/database/autonomous_container_database_dataguard_association.py +80 -40
- pulumi_oci/database/autonomous_container_database_snapshot_standby.py +322 -0
- 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_container_database.py +103 -2
- pulumi_oci/database/get_autonomous_container_database_dataguard_association.py +12 -1
- pulumi_oci/database/get_autonomous_container_databases.py +1 -1
- 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_maintenance_run.py +15 -1
- pulumi_oci/database/get_vm_cluster.py +60 -4
- pulumi_oci/database/get_vm_clusters.py +25 -3
- pulumi_oci/database/maintenance_run.py +28 -0
- pulumi_oci/database/outputs.py +3831 -267
- 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/goldengate/_inputs.py +128 -0
- pulumi_oci/goldengate/deployment.py +103 -0
- pulumi_oci/goldengate/deployment_backup.py +28 -0
- pulumi_oci/goldengate/get_deployment.py +43 -1
- pulumi_oci/goldengate/get_deployment_backup.py +15 -1
- pulumi_oci/goldengate/outputs.py +289 -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/osmanagementhub/__init__.py +18 -0
- pulumi_oci/osmanagementhub/_inputs.py +677 -12
- pulumi_oci/osmanagementhub/event.py +8 -0
- pulumi_oci/osmanagementhub/get_entitlements.py +2 -2
- pulumi_oci/osmanagementhub/get_event.py +2 -0
- pulumi_oci/osmanagementhub/get_events.py +2 -0
- pulumi_oci/osmanagementhub/get_managed_instance.py +30 -2
- pulumi_oci/osmanagementhub/get_managed_instances.py +75 -63
- pulumi_oci/osmanagementhub/get_management_station.py +116 -4
- pulumi_oci/osmanagementhub/get_management_station_mirrors.py +1 -1
- pulumi_oci/osmanagementhub/get_management_stations.py +47 -4
- pulumi_oci/osmanagementhub/get_profile.py +32 -4
- pulumi_oci/osmanagementhub/get_profile_available_software_sources.py +207 -0
- pulumi_oci/osmanagementhub/get_profile_version.py +388 -0
- pulumi_oci/osmanagementhub/get_profiles.py +63 -3
- pulumi_oci/osmanagementhub/get_scheduled_job.py +15 -1
- pulumi_oci/osmanagementhub/get_software_package.py +2 -2
- pulumi_oci/osmanagementhub/get_software_package_software_source.py +7 -7
- pulumi_oci/osmanagementhub/get_software_source.py +89 -5
- pulumi_oci/osmanagementhub/get_software_source_available_software_packages.py +209 -0
- pulumi_oci/osmanagementhub/get_software_source_manifest.py +127 -0
- pulumi_oci/osmanagementhub/get_software_sources.py +30 -8
- pulumi_oci/osmanagementhub/lifecycle_stage_attach_managed_instances_management.py +6 -39
- pulumi_oci/osmanagementhub/lifecycle_stage_detach_managed_instances_management.py +6 -39
- pulumi_oci/osmanagementhub/lifecycle_stage_reboot_management.py +297 -0
- pulumi_oci/osmanagementhub/managed_instance.py +56 -0
- pulumi_oci/osmanagementhub/managed_instance_group_install_packages_management.py +49 -0
- pulumi_oci/osmanagementhub/managed_instance_group_reboot_management.py +297 -0
- pulumi_oci/osmanagementhub/managed_instance_reboot_management.py +299 -0
- pulumi_oci/osmanagementhub/management_station.py +251 -4
- pulumi_oci/osmanagementhub/management_station_associate_managed_instances_management.py +298 -0
- pulumi_oci/osmanagementhub/management_station_refresh_management.py +2 -2
- pulumi_oci/osmanagementhub/management_station_synchronize_mirrors_management.py +9 -9
- pulumi_oci/osmanagementhub/outputs.py +1349 -50
- pulumi_oci/osmanagementhub/profile.py +70 -14
- pulumi_oci/osmanagementhub/profile_attach_lifecycle_stage_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_attach_managed_instance_group_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_attach_management_station_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_attach_software_sources_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_detach_software_sources_management.py +269 -0
- pulumi_oci/osmanagementhub/scheduled_job.py +72 -21
- pulumi_oci/osmanagementhub/software_source.py +365 -26
- pulumi_oci/osmanagementhub/software_source_add_packages_management.py +67 -10
- pulumi_oci/osmanagementhub/software_source_generate_metadata_management.py +217 -0
- pulumi_oci/osmanagementhub/software_source_manifest.py +268 -0
- pulumi_oci/osmanagementhub/software_source_remove_packages_management.py +277 -0
- pulumi_oci/osmanagementhub/software_source_replace_packages_management.py +277 -0
- pulumi_oci/osmanagementhub/work_request_rerun_management.py +325 -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.0a1741847591.dist-info → pulumi_oci-2.27.0.dist-info}/METADATA +2 -2
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.27.0.dist-info}/RECORD +206 -150
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.27.0.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.27.0.dist-info}/top_level.txt +0 -0
@@ -1,7 +1,7 @@
|
|
1
|
-
pulumi_oci/__init__.py,sha256=
|
1
|
+
pulumi_oci/__init__.py,sha256=nJyAGuYw5WPyLD9KPMydOLiKvjIDaoWjGSqMrn6GxVM,184420
|
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=DHbb_juusKMpgf2Tcjfbi7Pt-3yVzxffGMopsOyHyHA,63
|
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=IHeH-Rb65kPwFv_D5kgjuby1kJdHYaC3b2dyZX_nDUI,243302
|
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=w8W_Au27gKyqiZu8P-5MYLNpLJETf55BSFIZxoWJB0g,392841
|
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=
|
452
|
-
pulumi_oci/core/__init__.py,sha256=
|
453
|
-
pulumi_oci/core/_inputs.py,sha256=
|
451
|
+
pulumi_oci/containerinstances/outputs.py,sha256=ggpNxDeupL0AotlCwSKnp75ozMxrnPEyxcxaM0cq9Yw,99192
|
452
|
+
pulumi_oci/core/__init__.py,sha256=7G2--jZneBbrrDo_gonfrK6SvF_ZVhpLiy9ySZxMnlg,9124
|
453
|
+
pulumi_oci/core/_inputs.py,sha256=SkzE-p-z70XSNPpsrcYwxzcnWB1xehzzf2erVx_W2oE,1232948
|
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
|
@@ -462,6 +462,8 @@ pulumi_oci/core/compute_capacity_report.py,sha256=W491LXEhLyJRDYVZnEazve7Z0DOHAJ
|
|
462
462
|
pulumi_oci/core/compute_capacity_reservation.py,sha256=9dkUYZld3UcLoisfpykqQ9ro-OanV3ooepnE0AhGw4Q,45848
|
463
463
|
pulumi_oci/core/compute_capacity_topology.py,sha256=BIA9893sTYtmIuIM7ZipZBdqFL4uD_cfMZ88l07REQw,31937
|
464
464
|
pulumi_oci/core/compute_cluster.py,sha256=WjatGY6yTbgcIAMKw2ywMh2GFddVBU03P_oPhwh9dyc,27194
|
465
|
+
pulumi_oci/core/compute_gpu_memory_cluster.py,sha256=xmjVBEpwV3_-GI7ETHohfb_r40lRRORw_QzckK9gZwA,37892
|
466
|
+
pulumi_oci/core/compute_gpu_memory_fabric.py,sha256=DQe7Mqhqf0-FhrrKBS67HnAKiFqBQa722lYR99jnbFg,36913
|
465
467
|
pulumi_oci/core/compute_image_capability_schema.py,sha256=gklrzmC543ttqjWl6eWYClOtsFZyeOXaI7gWxhQ3E-0,29080
|
466
468
|
pulumi_oci/core/console_history.py,sha256=9kJmAlDi1JmrA2HPZIFfXS4fF4mqV6t4oIMXCHe7axA,26339
|
467
469
|
pulumi_oci/core/cpe.py,sha256=CXfP_81ybyOEdoxI8imw1r5_fAbv1YQ-EkH44dmPxZs,38975
|
@@ -520,6 +522,11 @@ pulumi_oci/core/get_compute_global_image_capability_schema.py,sha256=zt373N8rM0D
|
|
520
522
|
pulumi_oci/core/get_compute_global_image_capability_schemas.py,sha256=nZhZZGz_xpOTD2_qIsFctiiEwuGRxoNKaQ5Xnk2W6zs,8385
|
521
523
|
pulumi_oci/core/get_compute_global_image_capability_schemas_version.py,sha256=3dLHmUGAg4BbYf4GvT5zSQM1rwT4MIxmGfjD0disc3U,10651
|
522
524
|
pulumi_oci/core/get_compute_global_image_capability_schemas_versions.py,sha256=p8nC78seihcqLFg3cu1oYpQezH2EqmQNLSRnCd8b5aA,9675
|
525
|
+
pulumi_oci/core/get_compute_gpu_memory_cluster.py,sha256=lnuir1ycne0vLkavJDeGOEKGelTClsce9Yolzyadzds,13351
|
526
|
+
pulumi_oci/core/get_compute_gpu_memory_cluster_instances.py,sha256=srUuVb9PIFev7dKl6gHucHysZq779rwPKeK_lt4GBFc,7235
|
527
|
+
pulumi_oci/core/get_compute_gpu_memory_clusters.py,sha256=VUPud5opkxUtjoi-RhoJPqzBebSLeX4iOsFchdIjMBk,12632
|
528
|
+
pulumi_oci/core/get_compute_gpu_memory_fabric.py,sha256=XruJoFyUDAD589i0GjkenX4l034e5hWBrtwCIPqcjI0,15031
|
529
|
+
pulumi_oci/core/get_compute_gpu_memory_fabrics.py,sha256=caJZvZysbfXhchjUrkFJx4MfqRNzsGdjWZsAuwFsasg,17589
|
523
530
|
pulumi_oci/core/get_compute_image_capability_schema.py,sha256=ZDTXXzMZyl-TF-TbqpFR9pfYHl0w7vl2NCaHE1OCrv8,13602
|
524
531
|
pulumi_oci/core/get_compute_image_capability_schemas.py,sha256=CzijWK5-S_MCpy0O2MQLzbBZx6lNU0dbg97P0x5Jrjo,9219
|
525
532
|
pulumi_oci/core/get_console_histories.py,sha256=GcDsk8iT7oz6bC7W-5HbFaHVZ7niMQRO6YKN7x03Xbw,9340
|
@@ -651,7 +658,7 @@ pulumi_oci/core/local_peering_gateway.py,sha256=p1V8uNamUxJa-UpKG4TzBGudP8NNB77l
|
|
651
658
|
pulumi_oci/core/nat_gateway.py,sha256=_I0Ls2WSv32m2-8_S9WYFjGvpt4biSLNvlY-fXMryDc,36333
|
652
659
|
pulumi_oci/core/network_security_group.py,sha256=GAbG1upv4B7ytveFpHLmy1w_N8dQFCaq_05OtFrxIyw,25742
|
653
660
|
pulumi_oci/core/network_security_group_security_rule.py,sha256=h8JYABPvXFPfgCMRghsV0Is2KAYOxJS6x6uDeMmb0_8,54348
|
654
|
-
pulumi_oci/core/outputs.py,sha256=
|
661
|
+
pulumi_oci/core/outputs.py,sha256=RaxUTaUZQx_UZa1YB1cB0b_O-ALGhoZHSTGQoYmndqM,2566258
|
655
662
|
pulumi_oci/core/private_ip.py,sha256=7U5JkefHxTkMsm3GkqfIvYASbw_Vj0E5AdgR8taQ8Vw,45659
|
656
663
|
pulumi_oci/core/public_ip.py,sha256=L-WZ8RuDFtPmkZTxJFUggYipXEZFl6mSb1z2GJwdqx0,49195
|
657
664
|
pulumi_oci/core/public_ip_pool.py,sha256=SxGPeRtTauVvrVomIfsQIwZvIuh8oOwgJmNDGlHzBGQ,24119
|
@@ -676,14 +683,16 @@ pulumi_oci/core/volume_backup_policy_assignment.py,sha256=ttay56UlpUXuMqWaYgPnqu
|
|
676
683
|
pulumi_oci/core/volume_group.py,sha256=aS0UKsHbRlBWPy_5USzXAjZMs1Ms3ewjXYbnKcag_Kw,55133
|
677
684
|
pulumi_oci/core/volume_group_backup.py,sha256=gzCYyFdf1ozd1k9SdScXQ7rYLqqMBG5Dv_S1m8ZS7qk,44707
|
678
685
|
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=
|
682
|
-
pulumi_oci/database/autonomous_container_database.py,sha256=
|
683
|
-
pulumi_oci/database/
|
686
|
+
pulumi_oci/database/__init__.py,sha256=PBXw2aJB-3Fi-2JwwDitWuQbB-j_rGga2kOSXXiDxBc,10226
|
687
|
+
pulumi_oci/database/_inputs.py,sha256=wD6up7sScYn7NclEfroowFffDpvKiD8yV5OvQd-KyBk,1260794
|
688
|
+
pulumi_oci/database/application_vip.py,sha256=oKsdf6T7qRe9GpUYlvQAbwgJqBbcaelmV41pb1ExVCg,31388
|
689
|
+
pulumi_oci/database/autonomous_container_database.py,sha256=hNmHBap6GP6PaqZcHZTPQf-IO2ThHV2MG7MMglDil9U,189346
|
690
|
+
pulumi_oci/database/autonomous_container_database_add_standby.py,sha256=x-kGhPlp2k6n6p4TA8H5MLmssrxXN6WhhHeWeRmd4oU,135255
|
691
|
+
pulumi_oci/database/autonomous_container_database_dataguard_association.py,sha256=hKZF0KBMMJl1J6FUdhX64JV1yufqyx0MZrG_qmzwvmo,77955
|
684
692
|
pulumi_oci/database/autonomous_container_database_dataguard_association_operation.py,sha256=KdrGLo1fGVgJL4tpeiYMtjyAyIaWZ7oNCD_vKMof7A8,17941
|
685
693
|
pulumi_oci/database/autonomous_container_database_dataguard_role_change.py,sha256=yML8BbuREYzHrq1dVIYwGlZ5bFpsBVGpT_Y9m-CI4V0,12423
|
686
|
-
pulumi_oci/database/
|
694
|
+
pulumi_oci/database/autonomous_container_database_snapshot_standby.py,sha256=3mse-B2ma16j5rI5Qu0x8f88b6nnSEzn9NOi5oong_A,16963
|
695
|
+
pulumi_oci/database/autonomous_database.py,sha256=Am_CGcODLpU0SZTxR8_s952-fDtJREMvksE2DsqbWnM,501796
|
687
696
|
pulumi_oci/database/autonomous_database_backup.py,sha256=TMDev4UedzHcRjt5ZfjnoeC3-3OTA7rM4AaAtn_bvhA,43614
|
688
697
|
pulumi_oci/database/autonomous_database_instance_wallet_management.py,sha256=shw6-GEc4MzawcuhYyZCXXOTszzM-P1Of1wCDnjc8hc,18745
|
689
698
|
pulumi_oci/database/autonomous_database_regional_wallet_management.py,sha256=hmbYSqFq3LOc5hXDXtp56_Z8zaCpP2O6celvTcyR8tQ,15757
|
@@ -694,55 +703,56 @@ pulumi_oci/database/autonomous_exadata_infrastructure.py,sha256=vkUN7H-JXCDymotr
|
|
694
703
|
pulumi_oci/database/autonomous_vm_cluster.py,sha256=UPwLicPnXat73GhugjEnuh3BD70gY4vnNMl5JA9Md14,112096
|
695
704
|
pulumi_oci/database/autonomous_vm_cluster_ords_certificate_management.py,sha256=3VC8R-7mlLeETw9AQUaJ_zBt1yzyiZE6Ty7qpp-Csds,21703
|
696
705
|
pulumi_oci/database/autonomous_vm_cluster_ssl_certificate_management.py,sha256=ZdG-Y6UsRnSVg3EwgA6P5MlWQU0NzAgjRHLGolFO-qo,21615
|
697
|
-
pulumi_oci/database/backup.py,sha256=
|
706
|
+
pulumi_oci/database/backup.py,sha256=0QFHAhpxrUagISx4mffdXE2r5TejsT-QkPUstAknyAg,43143
|
698
707
|
pulumi_oci/database/backup_cancel_management.py,sha256=5Z59w58DYCbKVI6YOeuEnO8Oxev0BS2JfZkDxEwyXJQ,11671
|
699
708
|
pulumi_oci/database/backup_destination.py,sha256=1wkliH8rWbX9WQ5dVD6Y_FyiBZtSh0X88dHJ2PLuPhs,50892
|
700
709
|
pulumi_oci/database/cloud_autonomous_vm_cluster.py,sha256=D2U0X-A39aZkcNt1XiPeCd5xwPxqu7jbTfuba1lLlGI,142002
|
701
710
|
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=
|
711
|
+
pulumi_oci/database/cloud_exadata_infrastructure.py,sha256=Q_LrGOvmUukt33pmFq-IOeXxeom0IpHAnBJULPZfIkw,88033
|
712
|
+
pulumi_oci/database/cloud_vm_cluster.py,sha256=7twsA4wInQH2YvbE3VNTnUgmhFmkBjrhGrHYE-frOoI,164677
|
704
713
|
pulumi_oci/database/cloud_vm_cluster_iorm_config.py,sha256=YK5oY2uPrGQRl_oOvTf7rPYFNxAAeTx4NqqAc7MxJdc,16572
|
705
714
|
pulumi_oci/database/data_guard_association.py,sha256=LtDAMoj_Eu3_PKYX1E5I6IJ3rUOvtx43whEbgEFKfhg,161827
|
706
715
|
pulumi_oci/database/database.py,sha256=_rJSamz5EaTP5Ck-u1NEaC4BzPvyXF471zHwJlahE0U,86781
|
707
716
|
pulumi_oci/database/database_software_image.py,sha256=rwlamTRDs0vzwRkFiVf2YTcKJWAhflPNsa-28aO55tU,46722
|
708
717
|
pulumi_oci/database/database_upgrade.py,sha256=h99FwIBDgNZhdikYJ1GUz3rYXB5aQxpvHx7Esuc2Ors,61451
|
709
718
|
pulumi_oci/database/db_home.py,sha256=TXATWoFKRZZrPE47a5DmSIBI1txGtgxrsj7MwVFSRlw,57012
|
710
|
-
pulumi_oci/database/db_node.py,sha256=
|
719
|
+
pulumi_oci/database/db_node.py,sha256=3zAbqFh0SFBssm1CiLy_N4zWYPG5mkUxEPFV_XBN-U0,51891
|
711
720
|
pulumi_oci/database/db_node_console_connection.py,sha256=mRmbEFYMH6Mt5sWzDTQ7yXvp7njbGNktRTTEupb1dhM,27134
|
712
721
|
pulumi_oci/database/db_node_console_history.py,sha256=HSyg6bSs6Eli-Ix1krplUS3aOhRzTcg2QwAUodRIgwY,24388
|
713
722
|
pulumi_oci/database/db_system.py,sha256=i4ZrTVXYMEx5txPjNT-z7SHEQnhLjeG0aTCxZOolToU,191532
|
714
723
|
pulumi_oci/database/db_systems_upgrade.py,sha256=jUD83jTCKMRxundnD4vvADAgj8kqUL6479Ibfr75E8A,93945
|
715
|
-
pulumi_oci/database/exadata_infrastructure.py,sha256=
|
724
|
+
pulumi_oci/database/exadata_infrastructure.py,sha256=DL79P6vp27XXtCsiVvzr7x9-wKzKW95TrjAFdoXJ4r0,130019
|
716
725
|
pulumi_oci/database/exadata_infrastructure_compute.py,sha256=rTIYhQ97v5NTKi1ZzFTm9wSA2gVEzYV4OhHt6nBdIuo,75268
|
726
|
+
pulumi_oci/database/exadata_infrastructure_configure_exascale_management.py,sha256=Mz0Tsd_OwkzwFINkSuaXMCpZH8dF0lQcqfEvd_3gfo0,87624
|
717
727
|
pulumi_oci/database/exadata_infrastructure_storage.py,sha256=EIP_JmPDmYXGjt_LcRevR2fDNec3nAjVWWMI0i4kcmo,51643
|
718
728
|
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
|
729
|
+
pulumi_oci/database/exadb_vm_cluster.py,sha256=Ah2NRdZ2oJ7goTv4_iK9Jyrg55PYW9nuk5derj-7irY,127201
|
730
|
+
pulumi_oci/database/exascale_db_storage_vault.py,sha256=-tyvccP33rLxHfRel-6HumPJPtdpuo3yLygcPrvXJLg,53801
|
721
731
|
pulumi_oci/database/execution_action.py,sha256=QKXPbbBUbtRTlFnAghQ6KzzZiShm5F0WnWdRmmhfG-U,42598
|
722
732
|
pulumi_oci/database/execution_window.py,sha256=hDYw-6UaaasR4H9bwZ8dlxntz317cLN2xAwTDweiWvE,44011
|
723
|
-
pulumi_oci/database/external_container_database.py,sha256=
|
733
|
+
pulumi_oci/database/external_container_database.py,sha256=VL7CHuSxWFLwGGBVLtQLu8sCVEAnOVJRQvr9T6l2uY8,39563
|
724
734
|
pulumi_oci/database/external_container_database_management.py,sha256=_wre8S7BPcZLq08n9PJfZh0pTGY93bOyggoec8kq-Kk,17730
|
725
735
|
pulumi_oci/database/external_container_databases_stack_monitoring.py,sha256=2ddGJZBO_bMrp9AGhs1Lgu0ukS1FS-BSqLruNPMqANQ,17408
|
726
736
|
pulumi_oci/database/external_database_connector.py,sha256=g-ltMAge8JQxC4him5kbml0DSNmnHT7-r9ULOyyikEc,43983
|
727
|
-
pulumi_oci/database/external_non_container_database.py,sha256=
|
737
|
+
pulumi_oci/database/external_non_container_database.py,sha256=39wMvUx0s_hvBBNEAI8FXKikiNErB2egmx9FtPVtByw,41935
|
728
738
|
pulumi_oci/database/external_non_container_database_management.py,sha256=FlVfJ8sDmKVimR3KQliCy3qBQYgze7OUbqCB69dxpN0,17983
|
729
739
|
pulumi_oci/database/external_non_container_database_operations_insights_management.py,sha256=SVrt1ROd2yxQzSxyj1RR1HYsd3dsP8EVSHB4AsIVPM4,18227
|
730
740
|
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=
|
741
|
+
pulumi_oci/database/external_pluggable_database.py,sha256=xBL51FSRMEZlOAeHaieZ5XD-reo63foWStyD5FcBLtc,50373
|
732
742
|
pulumi_oci/database/external_pluggable_database_management.py,sha256=EY091JHrtditg1dBoD3ZthD4Tbk1SNFIrPE1QBOCk3M,16240
|
733
743
|
pulumi_oci/database/external_pluggable_database_operations_insights_management.py,sha256=2L6LwRlrEQHeHSAIR9fkMXVeHyefDEGqTDpdh7xn9t0,17927
|
734
744
|
pulumi_oci/database/external_pluggable_databases_stack_monitoring.py,sha256=v6DZQaO3ZYNpjus_Jy_fcaQvpDrdKFFpfa51QFKOwxI,17422
|
735
|
-
pulumi_oci/database/get_application_vip.py,sha256=
|
745
|
+
pulumi_oci/database/get_application_vip.py,sha256=GU9qOTWmJdhG5wbZhwESkI-kdlsqZhHFRLYNQyscIBQ,12520
|
736
746
|
pulumi_oci/database/get_application_vips.py,sha256=IkELK4zMVS5J-R8LysmYNxCKK3crKeF3y_oTwo3MEOo,8584
|
737
747
|
pulumi_oci/database/get_autonomous_character_sets.py,sha256=PYoZrtSl03o16dxXgBlUKDmQ3h9-36GF5vLbO-lJskI,9184
|
738
|
-
pulumi_oci/database/get_autonomous_container_database.py,sha256=
|
739
|
-
pulumi_oci/database/get_autonomous_container_database_dataguard_association.py,sha256=
|
748
|
+
pulumi_oci/database/get_autonomous_container_database.py,sha256=qR-_TmXFlG6oMzYxqrl7ffT_rs3HdYFInvZVyKS8cAQ,63562
|
749
|
+
pulumi_oci/database/get_autonomous_container_database_dataguard_association.py,sha256=QrT_NDCHdeT6e6SAopo1F06amsfXtBprsWjRyVAj5-k,28251
|
740
750
|
pulumi_oci/database/get_autonomous_container_database_dataguard_associations.py,sha256=t572N5q2X7gZMOJBYPREHDekZQrUrhrkzRZXPnQ_yK4,8669
|
741
751
|
pulumi_oci/database/get_autonomous_container_database_resource_usage.py,sha256=LOC6gXXjAWVFiyPj2az7aTMm-kF-Fh5iGe-0bNBigkQ,14353
|
742
752
|
pulumi_oci/database/get_autonomous_container_database_versions.py,sha256=9HE-ThIghRLY3gPOA5YQXqc3zy1ffrRqWwC1ZsGqOeg,8183
|
743
|
-
pulumi_oci/database/get_autonomous_container_databases.py,sha256=
|
753
|
+
pulumi_oci/database/get_autonomous_container_databases.py,sha256=hJ-b0JQU5KgulEgXK9Si27nGQOMAgWerpBKtoRMWTSU,18889
|
744
754
|
pulumi_oci/database/get_autonomous_container_patches.py,sha256=FarcOzwvRktqTL-klNGowQmteusBjhsiFR1Ik8aApmc,9370
|
745
|
-
pulumi_oci/database/get_autonomous_database.py,sha256=
|
755
|
+
pulumi_oci/database/get_autonomous_database.py,sha256=_Pnxm5R7YDGA26fGShDaIKfV_2phjk8BeCoYislqZEI,126992
|
746
756
|
pulumi_oci/database/get_autonomous_database_backup.py,sha256=AFOGaqlIepz4vIH1-pFtqNRTS86pnt1XmItkBX49Qk4,20005
|
747
757
|
pulumi_oci/database/get_autonomous_database_backups.py,sha256=QNgjBjIo_KGANlXNB1FiMPqHchjgD1OFoO-2OBMIq5Y,11473
|
748
758
|
pulumi_oci/database/get_autonomous_database_dataguard_association.py,sha256=xPzVDdbxvW6wdCfcgeNvG4Drba-QLkahHDzfCtrFxCw,15280
|
@@ -771,17 +781,17 @@ pulumi_oci/database/get_autonomous_vm_cluster_resource_usage.py,sha256=SIme2tdCK
|
|
771
781
|
pulumi_oci/database/get_autonomous_vm_clusters.py,sha256=A-GuQW9KzlMRGRf7Ppxz-4igT67NPNzZk5lJI0Oa8DE,10561
|
772
782
|
pulumi_oci/database/get_backup_destination.py,sha256=Jf6uhJx0Ak7Zhr3W7ZTOIhv9w6Ozu2z9lKIE21ChWR0,18625
|
773
783
|
pulumi_oci/database/get_backup_destinations.py,sha256=bKwkWnj04YYZ3PQ92po_Ixt4iohIIH9aniv54r5D10A,7064
|
774
|
-
pulumi_oci/database/get_backups.py,sha256=
|
784
|
+
pulumi_oci/database/get_backups.py,sha256=Y__9HXAhehG-DXLrKPBjIB_dA4PCCUIWlR2Xgjoe_T0,15642
|
775
785
|
pulumi_oci/database/get_cloud_autonomous_vm_cluster.py,sha256=6FJKeD6NEDk2QFCvh7yusjXBziAAhvCA8AVfV52YAOo,52547
|
776
786
|
pulumi_oci/database/get_cloud_autonomous_vm_cluster_acd_resource_usages.py,sha256=QwTscDgWTe9DNUdBtrd8iy5MhDfmT0Cs4ze4iz7F8Ls,9154
|
777
787
|
pulumi_oci/database/get_cloud_autonomous_vm_cluster_resource_usage.py,sha256=5nutHawkPVBqXkqWYhU1Rjebanv3Z7Se5XFEJTzFnhg,21680
|
778
788
|
pulumi_oci/database/get_cloud_autonomous_vm_clusters.py,sha256=ZPSXfUp9GyZ-KYCmE1PNAz49kM19GpwzAw9cKwJVAlI,12442
|
779
|
-
pulumi_oci/database/get_cloud_exadata_infrastructure.py,sha256=
|
789
|
+
pulumi_oci/database/get_cloud_exadata_infrastructure.py,sha256=hxAzLNIn9x3xKDaQR4uYy0CuMGnSv1HjcXw_JaeMEBc,35228
|
780
790
|
pulumi_oci/database/get_cloud_exadata_infrastructure_un_allocated_resource.py,sha256=bZ99dJ9OnB4ZwokijoCnp8Zqz9F0--op8J6e8w7koRA,11983
|
781
791
|
pulumi_oci/database/get_cloud_exadata_infrastructures.py,sha256=0OT18fmDnx876L1wtDgRDXZ1QSRuHhp1m9zn8qTcA_c,10990
|
782
|
-
pulumi_oci/database/get_cloud_vm_cluster.py,sha256=
|
792
|
+
pulumi_oci/database/get_cloud_vm_cluster.py,sha256=Iuh1CsXFOsracN_TVBmdkKyT00jd3lH25DXJ_SbAcfU,46782
|
783
793
|
pulumi_oci/database/get_cloud_vm_cluster_iorm_config.py,sha256=xyTN0UFZhMK_w4W4UgDvxRnzTPq0rGyDz2kjq4LcNMU,7512
|
784
|
-
pulumi_oci/database/get_cloud_vm_clusters.py,sha256=
|
794
|
+
pulumi_oci/database/get_cloud_vm_clusters.py,sha256=eotKiVe55B6LwlhXjY8AybnLmHautyeZzMEWCk4OLOk,11474
|
785
795
|
pulumi_oci/database/get_data_guard_association.py,sha256=tOnRlS7gXNtm1uok03dx_WOwf522yDVZF7tJu0VZwMo,34314
|
786
796
|
pulumi_oci/database/get_data_guard_associations.py,sha256=GeOSjdSa9glTPoCxhfMoFYwCmfREhU1tXKyLjl85L64,6233
|
787
797
|
pulumi_oci/database/get_database.py,sha256=ze6h8l9RoPOoRsvohEe2G8DRMQBemK9677fQsw-CNWI,31117
|
@@ -790,7 +800,7 @@ pulumi_oci/database/get_database_maintenance_run_history.py,sha256=7eU01SoXZIl_R
|
|
790
800
|
pulumi_oci/database/get_database_pdb_conversion_history_entries.py,sha256=DdOjTt1WrMng4WztddsuHbDl5ZZmfVP5jNAv5Bc6XdA,9906
|
791
801
|
pulumi_oci/database/get_database_pdb_conversion_history_entry.py,sha256=QXcPqf00yqdoa1Z3wSr-B2S8-WRZ-vDwCcYdwqH1GDs,14018
|
792
802
|
pulumi_oci/database/get_database_software_image.py,sha256=AnB1sawtxSCT610j5Kjy3J_Zs69PBcdC4AvBJkto3SA,17045
|
793
|
-
pulumi_oci/database/get_database_software_images.py,sha256=
|
803
|
+
pulumi_oci/database/get_database_software_images.py,sha256=OVAPHZfYX0JZJnZoBWcZi45lq7g0H-B-uziwx3_ad74,13978
|
794
804
|
pulumi_oci/database/get_database_upgrade_history_entries.py,sha256=ycOe6Csv40ucSgukq7wOKQEdmMCMzF7IG73SQoI-p1c,8903
|
795
805
|
pulumi_oci/database/get_database_upgrade_history_entry.py,sha256=EaMV7SjHQ1MUNWZRXcAcy6gn8RBLbdTdBKXpEPkLXJc,13362
|
796
806
|
pulumi_oci/database/get_databases.py,sha256=F5-ZBOt5IqqrzOarNt7wyvA3e0XWgJApkStqkKe5_qM,10094
|
@@ -798,14 +808,14 @@ pulumi_oci/database/get_db_home.py,sha256=K8H5c7Y17E3-eAXioJ-bQg66L-JYnBTIFBA6E-
|
|
798
808
|
pulumi_oci/database/get_db_home_patch_history_entries.py,sha256=diiwUfoe5T1W80t0jMjDhA8XZRG_0exCoCYJ4-PCBAs,6223
|
799
809
|
pulumi_oci/database/get_db_home_patches.py,sha256=jvz-6E4-9gY4qvOwqUOuKtUVJuJwW4jCujNQOZqCgBU,5475
|
800
810
|
pulumi_oci/database/get_db_homes.py,sha256=K32hCqXZvwbC7Qybuusb15GCIXU8Ywvg8mQH3hvEno4,12057
|
801
|
-
pulumi_oci/database/get_db_node.py,sha256=
|
811
|
+
pulumi_oci/database/get_db_node.py,sha256=vI7aCxk8SgzVNnGlHzkv6Qge5g-_Vwppy-52Tew6uiA,22818
|
802
812
|
pulumi_oci/database/get_db_node_console_connection.py,sha256=FeLBDH98XA9aW-gSJu_dD9Wwyf4vBeS7xjRUOLPk4YM,10875
|
803
813
|
pulumi_oci/database/get_db_node_console_connections.py,sha256=R-VP5wJAhAJMFYmsjTfPf9zMzjd9inMSFrAZ6j_HBMw,6190
|
804
814
|
pulumi_oci/database/get_db_node_console_histories.py,sha256=cyAwItZ9KJtCAJIROscG9cRvBq778_PiOPETjf-_Ms0,8538
|
805
815
|
pulumi_oci/database/get_db_node_console_history.py,sha256=k8gd7S8hTxtPUKE1N2gMUdEpBFBI8sgD3k8zFUpg5sg,10168
|
806
816
|
pulumi_oci/database/get_db_node_console_history_content.py,sha256=i05YXy-HIJXeH-bEWtc1qsUyCN5fRIDi6ij0p1VEEto,5722
|
807
817
|
pulumi_oci/database/get_db_nodes.py,sha256=1hEr2jlLWHEXaILdkS9DJRcWyRhuUTy0o1jnONVDQ3g,10572
|
808
|
-
pulumi_oci/database/get_db_server.py,sha256=
|
818
|
+
pulumi_oci/database/get_db_server.py,sha256=oB3tsxaRv6niXiRauX-LCscdctLpFHevSVR0LOOZ24w,20207
|
809
819
|
pulumi_oci/database/get_db_servers.py,sha256=1bo-OLWpKfu9pn0-TFuJta_P14QT7fiDEQ6giupK2BA,9450
|
810
820
|
pulumi_oci/database/get_db_system_compute_performances.py,sha256=laWjxg-rYgo1VYiCyoMYIh1ekgY-7-NMrD_cgBvtdpo,6736
|
811
821
|
pulumi_oci/database/get_db_system_history_entries.py,sha256=UgACfKX8Ql7t6s00PioTpU1fC7Vs2jPwBfttLBnLj_k,6180
|
@@ -816,38 +826,38 @@ pulumi_oci/database/get_db_systems.py,sha256=cVTh4VUmJ0U6wtiGEHlmyOzfPHyULnhbFCC
|
|
816
826
|
pulumi_oci/database/get_db_systems_upgrade_history_entries.py,sha256=lLmzAY_xn0RMOQThkOr2sSMv7DjkNVuWRGd1IuDRXls,8947
|
817
827
|
pulumi_oci/database/get_db_systems_upgrade_history_entry.py,sha256=eVS13iwo1SbJ3XrndwnnjJOWgkFhBXr_VQWgU1KyZes,12651
|
818
828
|
pulumi_oci/database/get_db_versions.py,sha256=q0al6lR6oY3_9DbU715u9-f3N_xDbJbL4CiDnDjEIRw,12954
|
819
|
-
pulumi_oci/database/get_exadata_infrastructure.py,sha256=
|
829
|
+
pulumi_oci/database/get_exadata_infrastructure.py,sha256=PWIMGL0_j1ZSwx8u8tn9vXHVgJvv5GVbwuf0DpVJKAk,44254
|
820
830
|
pulumi_oci/database/get_exadata_infrastructure_download_config_file.py,sha256=H940VotqjxPULX2ef1w5dEMT5gxRZKyiiwJZv0yLG0w,7067
|
821
831
|
pulumi_oci/database/get_exadata_infrastructure_un_allocated_resource.py,sha256=iVQbtVZVN-JIr6pyX3qd2ncP2kDbhQqgfvDcNPcgp2U,11053
|
822
832
|
pulumi_oci/database/get_exadata_infrastructures.py,sha256=fMcwLNpgSWPjCDT6HOkgRHHwkV2uMt98rhscGVn4eys,8670
|
823
833
|
pulumi_oci/database/get_exadata_iorm_config.py,sha256=JQusC4s5LWz3rq5qxPEBannqjT0PDHiyLWgivYHN5Iw,8326
|
824
|
-
pulumi_oci/database/get_exadb_vm_cluster.py,sha256=
|
834
|
+
pulumi_oci/database/get_exadb_vm_cluster.py,sha256=eeTayDb4M1PMrwqO3ex4UDuTsMVFWGUpVS3AgjF5c_o,36641
|
825
835
|
pulumi_oci/database/get_exadb_vm_cluster_update.py,sha256=oawbWSCYSyHgS4I3sEwfMq2w_cLcjxRdmkeV_gnSmgk,10577
|
826
836
|
pulumi_oci/database/get_exadb_vm_cluster_update_history_entries.py,sha256=PimKr9hShyiVM_X04lu2Dv-GWOklFKaswE2WwUaMX7w,8508
|
827
837
|
pulumi_oci/database/get_exadb_vm_cluster_update_history_entry.py,sha256=QVsAhWfH4zuBTUAUoEUiOM3TSmckY292nIHv7G8mqc0,11281
|
828
838
|
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=
|
839
|
+
pulumi_oci/database/get_exadb_vm_clusters.py,sha256=8qy5c0uL7UAHnicXjjh1GYf0I8QYYIpjzUI8su6SrRM,11948
|
840
|
+
pulumi_oci/database/get_exascale_db_storage_vault.py,sha256=StLEH-23yf4y5nVd8oyPxtdGpVQZxOOBrec2zmnrh1Y,18621
|
841
|
+
pulumi_oci/database/get_exascale_db_storage_vaults.py,sha256=xFlSOSn2UZEdhQQgZLJ8j0AAZTVYezoJ4cWarmOBlAI,12128
|
832
842
|
pulumi_oci/database/get_execution_action.py,sha256=HSUFl_rW1ecDYHjeqmcdoHeqnh_8J5I-EIOTmvoI6ac,16357
|
833
843
|
pulumi_oci/database/get_execution_actions.py,sha256=x5Vrh0elfTZ7p0eHLfiWXq--zP26yiDOB-mNpoQc1pg,9790
|
834
844
|
pulumi_oci/database/get_execution_window.py,sha256=74MZwYA22dqcWOUdZ9-CDj08J_gmHH1yEXtHTDqsBGY,17685
|
835
845
|
pulumi_oci/database/get_execution_windows.py,sha256=BpomWXjojJ9uhSijXHiBkPgPhbfXaMex2OEzfj_5-v4,9825
|
836
|
-
pulumi_oci/database/get_external_container_database.py,sha256=
|
846
|
+
pulumi_oci/database/get_external_container_database.py,sha256=9ybBjyUn_GqcJodMFVXewkq12Ob_0kM00BjK5wGrb7A,17605
|
837
847
|
pulumi_oci/database/get_external_container_databases.py,sha256=P8hJS76VEgr7rccRUBHCGDedEIErRPBanKvNIcRoaRE,8953
|
838
848
|
pulumi_oci/database/get_external_database_connector.py,sha256=LcEw7ffd-26qTPwNCkAIZlRyIPKzX8IaEpHi_6HC7h4,15842
|
839
849
|
pulumi_oci/database/get_external_database_connectors.py,sha256=Kuli0Z4SkPQApL-gE-RG41MndbIxNgLXBVKjlldKCCk,10625
|
840
|
-
pulumi_oci/database/get_external_non_container_database.py,sha256=
|
850
|
+
pulumi_oci/database/get_external_non_container_database.py,sha256=rkbhABHsrblS_ougGZjHeWqGMTcmLGnoBrP1rbEdpHA,18759
|
841
851
|
pulumi_oci/database/get_external_non_container_databases.py,sha256=_qpuML_rn62bmbTLtwLU1qVtHoO1WuaMXtU64VKt5n0,9178
|
842
|
-
pulumi_oci/database/get_external_pluggable_database.py,sha256=
|
852
|
+
pulumi_oci/database/get_external_pluggable_database.py,sha256=0uSzjjSG_G8w4xr1HqQlL9e_WLn6eqtrwm0OEDhC6SY,20700
|
843
853
|
pulumi_oci/database/get_external_pluggable_databases.py,sha256=8pj9wCQlnnp6sMQY3J1HzMCN8pL7QrcE5bAwxFtLYP0,11290
|
844
|
-
pulumi_oci/database/get_flex_components.py,sha256=
|
854
|
+
pulumi_oci/database/get_flex_components.py,sha256=Q8LtQwCK9R81lnnB1_aYWTrBbr12e6_2iiqgOc3F7QM,8208
|
845
855
|
pulumi_oci/database/get_gi_version_minor_versions.py,sha256=btU98Jgl7VbttN9RzSN5VImtePD358ly93OIEZaC5q8,12203
|
846
856
|
pulumi_oci/database/get_gi_versions.py,sha256=SRclra2qCXjNCzkNIHYoa_5TxX4xd1m0r56YOoefCzU,7545
|
847
857
|
pulumi_oci/database/get_infrastructure_target_version.py,sha256=VmCbGaW0eVtWouGM0u2HTmdvz0Utt-pT0FdTRtHTkHA,9660
|
848
858
|
pulumi_oci/database/get_key_store.py,sha256=5bicoM6vgvW5m0x4A1K0AqMvbPhwxTtUFKZrpzS3_CU,10876
|
849
859
|
pulumi_oci/database/get_key_stores.py,sha256=sOkis-QLRR62JRMwWoDHOQy7sbHinIT_IGbEp02evx0,5608
|
850
|
-
pulumi_oci/database/get_maintenance_run.py,sha256=
|
860
|
+
pulumi_oci/database/get_maintenance_run.py,sha256=MPc0scJHEEqt-vfzG5KyTShKvbTBVoySoWbz6rO5GEY,29128
|
851
861
|
pulumi_oci/database/get_maintenance_runs.py,sha256=8lmh3yR4hxRrFE1zMXz72SigaoG9RyxYrMRgAIeAgq4,14482
|
852
862
|
pulumi_oci/database/get_managed_preferred_credential.py,sha256=ofIF_DRwmln8awZE4WgwuDVF5bKzRJUBSzSaC0JyibQ,10982
|
853
863
|
pulumi_oci/database/get_managed_preferred_credentials.py,sha256=1R-3FFz282n3jXll1lIvSUZ8ffnK2BAY1zNORWHlB2U,6775
|
@@ -866,7 +876,7 @@ pulumi_oci/database/get_scheduling_policy_recommended_scheduled_actions.py,sha25
|
|
866
876
|
pulumi_oci/database/get_scheduling_policy_scheduling_window.py,sha256=vUHk0RtxzfE-UypBCTmD2H1MMlh7wT9V3uc03c6xgQU,13664
|
867
877
|
pulumi_oci/database/get_scheduling_policy_scheduling_windows.py,sha256=gQRmz1RpMueA9nui8HfJnkS7A-qVTYAI0EFs_1-xEwo,10673
|
868
878
|
pulumi_oci/database/get_system_versions.py,sha256=aabPJhS46KFCCq80JfaTm_2rTAX5jN87arzfWR5VTyQ,7780
|
869
|
-
pulumi_oci/database/get_vm_cluster.py,sha256=
|
879
|
+
pulumi_oci/database/get_vm_cluster.py,sha256=q4WIeRT8Dc76ogpNQOJeSdUsTbQjcv4VNP2ePezAPqg,29821
|
870
880
|
pulumi_oci/database/get_vm_cluster_network.py,sha256=3EEblAc777nHyrW835Vzck8YEn3AS1Q0P7SP5wsthPc,16759
|
871
881
|
pulumi_oci/database/get_vm_cluster_network_download_config_file.py,sha256=jRaL3ZGii9T69tHiSruevNG5vIG6nmx9zab4s4RHQv4,8379
|
872
882
|
pulumi_oci/database/get_vm_cluster_networks.py,sha256=RXW-_h-Tk540CfXAGJ3QBhmVyYo0AvhIzVpA_B9fNfw,10800
|
@@ -879,12 +889,12 @@ pulumi_oci/database/get_vm_cluster_update.py,sha256=0qTCcHDipfYpo4jRYeH7J_1d4YvR
|
|
879
889
|
pulumi_oci/database/get_vm_cluster_update_history_entries.py,sha256=HDEon6BY8wYaTnTXKrfwn761HauoCVqVRl7yQnWeNU0,9031
|
880
890
|
pulumi_oci/database/get_vm_cluster_update_history_entry.py,sha256=bcz2RhhXQaXYmXZnYJrEUJlVZbFZtGsIxSOnrKj6Et8,10509
|
881
891
|
pulumi_oci/database/get_vm_cluster_updates.py,sha256=Sa2UlmkCw9As2HtPLRLj5t5OFKTJDTe6qoRphkWh2fo,8150
|
882
|
-
pulumi_oci/database/get_vm_clusters.py,sha256=
|
892
|
+
pulumi_oci/database/get_vm_clusters.py,sha256=YK_x85dBzzEZGUV47p0EgQHtbYVRL88Ura1VZcU6_fo,11149
|
883
893
|
pulumi_oci/database/key_store.py,sha256=utkO4jzVMM59m0NEZdhHdqnIdGpJiNjrW8mQjF9dT4o,27789
|
884
|
-
pulumi_oci/database/maintenance_run.py,sha256=
|
894
|
+
pulumi_oci/database/maintenance_run.py,sha256=8qmpVGiPxRE1AdnIh4gyZReYDWn7a871oe-z7KXUuGA,66885
|
885
895
|
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=
|
896
|
+
pulumi_oci/database/outputs.py,sha256=gZgBLzR2dypRD_ojIUQusDV_xH768dNRM-uPnf_uhhA,2868705
|
897
|
+
pulumi_oci/database/pluggable_database.py,sha256=k38To3UOhD9D5tC1jQMvAfT_xdSs2hBdL61W4rA3DPQ,79387
|
888
898
|
pulumi_oci/database/pluggable_database_managements_management.py,sha256=cmW6n0jUdviIoYQ5sHe_AwQWIEXpy8DS1W7fFnMJK2w,52897
|
889
899
|
pulumi_oci/database/pluggable_databases_local_clone.py,sha256=S0EmRLhANos9tiM_yFrDENRZWjiROIr6MorLJlC0qFw,51106
|
890
900
|
pulumi_oci/database/pluggable_databases_remote_clone.py,sha256=lx88HVEoi5p9xGn7Zc0sOiEr4GDtY2xZnQZmCPUPgbg,57777
|
@@ -892,10 +902,10 @@ pulumi_oci/database/scheduled_action.py,sha256=w0RwBr8zZam2VyLKDQk9PoJnXR9S4Qv0Y
|
|
892
902
|
pulumi_oci/database/scheduling_plan.py,sha256=yrMt06_ngqh4pwWRYbd-_U4DPWyLzLmTywG-IcnmcSk,38475
|
893
903
|
pulumi_oci/database/scheduling_policy.py,sha256=vslni9QWOfIun_LOygZ1TMiV1sL578Ie4okBxQ8i7ow,31506
|
894
904
|
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=
|
905
|
+
pulumi_oci/database/vm_cluster.py,sha256=ikJnxoCQ6pMPBpAe1n75_JJigAvMc6EmbOWpy9uqMCw,95033
|
906
|
+
pulumi_oci/database/vm_cluster_add_virtual_network.py,sha256=_9jrg-eSCAwhTFzRAsb-FoHrUOwMATrG5tz2YiRalLY,62898
|
897
907
|
pulumi_oci/database/vm_cluster_network.py,sha256=7SeFwVO28VOU3Tg0feDKwIrAwzAj-Jy9JwPZp8fHgTI,48913
|
898
|
-
pulumi_oci/database/vm_cluster_remove_virtual_machine.py,sha256=
|
908
|
+
pulumi_oci/database/vm_cluster_remove_virtual_machine.py,sha256=FP07RBOr071lcDDKqC87cWQ8hutflKohCpgpzsQy9Po,60668
|
899
909
|
pulumi_oci/databasemanagement/__init__.py,sha256=chKHfsA7AyfErUYxjnsydg-k2URfu6O78Ft_OCGlGb4,7495
|
900
910
|
pulumi_oci/databasemanagement/_inputs.py,sha256=U0vvB2DbVgchMHBnkUZ0Y6E_Op0dXzvzrz7kV1Okexw,580833
|
901
911
|
pulumi_oci/databasemanagement/autonomous_database_autonomous_database_dbm_features_management.py,sha256=00ol-U5qXoA6Os8EGlSJfatL0oUBZMdwaq_aExYZ2d8,16991
|
@@ -1143,8 +1153,8 @@ pulumi_oci/datalabellingservice/get_annotation_formats.py,sha256=Fpg6kdL21olhimO
|
|
1143
1153
|
pulumi_oci/datalabellingservice/get_dataset.py,sha256=H5qQ58Hw66emgbU9hoKqLWbwmUtQOMGDPdJKuHHfJyE,17704
|
1144
1154
|
pulumi_oci/datalabellingservice/get_datasets.py,sha256=Ilp3Fsq64qoMjGV-aHNo_uHGWcUN_Nax8TFAK5VINug,9761
|
1145
1155
|
pulumi_oci/datalabellingservice/outputs.py,sha256=r7HiUItducEEuol2RlCy_jnp2xOPDxY0VJ959qNHNyM,52916
|
1146
|
-
pulumi_oci/datasafe/__init__.py,sha256=
|
1147
|
-
pulumi_oci/datasafe/_inputs.py,sha256=
|
1156
|
+
pulumi_oci/datasafe/__init__.py,sha256=rYGV12zBSpP2d8OynJisJhg4beEHbY_7Mb7ddrpwHOQ,9152
|
1157
|
+
pulumi_oci/datasafe/_inputs.py,sha256=zj32uUyF_81mXDDwYhcsKpAaXs7KM3lE2hKa2bwmtjI,446233
|
1148
1158
|
pulumi_oci/datasafe/add_sdm_columns.py,sha256=I0ZEIc33HdUAuVwulwtAKIv9jy5_boMj2bS6HfNkSmY,5588
|
1149
1159
|
pulumi_oci/datasafe/alert.py,sha256=yCxOOJXHrjd4XewKcNKjjHLgsazGf1mP3eQeh3BtkBc,44046
|
1150
1160
|
pulumi_oci/datasafe/alert_policy.py,sha256=M2DzRroRsvfCHuv2ZbGr0us0lLrldEzcc6liSX7rxwA,38400
|
@@ -1165,7 +1175,7 @@ pulumi_oci/datasafe/data_safe_private_endpoint.py,sha256=ECh08fCHb6XEjuCvPSoxGsC
|
|
1165
1175
|
pulumi_oci/datasafe/database_security_config.py,sha256=xemaeRlPPEULTcpV7ff3T3rFwB--1--hXm_OzdtEkhE,38852
|
1166
1176
|
pulumi_oci/datasafe/database_security_config_management.py,sha256=0F3_cU8ETefzg-XiTK5vRHiDEn_i0gn-GVC9zQ7tY-8,39005
|
1167
1177
|
pulumi_oci/datasafe/discovery_jobs_result.py,sha256=vOICfpRc79y6cjmdQFiKeFCAZadTrEX54ppVA-HYLSs,43687
|
1168
|
-
pulumi_oci/datasafe/discovery_mod.py,sha256=
|
1178
|
+
pulumi_oci/datasafe/discovery_mod.py,sha256=Gm6JtkdKDmELJmj5QDkKjQ2MXnE3A9S5ZmeQPEU5Vy0,82155
|
1169
1179
|
pulumi_oci/datasafe/generate_on_prem_connector_configuration.py,sha256=q9e8TFpVdIoiMnzh7BtaV0DzVsnuoefYg98XObPvAp0,13164
|
1170
1180
|
pulumi_oci/datasafe/get_alert.py,sha256=6ogXFLYMvKizha13-iIYWUF50wtI7-JZHhZ94G53skI,18121
|
1171
1181
|
pulumi_oci/datasafe/get_alert_analytic.py,sha256=Lt0fYP-rl6zkLSQQbU27vVM8liSb5jFvoJz5q9IYQaE,16656
|
@@ -1200,7 +1210,7 @@ pulumi_oci/datasafe/get_database_security_config.py,sha256=18SoDzDWLr-xNEzyjiPJb
|
|
1200
1210
|
pulumi_oci/datasafe/get_database_security_configs.py,sha256=0kwqI1atKqMwQWVU8Cye_Jm-lk6SGXboBqN4ZhdCHrA,20714
|
1201
1211
|
pulumi_oci/datasafe/get_discovery_analytic.py,sha256=hggfWMM0Dw-6YeaQVPk_W1WMD5tdjcVYBX71pm5CW0w,10238
|
1202
1212
|
pulumi_oci/datasafe/get_discovery_analytics.py,sha256=UBernV3meJY7SdNEHQxmrXjXf9OiV6oH04pvvmKsSZE,14046
|
1203
|
-
pulumi_oci/datasafe/get_discovery_job.py,sha256=
|
1213
|
+
pulumi_oci/datasafe/get_discovery_job.py,sha256=MdWf912usSZu_eXp4VmVobj_yujQgAqkTOULMYQLsVA,25454
|
1204
1214
|
pulumi_oci/datasafe/get_discovery_jobs_result.py,sha256=QfwqFqUontaHdJES-L7f0jtiQnBsIVc6VIbQyNaN5Ac,20416
|
1205
1215
|
pulumi_oci/datasafe/get_discovery_jobs_results.py,sha256=ASfJ9XeMfyTT7a1LHlV5BQ41TJGkiYZRXuIuutexcWI,14890
|
1206
1216
|
pulumi_oci/datasafe/get_library_masking_format.py,sha256=-YOGqjxQtsR48AsJJm23mIqOpqTUiHI7tod13RrYawM,12041
|
@@ -1218,8 +1228,9 @@ pulumi_oci/datasafe/get_masking_policy_health_reports.py,sha256=rFA_lWSkqQ_4-VvT
|
|
1218
1228
|
pulumi_oci/datasafe/get_masking_policy_masking_objects.py,sha256=gnwnm0YFYjzW4nPem3NBVnu37sMV9uZfFg_5DtUpfCo,10119
|
1219
1229
|
pulumi_oci/datasafe/get_masking_policy_masking_schemas.py,sha256=fHKNn3SvRRfhX03RplHeFJAXaMDHl2jLCpPHPPzknuY,7755
|
1220
1230
|
pulumi_oci/datasafe/get_masking_policy_referential_relations.py,sha256=g6yi4jp3Ba25kev3oRgKcMTKKXxEUEukGsuZ3wiaTbg,13267
|
1221
|
-
pulumi_oci/datasafe/get_masking_report.py,sha256=
|
1231
|
+
pulumi_oci/datasafe/get_masking_report.py,sha256=kEuCtPnoVRA0GXkm1CX1-Zgttd0egVXd2XUPsw9SP8U,19413
|
1222
1232
|
pulumi_oci/datasafe/get_masking_report_masked_columns.py,sha256=NTD1EPUyIR5IiwbjEsV3__TWHNJ7vkN1-UTI8dhcIZw,14160
|
1233
|
+
pulumi_oci/datasafe/get_masking_report_masking_errors.py,sha256=Q34CtPzqCkDX1U2ciruP6F9bfW0FKnaGjAqtGWU2c3o,7515
|
1223
1234
|
pulumi_oci/datasafe/get_masking_reports.py,sha256=_uHVv0tochk_AAWvd76uYC5osyLkU6vvW_rQ_Qr8vvA,11552
|
1224
1235
|
pulumi_oci/datasafe/get_masking_reports_masked_column.py,sha256=KAl-7g5JcGU85W8LvuG7E3uildhHz7IBQGtyQ9Alzmw,12913
|
1225
1236
|
pulumi_oci/datasafe/get_onprem_connector.py,sha256=ftJ3cEw6NfXo_xq699v6Lb4UmjI7alJhsByalZJVkto,11712
|
@@ -1235,9 +1246,9 @@ pulumi_oci/datasafe/get_sdm_masking_policy_difference_difference_columns.py,sha2
|
|
1235
1246
|
pulumi_oci/datasafe/get_sdm_masking_policy_differences.py,sha256=WfhlRMTTQySq1yitaj0mVTCvQgJHlPyg0EiU4Z2evfs,15449
|
1236
1247
|
pulumi_oci/datasafe/get_security_assessment.py,sha256=AyZhfqDdeQvAyHo6oMW54AE06-hL_KmMvbnUDmFflrQ,22040
|
1237
1248
|
pulumi_oci/datasafe/get_security_assessment_comparison.py,sha256=62oFkmTeFd32-_lzPRcY0FdsltL1RD0VHpgY1QtrlII,8734
|
1238
|
-
pulumi_oci/datasafe/get_security_assessment_finding.py,sha256=
|
1249
|
+
pulumi_oci/datasafe/get_security_assessment_finding.py,sha256=S0Ur9bPvLy8it8jWcwb0LeZQL9zZLyyLH4FUqrFPfZ4,12912
|
1239
1250
|
pulumi_oci/datasafe/get_security_assessment_finding_analytics.py,sha256=bo8ku3rCxbuHFpJLLCSONGZMrRegbFxqdXvjrhAatrc,18212
|
1240
|
-
pulumi_oci/datasafe/get_security_assessment_findings.py,sha256=
|
1251
|
+
pulumi_oci/datasafe/get_security_assessment_findings.py,sha256=n1QDknQ2HSYx5evsnDJe9AXK_y2Yao3gBiCV_9BsT1I,18488
|
1241
1252
|
pulumi_oci/datasafe/get_security_assessment_findings_change_audit_logs.py,sha256=LfcsGMZdnLV-v2q80zKK2ytXtbbXLYqm42RuhVcSPdk,22564
|
1242
1253
|
pulumi_oci/datasafe/get_security_assessment_security_feature_analytics.py,sha256=XjvC0ssQa9GeNRbd5zlLZBgATwiSTMh_odhLCh0-72Y,13209
|
1243
1254
|
pulumi_oci/datasafe/get_security_assessment_security_features.py,sha256=vVYbdHe2yebRu1FiOKdmX8Mjhh0G0uU9Gj4tLQDG1XA,30504
|
@@ -1255,7 +1266,8 @@ pulumi_oci/datasafe/get_security_policy_report_database_view_access_entries.py,s
|
|
1255
1266
|
pulumi_oci/datasafe/get_security_policy_report_database_view_access_entry.py,sha256=ZK-2vcsJ5_IpOaVFpIjpxBFsTfgQyyZpXtKqxnk-mdM,21342
|
1256
1267
|
pulumi_oci/datasafe/get_security_policy_report_role_grant_paths.py,sha256=3kZvdZEpE2tNanb2s0vjvJAxz4DSCFeiDRLE2KQRO1I,9416
|
1257
1268
|
pulumi_oci/datasafe/get_security_policy_reports.py,sha256=Hir7a32dwaLS1wFXerKuOOs8uC-I3HZmi9Y6EHpgZyg,16237
|
1258
|
-
pulumi_oci/datasafe/
|
1269
|
+
pulumi_oci/datasafe/get_sensitive_column_analytics.py,sha256=UaGyKwWxMRdeixqlknkBYE2qUbVUJFmBBQcu5PnHVx4,21591
|
1270
|
+
pulumi_oci/datasafe/get_sensitive_data_model.py,sha256=SrqKduaek-Xmz6ntklGLm54hnhDfh0Z89ROqkrhKdBs,20761
|
1259
1271
|
pulumi_oci/datasafe/get_sensitive_data_model_referential_relation.py,sha256=75tGhC9YJCaD1XrKSspzXAE3pLacrtp_vhxSye_CV4g,8813
|
1260
1272
|
pulumi_oci/datasafe/get_sensitive_data_model_referential_relations.py,sha256=Xib1gSU42AaB5rTPYFYrsDLrrwhHQVhotRfGlQbk4z8,15002
|
1261
1273
|
pulumi_oci/datasafe/get_sensitive_data_model_sensitive_objects.py,sha256=xpuQbaOzm1lq171KCNU6buyUxTq1YvXaKvaMY4-NTy4,10707
|
@@ -1265,6 +1277,9 @@ pulumi_oci/datasafe/get_sensitive_data_models.py,sha256=ExDX6bhkXt_r4C5htyzF0ZMe
|
|
1265
1277
|
pulumi_oci/datasafe/get_sensitive_data_models_sensitive_column.py,sha256=dkXjoP4Fr5EnhMkWbz23cN6q_itbbQXa6H07dMTNUPs,21199
|
1266
1278
|
pulumi_oci/datasafe/get_sensitive_data_models_sensitive_columns.py,sha256=ltTRP-zaEP7UXOrQWNSKiZ311_1hvNvKa_Abi7z0-oQ,33251
|
1267
1279
|
pulumi_oci/datasafe/get_sensitive_type.py,sha256=elTGNamxVIfpWA23Oo8JuZHeFdDrExUcAxSDf2fXiU0,16861
|
1280
|
+
pulumi_oci/datasafe/get_sensitive_type_group.py,sha256=BlYq72TpxQFnG7ZqAdbrSLKZPTe8QdtIibtpqz46YUQ,11297
|
1281
|
+
pulumi_oci/datasafe/get_sensitive_type_group_grouped_sensitive_types.py,sha256=fEBFZm2JWN2I_ewGETmbFpwdfRRQRsSq8mOhO2tRAAI,8530
|
1282
|
+
pulumi_oci/datasafe/get_sensitive_type_groups.py,sha256=1_e9qEDKSrHHtI_A_3hPxEPb7bHLb6aDJ_f8W-u54Hk,17341
|
1268
1283
|
pulumi_oci/datasafe/get_sensitive_types.py,sha256=TUBgskwC2u2a5qZn44coicMgd8g_Tu97ZaHuprsYWeY,23670
|
1269
1284
|
pulumi_oci/datasafe/get_sensitive_types_export.py,sha256=6rlfreTZoIOr0CsgcFSR8uGgPGdXR3NR3Ja89iHQcYA,12650
|
1270
1285
|
pulumi_oci/datasafe/get_sensitive_types_exports.py,sha256=sY8vnkwXH6a76x3J-j-x1nKcdKoqEmXU8wzzRbBR7tk,17847
|
@@ -1308,7 +1323,7 @@ pulumi_oci/datasafe/masking_policy.py,sha256=7o7NUo4mD29GHWArXPZGq6K68K3aTRkT3Q_
|
|
1308
1323
|
pulumi_oci/datasafe/masking_policy_health_report_management.py,sha256=sKn_zVyaD-B-nWdw--YEc4tiSKc264v-UL7AEOZoBdo,19537
|
1309
1324
|
pulumi_oci/datasafe/masking_report_management.py,sha256=bETga_n8T453Ovy1vaFtLmDNEk1LL5gA4dR206N9bI8,32183
|
1310
1325
|
pulumi_oci/datasafe/on_prem_connector.py,sha256=aLrvbSJIY-IPwEOZ8OawGZwGdmhM1PWYGoDrhWQPsI4,29965
|
1311
|
-
pulumi_oci/datasafe/outputs.py,sha256=
|
1326
|
+
pulumi_oci/datasafe/outputs.py,sha256=ZKh7tzYPLCyZjPmnOY9SmT7wL-bECr-Ut6e96NgDj8s,1430288
|
1312
1327
|
pulumi_oci/datasafe/report.py,sha256=1FY3RWdV8jiOZ1Kdh8yc_f2aQu8okjO7xPucday88nI,28281
|
1313
1328
|
pulumi_oci/datasafe/report_definition.py,sha256=fWp6K-pwg2tgGKCq9dviD2OTfJrPKUNcVFoDmuyWwOI,68721
|
1314
1329
|
pulumi_oci/datasafe/sdm_masking_policy_difference.py,sha256=HHucE8bQEpn2xKJ7zxJlltPb9Tgkzkh-XkjbBVIzmRU,38019
|
@@ -1317,11 +1332,13 @@ pulumi_oci/datasafe/security_policy.py,sha256=AxiCTTB595HnW8Cwxq4n-n01Fis2XfPijj
|
|
1317
1332
|
pulumi_oci/datasafe/security_policy_deployment.py,sha256=PcNcGVsuvViaC_HQtPazkfgCyjs8wRj2uVaeXq10eHA,33195
|
1318
1333
|
pulumi_oci/datasafe/security_policy_deployment_management.py,sha256=uqtFjYUIXyc53VCCFUVpOaAhAtJDmW3-CavAj0gqwFg,30976
|
1319
1334
|
pulumi_oci/datasafe/security_policy_management.py,sha256=ALEYXcsLDzJH-BNiX5MlshBQ4CFyD8cwdAlwFF50DW4,28831
|
1320
|
-
pulumi_oci/datasafe/sensitive_data_model.py,sha256=
|
1335
|
+
pulumi_oci/datasafe/sensitive_data_model.py,sha256=FSQsigG91nrSptzKk98UQkWRMBKSFJc_5Ih5RFNrefc,72729
|
1321
1336
|
pulumi_oci/datasafe/sensitive_data_model_referential_relation.py,sha256=nWFo4WtkgDIz2CXMgoFGPp8-tskuw2hvVty6TbtVyNA,27892
|
1322
1337
|
pulumi_oci/datasafe/sensitive_data_models_apply_discovery_job_results.py,sha256=0mqebUwNVUhY5lQ-e2_NYEsVSQdOyvZIVIUPG4cn2oE,8004
|
1323
1338
|
pulumi_oci/datasafe/sensitive_data_models_sensitive_column.py,sha256=OUrYxrqemF6P4jLT0CgAaMe33CR_1Uiiui8dfcaB0wE,67631
|
1324
1339
|
pulumi_oci/datasafe/sensitive_type.py,sha256=K2lKeLbVHijOP-Q_ajjkn-i04ISAzeOc_GTSnLjWOLI,51998
|
1340
|
+
pulumi_oci/datasafe/sensitive_type_group.py,sha256=RXcX1Zh0pN8xB3uxfG-kL9a7nUvE5aeXpN_EsqAeRx0,29013
|
1341
|
+
pulumi_oci/datasafe/sensitive_type_group_grouped_sensitive_type.py,sha256=HwY4EDO0nty9c-A-eHiBq0slpjwLNCIPOyjSBkKiqNY,15444
|
1325
1342
|
pulumi_oci/datasafe/sensitive_types_export.py,sha256=_fOuopvkPnPFfuOG_iWOJGfdl3sWbY0MWAU-NJIsV74,35663
|
1326
1343
|
pulumi_oci/datasafe/set_security_assessment_baseline.py,sha256=EOlnJNcf1ywBKBtUv_odDEuxBJm10Hao2D_vAxyd2Wk,12548
|
1327
1344
|
pulumi_oci/datasafe/set_security_assessment_baseline_management.py,sha256=yqlxoEbM-vpzCyCd6KOSSv8GNndFEo_x1-wz98ajXVM,13694
|
@@ -1338,8 +1355,8 @@ pulumi_oci/datasafe/unset_security_assessment_baseline_management.py,sha256=YEYT
|
|
1338
1355
|
pulumi_oci/datasafe/unset_user_assessment_baseline.py,sha256=HBAS6RKPnM-XvQMu8GGM1Zq8GUSGwo7ONQTFEcd4shk,12511
|
1339
1356
|
pulumi_oci/datasafe/unset_user_assessment_baseline_management.py,sha256=35cHHgSOwwXA7KzdBO0h_1q898gblxQZfz8icp2a8zU,12008
|
1340
1357
|
pulumi_oci/datasafe/user_assessment.py,sha256=oHUSZcoIZDf8TGe33spDp9Locz7Jg0atVWBj7n9eDoI,58645
|
1341
|
-
pulumi_oci/datascience/__init__.py,sha256
|
1342
|
-
pulumi_oci/datascience/_inputs.py,sha256=
|
1358
|
+
pulumi_oci/datascience/__init__.py,sha256=-qD8sdDOPU8o98Z4Ut5Z1KyfBGkjR1NIxPq6qUqz0lo,1827
|
1359
|
+
pulumi_oci/datascience/_inputs.py,sha256=KTZ9p2Uq7vnCFxcCDvnoJA2GKE-JNKj7JB5UJpWMdTQ,440071
|
1343
1360
|
pulumi_oci/datascience/get_containers.py,sha256=YGn8S0qa7S7McjJkWE_0mVORj4qlCXyuPSxdGSIMD9Q,11744
|
1344
1361
|
pulumi_oci/datascience/get_fast_launch_job_configs.py,sha256=8vxxnygk-9Iiv213tAczVCZdDIOOqLzCrESiMGKtR6A,6226
|
1345
1362
|
pulumi_oci/datascience/get_job.py,sha256=rTHf2J_91ma5kbDET7ASjdY42NwYWQxMGzR5UmluA7E,19861
|
@@ -1347,18 +1364,20 @@ pulumi_oci/datascience/get_job_run.py,sha256=4b81Cd5JP5i0xk-YbQY5rwFxMPWGLqGwbp2
|
|
1347
1364
|
pulumi_oci/datascience/get_job_runs.py,sha256=99PylZwHPZtz9fEsu-13PPxAXWIT3iocaZ51mWdmtPo,10585
|
1348
1365
|
pulumi_oci/datascience/get_job_shapes.py,sha256=RWlimRA0XYwC625OCLt8SPkvxF6UsrXglSduc-OSIiA,5552
|
1349
1366
|
pulumi_oci/datascience/get_jobs.py,sha256=9n9D_lizqdC7VJJw2ot_YR_KRnALWXhhBeHDV3TDTF0,10535
|
1350
|
-
pulumi_oci/datascience/get_model.py,sha256=
|
1367
|
+
pulumi_oci/datascience/get_model.py,sha256=DtlES5M8W4M_953RHMMCR411M204eK7L17i5qCKym0w,23824
|
1368
|
+
pulumi_oci/datascience/get_model_custom_metadata_artifact_content.py,sha256=iNLd861O6LX84Y1Oj5FyBONw_eeMWI-LX7HSIfL-cSc,7088
|
1369
|
+
pulumi_oci/datascience/get_model_defined_metadata_artifact_content.py,sha256=uLvPzmp86L0HQVly3Ns3N6C2Nx8KaIRfvkkpZhsUN7s,7125
|
1351
1370
|
pulumi_oci/datascience/get_model_deployment.py,sha256=W799z4a-DrNjhnmH1TGuCwc1gGZuNCqlT0bgRK99hr0,15428
|
1352
1371
|
pulumi_oci/datascience/get_model_deployment_shapes.py,sha256=rh8lf-Xv4ZfkVWC7kmcQbj0v5z0VQyf-gpb1XilFALs,6197
|
1353
1372
|
pulumi_oci/datascience/get_model_deployments.py,sha256=2BIs7qdPQb4oJHtVivznkwozpBGUtNQdk95Br57E8eI,12127
|
1354
1373
|
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=
|
1374
|
+
pulumi_oci/datascience/get_model_version_set.py,sha256=KoaX8uBkSnizCnwqrUOQhuA7gAhNvOx6vpvlhR9dgEc,12379
|
1375
|
+
pulumi_oci/datascience/get_model_version_sets.py,sha256=MJU-Ymt8DZCjmleKKxibTk5TCwJKfsR_LmYgcvB2HD4,12497
|
1376
|
+
pulumi_oci/datascience/get_models.py,sha256=YzVtV2NANuH4sjmgR7okthNb8u_yexVTe_Lbqc2eMPo,15310
|
1358
1377
|
pulumi_oci/datascience/get_notebook_session.py,sha256=yttUqw_TS_vUCciS339r7QJhMTJm2RY3o4ZY_M1tBh4,15984
|
1359
1378
|
pulumi_oci/datascience/get_notebook_session_shapes.py,sha256=woPRfu2IF4qQaKOsB2ziF5UHFFYjje_8nvqs4zBolF0,6199
|
1360
1379
|
pulumi_oci/datascience/get_notebook_sessions.py,sha256=xZCk_tZeOWNILf6GArmLl0X98DKDX-2F6ZoRYQcwHKg,11649
|
1361
|
-
pulumi_oci/datascience/get_pipeline.py,sha256=
|
1380
|
+
pulumi_oci/datascience/get_pipeline.py,sha256=dI3PjilHCi20mMqJ9teh5CvOJoKi_5u64RhSAFbRKYk,18091
|
1362
1381
|
pulumi_oci/datascience/get_pipeline_run.py,sha256=PESVrJAStoBRHuhC5sl2-XEIY3qE1Uao3akMxMkOiOo,19908
|
1363
1382
|
pulumi_oci/datascience/get_pipeline_runs.py,sha256=YKxm8SVv1Bxh8H3sMVEzShJnpYhaWVOKdLZK5ENT1fY,11045
|
1364
1383
|
pulumi_oci/datascience/get_pipelines.py,sha256=tG52rgCcCBxdgOfXXkjYJ2beHT9ZWrDsQKAIsuzxaj4,10765
|
@@ -1370,19 +1389,32 @@ pulumi_oci/datascience/get_schedule.py,sha256=qw2NtiVqHdtSs22XChAoa9Oakw1hFDp_Ld
|
|
1370
1389
|
pulumi_oci/datascience/get_schedules.py,sha256=I9igCvNYfmY1NHevzRGlm7tVJIwEpOD-gToR3NKZKJc,9350
|
1371
1390
|
pulumi_oci/datascience/job.py,sha256=CKx-OCPc-mnwV3yya9_ODyadwXkIGLH7jJpx2yXPq88,66918
|
1372
1391
|
pulumi_oci/datascience/job_run.py,sha256=Ezk-s_mKsPjumrgDrPT_jgUMjj1y88OqRrXG4Ruj39U,58133
|
1373
|
-
pulumi_oci/datascience/model.py,sha256=
|
1392
|
+
pulumi_oci/datascience/model.py,sha256=pVMQ8GpAINokIwhmqHxrCVtGvPsDSWIxp5uBsYg5WPc,76166
|
1374
1393
|
pulumi_oci/datascience/model_artifact_export.py,sha256=qpoGIPU6izNwENI_B95Hhfr_XxyyPgEtszWpUHPFjpQ,13053
|
1375
1394
|
pulumi_oci/datascience/model_artifact_import.py,sha256=MazxhVf2vz69NjG5YSr3NT5OQW_1h82t3ifPIF9Uuq8,13518
|
1395
|
+
pulumi_oci/datascience/model_custom_metadata_artifact.py,sha256=mYTxLqRWJkzWBiU1K0-K-vjGEukizqkcTPLg-4Gi1dw,21950
|
1396
|
+
pulumi_oci/datascience/model_defined_metadata_artifact.py,sha256=bJdfFGHyfIO0H8thn7dBboLOJz0rjWsaHLmA9AzWpKY,22040
|
1376
1397
|
pulumi_oci/datascience/model_deployment.py,sha256=-sWUvScp-jh__TSFQgIPf3knqQhMUGdYbCAE4MSsjFc,59961
|
1377
1398
|
pulumi_oci/datascience/model_provenance.py,sha256=bs0nhQLjbJPq48vn2itr1OdNENIDFYEVqt6Hzl3wG6s,24769
|
1378
|
-
pulumi_oci/datascience/model_version_set.py,sha256=
|
1399
|
+
pulumi_oci/datascience/model_version_set.py,sha256=W1aY6Q8ZuF4Zbrttk4_blOtIIoL96AYU1GBoGuiTtno,32982
|
1379
1400
|
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=
|
1401
|
+
pulumi_oci/datascience/outputs.py,sha256=f1ZjNzIF3DrCv7m4fqF1qWTC7BGxU1ZebTkGTs1F2vU,900258
|
1402
|
+
pulumi_oci/datascience/pipeline.py,sha256=_e_YvGuS31brdgAQqF92VBs-o2h1zQ_8QH2w3iZ7WlU,52016
|
1403
|
+
pulumi_oci/datascience/pipeline_run.py,sha256=xO0sMheN8faZX9xFTCyK7aFqoBKanwZ2PXuEcd1T04s,64671
|
1383
1404
|
pulumi_oci/datascience/private_endpoint.py,sha256=qw8MZiEbX3YLcTEmWhx57sWNoVAI9BodwGXfu20lsto,41007
|
1384
1405
|
pulumi_oci/datascience/project.py,sha256=t72IVNZviBUE-C8VbNE7RmL1sJV6EwWy9cdQIA27Hlc,27355
|
1385
1406
|
pulumi_oci/datascience/schedule.py,sha256=oiv4Cv4d3rgbywhnQaYlpRN9u4vqjcrM7hWgjkpbjik,59531
|
1407
|
+
pulumi_oci/dblm/__init__.py,sha256=8RqHfMPSs72lhEA7b-iNzhBuOgRSpNd1gHLMeREhU_o,660
|
1408
|
+
pulumi_oci/dblm/_inputs.py,sha256=RuFy9tRdgNo8-IKsrCG6Td97kcXkwpIaGYR44tciCPs,7574
|
1409
|
+
pulumi_oci/dblm/get_vulnerability.py,sha256=JutOFTl-uBl3Eyrxo1u-UgNyAXUU0srk8awkiBvwEng,10977
|
1410
|
+
pulumi_oci/dblm/get_vulnerability_aggregated_vulnerability_data.py,sha256=O9RqWylirSlIVKVTBOvAjWN2Iqp6q1L6PCvcxY9cLhI,11963
|
1411
|
+
pulumi_oci/dblm/get_vulnerability_notifications.py,sha256=jemHwl7X_SRBcNRe84Ve3DBKQHjgfApPkBBQpCEbVuA,6166
|
1412
|
+
pulumi_oci/dblm/get_vulnerability_resources.py,sha256=P7892NTLkbRtYhkWA03cSgDUfNH5w41TRMb6tVq3JpM,12973
|
1413
|
+
pulumi_oci/dblm/get_vulnerability_scan.py,sha256=CUV2Ysp7yhEFe4E9D-YFyjXYbCDu77qOELt35yRPy9g,12232
|
1414
|
+
pulumi_oci/dblm/get_vulnerability_scans.py,sha256=sYslBNKQX3gixuxN3HzpAaHojeXHci66Sa67HA392aU,14221
|
1415
|
+
pulumi_oci/dblm/get_vulnerability_vulnerabilities.py,sha256=nW8YNHGxTCSDTgYO7fx1lcWda1N-pLnBYgZjLfrUeVY,12909
|
1416
|
+
pulumi_oci/dblm/outputs.py,sha256=dQiNqXXjHuvuqR50KwS5uoLXvaXiEA7IVMdVjSUrqWI,45274
|
1417
|
+
pulumi_oci/dblm/vulnerability_scan.py,sha256=p_693KPi0a1BabKDxT1cT-DhNQ4Z_nqr_NZPdQw47Z8,24285
|
1386
1418
|
pulumi_oci/delegateaccesscontrol/__init__.py,sha256=jLm-tjfbPmvSyneDTdnHN4gxE9ajplHXpvD7K4XptAk,999
|
1387
1419
|
pulumi_oci/delegateaccesscontrol/_inputs.py,sha256=XqNArlUOPTJMcg7EvHri_tilqm9O6zOtIvoWXwtBhy4,10703
|
1388
1420
|
pulumi_oci/delegateaccesscontrol/delegation_control.py,sha256=nPwDHmGAfa-bwADeiKDi45vMA97wROHUVGHJ0AmJNik,68011
|
@@ -1527,11 +1559,11 @@ pulumi_oci/dns/zone_promote_dnssec_key_version.py,sha256=vMFfMJpRpD4gFi_dz6bPclP
|
|
1527
1559
|
pulumi_oci/dns/zone_stage_dnssec_key_version.py,sha256=BfnAAeki-oOTzZChZWt7xAWobMpFUBreePCA7rgKWtM,14312
|
1528
1560
|
pulumi_oci/email/__init__.py,sha256=CccmgPhQDCLi1x6p0ZDJLIe284HxWV19bUQhJgFcwwk,782
|
1529
1561
|
pulumi_oci/email/_inputs.py,sha256=90XHXXUXj1dQGvBGj9PevtqfSuzLC4ln_0e4sifSjlo,7933
|
1530
|
-
pulumi_oci/email/dkim.py,sha256=
|
1562
|
+
pulumi_oci/email/dkim.py,sha256=RDk1KOzzr7SuVIKY0axHnW0kM1ExEhU-9kJWZ3wFq6w,46443
|
1531
1563
|
pulumi_oci/email/email_domain.py,sha256=tAc8d-ZK1Y3VR-cnnkcoOspEPUeqEac_eNm1fVkssfI,36713
|
1532
1564
|
pulumi_oci/email/email_return_path.py,sha256=8kpcDWXi95CiS7m5Rcre84x5GRG_duD635wSnov2_iQ,39890
|
1533
1565
|
pulumi_oci/email/get_configuration.py,sha256=aY80r444QQLa4Xo4IMS7Q1FOJnANE-kjkiZLSWiFanA,5758
|
1534
|
-
pulumi_oci/email/get_dkim.py,sha256=
|
1566
|
+
pulumi_oci/email/get_dkim.py,sha256=PFhvFZFQlN-mW6K-JLhxOCcGWMjmd73E3hhe0jnuLyk,15621
|
1535
1567
|
pulumi_oci/email/get_dkims.py,sha256=_TjKphBL_v3Mg9wtbUBUfy50BBWra0gAdIuEsgulFMc,7908
|
1536
1568
|
pulumi_oci/email/get_email_domain.py,sha256=pkx04C5XPIYh1rGn5buzHql28QjxRwOAVtoGM9ILIpw,12535
|
1537
1569
|
pulumi_oci/email/get_email_domains.py,sha256=mCcmVEGuGFFXrXP_poXIcBj0ODgXL2RNl4sC-fBimmQ,8202
|
@@ -1541,7 +1573,7 @@ pulumi_oci/email/get_sender.py,sha256=yE2MRT-Emc7Nh5XQprEEwKCiZJLkU7-MO-o7kNz3ba
|
|
1541
1573
|
pulumi_oci/email/get_senders.py,sha256=7HlKExNDYEKnKvTQdxG3CmZJNqqp6d2j31Bs6nAXYRs,8000
|
1542
1574
|
pulumi_oci/email/get_suppression.py,sha256=mgSwpVWvtOIlIikfs4ALQMH3jdiozTyxQrY6WhrMeVI,9977
|
1543
1575
|
pulumi_oci/email/get_suppressions.py,sha256=bs04UGbj1dFydVdfJTU-JQdQmPKKEXen18cwGcqmrMo,11754
|
1544
|
-
pulumi_oci/email/outputs.py,sha256=
|
1576
|
+
pulumi_oci/email/outputs.py,sha256=NYz8RIv_sqgiHyx1NXmMbVY2vl--8ddpaHm_g5bETkI,43462
|
1545
1577
|
pulumi_oci/email/sender.py,sha256=2gOr3UbuSVYqfIb_Ss8GA_GsSDATPHNUtEpnJKl3p1g,25858
|
1546
1578
|
pulumi_oci/email/suppression.py,sha256=NHZHQjJ9VuqxhG8KG5NFATdPQivcK20aG_JuwyfijTM,22320
|
1547
1579
|
pulumi_oci/events/__init__.py,sha256=s5WifgDAfiU0eAvulJ-z_3vdbDeRHphEqpEnfC6mvhQ,383
|
@@ -1550,14 +1582,17 @@ pulumi_oci/events/get_rule.py,sha256=FVcRRKoLPAyw4vitYbxfI7y5l6mx9y5IgNnojMiVUHg
|
|
1550
1582
|
pulumi_oci/events/get_rules.py,sha256=meRz2WjHwSCRN_6CmeZfhbnFU1l1kXioIIMlYCOyo3s,7818
|
1551
1583
|
pulumi_oci/events/outputs.py,sha256=1tJA_GwFrGsAb5HVG_xvuxNrQVKXnywiXnmq8lKLa4c,26538
|
1552
1584
|
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=
|
1585
|
+
pulumi_oci/filestorage/__init__.py,sha256=MeFJtjJDBx_9b43jQL9Oa_n6e9CErj1NqGpw_TaMIx0,1158
|
1586
|
+
pulumi_oci/filestorage/_inputs.py,sha256=U-h0OO-GOGQj9KOXp7v1yTo5-qB2zkRHcKOoopQQ40s,77312
|
1555
1587
|
pulumi_oci/filestorage/export.py,sha256=WVSWhClrEKdqv2OU1XBSzB_U_P8yC1g_2dsaDLqc3p8,39224
|
1556
1588
|
pulumi_oci/filestorage/export_set.py,sha256=jbrq_UHhaP4wrQw-82xEiNSQHCLoCdslZ1RneLh_QH0,28821
|
1557
|
-
pulumi_oci/filestorage/file_system.py,sha256=
|
1589
|
+
pulumi_oci/filestorage/file_system.py,sha256=Eoo5jrmAHR9szhaDHpZ9AbPeiQ27cKZVVM3xp3ykAx4,73927
|
1590
|
+
pulumi_oci/filestorage/file_system_quota_rule.py,sha256=deye9lN2XN5ym-Aa18Lc-r593M4fxd2IUbMvebZ7BiI,31018
|
1558
1591
|
pulumi_oci/filestorage/filesystem_snapshot_policy.py,sha256=z_qGKO70HHsphZCXKwU3DWix7eNSQJftLqygLJDXOu4,43551
|
1559
1592
|
pulumi_oci/filestorage/get_export_sets.py,sha256=axeKm4Kg8F-Vgvuv_zvIpCQ8NHJoyPO7YCMcnlRzOvM,9967
|
1560
1593
|
pulumi_oci/filestorage/get_exports.py,sha256=Jsf6gBZVMKSK1D0lvqmUjNCLJaHNo3I5vDlmbWADlCA,9727
|
1594
|
+
pulumi_oci/filestorage/get_file_system_quota_rule.py,sha256=zblduqbrlj5hQVayyFjc0VcCbdUZu3rsTSTu2Cw1ZYk,11941
|
1595
|
+
pulumi_oci/filestorage/get_file_system_quota_rules.py,sha256=7wCwI_Z0fn5g-feGhB3XQ5k1uJRx9yRhBGPjjwqHVBE,10530
|
1561
1596
|
pulumi_oci/filestorage/get_file_systems.py,sha256=epe_OKq7j2hnrQrmD69rRUI7Jxw9_NALDHPQ7B77vss,15887
|
1562
1597
|
pulumi_oci/filestorage/get_filesystem_snapshot_policies.py,sha256=UIa_ZBs0mEWGOQWkceIUDrJx0pOEmjMZ9GZq9ALDzfo,11226
|
1563
1598
|
pulumi_oci/filestorage/get_filesystem_snapshot_policy.py,sha256=C-eFfuBLIrVl90s5aAovSiLTvtpafX9IXcCyGQpW0DI,13368
|
@@ -1572,7 +1607,7 @@ pulumi_oci/filestorage/get_snapshot.py,sha256=rVkIoFaxNjumzJo4HiW5tPvNcjD0wNsuvP
|
|
1572
1607
|
pulumi_oci/filestorage/get_snapshots.py,sha256=9WUe6gYX1cglCbVQI4nn3i1wKPDUywTDwC8B6WUf7ks,11078
|
1573
1608
|
pulumi_oci/filestorage/mount_target.py,sha256=E4bbDxgcOCM94lDva4rZQfv3d8tOyJXxTwulZOsx9Uo,82418
|
1574
1609
|
pulumi_oci/filestorage/outbound_connector.py,sha256=g-AmgS8T-rPEo0SwrNiiVsl8fwEjpp0NXcXd-CJr5qE,48631
|
1575
|
-
pulumi_oci/filestorage/outputs.py,sha256=
|
1610
|
+
pulumi_oci/filestorage/outputs.py,sha256=ncpjVybGtayXtHpjv2RKnLqcEJ3WtxPyfdPlh6ueasA,205067
|
1576
1611
|
pulumi_oci/filestorage/replication.py,sha256=wPBSZKJFG9gaz7tRJ3tLWV1gH3EqjYVUcduwx1RWkSI,52621
|
1577
1612
|
pulumi_oci/filestorage/snapshot.py,sha256=B_7WE1C_FfKwLNCy0nngdINT5fyh0r15q9JuULJy_JY,42691
|
1578
1613
|
pulumi_oci/fleetappsmanagement/__init__.py,sha256=3CY3llYOLwOKFIfAKn0wUk8bvsRvW8v_DQksc7PYZZI,2169
|
@@ -1725,12 +1760,12 @@ pulumi_oci/globallydistributeddatabase/outputs.py,sha256=IcxFQV4p6pjse3uTgmgFTM2
|
|
1725
1760
|
pulumi_oci/globallydistributeddatabase/private_endpoint.py,sha256=d6ZYahta1qdr0zmhxhKzbKECbluIrtgmjVHSwX3_DwI,39207
|
1726
1761
|
pulumi_oci/globallydistributeddatabase/sharded_database.py,sha256=YnILiz4cVq7dBZ0pIxbbh_g6VWkjr_vI8Sw7qbnHGno,123043
|
1727
1762
|
pulumi_oci/goldengate/__init__.py,sha256=OpUZaqa8pn-AfZNy5NMvKzfPzFaGXg3q5_h7CijYNNw,1606
|
1728
|
-
pulumi_oci/goldengate/_inputs.py,sha256=
|
1763
|
+
pulumi_oci/goldengate/_inputs.py,sha256=sjSTqaT2SRYCljvN51RckPsPe3IIM6ZOS9J7nJcn95c,103215
|
1729
1764
|
pulumi_oci/goldengate/connection.py,sha256=czTGFL7DecV_AOyQxuHB-Upm5-BXfwhb14bqCswjm50,373706
|
1730
1765
|
pulumi_oci/goldengate/connection_assignment.py,sha256=XNtTILpAQjfNSYn6csr98gQIDCUXMyyv4kf72q_D7ck,20881
|
1731
1766
|
pulumi_oci/goldengate/database_registration.py,sha256=rdiMPMdVOO3sLr-f7Yk-oj2AKVvsIrEt0UT6rLePucs,71293
|
1732
|
-
pulumi_oci/goldengate/deployment.py,sha256=
|
1733
|
-
pulumi_oci/goldengate/deployment_backup.py,sha256=
|
1767
|
+
pulumi_oci/goldengate/deployment.py,sha256=KrlLJyJqP-Ji916j_LHnafa_QfLLCgZ-xV4-An2FN3I,106471
|
1768
|
+
pulumi_oci/goldengate/deployment_backup.py,sha256=37cbjmUMLCY15MdVBI-egecXdm2tt6HpSBFhYH3cjec,52427
|
1734
1769
|
pulumi_oci/goldengate/deployment_certificate.py,sha256=BdJUzPc09T0OLb6KtJEqhtqzaIXFejWueRXkzlQShw4,35680
|
1735
1770
|
pulumi_oci/goldengate/get_connection.py,sha256=wpZzEjVuzPeZnDAiuGJGg07MbRvtPdpudvvVHUmyhHY,87110
|
1736
1771
|
pulumi_oci/goldengate/get_connection_assignment.py,sha256=aq-YkPBhlSayHBvmpiGESbsRod7yu5WvcjaPqzzcKy0,9914
|
@@ -1738,8 +1773,8 @@ pulumi_oci/goldengate/get_connection_assignments.py,sha256=nlKixw1lo3kYD5k0vKO04
|
|
1738
1773
|
pulumi_oci/goldengate/get_connections.py,sha256=TjHH-_ZNgKMPGXoeUEDfChiWT_5HuMn9qzQ6Cen5jwg,15003
|
1739
1774
|
pulumi_oci/goldengate/get_database_registration.py,sha256=0PprzcrdIwD2eGUsfLt84bMl5eiwYjRDgvUXv921zfE,21529
|
1740
1775
|
pulumi_oci/goldengate/get_database_registrations.py,sha256=jx2YAVcA3W2N7C59YbcVoBuKrR2w_z-Phw6tFZSnPkM,9218
|
1741
|
-
pulumi_oci/goldengate/get_deployment.py,sha256=
|
1742
|
-
pulumi_oci/goldengate/get_deployment_backup.py,sha256=
|
1776
|
+
pulumi_oci/goldengate/get_deployment.py,sha256=ptjbX1vsuiJJAdV0D6tBnOk5TSvJEgmq0BctMyHaD64,38799
|
1777
|
+
pulumi_oci/goldengate/get_deployment_backup.py,sha256=N6nJ2-hb0Mw3bqCuzYZ0coyNNLHSRq8OOslhaYHzgws,20071
|
1743
1778
|
pulumi_oci/goldengate/get_deployment_backups.py,sha256=_OZ9Dek4HEJqFRkK0iyZnnVOzy0xR0Yl8ZSbavQJyQs,10193
|
1744
1779
|
pulumi_oci/goldengate/get_deployment_certificate.py,sha256=flIgcNq59iflC7pZkkcDKdVV6K6X4g5BBTr9diITGiE,17063
|
1745
1780
|
pulumi_oci/goldengate/get_deployment_certificates.py,sha256=Aqd-FUYUmMHNY4vXoOkBHSOf_tm5nsgY59Cup7vNqfI,7143
|
@@ -1762,7 +1797,7 @@ pulumi_oci/goldengate/get_trail_file.py,sha256=NAOPzj12Gby708lnfIK8LMgHpmmgvZqbS
|
|
1762
1797
|
pulumi_oci/goldengate/get_trail_files.py,sha256=ytBS9ypv5JB_2yzrKAZNb-H6vBoK6M441xelitY8fSo,7955
|
1763
1798
|
pulumi_oci/goldengate/get_trail_sequence.py,sha256=-VpjFnSf-1CZAaa6EW9kQJPwvCsJW8oPWFDFmLv0NPQ,8597
|
1764
1799
|
pulumi_oci/goldengate/get_trail_sequences.py,sha256=qIT6KcCTC6RpYhkN68O8YLxSHFpt2Lw-ohK5O59dGPo,9255
|
1765
|
-
pulumi_oci/goldengate/outputs.py,sha256=
|
1800
|
+
pulumi_oci/goldengate/outputs.py,sha256=khBePcMIDNDuYp-IL7XbDA2RfK1h6ijdpE0LQ9XQaZQ,384721
|
1766
1801
|
pulumi_oci/goldengate/pipeline.py,sha256=LmMq1eI-2NbNMxRu0LEvmPFvnpMi_MzsxgKz7NpX-6c,49207
|
1767
1802
|
pulumi_oci/healthchecks/__init__.py,sha256=PJnzYouMBWUvQ3Du18Ga3ztCAO2ekzXs2E8fPG4C0XU,662
|
1768
1803
|
pulumi_oci/healthchecks/_inputs.py,sha256=ak61T7VVp0CrgPcfw-62NcEb54Orb3-QC68cVDQkbew,7330
|
@@ -2310,26 +2345,26 @@ pulumi_oci/monitoring/get_metric_data.py,sha256=AXVjUwPpiBuAr7xSTH2KnQHri9jDmAbp
|
|
2310
2345
|
pulumi_oci/monitoring/get_metrics.py,sha256=FjRie_gZDvBQtFKOvZC5qWIhmLajNumBaRX_E-BUfvM,16559
|
2311
2346
|
pulumi_oci/monitoring/outputs.py,sha256=PRtjJraw3OjXxaNrp1-asv8NheigPUhKprpRCP8oXLw,123069
|
2312
2347
|
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=
|
2348
|
+
pulumi_oci/mysql/_inputs.py,sha256=ypJtuUtmb9zLEa98E9peHLSmFfww2ivAi_PuxUMxiZA,444277
|
2349
|
+
pulumi_oci/mysql/channel.py,sha256=vZOB-BfDENBWYRPk2_c15H_APs2Il7dXYXddPx0IY0Y,31071
|
2350
|
+
pulumi_oci/mysql/get_channel.py,sha256=hBB3F9A1R47xVItm4vgfcOXJdEnmM2476BXbKHMpN5Y,12189
|
2316
2351
|
pulumi_oci/mysql/get_channels.py,sha256=T7FvJVoXAhKucISMtKbZ7tPCSvHTWaFQusFgRjvnEns,10590
|
2317
2352
|
pulumi_oci/mysql/get_heat_wave_cluster.py,sha256=1WYSeKhEbzIIV9V25DGiy3y0RauSI-iJ1wKRA6zWyow,9375
|
2318
|
-
pulumi_oci/mysql/get_mysql_backup.py,sha256=
|
2353
|
+
pulumi_oci/mysql/get_mysql_backup.py,sha256=tulou1dsRa3RRJ-we8-OLxy9z4yFE_ZnZRfe8Abj4e4,19884
|
2319
2354
|
pulumi_oci/mysql/get_mysql_backups.py,sha256=wHYn9M9vnojvY0V0Fp2WRLspcfjZ6LscGk9xIKxHw6I,10654
|
2320
|
-
pulumi_oci/mysql/get_mysql_configuration.py,sha256
|
2355
|
+
pulumi_oci/mysql/get_mysql_configuration.py,sha256=-pWR4_6KnhzNKaFt2SCDLB7Sy_-EkVWCF1h2Nr-gM78,13306
|
2321
2356
|
pulumi_oci/mysql/get_mysql_configurations.py,sha256=cc-idOpHbn18prXaysAeIu6yY2FfFy4SuCRACzCrT5E,11496
|
2322
|
-
pulumi_oci/mysql/get_mysql_db_system.py,sha256=
|
2357
|
+
pulumi_oci/mysql/get_mysql_db_system.py,sha256=udkomUkzS0_lNB0v6uNDfd_SDWCwT5tlvpb7qvHOYRs,34324
|
2323
2358
|
pulumi_oci/mysql/get_mysql_db_systems.py,sha256=wbnwmBC-0LdFNh_t4ohxyfWxMCAMl28T4_EfV5Q2cz4,14823
|
2324
2359
|
pulumi_oci/mysql/get_mysql_version.py,sha256=uHXt7hLYEoch4TD4zk_OHMgtt214rJ8teDQj5-2PTio,5662
|
2325
2360
|
pulumi_oci/mysql/get_replica.py,sha256=O1uwPdvvfwxaSnMZPZWTa-GdYuR3EdopjeUNLdGIuSY,18081
|
2326
2361
|
pulumi_oci/mysql/get_replicas.py,sha256=8BiHmL6dI5-bhpAIX_oHTAkqjmaIsyr6yAYNT49cDDo,12029
|
2327
2362
|
pulumi_oci/mysql/get_shapes.py,sha256=dHdldas7nPeRW-MjpNmJ6ZAWKnpdWq38_-CwzN6wglo,8811
|
2328
2363
|
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=
|
2364
|
+
pulumi_oci/mysql/mysql_backup.py,sha256=9e3urwRTwm8ouDJTy8qFvlVN_xgMfTKfXspByz9e5rs,48737
|
2365
|
+
pulumi_oci/mysql/mysql_configuration.py,sha256=nAWaj5FTgcluOXLoBYK9Dm1CAmrRlDrhM6yeKVr0vjM,59316
|
2366
|
+
pulumi_oci/mysql/mysql_db_system.py,sha256=vUv-QD3GzObobtTm2Tb9urwWLrf8rb01z1PbJY8PKEI,135928
|
2367
|
+
pulumi_oci/mysql/outputs.py,sha256=0cHegsQEvDW7eL7NI2Ey4rVWr1HulX-8juMzNQysM44,774991
|
2333
2368
|
pulumi_oci/mysql/replica.py,sha256=jTeRnQ0e4Q_peD6eQNJOZb8v62njF9Dy2-8ybkTVNwk,46345
|
2334
2369
|
pulumi_oci/networkfirewall/__init__.py,sha256=6CxpTGYsgQuKkTAQ2Pp9wlTkaCPf0Kz2eChNR2Naaz4,2409
|
2335
2370
|
pulumi_oci/networkfirewall/_inputs.py,sha256=Hs_V4tjuZRftdnk47LYTMqdWuaB5son9Tmmp-1elQDI,45519
|
@@ -2499,14 +2534,17 @@ pulumi_oci/opa/get_opa_instance.py,sha256=XU5-Lnne2g6NKe1yYsHyrXiwSfxBM95en3tivp
|
|
2499
2534
|
pulumi_oci/opa/get_opa_instances.py,sha256=98Vsq4o2PbfyHAmzMyTJMTJwPA5cbV2ZkHyD0NSQnqo,8148
|
2500
2535
|
pulumi_oci/opa/opa_instance.py,sha256=TRh7wo4q8jL12DtvX5wrvKNPqs2Z_Tj_zUigAdAmCkM,49498
|
2501
2536
|
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=
|
2537
|
+
pulumi_oci/opensearch/__init__.py,sha256=WXhOdtyJgAd0qdMYlg3JJCHUjYeeTWd7ZHRJGx885Nw,629
|
2538
|
+
pulumi_oci/opensearch/_inputs.py,sha256=7ZVeMkeq_K0v6Jx3XHbiRO2rnn8HBjVfTiFFhIyDf9E,19669
|
2539
|
+
pulumi_oci/opensearch/cluster.py,sha256=2KYrNtX747_bkiHntllG9nOQBj3iCiOqmgE-0SsY1BI,113870
|
2540
|
+
pulumi_oci/opensearch/get_opensearch_cluster.py,sha256=E065Bqn6zWZhnQaNzIFycVnDpJ2Lb9f6WskZlV-Sya0,39175
|
2541
|
+
pulumi_oci/opensearch/get_opensearch_cluster_pipeline.py,sha256=bbfzba3cP1apWL6N12N1Hy9i6hOeTHwaEX4ppf0TGHM,20563
|
2542
|
+
pulumi_oci/opensearch/get_opensearch_cluster_pipelines.py,sha256=zc_Aq4rx2IgQHVZVgb4KQlafx9WGEd4PcYK8xr5UfT4,10588
|
2506
2543
|
pulumi_oci/opensearch/get_opensearch_clusters.py,sha256=iXGgdBa086YPaYo69ujEgxTBtxCaGlmVJxZ2MT2F4tY,9500
|
2507
2544
|
pulumi_oci/opensearch/get_opensearch_version.py,sha256=1ztWgYO7-bsAeSB3CHZdc3tpNWaiVuiyF8VjB7Ta338,5565
|
2508
2545
|
pulumi_oci/opensearch/get_opensearch_versions.py,sha256=8uZGHlSHyMwRW4tdKrKu8eAPtoVamgt5X_oQKDLaxAg,6893
|
2509
|
-
pulumi_oci/opensearch/
|
2546
|
+
pulumi_oci/opensearch/opensearch_cluster_pipeline.py,sha256=J9rMdpXpQ6Sk0TlvZhtqoI_-lTbg2Z1Bng-CDDdPUTU,61603
|
2547
|
+
pulumi_oci/opensearch/outputs.py,sha256=lpfWgS7h2zG51Jr_1xFBIgXmOPZydNu9Q-dwcip2CgA,70057
|
2510
2548
|
pulumi_oci/operatoraccesscontrol/__init__.py,sha256=fg8VIDMKPF90lTmfaU-RlhrS2HKVnJhcaeS2eLkEYeM,736
|
2511
2549
|
pulumi_oci/operatoraccesscontrol/_inputs.py,sha256=EiqC9W9AFfWSkrlcx8SohiVMJ5l2W7iZCDpvWf6fw2g,6056
|
2512
2550
|
pulumi_oci/operatoraccesscontrol/get_access_request.py,sha256=xjtEF7kodtvN16QXEqyt9LteKdWartBruTjKBzEl32M,30362
|
@@ -2611,19 +2649,19 @@ pulumi_oci/osmanagement/managed_instance_group.py,sha256=5U3KYXkUkZQYWnliUv-1DJn
|
|
2611
2649
|
pulumi_oci/osmanagement/managed_instance_management.py,sha256=dVpudktO4Ey6XnEP9v_pPk9jUW-vpB-NE7mNvgm5tLE,33474
|
2612
2650
|
pulumi_oci/osmanagement/outputs.py,sha256=FslavfBysUYLOKQ1ITvOXl4TdgyUw4cJSM3xlJSDq3A,63123
|
2613
2651
|
pulumi_oci/osmanagement/software_source.py,sha256=eFie23IM23uyanOS04X2czQ0DcgGAweGHM2YYKx7XD0,45038
|
2614
|
-
pulumi_oci/osmanagementhub/__init__.py,sha256=
|
2615
|
-
pulumi_oci/osmanagementhub/_inputs.py,sha256=
|
2616
|
-
pulumi_oci/osmanagementhub/event.py,sha256=
|
2617
|
-
pulumi_oci/osmanagementhub/get_entitlements.py,sha256=
|
2652
|
+
pulumi_oci/osmanagementhub/__init__.py,sha256=eItEyUgUAvYvmxMc5wDyAycE5FcbfLeYTxs0eiiZzdg,5080
|
2653
|
+
pulumi_oci/osmanagementhub/_inputs.py,sha256=STv7UJmYKvqYrjwaXafaE0ZbzV1enGYwZpPROZ7ruS8,286677
|
2654
|
+
pulumi_oci/osmanagementhub/event.py,sha256=MXHycatClxAGl5rg2FgTG9H7-uyk2z12o1NcsKlg2SY,38946
|
2655
|
+
pulumi_oci/osmanagementhub/get_entitlements.py,sha256=XzlN8l9BJjWrDVNlKnXyGRe2wx5KJsRSRpFlGFCBZao,8738
|
2618
2656
|
pulumi_oci/osmanagementhub/get_errata.py,sha256=7A4iyBWBjVfUwIhzYtUQKeUGuh1JO_PuSwCIXMAB4w0,15647
|
2619
2657
|
pulumi_oci/osmanagementhub/get_erratum.py,sha256=VJjhKeQSyCLn-DWzALsTq4kotdnZu4phG_Jd2y6Oye0,13512
|
2620
|
-
pulumi_oci/osmanagementhub/get_event.py,sha256=
|
2621
|
-
pulumi_oci/osmanagementhub/get_events.py,sha256=
|
2658
|
+
pulumi_oci/osmanagementhub/get_event.py,sha256=rlwdHr-WNMo-myGjSfUari1WPHUSHvY3VgtGlQ6ANBI,15329
|
2659
|
+
pulumi_oci/osmanagementhub/get_events.py,sha256=RhPE645ly44Ey2P0aqtATMioBkxuMGcJS8JBsGVxXSY,18648
|
2622
2660
|
pulumi_oci/osmanagementhub/get_lifecycle_environment.py,sha256=mhwPfVe8T4E4IoZILFj0BsyGcHF0SvNPt6x3NJ5uPjY,14821
|
2623
2661
|
pulumi_oci/osmanagementhub/get_lifecycle_environments.py,sha256=9xF4Ztgm3HpzKRt4SThCOlL8HOV9oJRKSzIfZYOHF34,17033
|
2624
2662
|
pulumi_oci/osmanagementhub/get_lifecycle_stage.py,sha256=yiiXucZxGPm_CA_NMafyWE1ZBoxN2sqtml4eglaG0b0,15278
|
2625
2663
|
pulumi_oci/osmanagementhub/get_lifecycle_stages.py,sha256=SXsXUUSys9wyKGpJxz2UGlPuLSXDv-Gf5_ESYfzQQWU,17642
|
2626
|
-
pulumi_oci/osmanagementhub/get_managed_instance.py,sha256=
|
2664
|
+
pulumi_oci/osmanagementhub/get_managed_instance.py,sha256=2hSuivJAaXTTbb7ZCU_tnTgK-pzgc8-tbdAbyCqJx9o,32333
|
2627
2665
|
pulumi_oci/osmanagementhub/get_managed_instance_available_packages.py,sha256=lDUV8wq73RQMBqzVOLVa5JM3R9Na_ntYDe2kONHrqCs,10886
|
2628
2666
|
pulumi_oci/osmanagementhub/get_managed_instance_available_software_sources.py,sha256=XIGRMsyv6piW3mAx2hyoQLPm9-y8TQyorHZmixrqgT0,11747
|
2629
2667
|
pulumi_oci/osmanagementhub/get_managed_instance_available_windows_updates.py,sha256=DlLjfYuVEBNRgL5Ia41iEZLu8bVNJbYpJDdcnjtQ8rg,15226
|
@@ -2639,18 +2677,22 @@ pulumi_oci/osmanagementhub/get_managed_instance_installed_packages.py,sha256=qhL
|
|
2639
2677
|
pulumi_oci/osmanagementhub/get_managed_instance_installed_windows_updates.py,sha256=mnHBRF0-Y7y9wEdaY9AkKx1Rwv1Gx8SUum0SklmCvkw,12534
|
2640
2678
|
pulumi_oci/osmanagementhub/get_managed_instance_modules.py,sha256=d9S0jGbme68w7ypUWaO8ie58aikFtEoGIHR6ngHYMJk,10035
|
2641
2679
|
pulumi_oci/osmanagementhub/get_managed_instance_updatable_packages.py,sha256=Zfa_fFkcBgEI1opOALEJbvIjphNijZAxXKsuP5rBNpk,13550
|
2642
|
-
pulumi_oci/osmanagementhub/get_managed_instances.py,sha256=
|
2643
|
-
pulumi_oci/osmanagementhub/get_management_station.py,sha256=
|
2644
|
-
pulumi_oci/osmanagementhub/get_management_station_mirrors.py,sha256=
|
2645
|
-
pulumi_oci/osmanagementhub/get_management_stations.py,sha256=
|
2646
|
-
pulumi_oci/osmanagementhub/get_profile.py,sha256=
|
2647
|
-
pulumi_oci/osmanagementhub/
|
2648
|
-
pulumi_oci/osmanagementhub/
|
2680
|
+
pulumi_oci/osmanagementhub/get_managed_instances.py,sha256=iGRBLKluPtCNh8C8U71C3XZPJi1_AxCw7U9G6BsWec8,38637
|
2681
|
+
pulumi_oci/osmanagementhub/get_management_station.py,sha256=LMsK-ORDGy1X5e270ag9WHGy5RIplmD7JF-_0mkUDec,24030
|
2682
|
+
pulumi_oci/osmanagementhub/get_management_station_mirrors.py,sha256=4cTAwtyUU0tRtEyA1AF9AQtBtvg8xYHxoRxW75PXK6U,10164
|
2683
|
+
pulumi_oci/osmanagementhub/get_management_stations.py,sha256=Y0Ckln_YtYtLwiGokIpTkHfnRLwJ25hK-vgTTf2dq0E,15133
|
2684
|
+
pulumi_oci/osmanagementhub/get_profile.py,sha256=VtcP0Y-kuJYZ0z-xkAGBsBMF3EsQ5m3o5T3OfGlJ4wU,21611
|
2685
|
+
pulumi_oci/osmanagementhub/get_profile_available_software_sources.py,sha256=HUpH59Y2SlHqy17hhYOLGltj81PUyBBXRqpTqpbfYiM,11259
|
2686
|
+
pulumi_oci/osmanagementhub/get_profile_version.py,sha256=NkfBvHfRdCjOOEXQR7k6hiR46g56w72wvjkKFJ5wZQo,17894
|
2687
|
+
pulumi_oci/osmanagementhub/get_profiles.py,sha256=MZZstLywgkwCTwX7yEn2SfMM483Av9yXrP3IFFnmajU,23972
|
2688
|
+
pulumi_oci/osmanagementhub/get_scheduled_job.py,sha256=N2tV97t0KziSx2apzqslgBlZmF65_3Vz5yHhMUXNCq4,24129
|
2649
2689
|
pulumi_oci/osmanagementhub/get_scheduled_jobs.py,sha256=SmZhdJQZ5zsRnsZz-6qT3nMSjs2X4BZcvzTLlJZjNlM,27871
|
2650
|
-
pulumi_oci/osmanagementhub/get_software_package.py,sha256=
|
2651
|
-
pulumi_oci/osmanagementhub/get_software_package_software_source.py,sha256
|
2690
|
+
pulumi_oci/osmanagementhub/get_software_package.py,sha256=nUkO26aJCI5GD9MMmuydRQwJ5_l2TquSDd_it1LyT3Y,13197
|
2691
|
+
pulumi_oci/osmanagementhub/get_software_package_software_source.py,sha256=-ts413miNlcqopE0OZS3XzTy2P1QCncCncn0ZqL2WSA,20531
|
2652
2692
|
pulumi_oci/osmanagementhub/get_software_packages.py,sha256=sAysVzko1sIMNkPaVJ06KRBQcgqOB54t6O0qC4_12lw,11882
|
2653
|
-
pulumi_oci/osmanagementhub/get_software_source.py,sha256=
|
2693
|
+
pulumi_oci/osmanagementhub/get_software_source.py,sha256=M0IUpKJdVtO7CNabed7Yj7toi0bFvtbd1bYDvzBc9hs,32440
|
2694
|
+
pulumi_oci/osmanagementhub/get_software_source_available_software_packages.py,sha256=_RRdDgG1ULzFkI-_tUtEZ-YaLCjZAJpO4WsdTOeE98I,11294
|
2695
|
+
pulumi_oci/osmanagementhub/get_software_source_manifest.py,sha256=sPDdCra9PyQw-dBvETCclzG2UH_GOcP7SvFXGdXi5Vg,5276
|
2654
2696
|
pulumi_oci/osmanagementhub/get_software_source_module_stream.py,sha256=-A8s3X80sHzP5z7QF2BvPlShHd9J2afgeOON-ChbOpw,11223
|
2655
2697
|
pulumi_oci/osmanagementhub/get_software_source_module_stream_profile.py,sha256=hxJ01u5rCXxivH0Io6GLfIFRuAnpDRpJz5rMzZ8QWLc,10546
|
2656
2698
|
pulumi_oci/osmanagementhub/get_software_source_module_stream_profiles.py,sha256=S4IESt1mE87q8COMLIkyMU2y7035Oso_-mY3Y6BQ02A,10800
|
@@ -2660,14 +2702,15 @@ pulumi_oci/osmanagementhub/get_software_source_package_groups.py,sha256=GQ6vk9yb
|
|
2660
2702
|
pulumi_oci/osmanagementhub/get_software_source_software_package.py,sha256=vAeOPgwSviusNqJooaISDb1nKO4d770UknJm2IkBLOs,14798
|
2661
2703
|
pulumi_oci/osmanagementhub/get_software_source_software_packages.py,sha256=T4NoxfOVxfA5Ti0368R74fcWoEVjUG3loRVkEtXVOEU,10741
|
2662
2704
|
pulumi_oci/osmanagementhub/get_software_source_vendors.py,sha256=1ED7rDXYjHSiAvbt_ucZVvWXglp7YsJ6XXBRaxOblb4,7621
|
2663
|
-
pulumi_oci/osmanagementhub/get_software_sources.py,sha256=
|
2705
|
+
pulumi_oci/osmanagementhub/get_software_sources.py,sha256=bGohL2tksKB_zoaKgMlwEid4h18WPKQl9HG8prK1lNg,25421
|
2664
2706
|
pulumi_oci/osmanagementhub/get_windows_update.py,sha256=HcqhZbz7ZHOuZvXQwM6eK1paSeHVsrEBikGmJlzeplg,10386
|
2665
2707
|
pulumi_oci/osmanagementhub/get_windows_updates.py,sha256=xLpQ79dxElyHgaK7M5J4DtKoMmQL0Do5SX9mPts3HPM,10086
|
2666
2708
|
pulumi_oci/osmanagementhub/lifecycle_environment.py,sha256=_CySlsL8sK0RRa_10FclCx12G9gy_nLiqs8jW2qbk-k,45448
|
2667
|
-
pulumi_oci/osmanagementhub/lifecycle_stage_attach_managed_instances_management.py,sha256=
|
2668
|
-
pulumi_oci/osmanagementhub/lifecycle_stage_detach_managed_instances_management.py,sha256=
|
2709
|
+
pulumi_oci/osmanagementhub/lifecycle_stage_attach_managed_instances_management.py,sha256=2ElpwAOGWyzGLXZ15Zu30TzfiDz9QY-4n5uVqKZj4h0,12410
|
2710
|
+
pulumi_oci/osmanagementhub/lifecycle_stage_detach_managed_instances_management.py,sha256=fCa-tuFm0bf_CbHnLfepdAWYhvgvUrkkROXl4ZFDo54,12250
|
2669
2711
|
pulumi_oci/osmanagementhub/lifecycle_stage_promote_software_source_management.py,sha256=Xbvb8D75myJtvF5vKCHzEmZkFzkHV4RBCbHWiLhEajA,18065
|
2670
|
-
pulumi_oci/osmanagementhub/
|
2712
|
+
pulumi_oci/osmanagementhub/lifecycle_stage_reboot_management.py,sha256=1zg9JOdEWWYJ5lnNke1dAuRbJriWpEuBk9bnZHEsqk4,15747
|
2713
|
+
pulumi_oci/osmanagementhub/managed_instance.py,sha256=i_9Vt3Zb-vFI78b_ApAqTyoBeIuVsM9SwVQtuEsmfZ8,71294
|
2671
2714
|
pulumi_oci/osmanagementhub/managed_instance_attach_profile_management.py,sha256=ucfv2wLWRBzibJRKEoUO5N8oeW7Tm20xiDX5mq9196E,13028
|
2672
2715
|
pulumi_oci/osmanagementhub/managed_instance_detach_profile_management.py,sha256=O3KaBQY19l1E2HF05MLL2Q8h4124K3gxJxtE2xhVGfw,10357
|
2673
2716
|
pulumi_oci/osmanagementhub/managed_instance_group.py,sha256=mSNCbA1JuQovr7KVLYdgt3pxfRdnDjP8Fi2PtkHnLc0,58646
|
@@ -2675,23 +2718,36 @@ pulumi_oci/osmanagementhub/managed_instance_group_attach_managed_instances_manag
|
|
2675
2718
|
pulumi_oci/osmanagementhub/managed_instance_group_attach_software_sources_management.py,sha256=y9OwNdSfXhl_wHUDVnWwyyoxnUPz-MVZxsab2iCK5zM,17454
|
2676
2719
|
pulumi_oci/osmanagementhub/managed_instance_group_detach_managed_instances_management.py,sha256=RUTfA1rjnn6C6wuTXPX6PHWqR-FL_2rayPHlZbjJPYo,14429
|
2677
2720
|
pulumi_oci/osmanagementhub/managed_instance_group_detach_software_sources_management.py,sha256=98PPhsexmNkzoIXWOLprAgHxNWo289HTC0qEcBi4o58,17314
|
2678
|
-
pulumi_oci/osmanagementhub/managed_instance_group_install_packages_management.py,sha256=
|
2721
|
+
pulumi_oci/osmanagementhub/managed_instance_group_install_packages_management.py,sha256=xs2jNNherU4rhc8zT59FZhm4pXSKxbpxiY9eGyVqdVE,18361
|
2679
2722
|
pulumi_oci/osmanagementhub/managed_instance_group_install_windows_updates_management.py,sha256=Xyv6dckDNbEUs_3hhpZvm_w_keWOzWHYuTdZBHksshQ,16843
|
2680
2723
|
pulumi_oci/osmanagementhub/managed_instance_group_manage_module_streams_management.py,sha256=Ga5tmnL63LKHCvrVce2aOV0Q2SHlJwmGkGY7TMHd8ec,34250
|
2724
|
+
pulumi_oci/osmanagementhub/managed_instance_group_reboot_management.py,sha256=4Y0hixe6oS7xg3sts2rgfym_isK8JVgfxgUFlAonKoY,16426
|
2681
2725
|
pulumi_oci/osmanagementhub/managed_instance_group_remove_packages_management.py,sha256=CyWk4hpNkFL6HMAK0asDs9ya-zOAdLNq6LWKvzdnfH4,16032
|
2682
2726
|
pulumi_oci/osmanagementhub/managed_instance_group_update_all_packages_management.py,sha256=Q9mBmofZbxfvP4_Rg52g26ENvTnTlZ8AU9IIotbwDA8,16194
|
2683
2727
|
pulumi_oci/osmanagementhub/managed_instance_install_windows_updates_management.py,sha256=t5R6jYP0f6JyoDqK_Ab2zjydn6FKO6_Syc7sBc9wPF4,19828
|
2728
|
+
pulumi_oci/osmanagementhub/managed_instance_reboot_management.py,sha256=I0RVz9Ro2mrZ7Ku-E4vdEzvZMcbgjsD8rq0fse3X_bU,15982
|
2684
2729
|
pulumi_oci/osmanagementhub/managed_instance_update_packages_management.py,sha256=8pI07vMLBpvDi7YPea62uHxClaVPUOOsaHibdY0fWQc,17739
|
2685
|
-
pulumi_oci/osmanagementhub/management_station.py,sha256=
|
2730
|
+
pulumi_oci/osmanagementhub/management_station.py,sha256=AA0Wsf4HIfQnXcdjZ9lUNmoRrHVckUsDCSV0sJ3dTfE,64033
|
2731
|
+
pulumi_oci/osmanagementhub/management_station_associate_managed_instances_management.py,sha256=glq4UibdusnmzcErpCdY05zEUUDXHuFXggGDZnJu-A8,17312
|
2686
2732
|
pulumi_oci/osmanagementhub/management_station_mirror_synchronize_management.py,sha256=CgrS_tWoJF1fn5ZoE6a-0KM9ddbnQBGhpnYq4o3aPrg,12508
|
2687
|
-
pulumi_oci/osmanagementhub/management_station_refresh_management.py,sha256=
|
2688
|
-
pulumi_oci/osmanagementhub/management_station_synchronize_mirrors_management.py,sha256=
|
2689
|
-
pulumi_oci/osmanagementhub/outputs.py,sha256
|
2690
|
-
pulumi_oci/osmanagementhub/profile.py,sha256=
|
2691
|
-
pulumi_oci/osmanagementhub/
|
2692
|
-
pulumi_oci/osmanagementhub/
|
2693
|
-
pulumi_oci/osmanagementhub/
|
2733
|
+
pulumi_oci/osmanagementhub/management_station_refresh_management.py,sha256=out6KnRcP9JAA6SO-VPVONKJy6xeoB6kBzqMBYhZ9dA,10161
|
2734
|
+
pulumi_oci/osmanagementhub/management_station_synchronize_mirrors_management.py,sha256=PZrWsA-_55qZfawGKLuvfKJW1bYqHxsokV3BbPGzGI4,14054
|
2735
|
+
pulumi_oci/osmanagementhub/outputs.py,sha256=-JQ-l9zi7CuqVJ6HLCX0rvt9LmLQxno_mzmAKFoQwGk,657641
|
2736
|
+
pulumi_oci/osmanagementhub/profile.py,sha256=SJTeOqPmCj_q2dSvyTbZhF2-u5ABY-kCMWeg5RD8KxM,66522
|
2737
|
+
pulumi_oci/osmanagementhub/profile_attach_lifecycle_stage_management.py,sha256=MqN8FF_-2OVLADAzAmH3qpgBF0B1oy5yp_VGJz-Kqx0,12984
|
2738
|
+
pulumi_oci/osmanagementhub/profile_attach_managed_instance_group_management.py,sha256=ajoqe3HonlcLgNWWZSkHwBPxJswh1IDU-mIJ7qvqyhk,13541
|
2739
|
+
pulumi_oci/osmanagementhub/profile_attach_management_station_management.py,sha256=xbSSoqrMwaPXd_mrFcrOOdp73j8NfYC_IHE4V_WbU1g,13236
|
2740
|
+
pulumi_oci/osmanagementhub/profile_attach_software_sources_management.py,sha256=yFygnQyKJ_pk-WNIk8koN5cr8Io-4oGbZpc4Z-DEJHU,13206
|
2741
|
+
pulumi_oci/osmanagementhub/profile_detach_software_sources_management.py,sha256=X6AVUmBkDeTAf1B6ya9Lnxqa_v2hOesRWnr0z8LIy4k,13224
|
2742
|
+
pulumi_oci/osmanagementhub/scheduled_job.py,sha256=Vu2e2tc7houdxZ5nWXuaPkgFIg3jjl5j556IV3QQqzU,88767
|
2743
|
+
pulumi_oci/osmanagementhub/software_source.py,sha256=urcUG0baRFN-UrbiAx90KRL-8w8EbMdjA37LFnoAV9c,97328
|
2744
|
+
pulumi_oci/osmanagementhub/software_source_add_packages_management.py,sha256=l-agUm3PBod0bzFaGn-YPh1rVb9f6WxHoWkSPX77xyk,18429
|
2694
2745
|
pulumi_oci/osmanagementhub/software_source_change_availability_management.py,sha256=jtc8neCVxa271vcDrThZ0aviGyZSPynaXBCk94AjWAA,11423
|
2746
|
+
pulumi_oci/osmanagementhub/software_source_generate_metadata_management.py,sha256=cdwa1DuHdB3Zl3Bm8CDdo7UOkQUKn04tpR-37cuOix0,10223
|
2747
|
+
pulumi_oci/osmanagementhub/software_source_manifest.py,sha256=9p4mdKnM1GYJFSCSmpJMl00-0tKpjgY8GOWKgfN5N08,11800
|
2748
|
+
pulumi_oci/osmanagementhub/software_source_remove_packages_management.py,sha256=J07osVXaz-xWaJnzwuuWB3Tvkk3uCdkxOq7gMzfg7yM,13645
|
2749
|
+
pulumi_oci/osmanagementhub/software_source_replace_packages_management.py,sha256=MSZkCB8NSbd-8ykZR7edUWfzsYI90wDxFKHYrBStEVI,13939
|
2750
|
+
pulumi_oci/osmanagementhub/work_request_rerun_management.py,sha256=0SirHZyA-xwoaEXFyEJmef_WpGPi2EaUhKqkEQd3Oww,17046
|
2695
2751
|
pulumi_oci/ospgateway/__init__.py,sha256=_1egZYO1h80MOxzPAj4FddwH5MUCu-Svp9r8QrDHU34,647
|
2696
2752
|
pulumi_oci/ospgateway/_inputs.py,sha256=4IeHcYyIHVSOXmjg3yCS8BV1OE0AmkBft7lwXM9n_KM,113450
|
2697
2753
|
pulumi_oci/ospgateway/address_action_verification.py,sha256=teK1W4JxtKvc4QKWVLHh-NOeXxeQdopGsoOmceu3XX0,65816
|
@@ -2727,22 +2783,22 @@ pulumi_oci/osubusage/get_computed_usage.py,sha256=I9cvmnwfK_y66Xb6J8Evm7vjPjlQat
|
|
2727
2783
|
pulumi_oci/osubusage/get_computed_usages.py,sha256=n-yaR5_QrtgPVl1L6NRDsSmxMbHJHoRVQFHuM6gthYA,11634
|
2728
2784
|
pulumi_oci/osubusage/outputs.py,sha256=b0BicdDMUgAaCwxn1gVkljAdezDCeEqVYmv35oFiKo4,37995
|
2729
2785
|
pulumi_oci/psql/__init__.py,sha256=Ze9Vw0SqWLlOMonve0kvQypQH1rN57OusxmHbnPZ2nk,774
|
2730
|
-
pulumi_oci/psql/_inputs.py,sha256=
|
2731
|
-
pulumi_oci/psql/backup.py,sha256=
|
2786
|
+
pulumi_oci/psql/_inputs.py,sha256=PBLNo2JL3lkUYWg5eH07in06rNMyEBjJ_YHG6ngR0Z0,71990
|
2787
|
+
pulumi_oci/psql/backup.py,sha256=Q6VywHT8XtA0m0SHpHtTRssqxa0KXF3UKcYQK6-PzeY,45131
|
2732
2788
|
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=
|
2789
|
+
pulumi_oci/psql/db_system.py,sha256=z4ZQ-hV6WHX3lGmm6uMqwg_iQdml1k2UO6NHCOrdi80,78933
|
2790
|
+
pulumi_oci/psql/get_backup.py,sha256=6LBsA2_BA674HkNfv7KcufhLG81ba8wOt5pqYhnE0_8,17834
|
2791
|
+
pulumi_oci/psql/get_backups.py,sha256=Mog8NZnN8-B-x6FptjRY69jRbEcxzDDfy5TpNFgXo4U,11242
|
2736
2792
|
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=
|
2793
|
+
pulumi_oci/psql/get_configurations.py,sha256=Vc6RmaSNN7DTTvyzaVFN8ETnVNKaT1Su1XnRs1wkRGE,12396
|
2794
|
+
pulumi_oci/psql/get_db_system.py,sha256=C3b2c2lOPS7iCMIbLddXFLMJy578_I6dliOF4HdBTI4,22453
|
2739
2795
|
pulumi_oci/psql/get_db_system_connection_detail.py,sha256=pxsjQleDKDTclQYBuNg2LOzh-A1fJSQdfqMloTJQ2Ew,7421
|
2740
2796
|
pulumi_oci/psql/get_db_system_primary_db_instance.py,sha256=-PVgBgRy3B-xZy9eFieZpLKDEL3zulB1Q-36R9DCVjE,5009
|
2741
|
-
pulumi_oci/psql/get_db_systems.py,sha256=
|
2797
|
+
pulumi_oci/psql/get_db_systems.py,sha256=oYijyscxAUn7hUlvYSk723VawqDM_van-_S_3-7WMZI,8120
|
2742
2798
|
pulumi_oci/psql/get_default_configuration.py,sha256=gQcjKrEvSs2hKRwxw8ovD8RWNGaq9sYefXKr8ovKRxw,11672
|
2743
2799
|
pulumi_oci/psql/get_default_configurations.py,sha256=na7EN0USkboIz2FJffQsmlTFcMhnVUnr8KoDVGDsEHc,10504
|
2744
2800
|
pulumi_oci/psql/get_shapes.py,sha256=0mYv3eWrDY6HxvKSfJrFHpOmY4D98YUTcFioIwT899A,5678
|
2745
|
-
pulumi_oci/psql/outputs.py,sha256=
|
2801
|
+
pulumi_oci/psql/outputs.py,sha256=yLinOvy6pjhhimSOf8p1D3DOF4A0c4WZrkehqZ1XHCs,177579
|
2746
2802
|
pulumi_oci/queue/__init__.py,sha256=jwKK25ETwcG0tqoblRZJX6MN7BKulcDaUyL3ql98tf4,386
|
2747
2803
|
pulumi_oci/queue/_inputs.py,sha256=Y309IljzLWnr4k7SVGurLHOsEOeQvVSI2B2gedww6P4,1811
|
2748
2804
|
pulumi_oci/queue/get_queue.py,sha256=i6bjmxEmDfDd4vBGdg2jmC_f-nPZznEpYpHycbVqn7E,16586
|
@@ -2768,7 +2824,7 @@ pulumi_oci/redis/get_redis_cluster.py,sha256=_uZjFKIIYQfXTJ4pR8LYtmfPUd3Yh-fSfSV
|
|
2768
2824
|
pulumi_oci/redis/get_redis_cluster_nodes.py,sha256=9GxcVV2IT8Bnr1sjqPd3sP_e0OYvmWaEoPm8kd6iVos,7238
|
2769
2825
|
pulumi_oci/redis/get_redis_clusters.py,sha256=pYcqFky26SzgFUbXARqL1nmCYIX7SZ7CfbFJ2ipFlmk,8962
|
2770
2826
|
pulumi_oci/redis/outputs.py,sha256=-43ujsYj_HbOP5Ipe7thjIvNzFbu6Ji0UPtBNaAliSI,26288
|
2771
|
-
pulumi_oci/redis/redis_cluster.py,sha256=
|
2827
|
+
pulumi_oci/redis/redis_cluster.py,sha256=xehz3iMRLEVeen8tU0b-UE3cihaICipV3dwdVOqbevY,52990
|
2772
2828
|
pulumi_oci/resourcemanager/__init__.py,sha256=2G2BH5kW2MtOJKFnTb6Oytp5JQCS7n_E3uSubLhEQqk,553
|
2773
2829
|
pulumi_oci/resourcemanager/_inputs.py,sha256=qAoUwX0F0Xr5tBRs14kDQNXrx8vedRobcbtZQ0ZIo1A,3124
|
2774
2830
|
pulumi_oci/resourcemanager/get_private_endpoint.py,sha256=EdiP_03y8xFfayGEkGmIoU_TCP5_Dj8K6foRp37KI6o,13729
|
@@ -3050,7 +3106,7 @@ pulumi_oci/zpr/get_zpr_policies.py,sha256=xRhJl8bBol1fMs5EXtqBuTMajSv3v0tm1A0a0B
|
|
3050
3106
|
pulumi_oci/zpr/get_zpr_policy.py,sha256=Zx42tYwAMM6gOiNIREiyxZyMA5Gy1aAMsFHAR-zf8bg,11465
|
3051
3107
|
pulumi_oci/zpr/outputs.py,sha256=bLQC7_On52bzTOlKVC9oF2CSxcSo7CiwTmOkBNy7MD4,8943
|
3052
3108
|
pulumi_oci/zpr/zpr_policy.py,sha256=kRQiN_Fg_m8N1oVD93ktqQhhXv8z8y08nBKuypB_t3k,32563
|
3053
|
-
pulumi_oci-2.
|
3054
|
-
pulumi_oci-2.
|
3055
|
-
pulumi_oci-2.
|
3056
|
-
pulumi_oci-2.
|
3109
|
+
pulumi_oci-2.27.0.dist-info/METADATA,sha256=RBpAiPHmVAH612dXbq93q6ETgF--d8E_T_-fuPD9vp4,4043
|
3110
|
+
pulumi_oci-2.27.0.dist-info/WHEEL,sha256=tTnHoFhvKQHCh4jz3yCn0WPTYIy7wXx3CJtJ7SJGV7c,91
|
3111
|
+
pulumi_oci-2.27.0.dist-info/top_level.txt,sha256=0k-nWr_IdDNVF3qcT4ALORmmu1SNCLxWZfHDMN7TWsg,11
|
3112
|
+
pulumi_oci-2.27.0.dist-info/RECORD,,
|