pulumi-oci 2.27.0a1742000109__py3-none-any.whl → 2.27.0a1742444119__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 +144 -0
- pulumi_oci/containerengine/_inputs.py +9 -9
- pulumi_oci/containerengine/outputs.py +18 -22
- pulumi_oci/core/__init__.py +7 -0
- pulumi_oci/core/_inputs.py +147 -0
- pulumi_oci/core/compute_gpu_memory_cluster.py +706 -0
- pulumi_oci/core/compute_gpu_memory_fabric.py +667 -0
- pulumi_oci/core/get_compute_gpu_memory_cluster.py +281 -0
- pulumi_oci/core/get_compute_gpu_memory_cluster_instances.py +144 -0
- pulumi_oci/core/get_compute_gpu_memory_clusters.py +232 -0
- pulumi_oci/core/get_compute_gpu_memory_fabric.py +309 -0
- pulumi_oci/core/get_compute_gpu_memory_fabrics.py +289 -0
- pulumi_oci/core/outputs.py +582 -0
- pulumi_oci/database/__init__.py +2 -0
- pulumi_oci/database/_inputs.py +2211 -24
- pulumi_oci/database/autonomous_container_database.py +305 -52
- pulumi_oci/database/autonomous_container_database_add_standby.py +2183 -0
- pulumi_oci/database/autonomous_container_database_dataguard_association.py +80 -40
- pulumi_oci/database/autonomous_container_database_snapshot_standby.py +322 -0
- pulumi_oci/database/get_autonomous_container_database.py +103 -2
- pulumi_oci/database/get_autonomous_container_database_dataguard_association.py +12 -1
- pulumi_oci/database/get_autonomous_container_databases.py +1 -1
- pulumi_oci/database/get_maintenance_run.py +15 -1
- pulumi_oci/database/maintenance_run.py +28 -0
- pulumi_oci/database/outputs.py +2747 -225
- pulumi_oci/goldengate/_inputs.py +128 -0
- pulumi_oci/goldengate/deployment.py +103 -0
- pulumi_oci/goldengate/deployment_backup.py +28 -0
- pulumi_oci/goldengate/get_deployment.py +43 -1
- pulumi_oci/goldengate/get_deployment_backup.py +15 -1
- pulumi_oci/goldengate/outputs.py +289 -0
- pulumi_oci/osmanagementhub/__init__.py +18 -0
- pulumi_oci/osmanagementhub/_inputs.py +677 -12
- pulumi_oci/osmanagementhub/event.py +8 -0
- pulumi_oci/osmanagementhub/get_entitlements.py +2 -2
- pulumi_oci/osmanagementhub/get_event.py +2 -0
- pulumi_oci/osmanagementhub/get_events.py +2 -0
- pulumi_oci/osmanagementhub/get_managed_instance.py +30 -2
- pulumi_oci/osmanagementhub/get_managed_instances.py +75 -63
- pulumi_oci/osmanagementhub/get_management_station.py +116 -4
- pulumi_oci/osmanagementhub/get_management_station_mirrors.py +1 -1
- pulumi_oci/osmanagementhub/get_management_stations.py +47 -4
- pulumi_oci/osmanagementhub/get_profile.py +32 -4
- pulumi_oci/osmanagementhub/get_profile_available_software_sources.py +207 -0
- pulumi_oci/osmanagementhub/get_profile_version.py +388 -0
- pulumi_oci/osmanagementhub/get_profiles.py +63 -3
- pulumi_oci/osmanagementhub/get_scheduled_job.py +15 -1
- pulumi_oci/osmanagementhub/get_software_package.py +2 -2
- pulumi_oci/osmanagementhub/get_software_package_software_source.py +7 -7
- pulumi_oci/osmanagementhub/get_software_source.py +89 -5
- pulumi_oci/osmanagementhub/get_software_source_available_software_packages.py +209 -0
- pulumi_oci/osmanagementhub/get_software_source_manifest.py +127 -0
- pulumi_oci/osmanagementhub/get_software_sources.py +30 -8
- pulumi_oci/osmanagementhub/lifecycle_stage_attach_managed_instances_management.py +6 -39
- pulumi_oci/osmanagementhub/lifecycle_stage_detach_managed_instances_management.py +6 -39
- pulumi_oci/osmanagementhub/lifecycle_stage_reboot_management.py +297 -0
- pulumi_oci/osmanagementhub/managed_instance.py +56 -0
- pulumi_oci/osmanagementhub/managed_instance_group_install_packages_management.py +49 -0
- pulumi_oci/osmanagementhub/managed_instance_group_reboot_management.py +297 -0
- pulumi_oci/osmanagementhub/managed_instance_reboot_management.py +299 -0
- pulumi_oci/osmanagementhub/management_station.py +251 -4
- pulumi_oci/osmanagementhub/management_station_associate_managed_instances_management.py +298 -0
- pulumi_oci/osmanagementhub/management_station_refresh_management.py +2 -2
- pulumi_oci/osmanagementhub/management_station_synchronize_mirrors_management.py +9 -9
- pulumi_oci/osmanagementhub/outputs.py +1349 -50
- pulumi_oci/osmanagementhub/profile.py +70 -14
- pulumi_oci/osmanagementhub/profile_attach_lifecycle_stage_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_attach_managed_instance_group_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_attach_management_station_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_attach_software_sources_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_detach_software_sources_management.py +269 -0
- pulumi_oci/osmanagementhub/scheduled_job.py +72 -21
- pulumi_oci/osmanagementhub/software_source.py +365 -26
- pulumi_oci/osmanagementhub/software_source_add_packages_management.py +67 -10
- pulumi_oci/osmanagementhub/software_source_generate_metadata_management.py +217 -0
- pulumi_oci/osmanagementhub/software_source_manifest.py +268 -0
- pulumi_oci/osmanagementhub/software_source_remove_packages_management.py +277 -0
- pulumi_oci/osmanagementhub/software_source_replace_packages_management.py +277 -0
- pulumi_oci/osmanagementhub/work_request_rerun_management.py +325 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-2.27.0a1742000109.dist-info → pulumi_oci-2.27.0a1742444119.dist-info}/METADATA +2 -2
- {pulumi_oci-2.27.0a1742000109.dist-info → pulumi_oci-2.27.0a1742444119.dist-info}/RECORD +84 -57
- {pulumi_oci-2.27.0a1742000109.dist-info → pulumi_oci-2.27.0a1742444119.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.27.0a1742000109.dist-info → pulumi_oci-2.27.0a1742444119.dist-info}/top_level.txt +0 -0
@@ -1,7 +1,7 @@
|
|
1
|
-
pulumi_oci/__init__.py,sha256=
|
1
|
+
pulumi_oci/__init__.py,sha256=nJyAGuYw5WPyLD9KPMydOLiKvjIDaoWjGSqMrn6GxVM,184420
|
2
2
|
pulumi_oci/_utilities.py,sha256=yyuODPikZ9pto3JWJRfMJo98dWmQ5_y45-TVcZG_K8Y,10807
|
3
3
|
pulumi_oci/provider.py,sha256=96D04NS2SyFI88Et-fP8TEb08j4LkBBhOh2FY3Zrdns,25254
|
4
|
-
pulumi_oci/pulumi-plugin.json,sha256=
|
4
|
+
pulumi_oci/pulumi-plugin.json,sha256=GxXKRrfyKAodxZsHJDTgjmp0DJGk_pS9HrNud5IRqTQ,80
|
5
5
|
pulumi_oci/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
6
6
|
pulumi_oci/adm/__init__.py,sha256=pxPlS_-eNzVJqBq2i1MCMmmLGhFhW-ATfiH6YEb71xI,1049
|
7
7
|
pulumi_oci/adm/_inputs.py,sha256=YnlFWcwYsWjjrUbroAeHpnljrt9mAPqMtutbJnKVRCk,69792
|
@@ -412,7 +412,7 @@ pulumi_oci/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030
|
|
412
412
|
pulumi_oci/config/__init__.pyi,sha256=nk9k58DjW7xU6QI5z7C9l0M_8w3MVMIrbT-iJFvXzBc,2845
|
413
413
|
pulumi_oci/config/vars.py,sha256=wJ38pfKN693v_wmnB9wYcBd9DylWZMG5UfFwrDQ5U_Y,4471
|
414
414
|
pulumi_oci/containerengine/__init__.py,sha256=SdyuqHYrpB6AkkA98SaO-K5EOeDlCqxREshS6cITv7w,1332
|
415
|
-
pulumi_oci/containerengine/_inputs.py,sha256=
|
415
|
+
pulumi_oci/containerengine/_inputs.py,sha256=IHeH-Rb65kPwFv_D5kgjuby1kJdHYaC3b2dyZX_nDUI,243302
|
416
416
|
pulumi_oci/containerengine/addon.py,sha256=_wxM5WnhWKYW6Yitcrf8JqOe5VQGpaotMzDpUUOK8L4,24731
|
417
417
|
pulumi_oci/containerengine/cluster.py,sha256=jbB0uEHirTFgghD1KRxEwhQqZNERPA9Tatmm-kOpfTQ,56532
|
418
418
|
pulumi_oci/containerengine/cluster_complete_credential_rotation_management.py,sha256=djNxV8Ezp2QI195gIZ4JY2av8_-EV_A8hgmhihTqzJ0,9157
|
@@ -440,7 +440,7 @@ pulumi_oci/containerengine/get_work_request_errors.py,sha256=vARAZ9S6Tcb-OkDx1kp
|
|
440
440
|
pulumi_oci/containerengine/get_work_request_log_entries.py,sha256=S6hKuFFYt6Qpc4YgySSwVuFZ2gNJZ4VPxlj6OIJ3t1U,7071
|
441
441
|
pulumi_oci/containerengine/get_work_requests.py,sha256=KMi522nPUG7J90CCtAfyOwtIM-MTHj9iz9ll_CYidio,9606
|
442
442
|
pulumi_oci/containerengine/node_pool.py,sha256=3nijuRswpA7ZJw2cFkL76QEsPQh1ySMjoU5U9LrihcA,78811
|
443
|
-
pulumi_oci/containerengine/outputs.py,sha256=
|
443
|
+
pulumi_oci/containerengine/outputs.py,sha256=w8W_Au27gKyqiZu8P-5MYLNpLJETf55BSFIZxoWJB0g,392841
|
444
444
|
pulumi_oci/containerengine/virtual_node_pool.py,sha256=Cz6T2b8Vv9ZJIxA78C6GFbnUZD3TzgrpOZOu_Sm9a2s,54450
|
445
445
|
pulumi_oci/containerinstances/__init__.py,sha256=xO0-NxqDfouoMvYJoAIqyDTwJ_OfkHLWfmRRCIJaflE,480
|
446
446
|
pulumi_oci/containerinstances/_inputs.py,sha256=9xAzmOah2OikS_3-h3r08ldn2X9CPtdvseWpsfFVLHQ,3781
|
@@ -449,8 +449,8 @@ pulumi_oci/containerinstances/get_container_instance_shape.py,sha256=2puQ543js43
|
|
449
449
|
pulumi_oci/containerinstances/get_container_instance_shapes.py,sha256=STh66iv64cW67gmDFXe-iSAnyvHfZdTMqB4C7_oOBHY,7864
|
450
450
|
pulumi_oci/containerinstances/get_container_instances.py,sha256=P2pHRoapgZgwBk0_v5auM5GUFwDhKmsCcv33xEqcqXk,9836
|
451
451
|
pulumi_oci/containerinstances/outputs.py,sha256=ggpNxDeupL0AotlCwSKnp75ozMxrnPEyxcxaM0cq9Yw,99192
|
452
|
-
pulumi_oci/core/__init__.py,sha256=
|
453
|
-
pulumi_oci/core/_inputs.py,sha256=
|
452
|
+
pulumi_oci/core/__init__.py,sha256=7G2--jZneBbrrDo_gonfrK6SvF_ZVhpLiy9ySZxMnlg,9124
|
453
|
+
pulumi_oci/core/_inputs.py,sha256=SkzE-p-z70XSNPpsrcYwxzcnWB1xehzzf2erVx_W2oE,1232948
|
454
454
|
pulumi_oci/core/app_catalog_listing_resource_version_agreement.py,sha256=w0xmbvF3ZVEoTyxj-v86bDLlY7tVNxDCW7l1xl9TnrY,14622
|
455
455
|
pulumi_oci/core/app_catalog_subscription.py,sha256=0VyKID-oO2-Ko6sntOgA9Iof9g8xh8LYic1VflGYzM0,29260
|
456
456
|
pulumi_oci/core/boot_volume.py,sha256=PGWxwlIRQqJimDrUgi_NCUXQc-mMlzzpjcJOT02DwMQ,72480
|
@@ -462,6 +462,8 @@ pulumi_oci/core/compute_capacity_report.py,sha256=W491LXEhLyJRDYVZnEazve7Z0DOHAJ
|
|
462
462
|
pulumi_oci/core/compute_capacity_reservation.py,sha256=9dkUYZld3UcLoisfpykqQ9ro-OanV3ooepnE0AhGw4Q,45848
|
463
463
|
pulumi_oci/core/compute_capacity_topology.py,sha256=BIA9893sTYtmIuIM7ZipZBdqFL4uD_cfMZ88l07REQw,31937
|
464
464
|
pulumi_oci/core/compute_cluster.py,sha256=WjatGY6yTbgcIAMKw2ywMh2GFddVBU03P_oPhwh9dyc,27194
|
465
|
+
pulumi_oci/core/compute_gpu_memory_cluster.py,sha256=xmjVBEpwV3_-GI7ETHohfb_r40lRRORw_QzckK9gZwA,37892
|
466
|
+
pulumi_oci/core/compute_gpu_memory_fabric.py,sha256=DQe7Mqhqf0-FhrrKBS67HnAKiFqBQa722lYR99jnbFg,36913
|
465
467
|
pulumi_oci/core/compute_image_capability_schema.py,sha256=gklrzmC543ttqjWl6eWYClOtsFZyeOXaI7gWxhQ3E-0,29080
|
466
468
|
pulumi_oci/core/console_history.py,sha256=9kJmAlDi1JmrA2HPZIFfXS4fF4mqV6t4oIMXCHe7axA,26339
|
467
469
|
pulumi_oci/core/cpe.py,sha256=CXfP_81ybyOEdoxI8imw1r5_fAbv1YQ-EkH44dmPxZs,38975
|
@@ -520,6 +522,11 @@ pulumi_oci/core/get_compute_global_image_capability_schema.py,sha256=zt373N8rM0D
|
|
520
522
|
pulumi_oci/core/get_compute_global_image_capability_schemas.py,sha256=nZhZZGz_xpOTD2_qIsFctiiEwuGRxoNKaQ5Xnk2W6zs,8385
|
521
523
|
pulumi_oci/core/get_compute_global_image_capability_schemas_version.py,sha256=3dLHmUGAg4BbYf4GvT5zSQM1rwT4MIxmGfjD0disc3U,10651
|
522
524
|
pulumi_oci/core/get_compute_global_image_capability_schemas_versions.py,sha256=p8nC78seihcqLFg3cu1oYpQezH2EqmQNLSRnCd8b5aA,9675
|
525
|
+
pulumi_oci/core/get_compute_gpu_memory_cluster.py,sha256=lnuir1ycne0vLkavJDeGOEKGelTClsce9Yolzyadzds,13351
|
526
|
+
pulumi_oci/core/get_compute_gpu_memory_cluster_instances.py,sha256=srUuVb9PIFev7dKl6gHucHysZq779rwPKeK_lt4GBFc,7235
|
527
|
+
pulumi_oci/core/get_compute_gpu_memory_clusters.py,sha256=VUPud5opkxUtjoi-RhoJPqzBebSLeX4iOsFchdIjMBk,12632
|
528
|
+
pulumi_oci/core/get_compute_gpu_memory_fabric.py,sha256=XruJoFyUDAD589i0GjkenX4l034e5hWBrtwCIPqcjI0,15031
|
529
|
+
pulumi_oci/core/get_compute_gpu_memory_fabrics.py,sha256=caJZvZysbfXhchjUrkFJx4MfqRNzsGdjWZsAuwFsasg,17589
|
523
530
|
pulumi_oci/core/get_compute_image_capability_schema.py,sha256=ZDTXXzMZyl-TF-TbqpFR9pfYHl0w7vl2NCaHE1OCrv8,13602
|
524
531
|
pulumi_oci/core/get_compute_image_capability_schemas.py,sha256=CzijWK5-S_MCpy0O2MQLzbBZx6lNU0dbg97P0x5Jrjo,9219
|
525
532
|
pulumi_oci/core/get_console_histories.py,sha256=GcDsk8iT7oz6bC7W-5HbFaHVZ7niMQRO6YKN7x03Xbw,9340
|
@@ -651,7 +658,7 @@ pulumi_oci/core/local_peering_gateway.py,sha256=p1V8uNamUxJa-UpKG4TzBGudP8NNB77l
|
|
651
658
|
pulumi_oci/core/nat_gateway.py,sha256=_I0Ls2WSv32m2-8_S9WYFjGvpt4biSLNvlY-fXMryDc,36333
|
652
659
|
pulumi_oci/core/network_security_group.py,sha256=GAbG1upv4B7ytveFpHLmy1w_N8dQFCaq_05OtFrxIyw,25742
|
653
660
|
pulumi_oci/core/network_security_group_security_rule.py,sha256=h8JYABPvXFPfgCMRghsV0Is2KAYOxJS6x6uDeMmb0_8,54348
|
654
|
-
pulumi_oci/core/outputs.py,sha256=
|
661
|
+
pulumi_oci/core/outputs.py,sha256=RaxUTaUZQx_UZa1YB1cB0b_O-ALGhoZHSTGQoYmndqM,2566258
|
655
662
|
pulumi_oci/core/private_ip.py,sha256=7U5JkefHxTkMsm3GkqfIvYASbw_Vj0E5AdgR8taQ8Vw,45659
|
656
663
|
pulumi_oci/core/public_ip.py,sha256=L-WZ8RuDFtPmkZTxJFUggYipXEZFl6mSb1z2GJwdqx0,49195
|
657
664
|
pulumi_oci/core/public_ip_pool.py,sha256=SxGPeRtTauVvrVomIfsQIwZvIuh8oOwgJmNDGlHzBGQ,24119
|
@@ -676,13 +683,15 @@ pulumi_oci/core/volume_backup_policy_assignment.py,sha256=ttay56UlpUXuMqWaYgPnqu
|
|
676
683
|
pulumi_oci/core/volume_group.py,sha256=aS0UKsHbRlBWPy_5USzXAjZMs1Ms3ewjXYbnKcag_Kw,55133
|
677
684
|
pulumi_oci/core/volume_group_backup.py,sha256=gzCYyFdf1ozd1k9SdScXQ7rYLqqMBG5Dv_S1m8ZS7qk,44707
|
678
685
|
pulumi_oci/core/vtap.py,sha256=DPtuaAL94Be1JGuZdlxbnI82rF21PVhlOY5HqE_Cq8I,62801
|
679
|
-
pulumi_oci/database/__init__.py,sha256=
|
680
|
-
pulumi_oci/database/_inputs.py,sha256=
|
686
|
+
pulumi_oci/database/__init__.py,sha256=PBXw2aJB-3Fi-2JwwDitWuQbB-j_rGga2kOSXXiDxBc,10226
|
687
|
+
pulumi_oci/database/_inputs.py,sha256=wD6up7sScYn7NclEfroowFffDpvKiD8yV5OvQd-KyBk,1260794
|
681
688
|
pulumi_oci/database/application_vip.py,sha256=oKsdf6T7qRe9GpUYlvQAbwgJqBbcaelmV41pb1ExVCg,31388
|
682
|
-
pulumi_oci/database/autonomous_container_database.py,sha256=
|
683
|
-
pulumi_oci/database/
|
689
|
+
pulumi_oci/database/autonomous_container_database.py,sha256=hNmHBap6GP6PaqZcHZTPQf-IO2ThHV2MG7MMglDil9U,189346
|
690
|
+
pulumi_oci/database/autonomous_container_database_add_standby.py,sha256=x-kGhPlp2k6n6p4TA8H5MLmssrxXN6WhhHeWeRmd4oU,135255
|
691
|
+
pulumi_oci/database/autonomous_container_database_dataguard_association.py,sha256=hKZF0KBMMJl1J6FUdhX64JV1yufqyx0MZrG_qmzwvmo,77955
|
684
692
|
pulumi_oci/database/autonomous_container_database_dataguard_association_operation.py,sha256=KdrGLo1fGVgJL4tpeiYMtjyAyIaWZ7oNCD_vKMof7A8,17941
|
685
693
|
pulumi_oci/database/autonomous_container_database_dataguard_role_change.py,sha256=yML8BbuREYzHrq1dVIYwGlZ5bFpsBVGpT_Y9m-CI4V0,12423
|
694
|
+
pulumi_oci/database/autonomous_container_database_snapshot_standby.py,sha256=3mse-B2ma16j5rI5Qu0x8f88b6nnSEzn9NOi5oong_A,16963
|
686
695
|
pulumi_oci/database/autonomous_database.py,sha256=Am_CGcODLpU0SZTxR8_s952-fDtJREMvksE2DsqbWnM,501796
|
687
696
|
pulumi_oci/database/autonomous_database_backup.py,sha256=TMDev4UedzHcRjt5ZfjnoeC3-3OTA7rM4AaAtn_bvhA,43614
|
688
697
|
pulumi_oci/database/autonomous_database_instance_wallet_management.py,sha256=shw6-GEc4MzawcuhYyZCXXOTszzM-P1Of1wCDnjc8hc,18745
|
@@ -736,12 +745,12 @@ pulumi_oci/database/external_pluggable_databases_stack_monitoring.py,sha256=v6DZ
|
|
736
745
|
pulumi_oci/database/get_application_vip.py,sha256=GU9qOTWmJdhG5wbZhwESkI-kdlsqZhHFRLYNQyscIBQ,12520
|
737
746
|
pulumi_oci/database/get_application_vips.py,sha256=IkELK4zMVS5J-R8LysmYNxCKK3crKeF3y_oTwo3MEOo,8584
|
738
747
|
pulumi_oci/database/get_autonomous_character_sets.py,sha256=PYoZrtSl03o16dxXgBlUKDmQ3h9-36GF5vLbO-lJskI,9184
|
739
|
-
pulumi_oci/database/get_autonomous_container_database.py,sha256=
|
740
|
-
pulumi_oci/database/get_autonomous_container_database_dataguard_association.py,sha256=
|
748
|
+
pulumi_oci/database/get_autonomous_container_database.py,sha256=qR-_TmXFlG6oMzYxqrl7ffT_rs3HdYFInvZVyKS8cAQ,63562
|
749
|
+
pulumi_oci/database/get_autonomous_container_database_dataguard_association.py,sha256=QrT_NDCHdeT6e6SAopo1F06amsfXtBprsWjRyVAj5-k,28251
|
741
750
|
pulumi_oci/database/get_autonomous_container_database_dataguard_associations.py,sha256=t572N5q2X7gZMOJBYPREHDekZQrUrhrkzRZXPnQ_yK4,8669
|
742
751
|
pulumi_oci/database/get_autonomous_container_database_resource_usage.py,sha256=LOC6gXXjAWVFiyPj2az7aTMm-kF-Fh5iGe-0bNBigkQ,14353
|
743
752
|
pulumi_oci/database/get_autonomous_container_database_versions.py,sha256=9HE-ThIghRLY3gPOA5YQXqc3zy1ffrRqWwC1ZsGqOeg,8183
|
744
|
-
pulumi_oci/database/get_autonomous_container_databases.py,sha256=
|
753
|
+
pulumi_oci/database/get_autonomous_container_databases.py,sha256=hJ-b0JQU5KgulEgXK9Si27nGQOMAgWerpBKtoRMWTSU,18889
|
745
754
|
pulumi_oci/database/get_autonomous_container_patches.py,sha256=FarcOzwvRktqTL-klNGowQmteusBjhsiFR1Ik8aApmc,9370
|
746
755
|
pulumi_oci/database/get_autonomous_database.py,sha256=_Pnxm5R7YDGA26fGShDaIKfV_2phjk8BeCoYislqZEI,126992
|
747
756
|
pulumi_oci/database/get_autonomous_database_backup.py,sha256=AFOGaqlIepz4vIH1-pFtqNRTS86pnt1XmItkBX49Qk4,20005
|
@@ -848,7 +857,7 @@ pulumi_oci/database/get_gi_versions.py,sha256=SRclra2qCXjNCzkNIHYoa_5TxX4xd1m0r5
|
|
848
857
|
pulumi_oci/database/get_infrastructure_target_version.py,sha256=VmCbGaW0eVtWouGM0u2HTmdvz0Utt-pT0FdTRtHTkHA,9660
|
849
858
|
pulumi_oci/database/get_key_store.py,sha256=5bicoM6vgvW5m0x4A1K0AqMvbPhwxTtUFKZrpzS3_CU,10876
|
850
859
|
pulumi_oci/database/get_key_stores.py,sha256=sOkis-QLRR62JRMwWoDHOQy7sbHinIT_IGbEp02evx0,5608
|
851
|
-
pulumi_oci/database/get_maintenance_run.py,sha256=
|
860
|
+
pulumi_oci/database/get_maintenance_run.py,sha256=MPc0scJHEEqt-vfzG5KyTShKvbTBVoySoWbz6rO5GEY,29128
|
852
861
|
pulumi_oci/database/get_maintenance_runs.py,sha256=8lmh3yR4hxRrFE1zMXz72SigaoG9RyxYrMRgAIeAgq4,14482
|
853
862
|
pulumi_oci/database/get_managed_preferred_credential.py,sha256=ofIF_DRwmln8awZE4WgwuDVF5bKzRJUBSzSaC0JyibQ,10982
|
854
863
|
pulumi_oci/database/get_managed_preferred_credentials.py,sha256=1R-3FFz282n3jXll1lIvSUZ8ffnK2BAY1zNORWHlB2U,6775
|
@@ -882,9 +891,9 @@ pulumi_oci/database/get_vm_cluster_update_history_entry.py,sha256=bcz2RhhXQaXYmX
|
|
882
891
|
pulumi_oci/database/get_vm_cluster_updates.py,sha256=Sa2UlmkCw9As2HtPLRLj5t5OFKTJDTe6qoRphkWh2fo,8150
|
883
892
|
pulumi_oci/database/get_vm_clusters.py,sha256=YK_x85dBzzEZGUV47p0EgQHtbYVRL88Ura1VZcU6_fo,11149
|
884
893
|
pulumi_oci/database/key_store.py,sha256=utkO4jzVMM59m0NEZdhHdqnIdGpJiNjrW8mQjF9dT4o,27789
|
885
|
-
pulumi_oci/database/maintenance_run.py,sha256=
|
894
|
+
pulumi_oci/database/maintenance_run.py,sha256=8qmpVGiPxRE1AdnIh4gyZReYDWn7a871oe-z7KXUuGA,66885
|
886
895
|
pulumi_oci/database/oneoff_patch.py,sha256=WmKZ_CNZ6Ns_0s5kRuvyXeT8KgNx24L7oiRQG5CRn-Q,38954
|
887
|
-
pulumi_oci/database/outputs.py,sha256=
|
896
|
+
pulumi_oci/database/outputs.py,sha256=gZgBLzR2dypRD_ojIUQusDV_xH768dNRM-uPnf_uhhA,2868705
|
888
897
|
pulumi_oci/database/pluggable_database.py,sha256=k38To3UOhD9D5tC1jQMvAfT_xdSs2hBdL61W4rA3DPQ,79387
|
889
898
|
pulumi_oci/database/pluggable_database_managements_management.py,sha256=cmW6n0jUdviIoYQ5sHe_AwQWIEXpy8DS1W7fFnMJK2w,52897
|
890
899
|
pulumi_oci/database/pluggable_databases_local_clone.py,sha256=S0EmRLhANos9tiM_yFrDENRZWjiROIr6MorLJlC0qFw,51106
|
@@ -1751,12 +1760,12 @@ pulumi_oci/globallydistributeddatabase/outputs.py,sha256=IcxFQV4p6pjse3uTgmgFTM2
|
|
1751
1760
|
pulumi_oci/globallydistributeddatabase/private_endpoint.py,sha256=d6ZYahta1qdr0zmhxhKzbKECbluIrtgmjVHSwX3_DwI,39207
|
1752
1761
|
pulumi_oci/globallydistributeddatabase/sharded_database.py,sha256=YnILiz4cVq7dBZ0pIxbbh_g6VWkjr_vI8Sw7qbnHGno,123043
|
1753
1762
|
pulumi_oci/goldengate/__init__.py,sha256=OpUZaqa8pn-AfZNy5NMvKzfPzFaGXg3q5_h7CijYNNw,1606
|
1754
|
-
pulumi_oci/goldengate/_inputs.py,sha256=
|
1763
|
+
pulumi_oci/goldengate/_inputs.py,sha256=sjSTqaT2SRYCljvN51RckPsPe3IIM6ZOS9J7nJcn95c,103215
|
1755
1764
|
pulumi_oci/goldengate/connection.py,sha256=czTGFL7DecV_AOyQxuHB-Upm5-BXfwhb14bqCswjm50,373706
|
1756
1765
|
pulumi_oci/goldengate/connection_assignment.py,sha256=XNtTILpAQjfNSYn6csr98gQIDCUXMyyv4kf72q_D7ck,20881
|
1757
1766
|
pulumi_oci/goldengate/database_registration.py,sha256=rdiMPMdVOO3sLr-f7Yk-oj2AKVvsIrEt0UT6rLePucs,71293
|
1758
|
-
pulumi_oci/goldengate/deployment.py,sha256=
|
1759
|
-
pulumi_oci/goldengate/deployment_backup.py,sha256=
|
1767
|
+
pulumi_oci/goldengate/deployment.py,sha256=KrlLJyJqP-Ji916j_LHnafa_QfLLCgZ-xV4-An2FN3I,106471
|
1768
|
+
pulumi_oci/goldengate/deployment_backup.py,sha256=37cbjmUMLCY15MdVBI-egecXdm2tt6HpSBFhYH3cjec,52427
|
1760
1769
|
pulumi_oci/goldengate/deployment_certificate.py,sha256=BdJUzPc09T0OLb6KtJEqhtqzaIXFejWueRXkzlQShw4,35680
|
1761
1770
|
pulumi_oci/goldengate/get_connection.py,sha256=wpZzEjVuzPeZnDAiuGJGg07MbRvtPdpudvvVHUmyhHY,87110
|
1762
1771
|
pulumi_oci/goldengate/get_connection_assignment.py,sha256=aq-YkPBhlSayHBvmpiGESbsRod7yu5WvcjaPqzzcKy0,9914
|
@@ -1764,8 +1773,8 @@ pulumi_oci/goldengate/get_connection_assignments.py,sha256=nlKixw1lo3kYD5k0vKO04
|
|
1764
1773
|
pulumi_oci/goldengate/get_connections.py,sha256=TjHH-_ZNgKMPGXoeUEDfChiWT_5HuMn9qzQ6Cen5jwg,15003
|
1765
1774
|
pulumi_oci/goldengate/get_database_registration.py,sha256=0PprzcrdIwD2eGUsfLt84bMl5eiwYjRDgvUXv921zfE,21529
|
1766
1775
|
pulumi_oci/goldengate/get_database_registrations.py,sha256=jx2YAVcA3W2N7C59YbcVoBuKrR2w_z-Phw6tFZSnPkM,9218
|
1767
|
-
pulumi_oci/goldengate/get_deployment.py,sha256=
|
1768
|
-
pulumi_oci/goldengate/get_deployment_backup.py,sha256=
|
1776
|
+
pulumi_oci/goldengate/get_deployment.py,sha256=ptjbX1vsuiJJAdV0D6tBnOk5TSvJEgmq0BctMyHaD64,38799
|
1777
|
+
pulumi_oci/goldengate/get_deployment_backup.py,sha256=N6nJ2-hb0Mw3bqCuzYZ0coyNNLHSRq8OOslhaYHzgws,20071
|
1769
1778
|
pulumi_oci/goldengate/get_deployment_backups.py,sha256=_OZ9Dek4HEJqFRkK0iyZnnVOzy0xR0Yl8ZSbavQJyQs,10193
|
1770
1779
|
pulumi_oci/goldengate/get_deployment_certificate.py,sha256=flIgcNq59iflC7pZkkcDKdVV6K6X4g5BBTr9diITGiE,17063
|
1771
1780
|
pulumi_oci/goldengate/get_deployment_certificates.py,sha256=Aqd-FUYUmMHNY4vXoOkBHSOf_tm5nsgY59Cup7vNqfI,7143
|
@@ -1788,7 +1797,7 @@ pulumi_oci/goldengate/get_trail_file.py,sha256=NAOPzj12Gby708lnfIK8LMgHpmmgvZqbS
|
|
1788
1797
|
pulumi_oci/goldengate/get_trail_files.py,sha256=ytBS9ypv5JB_2yzrKAZNb-H6vBoK6M441xelitY8fSo,7955
|
1789
1798
|
pulumi_oci/goldengate/get_trail_sequence.py,sha256=-VpjFnSf-1CZAaa6EW9kQJPwvCsJW8oPWFDFmLv0NPQ,8597
|
1790
1799
|
pulumi_oci/goldengate/get_trail_sequences.py,sha256=qIT6KcCTC6RpYhkN68O8YLxSHFpt2Lw-ohK5O59dGPo,9255
|
1791
|
-
pulumi_oci/goldengate/outputs.py,sha256=
|
1800
|
+
pulumi_oci/goldengate/outputs.py,sha256=khBePcMIDNDuYp-IL7XbDA2RfK1h6ijdpE0LQ9XQaZQ,384721
|
1792
1801
|
pulumi_oci/goldengate/pipeline.py,sha256=LmMq1eI-2NbNMxRu0LEvmPFvnpMi_MzsxgKz7NpX-6c,49207
|
1793
1802
|
pulumi_oci/healthchecks/__init__.py,sha256=PJnzYouMBWUvQ3Du18Ga3ztCAO2ekzXs2E8fPG4C0XU,662
|
1794
1803
|
pulumi_oci/healthchecks/_inputs.py,sha256=ak61T7VVp0CrgPcfw-62NcEb54Orb3-QC68cVDQkbew,7330
|
@@ -2640,19 +2649,19 @@ pulumi_oci/osmanagement/managed_instance_group.py,sha256=5U3KYXkUkZQYWnliUv-1DJn
|
|
2640
2649
|
pulumi_oci/osmanagement/managed_instance_management.py,sha256=dVpudktO4Ey6XnEP9v_pPk9jUW-vpB-NE7mNvgm5tLE,33474
|
2641
2650
|
pulumi_oci/osmanagement/outputs.py,sha256=FslavfBysUYLOKQ1ITvOXl4TdgyUw4cJSM3xlJSDq3A,63123
|
2642
2651
|
pulumi_oci/osmanagement/software_source.py,sha256=eFie23IM23uyanOS04X2czQ0DcgGAweGHM2YYKx7XD0,45038
|
2643
|
-
pulumi_oci/osmanagementhub/__init__.py,sha256=
|
2644
|
-
pulumi_oci/osmanagementhub/_inputs.py,sha256=
|
2645
|
-
pulumi_oci/osmanagementhub/event.py,sha256=
|
2646
|
-
pulumi_oci/osmanagementhub/get_entitlements.py,sha256=
|
2652
|
+
pulumi_oci/osmanagementhub/__init__.py,sha256=eItEyUgUAvYvmxMc5wDyAycE5FcbfLeYTxs0eiiZzdg,5080
|
2653
|
+
pulumi_oci/osmanagementhub/_inputs.py,sha256=STv7UJmYKvqYrjwaXafaE0ZbzV1enGYwZpPROZ7ruS8,286677
|
2654
|
+
pulumi_oci/osmanagementhub/event.py,sha256=MXHycatClxAGl5rg2FgTG9H7-uyk2z12o1NcsKlg2SY,38946
|
2655
|
+
pulumi_oci/osmanagementhub/get_entitlements.py,sha256=XzlN8l9BJjWrDVNlKnXyGRe2wx5KJsRSRpFlGFCBZao,8738
|
2647
2656
|
pulumi_oci/osmanagementhub/get_errata.py,sha256=7A4iyBWBjVfUwIhzYtUQKeUGuh1JO_PuSwCIXMAB4w0,15647
|
2648
2657
|
pulumi_oci/osmanagementhub/get_erratum.py,sha256=VJjhKeQSyCLn-DWzALsTq4kotdnZu4phG_Jd2y6Oye0,13512
|
2649
|
-
pulumi_oci/osmanagementhub/get_event.py,sha256=
|
2650
|
-
pulumi_oci/osmanagementhub/get_events.py,sha256=
|
2658
|
+
pulumi_oci/osmanagementhub/get_event.py,sha256=rlwdHr-WNMo-myGjSfUari1WPHUSHvY3VgtGlQ6ANBI,15329
|
2659
|
+
pulumi_oci/osmanagementhub/get_events.py,sha256=RhPE645ly44Ey2P0aqtATMioBkxuMGcJS8JBsGVxXSY,18648
|
2651
2660
|
pulumi_oci/osmanagementhub/get_lifecycle_environment.py,sha256=mhwPfVe8T4E4IoZILFj0BsyGcHF0SvNPt6x3NJ5uPjY,14821
|
2652
2661
|
pulumi_oci/osmanagementhub/get_lifecycle_environments.py,sha256=9xF4Ztgm3HpzKRt4SThCOlL8HOV9oJRKSzIfZYOHF34,17033
|
2653
2662
|
pulumi_oci/osmanagementhub/get_lifecycle_stage.py,sha256=yiiXucZxGPm_CA_NMafyWE1ZBoxN2sqtml4eglaG0b0,15278
|
2654
2663
|
pulumi_oci/osmanagementhub/get_lifecycle_stages.py,sha256=SXsXUUSys9wyKGpJxz2UGlPuLSXDv-Gf5_ESYfzQQWU,17642
|
2655
|
-
pulumi_oci/osmanagementhub/get_managed_instance.py,sha256=
|
2664
|
+
pulumi_oci/osmanagementhub/get_managed_instance.py,sha256=2hSuivJAaXTTbb7ZCU_tnTgK-pzgc8-tbdAbyCqJx9o,32333
|
2656
2665
|
pulumi_oci/osmanagementhub/get_managed_instance_available_packages.py,sha256=lDUV8wq73RQMBqzVOLVa5JM3R9Na_ntYDe2kONHrqCs,10886
|
2657
2666
|
pulumi_oci/osmanagementhub/get_managed_instance_available_software_sources.py,sha256=XIGRMsyv6piW3mAx2hyoQLPm9-y8TQyorHZmixrqgT0,11747
|
2658
2667
|
pulumi_oci/osmanagementhub/get_managed_instance_available_windows_updates.py,sha256=DlLjfYuVEBNRgL5Ia41iEZLu8bVNJbYpJDdcnjtQ8rg,15226
|
@@ -2668,18 +2677,22 @@ pulumi_oci/osmanagementhub/get_managed_instance_installed_packages.py,sha256=qhL
|
|
2668
2677
|
pulumi_oci/osmanagementhub/get_managed_instance_installed_windows_updates.py,sha256=mnHBRF0-Y7y9wEdaY9AkKx1Rwv1Gx8SUum0SklmCvkw,12534
|
2669
2678
|
pulumi_oci/osmanagementhub/get_managed_instance_modules.py,sha256=d9S0jGbme68w7ypUWaO8ie58aikFtEoGIHR6ngHYMJk,10035
|
2670
2679
|
pulumi_oci/osmanagementhub/get_managed_instance_updatable_packages.py,sha256=Zfa_fFkcBgEI1opOALEJbvIjphNijZAxXKsuP5rBNpk,13550
|
2671
|
-
pulumi_oci/osmanagementhub/get_managed_instances.py,sha256=
|
2672
|
-
pulumi_oci/osmanagementhub/get_management_station.py,sha256=
|
2673
|
-
pulumi_oci/osmanagementhub/get_management_station_mirrors.py,sha256=
|
2674
|
-
pulumi_oci/osmanagementhub/get_management_stations.py,sha256=
|
2675
|
-
pulumi_oci/osmanagementhub/get_profile.py,sha256=
|
2676
|
-
pulumi_oci/osmanagementhub/
|
2677
|
-
pulumi_oci/osmanagementhub/
|
2680
|
+
pulumi_oci/osmanagementhub/get_managed_instances.py,sha256=iGRBLKluPtCNh8C8U71C3XZPJi1_AxCw7U9G6BsWec8,38637
|
2681
|
+
pulumi_oci/osmanagementhub/get_management_station.py,sha256=LMsK-ORDGy1X5e270ag9WHGy5RIplmD7JF-_0mkUDec,24030
|
2682
|
+
pulumi_oci/osmanagementhub/get_management_station_mirrors.py,sha256=4cTAwtyUU0tRtEyA1AF9AQtBtvg8xYHxoRxW75PXK6U,10164
|
2683
|
+
pulumi_oci/osmanagementhub/get_management_stations.py,sha256=Y0Ckln_YtYtLwiGokIpTkHfnRLwJ25hK-vgTTf2dq0E,15133
|
2684
|
+
pulumi_oci/osmanagementhub/get_profile.py,sha256=VtcP0Y-kuJYZ0z-xkAGBsBMF3EsQ5m3o5T3OfGlJ4wU,21611
|
2685
|
+
pulumi_oci/osmanagementhub/get_profile_available_software_sources.py,sha256=HUpH59Y2SlHqy17hhYOLGltj81PUyBBXRqpTqpbfYiM,11259
|
2686
|
+
pulumi_oci/osmanagementhub/get_profile_version.py,sha256=NkfBvHfRdCjOOEXQR7k6hiR46g56w72wvjkKFJ5wZQo,17894
|
2687
|
+
pulumi_oci/osmanagementhub/get_profiles.py,sha256=MZZstLywgkwCTwX7yEn2SfMM483Av9yXrP3IFFnmajU,23972
|
2688
|
+
pulumi_oci/osmanagementhub/get_scheduled_job.py,sha256=N2tV97t0KziSx2apzqslgBlZmF65_3Vz5yHhMUXNCq4,24129
|
2678
2689
|
pulumi_oci/osmanagementhub/get_scheduled_jobs.py,sha256=SmZhdJQZ5zsRnsZz-6qT3nMSjs2X4BZcvzTLlJZjNlM,27871
|
2679
|
-
pulumi_oci/osmanagementhub/get_software_package.py,sha256=
|
2680
|
-
pulumi_oci/osmanagementhub/get_software_package_software_source.py,sha256
|
2690
|
+
pulumi_oci/osmanagementhub/get_software_package.py,sha256=nUkO26aJCI5GD9MMmuydRQwJ5_l2TquSDd_it1LyT3Y,13197
|
2691
|
+
pulumi_oci/osmanagementhub/get_software_package_software_source.py,sha256=-ts413miNlcqopE0OZS3XzTy2P1QCncCncn0ZqL2WSA,20531
|
2681
2692
|
pulumi_oci/osmanagementhub/get_software_packages.py,sha256=sAysVzko1sIMNkPaVJ06KRBQcgqOB54t6O0qC4_12lw,11882
|
2682
|
-
pulumi_oci/osmanagementhub/get_software_source.py,sha256=
|
2693
|
+
pulumi_oci/osmanagementhub/get_software_source.py,sha256=M0IUpKJdVtO7CNabed7Yj7toi0bFvtbd1bYDvzBc9hs,32440
|
2694
|
+
pulumi_oci/osmanagementhub/get_software_source_available_software_packages.py,sha256=_RRdDgG1ULzFkI-_tUtEZ-YaLCjZAJpO4WsdTOeE98I,11294
|
2695
|
+
pulumi_oci/osmanagementhub/get_software_source_manifest.py,sha256=sPDdCra9PyQw-dBvETCclzG2UH_GOcP7SvFXGdXi5Vg,5276
|
2683
2696
|
pulumi_oci/osmanagementhub/get_software_source_module_stream.py,sha256=-A8s3X80sHzP5z7QF2BvPlShHd9J2afgeOON-ChbOpw,11223
|
2684
2697
|
pulumi_oci/osmanagementhub/get_software_source_module_stream_profile.py,sha256=hxJ01u5rCXxivH0Io6GLfIFRuAnpDRpJz5rMzZ8QWLc,10546
|
2685
2698
|
pulumi_oci/osmanagementhub/get_software_source_module_stream_profiles.py,sha256=S4IESt1mE87q8COMLIkyMU2y7035Oso_-mY3Y6BQ02A,10800
|
@@ -2689,14 +2702,15 @@ pulumi_oci/osmanagementhub/get_software_source_package_groups.py,sha256=GQ6vk9yb
|
|
2689
2702
|
pulumi_oci/osmanagementhub/get_software_source_software_package.py,sha256=vAeOPgwSviusNqJooaISDb1nKO4d770UknJm2IkBLOs,14798
|
2690
2703
|
pulumi_oci/osmanagementhub/get_software_source_software_packages.py,sha256=T4NoxfOVxfA5Ti0368R74fcWoEVjUG3loRVkEtXVOEU,10741
|
2691
2704
|
pulumi_oci/osmanagementhub/get_software_source_vendors.py,sha256=1ED7rDXYjHSiAvbt_ucZVvWXglp7YsJ6XXBRaxOblb4,7621
|
2692
|
-
pulumi_oci/osmanagementhub/get_software_sources.py,sha256=
|
2705
|
+
pulumi_oci/osmanagementhub/get_software_sources.py,sha256=bGohL2tksKB_zoaKgMlwEid4h18WPKQl9HG8prK1lNg,25421
|
2693
2706
|
pulumi_oci/osmanagementhub/get_windows_update.py,sha256=HcqhZbz7ZHOuZvXQwM6eK1paSeHVsrEBikGmJlzeplg,10386
|
2694
2707
|
pulumi_oci/osmanagementhub/get_windows_updates.py,sha256=xLpQ79dxElyHgaK7M5J4DtKoMmQL0Do5SX9mPts3HPM,10086
|
2695
2708
|
pulumi_oci/osmanagementhub/lifecycle_environment.py,sha256=_CySlsL8sK0RRa_10FclCx12G9gy_nLiqs8jW2qbk-k,45448
|
2696
|
-
pulumi_oci/osmanagementhub/lifecycle_stage_attach_managed_instances_management.py,sha256=
|
2697
|
-
pulumi_oci/osmanagementhub/lifecycle_stage_detach_managed_instances_management.py,sha256=
|
2709
|
+
pulumi_oci/osmanagementhub/lifecycle_stage_attach_managed_instances_management.py,sha256=2ElpwAOGWyzGLXZ15Zu30TzfiDz9QY-4n5uVqKZj4h0,12410
|
2710
|
+
pulumi_oci/osmanagementhub/lifecycle_stage_detach_managed_instances_management.py,sha256=fCa-tuFm0bf_CbHnLfepdAWYhvgvUrkkROXl4ZFDo54,12250
|
2698
2711
|
pulumi_oci/osmanagementhub/lifecycle_stage_promote_software_source_management.py,sha256=Xbvb8D75myJtvF5vKCHzEmZkFzkHV4RBCbHWiLhEajA,18065
|
2699
|
-
pulumi_oci/osmanagementhub/
|
2712
|
+
pulumi_oci/osmanagementhub/lifecycle_stage_reboot_management.py,sha256=1zg9JOdEWWYJ5lnNke1dAuRbJriWpEuBk9bnZHEsqk4,15747
|
2713
|
+
pulumi_oci/osmanagementhub/managed_instance.py,sha256=i_9Vt3Zb-vFI78b_ApAqTyoBeIuVsM9SwVQtuEsmfZ8,71294
|
2700
2714
|
pulumi_oci/osmanagementhub/managed_instance_attach_profile_management.py,sha256=ucfv2wLWRBzibJRKEoUO5N8oeW7Tm20xiDX5mq9196E,13028
|
2701
2715
|
pulumi_oci/osmanagementhub/managed_instance_detach_profile_management.py,sha256=O3KaBQY19l1E2HF05MLL2Q8h4124K3gxJxtE2xhVGfw,10357
|
2702
2716
|
pulumi_oci/osmanagementhub/managed_instance_group.py,sha256=mSNCbA1JuQovr7KVLYdgt3pxfRdnDjP8Fi2PtkHnLc0,58646
|
@@ -2704,23 +2718,36 @@ pulumi_oci/osmanagementhub/managed_instance_group_attach_managed_instances_manag
|
|
2704
2718
|
pulumi_oci/osmanagementhub/managed_instance_group_attach_software_sources_management.py,sha256=y9OwNdSfXhl_wHUDVnWwyyoxnUPz-MVZxsab2iCK5zM,17454
|
2705
2719
|
pulumi_oci/osmanagementhub/managed_instance_group_detach_managed_instances_management.py,sha256=RUTfA1rjnn6C6wuTXPX6PHWqR-FL_2rayPHlZbjJPYo,14429
|
2706
2720
|
pulumi_oci/osmanagementhub/managed_instance_group_detach_software_sources_management.py,sha256=98PPhsexmNkzoIXWOLprAgHxNWo289HTC0qEcBi4o58,17314
|
2707
|
-
pulumi_oci/osmanagementhub/managed_instance_group_install_packages_management.py,sha256=
|
2721
|
+
pulumi_oci/osmanagementhub/managed_instance_group_install_packages_management.py,sha256=xs2jNNherU4rhc8zT59FZhm4pXSKxbpxiY9eGyVqdVE,18361
|
2708
2722
|
pulumi_oci/osmanagementhub/managed_instance_group_install_windows_updates_management.py,sha256=Xyv6dckDNbEUs_3hhpZvm_w_keWOzWHYuTdZBHksshQ,16843
|
2709
2723
|
pulumi_oci/osmanagementhub/managed_instance_group_manage_module_streams_management.py,sha256=Ga5tmnL63LKHCvrVce2aOV0Q2SHlJwmGkGY7TMHd8ec,34250
|
2724
|
+
pulumi_oci/osmanagementhub/managed_instance_group_reboot_management.py,sha256=4Y0hixe6oS7xg3sts2rgfym_isK8JVgfxgUFlAonKoY,16426
|
2710
2725
|
pulumi_oci/osmanagementhub/managed_instance_group_remove_packages_management.py,sha256=CyWk4hpNkFL6HMAK0asDs9ya-zOAdLNq6LWKvzdnfH4,16032
|
2711
2726
|
pulumi_oci/osmanagementhub/managed_instance_group_update_all_packages_management.py,sha256=Q9mBmofZbxfvP4_Rg52g26ENvTnTlZ8AU9IIotbwDA8,16194
|
2712
2727
|
pulumi_oci/osmanagementhub/managed_instance_install_windows_updates_management.py,sha256=t5R6jYP0f6JyoDqK_Ab2zjydn6FKO6_Syc7sBc9wPF4,19828
|
2728
|
+
pulumi_oci/osmanagementhub/managed_instance_reboot_management.py,sha256=I0RVz9Ro2mrZ7Ku-E4vdEzvZMcbgjsD8rq0fse3X_bU,15982
|
2713
2729
|
pulumi_oci/osmanagementhub/managed_instance_update_packages_management.py,sha256=8pI07vMLBpvDi7YPea62uHxClaVPUOOsaHibdY0fWQc,17739
|
2714
|
-
pulumi_oci/osmanagementhub/management_station.py,sha256=
|
2730
|
+
pulumi_oci/osmanagementhub/management_station.py,sha256=AA0Wsf4HIfQnXcdjZ9lUNmoRrHVckUsDCSV0sJ3dTfE,64033
|
2731
|
+
pulumi_oci/osmanagementhub/management_station_associate_managed_instances_management.py,sha256=glq4UibdusnmzcErpCdY05zEUUDXHuFXggGDZnJu-A8,17312
|
2715
2732
|
pulumi_oci/osmanagementhub/management_station_mirror_synchronize_management.py,sha256=CgrS_tWoJF1fn5ZoE6a-0KM9ddbnQBGhpnYq4o3aPrg,12508
|
2716
|
-
pulumi_oci/osmanagementhub/management_station_refresh_management.py,sha256=
|
2717
|
-
pulumi_oci/osmanagementhub/management_station_synchronize_mirrors_management.py,sha256=
|
2718
|
-
pulumi_oci/osmanagementhub/outputs.py,sha256
|
2719
|
-
pulumi_oci/osmanagementhub/profile.py,sha256=
|
2720
|
-
pulumi_oci/osmanagementhub/
|
2721
|
-
pulumi_oci/osmanagementhub/
|
2722
|
-
pulumi_oci/osmanagementhub/
|
2733
|
+
pulumi_oci/osmanagementhub/management_station_refresh_management.py,sha256=out6KnRcP9JAA6SO-VPVONKJy6xeoB6kBzqMBYhZ9dA,10161
|
2734
|
+
pulumi_oci/osmanagementhub/management_station_synchronize_mirrors_management.py,sha256=PZrWsA-_55qZfawGKLuvfKJW1bYqHxsokV3BbPGzGI4,14054
|
2735
|
+
pulumi_oci/osmanagementhub/outputs.py,sha256=-JQ-l9zi7CuqVJ6HLCX0rvt9LmLQxno_mzmAKFoQwGk,657641
|
2736
|
+
pulumi_oci/osmanagementhub/profile.py,sha256=SJTeOqPmCj_q2dSvyTbZhF2-u5ABY-kCMWeg5RD8KxM,66522
|
2737
|
+
pulumi_oci/osmanagementhub/profile_attach_lifecycle_stage_management.py,sha256=MqN8FF_-2OVLADAzAmH3qpgBF0B1oy5yp_VGJz-Kqx0,12984
|
2738
|
+
pulumi_oci/osmanagementhub/profile_attach_managed_instance_group_management.py,sha256=ajoqe3HonlcLgNWWZSkHwBPxJswh1IDU-mIJ7qvqyhk,13541
|
2739
|
+
pulumi_oci/osmanagementhub/profile_attach_management_station_management.py,sha256=xbSSoqrMwaPXd_mrFcrOOdp73j8NfYC_IHE4V_WbU1g,13236
|
2740
|
+
pulumi_oci/osmanagementhub/profile_attach_software_sources_management.py,sha256=yFygnQyKJ_pk-WNIk8koN5cr8Io-4oGbZpc4Z-DEJHU,13206
|
2741
|
+
pulumi_oci/osmanagementhub/profile_detach_software_sources_management.py,sha256=X6AVUmBkDeTAf1B6ya9Lnxqa_v2hOesRWnr0z8LIy4k,13224
|
2742
|
+
pulumi_oci/osmanagementhub/scheduled_job.py,sha256=Vu2e2tc7houdxZ5nWXuaPkgFIg3jjl5j556IV3QQqzU,88767
|
2743
|
+
pulumi_oci/osmanagementhub/software_source.py,sha256=urcUG0baRFN-UrbiAx90KRL-8w8EbMdjA37LFnoAV9c,97328
|
2744
|
+
pulumi_oci/osmanagementhub/software_source_add_packages_management.py,sha256=l-agUm3PBod0bzFaGn-YPh1rVb9f6WxHoWkSPX77xyk,18429
|
2723
2745
|
pulumi_oci/osmanagementhub/software_source_change_availability_management.py,sha256=jtc8neCVxa271vcDrThZ0aviGyZSPynaXBCk94AjWAA,11423
|
2746
|
+
pulumi_oci/osmanagementhub/software_source_generate_metadata_management.py,sha256=cdwa1DuHdB3Zl3Bm8CDdo7UOkQUKn04tpR-37cuOix0,10223
|
2747
|
+
pulumi_oci/osmanagementhub/software_source_manifest.py,sha256=9p4mdKnM1GYJFSCSmpJMl00-0tKpjgY8GOWKgfN5N08,11800
|
2748
|
+
pulumi_oci/osmanagementhub/software_source_remove_packages_management.py,sha256=J07osVXaz-xWaJnzwuuWB3Tvkk3uCdkxOq7gMzfg7yM,13645
|
2749
|
+
pulumi_oci/osmanagementhub/software_source_replace_packages_management.py,sha256=MSZkCB8NSbd-8ykZR7edUWfzsYI90wDxFKHYrBStEVI,13939
|
2750
|
+
pulumi_oci/osmanagementhub/work_request_rerun_management.py,sha256=0SirHZyA-xwoaEXFyEJmef_WpGPi2EaUhKqkEQd3Oww,17046
|
2724
2751
|
pulumi_oci/ospgateway/__init__.py,sha256=_1egZYO1h80MOxzPAj4FddwH5MUCu-Svp9r8QrDHU34,647
|
2725
2752
|
pulumi_oci/ospgateway/_inputs.py,sha256=4IeHcYyIHVSOXmjg3yCS8BV1OE0AmkBft7lwXM9n_KM,113450
|
2726
2753
|
pulumi_oci/ospgateway/address_action_verification.py,sha256=teK1W4JxtKvc4QKWVLHh-NOeXxeQdopGsoOmceu3XX0,65816
|
@@ -3079,7 +3106,7 @@ pulumi_oci/zpr/get_zpr_policies.py,sha256=xRhJl8bBol1fMs5EXtqBuTMajSv3v0tm1A0a0B
|
|
3079
3106
|
pulumi_oci/zpr/get_zpr_policy.py,sha256=Zx42tYwAMM6gOiNIREiyxZyMA5Gy1aAMsFHAR-zf8bg,11465
|
3080
3107
|
pulumi_oci/zpr/outputs.py,sha256=bLQC7_On52bzTOlKVC9oF2CSxcSo7CiwTmOkBNy7MD4,8943
|
3081
3108
|
pulumi_oci/zpr/zpr_policy.py,sha256=kRQiN_Fg_m8N1oVD93ktqQhhXv8z8y08nBKuypB_t3k,32563
|
3082
|
-
pulumi_oci-2.27.
|
3083
|
-
pulumi_oci-2.27.
|
3084
|
-
pulumi_oci-2.27.
|
3085
|
-
pulumi_oci-2.27.
|
3109
|
+
pulumi_oci-2.27.0a1742444119.dist-info/METADATA,sha256=nQRh19-4GTyINph6KEP4yZ-9wIJl7Vc81ngxpM1351g,4054
|
3110
|
+
pulumi_oci-2.27.0a1742444119.dist-info/WHEEL,sha256=tTnHoFhvKQHCh4jz3yCn0WPTYIy7wXx3CJtJ7SJGV7c,91
|
3111
|
+
pulumi_oci-2.27.0a1742444119.dist-info/top_level.txt,sha256=0k-nWr_IdDNVF3qcT4ALORmmu1SNCLxWZfHDMN7TWsg,11
|
3112
|
+
pulumi_oci-2.27.0a1742444119.dist-info/RECORD,,
|
{pulumi_oci-2.27.0a1742000109.dist-info → pulumi_oci-2.27.0a1742444119.dist-info}/top_level.txt
RENAMED
File without changes
|