pulumi-oci 2.12.0a1728593306__py3-none-any.whl → 2.12.0a1728642710__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 +145 -0
- pulumi_oci/analytics/analytics_instance.py +54 -5
- pulumi_oci/analytics/get_analytics_instance.py +18 -4
- pulumi_oci/analytics/outputs.py +12 -1
- pulumi_oci/core/_inputs.py +648 -159
- pulumi_oci/core/cluster_network.py +7 -7
- pulumi_oci/core/get_instance.py +29 -1
- pulumi_oci/core/get_vcn.py +15 -1
- pulumi_oci/core/get_vnic.py +15 -1
- pulumi_oci/core/instance.py +87 -0
- pulumi_oci/core/instance_configuration.py +12 -0
- pulumi_oci/core/ipsec.py +183 -23
- pulumi_oci/core/network_security_group_security_rule.py +2 -2
- pulumi_oci/core/outputs.py +709 -107
- pulumi_oci/core/service_gateway.py +13 -7
- pulumi_oci/core/vcn.py +65 -23
- pulumi_oci/core/virtual_network.py +35 -1
- pulumi_oci/core/vnic_attachment.py +2 -0
- pulumi_oci/database/_inputs.py +905 -27
- pulumi_oci/database/autonomous_database.py +48 -28
- pulumi_oci/database/autonomous_database_backup.py +12 -12
- pulumi_oci/database/autonomous_exadata_infrastructure.py +2 -0
- pulumi_oci/database/autonomous_vm_cluster.py +2 -0
- pulumi_oci/database/backup.py +12 -12
- pulumi_oci/database/cloud_autonomous_vm_cluster.py +2 -0
- pulumi_oci/database/cloud_exadata_infrastructure.py +2 -0
- pulumi_oci/database/cloud_vm_cluster.py +71 -0
- pulumi_oci/database/database.py +15 -15
- pulumi_oci/database/database_upgrade.py +12 -12
- pulumi_oci/database/db_system.py +9 -9
- pulumi_oci/database/exadata_infrastructure.py +2 -0
- pulumi_oci/database/get_autonomous_container_database.py +1 -1
- pulumi_oci/database/get_autonomous_database.py +18 -4
- pulumi_oci/database/get_autonomous_database_backup.py +3 -3
- pulumi_oci/database/get_autonomous_databases.py +88 -5
- pulumi_oci/database/get_cloud_vm_cluster.py +15 -1
- pulumi_oci/database/get_database.py +3 -3
- pulumi_oci/database/get_pluggable_database.py +12 -1
- pulumi_oci/database/get_vm_cluster.py +15 -1
- pulumi_oci/database/outputs.py +1431 -74
- pulumi_oci/database/pluggable_database.py +34 -0
- pulumi_oci/database/vm_cluster.py +71 -0
- pulumi_oci/database/vm_cluster_add_virtual_network.py +28 -0
- pulumi_oci/database/vm_cluster_remove_virtual_machine.py +28 -0
- pulumi_oci/datasafe/__init__.py +12 -0
- pulumi_oci/datasafe/_inputs.py +441 -0
- pulumi_oci/datasafe/get_reports.py +23 -1
- pulumi_oci/datasafe/get_sql_collection.py +392 -0
- pulumi_oci/datasafe/get_sql_collection_analytics.py +309 -0
- pulumi_oci/datasafe/get_sql_collection_log_insights.py +207 -0
- pulumi_oci/datasafe/get_sql_collections.py +364 -0
- pulumi_oci/datasafe/get_sql_firewall_allowed_sql.py +337 -0
- pulumi_oci/datasafe/get_sql_firewall_allowed_sql_analytics.py +250 -0
- pulumi_oci/datasafe/get_sql_firewall_allowed_sqls.py +234 -0
- pulumi_oci/datasafe/get_sql_firewall_policies.py +386 -0
- pulumi_oci/datasafe/get_sql_firewall_policy.py +393 -0
- pulumi_oci/datasafe/get_sql_firewall_policy_analytics.py +305 -0
- pulumi_oci/datasafe/get_sql_firewall_violation_analytics.py +306 -0
- pulumi_oci/datasafe/get_sql_firewall_violations.py +208 -0
- pulumi_oci/datasafe/outputs.py +1808 -2
- pulumi_oci/desktops/_inputs.py +223 -7
- pulumi_oci/desktops/desktop_pool.py +186 -21
- pulumi_oci/desktops/get_desktop_pool.py +47 -5
- pulumi_oci/desktops/outputs.py +480 -19
- pulumi_oci/fleetappsmanagement/__init__.py +43 -0
- pulumi_oci/fleetappsmanagement/_inputs.py +2057 -0
- pulumi_oci/fleetappsmanagement/fleet.py +955 -0
- pulumi_oci/fleetappsmanagement/fleet_credential.py +615 -0
- pulumi_oci/fleetappsmanagement/fleet_property.py +585 -0
- pulumi_oci/fleetappsmanagement/fleet_resource.py +851 -0
- pulumi_oci/fleetappsmanagement/get_announcements.py +166 -0
- pulumi_oci/fleetappsmanagement/get_fleet.py +394 -0
- pulumi_oci/fleetappsmanagement/get_fleet_compliance_report.py +164 -0
- pulumi_oci/fleetappsmanagement/get_fleet_credential.py +273 -0
- pulumi_oci/fleetappsmanagement/get_fleet_credentials.py +240 -0
- pulumi_oci/fleetappsmanagement/get_fleet_products.py +232 -0
- pulumi_oci/fleetappsmanagement/get_fleet_properties.py +218 -0
- pulumi_oci/fleetappsmanagement/get_fleet_property.py +286 -0
- pulumi_oci/fleetappsmanagement/get_fleet_resource.py +398 -0
- pulumi_oci/fleetappsmanagement/get_fleet_resources.py +237 -0
- pulumi_oci/fleetappsmanagement/get_fleet_targets.py +232 -0
- pulumi_oci/fleetappsmanagement/get_fleets.py +284 -0
- pulumi_oci/fleetappsmanagement/get_inventory_resources.py +311 -0
- pulumi_oci/fleetappsmanagement/get_maintenance_window.py +365 -0
- pulumi_oci/fleetappsmanagement/get_maintenance_windows.py +199 -0
- pulumi_oci/fleetappsmanagement/get_onboarding_policies.py +123 -0
- pulumi_oci/fleetappsmanagement/get_onboardings.py +177 -0
- pulumi_oci/fleetappsmanagement/get_properties.py +221 -0
- pulumi_oci/fleetappsmanagement/get_property.py +323 -0
- pulumi_oci/fleetappsmanagement/get_runbook.py +377 -0
- pulumi_oci/fleetappsmanagement/get_runbooks.py +284 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definition.py +436 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definition_scheduled_fleets.py +185 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definitions.py +262 -0
- pulumi_oci/fleetappsmanagement/get_task_record.py +307 -0
- pulumi_oci/fleetappsmanagement/get_task_records.py +240 -0
- pulumi_oci/fleetappsmanagement/maintenance_window.py +935 -0
- pulumi_oci/fleetappsmanagement/onboarding.py +477 -0
- pulumi_oci/fleetappsmanagement/outputs.py +8128 -0
- pulumi_oci/fleetappsmanagement/property.py +697 -0
- pulumi_oci/fleetappsmanagement/scheduler_definition.py +1035 -0
- pulumi_oci/functions/get_fusion_environment_refresh_activity.py +15 -1
- pulumi_oci/functions/outputs.py +11 -0
- pulumi_oci/fusionapps/_inputs.py +21 -20
- pulumi_oci/fusionapps/fusion_environment.py +2 -2
- pulumi_oci/fusionapps/fusion_environment_admin_user.py +21 -22
- pulumi_oci/fusionapps/fusion_environment_refresh_activity.py +48 -51
- pulumi_oci/fusionapps/outputs.py +11 -10
- pulumi_oci/integration/__init__.py +1 -0
- pulumi_oci/integration/_inputs.py +289 -2
- pulumi_oci/integration/get_integration_instance.py +65 -1
- pulumi_oci/integration/integration_instance.py +172 -0
- pulumi_oci/integration/oracle_managed_custom_endpoint.py +307 -0
- pulumi_oci/integration/outputs.py +587 -19
- pulumi_oci/loadbalancer/_inputs.py +20 -0
- pulumi_oci/loadbalancer/listener.py +4 -2
- pulumi_oci/loadbalancer/outputs.py +16 -2
- pulumi_oci/monitoring/_inputs.py +137 -16
- pulumi_oci/monitoring/alarm_suppression.py +164 -35
- pulumi_oci/monitoring/get_alarm_statuses.py +5 -3
- pulumi_oci/monitoring/get_alarm_suppression.py +33 -3
- pulumi_oci/monitoring/get_alarm_suppressions.py +137 -14
- pulumi_oci/monitoring/outputs.py +291 -18
- pulumi_oci/mysql/mysql_db_system.py +7 -7
- pulumi_oci/objectstorage/__init__.py +3 -0
- pulumi_oci/objectstorage/_inputs.py +97 -0
- pulumi_oci/objectstorage/get_object_versions.py +6 -6
- pulumi_oci/objectstorage/get_objects.py +6 -6
- pulumi_oci/objectstorage/get_private_endpoint.py +263 -0
- pulumi_oci/objectstorage/get_private_endpoint_summaries.py +128 -0
- pulumi_oci/objectstorage/outputs.py +258 -0
- pulumi_oci/objectstorage/private_endpoint.py +630 -0
- pulumi_oci/objectstorage/storage_object.py +7 -7
- pulumi_oci/opsi/_inputs.py +268 -114
- pulumi_oci/opsi/database_insight.py +162 -21
- pulumi_oci/opsi/exadata_insight.py +44 -0
- pulumi_oci/opsi/get_database_insight.py +40 -1
- pulumi_oci/opsi/get_host_insights.py +2 -2
- pulumi_oci/opsi/host_insight.py +0 -48
- pulumi_oci/opsi/outputs.py +405 -109
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/securityattribute/__init__.py +15 -0
- pulumi_oci/securityattribute/_inputs.py +209 -0
- pulumi_oci/securityattribute/get_security_attribute.py +262 -0
- pulumi_oci/securityattribute/get_security_attribute_namespace.py +253 -0
- pulumi_oci/securityattribute/get_security_attribute_namespaces.py +210 -0
- pulumi_oci/securityattribute/get_security_attributes.py +169 -0
- pulumi_oci/securityattribute/outputs.py +466 -0
- pulumi_oci/securityattribute/security_attribute.py +588 -0
- pulumi_oci/securityattribute/security_attribute_namespace.py +609 -0
- pulumi_oci/stackmonitoring/__init__.py +5 -0
- pulumi_oci/stackmonitoring/_inputs.py +330 -0
- pulumi_oci/stackmonitoring/get_maintenance_window.py +254 -0
- pulumi_oci/stackmonitoring/get_maintenance_windows.py +210 -0
- pulumi_oci/stackmonitoring/maintenance_window.py +551 -0
- pulumi_oci/stackmonitoring/maintenance_windows_retry_failed_operation.py +217 -0
- pulumi_oci/stackmonitoring/maintenance_windows_stop.py +217 -0
- pulumi_oci/stackmonitoring/outputs.py +603 -0
- pulumi_oci/zpr/__init__.py +14 -0
- pulumi_oci/zpr/_inputs.py +79 -0
- pulumi_oci/zpr/configuration.py +516 -0
- pulumi_oci/zpr/get_configuration.py +230 -0
- pulumi_oci/zpr/get_zpr_policies.py +191 -0
- pulumi_oci/zpr/get_zpr_policy.py +264 -0
- pulumi_oci/zpr/outputs.py +203 -0
- pulumi_oci/zpr/zpr_policy.py +614 -0
- {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/METADATA +1 -1
- {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/RECORD +170 -95
- {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/top_level.txt +0 -0
@@ -1,7 +1,7 @@
|
|
1
|
-
pulumi_oci/__init__.py,sha256=
|
1
|
+
pulumi_oci/__init__.py,sha256=xa0CSJJspArYNplt05uNwfZPGmrUusE6mGRLLxHTpmE,170247
|
2
2
|
pulumi_oci/_utilities.py,sha256=-gxwnD6__OYdSf8jJgJijNuu-UHUwi5pJ1H7-eIHDhg,10504
|
3
3
|
pulumi_oci/provider.py,sha256=L04-4ahVUIjPUidGY7-4m7y0-gX_oHcgpIJSRYRJET4,24096
|
4
|
-
pulumi_oci/pulumi-plugin.json,sha256=
|
4
|
+
pulumi_oci/pulumi-plugin.json,sha256=H3ANjzBBUi6v4X30TaZmFdA-p69r6-vTuhmMjDAETWc,80
|
5
5
|
pulumi_oci/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
6
6
|
pulumi_oci/adm/__init__.py,sha256=pxPlS_-eNzVJqBq2i1MCMmmLGhFhW-ATfiH6YEb71xI,1049
|
7
7
|
pulumi_oci/adm/_inputs.py,sha256=YnlFWcwYsWjjrUbroAeHpnljrt9mAPqMtutbJnKVRCk,69792
|
@@ -77,13 +77,13 @@ pulumi_oci/aivision/outputs.py,sha256=rYH1b6w3CNbsS8-wCWcBXKCpVZfbJ9Cb4N-sOQbbQu
|
|
77
77
|
pulumi_oci/aivision/project.py,sha256=5Smf6X7v1eXOPnug0v9kcDchELyGIfr4bsL55gSa0Ho,25475
|
78
78
|
pulumi_oci/analytics/__init__.py,sha256=PX8rZZIsH04dn_SaouFgIJ9aVoNHlH6BS3DyDB8SYco,588
|
79
79
|
pulumi_oci/analytics/_inputs.py,sha256=-jQ2kw9YH1EfBQWUKFwNZQjsV7ANlAqil5YeDLZ21Ko,18514
|
80
|
-
pulumi_oci/analytics/analytics_instance.py,sha256=
|
80
|
+
pulumi_oci/analytics/analytics_instance.py,sha256=FqkXfQCMAaecxAewPZjWx-2xaHBPZu-FHuLoeVvdrdc,57612
|
81
81
|
pulumi_oci/analytics/analytics_instance_private_access_channel.py,sha256=lyqyp5lLHSxJcau847o_DKVtOVGDn69yYpTfWouxGlg,35661
|
82
82
|
pulumi_oci/analytics/analytics_instance_vanity_url.py,sha256=0OHnYJp20_0R7jQ2CxNkKl4wtJJ-_F5GwsjGmVMJn9g,23663
|
83
|
-
pulumi_oci/analytics/get_analytics_instance.py,sha256=
|
83
|
+
pulumi_oci/analytics/get_analytics_instance.py,sha256=sshRrtFS7BFBuH9VLYliCKgYWDIsjNOqcYVsDq24EU8,17643
|
84
84
|
pulumi_oci/analytics/get_analytics_instance_private_access_channel.py,sha256=i5wAKG3fJvZgzlY8apS5476uN9_lZhMfX1eh-kjpAt8,12933
|
85
85
|
pulumi_oci/analytics/get_analytics_instances.py,sha256=l0B4ODcEDjIOTcj-knwJbaBj870TuWHcr34I5uq7SP8,10175
|
86
|
-
pulumi_oci/analytics/outputs.py,sha256=
|
86
|
+
pulumi_oci/analytics/outputs.py,sha256=cBoUTJXIFITlVPxHt0TeSYkSAHuUKM5hdFrDdUPRU28,39834
|
87
87
|
pulumi_oci/announcementsservice/__init__.py,sha256=biav1K_Z05PrxMJR-69fyVM-2ER6T85aPlbEi5UikLo,598
|
88
88
|
pulumi_oci/announcementsservice/_inputs.py,sha256=YNFKsXgCXQj5cI56FnvTIeRyBfTXjB16_0-UGZ4FoY4,10557
|
89
89
|
pulumi_oci/announcementsservice/announcement_subscription.py,sha256=ub6kBBG_rfNFlMd4te79fdU9hMDMOt8DoIRIYYyFZUI,47570
|
@@ -446,13 +446,13 @@ pulumi_oci/containerinstances/get_container_instance_shapes.py,sha256=L34MKfTVRx
|
|
446
446
|
pulumi_oci/containerinstances/get_container_instances.py,sha256=ja0-ZJhRJjU1ll2twzFw28qv26_Nag_5Mv8Qh-1c_CI,9795
|
447
447
|
pulumi_oci/containerinstances/outputs.py,sha256=OuSGULqIZLd5f1STmJeYEgdh19-ZzC5nHOfpIA_q41o,99616
|
448
448
|
pulumi_oci/core/__init__.py,sha256=f2OKqOZoaPWB24-hh_jmUg0raWU7jen5zWyglJJIb1o,8726
|
449
|
-
pulumi_oci/core/_inputs.py,sha256=
|
449
|
+
pulumi_oci/core/_inputs.py,sha256=6R1O9LzP5Pumale_qHB_QYNzkGkVVj1uMHoeTnFxJaI,1187253
|
450
450
|
pulumi_oci/core/app_catalog_listing_resource_version_agreement.py,sha256=w0xmbvF3ZVEoTyxj-v86bDLlY7tVNxDCW7l1xl9TnrY,14622
|
451
451
|
pulumi_oci/core/app_catalog_subscription.py,sha256=0VyKID-oO2-Ko6sntOgA9Iof9g8xh8LYic1VflGYzM0,29260
|
452
452
|
pulumi_oci/core/boot_volume.py,sha256=0T-B_-M6qF-6pDVYRzAKxck2ID8AWTx4ptNqld868dA,65402
|
453
453
|
pulumi_oci/core/boot_volume_backup.py,sha256=g30NOU8Ys_ecJeUvAldR2lSjze1Hs3VJyB0G-IWb5F8,46913
|
454
454
|
pulumi_oci/core/capture_filter.py,sha256=ZJyuX7HfgFW-Ff4AH2wfaiqZLIPHp08PzeA2ziQauCM,41556
|
455
|
-
pulumi_oci/core/cluster_network.py,sha256=
|
455
|
+
pulumi_oci/core/cluster_network.py,sha256=6m3u6zyfF29zdBbqVDTlxnFXKAMiW-s3SYHXDoO5Szo,45503
|
456
456
|
pulumi_oci/core/compute_capacity_report.py,sha256=W491LXEhLyJRDYVZnEazve7Z0DOHAJt4TYF1LoNBw4g,17992
|
457
457
|
pulumi_oci/core/compute_capacity_reservation.py,sha256=U8YeH1GbN2IbG7LJtXifUSqFSpGiqWTkb-DDgr2zPDA,44462
|
458
458
|
pulumi_oci/core/compute_capacity_topology.py,sha256=BIA9893sTYtmIuIM7ZipZBdqFL4uD_cfMZ88l07REQw,31937
|
@@ -548,7 +548,7 @@ pulumi_oci/core/get_image.py,sha256=53Fu6VFf5tITHVPd9XZm9q-ET8AC9fjnS_YY827Jy9g,
|
|
548
548
|
pulumi_oci/core/get_image_shape.py,sha256=SOaH7WT0pwY60SQWEBZaf7Hya1r8OunVLY8-YNSEQiY,6803
|
549
549
|
pulumi_oci/core/get_image_shapes.py,sha256=UuhDcsBAO-yj7-Wt-zI78mSeF_puvSGZIp-la6mX914,5740
|
550
550
|
pulumi_oci/core/get_images.py,sha256=EAQXARGWR5BUqqp7_dw54affFplEHEcpGUVgxwf_uPA,14337
|
551
|
-
pulumi_oci/core/get_instance.py,sha256=
|
551
|
+
pulumi_oci/core/get_instance.py,sha256=WeNEfAnOSxhhG6e6tvNBbrZe5lDiv8NHhk0IIdECjzc,38261
|
552
552
|
pulumi_oci/core/get_instance_configuration.py,sha256=XprVJjfwQk7pJ3395dUJNu_i-FcuGTIYpcVEbYLGgNM,10719
|
553
553
|
pulumi_oci/core/get_instance_configurations.py,sha256=WudUeYz2FXglGvep4mwn533Y6lhLeG2XZ2wbaV4vMAw,6223
|
554
554
|
pulumi_oci/core/get_instance_console_connections.py,sha256=CZ2PoNajKsAx9t7x9mZA8scDUCO9cDKDUz3SauL3QN8,7969
|
@@ -604,7 +604,7 @@ pulumi_oci/core/get_shapes.py,sha256=VnpuaqR_Z9OU-YZAAmujctRS2GkPrx4w0kuVKlL2H-4
|
|
604
604
|
pulumi_oci/core/get_subnet.py,sha256=rJ_bfNyjyH821oLtsuUhNkZdDRXTNP-ilU6zcRCO6fo,19836
|
605
605
|
pulumi_oci/core/get_subnets.py,sha256=2inMIUzDbPmuuPDgM5mqPiC7risJWaxP-8zEtvR_CgE,8923
|
606
606
|
pulumi_oci/core/get_tunnel_security_associations.py,sha256=C7sf1_AkXEx0cKCE7Ab4lYx63E9mA8nkAhwmjC_KuMg,7329
|
607
|
-
pulumi_oci/core/get_vcn.py,sha256=
|
607
|
+
pulumi_oci/core/get_vcn.py,sha256=UQdV2AmtmXwWO7YGEZ8u49lmr5CRBwD22pwzUrtStDM,18427
|
608
608
|
pulumi_oci/core/get_vcns.py,sha256=0f6nMm5Rc4mgAXkYDjn_V_ydarNKAuVGjlUpRqD48Gg,7762
|
609
609
|
pulumi_oci/core/get_virtual_circuit.py,sha256=pNZCZkagYvWi54apSxCdnrGsNfPKMpngd8oOacXkajs,25571
|
610
610
|
pulumi_oci/core/get_virtual_circuit_associated_tunnels.py,sha256=S7Fsb2kYwcsiezBE3Mc-uRnfXPpFuLA0DF2GwrjbZW0,6917
|
@@ -614,7 +614,7 @@ pulumi_oci/core/get_virtual_circuits.py,sha256=mbPX8EaL_KVy2yH3IJcmGKixagXE5y7SU
|
|
614
614
|
pulumi_oci/core/get_virtual_networks.py,sha256=rmhFqqxEgkqPi6lXzx-EFBWDXOPh41-FTHxMiD-QIWc,6231
|
615
615
|
pulumi_oci/core/get_vlan.py,sha256=hImcsCYVv2FKcwi9p2iFbqPjG8RrZu-ZOWxNs3ArFag,11943
|
616
616
|
pulumi_oci/core/get_vlans.py,sha256=raYSrH58iCyYDKBw1JMNtWMObQ0encO1n-kUYURq1kU,8559
|
617
|
-
pulumi_oci/core/get_vnic.py,sha256=
|
617
|
+
pulumi_oci/core/get_vnic.py,sha256=JyZYl3CyYPhF7g2hScy1DHgqBg8JmYQBu8FMO587UHw,17452
|
618
618
|
pulumi_oci/core/get_vnic_attachments.py,sha256=qnt6o5lOjIer9gG84nieXFpr8YlZVGLOnlJtr__1y_8,9448
|
619
619
|
pulumi_oci/core/get_volume.py,sha256=hqPLROBYFmyKPpXguav-j5LN3W7xlCI9lM3temG_SnA,19843
|
620
620
|
pulumi_oci/core/get_volume_attachments.py,sha256=zqxpCkTUuWaC8Es8cBJ8mgcy62Eo912sZ6lV5PMts4w,9991
|
@@ -629,22 +629,22 @@ pulumi_oci/core/get_volumes.py,sha256=DU018vPWZ3WIwyJ4HvI7A48t8-hbyI_d9KC29X12OA
|
|
629
629
|
pulumi_oci/core/get_vtap.py,sha256=Pcu2_poWXROR-Fntgupmf4mOhOTrL8353Pack915Q6w,18538
|
630
630
|
pulumi_oci/core/get_vtaps.py,sha256=zRcMChna6V9FNaYo0F-A4dyiW1Ly4UHFw_j1PqWjy5M,13370
|
631
631
|
pulumi_oci/core/image.py,sha256=fKQlZiOShTBJ29A2t0kec7APEuBfG3pyXwLLqHDRxfQ,53758
|
632
|
-
pulumi_oci/core/instance.py,sha256=
|
633
|
-
pulumi_oci/core/instance_configuration.py,sha256=
|
632
|
+
pulumi_oci/core/instance.py,sha256=kXXTEWh2ORsKAK18nHL6zQWJx9Mqw9cD9OG3Cn7VFoU,184685
|
633
|
+
pulumi_oci/core/instance_configuration.py,sha256=nLVQrjTpwkr0_vNCWj_M9eEL8BC34994iNOx5Sh-BMU,110918
|
634
634
|
pulumi_oci/core/instance_console_connection.py,sha256=Yj8LeeXlLJMnk6dWRuqYHv0vg3wHjDpxyr_D8bLMU6A,27969
|
635
635
|
pulumi_oci/core/instance_maintenance_event.py,sha256=jIyiIaO3oR1zca8pOgMFoq_7eTm_uNBQWQgofO1opWw,57966
|
636
636
|
pulumi_oci/core/instance_pool.py,sha256=QEna29CjnXg0f9eBCL-qheBpOwxiQx9V2E2Wu7_CCCg,54817
|
637
637
|
pulumi_oci/core/instance_pool_instance.py,sha256=sB-MYTFkLQa9Huc_YyyLIERLU2J2NJE313TZr_jhIM4,31204
|
638
638
|
pulumi_oci/core/internet_gateway.py,sha256=Dt-xUdfD86ZTan2wyO0_AQzjOVs3IZkGlspTwbSd968,33809
|
639
|
-
pulumi_oci/core/ipsec.py,sha256=
|
639
|
+
pulumi_oci/core/ipsec.py,sha256=mXCkTr77K7w1a2_Chxy4Qc30E53J3XPqcrZhboHwSSI,60695
|
640
640
|
pulumi_oci/core/ipsec_connection_tunnel_management.py,sha256=tIg4f8oJJ5jacY94e8NZS1qJVHvzwD7oPB2yd4Iosz8,69380
|
641
641
|
pulumi_oci/core/ipv6.py,sha256=vEcWJWESALiSI1SzYypeQeuEhPCoLbgwN9D7HmOp6GA,31540
|
642
642
|
pulumi_oci/core/listing_resource_version_agreement.py,sha256=mhkpSnlOVgDZ336R-0Ib1Wl8_ij2jm-rpVweYaBsunQ,14422
|
643
643
|
pulumi_oci/core/local_peering_gateway.py,sha256=p1V8uNamUxJa-UpKG4TzBGudP8NNB77ljNIxpCl5j30,47051
|
644
644
|
pulumi_oci/core/nat_gateway.py,sha256=_I0Ls2WSv32m2-8_S9WYFjGvpt4biSLNvlY-fXMryDc,36333
|
645
645
|
pulumi_oci/core/network_security_group.py,sha256=GAbG1upv4B7ytveFpHLmy1w_N8dQFCaq_05OtFrxIyw,25742
|
646
|
-
pulumi_oci/core/network_security_group_security_rule.py,sha256=
|
647
|
-
pulumi_oci/core/outputs.py,sha256=
|
646
|
+
pulumi_oci/core/network_security_group_security_rule.py,sha256=h8JYABPvXFPfgCMRghsV0Is2KAYOxJS6x6uDeMmb0_8,54348
|
647
|
+
pulumi_oci/core/outputs.py,sha256=NE5o7OVlC2U7JG3s3eTxFfUqG8afZ85b0DKgG5deo7g,2446217
|
648
648
|
pulumi_oci/core/private_ip.py,sha256=RBV-K_PqhnfaLpAJOg9Y8gnMEpi85Flzi5hP6mwH5mE,42797
|
649
649
|
pulumi_oci/core/public_ip.py,sha256=L-WZ8RuDFtPmkZTxJFUggYipXEZFl6mSb1z2GJwdqx0,49195
|
650
650
|
pulumi_oci/core/public_ip_pool.py,sha256=SxGPeRtTauVvrVomIfsQIwZvIuh8oOwgJmNDGlHzBGQ,24119
|
@@ -653,14 +653,14 @@ pulumi_oci/core/remote_peering_connection.py,sha256=n6sKLEjmHXbBO3mTn70ZWTYCetcu
|
|
653
653
|
pulumi_oci/core/route_table.py,sha256=vjiNFA3vopNDy-jOhdm_z3gqI1-1ReST48NPFW_Fc7c,32381
|
654
654
|
pulumi_oci/core/route_table_attachment.py,sha256=TvxPWbWj_-Zzxsz3mUvJM_um4N5ASSEM9QVEPajYTfc,10359
|
655
655
|
pulumi_oci/core/security_list.py,sha256=RJsugBnXns0QRblgB1JrvL1lD7ZN84OcS-H7fqbCVJ8,42048
|
656
|
-
pulumi_oci/core/service_gateway.py,sha256=
|
656
|
+
pulumi_oci/core/service_gateway.py,sha256=4-FXuI1JYghUneXGafGHY5pAZBGRLgMoKuNvsTR453M,43553
|
657
657
|
pulumi_oci/core/shape_management.py,sha256=Qfj2MkR6ohkVexg8jqQ1dntbHLPkXpI8lNFf22pwPaQ,10658
|
658
658
|
pulumi_oci/core/subnet.py,sha256=dFj8_jBG78pQw1Oy8LIQajHEF_FCfNSrszsdwwJ3FtY,88952
|
659
|
-
pulumi_oci/core/vcn.py,sha256=
|
659
|
+
pulumi_oci/core/vcn.py,sha256=8pWs4f6_lbRBgbVIK81ytDeey4-RNQ-2IAQMIIqe0c8,77375
|
660
660
|
pulumi_oci/core/virtual_circuit.py,sha256=lIIr9Os-xPkKA7IS5oXceOMVYT0hlAL895DGROuvL3M,91042
|
661
|
-
pulumi_oci/core/virtual_network.py,sha256=
|
661
|
+
pulumi_oci/core/virtual_network.py,sha256=BVua1x3xo0YfdxOlXBa9UA11zIwUJqZzUP6M5vl9rhM,31353
|
662
662
|
pulumi_oci/core/vlan.py,sha256=Flflvtf8pzjWCM8EplSocwtAbfPNJIPyo1aPHd7wpVM,45335
|
663
|
-
pulumi_oci/core/vnic_attachment.py,sha256=
|
663
|
+
pulumi_oci/core/vnic_attachment.py,sha256=USfB-8Kc8D_VmC1wHOfTwDs4JiHwe19EH5wzSkANdiw,33808
|
664
664
|
pulumi_oci/core/volume.py,sha256=s81Is0a1XqZaG1nRul0ssbraUF2xE5pYehBpkau_5Jk,70369
|
665
665
|
pulumi_oci/core/volume_attachment.py,sha256=0RUr61AgvLrTPFawgMyzEv7BwjS3uzWSUjFuIkAmfSA,57680
|
666
666
|
pulumi_oci/core/volume_backup.py,sha256=0HLZN0rovdw0q7wmwfQ40yGtjOdIyOV8Hbe6G24mKKQ,49454
|
@@ -670,42 +670,42 @@ pulumi_oci/core/volume_group.py,sha256=Q57Qc7c7C8-RC9e8b6H8JyPlCewEfbqF7YOivMoC2
|
|
670
670
|
pulumi_oci/core/volume_group_backup.py,sha256=gzCYyFdf1ozd1k9SdScXQ7rYLqqMBG5Dv_S1m8ZS7qk,44707
|
671
671
|
pulumi_oci/core/vtap.py,sha256=DPtuaAL94Be1JGuZdlxbnI82rF21PVhlOY5HqE_Cq8I,62801
|
672
672
|
pulumi_oci/database/__init__.py,sha256=TbvsgFRkvTw9PdDU7h0BQI888lpmOooIdL9UuMQ5waA,9241
|
673
|
-
pulumi_oci/database/_inputs.py,sha256=
|
673
|
+
pulumi_oci/database/_inputs.py,sha256=Noz6oHB-gcONgYBplGFilzeWxBhr7ncNQkfdFI7SujY,989488
|
674
674
|
pulumi_oci/database/application_vip.py,sha256=JDVVsM5IEweW_6ArMrPkNxc-ip4taGgoscVO448uUrE,29325
|
675
675
|
pulumi_oci/database/autonomous_container_database.py,sha256=YVUHz09mg6YqT0f-Rc_cd7ULc9au0Wf841RnmfRGs3o,163039
|
676
676
|
pulumi_oci/database/autonomous_container_database_dataguard_association.py,sha256=Vqr9H2dth2n-aRH0WozgJE33EijV3LzaQXyyfzla5uU,75512
|
677
677
|
pulumi_oci/database/autonomous_container_database_dataguard_association_operation.py,sha256=KdrGLo1fGVgJL4tpeiYMtjyAyIaWZ7oNCD_vKMof7A8,17941
|
678
678
|
pulumi_oci/database/autonomous_container_database_dataguard_role_change.py,sha256=yML8BbuREYzHrq1dVIYwGlZ5bFpsBVGpT_Y9m-CI4V0,12423
|
679
|
-
pulumi_oci/database/autonomous_database.py,sha256=
|
680
|
-
pulumi_oci/database/autonomous_database_backup.py,sha256=
|
679
|
+
pulumi_oci/database/autonomous_database.py,sha256=uGvviHxtotLXdol4-npUbbp4svEwuGNh7EjUzqK5KwI,474428
|
680
|
+
pulumi_oci/database/autonomous_database_backup.py,sha256=TMDev4UedzHcRjt5ZfjnoeC3-3OTA7rM4AaAtn_bvhA,43614
|
681
681
|
pulumi_oci/database/autonomous_database_instance_wallet_management.py,sha256=shw6-GEc4MzawcuhYyZCXXOTszzM-P1Of1wCDnjc8hc,18745
|
682
682
|
pulumi_oci/database/autonomous_database_regional_wallet_management.py,sha256=hmbYSqFq3LOc5hXDXtp56_Z8zaCpP2O6celvTcyR8tQ,15757
|
683
683
|
pulumi_oci/database/autonomous_database_saas_admin_user.py,sha256=GHQf-syoa0E3t_llKqillsYj_MG-13rDQ5wLnMeejKY,26742
|
684
684
|
pulumi_oci/database/autonomous_database_software_image.py,sha256=x6yIuJ2HKiEMloWM-WwhKixFYlEEM1bxawq4iTF1wD4,33511
|
685
685
|
pulumi_oci/database/autonomous_database_wallet.py,sha256=LEypLboGMIRgp5Mg9b0v7yXV5Rsuv-taPeIAFLOP4vE,23065
|
686
|
-
pulumi_oci/database/autonomous_exadata_infrastructure.py,sha256=
|
687
|
-
pulumi_oci/database/autonomous_vm_cluster.py,sha256=
|
686
|
+
pulumi_oci/database/autonomous_exadata_infrastructure.py,sha256=2eyv3Pko0gx6fyj17eJgpb4--zcTg-sAxYcDPSQ3C8w,68447
|
687
|
+
pulumi_oci/database/autonomous_vm_cluster.py,sha256=hQUghJy83NulPkZQykuDtzPuuTeoysHOUC1xLx4g_-0,112268
|
688
688
|
pulumi_oci/database/autonomous_vm_cluster_ords_certificate_management.py,sha256=3VC8R-7mlLeETw9AQUaJ_zBt1yzyiZE6Ty7qpp-Csds,21703
|
689
689
|
pulumi_oci/database/autonomous_vm_cluster_ssl_certificate_management.py,sha256=ZdG-Y6UsRnSVg3EwgA6P5MlWQU0NzAgjRHLGolFO-qo,21615
|
690
|
-
pulumi_oci/database/backup.py,sha256=
|
690
|
+
pulumi_oci/database/backup.py,sha256=6ZqxqB_KZ5uvCiTYnD5TQQgr1zQvROu2ttKWUWoBT9I,33097
|
691
691
|
pulumi_oci/database/backup_cancel_management.py,sha256=5Z59w58DYCbKVI6YOeuEnO8Oxev0BS2JfZkDxEwyXJQ,11671
|
692
692
|
pulumi_oci/database/backup_destination.py,sha256=OHE-lPadEjlyR93JIFNsOSKgLYULZjonAkSSv6uUGcU,45770
|
693
|
-
pulumi_oci/database/cloud_autonomous_vm_cluster.py,sha256=
|
693
|
+
pulumi_oci/database/cloud_autonomous_vm_cluster.py,sha256=6PvuKcVj8BFqdqNYp7brtukbMf3QrvNN9PkBQrB--Bw,134306
|
694
694
|
pulumi_oci/database/cloud_database_management.py,sha256=kHwdrr3TSpp9JUcaAoysjsc0UwGHtYDXSoRpJq_905k,31752
|
695
|
-
pulumi_oci/database/cloud_exadata_infrastructure.py,sha256=
|
696
|
-
pulumi_oci/database/cloud_vm_cluster.py,sha256
|
695
|
+
pulumi_oci/database/cloud_exadata_infrastructure.py,sha256=0v9pfm6EAgQvCFe_XyGSLQlK_97gpg-im5pAhGCSOiA,80419
|
696
|
+
pulumi_oci/database/cloud_vm_cluster.py,sha256=-3numYHEOQaR87xxUtH24-E5p0NhS33AA1fc1OVdm4Q,151526
|
697
697
|
pulumi_oci/database/cloud_vm_cluster_iorm_config.py,sha256=YK5oY2uPrGQRl_oOvTf7rPYFNxAAeTx4NqqAc7MxJdc,16572
|
698
698
|
pulumi_oci/database/data_guard_association.py,sha256=yyr264gIjFFBdZuuioMwZwlmhHg1DE54iF2hWjHWvq8,151201
|
699
|
-
pulumi_oci/database/database.py,sha256=
|
699
|
+
pulumi_oci/database/database.py,sha256=BxTYwa43vOXHjnDvnR06bB7IrjunVJBnpnpxfLepIKw,77571
|
700
700
|
pulumi_oci/database/database_software_image.py,sha256=rwlamTRDs0vzwRkFiVf2YTcKJWAhflPNsa-28aO55tU,46722
|
701
|
-
pulumi_oci/database/database_upgrade.py,sha256=
|
701
|
+
pulumi_oci/database/database_upgrade.py,sha256=fVjerZac5Q4UMK2FFJdcruchAbQ9l3fXb0yexYS24aA,59178
|
702
702
|
pulumi_oci/database/db_home.py,sha256=TXATWoFKRZZrPE47a5DmSIBI1txGtgxrsj7MwVFSRlw,57012
|
703
703
|
pulumi_oci/database/db_node.py,sha256=K1gqldW2ks2mxsti2I3eNnG8DtjhERMGq3LUWBWY2W8,47411
|
704
704
|
pulumi_oci/database/db_node_console_connection.py,sha256=mRmbEFYMH6Mt5sWzDTQ7yXvp7njbGNktRTTEupb1dhM,27134
|
705
705
|
pulumi_oci/database/db_node_console_history.py,sha256=HSyg6bSs6Eli-Ix1krplUS3aOhRzTcg2QwAUodRIgwY,24388
|
706
|
-
pulumi_oci/database/db_system.py,sha256=
|
706
|
+
pulumi_oci/database/db_system.py,sha256=ICpVrs-h5BJRpKgyVVW4uCRLpc-7k-S0tx6UBbjja-U,178832
|
707
707
|
pulumi_oci/database/db_systems_upgrade.py,sha256=jUD83jTCKMRxundnD4vvADAgj8kqUL6479Ibfr75E8A,93945
|
708
|
-
pulumi_oci/database/exadata_infrastructure.py,sha256=
|
708
|
+
pulumi_oci/database/exadata_infrastructure.py,sha256=bcAHy0rM2d-vVCnLpunpzAUhFJx8PvTznZIX7LluX3Q,119159
|
709
709
|
pulumi_oci/database/exadata_infrastructure_compute.py,sha256=rTIYhQ97v5NTKi1ZzFTm9wSA2gVEzYV4OhHt6nBdIuo,75268
|
710
710
|
pulumi_oci/database/exadata_infrastructure_storage.py,sha256=EIP_JmPDmYXGjt_LcRevR2fDNec3nAjVWWMI0i4kcmo,51643
|
711
711
|
pulumi_oci/database/exadata_iorm_config.py,sha256=qusDf56exj7jL6d-ytbx4PRE_V9_ePcHYia5GfrU3p8,18218
|
@@ -726,15 +726,15 @@ pulumi_oci/database/external_pluggable_databases_stack_monitoring.py,sha256=v6DZ
|
|
726
726
|
pulumi_oci/database/get_application_vip.py,sha256=rguOkxRvBMCEVIuay8oBuO7wh-wHpqIN6wlhm6xi_HI,11910
|
727
727
|
pulumi_oci/database/get_application_vips.py,sha256=ugd-6WfpJuT6isjkiAD-QCj-ZT-2l91CCwrW2EVb1i8,8543
|
728
728
|
pulumi_oci/database/get_autonomous_character_sets.py,sha256=cwXfDh-uZhDwgbrqFHHyw5A1nc6SZHoMpPutNelfTIE,9143
|
729
|
-
pulumi_oci/database/get_autonomous_container_database.py,sha256=
|
729
|
+
pulumi_oci/database/get_autonomous_container_database.py,sha256=VgmKAPcSjZ9Y22ZtD1gQL7OReUgDwtq9k6BJ1UGUcW4,53668
|
730
730
|
pulumi_oci/database/get_autonomous_container_database_dataguard_association.py,sha256=XVutJwsfajDnaAHP3g38_5vSAczfDsjTzNgGTpah4Po,27646
|
731
731
|
pulumi_oci/database/get_autonomous_container_database_dataguard_associations.py,sha256=mRlW9mUbkVcard6SCpidXXmcz9OOsrvh8DczWt-X1pY,8628
|
732
732
|
pulumi_oci/database/get_autonomous_container_database_resource_usage.py,sha256=kCtUH51kUWIUcibbk4EPfhIrgUDN1bFpYb9J8TYAySY,14312
|
733
733
|
pulumi_oci/database/get_autonomous_container_database_versions.py,sha256=XEMaJu55rh2b4BUGIWGHwG9oGSGHCYvEZ3YlFIU9asY,8142
|
734
734
|
pulumi_oci/database/get_autonomous_container_databases.py,sha256=J-QU5Ke0b6hnPC9V2Nogh4dWlfygAmptgD9aja_4NTA,18862
|
735
735
|
pulumi_oci/database/get_autonomous_container_patches.py,sha256=jkjSmZRtZ7Eou-CjZa2dqHje_XTCeoWkFUtd-luh-AU,9329
|
736
|
-
pulumi_oci/database/get_autonomous_database.py,sha256=
|
737
|
-
pulumi_oci/database/get_autonomous_database_backup.py,sha256=
|
736
|
+
pulumi_oci/database/get_autonomous_database.py,sha256=YBOukLTP8IS2rj72lFhEwKoI1yLOLf9KMBf1HkpCDDk,119284
|
737
|
+
pulumi_oci/database/get_autonomous_database_backup.py,sha256=LpCfBfUGCo1E23TDCcpQZcnjQxLHyz-k9DF6VlKFkkI,19964
|
738
738
|
pulumi_oci/database/get_autonomous_database_backups.py,sha256=jQp6P8e5c4GyZORbesOxSjrqbHx5jg8KXAXQxe4CHRE,11432
|
739
739
|
pulumi_oci/database/get_autonomous_database_dataguard_association.py,sha256=xfwAUgWwjSBUCbU8L8FEcvAakmvBLCYC2M64BXI9Gnc,15239
|
740
740
|
pulumi_oci/database/get_autonomous_database_dataguard_associations.py,sha256=6wKOQN1-ot_Qsv4z_gqoiQ0k9Gfkjfx6IxfZo_qNHSs,7642
|
@@ -745,7 +745,7 @@ pulumi_oci/database/get_autonomous_database_regional_wallet_management.py,sha256
|
|
745
745
|
pulumi_oci/database/get_autonomous_database_software_image.py,sha256=Kvfsu7AIOnWeI2WdH8IUSemAB7rGCjyOEhIOBAvB-Bg,13718
|
746
746
|
pulumi_oci/database/get_autonomous_database_software_images.py,sha256=Jb8wSDRHcDQ2Hbzc06YKpfYt_mKnhEwmcuYrcjEhahw,10903
|
747
747
|
pulumi_oci/database/get_autonomous_database_wallet.py,sha256=MVQkLYTyjiKaTX1y-CrRd4TX9OUJa31QnZYIRFRikjg,8825
|
748
|
-
pulumi_oci/database/get_autonomous_databases.py,sha256=
|
748
|
+
pulumi_oci/database/get_autonomous_databases.py,sha256=ECNP-70Q8JM74SzGLEP1EZMJyiC7zShTg4st9tKQpH4,24526
|
749
749
|
pulumi_oci/database/get_autonomous_databases_clones.py,sha256=U5-UTsbWAPGQGsC5slJRZUTQ6nnZh-3G6aRDAWP85KQ,11149
|
750
750
|
pulumi_oci/database/get_autonomous_db_preview_versions.py,sha256=72Z-73uO9t0QIOUJP4K5VobRXqfJnh2y6G_vb6u9TO0,6803
|
751
751
|
pulumi_oci/database/get_autonomous_db_versions.py,sha256=9YJrf1gNdJx0K8_IHx3pV8zBEF7fvaK58uy-tn5eZys,7564
|
@@ -770,12 +770,12 @@ pulumi_oci/database/get_cloud_autonomous_vm_clusters.py,sha256=A6u6MER4Drrls26CK
|
|
770
770
|
pulumi_oci/database/get_cloud_exadata_infrastructure.py,sha256=ftUsCOZsCphIut7OZRn2A9HRnF7BO-3lOHP4Kr_ic5o,32218
|
771
771
|
pulumi_oci/database/get_cloud_exadata_infrastructure_un_allocated_resource.py,sha256=seQsYFcdrjqb3XKDmVwNIh10c4wAndgW2LQQ6MijeYQ,11942
|
772
772
|
pulumi_oci/database/get_cloud_exadata_infrastructures.py,sha256=qg_RGsAviLGD3q7Twt3hy9ICuE-_PQ0NTjC8wzWkT0Q,10949
|
773
|
-
pulumi_oci/database/get_cloud_vm_cluster.py,sha256=
|
773
|
+
pulumi_oci/database/get_cloud_vm_cluster.py,sha256=A9ak9gomO3EOCGfuJq_KK42ZJZ4BGCnxVmvWdJezfHU,42703
|
774
774
|
pulumi_oci/database/get_cloud_vm_cluster_iorm_config.py,sha256=RXB6-kAsQSGpDVTxREq8doJx8qpfOGLjD7hLHaBWjNw,7471
|
775
775
|
pulumi_oci/database/get_cloud_vm_clusters.py,sha256=sR03GIMIG5rS5upWEtB2bW094nxFQ-MCVhkUXdJ_gKY,10151
|
776
776
|
pulumi_oci/database/get_data_guard_association.py,sha256=Ii_yzw_YhXWa3fa36SDHx5AuyivclkO0_NOO3EPqJ0o,32388
|
777
777
|
pulumi_oci/database/get_data_guard_associations.py,sha256=W8S09b9hczR5GJAm7yB6ZgDv73u4rwcYVkRYy7tekHQ,6192
|
778
|
-
pulumi_oci/database/get_database.py,sha256=
|
778
|
+
pulumi_oci/database/get_database.py,sha256=BDnAuXrJxznU4pwIs_YaFUb6T4fVPcF1mV5mNF6FPek,28934
|
779
779
|
pulumi_oci/database/get_database_maintenance_run_histories.py,sha256=rEaZyK8_dc76jlAPxcYxghFNI3j39Au2UKg0-4k3r7E,12754
|
780
780
|
pulumi_oci/database/get_database_maintenance_run_history.py,sha256=DpcvL1sdR1oz6v8kCKGRxMjF-y2N2QO7pEVtKPCEZJw,6596
|
781
781
|
pulumi_oci/database/get_database_pdb_conversion_history_entries.py,sha256=FQAM60q5s0QJEETlE2oIuj4b34sPAIYJhB-HTLMAJ38,9865
|
@@ -840,10 +840,10 @@ pulumi_oci/database/get_managed_preferred_credential.py,sha256=WXKh6hukzVVB-XMHs
|
|
840
840
|
pulumi_oci/database/get_managed_preferred_credentials.py,sha256=kIcdE-KKL02JWlQttgn3C8WCzbm3YDRzWDXjOGb9oug,6734
|
841
841
|
pulumi_oci/database/get_oneoff_patch.py,sha256=vEgFO3DEvAgGhtWH7ui_i_wtDklCj0HsRq6hYANDJ08,14189
|
842
842
|
pulumi_oci/database/get_oneoff_patches.py,sha256=jwjldJCgIpcby1fAw7FhRtTdUPOOZevjKjNf2DCdeh8,7934
|
843
|
-
pulumi_oci/database/get_pluggable_database.py,sha256=
|
843
|
+
pulumi_oci/database/get_pluggable_database.py,sha256=BYjJiOlYz-4zxQQTOJwFGK8lMTIxOVr5KJayOpqS3e4,22266
|
844
844
|
pulumi_oci/database/get_pluggable_databases.py,sha256=IaKLHtmanpEZJUwARcfbzRzLxzKKgWxMwDM00w3WiN0,9795
|
845
845
|
pulumi_oci/database/get_system_versions.py,sha256=UrZEMgAhiMcua8Bv8sd73ZxKFQ7-ST6r0qDjYblogbM,7739
|
846
|
-
pulumi_oci/database/get_vm_cluster.py,sha256
|
846
|
+
pulumi_oci/database/get_vm_cluster.py,sha256=Rc9O2mp1hNfuH5xK-GxW1A5lUJpZpb0-Gwh7e2XaR0k,26574
|
847
847
|
pulumi_oci/database/get_vm_cluster_network.py,sha256=6YtJzHkC8-PDnei9JOs-lv3RSYs1lLM8sHGQNQPczMg,16718
|
848
848
|
pulumi_oci/database/get_vm_cluster_network_download_config_file.py,sha256=k5hQ_O0wOkCW-fK38KGCAa9ulN-zk0iQXRzI7t1bEhk,8338
|
849
849
|
pulumi_oci/database/get_vm_cluster_networks.py,sha256=BJgNr0ZjeU14fAO5xRZtbx4w1ShtHHhgYqTKe8VRPEE,10759
|
@@ -860,15 +860,15 @@ pulumi_oci/database/get_vm_clusters.py,sha256=p_OPJhuvFLl4n7-T_3CAiSh9HkFQAz-kfn
|
|
860
860
|
pulumi_oci/database/key_store.py,sha256=utkO4jzVMM59m0NEZdhHdqnIdGpJiNjrW8mQjF9dT4o,27789
|
861
861
|
pulumi_oci/database/maintenance_run.py,sha256=8ARRL5E_sID9VZe3D3Szdq4rcRcRgNN2NU6udQdyhyo,62143
|
862
862
|
pulumi_oci/database/oneoff_patch.py,sha256=WmKZ_CNZ6Ns_0s5kRuvyXeT8KgNx24L7oiRQG5CRn-Q,38954
|
863
|
-
pulumi_oci/database/outputs.py,sha256=
|
864
|
-
pulumi_oci/database/pluggable_database.py,sha256=
|
863
|
+
pulumi_oci/database/outputs.py,sha256=I9a_dML8rnxrPFuGnKNGmo8XlXv8cmYsGOGy5d8NnVg,2346586
|
864
|
+
pulumi_oci/database/pluggable_database.py,sha256=OYwfbMsBO58xQigObXCmC9Qez3JJnjaz2blE4tmRrOg,75593
|
865
865
|
pulumi_oci/database/pluggable_database_managements_management.py,sha256=cmW6n0jUdviIoYQ5sHe_AwQWIEXpy8DS1W7fFnMJK2w,52897
|
866
866
|
pulumi_oci/database/pluggable_databases_local_clone.py,sha256=S0EmRLhANos9tiM_yFrDENRZWjiROIr6MorLJlC0qFw,51106
|
867
867
|
pulumi_oci/database/pluggable_databases_remote_clone.py,sha256=lx88HVEoi5p9xGn7Zc0sOiEr4GDtY2xZnQZmCPUPgbg,57777
|
868
|
-
pulumi_oci/database/vm_cluster.py,sha256=
|
869
|
-
pulumi_oci/database/vm_cluster_add_virtual_network.py,sha256=
|
868
|
+
pulumi_oci/database/vm_cluster.py,sha256=w9jkkBviKkxdTABSnTSeyDapTeelNDfI5Gy6V3YOFD0,85918
|
869
|
+
pulumi_oci/database/vm_cluster_add_virtual_network.py,sha256=rJ9BPy5v8p8vjE6ICmjOeMyFI7vcBacxzhPEHWh0GW8,56351
|
870
870
|
pulumi_oci/database/vm_cluster_network.py,sha256=7SeFwVO28VOU3Tg0feDKwIrAwzAj-Jy9JwPZp8fHgTI,48913
|
871
|
-
pulumi_oci/database/vm_cluster_remove_virtual_machine.py,sha256=
|
871
|
+
pulumi_oci/database/vm_cluster_remove_virtual_machine.py,sha256=IubE7PQazTYxRST9i5jd8e0r5RPvXDkC3AJq4BklzyI,54121
|
872
872
|
pulumi_oci/databasemanagement/__init__.py,sha256=yd8oU2rEb_imqdI2eKtdVVY7VLXKzjCwoFMmUNI0TRA,7131
|
873
873
|
pulumi_oci/databasemanagement/_inputs.py,sha256=hN7NEyX33vePXJs4kneB69gdk07rV-OEcgQgDfVeQOo,571368
|
874
874
|
pulumi_oci/databasemanagement/autonomous_database_autonomous_database_dbm_features_management.py,sha256=00ol-U5qXoA6Os8EGlSJfatL0oUBZMdwaq_aExYZ2d8,16991
|
@@ -1109,8 +1109,8 @@ pulumi_oci/datalabellingservice/get_annotation_formats.py,sha256=1_klZQ5d1KX38lX
|
|
1109
1109
|
pulumi_oci/datalabellingservice/get_dataset.py,sha256=gkGjEr4utZ53IimUY4UeDHsjTTX03mDCHZ96SBVLofM,17663
|
1110
1110
|
pulumi_oci/datalabellingservice/get_datasets.py,sha256=Tsbvve-S1MSLdKIGS87AAQp1NNI8XN4k7HzizLXAWW4,9720
|
1111
1111
|
pulumi_oci/datalabellingservice/outputs.py,sha256=r7HiUItducEEuol2RlCy_jnp2xOPDxY0VJ959qNHNyM,52916
|
1112
|
-
pulumi_oci/datasafe/__init__.py,sha256=
|
1113
|
-
pulumi_oci/datasafe/_inputs.py,sha256=
|
1112
|
+
pulumi_oci/datasafe/__init__.py,sha256=CYGcnpKOYvWqCO1i-PFyBXvoAZUWx4RTuHkRTvpMBJc,8247
|
1113
|
+
pulumi_oci/datasafe/_inputs.py,sha256=rMJScIal49QlnmB5neeccqH6UddTGNLQ9REOzafay9E,419159
|
1114
1114
|
pulumi_oci/datasafe/add_sdm_columns.py,sha256=I0ZEIc33HdUAuVwulwtAKIv9jy5_boMj2bS6HfNkSmY,5588
|
1115
1115
|
pulumi_oci/datasafe/alert.py,sha256=ZwhlJjoPTYQj1cwXoBXEtTS1BTFWwYcrH8M_PV7Br34,44053
|
1116
1116
|
pulumi_oci/datasafe/alert_policy.py,sha256=ve8ltISx2f4bmtOIACBovJEGSBrsxlid40kLHtf1o8c,38407
|
@@ -1190,7 +1190,7 @@ pulumi_oci/datasafe/get_report.py,sha256=QIYlJpyzThnKSxJr9A8Nh7bLTguw6MiNyM821Ox
|
|
1190
1190
|
pulumi_oci/datasafe/get_report_content.py,sha256=vOhtWTecYmgVu2DLl34iIqfFtJpLbH7vzr-ZcLaqL44,3874
|
1191
1191
|
pulumi_oci/datasafe/get_report_definition.py,sha256=3a4jkD3aaANi7JxXNnLIc45Ni4DbVzQhkqqpqfq1QkU,23857
|
1192
1192
|
pulumi_oci/datasafe/get_report_definitions.py,sha256=SH_q1CWgYYOTv0_iAcVdVh--22dRrOrUYP59MfPq6iE,15320
|
1193
|
-
pulumi_oci/datasafe/get_reports.py,sha256=
|
1193
|
+
pulumi_oci/datasafe/get_reports.py,sha256=OfLJdLTLOKYFAAeTNzgkCQOouTXM9b32Uq2IjKp9Foo,18156
|
1194
1194
|
pulumi_oci/datasafe/get_sdm_masking_policy_difference.py,sha256=8UzcS8QAt0cQXvAuwqUVE4SobeUnvKso2KxVPAlgjlI,13387
|
1195
1195
|
pulumi_oci/datasafe/get_sdm_masking_policy_difference_difference_column.py,sha256=QRBdLDyj94IgLjAldIN29ekEoHlSvyUTAJC99WbHv0A,14792
|
1196
1196
|
pulumi_oci/datasafe/get_sdm_masking_policy_difference_difference_columns.py,sha256=BIC6_yk6BfSkKZFQBKMd7-Ll9QbetYM4I73ztyY_mws,16846
|
@@ -1226,6 +1226,18 @@ pulumi_oci/datasafe/get_sensitive_data_models_sensitive_column.py,sha256=bTpwesI
|
|
1226
1226
|
pulumi_oci/datasafe/get_sensitive_data_models_sensitive_columns.py,sha256=nnXxEnckdwdyVrykSe0Aa96WDyqyo6UFuZPATWySkzc,33210
|
1227
1227
|
pulumi_oci/datasafe/get_sensitive_type.py,sha256=F87CMbjgRiizKPwNGDmrHIFlHuGQ2ZpdDav-dZGb4JM,16821
|
1228
1228
|
pulumi_oci/datasafe/get_sensitive_types.py,sha256=NyCZQ8rcYutCZzxAV-vu9JNhCx6u6q8EFSv65IfXWJk,23629
|
1229
|
+
pulumi_oci/datasafe/get_sql_collection.py,sha256=Yb5FKSw275A-KimOmPkkutAI0gMM6gbmnFW2oFw1qVU,17876
|
1230
|
+
pulumi_oci/datasafe/get_sql_collection_analytics.py,sha256=QIgWl466JGFT59mgicZEXYPL7ceYIIH14gSaDfA1rhw,17185
|
1231
|
+
pulumi_oci/datasafe/get_sql_collection_log_insights.py,sha256=vk6AqSHh3zxUYnDQ9M8HS6CY4bh_jUFBpCW9fP8Syfo,10206
|
1232
|
+
pulumi_oci/datasafe/get_sql_collections.py,sha256=p75CCDrGoErk-spKzuH7tdpiOV7KjVZ6BWnP2dTclhk,20507
|
1233
|
+
pulumi_oci/datasafe/get_sql_firewall_allowed_sql.py,sha256=Wvj7xHDed4iaEXqmjcxCYavGR2lwXdUUNGtHcAhhFas,15259
|
1234
|
+
pulumi_oci/datasafe/get_sql_firewall_allowed_sql_analytics.py,sha256=BthTA7Akopy-xQMJaLAsFDnP9x3MpoTxQ61y9X8rwJM,15365
|
1235
|
+
pulumi_oci/datasafe/get_sql_firewall_allowed_sqls.py,sha256=PjIOdtYS8BE8T9ODQnw1VwfuODsyvuenhTuo9FTnkNo,13662
|
1236
|
+
pulumi_oci/datasafe/get_sql_firewall_policies.py,sha256=qBv6xvxg2z8qmpVSSPHfv4FjzetfmKkiMciuxp0PBdg,22792
|
1237
|
+
pulumi_oci/datasafe/get_sql_firewall_policy.py,sha256=eB3PTQ8Ns8qY3PJ5mbBexY0l7lYOLN6J3GWggaAdv3A,17997
|
1238
|
+
pulumi_oci/datasafe/get_sql_firewall_policy_analytics.py,sha256=AS5KTG_xQ1RgGPPiM8qCrX9e2ATFcxEp071hwQe5CgA,17673
|
1239
|
+
pulumi_oci/datasafe/get_sql_firewall_violation_analytics.py,sha256=iz02I53X9EGwPNDqedkUDXfZ-D5vJU_J6UowXPb-96M,19004
|
1240
|
+
pulumi_oci/datasafe/get_sql_firewall_violations.py,sha256=S3zKFoWEXWHcmNQhNW6BXwNKu2wYNCOTIAXBSY2AszE,11745
|
1229
1241
|
pulumi_oci/datasafe/get_target_alert_policy_association.py,sha256=7REYIwsb3sKy4ANmLAbFfL7e0CP9iTcEWe4MTtjum0Y,13577
|
1230
1242
|
pulumi_oci/datasafe/get_target_alert_policy_associations.py,sha256=Hwzu585Iwm5fnJ_o-aSVZTsunALs5a43f_ac7XUEDbM,19336
|
1231
1243
|
pulumi_oci/datasafe/get_target_database.py,sha256=GBfZOztEkfHmMi3HqtQW-0LxXY_4rrrwak3ZMks-rUo,16164
|
@@ -1253,7 +1265,7 @@ pulumi_oci/datasafe/masking_policy.py,sha256=IcofY6HX-wdd7-rJfxrrCXshiaX8VXBDyKp
|
|
1253
1265
|
pulumi_oci/datasafe/masking_policy_health_report_management.py,sha256=sKn_zVyaD-B-nWdw--YEc4tiSKc264v-UL7AEOZoBdo,19537
|
1254
1266
|
pulumi_oci/datasafe/masking_report_management.py,sha256=bETga_n8T453Ovy1vaFtLmDNEk1LL5gA4dR206N9bI8,32183
|
1255
1267
|
pulumi_oci/datasafe/on_prem_connector.py,sha256=kvQB0XRJzaaqaFOWlKrdXrjuJ29HCUs4ElUrG_zfg1g,29972
|
1256
|
-
pulumi_oci/datasafe/outputs.py,sha256=
|
1268
|
+
pulumi_oci/datasafe/outputs.py,sha256=znUjchV5UipajOfy1trsmvNUsGyCzAT_MUMgBGRZGkY,1337038
|
1257
1269
|
pulumi_oci/datasafe/report.py,sha256=g5veLv0fUmqxTWxm_gyPN9kWmNJv6Kq5GNJSvtOyZYY,28288
|
1258
1270
|
pulumi_oci/datasafe/report_definition.py,sha256=RkLwrY9J_WLUXCb4zhSy6247bpKTTxaKbfnOrTvg3r4,68728
|
1259
1271
|
pulumi_oci/datasafe/sdm_masking_policy_difference.py,sha256=K-E9oiMIRVaMRD28FY58jcLolfunVn8dHofr6pLPoaE,38026
|
@@ -1347,15 +1359,15 @@ pulumi_oci/demandsignal/get_occ_demand_signals.py,sha256=dU8gcHnOgnK3Umxh0Wo_giE
|
|
1347
1359
|
pulumi_oci/demandsignal/occ_demand_signal.py,sha256=P8xq9JeRvo-otM3jaJBEyc6d68yF0g2GM-m4zQM_XUU,35511
|
1348
1360
|
pulumi_oci/demandsignal/outputs.py,sha256=rl3UrM8OOY2cRUO2O8mbXn1-PQQuKZeeJQ0gvgLT9BM,25185
|
1349
1361
|
pulumi_oci/desktops/__init__.py,sha256=q-fySpbcf34D1wTkjYoyTh5h88che9ptnOT3e4wUdF0,543
|
1350
|
-
pulumi_oci/desktops/_inputs.py,sha256=
|
1351
|
-
pulumi_oci/desktops/desktop_pool.py,sha256=
|
1362
|
+
pulumi_oci/desktops/_inputs.py,sha256=e8_JYy774lpOJWWy5Xv7atY4d9dtmRH6nV8HmIvw_uY,34097
|
1363
|
+
pulumi_oci/desktops/desktop_pool.py,sha256=42ezSZ3riVg7-7kIP_7Z59JZV43BoD51rmHnAAGba70,79709
|
1352
1364
|
pulumi_oci/desktops/get_desktop.py,sha256=W58WwR67Kz53j7dbhW6wfox4juJVpmT9BUfnboEWUuk,9666
|
1353
|
-
pulumi_oci/desktops/get_desktop_pool.py,sha256=
|
1365
|
+
pulumi_oci/desktops/get_desktop_pool.py,sha256=yxzVduBokhghTt2ajuJnlKsLe6-FZT2xUPxwDF9zsvo,22750
|
1354
1366
|
pulumi_oci/desktops/get_desktop_pool_desktops.py,sha256=vSnm1Y78nccXm71iLczCA4lg3ohyu4rcW3qKgXPMeDw,11069
|
1355
1367
|
pulumi_oci/desktops/get_desktop_pool_volumes.py,sha256=bofTvCtytPl7XMgqheZTFAFvshjsslP34iFZkPRb8fE,11153
|
1356
1368
|
pulumi_oci/desktops/get_desktop_pools.py,sha256=onBsfT-VYM646i-beKNx6O_R2ACC4NaG8UlP2N1kP5U,9830
|
1357
1369
|
pulumi_oci/desktops/get_desktops.py,sha256=iEM3KBhqh9aLoLQkoa8kqiVvRMiz-2cqLk9HJutUPZs,10467
|
1358
|
-
pulumi_oci/desktops/outputs.py,sha256=
|
1370
|
+
pulumi_oci/desktops/outputs.py,sha256=YNA4Brg4Ap8ysM1AniRSBhcu4zziVv0YjtoHq_nXHYQ,94428
|
1359
1371
|
pulumi_oci/devops/__init__.py,sha256=ogod3Nh4yEX5W_vhC8lVlVH9Tp8gPp6WkEFiEHRmndU,2458
|
1360
1372
|
pulumi_oci/devops/_inputs.py,sha256=NEDjMWesRDNDViNeLULunbKU5Q4pogcFPIN00DI4sL4,293496
|
1361
1373
|
pulumi_oci/devops/build_pipeline.py,sha256=KHilTVB9nFTdl_RPk-ekCG3yT0jJUXPHU8KQkkqkMrc,34139
|
@@ -1512,6 +1524,43 @@ pulumi_oci/filestorage/outbound_connector.py,sha256=tC6TZ7rVUpwm9kCNEQDu-HKFyORT
|
|
1512
1524
|
pulumi_oci/filestorage/outputs.py,sha256=VqzfhmTrp1JGKmt5OeQW1QW0xWnmO1rc_BTtpGASI3M,145068
|
1513
1525
|
pulumi_oci/filestorage/replication.py,sha256=ucjDZ-yP-DjgmdNAi9HPiujHWvYoaAPTbPPm6cS_fLQ,46524
|
1514
1526
|
pulumi_oci/filestorage/snapshot.py,sha256=B7oS-EkAv8pt4kbJC7fCksXHGtDbX6Kpaezt0WDoR8s,36669
|
1527
|
+
pulumi_oci/fleetappsmanagement/__init__.py,sha256=Jog5NRf4m2CKeEpWmSUNxRYcmWnrhCiB7UILtXBqR2g,1453
|
1528
|
+
pulumi_oci/fleetappsmanagement/_inputs.py,sha256=0UNwvrCwGo0bZGMgDXqLRmEa8X4Pa9WfIFonwFfVd0Q,68423
|
1529
|
+
pulumi_oci/fleetappsmanagement/fleet.py,sha256=A6dqa-VoJ72QTQd4nTtOrU-aFEchi_90TAoLQNLfw6o,47759
|
1530
|
+
pulumi_oci/fleetappsmanagement/fleet_credential.py,sha256=-J9JSzFI2La0jl6dLTrAPYAQdE1SVSSfTjXs73FtNzI,27862
|
1531
|
+
pulumi_oci/fleetappsmanagement/fleet_property.py,sha256=81zjc2wfG7taoWMhuhCjOg42qhRUcOo3krCWVY46D_o,23755
|
1532
|
+
pulumi_oci/fleetappsmanagement/fleet_resource.py,sha256=iDq72umOmLfVO7VWSBIKUxgCQpXksXpsvZJzIRQwN5g,36797
|
1533
|
+
pulumi_oci/fleetappsmanagement/get_announcements.py,sha256=LbOdDQvIRdi8guWpRyyFY_o32yB_we6EZnAAZXbTYss,7090
|
1534
|
+
pulumi_oci/fleetappsmanagement/get_fleet.py,sha256=TUZcb3tqIJP7YSvRNWMIMchZIT2lPBGjKo3SKGz5CcQ,17066
|
1535
|
+
pulumi_oci/fleetappsmanagement/get_fleet_compliance_report.py,sha256=r-rF1MvmJ0Up4WV0eJXpUKcL9wguwTBaUvAVInaN7bM,6569
|
1536
|
+
pulumi_oci/fleetappsmanagement/get_fleet_credential.py,sha256=uh23EGO4u_yDexeTHEqEOhrpeWMICLlgm9ysgQwTSUs,11369
|
1537
|
+
pulumi_oci/fleetappsmanagement/get_fleet_credentials.py,sha256=fA4YwtrXsO6Tqm-AH00Yflke-6jq3xoG8-uGx9v7hRA,10525
|
1538
|
+
pulumi_oci/fleetappsmanagement/get_fleet_products.py,sha256=TcrilczKmRRqcu_zAz07cyiMjMsoH_51zKWi3Ne8O30,10257
|
1539
|
+
pulumi_oci/fleetappsmanagement/get_fleet_properties.py,sha256=2CjfpC0KAH4u44HE6NUUbhXAnB_wHIMYl89-ECsKwsM,9300
|
1540
|
+
pulumi_oci/fleetappsmanagement/get_fleet_property.py,sha256=Uc7T0qKXZSodshfr91B6l4ROuw6cP-yy6uv3fmWknvY,11440
|
1541
|
+
pulumi_oci/fleetappsmanagement/get_fleet_resource.py,sha256=WFgbwn6EmyqJe3-ivwcFOn8KFgVLx4yPm4P3CN88vH8,16831
|
1542
|
+
pulumi_oci/fleetappsmanagement/get_fleet_resources.py,sha256=mrIUaqpaYjbzf6SNLY8XamNoHjJkde5wJAHM1ISdVBM,10342
|
1543
|
+
pulumi_oci/fleetappsmanagement/get_fleet_targets.py,sha256=XqMSZhDjZ0Gt9D5o6ZHcbgL7eNn_lz0gJs3winFEuHc,9950
|
1544
|
+
pulumi_oci/fleetappsmanagement/get_fleets.py,sha256=MT53Bv8iVlYyVaRQi8VF3jW4Evpw3TinuroFJEROrWs,12334
|
1545
|
+
pulumi_oci/fleetappsmanagement/get_inventory_resources.py,sha256=pFjhhJWoOvKbCZe9QKMHpBgMlJ5b7G1zUB6RJj6gvEQ,17369
|
1546
|
+
pulumi_oci/fleetappsmanagement/get_maintenance_window.py,sha256=GDEI6RROMnpK1t2REZfRPJONrY24d4rs000YRwJUQ0o,15930
|
1547
|
+
pulumi_oci/fleetappsmanagement/get_maintenance_windows.py,sha256=X0gBVFrtq0xBFX6aIO3WnXRZhofxS8nIwnYPsXPThqk,8752
|
1548
|
+
pulumi_oci/fleetappsmanagement/get_onboarding_policies.py,sha256=I3fkgGk88gki1ODj3qn2SgvXAstjkf0uLHWGWvLbCQc,5032
|
1549
|
+
pulumi_oci/fleetappsmanagement/get_onboardings.py,sha256=FWQk8xUZldI6exsPbnDBJQ_vh_O98_fqQ8jkfBOJZy8,6991
|
1550
|
+
pulumi_oci/fleetappsmanagement/get_properties.py,sha256=a9xouDPnXJZEBy2redRPzSzBYy69susHc_vUjwtauEg,9011
|
1551
|
+
pulumi_oci/fleetappsmanagement/get_property.py,sha256=vXC0NDfyZkpsTQYVlT3TKJs6nb1ais8P9veLJgVV_mg,12831
|
1552
|
+
pulumi_oci/fleetappsmanagement/get_runbook.py,sha256=vvIATyk1Fcjv0ao22p_esUvX1nE9S376hAHBLVv4zZI,15356
|
1553
|
+
pulumi_oci/fleetappsmanagement/get_runbooks.py,sha256=RYH62A9ti8dSxQllDrTtNS62VdaKMJ0PYJUaTCPRX-w,11699
|
1554
|
+
pulumi_oci/fleetappsmanagement/get_scheduler_definition.py,sha256=DeI9loscTkFqyiM6btnl0QWEG2HYWaLpP5F0QvfXrJ4,20144
|
1555
|
+
pulumi_oci/fleetappsmanagement/get_scheduler_definition_scheduled_fleets.py,sha256=28XAqoobArFQAbqAKMh0PkcaPql0b6FvuOe1wRLsnhE,9258
|
1556
|
+
pulumi_oci/fleetappsmanagement/get_scheduler_definitions.py,sha256=UfUCNEOqi8qwyDtk4MFxTeR0SbX809tcDim2eRu_sVU,12117
|
1557
|
+
pulumi_oci/fleetappsmanagement/get_task_record.py,sha256=3MiOeUagsorj7uJSLE6UjEBa35JywR-sRWoi5Mm6dvE,12497
|
1558
|
+
pulumi_oci/fleetappsmanagement/get_task_records.py,sha256=LrQShRgAl3J18D9_9LJCLBP2eJNTGyyZxkWHRZxk_uI,9722
|
1559
|
+
pulumi_oci/fleetappsmanagement/maintenance_window.py,sha256=4tIXI-5h4qsvcz863sTHSg2-qPIe2y1RWOK9JzNljX4,43987
|
1560
|
+
pulumi_oci/fleetappsmanagement/onboarding.py,sha256=MZpQCTlzwpJjecMHmtAGSXBb4n4uWunbMvC-ZObXdOo,20420
|
1561
|
+
pulumi_oci/fleetappsmanagement/outputs.py,sha256=URCvMIvGHLzTZfEmybTnEgbeMl13h-yiQs24xi4e4YM,293916
|
1562
|
+
pulumi_oci/fleetappsmanagement/property.py,sha256=M1VgkhRnp5v5gSJXA8R9fE_oqkT6QOyf6MKhtvYe5Gk,30383
|
1563
|
+
pulumi_oci/fleetappsmanagement/scheduler_definition.py,sha256=BtpNZNI2eoRxEFy1K93Zsezq39XN0OFPYaQ_r0jk5P8,52168
|
1515
1564
|
pulumi_oci/fleetsoftwareupdate/__init__.py,sha256=pjI6H1538gr5ibAG9BxFd9PoYJIRZ_dACG1hvTouhYE,497
|
1516
1565
|
pulumi_oci/fleetsoftwareupdate/_inputs.py,sha256=Dc8bF4TckP1pgPS-lMZGyUd4EW_Xs5y8BpUV14GwZt8,37262
|
1517
1566
|
pulumi_oci/fleetsoftwareupdate/fsu_collection.py,sha256=6i0K_2TPW_w4M0-TizgJUUsewwbqtKuQdoTJg_jbldM,42378
|
@@ -1539,7 +1588,7 @@ pulumi_oci/functions/get_fusion_environment_family.py,sha256=YSUNSFXuFHTn1q04IF4
|
|
1539
1588
|
pulumi_oci/functions/get_fusion_environment_family_limits_and_usage.py,sha256=UcFdeH6fkQFDz9mG6ky1dE-RK2LjOUhcq4x0CVtpOOk,8281
|
1540
1589
|
pulumi_oci/functions/get_fusion_environment_family_subscription_detail.py,sha256=RrIwttgym8clG8KheQf8VpjFmoZkvYl5vTpw_MqeRV0,5986
|
1541
1590
|
pulumi_oci/functions/get_fusion_environment_refresh_activities.py,sha256=_lhbLMo8LPaqiEZ407WIgzrJA_pB9h0ZrWcsiGYrFlw,12956
|
1542
|
-
pulumi_oci/functions/get_fusion_environment_refresh_activity.py,sha256=
|
1591
|
+
pulumi_oci/functions/get_fusion_environment_refresh_activity.py,sha256=d-LvEMkuxnD1sSwNU0OgohoP60PwvORi2lzK-8OwAco,14784
|
1543
1592
|
pulumi_oci/functions/get_fusion_environment_scheduled_activities.py,sha256=sJcjJswdQsz2D5lgdysUiaRAwBCxY3FU8YqWanP0OdI,14275
|
1544
1593
|
pulumi_oci/functions/get_fusion_environment_scheduled_activity.py,sha256=CHusRaR2dVNkYv8nbCf4axdGqBxiWAmaiMMd6o-mzIs,13900
|
1545
1594
|
pulumi_oci/functions/get_fusion_environment_service_attachment.py,sha256=C4tzEfKEtjLV9qtDzAQEQHzfKkSPPdVomkcjhrktHY8,13075
|
@@ -1554,16 +1603,16 @@ pulumi_oci/functions/get_pbf_listing_version.py,sha256=tyXVW4hKkEbxVWAEs049p_4lK
|
|
1554
1603
|
pulumi_oci/functions/get_pbf_listing_versions.py,sha256=6AKe30MtAGUBTfb9DMjCNWuk5vRIlY3e2dY49QxkDvI,11358
|
1555
1604
|
pulumi_oci/functions/get_pbf_listings.py,sha256=pFvTzxoVXuHrq6zFOBPtW3jxlUYfrsa_xbwh-JTytOo,11050
|
1556
1605
|
pulumi_oci/functions/invoke_function.py,sha256=WLXSvD7AIgkZHBaf56gEdUnREkjyqScuW1PH19uli7I,29283
|
1557
|
-
pulumi_oci/functions/outputs.py,sha256=
|
1606
|
+
pulumi_oci/functions/outputs.py,sha256=hHyAukBXJsXWG49-nR2pQi36RS40G0gnkyxH9syR0Fs,181865
|
1558
1607
|
pulumi_oci/fusionapps/__init__.py,sha256=s1kp4BsIjlbImjz9cXbElkILKY_KpkDt6t5m0Euco8M,594
|
1559
|
-
pulumi_oci/fusionapps/_inputs.py,sha256=
|
1560
|
-
pulumi_oci/fusionapps/fusion_environment.py,sha256=
|
1561
|
-
pulumi_oci/fusionapps/fusion_environment_admin_user.py,sha256=
|
1608
|
+
pulumi_oci/fusionapps/_inputs.py,sha256=n0sSlqBDFFePVCL8J2ChR4sD2F-BH_60ocOrtHYGaKU,34233
|
1609
|
+
pulumi_oci/fusionapps/fusion_environment.py,sha256=iKqRO378tJbhlIkH1fYQcvX64al1pbYiXXHma6DNZ94,63247
|
1610
|
+
pulumi_oci/fusionapps/fusion_environment_admin_user.py,sha256=d0sNfidbMyh7tWKAGTClBEAnmraLBRInZLAET2F4Uts,21020
|
1562
1611
|
pulumi_oci/fusionapps/fusion_environment_data_masking_activity.py,sha256=9eex7AqQdwYHAflo_V9pBytdVy7eQezKQ-eHxvur5Lc,16386
|
1563
1612
|
pulumi_oci/fusionapps/fusion_environment_family.py,sha256=6acoZCYvjNNQfsubJiN3bgk0WvOMbKDcc9vk5UPCXcY,35981
|
1564
|
-
pulumi_oci/fusionapps/fusion_environment_refresh_activity.py,sha256=
|
1613
|
+
pulumi_oci/fusionapps/fusion_environment_refresh_activity.py,sha256=okLJyeAVNWMBFcfihLE9_Tdx31ipukHnEeE4cnhtOos,28687
|
1565
1614
|
pulumi_oci/fusionapps/fusion_environment_service_attachment.py,sha256=I25MvArnZ1nhCtkF3Do4-JwP2BGEb-UAlBnuuNPSCkA,27462
|
1566
|
-
pulumi_oci/fusionapps/outputs.py,sha256=
|
1615
|
+
pulumi_oci/fusionapps/outputs.py,sha256=9cf4quH4pSEY0ElFD-K_K2Zqtl8v33btXNHUobwrz3Y,27503
|
1567
1616
|
pulumi_oci/generativeai/__init__.py,sha256=Ftsbp6SBNCD-O9MT8eM5e2mfwjdKeaS2J_z-iCW_pFQ,584
|
1568
1617
|
pulumi_oci/generativeai/_inputs.py,sha256=8nO8s3OFXG_piLmeKp71U3rpRpc_8KhPcGwyg9vZXzw,28617
|
1569
1618
|
pulumi_oci/generativeai/dedicated_ai_cluster.py,sha256=fl6QPNouP1Bn61cbguNuNyaMOETAjnnMUBUaOgQ8gEI,39837
|
@@ -1857,12 +1906,13 @@ pulumi_oci/identity/user_capabilities_management.py,sha256=JNXL9jubYvc8zO9erTk2E
|
|
1857
1906
|
pulumi_oci/identity/user_group_membership.py,sha256=44cokBCNs8FZFpYNVLCOdjCD76KTJragZtDgwn0QUWI,16069
|
1858
1907
|
pulumi_oci/identitydataplane/__init__.py,sha256=3p2MSIiFqHpIMFFl1thue91_oqZ4koRyvoMkvsjIyzo,314
|
1859
1908
|
pulumi_oci/identitydataplane/generated_scoped_access_token.py,sha256=pTANJYkQ89ODjWKA7xB-a3yi-eDSl0DY-_kAL3tHGI8,13156
|
1860
|
-
pulumi_oci/integration/__init__.py,sha256=
|
1861
|
-
pulumi_oci/integration/_inputs.py,sha256=
|
1862
|
-
pulumi_oci/integration/get_integration_instance.py,sha256=
|
1909
|
+
pulumi_oci/integration/__init__.py,sha256=zb7wbdyf9lQwsjl7BaEfFEuR7uk4-Uf8gbHazQKSxug,529
|
1910
|
+
pulumi_oci/integration/_inputs.py,sha256=LNAh0mV97JyU34nHrGwItPoGD8EOM62kvMslrhKPu5w,43069
|
1911
|
+
pulumi_oci/integration/get_integration_instance.py,sha256=6-fBBEjVD3Me_SphMg_hTPVis5pqQDSsFKc6ZaOmD4w,27223
|
1863
1912
|
pulumi_oci/integration/get_integration_instances.py,sha256=y0Y27YPezk6t-ymLEl2z57_vETPTXzIp7q-0-eozLJk,8085
|
1864
|
-
pulumi_oci/integration/integration_instance.py,sha256=
|
1865
|
-
pulumi_oci/integration/
|
1913
|
+
pulumi_oci/integration/integration_instance.py,sha256=709nZ4hukDtl6Ap1STJcaPZQDnCbbYF8tppXnvwools,85909
|
1914
|
+
pulumi_oci/integration/oracle_managed_custom_endpoint.py,sha256=ecS_lUuQ2AmgjeZCeDxWIO8aBBnSJ9io_DdF1Ki7cx8,12633
|
1915
|
+
pulumi_oci/integration/outputs.py,sha256=HMfI3SBck1Sqchiiwe7pqL-avGqILnuDYgZKUDEiCMk,92212
|
1866
1916
|
pulumi_oci/integration/private_endpoint_outbound_connection.py,sha256=Z1f9ial51ST7Dym3IS2VkvuiGZjs4KSofaGZzN6tRhk,10213
|
1867
1917
|
pulumi_oci/jms/__init__.py,sha256=tackEXftWMCfQTmbuWrk2nYrBNMPJFgYbWxPTO6jr2Q,2213
|
1868
1918
|
pulumi_oci/jms/_inputs.py,sha256=LRY-t-EAmAMD8Gf2n_0tlms_3XJf71GKHsj9z6aUlkE,85319
|
@@ -1961,7 +2011,7 @@ pulumi_oci/limits/get_services.py,sha256=17rMDgF4gbTrF2WK7p30wHnpEGOIOL0fK1fpsnA
|
|
1961
2011
|
pulumi_oci/limits/outputs.py,sha256=xa4fNDFPpSaqKpSrAFdPughUJdHX9m-eygx1JfaGGG0,24728
|
1962
2012
|
pulumi_oci/limits/quota.py,sha256=gZDt2I976ZwE2DScqmrq7b4lHwLvBPMOarzpKTD398w,30113
|
1963
2013
|
pulumi_oci/loadbalancer/__init__.py,sha256=MEaFdbTIsnehC12wXAUwvJcOEZM4WCItCZ52hjWqJWA,1231
|
1964
|
-
pulumi_oci/loadbalancer/_inputs.py,sha256=
|
2014
|
+
pulumi_oci/loadbalancer/_inputs.py,sha256=1KcVs3y0qF8HjPCY2jCwsU322v_gmx1AKlxO0ZFHJjg,191534
|
1965
2015
|
pulumi_oci/loadbalancer/backend.py,sha256=lYP1w77bVc7HYx1o-l4UxUFqx3bZlOO_TU-YCQKuEYo,35538
|
1966
2016
|
pulumi_oci/loadbalancer/backend_set.py,sha256=YOc1TqgR2qPHOtzzumYdqqeEzNjGzH3zgDm4nz5bU1E,64787
|
1967
2017
|
pulumi_oci/loadbalancer/certificate.py,sha256=rkUiE96bIzMmwm8JJPOjyPMFl6K1dTbcjieBIYQirV0,32140
|
@@ -1985,10 +2035,10 @@ pulumi_oci/loadbalancer/get_shapes.py,sha256=noo0WtheJoNjE20IqsaRSlbwSVb86EUiyJr
|
|
1985
2035
|
pulumi_oci/loadbalancer/get_ssl_cipher_suite.py,sha256=cxTQ8GAYDicfhXfLcJPE7fRzgh2NybaHddLGDctkdwU,6197
|
1986
2036
|
pulumi_oci/loadbalancer/get_ssl_cipher_suites.py,sha256=ZZ4ysdv2UE3uRh3xI7LOYwmLaEeApsZ92C65QOVGZog,5947
|
1987
2037
|
pulumi_oci/loadbalancer/hostname.py,sha256=F9eP_yLRlI53DRelLBR0WcmTXvM7zhdHz6ies_J87i0,14825
|
1988
|
-
pulumi_oci/loadbalancer/listener.py,sha256=
|
2038
|
+
pulumi_oci/loadbalancer/listener.py,sha256=3EiKHhswxx2XYrVMfp73v8Sn74sCmW3RGgeTEMcQyU8,42212
|
1989
2039
|
pulumi_oci/loadbalancer/load_balancer.py,sha256=EQkLoV2fcwuNgsgvwlywOTr89kIuKhkzj9UFflUx7nI,89710
|
1990
2040
|
pulumi_oci/loadbalancer/load_balancer_routing_policy.py,sha256=r91ApkR5eaOJYIFVPuUBUfnuJE_Njk9SWa6OdKoUpwc,18612
|
1991
|
-
pulumi_oci/loadbalancer/outputs.py,sha256=
|
2041
|
+
pulumi_oci/loadbalancer/outputs.py,sha256=gzc7vxwOz2coVQ3HLDv3NVvjTfin2hgYl746TvQpDJo,266064
|
1992
2042
|
pulumi_oci/loadbalancer/path_route_set.py,sha256=dfaS_0yWwDYV_PqCFV6f2l9SZRLm2Rpvl-3RIxITLhc,15019
|
1993
2043
|
pulumi_oci/loadbalancer/rule_set.py,sha256=jzXgusIC10zi51b5J1GfQa2QZCZGamt1PhN43DwYtyY,19322
|
1994
2044
|
pulumi_oci/loadbalancer/ssl_cipher_suite.py,sha256=9HD7aFBYxgQGoT7XOmaGBPrekOsnxKMDEiT7Y9yW0jY,19158
|
@@ -2147,18 +2197,18 @@ pulumi_oci/meteringcomputation/usage_carbon_emission.py,sha256=Es2THSFFe5aiJK_oE
|
|
2147
2197
|
pulumi_oci/meteringcomputation/usage_carbon_emissions_query.py,sha256=oq5FQn0AWpcJziBI-q9xjuvgQocstjkL-KfFbWSQCA4,14358
|
2148
2198
|
pulumi_oci/meteringcomputation/usage_statement_email_recipients_group.py,sha256=4vlRDEdXSZprnf7opdNdw-Zz062YgWMyIeSYOH77x7U,19173
|
2149
2199
|
pulumi_oci/monitoring/__init__.py,sha256=pxwgZhWmpTpbldRtkppXsIZ4Xm_FNNHvlIjr1jYMcl4,630
|
2150
|
-
pulumi_oci/monitoring/_inputs.py,sha256=
|
2200
|
+
pulumi_oci/monitoring/_inputs.py,sha256=AlV2eVfYkXgmAQKjBBSe_ieaxD_uIFKuC3r3ez3nA-U,35183
|
2151
2201
|
pulumi_oci/monitoring/alarm.py,sha256=UOf9H3nfqaWVdyMSumnDNHtweh05NVF1CnwZ_6hCXIo,126928
|
2152
|
-
pulumi_oci/monitoring/alarm_suppression.py,sha256=
|
2202
|
+
pulumi_oci/monitoring/alarm_suppression.py,sha256=SP8dKdCqddeYlQ22f486tNaudjaX7x7rttGE5p3rqJM,52855
|
2153
2203
|
pulumi_oci/monitoring/get_alarm.py,sha256=8t260ND5xR-hhF250f0RYv_Tr0BAXUg0f1CHXGhTDpA,29367
|
2154
2204
|
pulumi_oci/monitoring/get_alarm_history_collection.py,sha256=HRqizE7rP34RRNMoef52HVaS904Lo5xbmKW4z_W7dgg,11884
|
2155
|
-
pulumi_oci/monitoring/get_alarm_statuses.py,sha256=
|
2156
|
-
pulumi_oci/monitoring/get_alarm_suppression.py,sha256=
|
2157
|
-
pulumi_oci/monitoring/get_alarm_suppressions.py,sha256=
|
2205
|
+
pulumi_oci/monitoring/get_alarm_statuses.py,sha256=RYkGoSEBUBNnhcNYYrR9G665xf5tF7pzJ-ePA2l1pS4,16916
|
2206
|
+
pulumi_oci/monitoring/get_alarm_suppression.py,sha256=5HdBE_zpA31WljQ0yH6RLjUYppZ14yEXmKYg8V1l1k0,15852
|
2207
|
+
pulumi_oci/monitoring/get_alarm_suppressions.py,sha256=SdJ6rUwwCwNCBgqF2ILqonsHP88_wsBSgilcJ3lgXt4,19299
|
2158
2208
|
pulumi_oci/monitoring/get_alarms.py,sha256=DsrW9TwG_JWwsRrwbq-hILTAd4uApnb7KlOHvUaFFxw,11512
|
2159
2209
|
pulumi_oci/monitoring/get_metric_data.py,sha256=Jh3cz9XaVVbNCF3rjfeKhFSC8U9I1nu0QfMYr1eUgdk,21083
|
2160
2210
|
pulumi_oci/monitoring/get_metrics.py,sha256=daqiSqlEoyphnuqXgjYGYHdEpHGtDUoJFzOcU1AT9gQ,16518
|
2161
|
-
pulumi_oci/monitoring/outputs.py,sha256=
|
2211
|
+
pulumi_oci/monitoring/outputs.py,sha256=PRtjJraw3OjXxaNrp1-asv8NheigPUhKprpRCP8oXLw,123069
|
2162
2212
|
pulumi_oci/mysql/__init__.py,sha256=NePAVofUEJFnzHsogn-BAX3FEUTLAqx3umifZgO-SUs,908
|
2163
2213
|
pulumi_oci/mysql/_inputs.py,sha256=xEPJRjYKbjLDUneVcoBScwejDyAL5y7Uf0reki_lBV4,328341
|
2164
2214
|
pulumi_oci/mysql/channel.py,sha256=8x5wT18wXZWwIFsiw1BW92k3-k-XsL675B5vWhFsKgk,29450
|
@@ -2178,7 +2228,7 @@ pulumi_oci/mysql/get_shapes.py,sha256=VW6j5kX_LPAA4ouzM0Jd6sb7RRjfrZKz7dYbh2IlNC
|
|
2178
2228
|
pulumi_oci/mysql/heat_wave_cluster.py,sha256=tJNrg8vgd-Yt7Vp5R3LnEYH3yZ96lZVQqIUm3u9iXtU,26950
|
2179
2229
|
pulumi_oci/mysql/mysql_backup.py,sha256=SJragkrUfHktW1OCF7L9H3znmYaG1QKLPJLMH8PFUQw,47116
|
2180
2230
|
pulumi_oci/mysql/mysql_configuration.py,sha256=F14ZakjfLAmXMUcyYsEvthi3Ko4AXpX3oBK_CR4Z_68,50087
|
2181
|
-
pulumi_oci/mysql/mysql_db_system.py,sha256=
|
2231
|
+
pulumi_oci/mysql/mysql_db_system.py,sha256=pa75RyDjjtEW9cJhYuJbzoCdiwtvyYY6f2EWAyxpwMU,120391
|
2182
2232
|
pulumi_oci/mysql/outputs.py,sha256=DWtUPmGR4UAjcePONqRshe2lTE57-mhPU4qxmSLbwL8,592305
|
2183
2233
|
pulumi_oci/mysql/replica.py,sha256=jTeRnQ0e4Q_peD6eQNJOZb8v62njF9Dy2-8ybkTVNwk,46345
|
2184
2234
|
pulumi_oci/networkfirewall/__init__.py,sha256=6CxpTGYsgQuKkTAQ2Pp9wlTkaCPf0Kz2eChNR2Naaz4,2409
|
@@ -2253,8 +2303,8 @@ pulumi_oci/nosql/index.py,sha256=AE-OmFLkIvXMCeLg7rzyGCFMW1k34bEShzmoM2uBr54,237
|
|
2253
2303
|
pulumi_oci/nosql/outputs.py,sha256=8cr7qkH7yyFcyQ8aUuJYu0cVAH3ngM6FTaWvsgk74Rw,54979
|
2254
2304
|
pulumi_oci/nosql/table.py,sha256=7ih3Va8b4nPs6DElT7fBPcjh-sPsNXqUYWl4V0loG7k,40389
|
2255
2305
|
pulumi_oci/nosql/table_replica.py,sha256=GGoFdbaYRlFtXNTnujHeirETfrCbJuD0A6RhvxrE44I,20067
|
2256
|
-
pulumi_oci/objectstorage/__init__.py,sha256=
|
2257
|
-
pulumi_oci/objectstorage/_inputs.py,sha256=
|
2306
|
+
pulumi_oci/objectstorage/__init__.py,sha256=7ZA0HVSwbmzpAlVcmGRaxObcUfRWrtrhrXGRS0W9jTE,1094
|
2307
|
+
pulumi_oci/objectstorage/_inputs.py,sha256=ecGl5MAonupBYQo5p9k5Yq6K5RXLtXoQIVRWMhy3D3E,50088
|
2258
2308
|
pulumi_oci/objectstorage/bucket.py,sha256=7CC2ctnjFRd7m-BLjTd3WQ3ExWUCKjgzuhAUAeSkckY,69222
|
2259
2309
|
pulumi_oci/objectstorage/get_bucket.py,sha256=__PEomJ-SvNIBEY2ZBJHC7Dzn6mh0p2HtkHwmi5vBo8,20155
|
2260
2310
|
pulumi_oci/objectstorage/get_bucket_summaries.py,sha256=nQ7hi55Yri6dT_iXzVuTprXZ8iX0oiJohM7ZOtFX52Y,8028
|
@@ -2263,19 +2313,22 @@ pulumi_oci/objectstorage/get_namespace_metadata.py,sha256=5aTf7rZ_Q9IxSFEo0eEZ55
|
|
2263
2313
|
pulumi_oci/objectstorage/get_object.py,sha256=7lC9PIi4Mdf6y46Y6Ca1--9Gwl4CDSLN68dbQX0dM58,24026
|
2264
2314
|
pulumi_oci/objectstorage/get_object_head.py,sha256=e8Ro9Rl2FgjKmrOtAGRPeJbSPEVoxMFNUKy9KzTqMYI,8993
|
2265
2315
|
pulumi_oci/objectstorage/get_object_lifecycle_policy.py,sha256=AAhIeErMSmQxURBNaw_5AcC3YtsOP6TWefiVzEuAuD4,6274
|
2266
|
-
pulumi_oci/objectstorage/get_object_versions.py,sha256=
|
2267
|
-
pulumi_oci/objectstorage/get_objects.py,sha256=
|
2316
|
+
pulumi_oci/objectstorage/get_object_versions.py,sha256=YZHyvt3THvflj1ZUEVeV_uPUdZwbEl81oOO6e48e50U,15048
|
2317
|
+
pulumi_oci/objectstorage/get_objects.py,sha256=Ez4Y5NQRCi91-rhum3Ogh7gzX2TRFo7k5c1hyO_8FyU,12393
|
2268
2318
|
pulumi_oci/objectstorage/get_preauthrequest.py,sha256=bdbbO7dUFS8gP5ekmCD4ZEIkTaPKJqShDQ-uSRCHI64,12284
|
2269
2319
|
pulumi_oci/objectstorage/get_preauthrequests.py,sha256=ZlVhZzA4JSrZ3A-BKXOpC28qNz7zhbJZsZ4M93BYyt4,8161
|
2320
|
+
pulumi_oci/objectstorage/get_private_endpoint.py,sha256=nu6icq1urxr6vfWMIAdvo0ATvJBVd9lNhNtWJrJYJ_I,11329
|
2321
|
+
pulumi_oci/objectstorage/get_private_endpoint_summaries.py,sha256=8t0Hjl-_lxIe7uj68lPK-TC1_IuiyLSyK-FcQ2U2QMM,6005
|
2270
2322
|
pulumi_oci/objectstorage/get_replication_policies.py,sha256=nBxnp542eMMy6UktOcWVLP5HflPs29QvJNyGAig7g0Y,6716
|
2271
2323
|
pulumi_oci/objectstorage/get_replication_policy.py,sha256=XzEJM5SquaXkVxRxQ4l0VDvXuDZOdDaCqbvKZgOsCm4,11601
|
2272
2324
|
pulumi_oci/objectstorage/get_replication_sources.py,sha256=JwZfpS3a5Ptt27G-eO8nyGkzU5yt4ykfFySFj96oRtw,6657
|
2273
2325
|
pulumi_oci/objectstorage/namespace_metadata.py,sha256=GtL_NjwIEba-IkHb2JTXS8Oym_jUCgJdl9AKlboKPns,9016
|
2274
2326
|
pulumi_oci/objectstorage/object_lifecycle_policy.py,sha256=oqazmzaTImm8oQAqwGCiKzz5HS8Qeath1DedePBjZB0,15521
|
2275
|
-
pulumi_oci/objectstorage/outputs.py,sha256=
|
2327
|
+
pulumi_oci/objectstorage/outputs.py,sha256=lFbJ0MDVpgL3oh1Tbs0wT_7vVFN_7NDzprOvc0lNx0o,93157
|
2276
2328
|
pulumi_oci/objectstorage/preauthrequest.py,sha256=Je5ZSEb2TXAgcMMMnNzlMv_lFKCGyFT5EYH0HgYLt6E,40228
|
2329
|
+
pulumi_oci/objectstorage/private_endpoint.py,sha256=2g5Ghp-pNxY2f5GdnFC7_nHH_yp5XS5knqffTt094zE,27191
|
2277
2330
|
pulumi_oci/objectstorage/replication_policy.py,sha256=BR1oyeKt2OzUigJEBxuq8vmN5WUDt5v-P5KDXEa7KEY,27636
|
2278
|
-
pulumi_oci/objectstorage/storage_object.py,sha256=
|
2331
|
+
pulumi_oci/objectstorage/storage_object.py,sha256=l30GT8ELKfe1kOITCNqYcVrrDJE_-hIELpI6LQFNalk,66238
|
2279
2332
|
pulumi_oci/oce/__init__.py,sha256=YbypyttuJXMYiM858h6kKtAtfgHeh1HQhjptSf6Gd7s,403
|
2280
2333
|
pulumi_oci/oce/_inputs.py,sha256=pzHC9lmHyi2IWNYAU91reN4MCPc2nDTtO85_VGK5PQ0,2005
|
2281
2334
|
pulumi_oci/oce/get_oce_instance.py,sha256=2EuWgC-b_N4ORXDWjq5tn_2MqlqLx6HwD65nCUvo9Mw,20256
|
@@ -2369,13 +2422,13 @@ pulumi_oci/operatoraccesscontrol/operator_control.py,sha256=-13b7Un_1QOC0xARENvg
|
|
2369
2422
|
pulumi_oci/operatoraccesscontrol/operator_control_assignment.py,sha256=BxMFNbc7mk3cJuipblnizlsEPmNzfuCoiIHKxCFYGjY,75603
|
2370
2423
|
pulumi_oci/operatoraccesscontrol/outputs.py,sha256=e7LboWSESdpii1eZqM9QfVVTRhKz-D6d_1XmTbLTL-Y,76493
|
2371
2424
|
pulumi_oci/opsi/__init__.py,sha256=fdJT5pryJP3NEo_B8ZbIFU0uP9CVhq_qUyNVxTCBhdE,2224
|
2372
|
-
pulumi_oci/opsi/_inputs.py,sha256=
|
2425
|
+
pulumi_oci/opsi/_inputs.py,sha256=NQ3Bd-Iw_f1SDo4HNmivjXYTuIWXU67kNfzHKYCE0m8,99747
|
2373
2426
|
pulumi_oci/opsi/awr_hub.py,sha256=1UDsEH_f1k228EePzqbqrQXxt2Ni41IBDm9OYFF1-SI,32329
|
2374
2427
|
pulumi_oci/opsi/awr_hub_source.py,sha256=sL7yOdXCj67FFW5hI6RFAxou7uAH0fkhjJ1FMXXDHpA,46913
|
2375
2428
|
pulumi_oci/opsi/awr_hub_source_awrhubsources_management.py,sha256=X3sOgbtCXlJmmO-nOxziIFf40ez3d6ZSBhauusfhPmw,11892
|
2376
|
-
pulumi_oci/opsi/database_insight.py,sha256=
|
2429
|
+
pulumi_oci/opsi/database_insight.py,sha256=kr21hVa8kbLvzzxTX6eslN5pqaLx7bL1jsB41gYr0KU,91967
|
2377
2430
|
pulumi_oci/opsi/enterprise_manager_bridge.py,sha256=dtTjXqnO7ETutwW4RTdFZSJe7WSaLDlK9Df90WdfZPQ,33295
|
2378
|
-
pulumi_oci/opsi/exadata_insight.py,sha256=
|
2431
|
+
pulumi_oci/opsi/exadata_insight.py,sha256=QLNvEVgWM-1IzZSlCLWaCgAZHUVaFVqIyCiHxTVuWzE,65227
|
2379
2432
|
pulumi_oci/opsi/get_awr_hub.py,sha256=YwYmsvx7CpftgpYHwFDJNTlTF0PO3wvaiBsIS1SFFKE,12588
|
2380
2433
|
pulumi_oci/opsi/get_awr_hub_awr_snapshot.py,sha256=rqo1u5ONuk3NHLd9pd0yWdeUb7R3v22H6dv_cRvIFi4,9994
|
2381
2434
|
pulumi_oci/opsi/get_awr_hub_awr_snapshots.py,sha256=nkTI2Z5EiUSkNMmnxDmHYQ17Q_WFnhUBExjJrrQZcTc,11207
|
@@ -2383,14 +2436,14 @@ pulumi_oci/opsi/get_awr_hub_awr_sources_summary.py,sha256=pG8lpZcDjlZWmeHShrtc4_
|
|
2383
2436
|
pulumi_oci/opsi/get_awr_hub_source.py,sha256=QG1rxZKKiCpL9rKO3EmEHJ1nT_xUl155VNk_qHdcV2M,19607
|
2384
2437
|
pulumi_oci/opsi/get_awr_hub_sources.py,sha256=Y5iOBIXCEGxLgIZdcE5k9KRdXT2Y_KG6UC5wj5IMiRI,12048
|
2385
2438
|
pulumi_oci/opsi/get_awr_hubs.py,sha256=KSv6cE7f_o22BM9uMU8dismxhmFo0wZFxJCnF-bPHv4,9754
|
2386
|
-
pulumi_oci/opsi/get_database_insight.py,sha256=
|
2439
|
+
pulumi_oci/opsi/get_database_insight.py,sha256=k0xizoHVZZ7qC-4yrSRo0rrZVtTR5U3923FPt9TIYjk,32530
|
2387
2440
|
pulumi_oci/opsi/get_database_insights.py,sha256=xPXU1rtw2v9OT_EIlFkY0DquGDD6QXxyqnxOzDKyq_s,18640
|
2388
2441
|
pulumi_oci/opsi/get_enterprise_manager_bridge.py,sha256=d3J8-lCxtl23naxURsuohN3STsuuYXd6chmJoF5UCKI,13964
|
2389
2442
|
pulumi_oci/opsi/get_enterprise_manager_bridges.py,sha256=ModgMjP8hyUnTvkN71kQ2nUBFgE8qaAMpeTjlHnJMGs,11015
|
2390
2443
|
pulumi_oci/opsi/get_exadata_insight.py,sha256=WgYjErcyB-ThPv7lNHjHV4OPPMdW51s5UyOCyo4Gu_g,22888
|
2391
2444
|
pulumi_oci/opsi/get_exadata_insights.py,sha256=X7lduMi0t0iEZU673hd_hbUzsy_-Ubf_c8UmAUBzc94,13286
|
2392
2445
|
pulumi_oci/opsi/get_host_insight.py,sha256=ovTSjCl6OnIUUFDDO-YffcUHeZzxbvjIpEIMVWA5xus,22387
|
2393
|
-
pulumi_oci/opsi/get_host_insights.py,sha256=
|
2446
|
+
pulumi_oci/opsi/get_host_insights.py,sha256=GB1ek4MWI2TfYWKVh-iKfOr2KOmTLOq0gwPTIr-JyXQ,14689
|
2394
2447
|
pulumi_oci/opsi/get_importable_agent_entities.py,sha256=YsElKUmQnnf70Og3C9eDrutELRaRKiJ0DEXcZqpoJgU,5505
|
2395
2448
|
pulumi_oci/opsi/get_importable_agent_entity.py,sha256=kaIBgtlNKkT8GbGpf0h25nOwNvvoP4MaXbWbiLKoNHI,5489
|
2396
2449
|
pulumi_oci/opsi/get_importable_compute_entities.py,sha256=DYBgiWp-KByov_bJ71CZmg7HQzRjeG6TaUeJytlsOVw,6103
|
@@ -2407,7 +2460,7 @@ pulumi_oci/opsi/get_operations_insights_warehouses.py,sha256=tp4xurgGzlYv-O-TKpF
|
|
2407
2460
|
pulumi_oci/opsi/get_opsi_configuration.py,sha256=1aZhlCrkHYdWv_hhpCH1Qikcfuiwivje8ZJ9LOI9f2Y,19276
|
2408
2461
|
pulumi_oci/opsi/get_opsi_configuration_configuration_item.py,sha256=HJogHZjbO5m-PsJCv2G6mgiKF2luyilLjzmqj0sGMp4,11515
|
2409
2462
|
pulumi_oci/opsi/get_opsi_configurations.py,sha256=__zLhfg5AtR63zT4zTZdI8p-q7tamz3eWmSF5TyPBOc,9848
|
2410
|
-
pulumi_oci/opsi/host_insight.py,sha256=
|
2463
|
+
pulumi_oci/opsi/host_insight.py,sha256=ncI61sGYV21yZ2LDGm55L2eaAm_O3OLvXCydccnCcAQ,56700
|
2411
2464
|
pulumi_oci/opsi/news_report.py,sha256=3ZfH4Xvfok5VfZ7C4eCz3OpSSDZJVtq-O9h7olS5sRw,44786
|
2412
2465
|
pulumi_oci/opsi/operations_insights_private_endpoint.py,sha256=CN3-et3Sce7rdkukt5QZjP45369L-40SjWBTychzT5M,44558
|
2413
2466
|
pulumi_oci/opsi/operations_insights_warehouse.py,sha256=2C8XoaFzVRztEHe8HiD5i-5yrkB8wyvkztZPGWAoLZw,37833
|
@@ -2415,7 +2468,7 @@ pulumi_oci/opsi/operations_insights_warehouse_download_warehouse_wallet.py,sha25
|
|
2415
2468
|
pulumi_oci/opsi/operations_insights_warehouse_rotate_warehouse_wallet.py,sha256=V3TPkETUMnJZXcQGRbwTyq7pGu_UsLhAGDAkV9fOihQ,10540
|
2416
2469
|
pulumi_oci/opsi/operations_insights_warehouse_user.py,sha256=MCsVbIuclCOW770Thx6eFmPcbtZ4z7G0UIc1hGivj3I,38866
|
2417
2470
|
pulumi_oci/opsi/opsi_configuration.py,sha256=dNUtcVySjYOYBaOIZI0tWBFqsfjUTUdVSABV9pC9Zn8,49133
|
2418
|
-
pulumi_oci/opsi/outputs.py,sha256=
|
2471
|
+
pulumi_oci/opsi/outputs.py,sha256=nn_XjqYxadNLFVLkUK7-SwG0LaFTEVEem_OQHetcdKo,301919
|
2419
2472
|
pulumi_oci/optimizer/__init__.py,sha256=KGWDQm3UJGX6gBelEZ_vljzdfFHDtB9tXZWWCBflwvc,944
|
2420
2473
|
pulumi_oci/optimizer/_inputs.py,sha256=lgu5qtG3wGAdUrNSOPwl3uVKIKFLr8Un204OeIzda2E,30959
|
2421
2474
|
pulumi_oci/optimizer/enrollment_status.py,sha256=NDbZmcyTfJwf_aOwxWTwSIrTYyKywzUVD5fsInUywvU,16093
|
@@ -2644,6 +2697,15 @@ pulumi_oci/secrets/_inputs.py,sha256=4WQnaXBspyu4QKtJ3M0r1OLOmkC1gRuj3ODjvUFeimM
|
|
2644
2697
|
pulumi_oci/secrets/get_secretbundle.py,sha256=xsZWiTooRazimD62nxSXWp2Dkuaj7LpKnGW0FimNHzs,12154
|
2645
2698
|
pulumi_oci/secrets/get_secretbundle_versions.py,sha256=TEpNUrFugUoxoxEYMiN8Rws_D3AzHO6zpTokHRJdtio,5819
|
2646
2699
|
pulumi_oci/secrets/outputs.py,sha256=YDRSwMRHwrZ-hQM9LJySwPiFYjWiCpwt23BebSg5BPU,5715
|
2700
|
+
pulumi_oci/securityattribute/__init__.py,sha256=tjS4kvrYgAMXDFjasxqSmSTD1132-qnHc2ECNESMfrE,566
|
2701
|
+
pulumi_oci/securityattribute/_inputs.py,sha256=rn7O8Yxp_M74Htf4P_S16ok2NdqZ1lbwSTJw2Eh7IZE,7144
|
2702
|
+
pulumi_oci/securityattribute/get_security_attribute.py,sha256=rZdJsTGB9gD5SLskXVKBiy4bX0BFGdysYSAGmYQplro,12473
|
2703
|
+
pulumi_oci/securityattribute/get_security_attribute_namespace.py,sha256=ZrsUDMSgujkFCgl2mgZpRRNNTpJzHdK8SLrsGLhin2c,11964
|
2704
|
+
pulumi_oci/securityattribute/get_security_attribute_namespaces.py,sha256=NY8IxU-0DNFhOfPSD8o0mAxjcpcg9A5-gwEhaWoDgFc,10845
|
2705
|
+
pulumi_oci/securityattribute/get_security_attributes.py,sha256=sNw-XwM11B2m7VPn-GZyOY3cJkK71fIYV-Ld18S0Bhw,7853
|
2706
|
+
pulumi_oci/securityattribute/outputs.py,sha256=FmQ2owTw5-A1kMzb2saBfwoTcA4nbcNBb8FgTIOX8so,19892
|
2707
|
+
pulumi_oci/securityattribute/security_attribute.py,sha256=ErvAzkRyj8C775Y_FU0FdmdPmIVRKIRvFJOdN-h_lUw,35756
|
2708
|
+
pulumi_oci/securityattribute/security_attribute_namespace.py,sha256=7cntkXG0a98zIxrRobMbC-1MH6_6iLVslWfk1t9yWlI,34329
|
2647
2709
|
pulumi_oci/servicecatalog/__init__.py,sha256=xR-U3z6NC6fXvpIoPuenWCFZcwJsoyPfQd1mebh7_Qg,747
|
2648
2710
|
pulumi_oci/servicecatalog/_inputs.py,sha256=Soh88vSonI8IOaOonfa7I0jA6YDlncXlVh2SlWZ1RUQ,10584
|
2649
2711
|
pulumi_oci/servicecatalog/catalog.py,sha256=_8UTVqJprSkUwnOg66Nh0sYFM2xZmnSy-mBnISO50kA,21888
|
@@ -2688,8 +2750,8 @@ pulumi_oci/servicemesh/outputs.py,sha256=r_MmMqzLiU4DsDfTfZQHr8XLmkhMy4AQ966ia0i
|
|
2688
2750
|
pulumi_oci/servicemesh/virtual_deployment.py,sha256=rAGwx9QMk2_-LDkbZekfYU8KC2lOCMbkXqa2T61FbtE,41139
|
2689
2751
|
pulumi_oci/servicemesh/virtual_service.py,sha256=5WpZpHDW5GlnycUQtgyLPycu07xq_-SlPGrBT8Z_2zU,40574
|
2690
2752
|
pulumi_oci/servicemesh/virtual_service_route_table.py,sha256=YiiUozAMXpBMv8FTBJg5XjlSUgGgMTfvJxQ5LBozkY8,38210
|
2691
|
-
pulumi_oci/stackmonitoring/__init__.py,sha256=
|
2692
|
-
pulumi_oci/stackmonitoring/_inputs.py,sha256=
|
2753
|
+
pulumi_oci/stackmonitoring/__init__.py,sha256=9GqAAjxHvHbgmTBDRAoCaWr02XgNRgUmqhE_iMXT1ac,1788
|
2754
|
+
pulumi_oci/stackmonitoring/_inputs.py,sha256=bqEJ_bYlkHAFKxRTVb838WuS6VDk4s4u7OrVa4WOpOM,213587
|
2693
2755
|
pulumi_oci/stackmonitoring/baselineable_metric.py,sha256=faNGTuFC0fMUv5XVXhNMXHnEAQtZxxRn6VUdYmCJWpM,30746
|
2694
2756
|
pulumi_oci/stackmonitoring/config.py,sha256=mqQMC1xeyIWRdgLzjuSlIqBuvthgDoiz17JHfLEyC_0,31449
|
2695
2757
|
pulumi_oci/stackmonitoring/discovery_job.py,sha256=YqADrl03OMF5b5y4S16BLLgoaBPYOkVzJz5WOc2V2XU,37147
|
@@ -2701,6 +2763,8 @@ pulumi_oci/stackmonitoring/get_configs.py,sha256=u0fwNckki3w7Gr2w61vsJtzBdOmn5cd
|
|
2701
2763
|
pulumi_oci/stackmonitoring/get_discovery_job.py,sha256=-jra_4sLnKUGsVYNYZky_Fw0_6CBTDZB4L9rXmYX-HQ,13194
|
2702
2764
|
pulumi_oci/stackmonitoring/get_discovery_job_logs.py,sha256=ALNjKqHmxYYq_gu22BVb6ffiblw1UDKaKJmuStNZeJU,6947
|
2703
2765
|
pulumi_oci/stackmonitoring/get_discovery_jobs.py,sha256=Qki7b8wYESQR980w7lctbqB3-cQUTRAeNX8PX1j-g7M,6669
|
2766
|
+
pulumi_oci/stackmonitoring/get_maintenance_window.py,sha256=2xyKBQ0Ep4ovU0ggTNiwIgVHno-jUJ37xx01Vq2Sfzw,10878
|
2767
|
+
pulumi_oci/stackmonitoring/get_maintenance_windows.py,sha256=X-C5Q1LGgApSaUAJCIE5IsVC9qWhFC67Yq4U4Iq58m8,9274
|
2704
2768
|
pulumi_oci/stackmonitoring/get_metric_extension.py,sha256=rIRs-5QmqvumqKSHp52HRgduQsEcAJLNJxRHLcRgVM8,17337
|
2705
2769
|
pulumi_oci/stackmonitoring/get_metric_extensions.py,sha256=RgjAJ3mW7w1b_PELXmqEV26QptafOpjLaFhAbd2fIvY,11334
|
2706
2770
|
pulumi_oci/stackmonitoring/get_monitored_resource.py,sha256=7ZFHZ6xaG54nDb8XaGLeS1Z5J-ewgXV31cut9bcbrc0,21016
|
@@ -2711,6 +2775,9 @@ pulumi_oci/stackmonitoring/get_monitored_resource_types.py,sha256=QC0NVohxGubLKO
|
|
2711
2775
|
pulumi_oci/stackmonitoring/get_monitored_resources.py,sha256=0umM0xgGxlYK_kOB5NtHmCV7DWw4Rpy2J-ktxpjNzW4,9100
|
2712
2776
|
pulumi_oci/stackmonitoring/get_process_set.py,sha256=UmzuehsYPhHH6troxYQtkrXfo2mAKOqWrvBG4n6ryR8,10397
|
2713
2777
|
pulumi_oci/stackmonitoring/get_process_sets.py,sha256=KfGmI6e0QVBERbqG5c2J5EJbFTB1aJh3_hNj_P8kUsA,6900
|
2778
|
+
pulumi_oci/stackmonitoring/maintenance_window.py,sha256=tA4JSqrnphawAs4hW7GU7w3vuTO6c3vNdV9lid70f8E,25323
|
2779
|
+
pulumi_oci/stackmonitoring/maintenance_windows_retry_failed_operation.py,sha256=9YsCa7mLOP3-RTYBTivN3WDv4w4TaX_d4Speui-OQ-g,10391
|
2780
|
+
pulumi_oci/stackmonitoring/maintenance_windows_stop.py,sha256=z1W5jGu9MwQtSQ775dBXxiQSqwbxDY3rWxVGqmNjsv0,9655
|
2714
2781
|
pulumi_oci/stackmonitoring/metric_extension.py,sha256=6nZ6KREoyUU_NIsqoztqYQZbLOfpBU_Omer5SGRQh0A,51609
|
2715
2782
|
pulumi_oci/stackmonitoring/metric_extension_metric_extension_on_given_resources_management.py,sha256=yL39UjcaJc0NnzYIH2QfqtLfqWbt5CziwxfqdynG76w,16552
|
2716
2783
|
pulumi_oci/stackmonitoring/metric_extensions_test_management.py,sha256=Q3lFMIVw0eXApfdHRrURlSbgi2wjuaEWSmFlbaFB6FE,16863
|
@@ -2721,7 +2788,7 @@ pulumi_oci/stackmonitoring/monitored_resources_associate_monitored_resource.py,s
|
|
2721
2788
|
pulumi_oci/stackmonitoring/monitored_resources_list_member.py,sha256=NHtXiUqrjUE7TcoD7YkZoZ-SCVYW_PaXhC9OHI9y1Tg,16987
|
2722
2789
|
pulumi_oci/stackmonitoring/monitored_resources_search.py,sha256=LInVSwWYp3gstzEpBpIgXH3mXMTnG-ZrahyrfFFTyDw,84497
|
2723
2790
|
pulumi_oci/stackmonitoring/monitored_resources_search_association.py,sha256=0wcyIgMMU-NM3O0QE4KrfiHZjUGpIwil4XMP1USmfUU,29692
|
2724
|
-
pulumi_oci/stackmonitoring/outputs.py,sha256=
|
2791
|
+
pulumi_oci/stackmonitoring/outputs.py,sha256=ID84NIp5KG7KGAUKVupRXebMubxD3dSTmEDLXo1wIGU,355773
|
2725
2792
|
pulumi_oci/stackmonitoring/process_set.py,sha256=DXdoq-a7RebH80WVtrXRc-UgMTeAqWKo3MR3HlHn6Po,26324
|
2726
2793
|
pulumi_oci/streaming/__init__.py,sha256=qUfMEOAARn0aZo_vquKVA6NeGypfQ3nRHuEY5NKEThM,582
|
2727
2794
|
pulumi_oci/streaming/_inputs.py,sha256=8jSokMMKuMb7gTAC-ct2lkxJ3LMzhmVerz1bcCAYqIw,16548
|
@@ -2839,7 +2906,15 @@ pulumi_oci/waf/get_web_app_firewall_policies.py,sha256=a22mCWwFtKbt0Sh_y3pc2TNji
|
|
2839
2906
|
pulumi_oci/waf/get_web_app_firewall_policy.py,sha256=IquJLiF-KxqqLuR6_exoxp0Y1jw1gwg_CqKCFjTrfUg,15914
|
2840
2907
|
pulumi_oci/waf/network_address_list.py,sha256=IEJVkjrkKFhi88Rpo7e3Tgmdbq6URRSI05jj0xn0Pww,33851
|
2841
2908
|
pulumi_oci/waf/outputs.py,sha256=hbZfy_qxq2OVHbBFqGK-3D2mp8ZJhuhoQ7TOLpdI0Js,228012
|
2842
|
-
pulumi_oci
|
2843
|
-
pulumi_oci
|
2844
|
-
pulumi_oci
|
2845
|
-
pulumi_oci
|
2909
|
+
pulumi_oci/zpr/__init__.py,sha256=DfnODiR9GsmnlGIShEpqW7JwYWEZDO04n6HA7Say89c,464
|
2910
|
+
pulumi_oci/zpr/_inputs.py,sha256=NcGHrwT2TRM_Us10KRoE25-w0PvNvA5W--9Gep9Y83A,2177
|
2911
|
+
pulumi_oci/zpr/configuration.py,sha256=HFkWAiQ7L7FtVKTHk_ipYXFrRB77_T0-eL39g21Xh4g,27256
|
2912
|
+
pulumi_oci/zpr/get_configuration.py,sha256=pYX6rjTu8rdDGQv0-rIQsdDC_cOdZtUe6WD1nXgwMHU,10266
|
2913
|
+
pulumi_oci/zpr/get_zpr_policies.py,sha256=1QNe4eQ6jyzlwdY9dAhwUIRcRat1B1PDVV1IerTZLyI,7654
|
2914
|
+
pulumi_oci/zpr/get_zpr_policy.py,sha256=8T-CGxDxYn1TmAQRwv2mcJpw4kGQmL8pGyUaHfmeAe4,11424
|
2915
|
+
pulumi_oci/zpr/outputs.py,sha256=bLQC7_On52bzTOlKVC9oF2CSxcSo7CiwTmOkBNy7MD4,8943
|
2916
|
+
pulumi_oci/zpr/zpr_policy.py,sha256=kRQiN_Fg_m8N1oVD93ktqQhhXv8z8y08nBKuypB_t3k,32563
|
2917
|
+
pulumi_oci-2.12.0a1728642710.dist-info/METADATA,sha256=p-xf3ojh8PG0IEpzk4f9QSOpHo5doPtl-HAEy2Lc9ds,3970
|
2918
|
+
pulumi_oci-2.12.0a1728642710.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
2919
|
+
pulumi_oci-2.12.0a1728642710.dist-info/top_level.txt,sha256=0k-nWr_IdDNVF3qcT4ALORmmu1SNCLxWZfHDMN7TWsg,11
|
2920
|
+
pulumi_oci-2.12.0a1728642710.dist-info/RECORD,,
|