pulumi-oci 2.8.0a1724316519__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.
Files changed (119) hide show
  1. pulumi_oci/__init__.py +86 -38
  2. pulumi_oci/announcementsservice/__init__.py +1 -0
  3. pulumi_oci/announcementsservice/_inputs.py +46 -6
  4. pulumi_oci/announcementsservice/announcement_subscription.py +14 -14
  5. pulumi_oci/announcementsservice/get_announcement_subscription.py +2 -2
  6. pulumi_oci/announcementsservice/get_services.py +173 -0
  7. pulumi_oci/announcementsservice/outputs.py +195 -18
  8. pulumi_oci/bigdataservice/_inputs.py +1 -49
  9. pulumi_oci/bigdataservice/bds_instance.py +0 -128
  10. pulumi_oci/bigdataservice/get_bds_instance.py +1 -31
  11. pulumi_oci/bigdataservice/outputs.py +3 -132
  12. pulumi_oci/database/_inputs.py +32 -0
  13. pulumi_oci/database/autonomous_database.py +28 -0
  14. pulumi_oci/database/data_guard_association.py +49 -0
  15. pulumi_oci/database/get_autonomous_database.py +14 -1
  16. pulumi_oci/database/get_autonomous_databases.py +32 -95
  17. pulumi_oci/database/get_data_guard_association.py +11 -1
  18. pulumi_oci/database/outputs.py +163 -42
  19. pulumi_oci/databasemanagement/__init__.py +1 -0
  20. pulumi_oci/databasemanagement/_inputs.py +873 -10
  21. pulumi_oci/databasemanagement/autonomous_database_autonomous_database_dbm_features_management.py +275 -0
  22. pulumi_oci/databasemanagement/database_dbm_features_management.py +37 -3
  23. pulumi_oci/databasemanagement/db_management_private_endpoint.py +49 -0
  24. pulumi_oci/databasemanagement/get_db_management_private_endpoint.py +14 -1
  25. pulumi_oci/databasemanagement/get_db_management_private_endpoints.py +21 -1
  26. pulumi_oci/databasemanagement/get_managed_database.py +47 -3
  27. pulumi_oci/databasemanagement/managed_database.py +56 -0
  28. pulumi_oci/databasemanagement/outputs.py +3331 -1397
  29. pulumi_oci/databasemanagement/pluggabledatabase_pluggable_database_dbm_features_management.py +35 -1
  30. pulumi_oci/datasafe/__init__.py +6 -0
  31. pulumi_oci/datasafe/_inputs.py +18 -0
  32. pulumi_oci/datasafe/database_security_config_management.py +244 -2
  33. pulumi_oci/datasafe/masking_policy_health_report_management.py +453 -0
  34. pulumi_oci/datasafe/masking_report_management.py +693 -0
  35. pulumi_oci/datasafe/outputs.py +18 -0
  36. pulumi_oci/datasafe/security_policy_deployment_management.py +180 -2
  37. pulumi_oci/datasafe/security_policy_management.py +172 -2
  38. pulumi_oci/datasafe/set_security_assessment_baseline_management.py +304 -0
  39. pulumi_oci/datasafe/set_user_assessment_baseline_management.py +304 -0
  40. pulumi_oci/datasafe/sql_firewall_policy_management.py +354 -2
  41. pulumi_oci/datasafe/unset_security_assessment_baseline_management.py +264 -0
  42. pulumi_oci/datasafe/unset_user_assessment_baseline_management.py +264 -0
  43. pulumi_oci/delegateaccesscontrol/__init__.py +24 -0
  44. pulumi_oci/delegateaccesscontrol/_inputs.py +306 -0
  45. pulumi_oci/delegateaccesscontrol/delegation_control.py +1082 -0
  46. pulumi_oci/{globallydistributeddatabase/private_endpoint.py → delegateaccesscontrol/delegation_subscription.py} +162 -267
  47. pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request.py +535 -0
  48. pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request_audit_log_report.py +174 -0
  49. pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request_histories.py +133 -0
  50. pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_requests.py +250 -0
  51. pulumi_oci/delegateaccesscontrol/get_delegation_control.py +378 -0
  52. pulumi_oci/delegateaccesscontrol/get_delegation_control_resources.py +133 -0
  53. pulumi_oci/delegateaccesscontrol/get_delegation_controls.py +213 -0
  54. pulumi_oci/{globallydistributeddatabase/get_private_endpoint.py → delegateaccesscontrol/get_delegation_subscription.py} +66 -105
  55. pulumi_oci/delegateaccesscontrol/get_delegation_subscriptions.py +176 -0
  56. pulumi_oci/delegateaccesscontrol/get_service_provider.py +274 -0
  57. pulumi_oci/delegateaccesscontrol/get_service_provider_action.py +210 -0
  58. pulumi_oci/delegateaccesscontrol/get_service_provider_actions.py +210 -0
  59. pulumi_oci/delegateaccesscontrol/get_service_providers.py +213 -0
  60. pulumi_oci/delegateaccesscontrol/outputs.py +1679 -0
  61. pulumi_oci/{fleetsoftwareupdate → desktops}/__init__.py +7 -6
  62. pulumi_oci/desktops/_inputs.py +483 -0
  63. pulumi_oci/desktops/desktop_pool.py +1348 -0
  64. pulumi_oci/desktops/get_desktop.py +223 -0
  65. pulumi_oci/desktops/get_desktop_pool.py +418 -0
  66. pulumi_oci/desktops/get_desktop_pool_desktops.py +208 -0
  67. pulumi_oci/desktops/get_desktop_pool_volumes.py +214 -0
  68. pulumi_oci/desktops/get_desktop_pools.py +203 -0
  69. pulumi_oci/desktops/get_desktops.py +214 -0
  70. pulumi_oci/desktops/outputs.py +1738 -0
  71. pulumi_oci/filestorage/mount_target.py +143 -38
  72. pulumi_oci/filestorage/outputs.py +44 -0
  73. pulumi_oci/identity/domains_group.py +34 -0
  74. pulumi_oci/identity/domains_user.py +34 -0
  75. pulumi_oci/identity/get_domains_group.py +11 -1
  76. pulumi_oci/identity/get_domains_user.py +11 -1
  77. pulumi_oci/identity/outputs.py +14 -0
  78. pulumi_oci/kms/_inputs.py +10 -10
  79. pulumi_oci/kms/get_vault.py +14 -1
  80. pulumi_oci/kms/outputs.py +41 -30
  81. pulumi_oci/kms/vault.py +28 -0
  82. pulumi_oci/loadbalancer/load_balancer.py +224 -0
  83. pulumi_oci/loadbalancer/outputs.py +22 -0
  84. pulumi_oci/mysql/_inputs.py +23 -0
  85. pulumi_oci/mysql/get_mysql_db_system.py +15 -2
  86. pulumi_oci/mysql/mysql_db_system.py +53 -0
  87. pulumi_oci/mysql/outputs.py +74 -6
  88. pulumi_oci/ocvp/get_cluster.py +2 -2
  89. pulumi_oci/ocvp/get_exsi_hosts.py +2 -2
  90. pulumi_oci/ocvp/get_supported_vmware_software_versions.py +22 -5
  91. pulumi_oci/ocvp/outputs.py +2 -2
  92. pulumi_oci/pulumi-plugin.json +1 -1
  93. pulumi_oci/recoverymod/_inputs.py +0 -8
  94. pulumi_oci/recoverymod/get_protected_database.py +14 -1
  95. pulumi_oci/recoverymod/get_protection_policy.py +14 -1
  96. pulumi_oci/recoverymod/outputs.py +22 -8
  97. pulumi_oci/recoverymod/protected_database.py +80 -3
  98. pulumi_oci/recoverymod/protection_policy.py +49 -0
  99. pulumi_oci/waf/_inputs.py +29 -16
  100. pulumi_oci/waf/outputs.py +33 -10
  101. {pulumi_oci-2.8.0a1724316519.dist-info → pulumi_oci-2.9.0.dist-info}/METADATA +1 -1
  102. {pulumi_oci-2.8.0a1724316519.dist-info → pulumi_oci-2.9.0.dist-info}/RECORD +104 -86
  103. {pulumi_oci-2.8.0a1724316519.dist-info → pulumi_oci-2.9.0.dist-info}/WHEEL +1 -1
  104. pulumi_oci/fleetsoftwareupdate/_inputs.py +0 -553
  105. pulumi_oci/fleetsoftwareupdate/fsu_collection.py +0 -514
  106. pulumi_oci/fleetsoftwareupdate/fsu_cycle.py +0 -812
  107. pulumi_oci/fleetsoftwareupdate/get_fsu_collection.py +0 -225
  108. pulumi_oci/fleetsoftwareupdate/get_fsu_collections.py +0 -141
  109. pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py +0 -325
  110. pulumi_oci/fleetsoftwareupdate/get_fsu_cycles.py +0 -167
  111. pulumi_oci/fleetsoftwareupdate/outputs.py +0 -1481
  112. pulumi_oci/globallydistributeddatabase/__init__.py +0 -15
  113. pulumi_oci/globallydistributeddatabase/_inputs.py +0 -1003
  114. pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +0 -176
  115. pulumi_oci/globallydistributeddatabase/get_sharded_database.py +0 -610
  116. pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +0 -176
  117. pulumi_oci/globallydistributeddatabase/outputs.py +0 -2058
  118. pulumi_oci/globallydistributeddatabase/sharded_database.py +0 -1816
  119. {pulumi_oci-2.8.0a1724316519.dist-info → pulumi_oci-2.9.0.dist-info}/top_level.txt +0 -0
@@ -1,15 +0,0 @@
1
- # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
- # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
-
5
- from .. import _utilities
6
- import typing
7
- # Export this package's modules as members:
8
- from .get_private_endpoint import *
9
- from .get_private_endpoints import *
10
- from .get_sharded_database import *
11
- from .get_sharded_databases import *
12
- from .private_endpoint import *
13
- from .sharded_database import *
14
- from ._inputs import *
15
- from . import outputs