pulumi-oci 1.35.0a1715306721__py3-none-any.whl → 1.36.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.
Files changed (130) hide show
  1. pulumi_oci/__init__.py +208 -0
  2. pulumi_oci/core/__init__.py +3 -0
  3. pulumi_oci/core/_inputs.py +40 -0
  4. pulumi_oci/core/get_ip_inventory_subnet.py +171 -0
  5. pulumi_oci/core/get_ip_inventory_subnet_cidr.py +171 -0
  6. pulumi_oci/core/get_ip_inventory_vcn_overlaps.py +206 -0
  7. pulumi_oci/core/outputs.py +261 -0
  8. pulumi_oci/database/_inputs.py +304 -0
  9. pulumi_oci/database/cloud_exadata_infrastructure.py +28 -0
  10. pulumi_oci/database/cloud_vm_cluster.py +55 -0
  11. pulumi_oci/database/exadata_infrastructure.py +28 -0
  12. pulumi_oci/database/get_cloud_exadata_infrastructure.py +14 -1
  13. pulumi_oci/database/get_cloud_vm_cluster.py +14 -1
  14. pulumi_oci/database/get_exadata_infrastructure.py +14 -1
  15. pulumi_oci/database/get_vm_cluster.py +14 -1
  16. pulumi_oci/database/outputs.py +734 -6
  17. pulumi_oci/database/vm_cluster.py +55 -0
  18. pulumi_oci/database/vm_cluster_add_virtual_network.py +28 -0
  19. pulumi_oci/database/vm_cluster_remove_virtual_machine.py +28 -0
  20. pulumi_oci/datasafe/__init__.py +1 -0
  21. pulumi_oci/datasafe/masking_report_management.py +693 -0
  22. pulumi_oci/disasterrecovery/_inputs.py +16 -0
  23. pulumi_oci/disasterrecovery/outputs.py +36 -0
  24. pulumi_oci/email/__init__.py +3 -0
  25. pulumi_oci/email/_inputs.py +46 -0
  26. pulumi_oci/email/dkim.py +4 -4
  27. pulumi_oci/email/email_domain.py +77 -0
  28. pulumi_oci/email/email_return_path.py +642 -0
  29. pulumi_oci/email/get_email_domain.py +27 -1
  30. pulumi_oci/email/get_email_return_path.py +274 -0
  31. pulumi_oci/email/get_email_return_paths.py +203 -0
  32. pulumi_oci/email/outputs.py +231 -0
  33. pulumi_oci/loadbalancer/_inputs.py +160 -20
  34. pulumi_oci/loadbalancer/backend.py +49 -0
  35. pulumi_oci/loadbalancer/backend_set.py +57 -0
  36. pulumi_oci/loadbalancer/get_listener_rules.py +2 -2
  37. pulumi_oci/loadbalancer/listener.py +2 -0
  38. pulumi_oci/loadbalancer/load_balancer.py +98 -7
  39. pulumi_oci/loadbalancer/outputs.py +375 -36
  40. pulumi_oci/loadbalancer/rule_set.py +10 -0
  41. pulumi_oci/loganalytics/namespace.py +4 -4
  42. pulumi_oci/networkloadbalancer/get_listener.py +14 -1
  43. pulumi_oci/networkloadbalancer/listener.py +51 -2
  44. pulumi_oci/networkloadbalancer/outputs.py +11 -0
  45. pulumi_oci/osmanagementhub/__init__.py +48 -0
  46. pulumi_oci/osmanagementhub/_inputs.py +3635 -493
  47. pulumi_oci/osmanagementhub/event.py +701 -0
  48. pulumi_oci/osmanagementhub/get_entitlements.py +178 -0
  49. pulumi_oci/osmanagementhub/get_errata.py +283 -0
  50. pulumi_oci/osmanagementhub/get_erratum.py +308 -0
  51. pulumi_oci/osmanagementhub/get_event.py +314 -0
  52. pulumi_oci/osmanagementhub/get_events.py +314 -0
  53. pulumi_oci/osmanagementhub/get_lifecycle_environment.py +26 -13
  54. pulumi_oci/osmanagementhub/get_lifecycle_environments.py +48 -11
  55. pulumi_oci/osmanagementhub/get_lifecycle_stage.py +28 -15
  56. pulumi_oci/osmanagementhub/get_lifecycle_stages.py +86 -19
  57. pulumi_oci/osmanagementhub/get_managed_instance.py +587 -0
  58. pulumi_oci/osmanagementhub/get_managed_instance_available_packages.py +187 -0
  59. pulumi_oci/osmanagementhub/get_managed_instance_available_software_sources.py +190 -0
  60. pulumi_oci/osmanagementhub/get_managed_instance_available_windows_updates.py +238 -0
  61. pulumi_oci/osmanagementhub/get_managed_instance_errata.py +204 -0
  62. pulumi_oci/osmanagementhub/get_managed_instance_group.py +62 -10
  63. pulumi_oci/osmanagementhub/get_managed_instance_group_available_modules.py +7 -9
  64. pulumi_oci/osmanagementhub/get_managed_instance_group_available_packages.py +7 -7
  65. pulumi_oci/osmanagementhub/get_managed_instance_group_available_software_sources.py +8 -10
  66. pulumi_oci/osmanagementhub/get_managed_instance_group_installed_packages.py +220 -0
  67. pulumi_oci/osmanagementhub/get_managed_instance_group_modules.py +244 -0
  68. pulumi_oci/osmanagementhub/get_managed_instance_groups.py +71 -16
  69. pulumi_oci/osmanagementhub/get_managed_instance_installed_packages.py +221 -0
  70. pulumi_oci/osmanagementhub/get_managed_instance_installed_windows_updates.py +204 -0
  71. pulumi_oci/osmanagementhub/get_managed_instance_modules.py +187 -0
  72. pulumi_oci/osmanagementhub/get_managed_instance_updatable_packages.py +221 -0
  73. pulumi_oci/osmanagementhub/get_managed_instances.py +537 -0
  74. pulumi_oci/osmanagementhub/get_management_station.py +42 -19
  75. pulumi_oci/osmanagementhub/get_management_station_mirrors.py +4 -4
  76. pulumi_oci/osmanagementhub/get_management_stations.py +15 -15
  77. pulumi_oci/osmanagementhub/get_profile.py +51 -12
  78. pulumi_oci/osmanagementhub/get_profiles.py +76 -16
  79. pulumi_oci/osmanagementhub/get_scheduled_job.py +426 -0
  80. pulumi_oci/osmanagementhub/get_scheduled_jobs.py +433 -0
  81. pulumi_oci/osmanagementhub/get_software_package.py +301 -0
  82. pulumi_oci/osmanagementhub/get_software_package_software_source.py +329 -0
  83. pulumi_oci/osmanagementhub/get_software_packages.py +232 -0
  84. pulumi_oci/osmanagementhub/get_software_source.py +109 -18
  85. pulumi_oci/osmanagementhub/get_software_source_module_stream.py +5 -5
  86. pulumi_oci/osmanagementhub/get_software_source_module_stream_profile.py +6 -6
  87. pulumi_oci/osmanagementhub/get_software_source_module_stream_profiles.py +8 -8
  88. pulumi_oci/osmanagementhub/get_software_source_module_streams.py +9 -9
  89. pulumi_oci/osmanagementhub/get_software_source_package_group.py +8 -8
  90. pulumi_oci/osmanagementhub/get_software_source_package_groups.py +7 -7
  91. pulumi_oci/osmanagementhub/get_software_source_software_package.py +23 -10
  92. pulumi_oci/osmanagementhub/get_software_source_software_packages.py +6 -6
  93. pulumi_oci/osmanagementhub/get_software_source_vendors.py +2 -2
  94. pulumi_oci/osmanagementhub/get_software_sources.py +78 -21
  95. pulumi_oci/osmanagementhub/get_windows_update.py +222 -0
  96. pulumi_oci/osmanagementhub/get_windows_updates.py +187 -0
  97. pulumi_oci/osmanagementhub/lifecycle_environment.py +159 -86
  98. pulumi_oci/osmanagementhub/lifecycle_stage_attach_managed_instances_management.py +249 -0
  99. pulumi_oci/osmanagementhub/lifecycle_stage_detach_managed_instances_management.py +249 -0
  100. pulumi_oci/osmanagementhub/lifecycle_stage_promote_software_source_management.py +296 -0
  101. pulumi_oci/osmanagementhub/managed_instance.py +1327 -0
  102. pulumi_oci/osmanagementhub/managed_instance_attach_profile_management.py +266 -0
  103. pulumi_oci/osmanagementhub/managed_instance_detach_profile_management.py +214 -0
  104. pulumi_oci/osmanagementhub/managed_instance_group.py +264 -86
  105. pulumi_oci/osmanagementhub/managed_instance_group_attach_managed_instances_management.py +293 -0
  106. pulumi_oci/osmanagementhub/managed_instance_group_attach_software_sources_management.py +293 -0
  107. pulumi_oci/osmanagementhub/managed_instance_group_detach_managed_instances_management.py +264 -0
  108. pulumi_oci/osmanagementhub/managed_instance_group_detach_software_sources_management.py +293 -0
  109. pulumi_oci/osmanagementhub/managed_instance_group_install_packages_management.py +293 -0
  110. pulumi_oci/osmanagementhub/managed_instance_group_install_windows_updates_management.py +293 -0
  111. pulumi_oci/osmanagementhub/managed_instance_group_manage_module_streams_management.py +526 -0
  112. pulumi_oci/osmanagementhub/managed_instance_group_remove_packages_management.py +293 -0
  113. pulumi_oci/osmanagementhub/managed_instance_group_update_all_packages_management.py +292 -0
  114. pulumi_oci/osmanagementhub/managed_instance_install_windows_updates_management.py +341 -0
  115. pulumi_oci/osmanagementhub/managed_instance_update_packages_management.py +341 -0
  116. pulumi_oci/osmanagementhub/management_station.py +184 -81
  117. pulumi_oci/osmanagementhub/management_station_mirror_synchronize_management.py +264 -0
  118. pulumi_oci/osmanagementhub/management_station_refresh_management.py +212 -0
  119. pulumi_oci/osmanagementhub/management_station_synchronize_mirrors_management.py +264 -0
  120. pulumi_oci/osmanagementhub/outputs.py +10867 -2365
  121. pulumi_oci/osmanagementhub/profile.py +200 -78
  122. pulumi_oci/osmanagementhub/scheduled_job.py +1331 -0
  123. pulumi_oci/osmanagementhub/software_source.py +365 -181
  124. pulumi_oci/osmanagementhub/software_source_add_packages_management.py +266 -0
  125. pulumi_oci/osmanagementhub/software_source_change_availability_management.py +194 -0
  126. pulumi_oci/pulumi-plugin.json +2 -1
  127. {pulumi_oci-1.35.0a1715306721.dist-info → pulumi_oci-1.36.0.dist-info}/METADATA +1 -1
  128. {pulumi_oci-1.35.0a1715306721.dist-info → pulumi_oci-1.36.0.dist-info}/RECORD +130 -75
  129. {pulumi_oci-1.35.0a1715306721.dist-info → pulumi_oci-1.36.0.dist-info}/WHEEL +0 -0
  130. {pulumi_oci-1.35.0a1715306721.dist-info → pulumi_oci-1.36.0.dist-info}/top_level.txt +0 -0

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.