pulumi-oci 2.8.0a1724220787__py3-none-any.whl → 2.9.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 +86 -38
- pulumi_oci/analytics/_inputs.py +4 -4
- pulumi_oci/analytics/analytics_instance.py +199 -25
- pulumi_oci/analytics/get_analytics_instance.py +51 -2
- pulumi_oci/analytics/get_analytics_instances.py +1 -1
- pulumi_oci/analytics/outputs.py +52 -12
- pulumi_oci/announcementsservice/__init__.py +1 -0
- pulumi_oci/announcementsservice/_inputs.py +46 -6
- pulumi_oci/announcementsservice/announcement_subscription.py +14 -14
- pulumi_oci/announcementsservice/get_announcement_subscription.py +2 -2
- pulumi_oci/announcementsservice/get_services.py +173 -0
- pulumi_oci/announcementsservice/outputs.py +195 -18
- pulumi_oci/bigdataservice/_inputs.py +1 -49
- pulumi_oci/bigdataservice/bds_instance.py +0 -128
- pulumi_oci/bigdataservice/get_bds_instance.py +1 -31
- pulumi_oci/bigdataservice/outputs.py +3 -132
- pulumi_oci/database/_inputs.py +32 -0
- pulumi_oci/database/autonomous_database.py +28 -0
- pulumi_oci/database/data_guard_association.py +49 -0
- pulumi_oci/database/get_autonomous_database.py +14 -1
- pulumi_oci/database/get_autonomous_databases.py +32 -95
- pulumi_oci/database/get_data_guard_association.py +11 -1
- pulumi_oci/database/get_maintenance_run.py +14 -1
- pulumi_oci/database/maintenance_run.py +56 -7
- pulumi_oci/database/outputs.py +196 -42
- pulumi_oci/databasemanagement/__init__.py +1 -0
- pulumi_oci/databasemanagement/_inputs.py +873 -10
- pulumi_oci/databasemanagement/autonomous_database_autonomous_database_dbm_features_management.py +275 -0
- pulumi_oci/databasemanagement/database_dbm_features_management.py +37 -3
- pulumi_oci/databasemanagement/db_management_private_endpoint.py +49 -0
- pulumi_oci/databasemanagement/get_db_management_private_endpoint.py +14 -1
- pulumi_oci/databasemanagement/get_db_management_private_endpoints.py +21 -1
- pulumi_oci/databasemanagement/get_managed_database.py +47 -3
- pulumi_oci/databasemanagement/managed_database.py +56 -0
- pulumi_oci/databasemanagement/outputs.py +3331 -1397
- pulumi_oci/databasemanagement/pluggabledatabase_pluggable_database_dbm_features_management.py +35 -1
- pulumi_oci/datasafe/__init__.py +6 -0
- pulumi_oci/datasafe/_inputs.py +18 -0
- pulumi_oci/datasafe/database_security_config_management.py +244 -2
- pulumi_oci/datasafe/masking_policy_health_report_management.py +453 -0
- pulumi_oci/datasafe/masking_report_management.py +693 -0
- pulumi_oci/datasafe/outputs.py +18 -0
- pulumi_oci/datasafe/security_policy_deployment_management.py +180 -2
- pulumi_oci/datasafe/security_policy_management.py +172 -2
- pulumi_oci/datasafe/set_security_assessment_baseline_management.py +304 -0
- pulumi_oci/datasafe/set_user_assessment_baseline_management.py +304 -0
- pulumi_oci/datasafe/sql_firewall_policy_management.py +354 -2
- pulumi_oci/datasafe/unset_security_assessment_baseline_management.py +264 -0
- pulumi_oci/datasafe/unset_user_assessment_baseline_management.py +264 -0
- pulumi_oci/delegateaccesscontrol/__init__.py +24 -0
- pulumi_oci/delegateaccesscontrol/_inputs.py +306 -0
- pulumi_oci/delegateaccesscontrol/delegation_control.py +1082 -0
- pulumi_oci/{globallydistributeddatabase/private_endpoint.py → delegateaccesscontrol/delegation_subscription.py} +162 -267
- pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request.py +535 -0
- pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request_audit_log_report.py +174 -0
- pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request_histories.py +133 -0
- pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_requests.py +250 -0
- pulumi_oci/delegateaccesscontrol/get_delegation_control.py +378 -0
- pulumi_oci/delegateaccesscontrol/get_delegation_control_resources.py +133 -0
- pulumi_oci/delegateaccesscontrol/get_delegation_controls.py +213 -0
- pulumi_oci/{globallydistributeddatabase/get_private_endpoint.py → delegateaccesscontrol/get_delegation_subscription.py} +66 -105
- pulumi_oci/delegateaccesscontrol/get_delegation_subscriptions.py +176 -0
- pulumi_oci/delegateaccesscontrol/get_service_provider.py +274 -0
- pulumi_oci/delegateaccesscontrol/get_service_provider_action.py +210 -0
- pulumi_oci/delegateaccesscontrol/get_service_provider_actions.py +210 -0
- pulumi_oci/delegateaccesscontrol/get_service_providers.py +213 -0
- pulumi_oci/delegateaccesscontrol/outputs.py +1679 -0
- pulumi_oci/{fleetsoftwareupdate → desktops}/__init__.py +7 -6
- pulumi_oci/desktops/_inputs.py +483 -0
- pulumi_oci/desktops/desktop_pool.py +1348 -0
- pulumi_oci/desktops/get_desktop.py +223 -0
- pulumi_oci/desktops/get_desktop_pool.py +418 -0
- pulumi_oci/desktops/get_desktop_pool_desktops.py +208 -0
- pulumi_oci/desktops/get_desktop_pool_volumes.py +214 -0
- pulumi_oci/desktops/get_desktop_pools.py +203 -0
- pulumi_oci/desktops/get_desktops.py +214 -0
- pulumi_oci/desktops/outputs.py +1738 -0
- pulumi_oci/disasterrecovery/_inputs.py +66 -2
- pulumi_oci/disasterrecovery/dr_protection_group.py +8 -0
- pulumi_oci/disasterrecovery/get_dr_plan_executions.py +24 -0
- pulumi_oci/disasterrecovery/outputs.py +150 -10
- pulumi_oci/filestorage/mount_target.py +143 -38
- pulumi_oci/filestorage/outputs.py +44 -0
- pulumi_oci/identity/domains_group.py +34 -0
- pulumi_oci/identity/domains_user.py +34 -0
- pulumi_oci/identity/get_domains_group.py +11 -1
- pulumi_oci/identity/get_domains_user.py +11 -1
- pulumi_oci/identity/outputs.py +14 -0
- pulumi_oci/integration/get_integration_instance.py +25 -2
- pulumi_oci/integration/integration_instance.py +88 -0
- pulumi_oci/integration/outputs.py +24 -6
- pulumi_oci/kms/_inputs.py +10 -10
- pulumi_oci/kms/get_vault.py +14 -1
- pulumi_oci/kms/outputs.py +41 -30
- pulumi_oci/kms/vault.py +28 -0
- pulumi_oci/loadbalancer/load_balancer.py +224 -0
- pulumi_oci/loadbalancer/outputs.py +22 -0
- pulumi_oci/mysql/_inputs.py +225 -2
- pulumi_oci/mysql/get_mysql_backup.py +1 -1
- pulumi_oci/mysql/get_mysql_db_system.py +27 -1
- pulumi_oci/mysql/mysql_backup.py +4 -4
- pulumi_oci/mysql/mysql_db_system.py +108 -0
- pulumi_oci/mysql/outputs.py +569 -8
- pulumi_oci/ocvp/get_cluster.py +2 -2
- pulumi_oci/ocvp/get_exsi_hosts.py +2 -2
- pulumi_oci/ocvp/get_supported_vmware_software_versions.py +22 -5
- pulumi_oci/ocvp/outputs.py +2 -2
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/recoverymod/_inputs.py +0 -8
- pulumi_oci/recoverymod/get_protected_database.py +14 -1
- pulumi_oci/recoverymod/get_protection_policy.py +14 -1
- pulumi_oci/recoverymod/outputs.py +22 -8
- pulumi_oci/recoverymod/protected_database.py +80 -3
- pulumi_oci/recoverymod/protection_policy.py +49 -0
- pulumi_oci/redis/__init__.py +1 -0
- pulumi_oci/redis/_inputs.py +40 -0
- pulumi_oci/redis/get_redis_cluster.py +47 -21
- pulumi_oci/redis/get_redis_cluster_nodes.py +156 -0
- pulumi_oci/redis/get_redis_clusters.py +8 -8
- pulumi_oci/redis/outputs.py +160 -28
- pulumi_oci/redis/redis_cluster.py +177 -79
- pulumi_oci/waf/_inputs.py +29 -16
- pulumi_oci/waf/outputs.py +33 -10
- {pulumi_oci-2.8.0a1724220787.dist-info → pulumi_oci-2.9.0.dist-info}/METADATA +1 -1
- {pulumi_oci-2.8.0a1724220787.dist-info → pulumi_oci-2.9.0.dist-info}/RECORD +127 -108
- {pulumi_oci-2.8.0a1724220787.dist-info → pulumi_oci-2.9.0.dist-info}/WHEEL +1 -1
- pulumi_oci/fleetsoftwareupdate/_inputs.py +0 -553
- pulumi_oci/fleetsoftwareupdate/fsu_collection.py +0 -514
- pulumi_oci/fleetsoftwareupdate/fsu_cycle.py +0 -812
- pulumi_oci/fleetsoftwareupdate/get_fsu_collection.py +0 -225
- pulumi_oci/fleetsoftwareupdate/get_fsu_collections.py +0 -141
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py +0 -325
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycles.py +0 -167
- pulumi_oci/fleetsoftwareupdate/outputs.py +0 -1481
- pulumi_oci/globallydistributeddatabase/__init__.py +0 -15
- pulumi_oci/globallydistributeddatabase/_inputs.py +0 -1003
- pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +0 -176
- pulumi_oci/globallydistributeddatabase/get_sharded_database.py +0 -610
- pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +0 -176
- pulumi_oci/globallydistributeddatabase/outputs.py +0 -2058
- pulumi_oci/globallydistributeddatabase/sharded_database.py +0 -1816
- {pulumi_oci-2.8.0a1724220787.dist-info → pulumi_oci-2.9.0.dist-info}/top_level.txt +0 -0
@@ -1,7 +1,7 @@
|
|
1
|
-
pulumi_oci/__init__.py,sha256=
|
1
|
+
pulumi_oci/__init__.py,sha256=4uTj286c2Nca0NvEVTlM68UyZofxfjDHfpCAKiEgtus,164128
|
2
2
|
pulumi_oci/_utilities.py,sha256=aNnnaO6zRha3FhNHonuabR4fJLWGXANtK5dlh1Mz95k,10506
|
3
3
|
pulumi_oci/provider.py,sha256=9MXW-Zeh5jJ_T7w9PgSlFcu0s4_tylBZIVYdFLmo_fU,23922
|
4
|
-
pulumi_oci/pulumi-plugin.json,sha256=
|
4
|
+
pulumi_oci/pulumi-plugin.json,sha256=hGdJde3OV7zat70Kjx4PZkcRx8QZa7j0EjHaxu1UdfQ,62
|
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=n4ozaAimIFDEfAPLr2v0G1P1LFcavRfGG_SdmyyyDGQ,53339
|
@@ -76,22 +76,23 @@ pulumi_oci/aivision/model.py,sha256=57-Re1yuLm4yfSlRmondLxXk8RTxj6oP9x9vPjJfyFA,
|
|
76
76
|
pulumi_oci/aivision/outputs.py,sha256=H0O3v64uM80oCEI6Jyw8MtQu4-_6RsbPS54ugcv9rFE,41843
|
77
77
|
pulumi_oci/aivision/project.py,sha256=x9SUNu_s_fD9Z6wsgvlrMJgxuqAMg_JL-uRQ7y17Zto,25301
|
78
78
|
pulumi_oci/analytics/__init__.py,sha256=PX8rZZIsH04dn_SaouFgIJ9aVoNHlH6BS3DyDB8SYco,588
|
79
|
-
pulumi_oci/analytics/_inputs.py,sha256=
|
80
|
-
pulumi_oci/analytics/analytics_instance.py,sha256=
|
79
|
+
pulumi_oci/analytics/_inputs.py,sha256=2P5L-Qfd99Vg-qG4QWn9nOztzOHuVqG7sidRG8rMOmY,14015
|
80
|
+
pulumi_oci/analytics/analytics_instance.py,sha256=S4W__63hf791pW01DK264drfGpsKQUfWWgGQslFFBDs,55233
|
81
81
|
pulumi_oci/analytics/analytics_instance_private_access_channel.py,sha256=CLZ_eO-2a6TkBTto-TmA3EO1XLc3Z_MsU7GmX8DU97M,35487
|
82
82
|
pulumi_oci/analytics/analytics_instance_vanity_url.py,sha256=D9d0jLJvkhG47piNahgjwHFgYUs-nVnGgu3DtoUK-xQ,23489
|
83
|
-
pulumi_oci/analytics/get_analytics_instance.py,sha256=
|
83
|
+
pulumi_oci/analytics/get_analytics_instance.py,sha256=dwpP1CKVYSxNPSWqKvr-GQnUgFwRLtAXTXw_zTSTNng,15137
|
84
84
|
pulumi_oci/analytics/get_analytics_instance_private_access_channel.py,sha256=29erx7044udLrduGCXEUShvXe1P2rb9jpEj_hUTY3Oo,11453
|
85
|
-
pulumi_oci/analytics/get_analytics_instances.py,sha256=
|
86
|
-
pulumi_oci/analytics/outputs.py,sha256=
|
87
|
-
pulumi_oci/announcementsservice/__init__.py,sha256=
|
88
|
-
pulumi_oci/announcementsservice/_inputs.py,sha256
|
89
|
-
pulumi_oci/announcementsservice/announcement_subscription.py,sha256=
|
85
|
+
pulumi_oci/analytics/get_analytics_instances.py,sha256=kDwRjj-lgW-wGhRcChdBB7-9lGX2PWwWQ8pCQXIwN1k,9039
|
86
|
+
pulumi_oci/analytics/outputs.py,sha256=inhLsYFv3aBuGgyPfH8oOvJdceSIyNVh_en2Dq4OR4M,39279
|
87
|
+
pulumi_oci/announcementsservice/__init__.py,sha256=biav1K_Z05PrxMJR-69fyVM-2ER6T85aPlbEi5UikLo,598
|
88
|
+
pulumi_oci/announcementsservice/_inputs.py,sha256=dOdRIj4Ix-EQ_YT9Xkd5OGXC_BpsKJFIe_0Z36hyuEQ,7636
|
89
|
+
pulumi_oci/announcementsservice/announcement_subscription.py,sha256=m80Ub_daMhyUA9LDGepJh9iI_unWxVUW6mXrCcY6aio,47396
|
90
90
|
pulumi_oci/announcementsservice/announcement_subscriptions_actions_change_compartment.py,sha256=iUj9u5oQi0OAKuyPB9kknLeB0cvi6za1k5jTpmFXHaw,14522
|
91
91
|
pulumi_oci/announcementsservice/announcement_subscriptions_filter_group.py,sha256=FBocNpaFj0MywwvnQQ-2sOHKxF-FAVF3HokwHOsLsMA,17586
|
92
|
-
pulumi_oci/announcementsservice/get_announcement_subscription.py,sha256=
|
92
|
+
pulumi_oci/announcementsservice/get_announcement_subscription.py,sha256=zDf2hTe9KKOPMlo4dt5ybvylEpgXpvrSoodPRxl8UuY,14324
|
93
93
|
pulumi_oci/announcementsservice/get_announcement_subscriptions.py,sha256=n9mHfkqMq9QmQ1CNnzVlGWnAhc0DYPFCetRcd_C2Smc,9239
|
94
|
-
pulumi_oci/announcementsservice/
|
94
|
+
pulumi_oci/announcementsservice/get_services.py,sha256=uOfRgOC_AuNk94oZeJ4O3wOOsvCspmo46ydXUglE3O0,6738
|
95
|
+
pulumi_oci/announcementsservice/outputs.py,sha256=0k8VsXIjuJYvJxp5O8Y4B-RF7aecaFSN7Xgpkm8bDw4,26630
|
95
96
|
pulumi_oci/apigateway/__init__.py,sha256=feHoi7mAuAgjIN6cG5Iu_4htsdllNe-mgoN45508Hqo,922
|
96
97
|
pulumi_oci/apigateway/_inputs.py,sha256=iX6hxZCxYNLUug-l0VnxqFUCjjepMkqh2wnFNK_MOro,346772
|
97
98
|
pulumi_oci/apigateway/api.py,sha256=UbtBRvsP1nUz242IWkGtDJGJU4tIDIlIvzZoSLc4Zic,31695
|
@@ -204,9 +205,9 @@ pulumi_oci/bastion/get_sessions.py,sha256=Ms67QwtxxS2C4t-KJedGFQCFIgBDBpgZsA4vbn
|
|
204
205
|
pulumi_oci/bastion/outputs.py,sha256=dFzw9FVlSUtq9k4UyGm7SscFJNZeUKXY5YHkdOYqQC8,37588
|
205
206
|
pulumi_oci/bastion/session.py,sha256=qpibGkWIi6jU_LSnBTSDca0-_R4yP34cE8DPdnd7GhE,32080
|
206
207
|
pulumi_oci/bigdataservice/__init__.py,sha256=cfK9F0bg8e4EWvHKVfGmcZLVDxJui2Updr0sYM5b0QM,1142
|
207
|
-
pulumi_oci/bigdataservice/_inputs.py,sha256
|
208
|
+
pulumi_oci/bigdataservice/_inputs.py,sha256=ga_S59PR_MrQUrjXn7aNM9lFY5uw9GxfFrybIPa5E8c,143353
|
208
209
|
pulumi_oci/bigdataservice/auto_scaling_configuration.py,sha256=NrOfQEDxilZ2XaJ6TAeIxQ0wVMTlVesqaBp_eZSX8Rg,39873
|
209
|
-
pulumi_oci/bigdataservice/bds_instance.py,sha256=
|
210
|
+
pulumi_oci/bigdataservice/bds_instance.py,sha256=BT2JMbTC1SkTrci2tkT41LKzH-fEd6frgHNACdmKoNY,80314
|
210
211
|
pulumi_oci/bigdataservice/bds_instance_api_key.py,sha256=NvBH9YqnOBaq3-UYMypk1hK0TLiq_6HLQ2hYjzRMpf4,25252
|
211
212
|
pulumi_oci/bigdataservice/bds_instance_metastore_config.py,sha256=NDLpOHfKXM7Pc-9Bvop4Dl4-kExChH5UXAxWYXQagdQ,28741
|
212
213
|
pulumi_oci/bigdataservice/bds_instance_operation_certificate_managements_management.py,sha256=AQ7ngSRgoNhuoFEe3C1kjKW1p4iHw6cYtDVFSPBzk-g,33901
|
@@ -214,7 +215,7 @@ pulumi_oci/bigdataservice/bds_instance_os_patch_action.py,sha256=5Aeqz_iCbSbc6ku
|
|
214
215
|
pulumi_oci/bigdataservice/bds_instance_patch_action.py,sha256=ChyrCpt40KemSyCuJihjE_mIxTZLRF_G0q5ms_-WWiM,17688
|
215
216
|
pulumi_oci/bigdataservice/get_auto_scaling_configuration.py,sha256=60WLewCGPq1XWI40FFmIOxitrA8tvJXUdxaR6SCaIQM,10285
|
216
217
|
pulumi_oci/bigdataservice/get_auto_scaling_configurations.py,sha256=94nvRyXTTMevcvGBHdR4xNBSBwHJ-f9NabLCXfWCPx0,6504
|
217
|
-
pulumi_oci/bigdataservice/get_bds_instance.py,sha256=
|
218
|
+
pulumi_oci/bigdataservice/get_bds_instance.py,sha256=wrBKLQwcoFwXSTpxhoC3WBqj_NYLi_wiwQiT_feU7SY,23306
|
218
219
|
pulumi_oci/bigdataservice/get_bds_instance_api_key.py,sha256=LEDRianHY7EeOq_sqfvswTU2cQ7xGAxY17IkX_d6WUs,9171
|
219
220
|
pulumi_oci/bigdataservice/get_bds_instance_api_keys.py,sha256=X0vDfeyppBlVT2BwwVpFf7q5CATl_NM1alFiHHec6sg,7257
|
220
221
|
pulumi_oci/bigdataservice/get_bds_instance_get_os_patch.py,sha256=yDH0Kcd2IwOtcGyZAz83EoAXzgw4XT1ad3joyoqTlf8,8775
|
@@ -224,7 +225,7 @@ pulumi_oci/bigdataservice/get_bds_instance_metastore_configs.py,sha256=UPIrLcg_p
|
|
224
225
|
pulumi_oci/bigdataservice/get_bds_instance_patch_histories.py,sha256=hGkSBmQkSHwcyII6yyTD1pzXCAxDIBDbPA5DLzn0vrg,8089
|
225
226
|
pulumi_oci/bigdataservice/get_bds_instance_patches.py,sha256=2dZcMmctqpsshNLcbIa1OE2fz5s7BEbHVbTzbhWqa5c,4869
|
226
227
|
pulumi_oci/bigdataservice/get_bds_instances.py,sha256=vCWLvz6Dq8PlTPUEIu9pewBVioF5vRPE4WDRMdtsktA,6584
|
227
|
-
pulumi_oci/bigdataservice/outputs.py,sha256=
|
228
|
+
pulumi_oci/bigdataservice/outputs.py,sha256=XQgqlH8VHFFQupP_pP73T1Wx5O6dKAi7-qEae_x2BAU,326678
|
228
229
|
pulumi_oci/blockchain/__init__.py,sha256=b2CLshPLLmnO6Om3TLPGauDJ2z_cYIHxtBonK4zQJEs,610
|
229
230
|
pulumi_oci/blockchain/_inputs.py,sha256=JqE3ivHgQxJlWqZmgHSip04a9NnyOCmIr7eGrFHzcqo,20903
|
230
231
|
pulumi_oci/blockchain/blockchain_platform.py,sha256=WtWqdO8X1Kaf1bQveqlaWVCrpSE9z2fuYUOoN18L5g0,62980
|
@@ -657,13 +658,13 @@ pulumi_oci/core/volume_group.py,sha256=uNPw3Zr3UpAsCLYAcEKBqOBaaqIQ7UbXept2zefEk
|
|
657
658
|
pulumi_oci/core/volume_group_backup.py,sha256=gYEVRsYqF_lSAwlNM1bdh6NqdW7Aj9XFLpDYbgkBL94,44533
|
658
659
|
pulumi_oci/core/vtap.py,sha256=GHC-Y98EFyuwzKXH3cZP2zrS6bJbIFsqBryn_KPGIno,62627
|
659
660
|
pulumi_oci/database/__init__.py,sha256=TbvsgFRkvTw9PdDU7h0BQI888lpmOooIdL9UuMQ5waA,9241
|
660
|
-
pulumi_oci/database/_inputs.py,sha256=
|
661
|
+
pulumi_oci/database/_inputs.py,sha256=TX5EKzTLPR1pky1qrCz6rthRSNytPyk5eX60vYlJ9EU,701771
|
661
662
|
pulumi_oci/database/application_vip.py,sha256=eoL2Qe_ajH0T5ENsZZXrhKHdSbdqsnYnDRUoWkvy5C0,29151
|
662
663
|
pulumi_oci/database/autonomous_container_database.py,sha256=MEzfyfF0XV2Qgh2q0S8TWpSFLX7PjwqU8_K-OjMSH2k,162865
|
663
664
|
pulumi_oci/database/autonomous_container_database_dataguard_association.py,sha256=8360eR9E3DX9CMGFBKhMFmLxoiAkmtK5HizuY-vzir0,75338
|
664
665
|
pulumi_oci/database/autonomous_container_database_dataguard_association_operation.py,sha256=4CTcZm42cqeCufLt0HAMto57mLeFbELpvlBZSoPEDi4,17767
|
665
666
|
pulumi_oci/database/autonomous_container_database_dataguard_role_change.py,sha256=dAjgy90q3k5T6dtvfFzJFXQrKECSyK08MCECei2BJ1k,12249
|
666
|
-
pulumi_oci/database/autonomous_database.py,sha256=
|
667
|
+
pulumi_oci/database/autonomous_database.py,sha256=loEIiByVhkS9CBk3c8KUshDlxqa-DBQupHWajleDDbg,474103
|
667
668
|
pulumi_oci/database/autonomous_database_backup.py,sha256=edHZOiY3L6wlC1aHegACbHpg8EZBRdy8i4dYIlGX8u8,42584
|
668
669
|
pulumi_oci/database/autonomous_database_instance_wallet_management.py,sha256=hyPsFWiUcH0tqSYzz6D6Qz2lJpXctQvRIdxcXwB_4AA,18571
|
669
670
|
pulumi_oci/database/autonomous_database_regional_wallet_management.py,sha256=Y70BXlKqhrckRGSzVJ481GrQ5LP-CDu6OZiSE_6SO9k,15583
|
@@ -682,7 +683,7 @@ pulumi_oci/database/cloud_database_management.py,sha256=rhFw3yjrEVNfr_ptz6bhgdI3
|
|
682
683
|
pulumi_oci/database/cloud_exadata_infrastructure.py,sha256=WRWwK9xkInTvs2wjwyzJa3P8HqdTixsvfnOKOgh9D8s,80075
|
683
684
|
pulumi_oci/database/cloud_vm_cluster.py,sha256=1sXUxse9qRewKvN-AwVzHgABfCfmZtZhkXxe-ir4vOs,144370
|
684
685
|
pulumi_oci/database/cloud_vm_cluster_iorm_config.py,sha256=sB9OU5Mf5sVTHYqT_sb4VmeIl4wHH87oFf9c8qTMVaw,16398
|
685
|
-
pulumi_oci/database/data_guard_association.py,sha256=
|
686
|
+
pulumi_oci/database/data_guard_association.py,sha256=RhWnvaCDuVwDwpGqusT0U5p5tw9yKkwwMlCTKbL7s3I,151027
|
686
687
|
pulumi_oci/database/database.py,sha256=AqFz-oWbQHHYz3vUtZng7wgEPueS5-KrPx4b9zyz32g,76785
|
687
688
|
pulumi_oci/database/database_software_image.py,sha256=7hQyKcLMrGQ48oAMAzEshPlmroNd5IfdrxG1oheOpjk,46548
|
688
689
|
pulumi_oci/database/database_upgrade.py,sha256=v__-3IpW5_9ObaYEkPihaH69XMIUMaxvoR3eRC77BeE,58148
|
@@ -720,7 +721,7 @@ pulumi_oci/database/get_autonomous_container_database_resource_usage.py,sha256=x
|
|
720
721
|
pulumi_oci/database/get_autonomous_container_database_versions.py,sha256=EUdbXE1ezKnD-C7t2f6vqpzoU7eVuf8M6Z56ZWbpvqw,7160
|
721
722
|
pulumi_oci/database/get_autonomous_container_databases.py,sha256=vNkiBpo27ABDCPrBo7z3ImZdxbFeS1-9fkMwxBgLwRM,16894
|
722
723
|
pulumi_oci/database/get_autonomous_container_patches.py,sha256=ENTNGodsWVnICHLj77iy6N8HD0gwnr52oIu9u_kRqGU,8214
|
723
|
-
pulumi_oci/database/get_autonomous_database.py,sha256=
|
724
|
+
pulumi_oci/database/get_autonomous_database.py,sha256=zjIKfOr6odI-qP2_IXrxVoJgT4Gd4HR66e8Jhh8pOuQ,106959
|
724
725
|
pulumi_oci/database/get_autonomous_database_backup.py,sha256=cBVPgkkUq-IYcmfrwK1BnhpUEY2lZOMXvhGX53y23BI,17574
|
725
726
|
pulumi_oci/database/get_autonomous_database_backups.py,sha256=cNkIc5T6b8b8RUV2G5ENOWqsRlzJ4n5Vk_Oylj59zIM,10222
|
726
727
|
pulumi_oci/database/get_autonomous_database_dataguard_association.py,sha256=YyuIu1D7g6dwatNlB1DCXn0qqvpW0xeGevsSYZLRESo,13543
|
@@ -732,7 +733,7 @@ pulumi_oci/database/get_autonomous_database_regional_wallet_management.py,sha256
|
|
732
733
|
pulumi_oci/database/get_autonomous_database_software_image.py,sha256=K7pIsSOJqO0Vj8vlaMDk-i6xQ65cNXIYqLAZuMBFQog,12167
|
733
734
|
pulumi_oci/database/get_autonomous_database_software_images.py,sha256=S0Vp7uKvPejUQsiE_id0QGsUQutK-OD_CtLWUn4R-DE,9726
|
734
735
|
pulumi_oci/database/get_autonomous_database_wallet.py,sha256=5xXyuVR8Saa6ZktzxFAT13-hbDCSKGuL4o59A7NwvWA,7777
|
735
|
-
pulumi_oci/database/get_autonomous_databases.py,sha256=
|
736
|
+
pulumi_oci/database/get_autonomous_databases.py,sha256=OS-qUwQEX3kI3pjOl8RbiARqC38mRp5TcV5lbWPRiVI,18520
|
736
737
|
pulumi_oci/database/get_autonomous_databases_clones.py,sha256=gM7iMcD1TVZujAzOZD3Fea1cdD01AdSf31f1wrouvEQ,9930
|
737
738
|
pulumi_oci/database/get_autonomous_db_preview_versions.py,sha256=YgPJHqQSS5rzV3UlPo1kY0Vwm7-NW_KwZtPLl4HtAuM,5987
|
738
739
|
pulumi_oci/database/get_autonomous_db_versions.py,sha256=5WzvgiXjLJ3jhSoArKL-zx-Ukaf4s5g0eB4mWTFXcVA,6682
|
@@ -760,7 +761,7 @@ pulumi_oci/database/get_cloud_exadata_infrastructures.py,sha256=R_YbV8M7NBpqnYNu
|
|
760
761
|
pulumi_oci/database/get_cloud_vm_cluster.py,sha256=y7yqeOuzTlfZtLGqScSYynZspTXlKO1Q282L_6D4T9Y,37469
|
761
762
|
pulumi_oci/database/get_cloud_vm_cluster_iorm_config.py,sha256=HMjmZZzZVNMn047jiR4CjsK0QIFN2d0Nv4z6N1fCN8I,6599
|
762
763
|
pulumi_oci/database/get_cloud_vm_clusters.py,sha256=cA3LArmjrLQuqmVBaYrcA7mQHFk-DjubfARgHdxeDBc,9031
|
763
|
-
pulumi_oci/database/get_data_guard_association.py,sha256=
|
764
|
+
pulumi_oci/database/get_data_guard_association.py,sha256=lD12iEWRnGf-7PUVkqNpATJ-QDjXxodC6DuhzcvanOg,28680
|
764
765
|
pulumi_oci/database/get_data_guard_associations.py,sha256=XjcAalaMVfha5AePL9Yqk0IVwVZckql5ljvPXlQic-4,5419
|
765
766
|
pulumi_oci/database/get_database.py,sha256=dGosC9bzp3TurUhHbTatszemcwivTf7dPR75USG0ma8,25723
|
766
767
|
pulumi_oci/database/get_database_maintenance_run_histories.py,sha256=N2wU2v814yX_gWoo6oevZ75j44mNzLbuAWogtl7FfGw,11335
|
@@ -821,7 +822,7 @@ pulumi_oci/database/get_gi_versions.py,sha256=XnPQ_OJP503nKEjJwPA9-Fng5QugjPLgys
|
|
821
822
|
pulumi_oci/database/get_infrastructure_target_version.py,sha256=rj5AidhzzytvifXV0fqPpggwy6-YkiUbsj3tKp7ZNPw,8502
|
822
823
|
pulumi_oci/database/get_key_store.py,sha256=UEx_PxgDD6fz9WSuwdv2iWvzxycdHtErINsDtr62VdM,9599
|
823
824
|
pulumi_oci/database/get_key_stores.py,sha256=EF5dC-ARE_Q4UwRUDgtwDzDodkETXE5J50e07cI2ZzY,4843
|
824
|
-
pulumi_oci/database/get_maintenance_run.py,sha256=
|
825
|
+
pulumi_oci/database/get_maintenance_run.py,sha256=PahWzKP1X3gb3cacRq6e11Z8S7tGbrmD3kt926TCLPY,23644
|
825
826
|
pulumi_oci/database/get_maintenance_runs.py,sha256=jbrilpwi6aIpyfatlmPRjLsw66vSpsH_GNYLPL3c_As,11800
|
826
827
|
pulumi_oci/database/get_managed_preferred_credential.py,sha256=_1wTpHbsyQZ_EjS94s1nSDePlTGhPyS9ojLGCsPjdHs,9701
|
827
828
|
pulumi_oci/database/get_managed_preferred_credentials.py,sha256=ioQmWOYxXPsJAPVA0ihxvOZFmdkpl63isf32M6KnZdM,5894
|
@@ -845,9 +846,9 @@ pulumi_oci/database/get_vm_cluster_update_history_entry.py,sha256=9M0xnS6OknJNfW
|
|
845
846
|
pulumi_oci/database/get_vm_cluster_updates.py,sha256=2bdUa1h2-TjJYCW9MJEn2iuSqGFnc9gbu5ul7giqnuc,7173
|
846
847
|
pulumi_oci/database/get_vm_clusters.py,sha256=xP29YtPcMIp3H67d7u3wjSDuYlMoPqrNQwamBv9tu7U,8803
|
847
848
|
pulumi_oci/database/key_store.py,sha256=dG1I-PEq_v_9DMEzE2ftXKI_KxMADsUunjYehQxABug,27615
|
848
|
-
pulumi_oci/database/maintenance_run.py,sha256=
|
849
|
+
pulumi_oci/database/maintenance_run.py,sha256=o1swLjSL5DUkr5U28J_fr0RXxBSGaI_ow8_CGTkIfgM,61969
|
849
850
|
pulumi_oci/database/oneoff_patch.py,sha256=fIBCaiKbpcEnOWljP5C5elcf5-WKJI2lNXUSQFUAEA4,38780
|
850
|
-
pulumi_oci/database/outputs.py,sha256=
|
851
|
+
pulumi_oci/database/outputs.py,sha256=58Wmd09GFucSQ1pO4RSZKTE2Qcn7E8zXdIWotJdrkuU,2247981
|
851
852
|
pulumi_oci/database/pluggable_database.py,sha256=vU6z1Iqab2k3tvHMzcLyvjxORR4PvOrPgZ_xtUjeRhY,73835
|
852
853
|
pulumi_oci/database/pluggable_database_managements_management.py,sha256=fXgBUT0BGYwBvvs-84awzTQdfANyWD4j6-rsQ2MtxSY,52723
|
853
854
|
pulumi_oci/database/pluggable_databases_local_clone.py,sha256=JYqZFFx28ijKHxxo5ZCsXDluwnraH6vnh2jUMxLzaa8,50932
|
@@ -856,10 +857,11 @@ pulumi_oci/database/vm_cluster.py,sha256=cmfYI2zWuceQRvDyFgUdELRD7dSwBfBclDPJM1n
|
|
856
857
|
pulumi_oci/database/vm_cluster_add_virtual_network.py,sha256=gF6Scpe7l5CTi-t4A_lg8r5b_yJI9gLLU9NMS4IxruM,53276
|
857
858
|
pulumi_oci/database/vm_cluster_network.py,sha256=XXRyF0dcOv1oAHVR7g4KjUT4wLxWoQbZj-OSf32wF2E,50739
|
858
859
|
pulumi_oci/database/vm_cluster_remove_virtual_machine.py,sha256=1idjLiJDzQNiYcrWOXBvhs_lPeZL0v3zZAJLs_heAYM,51019
|
859
|
-
pulumi_oci/databasemanagement/__init__.py,sha256=
|
860
|
-
pulumi_oci/databasemanagement/_inputs.py,sha256=
|
861
|
-
pulumi_oci/databasemanagement/
|
862
|
-
pulumi_oci/databasemanagement/
|
860
|
+
pulumi_oci/databasemanagement/__init__.py,sha256=yd8oU2rEb_imqdI2eKtdVVY7VLXKzjCwoFMmUNI0TRA,7131
|
861
|
+
pulumi_oci/databasemanagement/_inputs.py,sha256=D8pO6n93OzC6aQL-TW6U06KngabG6cXaxanNq3vjMag,439105
|
862
|
+
pulumi_oci/databasemanagement/autonomous_database_autonomous_database_dbm_features_management.py,sha256=uet9MLL2LDJe7QB9K6bhh9wBJe5Y4wU6HBjZI6dpPOY,16817
|
863
|
+
pulumi_oci/databasemanagement/database_dbm_features_management.py,sha256=FHTss53vazGUJKe9kxADrW4AqZGPyE1Byxk9IEb6IWc,16487
|
864
|
+
pulumi_oci/databasemanagement/db_management_private_endpoint.py,sha256=FzQJuDmvsj5ovWPG0fLH7lqFyTOFXLK3Y1hiJL57iR0,40207
|
863
865
|
pulumi_oci/databasemanagement/external_asm.py,sha256=r4Anyv5hjZ4jdQYlEK2AF-4tdo1NZzyA_iz_mjgBczE,39922
|
864
866
|
pulumi_oci/databasemanagement/external_asm_instance.py,sha256=tflJgBusXtJIwskZp953MW6KfUte_-3NdoG1bBx19wM,35418
|
865
867
|
pulumi_oci/databasemanagement/external_cluster.py,sha256=0-krOMD-Gtk7ab8l8jPD5uHqbm-2eGZI1v8gGGucSgY,44130
|
@@ -880,10 +882,10 @@ pulumi_oci/databasemanagement/external_listener.py,sha256=kckzBEZ6IdQuPx68a9j7gh
|
|
880
882
|
pulumi_oci/databasemanagement/externalcontainerdatabase_external_container_dbm_features_management.py,sha256=43ie08jPM7kG6KOYxoeqBiTRps5bQFPunNmE6v4F6vQ,17176
|
881
883
|
pulumi_oci/databasemanagement/externalnoncontainerdatabase_external_non_container_dbm_features_management.py,sha256=-E7d5NGM-kTfAW2l0uXtH5kFM0oZxrJFyGRR3r2BLVw,17730
|
882
884
|
pulumi_oci/databasemanagement/externalpluggabledatabase_external_pluggable_dbm_features_management.py,sha256=Vyc9-B76WHodMf_GSakLsWtBmKDMOUXqP0qMTxWlVVw,17176
|
883
|
-
pulumi_oci/databasemanagement/get_db_management_private_endpoint.py,sha256=
|
885
|
+
pulumi_oci/databasemanagement/get_db_management_private_endpoint.py,sha256=sUG749QZwLohJIvZ7swTWMiAF149gCNGS7kLy7POY6I,13210
|
884
886
|
pulumi_oci/databasemanagement/get_db_management_private_endpoint_associated_database.py,sha256=SjfNwxYfOlyJr6jwzS6JZML1vre_pVz2QU_q7wR1uR8,6842
|
885
887
|
pulumi_oci/databasemanagement/get_db_management_private_endpoint_associated_databases.py,sha256=VsJ7MBrqe8K09BxpoVMtvTT_QCyAT6sQJSRt051vSY4,8199
|
886
|
-
pulumi_oci/databasemanagement/get_db_management_private_endpoints.py,sha256=
|
888
|
+
pulumi_oci/databasemanagement/get_db_management_private_endpoints.py,sha256=5FTkiwWeeYVT6cVZDRKJGZt6BIq6pUqms1S1AXqi7EA,12062
|
887
889
|
pulumi_oci/databasemanagement/get_external_asm.py,sha256=0QWTMvl1ZlGJYozy-4rXQyYZkVNZSuaOnqyWKuHq1h0,14948
|
888
890
|
pulumi_oci/databasemanagement/get_external_asm_configuration.py,sha256=DX8Q73d6OLsGXiDgxGtw05fh-jKZobHqM83BUOELijA,5902
|
889
891
|
pulumi_oci/databasemanagement/get_external_asm_disk_groups.py,sha256=8_t0Ofe_UOQTQN3u8E9ZUWqIsAnzNEcusMNaOpp4LLo,6819
|
@@ -921,7 +923,7 @@ pulumi_oci/databasemanagement/get_external_listener_services.py,sha256=DxN8MjOQF
|
|
921
923
|
pulumi_oci/databasemanagement/get_external_listeners.py,sha256=oMsxzdlMcf91Otgj28FwqsHeAHqgySOfdQla1jYOc44,8033
|
922
924
|
pulumi_oci/databasemanagement/get_job_executions_status.py,sha256=MIUO3qW6dMVa-LGbKiYItS93n4bNotT3D3DgRGOPrQA,10308
|
923
925
|
pulumi_oci/databasemanagement/get_job_executions_statuses.py,sha256=KTI3ULjALufjDOHLlarME-qKFnTJk6uosBtEo3s7XM4,11705
|
924
|
-
pulumi_oci/databasemanagement/get_managed_database.py,sha256=
|
926
|
+
pulumi_oci/databasemanagement/get_managed_database.py,sha256=RSnE0y7__sftVD1bqrzKeQaydQLdeC3wQ_f__PuGQas,17969
|
925
927
|
pulumi_oci/databasemanagement/get_managed_database_addm_task.py,sha256=z3BIsFZ9weTIO58IuAdMCV-ZKWm9YIH6odBvyumGV7k,6898
|
926
928
|
pulumi_oci/databasemanagement/get_managed_database_addm_tasks.py,sha256=uzvvms8nyInV2k8cCj6SCG7STsG67uUflFdPSWC0EYY,7998
|
927
929
|
pulumi_oci/databasemanagement/get_managed_database_alert_log_count.py,sha256=T4Zp71vHoFUitgB_8ajx1nh15ky3Wlfg2PC7Qnde6Lg,12916
|
@@ -980,13 +982,13 @@ pulumi_oci/databasemanagement/get_managed_my_sql_database_sql_data.py,sha256=dqd
|
|
980
982
|
pulumi_oci/databasemanagement/get_managed_my_sql_databases.py,sha256=AHG3Qo9b4oZ4Mtn9BhQKFKG9uHndDQTuSDzSF-2HrjM,5660
|
981
983
|
pulumi_oci/databasemanagement/get_named_credential.py,sha256=-_4fD4JJPsjPk8tyzSl2Lu4CxLd5aOSxz5pLIgbtNFE,12104
|
982
984
|
pulumi_oci/databasemanagement/get_named_credentials.py,sha256=C7QPURGz2nbQYBVRfec1HEPLAKkBrFWkOOCwEya9TDw,9185
|
983
|
-
pulumi_oci/databasemanagement/managed_database.py,sha256=
|
985
|
+
pulumi_oci/databasemanagement/managed_database.py,sha256=nOUN6t58XyZ-XBdYHfBRLHYU2IHwzMlijz460ytpc1k,44796
|
984
986
|
pulumi_oci/databasemanagement/managed_database_group.py,sha256=gwAWPgeG8omae0RzSeesq4T-NvEjroELiXd9bxaukfQ,32988
|
985
987
|
pulumi_oci/databasemanagement/managed_databases_change_database_parameter.py,sha256=WwLjoMdQth3bdwfpBu3fx3_ZEk543Q_52DtowbX8ESs,29306
|
986
988
|
pulumi_oci/databasemanagement/managed_databases_reset_database_parameter.py,sha256=gJskw2kiB8899I1CjF1FxPHI9zyJcNYMY69Xkc_HCws,26545
|
987
989
|
pulumi_oci/databasemanagement/named_credential.py,sha256=uwsFxV2wK-IxZT6hF9N5UejyUSDtTSlP6VJlTJXOApI,40094
|
988
|
-
pulumi_oci/databasemanagement/outputs.py,sha256=
|
989
|
-
pulumi_oci/databasemanagement/pluggabledatabase_pluggable_database_dbm_features_management.py,sha256=
|
990
|
+
pulumi_oci/databasemanagement/outputs.py,sha256=6wwML3L5nUASce7FRhv_1X7FIVVaVPqOXSd9O55a32Q,1331940
|
991
|
+
pulumi_oci/databasemanagement/pluggabledatabase_pluggable_database_dbm_features_management.py,sha256=juSHwTm6X38ZK3C_2C3p0_RR4ioheFjbnbJ3EQ5Lql8,18743
|
990
992
|
pulumi_oci/databasemigration/__init__.py,sha256=wq-hZhb2rxiz9X5A9L-7N8RfkwhB3NXCbKKHsqsNolI,614
|
991
993
|
pulumi_oci/databasemigration/_inputs.py,sha256=bktLSb2okzBK8pyAABMA6tlrmuDCUJguI_4k5t0fJS4,94181
|
992
994
|
pulumi_oci/databasemigration/connection.py,sha256=X2X9pmk4R060xykkvdbDCwPcfO8OdiUO2UVwaR94ZUw,97065
|
@@ -1095,8 +1097,8 @@ pulumi_oci/datalabellingservice/get_annotation_formats.py,sha256=DhdbfQvM-dOIVSM
|
|
1095
1097
|
pulumi_oci/datalabellingservice/get_dataset.py,sha256=ndxUU4kX61GhwrHiHPmA3DdsGI5jq149r_ko2zT6b_c,15760
|
1096
1098
|
pulumi_oci/datalabellingservice/get_datasets.py,sha256=2KfZ1jk-m2eWzUCFUXrNbEb3ueOpj7vU7xmSr_Q3Ajw,8633
|
1097
1099
|
pulumi_oci/datalabellingservice/outputs.py,sha256=6SIVioXbg3T5tvUsVMy4MGcPhUzNPuDIUqRBhBIvBLs,52742
|
1098
|
-
pulumi_oci/datasafe/__init__.py,sha256=
|
1099
|
-
pulumi_oci/datasafe/_inputs.py,sha256=
|
1100
|
+
pulumi_oci/datasafe/__init__.py,sha256=xK2lKpGBfx7AtE5T6czuHrq8J4HjGxKd81uEfukt4lw,7720
|
1101
|
+
pulumi_oci/datasafe/_inputs.py,sha256=jNqhb6h8zI7-Ycddu1NtN-t8wQPjm9_3N9eIDR8XRHM,319654
|
1100
1102
|
pulumi_oci/datasafe/add_sdm_columns.py,sha256=Qu2DJoc3hS0mD6K7zPG_4agRUHJ-epqqnJA8phUoKlc,5414
|
1101
1103
|
pulumi_oci/datasafe/alert.py,sha256=HsfslLYlrfw21x5n4rE1tbP7fgkqV87ljxvHZB_7YwQ,43879
|
1102
1104
|
pulumi_oci/datasafe/alert_policy.py,sha256=I1I3Exkzs-HyGeKuHIEebT1QuYEPFzQ0p3LsUL85KY4,38233
|
@@ -1115,7 +1117,7 @@ pulumi_oci/datasafe/compare_user_assessment.py,sha256=jMmIv-PURaYZ4TU_4sHNDndBul
|
|
1115
1117
|
pulumi_oci/datasafe/data_safe_configuration.py,sha256=cU2aBvoTl2wkWJkQHOvMziKwv9-1gk76Lvw0JTV9tWM,21609
|
1116
1118
|
pulumi_oci/datasafe/data_safe_private_endpoint.py,sha256=rQOxNsmB-u4wISjW--xvJnd-DonqrBYTKLX27lbjtyo,37370
|
1117
1119
|
pulumi_oci/datasafe/database_security_config.py,sha256=xhTenEIy7rzcTUDw4_QMLpATPfa4QVuNMmwvvV9LYtY,38685
|
1118
|
-
pulumi_oci/datasafe/database_security_config_management.py,sha256=
|
1120
|
+
pulumi_oci/datasafe/database_security_config_management.py,sha256=9RqpckyI4H333W73Zsn6yHP6QTAOOtetrY6krkGW5Q8,38838
|
1119
1121
|
pulumi_oci/datasafe/discovery_jobs_result.py,sha256=Y5ixYGeyvEyPQCfJ7mVwCvfuhNGl9NErIhdBCefkvV4,43513
|
1120
1122
|
pulumi_oci/datasafe/discovery_mod.py,sha256=pkxbTyLGXxOROtDgr7a_O4JXxRVlUFHW5_aQ3CoSneQ,77736
|
1121
1123
|
pulumi_oci/datasafe/get_alert.py,sha256=y05J7aEGj2tar1ONBDsEBehuP09KSkeWrqGyAQ4WlJI,16093
|
@@ -1236,30 +1238,36 @@ pulumi_oci/datasafe/mask_data.py,sha256=C0Cl-E4PXqjBNjtbYuzfJxlWWZhFUQp5-9oWqWMm
|
|
1236
1238
|
pulumi_oci/datasafe/masking_policies_apply_difference_to_masking_columns.py,sha256=RK84k_OpVYmhoJbCPzoWybLdsFUI8YbSmXpUp50sY-8,8203
|
1237
1239
|
pulumi_oci/datasafe/masking_policies_masking_column.py,sha256=RhMbR62fLfrHXXQNmtRsnSxnmTcPYj7kOPVYk1_KYj8,58391
|
1238
1240
|
pulumi_oci/datasafe/masking_policy.py,sha256=MUHIzLedBXGFJf9yB3z3d14ha-FOUidU4og43dSSq2c,71120
|
1241
|
+
pulumi_oci/datasafe/masking_policy_health_report_management.py,sha256=AqR0c26oDt0g8EaF5htfUCHEGbbOjBlcOLNJLflG57c,19363
|
1242
|
+
pulumi_oci/datasafe/masking_report_management.py,sha256=ntTPk_0XpDYsEdh1lnGyd2UjEDUGkNNpF1p-AYvtIc8,32009
|
1239
1243
|
pulumi_oci/datasafe/on_prem_connector.py,sha256=SmyrtOUyJRLQyFC-L5B96elXyK6Hwrvu9qxi4usDe-4,29798
|
1240
|
-
pulumi_oci/datasafe/outputs.py,sha256=
|
1244
|
+
pulumi_oci/datasafe/outputs.py,sha256=4lXe3Zbmk922s1k8CUtz6hogVc3Fh834sZzGRQBRsm4,1262065
|
1241
1245
|
pulumi_oci/datasafe/report.py,sha256=okh2QxEHNTw32Ec_nNa7Z8_Bxht25znqybyxPeA5HsM,28114
|
1242
1246
|
pulumi_oci/datasafe/report_definition.py,sha256=YBskIZHWnENXGMJz-0YahAjK0JcD00c1yg43oicfHGU,68554
|
1243
1247
|
pulumi_oci/datasafe/sdm_masking_policy_difference.py,sha256=LXpmm4CgDijAYUSg3xt3zA7PkB4HRFQxiFlqQgE0aig,37852
|
1244
1248
|
pulumi_oci/datasafe/security_assessment.py,sha256=otbTko7cAPYIlDd0mKPf3dPF9--s9jt7nHRqbvTq36g,61654
|
1245
1249
|
pulumi_oci/datasafe/security_policy.py,sha256=w9wyC5T108Ga6cUnNTLLdgjw7JvZY3jZLNlTRoYBZ8w,29311
|
1246
1250
|
pulumi_oci/datasafe/security_policy_deployment.py,sha256=crqTPDdylFIHTmTfJp0CIftgge10t7y6O4v8zwiCMm8,33028
|
1247
|
-
pulumi_oci/datasafe/security_policy_deployment_management.py,sha256=
|
1248
|
-
pulumi_oci/datasafe/security_policy_management.py,sha256
|
1251
|
+
pulumi_oci/datasafe/security_policy_deployment_management.py,sha256=oO0c4nzm0VMHidJ5hHMpGPaZ638BsuIAcwT66qcY78U,30809
|
1252
|
+
pulumi_oci/datasafe/security_policy_management.py,sha256=-XHjXmIzcIj7ByTSFfwbFtWA_GrXgOzAiK6tQf9XVQ0,28664
|
1249
1253
|
pulumi_oci/datasafe/sensitive_data_model.py,sha256=B77muq8E20ox6V_3qjNNVC5ez1ptKo7y2bfxo6CDptA,68198
|
1250
1254
|
pulumi_oci/datasafe/sensitive_data_models_apply_discovery_job_results.py,sha256=lPiGmeh6UU4ah7Z85HW0H1mOqvV5fiiryryXyqtrcOU,7830
|
1251
1255
|
pulumi_oci/datasafe/sensitive_data_models_sensitive_column.py,sha256=TREMG2BazyWlYHPsjY-AMv84bigCvtPKLH7XaMcxkJc,67457
|
1252
1256
|
pulumi_oci/datasafe/sensitive_type.py,sha256=ROijgnQwSZejaqgkiosdQqZL448_QNFoED3ewcyzwVU,51831
|
1253
1257
|
pulumi_oci/datasafe/set_security_assessment_baseline.py,sha256=tCFdTzN-4Pp5fXPy-cVz9z_dRn0Zf3RnIw2pMdYlERI,12374
|
1258
|
+
pulumi_oci/datasafe/set_security_assessment_baseline_management.py,sha256=FyLxa0C7C2awoQH9W4SpXHdYQqydlIygxCi3h1VoAjI,13520
|
1254
1259
|
pulumi_oci/datasafe/set_user_assessment_baseline.py,sha256=pFdIxZ6rOGzZsEKuyfV0YTBJsjUZrfTdSfqgvn_oezQ,11986
|
1260
|
+
pulumi_oci/datasafe/set_user_assessment_baseline_management.py,sha256=-GJqQdBELAXsSPnfwF15mso2HhQCgAhFiaW1Dh98YWo,13292
|
1255
1261
|
pulumi_oci/datasafe/sql_collection.py,sha256=4p-l1Tboc_rZk1fpvACnzm8GBkAJTjs6fa1TU-PITz0,54642
|
1256
1262
|
pulumi_oci/datasafe/sql_firewall_policy.py,sha256=5noK0OwrRaSEWzRtOd8EZFIQSWKqdVQtgmRm1K0rjU0,51936
|
1257
|
-
pulumi_oci/datasafe/sql_firewall_policy_management.py,sha256=
|
1263
|
+
pulumi_oci/datasafe/sql_firewall_policy_management.py,sha256=iFpHg0DW_HGM-D9EnW93pdXDTFcAycC-_jvpMPv1SIY,57656
|
1258
1264
|
pulumi_oci/datasafe/target_alert_policy_association.py,sha256=TthG1ANmrVh0BtswMte2st5cLvGaBFLiLny9SthdbEU,35335
|
1259
1265
|
pulumi_oci/datasafe/target_database.py,sha256=mApso9EyIOjdvJHzrdJmgYf6A6D3RHff8hLf5qLZWsQ,52969
|
1260
1266
|
pulumi_oci/datasafe/target_database_peer_target_database.py,sha256=GQfmzbXO8XqEIatGB1GViQhRstsH7xF5xe52Xmwx1iE,32358
|
1261
1267
|
pulumi_oci/datasafe/unset_security_assessment_baseline.py,sha256=gVcTvHt0rN1rfKKBqSkHE2DaYXzi4LmIkp-zUe0UeSI,12689
|
1268
|
+
pulumi_oci/datasafe/unset_security_assessment_baseline_management.py,sha256=iitxB0nUsqg8x1Bsgo22IWF5LzLifdTU0RHdOWOMjeg,12178
|
1262
1269
|
pulumi_oci/datasafe/unset_user_assessment_baseline.py,sha256=Ipjz4U_oXV37dztfOC-dkZnu74D8HsEfbqhOngJzfH8,12337
|
1270
|
+
pulumi_oci/datasafe/unset_user_assessment_baseline_management.py,sha256=81AdDyEej0AiL2oqNEF-ZLX4qzfDqqXgJLn2c8jGHZg,11834
|
1263
1271
|
pulumi_oci/datasafe/user_assessment.py,sha256=AkfjkPkHs675s5KsUgQCFyhlznKglmNsGUbYSrKhHiA,58478
|
1264
1272
|
pulumi_oci/datascience/__init__.py,sha256=YUs9Sg1hYEkk_ORPN54BOFosvaeepgs8SelXVgSpgYc,1506
|
1265
1273
|
pulumi_oci/datascience/_inputs.py,sha256=6sqgzfCc7mv2__yT10AmKkEQs83Cq8dInyJaDEHwz7Y,214907
|
@@ -1302,12 +1310,40 @@ pulumi_oci/datascience/pipeline.py,sha256=KqgqUi37xPELiTiNW-uJWp5EMAbgpVeilsbEIS
|
|
1302
1310
|
pulumi_oci/datascience/pipeline_run.py,sha256=M7vipd_eFxmX9w4ujxZHqoxMmonpjoEKBCmJRvWgkBg,61341
|
1303
1311
|
pulumi_oci/datascience/private_endpoint.py,sha256=deLcM1-PxQsUM5amg62NJXfyjaPlZrVRZJx5uLk7RBM,40833
|
1304
1312
|
pulumi_oci/datascience/project.py,sha256=CkoHQB1UR-jOkSBScgFovB_igt1egIBxC4CFhkZ67Sg,27181
|
1313
|
+
pulumi_oci/delegateaccesscontrol/__init__.py,sha256=jLm-tjfbPmvSyneDTdnHN4gxE9ajplHXpvD7K4XptAk,999
|
1314
|
+
pulumi_oci/delegateaccesscontrol/_inputs.py,sha256=9NZhxwRAR9wbqFjxsw_1THT1ehVLIio3obNGrb3Si0Q,8210
|
1315
|
+
pulumi_oci/delegateaccesscontrol/delegation_control.py,sha256=FV0siQdFYQPJdSDz0OO3ArQsPi0rVa85_JfjfjShLtg,67837
|
1316
|
+
pulumi_oci/delegateaccesscontrol/delegation_subscription.py,sha256=-p0L5qc7QPX0WvbtCCiITL4ebVxGOrFu3AzTh4iQYE4,32638
|
1317
|
+
pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request.py,sha256=hrUN6RZGYApQoQ3qlE_vknUVwDjIXDCC06Aq-Nc3Omc,26371
|
1318
|
+
pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request_audit_log_report.py,sha256=jZSu7UH2KbsKzhdARY2jsm2rx_xMhWr2M6gVhtVQXmw,8555
|
1319
|
+
pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request_histories.py,sha256=z3xzfeF3Pg9b-4uvVo4cfayADB2YxxCsu8ITtuXDLwM,6957
|
1320
|
+
pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_requests.py,sha256=15qgxMgfy5VyR0kM_sHaHJcovxwFi0KJsNfo6slho-M,13744
|
1321
|
+
pulumi_oci/delegateaccesscontrol/get_delegation_control.py,sha256=mwZo7D6VCxmtkecnO5-nbnzqO_-Yu5HuXS7k2kQqb-Y,19028
|
1322
|
+
pulumi_oci/delegateaccesscontrol/get_delegation_control_resources.py,sha256=UH35-XShJnoBh4saVBg3Y_2st_7c8WNUh_BuzJIknjo,5866
|
1323
|
+
pulumi_oci/delegateaccesscontrol/get_delegation_controls.py,sha256=nZzXg1Efp61JZICrdWYwUa7GgAZNIeKlEOOP4BDrSSc,9745
|
1324
|
+
pulumi_oci/delegateaccesscontrol/get_delegation_subscription.py,sha256=zWfmaSZrJPn2Mdg0vP5XxUf6MfrHnHW8JVP4RZZT85s,11555
|
1325
|
+
pulumi_oci/delegateaccesscontrol/get_delegation_subscriptions.py,sha256=xpGznxK9CiYW5FB5seSzkJeBQhKH7mp25rSsyGojjhk,7976
|
1326
|
+
pulumi_oci/delegateaccesscontrol/get_service_provider.py,sha256=LwS0OLTm7lW5kbNdhjee01vLTyMm6IzFDhCNgydWd04,11714
|
1327
|
+
pulumi_oci/delegateaccesscontrol/get_service_provider_action.py,sha256=p7o5yOnD7NwC3cqH44noPYNO33NObiPxOjtbOS7zfVs,8887
|
1328
|
+
pulumi_oci/delegateaccesscontrol/get_service_provider_actions.py,sha256=kjNPfwRm3ArSwzVRIzRSVXLZ6BvZcXm7zBd7J9KLp78,10188
|
1329
|
+
pulumi_oci/delegateaccesscontrol/get_service_providers.py,sha256=CbnCWgW0D-LFLTneHYiy8F3lwjhUt28iHQojk1Gbjow,9884
|
1330
|
+
pulumi_oci/delegateaccesscontrol/outputs.py,sha256=IZExRfBBnv_eJaop8fv5hHq0wTyppDxQ8q5xfGRPwQw,76559
|
1305
1331
|
pulumi_oci/demandsignal/__init__.py,sha256=Ap5pOlp1y5CcgzxfMoHvzljdeikeGE4h1-ycDcq2c38,422
|
1306
1332
|
pulumi_oci/demandsignal/_inputs.py,sha256=9t-Kxye_85ZcSzSpKZ1gS8_FuzQqnGxen-_vGzu7XRs,8487
|
1307
1333
|
pulumi_oci/demandsignal/get_occ_demand_signal.py,sha256=KsNhj9BXNUT9nv3lv0gOz3lkb4hOw_0S5mvUjqu7UxQ,11446
|
1308
1334
|
pulumi_oci/demandsignal/get_occ_demand_signals.py,sha256=VE7BTFOJrhEZ619H3hrzNfyZGnj2ehx6vLIOS4tR9Xc,8028
|
1309
1335
|
pulumi_oci/demandsignal/occ_demand_signal.py,sha256=xALfeu0l5HxXulq0r-tZj-MJAmQKLp0_f_XzgLZHSDk,35337
|
1310
1336
|
pulumi_oci/demandsignal/outputs.py,sha256=LXih8rCezEaB1nHSmUR2sB4apNG-79HDcdQK97gNB5o,25011
|
1337
|
+
pulumi_oci/desktops/__init__.py,sha256=q-fySpbcf34D1wTkjYoyTh5h88che9ptnOT3e4wUdF0,543
|
1338
|
+
pulumi_oci/desktops/_inputs.py,sha256=uZvUVFtcBDxGELQ1HFnu2vL_d6rwGDryuNhIW8daRJc,17046
|
1339
|
+
pulumi_oci/desktops/desktop_pool.py,sha256=xIIkfT005ED8MZB01ZLCBgPXyV1dYS-jE5LYQZo1pTQ,69379
|
1340
|
+
pulumi_oci/desktops/get_desktop.py,sha256=5aKm5o1NY0BTx4vElspOxEErGA-CvwlC8L4aO2V87ww,8558
|
1341
|
+
pulumi_oci/desktops/get_desktop_pool.py,sha256=ZPWPOz6GAQgO_Fx-Mvh0Ys0XTBM92TrQNjHoxfaEx7s,18204
|
1342
|
+
pulumi_oci/desktops/get_desktop_pool_desktops.py,sha256=Zgj297P7YkI1a6oSiZcdE9zRABV8i61hILLU7As9e7I,9812
|
1343
|
+
pulumi_oci/desktops/get_desktop_pool_volumes.py,sha256=BjA19_-hZSSm_wUGJYk3dMJcxxFcNGJG_nbXuMC5VJg,9901
|
1344
|
+
pulumi_oci/desktops/get_desktop_pools.py,sha256=G9BHlP_K8wrf5MjCecbOuXstYL6Htt12Bbgrcr0debM,8726
|
1345
|
+
pulumi_oci/desktops/get_desktops.py,sha256=x8k5BPzWN0JDKI6z4-VQjVv6RPw4fzewRc8TGPdD_WA,9267
|
1346
|
+
pulumi_oci/desktops/outputs.py,sha256=jlUSGpRgVp4n5QoBzzoUeDHMsUq3RsaVvBHeF2fPtF4,69976
|
1311
1347
|
pulumi_oci/devops/__init__.py,sha256=ogod3Nh4yEX5W_vhC8lVlVH9Tp8gPp6WkEFiEHRmndU,2458
|
1312
1348
|
pulumi_oci/devops/_inputs.py,sha256=3VV2PXIO_KPVQFlrVBBILkxTIRpRyRD7tEfqF9VyY9s,221024
|
1313
1349
|
pulumi_oci/devops/build_pipeline.py,sha256=y53-aMpmRZx3B7r_XWBbrPoLq71mxOokDcz3lWXmi6U,33965
|
@@ -1374,17 +1410,17 @@ pulumi_oci/devops/repository_ref.py,sha256=L7VjAiHhU26k_ySosxQ3y9gzl6NijipkozbSM
|
|
1374
1410
|
pulumi_oci/devops/repository_setting.py,sha256=qbpPphexPFYPThU-DBRKKji9J18vFA1jZFfSbb2Nv7w,19612
|
1375
1411
|
pulumi_oci/devops/trigger.py,sha256=uWf2rMTElTwN0mHdAikF43gKjEx37vhhCpkH_-oCi8M,41450
|
1376
1412
|
pulumi_oci/disasterrecovery/__init__.py,sha256=7KleD-hSyUzKkdXcRIDujms_xktRCUn-6DFX5pKrijo,614
|
1377
|
-
pulumi_oci/disasterrecovery/_inputs.py,sha256
|
1413
|
+
pulumi_oci/disasterrecovery/_inputs.py,sha256=IMY6V7SKGdWQQgP8hYSzsYQojNmPX57LV3_PfPHQcMQ,94100
|
1378
1414
|
pulumi_oci/disasterrecovery/dr_plan.py,sha256=iLce4j_kCUTVzHw3jGhNOpypJyf4MB2H8sB-u8N7SuM,32602
|
1379
1415
|
pulumi_oci/disasterrecovery/dr_plan_execution.py,sha256=Ou9atVDJmic-OThtM9exMhwsOhvoVPwzFSFfpMAKUHU,43429
|
1380
|
-
pulumi_oci/disasterrecovery/dr_protection_group.py,sha256=
|
1416
|
+
pulumi_oci/disasterrecovery/dr_protection_group.py,sha256=IFkqbfQf2ARzpRtpFb1vI68SYGQsoAjBJdcym2_Nf_E,51528
|
1381
1417
|
pulumi_oci/disasterrecovery/get_dr_plan.py,sha256=wfYh8uJ1vFqGn6zy5XQVyPg7H-ueS64LRQ2sUPKYDfE,11787
|
1382
1418
|
pulumi_oci/disasterrecovery/get_dr_plan_execution.py,sha256=TtYmKonINnMtUp6XK64u47jo0hvhVXEDi4d75HBoyrM,16472
|
1383
|
-
pulumi_oci/disasterrecovery/get_dr_plan_executions.py,sha256
|
1419
|
+
pulumi_oci/disasterrecovery/get_dr_plan_executions.py,sha256=-ARzHW5HWEvKFTnkXDoA57kS5Oq3FmEmt7oYkAzMb7M,8874
|
1384
1420
|
pulumi_oci/disasterrecovery/get_dr_plans.py,sha256=iFwXpHoYCb-Spf6VvmzsnfYDcisJu2crYUsn3C8UiWY,8783
|
1385
1421
|
pulumi_oci/disasterrecovery/get_dr_protection_group.py,sha256=Lo7mBijjB08yfWQGOB39AZ2iuFaGYpvrP4yMHiwKCh0,13704
|
1386
1422
|
pulumi_oci/disasterrecovery/get_dr_protection_groups.py,sha256=kWkLzAnfU-jkyeqd6-GLGf9OYVOIvFUd6GercActjT8,10881
|
1387
|
-
pulumi_oci/disasterrecovery/outputs.py,sha256=
|
1423
|
+
pulumi_oci/disasterrecovery/outputs.py,sha256=teK6WOB0KguodgQMGPfAtjlPopY4W301S02wHTr-N9M,243605
|
1388
1424
|
pulumi_oci/dns/__init__.py,sha256=rJmauYv4n0eB4hP0n-huHYUFdW2OcjhaV5t5UGeC7Ho,1106
|
1389
1425
|
pulumi_oci/dns/_inputs.py,sha256=bkqnPUcAWJCenS8dmmSKf8flwGrA4pBXQ4h8PHxGsyI,67000
|
1390
1426
|
pulumi_oci/dns/action_create_zone_from_zone_file.py,sha256=xyLiayvQBgVVDU01CWwqTFDn62JEyFl6HToEJfkF1tQ,37673
|
@@ -1459,20 +1495,11 @@ pulumi_oci/filestorage/get_replication_targets.py,sha256=_PUDop8uQN_Ceb6B-Ufk87M
|
|
1459
1495
|
pulumi_oci/filestorage/get_replications.py,sha256=ql3xRECXim53igTfvo7z_tdC1GtnChlMBzdEj99YMsY,10150
|
1460
1496
|
pulumi_oci/filestorage/get_snapshot.py,sha256=16p9ZT5hoy5MKoidJyoYw9w2h7MslW_1C_PTFpumSQs,12237
|
1461
1497
|
pulumi_oci/filestorage/get_snapshots.py,sha256=qG2voKXaey74ilGh2C0YcxJMDk0cNQ3iYX5_jMvsR6Q,9923
|
1462
|
-
pulumi_oci/filestorage/mount_target.py,sha256=
|
1498
|
+
pulumi_oci/filestorage/mount_target.py,sha256=a_Rbxr8keQhC7oNq07FskVOibyyQX-uHwY6T7-hE7TE,75384
|
1463
1499
|
pulumi_oci/filestorage/outbound_connector.py,sha256=NJYYdIIO9QrtnrGatFSv9MA-8hZFoNvaEbc77FD265s,42249
|
1464
|
-
pulumi_oci/filestorage/outputs.py,sha256=
|
1500
|
+
pulumi_oci/filestorage/outputs.py,sha256=d7URWAN8QzEYi5NBoGhgO0GmcPYj8umYOgHq8VUELMY,144894
|
1465
1501
|
pulumi_oci/filestorage/replication.py,sha256=O9b3ureyIJZH7WSLxzWr596F4fGrVs9MJ8BKekWfZL0,46350
|
1466
1502
|
pulumi_oci/filestorage/snapshot.py,sha256=jIUFKGx0L_FvkPyiOMwbXXsazRf47i1KdKiSJvcVu1A,36495
|
1467
|
-
pulumi_oci/fleetsoftwareupdate/__init__.py,sha256=pjI6H1538gr5ibAG9BxFd9PoYJIRZ_dACG1hvTouhYE,497
|
1468
|
-
pulumi_oci/fleetsoftwareupdate/_inputs.py,sha256=T_SH73RFNixqqrY_WBAQ288I19wV5kTxryAxK-ZivbA,18279
|
1469
|
-
pulumi_oci/fleetsoftwareupdate/fsu_collection.py,sha256=xlBeUhtKLn-3QPIbxT3mvjWASJr9ORpuEYlE11pUIto,22373
|
1470
|
-
pulumi_oci/fleetsoftwareupdate/fsu_cycle.py,sha256=VEA4Dvc5p8A9nEhG6OT0sVMXQC9eE-9Sf7exnkaE5NQ,39124
|
1471
|
-
pulumi_oci/fleetsoftwareupdate/get_fsu_collection.py,sha256=qE_57DvxCmgZ1J2njdP2J0q1m5WABIS_V7gGw2YUSGU,9777
|
1472
|
-
pulumi_oci/fleetsoftwareupdate/get_fsu_collections.py,sha256=H6KVdXhsSpPBCQIWk_FB_VQqL2ncumqEiS4WS50y6K4,6040
|
1473
|
-
pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py,sha256=mbcA5fQsaYdfRvbl1C53gralK3qXHRIkr7anj0Uachk,15764
|
1474
|
-
pulumi_oci/fleetsoftwareupdate/get_fsu_cycles.py,sha256=cxOk_xrtOWgj4vwnTSKcgNFCqMaY9WCbb-0OQo2gQHs,7415
|
1475
|
-
pulumi_oci/fleetsoftwareupdate/outputs.py,sha256=rwxwQSmtWxvFxRNW0JjwaZhp3nKgYzZtQbL6WyzGmlw,49323
|
1476
1503
|
pulumi_oci/functions/__init__.py,sha256=tU-pJE4jEBX9z0lBXVdVAT7ImZSEx64sZB9YYWj2dys,1734
|
1477
1504
|
pulumi_oci/functions/_inputs.py,sha256=Y6IyfjXQiM93k5JJ3o8QGRWPjXRmgklBMubSkocWy-Q,23568
|
1478
1505
|
pulumi_oci/functions/application.py,sha256=vDLbqs_Gah2a6F-ySjj-T1ZSMi7sjufggX5USOt8n0o,51360
|
@@ -1532,15 +1559,6 @@ pulumi_oci/genericartifactscontent/__init__.py,sha256=hgIxlRzoszlQaqeflk8QurTNj8
|
|
1532
1559
|
pulumi_oci/genericartifactscontent/artifact_by_path.py,sha256=w-gydrpKy44IU0hxLcdqz2g6GfMyyzDvs7CTanLAlck,31787
|
1533
1560
|
pulumi_oci/genericartifactscontent/get_artifact_by_path.py,sha256=XGxKTIEWt5lO4REq3sJHU_gsdfl744FgkKsofvCahUE,10043
|
1534
1561
|
pulumi_oci/genericartifactscontent/get_generic_artifacts_content.py,sha256=HasHB6VDT245-bGBY7LAyNoVLlahLz84NIUi5k0TSh8,3928
|
1535
|
-
pulumi_oci/globallydistributeddatabase/__init__.py,sha256=4Hp7NsGP1jrUgHwCbzpThk-bXIGkEgrNANC6kKi0oZg,524
|
1536
|
-
pulumi_oci/globallydistributeddatabase/_inputs.py,sha256=5skCxrF3hYUIS5yuWDLzPmWS0Ke4Ykl9FE9AaCAdPHY,47689
|
1537
|
-
pulumi_oci/globallydistributeddatabase/get_private_endpoint.py,sha256=l8ECWglI6nV9ZRHr3Gxx10f1vEgW8uJeo2kRBTgI5EE,12118
|
1538
|
-
pulumi_oci/globallydistributeddatabase/get_private_endpoints.py,sha256=ywFbYUrQbPfOBIAsBDNzEscLr_VzsaVDgC9a58-iTeU,7255
|
1539
|
-
pulumi_oci/globallydistributeddatabase/get_sharded_database.py,sha256=H9SrtU-eBvmGexnYTldWh50tHYVh50LnPUyZxmh_HRc,29377
|
1540
|
-
pulumi_oci/globallydistributeddatabase/get_sharded_databases.py,sha256=hKikM4oqLhfyEJ0vjS58dHJJl9qNxRWoFU2um9IfDqs,7268
|
1541
|
-
pulumi_oci/globallydistributeddatabase/outputs.py,sha256=mTVqnHEqPT_fkL54RjXa1zwtx2pkzCtbR73XMY66qaM,94213
|
1542
|
-
pulumi_oci/globallydistributeddatabase/private_endpoint.py,sha256=34bzaxuh3CNZxEKsrHCbAmbJNXccRpWoAIciasikOM8,34448
|
1543
|
-
pulumi_oci/globallydistributeddatabase/sharded_database.py,sha256=teUpj6T_YkBKZHCmhO_CSUS0INo8rrW8k1ST8Z5LvC0,102910
|
1544
1562
|
pulumi_oci/goldengate/__init__.py,sha256=bUksfKTH9LM_422k-tu1EXIuPrRbsGUVQVmdQ9Y4ogM,1331
|
1545
1563
|
pulumi_oci/goldengate/_inputs.py,sha256=xZBPv70z5TjIWqWeg6_v_20L2YJlxCgha2AxzgAIfSw,47623
|
1546
1564
|
pulumi_oci/goldengate/connection.py,sha256=BnLO-LgB9Vp9tsJzI_0dPkmGFbrxNY8CP3sZynfSa-g,243043
|
@@ -1613,7 +1631,7 @@ pulumi_oci/identity/domains_condition.py,sha256=ya-vWK3fz6wAwh0E5EROjrCgc-bbi-EU
|
|
1613
1631
|
pulumi_oci/identity/domains_customer_secret_key.py,sha256=1bLW9ZCqy97IHk0aEnUGsoKASQzJiAd89dgtQcv5O88,93826
|
1614
1632
|
pulumi_oci/identity/domains_dynamic_resource_group.py,sha256=vTfAypOctSX8xhr6EXwo5qACu7ofn3j5r-xGhTy2FVg,95968
|
1615
1633
|
pulumi_oci/identity/domains_grant.py,sha256=XckrquNF-BR2l0SaOiWOAxeow4HAzhalleZarg6uRVo,113973
|
1616
|
-
pulumi_oci/identity/domains_group.py,sha256=
|
1634
|
+
pulumi_oci/identity/domains_group.py,sha256=_hL9v1GOM6h5F0ePs3KoLM51UbLDgYY0Xvi7XoQKBug,122930
|
1617
1635
|
pulumi_oci/identity/domains_identity_propagation_trust.py,sha256=lf70RQANjV53dPaK145uthqpvlA2-FF7oOcQ7RVhR5U,158362
|
1618
1636
|
pulumi_oci/identity/domains_identity_provider.py,sha256=D7ApO9uL0o0ITgHlyTOKDzOtFyV7HJ5F3HUAB-Kldzo,300800
|
1619
1637
|
pulumi_oci/identity/domains_identity_setting.py,sha256=hwn-Hj4cjhtBXtC7ooJTCvwo8BYRQ6LxopSbR-uxcS4,123771
|
@@ -1640,7 +1658,7 @@ pulumi_oci/identity/domains_self_registration_profile.py,sha256=2tNfM6qnwBx0NtOy
|
|
1640
1658
|
pulumi_oci/identity/domains_setting.py,sha256=GC-r2K8lMcsVI10hE76_i94A5Yka6GzaylIL-2V3mFs,300862
|
1641
1659
|
pulumi_oci/identity/domains_smtp_credential.py,sha256=0xM2LnlXiVt84SQeS7oBiG2yr58lvck7cKxwITwnRL0,90895
|
1642
1660
|
pulumi_oci/identity/domains_social_identity_provider.py,sha256=20lA57rQdAMV1yqHAiXgyZ8pr78wTgDucVlsgjfYSmA,186535
|
1643
|
-
pulumi_oci/identity/domains_user.py,sha256=
|
1661
|
+
pulumi_oci/identity/domains_user.py,sha256=uz4hHY-Fil5m92H4_Odt0JPNlA_-7FSG0lQ5mv8hNow,307796
|
1644
1662
|
pulumi_oci/identity/domains_user_db_credential.py,sha256=F8VPXlB7zfKM-C0efSgz1q4aiwntqNOVZnBWxLg0pEo,103264
|
1645
1663
|
pulumi_oci/identity/dynamic_group.py,sha256=N9kjwLd-kLtmR21QiOCO9lO3cMFlLzLuuO54UyqRPXE,31144
|
1646
1664
|
pulumi_oci/identity/get_allowed_domain_license_types.py,sha256=yim_resR7EuLe0McALXeQZcinQTe6CG_HdupTvQ2xYQ,6696
|
@@ -1692,7 +1710,7 @@ pulumi_oci/identity/get_domains_dynamic_resource_group.py,sha256=be-1hOUAdveJs19
|
|
1692
1710
|
pulumi_oci/identity/get_domains_dynamic_resource_groups.py,sha256=NCgtjl3F1I9GaL5VdZ-JXs7HBNhn6UHIliKDVYr0b54,21071
|
1693
1711
|
pulumi_oci/identity/get_domains_grant.py,sha256=UncqQvDoE3CDsTAHjJMGU5oKFVL2etmU8_aAs2l3p_0,25319
|
1694
1712
|
pulumi_oci/identity/get_domains_grants.py,sha256=wl560M-LUiFhZH2CqtJOqfI1_cA88p5kpClyP1MEWvI,19056
|
1695
|
-
pulumi_oci/identity/get_domains_group.py,sha256=
|
1713
|
+
pulumi_oci/identity/get_domains_group.py,sha256=nma2e8tsOqrr0kd2IhTChy2nakvKT97O7DURsoIlCGE,30373
|
1696
1714
|
pulumi_oci/identity/get_domains_groups.py,sha256=wFmAgmlJCm4cYBEbkLlWWYhRpjVcWMaiVFVYEkqsQrs,19510
|
1697
1715
|
pulumi_oci/identity/get_domains_identity_propagation_trust.py,sha256=83_obPfO1LnFAypBT_qp_sKb0ldJ31yhRiMQjE7TuaQ,31642
|
1698
1716
|
pulumi_oci/identity/get_domains_identity_propagation_trusts.py,sha256=MDyShGJSchA77d8Kka0uyH9YJA8fw4r5yBU_VYFTbt0,21585
|
@@ -1757,7 +1775,7 @@ pulumi_oci/identity/get_domains_smtp_credential.py,sha256=UCBQJqhxYCoZEXn6CA_0mX
|
|
1757
1775
|
pulumi_oci/identity/get_domains_smtp_credentials.py,sha256=MefHK0MsZx7bfW4B0ptaeEj5inwi7oYgF-IVHfIvTzE,20251
|
1758
1776
|
pulumi_oci/identity/get_domains_social_identity_provider.py,sha256=GxxNRcDVgXx2R4aEB9yb0M_m6-_srLhazyGRi-tjEtM,32490
|
1759
1777
|
pulumi_oci/identity/get_domains_social_identity_providers.py,sha256=9qtzWyJkn41u_bW4XZDDNghwWcMsDI9i6Mx14NAMYa0,17586
|
1760
|
-
pulumi_oci/identity/get_domains_user.py,sha256=
|
1778
|
+
pulumi_oci/identity/get_domains_user.py,sha256=mblA7kdnt-gj4SgyHGsk1F9CNbkxASgWixCvE9d62dA,56736
|
1761
1779
|
pulumi_oci/identity/get_domains_user_attributes_setting.py,sha256=lD6iFcSHOWvscWbUIFCE_jQBeYNxaV1mYFwLBIV5roA,20639
|
1762
1780
|
pulumi_oci/identity/get_domains_user_attributes_settings.py,sha256=X7q20k9Cib3PWvAhpJ8YT7ZfmBqaHeL0xv2YvGsRC-s,13901
|
1763
1781
|
pulumi_oci/identity/get_domains_user_db_credential.py,sha256=kIxcDow3kh5XL2lh13jTZiy4Wsv-27zBhinN-737Rg8,26577
|
@@ -1797,7 +1815,7 @@ pulumi_oci/identity/identity_provider.py,sha256=QIsDfrYw4NFRsJQ-8Ns2gZEur3JtMd2b
|
|
1797
1815
|
pulumi_oci/identity/idp_group_mapping.py,sha256=743cX37IZAZrXK1uIA3xxza9_aIG0Oa9l8a_GBxjw7g,19026
|
1798
1816
|
pulumi_oci/identity/import_standard_tags_management.py,sha256=f5KHjLrGN0Fecd2XWZ5_cuiqiOQTr9g-GyfGr_gLfTY,13392
|
1799
1817
|
pulumi_oci/identity/network_source.py,sha256=NJshhKegtWd6DAeg4yo6szAkrU3utbYoYpNlifivajo,39752
|
1800
|
-
pulumi_oci/identity/outputs.py,sha256=
|
1818
|
+
pulumi_oci/identity/outputs.py,sha256=t0UnU96B6v8q3uOlXNQWay0ZFZ4vsUgS51R096yrza0,5465453
|
1801
1819
|
pulumi_oci/identity/policy.py,sha256=drfa_IVuY8Aa31nFQh55zVUg_xSE64toHu61T3mhq1U,39553
|
1802
1820
|
pulumi_oci/identity/smtp_credential.py,sha256=d8rz1ltRKlJNLCvG21BprcRjKggXDNUuBkgJaZVXQgQ,18410
|
1803
1821
|
pulumi_oci/identity/tag.py,sha256=GqY6qGz4okMuhTuDDqrzp7IE998iA-xQs8KeixFI820,41410
|
@@ -1811,10 +1829,10 @@ pulumi_oci/identitydataplane/__init__.py,sha256=3p2MSIiFqHpIMFFl1thue91_oqZ4koRy
|
|
1811
1829
|
pulumi_oci/identitydataplane/generated_scoped_access_token.py,sha256=f5H2ccr9fFkm0lpHH9PMJR2y-dTQN1kFtuWrA0cjC90,12982
|
1812
1830
|
pulumi_oci/integration/__init__.py,sha256=iqBDMZyU6TO-gNDI4UKSZ9DjUI7498ckz8guq5zCjjE,483
|
1813
1831
|
pulumi_oci/integration/_inputs.py,sha256=2VAqKwPUgN3ik228hlx47xitmJyai-tvY24apVLtYXQ,24322
|
1814
|
-
pulumi_oci/integration/get_integration_instance.py,sha256=
|
1832
|
+
pulumi_oci/integration/get_integration_instance.py,sha256=GqtSgjQ0hJcOImtXdguD5o895qDrlFUJDwKqBTep68o,20886
|
1815
1833
|
pulumi_oci/integration/get_integration_instances.py,sha256=SmiPi-KNq5o-Ztij_4PoN37LiD8PZzxXWSDEJ07ewxs,7118
|
1816
|
-
pulumi_oci/integration/integration_instance.py,sha256=
|
1817
|
-
pulumi_oci/integration/outputs.py,sha256=
|
1834
|
+
pulumi_oci/integration/integration_instance.py,sha256=cw99a9np7vWwsYa9joBQtD0dX_FOTTr_dtQK9dfq-3k,76168
|
1835
|
+
pulumi_oci/integration/outputs.py,sha256=J8pLJLy9WlcXAj31yQiUR_oxAojMRwvhhFe1yVzXNbE,69462
|
1818
1836
|
pulumi_oci/integration/private_endpoint_outbound_connection.py,sha256=KGbQ2rXbQYEceNg7XxfJbaY_bE9UwtQP3tpL5pxeFZI,10039
|
1819
1837
|
pulumi_oci/jms/__init__.py,sha256=tackEXftWMCfQTmbuWrk2nYrBNMPJFgYbWxPTO6jr2Q,2213
|
1820
1838
|
pulumi_oci/jms/_inputs.py,sha256=-VgaHP-kSshWX4LPnxV3t6Xm6D84O_hxRDEmvq3j3w8,64132
|
@@ -1863,7 +1881,7 @@ pulumi_oci/jms/java_downloads_java_license_acceptance_record.py,sha256=Lj1lG-f0w
|
|
1863
1881
|
pulumi_oci/jms/jms_plugin.py,sha256=TzPVU92WwiklN_NyI4R-4of_E6AjxXf8HeDXMcAKG3E,37532
|
1864
1882
|
pulumi_oci/jms/outputs.py,sha256=BeqIhi7SuDBPX3_O12cP6GUtC_VVLiLCTpvWmQMb8jY,307475
|
1865
1883
|
pulumi_oci/kms/__init__.py,sha256=FORCQ_KwYzL1Hforp8BeGi5GenxORzJYVl51JzaRyTU,968
|
1866
|
-
pulumi_oci/kms/_inputs.py,sha256=
|
1884
|
+
pulumi_oci/kms/_inputs.py,sha256=Y6aSTkp0TtliU1Pw4UjkGlviColhmTU0zFMVY31VUYA,43073
|
1867
1885
|
pulumi_oci/kms/ekms_private_endpoint.py,sha256=Awelg62Sm06JXEeV0e8MrH6SC8_goFwA2nU14Dlh-Kw,33558
|
1868
1886
|
pulumi_oci/kms/encrypted_data.py,sha256=gGhfT96h2v1AXJ4qB1xRAyt91O4OZyOHV7nGIFv_gSk,29632
|
1869
1887
|
pulumi_oci/kms/generated_key.py,sha256=3-3jldf8VD-bUYgvyOsnHAme8AyF17scwQ3RKgtYZBs,29496
|
@@ -1876,15 +1894,15 @@ pulumi_oci/kms/get_key_version.py,sha256=tWNOOVopZhlZpkjojifdEOEAXpvujvU9Z37p7dQ
|
|
1876
1894
|
pulumi_oci/kms/get_key_versions.py,sha256=NBKoBwAVR5objoh5qApBKj8Iubw6Uq6yIRCT6KRXymY,6755
|
1877
1895
|
pulumi_oci/kms/get_keys.py,sha256=Mt3O8BO_XliB_JO8kRKgzBNthl9nivOGfUq7UooURBs,12914
|
1878
1896
|
pulumi_oci/kms/get_replication_status.py,sha256=7qXnINh1_JTeNxBDw2aFtwJbXkOSvmd8g1F9Ao4DXK4,5829
|
1879
|
-
pulumi_oci/kms/get_vault.py,sha256=
|
1897
|
+
pulumi_oci/kms/get_vault.py,sha256=Z8kPmvXUkzC-NRr_KMc594dw0wZ-fGsP7C_b7zb-jtw,17007
|
1880
1898
|
pulumi_oci/kms/get_vault_replicas.py,sha256=GyreWU2rE__gfpSNTb6-SNLgKQ4V49Kpil_4ZxmOwAs,5270
|
1881
1899
|
pulumi_oci/kms/get_vault_usage.py,sha256=im57i6QPF0q2XZOYecnAY3sg74BwQwlJniTLYYLYeVU,5968
|
1882
1900
|
pulumi_oci/kms/get_vaults.py,sha256=JOOl2Qk6hUgDHQ4pr0y6ZG3Qy7so8R5vMw7OL29zFM4,5140
|
1883
1901
|
pulumi_oci/kms/key.py,sha256=Bz8gAMMXG0S5vozLKrwAR7GqodNnHiJxv52tPfmOKqQ,68246
|
1884
1902
|
pulumi_oci/kms/key_version.py,sha256=vsALzpING2mD5dtVhZhvDYn07vARYaPOOH-GwNJV7F0,33172
|
1885
|
-
pulumi_oci/kms/outputs.py,sha256=
|
1903
|
+
pulumi_oci/kms/outputs.py,sha256=nFu-1SeyNNSqVq7SLmzVZkzbpi2s6HkGIRhVWIDYCME,131705
|
1886
1904
|
pulumi_oci/kms/sign.py,sha256=XV0nWNcm_qbs1JsrM9tIwltTxV2nU8k_7Ux3KKtx_EA,25565
|
1887
|
-
pulumi_oci/kms/vault.py,sha256=
|
1905
|
+
pulumi_oci/kms/vault.py,sha256=FDixfy75VtVP-kXqGyuZCTb8hO-9g-pdYhvhOa_AEU4,54013
|
1888
1906
|
pulumi_oci/kms/vault_verification.py,sha256=WEHu0OkTUuZLK_nUEbTBlYM1YYP_sCqrKqbXcm4fVYA,10038
|
1889
1907
|
pulumi_oci/kms/verify.py,sha256=RBV-kgvq1fAymLPgE4lCmwoXbwEcf4ymFy7eHmwva8M,28811
|
1890
1908
|
pulumi_oci/licensemanager/__init__.py,sha256=_1oakyLqLmsT82vMDdI7jBtXFDaECD4jHPmBP0n_NiI,747
|
@@ -1938,9 +1956,9 @@ pulumi_oci/loadbalancer/get_ssl_cipher_suite.py,sha256=KGuH8dXS5qPfyOh1KsDwQC-dM
|
|
1938
1956
|
pulumi_oci/loadbalancer/get_ssl_cipher_suites.py,sha256=HomXAYoaHMOXSqCPu4ZG_XRk1qloBDisy86BkxEaUvo,5181
|
1939
1957
|
pulumi_oci/loadbalancer/hostname.py,sha256=pJ2uFqd3yvQKZknoZqVpmE0ZocBiu8d5GaMNhXo62lM,14651
|
1940
1958
|
pulumi_oci/loadbalancer/listener.py,sha256=JL8Qh48TOlkxs8t9VzieyUm_ehfxxkY7HhBFjOJx_0k,41770
|
1941
|
-
pulumi_oci/loadbalancer/load_balancer.py,sha256=
|
1959
|
+
pulumi_oci/loadbalancer/load_balancer.py,sha256=jkJXZLWFgzWH0Wc8sJjamNaRCEp45HY0Bs1ZWC7zHlA,89536
|
1942
1960
|
pulumi_oci/loadbalancer/load_balancer_routing_policy.py,sha256=1b1YVMCrjbOmgvDu0hu2-73eDsuQ-1kziJgPtStYpZE,18438
|
1943
|
-
pulumi_oci/loadbalancer/outputs.py,sha256=
|
1961
|
+
pulumi_oci/loadbalancer/outputs.py,sha256=LzFzG0UFIQ4SfJ3pp425LSN1Xy0Do6XQf4Q2roDP1Vc,264635
|
1944
1962
|
pulumi_oci/loadbalancer/path_route_set.py,sha256=KysWF4CVMGw_YHxD8EeRei8ZQk1NMKe2WNrD3MGFtzg,14845
|
1945
1963
|
pulumi_oci/loadbalancer/rule_set.py,sha256=3PWLHULHUsvh_AIkd9FwzxTf-ZOYqvZ8o6vvVhCOrhk,19148
|
1946
1964
|
pulumi_oci/loadbalancer/ssl_cipher_suite.py,sha256=TB7iW-BpEd9sM2k78vUdESKrerdeN-UkVZK8mK8krW8,18984
|
@@ -2112,26 +2130,26 @@ pulumi_oci/monitoring/get_metric_data.py,sha256=sHUqGSijdYEalaVkiuKpVB9J3743JmKj
|
|
2112
2130
|
pulumi_oci/monitoring/get_metrics.py,sha256=se7FEg3vd2YnHGKb5WNCms3ghE5zbQCnP3rPMXc2GOc,15139
|
2113
2131
|
pulumi_oci/monitoring/outputs.py,sha256=RJUhm5LOqkBUk2YzcRIg1a9QNMkZJkWfA9iOwlSEPMI,105034
|
2114
2132
|
pulumi_oci/mysql/__init__.py,sha256=NePAVofUEJFnzHsogn-BAX3FEUTLAqx3umifZgO-SUs,908
|
2115
|
-
pulumi_oci/mysql/_inputs.py,sha256=
|
2133
|
+
pulumi_oci/mysql/_inputs.py,sha256=cD9ELXsTveqUIeYclG0n9L9-LreLMXmRcZnesRZQyR0,253776
|
2116
2134
|
pulumi_oci/mysql/channel.py,sha256=2qOEVOkit3zsm50x52fdA2stKseY2dX1H-aw5-TRzG8,29276
|
2117
2135
|
pulumi_oci/mysql/get_channel.py,sha256=9RWJ7SapPP7VELLgfon9j1t-GkDZvEaNNd8cYP3zaYg,10183
|
2118
2136
|
pulumi_oci/mysql/get_channels.py,sha256=UgYhw0ZbFIr_czzbOwhs-md8jAtLt5p8laatNa9rbsM,9348
|
2119
2137
|
pulumi_oci/mysql/get_heat_wave_cluster.py,sha256=78C-vlioQ6fBP0FDxRbVauhsZgcTmwrZJzggBRFare4,8237
|
2120
|
-
pulumi_oci/mysql/get_mysql_backup.py,sha256=
|
2138
|
+
pulumi_oci/mysql/get_mysql_backup.py,sha256=J92IzbzgC-NlJRv0N32Vj9ODQzoNFdt4uHXDQ4mOULQ,16998
|
2121
2139
|
pulumi_oci/mysql/get_mysql_backups.py,sha256=Twve_XALPKXlR7JXyt817syDkTQ54FR5xZcGx55MK3Q,9395
|
2122
2140
|
pulumi_oci/mysql/get_mysql_configuration.py,sha256=ora-Njp95dj9i4pyUXX6422TshGXSmNHq-UesZiJyTE,11167
|
2123
2141
|
pulumi_oci/mysql/get_mysql_configurations.py,sha256=1ucGxa_E49th9WSoxi9tSt-QazNMhiY0grXoTx-j5Ng,10212
|
2124
|
-
pulumi_oci/mysql/get_mysql_db_system.py,sha256=
|
2142
|
+
pulumi_oci/mysql/get_mysql_db_system.py,sha256=dw5NtsliOaUGkqEzg2ygs0_YejC-EvsNPRNILOrD328,27759
|
2125
2143
|
pulumi_oci/mysql/get_mysql_db_systems.py,sha256=Bf8EmCnxa0tasqJyskRiWs-cZnoBFuTWekUO3rbSZRQ,13218
|
2126
2144
|
pulumi_oci/mysql/get_mysql_version.py,sha256=mgfMVlOwCBPD-dezo2Orl0frqDMGJw3-NWvhtGot1Z8,4895
|
2127
2145
|
pulumi_oci/mysql/get_replica.py,sha256=-uCU7Bv8v1V31DaadVLXPB-ce6SVWb1uC__pB6V-mwo,16139
|
2128
2146
|
pulumi_oci/mysql/get_replicas.py,sha256=4ynUARzPBCm8_7RZNspn4dM2kz3E3Yg970rZTTZgxIY,10655
|
2129
2147
|
pulumi_oci/mysql/get_shapes.py,sha256=MErZAA1O9od02UjwnG1d_xMr1S6G1Wb6K6bcMJcwlx4,7731
|
2130
2148
|
pulumi_oci/mysql/heat_wave_cluster.py,sha256=4oJS7bF61abJC24q9srx3EE_OlVNB7X6M-xduNbUmDE,26776
|
2131
|
-
pulumi_oci/mysql/mysql_backup.py,sha256=
|
2149
|
+
pulumi_oci/mysql/mysql_backup.py,sha256=fMqpzUX9wmizKNx7W5_xYYalUlFdb2uLfeAbPgs7gBw,46942
|
2132
2150
|
pulumi_oci/mysql/mysql_configuration.py,sha256=kaYj1U_TJYGtUVTK3gh8Sb2eKEZ1Woe3aIHiG1k6Bto,49913
|
2133
|
-
pulumi_oci/mysql/mysql_db_system.py,sha256=
|
2134
|
-
pulumi_oci/mysql/outputs.py,sha256=
|
2151
|
+
pulumi_oci/mysql/mysql_db_system.py,sha256=bWd-Ez_8hSGdNPLH1ZbS_J3HfpJc8-EKRnnNGsEgl0Q,120133
|
2152
|
+
pulumi_oci/mysql/outputs.py,sha256=s2uLOW4jx1z0Fsn84kITrt7Spn0ZjgjTMmxJwk7M2S4,592131
|
2135
2153
|
pulumi_oci/mysql/replica.py,sha256=hjEabKhsrKCdn7hj1vcxOV5LHQRofwK_Q03qgnP4Ox0,46171
|
2136
2154
|
pulumi_oci/networkfirewall/__init__.py,sha256=6CxpTGYsgQuKkTAQ2Pp9wlTkaCPf0Kz2eChNR2Naaz4,2409
|
2137
2155
|
pulumi_oci/networkfirewall/_inputs.py,sha256=VNKgMQueZUnNlmp9fpR2j9Nszy1KZ4PHRWXhQ8H1va4,33884
|
@@ -2238,18 +2256,18 @@ pulumi_oci/ocvp/__init__.py,sha256=7JzLPH9ZrUF0Ik8FMWlY4nN_DXF7fN2WMM70ixcY1bM,7
|
|
2238
2256
|
pulumi_oci/ocvp/_inputs.py,sha256=9qTGD2k-jhtej6_3ibcV1P6T0sUKfv1oUx1Vcqa_wH0,82848
|
2239
2257
|
pulumi_oci/ocvp/cluster.py,sha256=8YHeqwxsjDQEBZTSKjQafLmp6XgPWMyxqDKC-ssmEYs,81966
|
2240
2258
|
pulumi_oci/ocvp/esxi_host.py,sha256=LKvuoiZlTIiKJDPkCfSYK0yCN61nL61-c5e4KO3S-iY,92717
|
2241
|
-
pulumi_oci/ocvp/get_cluster.py,sha256=
|
2259
|
+
pulumi_oci/ocvp/get_cluster.py,sha256=yuBDCIUdR_KPvEW-KI67kaIi4IE5mMEofvdzCaJG4uw,20886
|
2242
2260
|
pulumi_oci/ocvp/get_clusters.py,sha256=NYMrpqsKwyBPRQ6fv36FVsfxFBiD0r3oiP_oXSQP0Cs,8005
|
2243
2261
|
pulumi_oci/ocvp/get_exsi_host.py,sha256=8oLMiDYTzhI5bcCbNf7D72r1zbCKhjHGpxLUELDH0tY,25874
|
2244
|
-
pulumi_oci/ocvp/get_exsi_hosts.py,sha256=
|
2262
|
+
pulumi_oci/ocvp/get_exsi_hosts.py,sha256=uyD9Izj655HQlV6z3lFKhKAfpnmfocWCx38d8fJDx3E,13929
|
2245
2263
|
pulumi_oci/ocvp/get_retrieve_password.py,sha256=QBHwP0UZE6BlA7ZwLNNfcGU5dEeS49-e3o1LshYMGmM,4516
|
2246
2264
|
pulumi_oci/ocvp/get_sddc.py,sha256=PmgysC66VtWAuX1HJpOB6heJkzBw_K1a2euA1pdMzfQ,54113
|
2247
2265
|
pulumi_oci/ocvp/get_sddcs.py,sha256=px0L0HFrJGseK65moy3AqFGYoqiAsrV59fUrDi1uNHs,8366
|
2248
2266
|
pulumi_oci/ocvp/get_supported_commitments.py,sha256=Np9or0HdPd83MqfhlGleOFOE3KLEUwJR2Cv9OOj2Zgw,6035
|
2249
2267
|
pulumi_oci/ocvp/get_supported_host_shapes.py,sha256=hLwUAgW2SVO2vMBidjimylvgt_fVX9_YlG8qIkolNS4,9532
|
2250
2268
|
pulumi_oci/ocvp/get_supported_skus.py,sha256=ViRRvxynixES6xUMkvMDT5Vm5R4OcZE3SVygjaTp1fU,6018
|
2251
|
-
pulumi_oci/ocvp/get_supported_vmware_software_versions.py,sha256=
|
2252
|
-
pulumi_oci/ocvp/outputs.py,sha256=
|
2269
|
+
pulumi_oci/ocvp/get_supported_vmware_software_versions.py,sha256=7LNNeUc5NiF19ftnb97q9UMU_uDDKdpTilhwK5r3fjY,8916
|
2270
|
+
pulumi_oci/ocvp/outputs.py,sha256=Slt8TsHTb5EAO0-IC-WvGkJzVGL2jXdref0eP-PsBj0,221993
|
2253
2271
|
pulumi_oci/ocvp/sddc.py,sha256=z0XDPvDPR775tp8AHZ6TWG8l3x0vfKa0rc7sQP1z9sU,212185
|
2254
2272
|
pulumi_oci/oda/__init__.py,sha256=sIiYpIKHQ4rqyW3va7TF5kiFxSxMxoiU1keLRRXSBhg,825
|
2255
2273
|
pulumi_oci/oda/_inputs.py,sha256=hWgs5zFWAF1gB96zV6SaIsLULmB9vT6FNe1Z1CbtqCo,8543
|
@@ -2548,24 +2566,25 @@ pulumi_oci/queue/get_queues.py,sha256=hYhh_9dgW8vfhhsIJClT4j51gQDbs9kp6EoItqS-B6
|
|
2548
2566
|
pulumi_oci/queue/outputs.py,sha256=9SW8RHREGQFx00r7PYr1pK3ILnl09BgZr0uu81PPJJY,11860
|
2549
2567
|
pulumi_oci/queue/queue.py,sha256=vvXauye72M21HmpMJ_rzkG0jivpjAFyBkjtyrOpZcJk,50759
|
2550
2568
|
pulumi_oci/recoverymod/__init__.py,sha256=OK1ODRfvOF3FChxhjvEoUukJEwhKRNFy7FpavkfVxs8,718
|
2551
|
-
pulumi_oci/recoverymod/_inputs.py,sha256=
|
2552
|
-
pulumi_oci/recoverymod/get_protected_database.py,sha256=
|
2569
|
+
pulumi_oci/recoverymod/_inputs.py,sha256=ISkp1eghuqN9KZ8QFD5dObv4ziHdvBcfWbWukVmIYqQ,13017
|
2570
|
+
pulumi_oci/recoverymod/get_protected_database.py,sha256=REDaRHUHlSjYp2Zer28iZdzfv7HpXUPL0q0YnUn6QkA,19237
|
2553
2571
|
pulumi_oci/recoverymod/get_protected_database_fetch_configuration.py,sha256=mCMO90HP5EGPn2i1aSDUgMz9uyxpaWwaGU9_2Z3gE8w,7264
|
2554
2572
|
pulumi_oci/recoverymod/get_protected_databases.py,sha256=FIhG9YgK19QQN9UlMvX-zd12Kh8PBJe8obkQBrQwwco,10029
|
2555
2573
|
pulumi_oci/recoverymod/get_protection_policies.py,sha256=ZT8dxIZT5NUzxQ2W0Gi5KT8eHDzOcK2_irFO51tev0s,9125
|
2556
|
-
pulumi_oci/recoverymod/get_protection_policy.py,sha256=
|
2574
|
+
pulumi_oci/recoverymod/get_protection_policy.py,sha256=dMpBQFSQEcYmCUCEIsg4mp59xOYEhk3XRoJLOiflsvU,12679
|
2557
2575
|
pulumi_oci/recoverymod/get_recovery_service_subnet.py,sha256=qi5_GBmXJGR_n9q420xY28K6UxTgJozVSrq3CPv5kZU,12120
|
2558
2576
|
pulumi_oci/recoverymod/get_recovery_service_subnets.py,sha256=_wYJWYVnvTEcpfxaecsrayKhSKgnHRBYYR79RZLbDmo,8680
|
2559
|
-
pulumi_oci/recoverymod/outputs.py,sha256=
|
2560
|
-
pulumi_oci/recoverymod/protected_database.py,sha256=
|
2561
|
-
pulumi_oci/recoverymod/protection_policy.py,sha256=
|
2577
|
+
pulumi_oci/recoverymod/outputs.py,sha256=qG5jWdbGGPUyGrBOfANE4ym1pWtrK_AurJSh5OeQe14,58872
|
2578
|
+
pulumi_oci/recoverymod/protected_database.py,sha256=bNlFTopVust2hULUDB3AjH6Nr3mpVWCKt-Y00cO25Ac,68688
|
2579
|
+
pulumi_oci/recoverymod/protection_policy.py,sha256=i3IVqANGZcwy1qLHKTBRlfRWSK3Jo69ZsUzR8o3AGdQ,49505
|
2562
2580
|
pulumi_oci/recoverymod/recovery_service_subnet.py,sha256=I2XLIPVqgIasMhll3NQ7gNVd_6KFrvGOZlR_Uj1ubdw,40586
|
2563
|
-
pulumi_oci/redis/__init__.py,sha256=
|
2564
|
-
pulumi_oci/redis/_inputs.py,sha256=
|
2565
|
-
pulumi_oci/redis/get_redis_cluster.py,sha256=
|
2566
|
-
pulumi_oci/redis/
|
2567
|
-
pulumi_oci/redis/
|
2568
|
-
pulumi_oci/redis/
|
2581
|
+
pulumi_oci/redis/__init__.py,sha256=bc9gcpXG83TSKYaN5ZqFPOLQB29M0vIXhcpl4q4SqkM,449
|
2582
|
+
pulumi_oci/redis/_inputs.py,sha256=m71G3SJqClv1t7Jj6oWxpj2RBwBOP_ot2LzXZZIYZTU,5943
|
2583
|
+
pulumi_oci/redis/get_redis_cluster.py,sha256=xZaq3yUpGryZX_Xok4jhxOUdW7cq8IkCNRbkyCRObro,17104
|
2584
|
+
pulumi_oci/redis/get_redis_cluster_nodes.py,sha256=SbWQd9k3YEboaZIJqHieFjj4D98ZRQQg2PYHH-4di1c,6316
|
2585
|
+
pulumi_oci/redis/get_redis_clusters.py,sha256=Ney5eUGBsZ7I1ARwRS2Xnfh1xiZLccVpL5aPYTnRDGc,7949
|
2586
|
+
pulumi_oci/redis/outputs.py,sha256=7JuP15ODH3-WLV2JJFJqzh8bb2jrUwHoe0IiqLYDpbQ,26114
|
2587
|
+
pulumi_oci/redis/redis_cluster.py,sha256=jYPZoHdj1ESYh-xfWY-VYvYShWxQaMY61yVCM63ujkw,52732
|
2569
2588
|
pulumi_oci/resourcemanager/__init__.py,sha256=2G2BH5kW2MtOJKFnTb6Oytp5JQCS7n_E3uSubLhEQqk,553
|
2570
2589
|
pulumi_oci/resourcemanager/_inputs.py,sha256=dsFbYoETEn_qfAz8RUBdr4o5-Gkf_Q5Jn-H5ojIZzSA,2420
|
2571
2590
|
pulumi_oci/resourcemanager/get_private_endpoint.py,sha256=WDQTLdcwkv511YMAJZHR3WBr3PrEZ1YA6Yma825zSxk,12225
|
@@ -2777,7 +2796,7 @@ pulumi_oci/waas/policy.py,sha256=cErgMs4jJHSNeJL-w62mi8cUSapwlp0BWz7QYuSVxuc,430
|
|
2777
2796
|
pulumi_oci/waas/protection_rule.py,sha256=pC4dhnyO1rFldRTshMcedkgWP4WyiSetkFCzL-xB9zo,19938
|
2778
2797
|
pulumi_oci/waas/purge_cache.py,sha256=jU7lROBv0-Gz0bMJAP-wVQO8wXy0eBTL4popZteraR8,12912
|
2779
2798
|
pulumi_oci/waf/__init__.py,sha256=29r6sMHheKYKvxj2zmq3QBTyxmY1P-OP5cGjmyD91xI,742
|
2780
|
-
pulumi_oci/waf/_inputs.py,sha256=
|
2799
|
+
pulumi_oci/waf/_inputs.py,sha256=fJ5NJgCFGrG12f76oV4SL7u9JqCLq3pNdRNxt66eCRc,86160
|
2781
2800
|
pulumi_oci/waf/app_firewall.py,sha256=yTMMM43zQtTgrLfyBXpnM8LRVA2Y5HAPA8YULoUmSyc,34540
|
2782
2801
|
pulumi_oci/waf/app_firewall_policy.py,sha256=S4E4pWyilxxY0vZWqcs6bs_o4C6KSFm4ZkWmgh1_2RY,67603
|
2783
2802
|
pulumi_oci/waf/get_firewalls.py,sha256=eGJPfFIqrFrRNOhkCR2itB9NvStNyjD6yO1Xa0qkedo,9356
|
@@ -2789,8 +2808,8 @@ pulumi_oci/waf/get_web_app_firewall.py,sha256=3q2EMLPUkbfDGvEIxFmpkNWxv653AYb37M
|
|
2789
2808
|
pulumi_oci/waf/get_web_app_firewall_policies.py,sha256=O7VSdioW26YIEVlUqhNq3kMmCEi51PKAb7hcTw8jIsQ,8458
|
2790
2809
|
pulumi_oci/waf/get_web_app_firewall_policy.py,sha256=7appT-JjWaUc0yM3SygrdohUQfgguEAkGTRKH1Fr3EE,14234
|
2791
2810
|
pulumi_oci/waf/network_address_list.py,sha256=O-HiNiCu77OCRHsXQ8bmTdivdcU4ReLuXtPV4XU-NQU,33677
|
2792
|
-
pulumi_oci/waf/outputs.py,sha256=
|
2793
|
-
pulumi_oci-2.
|
2794
|
-
pulumi_oci-2.
|
2795
|
-
pulumi_oci-2.
|
2796
|
-
pulumi_oci-2.
|
2811
|
+
pulumi_oci/waf/outputs.py,sha256=Hsb3A2LkAnl-d7DEvFGaGIGrzKc_zyRCeNwUWuwUcW4,227838
|
2812
|
+
pulumi_oci-2.9.0.dist-info/METADATA,sha256=X_UpkMLbyYrwWOmV3ncZyelizeEzhjn3xX3pvi1GUY8,3890
|
2813
|
+
pulumi_oci-2.9.0.dist-info/WHEEL,sha256=UvcQYKBHoFqaQd6LKyqHw9fxEolWLQnlzP0h_LgJAfI,91
|
2814
|
+
pulumi_oci-2.9.0.dist-info/top_level.txt,sha256=0k-nWr_IdDNVF3qcT4ALORmmu1SNCLxWZfHDMN7TWsg,11
|
2815
|
+
pulumi_oci-2.9.0.dist-info/RECORD,,
|