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
pulumi_oci/__init__.py CHANGED
@@ -93,8 +93,12 @@ if typing.TYPE_CHECKING:
93
93
  datasafe = __datasafe
94
94
  import pulumi_oci.datascience as __datascience
95
95
  datascience = __datascience
96
+ import pulumi_oci.delegateaccesscontrol as __delegateaccesscontrol
97
+ delegateaccesscontrol = __delegateaccesscontrol
96
98
  import pulumi_oci.demandsignal as __demandsignal
97
99
  demandsignal = __demandsignal
100
+ import pulumi_oci.desktops as __desktops
101
+ desktops = __desktops
98
102
  import pulumi_oci.devops as __devops
99
103
  devops = __devops
100
104
  import pulumi_oci.disasterrecovery as __disasterrecovery
@@ -107,8 +111,6 @@ if typing.TYPE_CHECKING:
107
111
  events = __events
108
112
  import pulumi_oci.filestorage as __filestorage
109
113
  filestorage = __filestorage
110
- import pulumi_oci.fleetsoftwareupdate as __fleetsoftwareupdate
111
- fleetsoftwareupdate = __fleetsoftwareupdate
112
114
  import pulumi_oci.functions as __functions
113
115
  functions = __functions
114
116
  import pulumi_oci.fusionapps as __fusionapps
@@ -117,8 +119,6 @@ if typing.TYPE_CHECKING:
117
119
  generativeai = __generativeai
118
120
  import pulumi_oci.genericartifactscontent as __genericartifactscontent
119
121
  genericartifactscontent = __genericartifactscontent
120
- import pulumi_oci.globallydistributeddatabase as __globallydistributeddatabase
121
- globallydistributeddatabase = __globallydistributeddatabase
122
122
  import pulumi_oci.goldengate as __goldengate
123
123
  goldengate = __goldengate
124
124
  import pulumi_oci.healthchecks as __healthchecks
@@ -286,19 +286,19 @@ else:
286
286
  datalabellingservice = _utilities.lazy_import('pulumi_oci.datalabellingservice')
287
287
  datasafe = _utilities.lazy_import('pulumi_oci.datasafe')
288
288
  datascience = _utilities.lazy_import('pulumi_oci.datascience')
289
+ delegateaccesscontrol = _utilities.lazy_import('pulumi_oci.delegateaccesscontrol')
289
290
  demandsignal = _utilities.lazy_import('pulumi_oci.demandsignal')
291
+ desktops = _utilities.lazy_import('pulumi_oci.desktops')
290
292
  devops = _utilities.lazy_import('pulumi_oci.devops')
291
293
  disasterrecovery = _utilities.lazy_import('pulumi_oci.disasterrecovery')
292
294
  dns = _utilities.lazy_import('pulumi_oci.dns')
293
295
  email = _utilities.lazy_import('pulumi_oci.email')
294
296
  events = _utilities.lazy_import('pulumi_oci.events')
295
297
  filestorage = _utilities.lazy_import('pulumi_oci.filestorage')
296
- fleetsoftwareupdate = _utilities.lazy_import('pulumi_oci.fleetsoftwareupdate')
297
298
  functions = _utilities.lazy_import('pulumi_oci.functions')
298
299
  fusionapps = _utilities.lazy_import('pulumi_oci.fusionapps')
299
300
  generativeai = _utilities.lazy_import('pulumi_oci.generativeai')
300
301
  genericartifactscontent = _utilities.lazy_import('pulumi_oci.genericartifactscontent')
301
- globallydistributeddatabase = _utilities.lazy_import('pulumi_oci.globallydistributeddatabase')
302
302
  goldengate = _utilities.lazy_import('pulumi_oci.goldengate')
303
303
  healthchecks = _utilities.lazy_import('pulumi_oci.healthchecks')
304
304
  identity = _utilities.lazy_import('pulumi_oci.identity')
@@ -2085,6 +2085,22 @@ _utilities.register(
2085
2085
  "oci:DataSafe/maskingPolicy:MaskingPolicy": "MaskingPolicy"
2086
2086
  }
2087
2087
  },
2088
+ {
2089
+ "pkg": "oci",
2090
+ "mod": "DataSafe/maskingPolicyHealthReportManagement",
2091
+ "fqn": "pulumi_oci.datasafe",
2092
+ "classes": {
2093
+ "oci:DataSafe/maskingPolicyHealthReportManagement:MaskingPolicyHealthReportManagement": "MaskingPolicyHealthReportManagement"
2094
+ }
2095
+ },
2096
+ {
2097
+ "pkg": "oci",
2098
+ "mod": "DataSafe/maskingReportManagement",
2099
+ "fqn": "pulumi_oci.datasafe",
2100
+ "classes": {
2101
+ "oci:DataSafe/maskingReportManagement:MaskingReportManagement": "MaskingReportManagement"
2102
+ }
2103
+ },
2088
2104
  {
2089
2105
  "pkg": "oci",
2090
2106
  "mod": "DataSafe/onPremConnector",
@@ -2197,6 +2213,14 @@ _utilities.register(
2197
2213
  "oci:DataSafe/setSecurityAssessmentBaseline:SetSecurityAssessmentBaseline": "SetSecurityAssessmentBaseline"
2198
2214
  }
2199
2215
  },
2216
+ {
2217
+ "pkg": "oci",
2218
+ "mod": "DataSafe/setSecurityAssessmentBaselineManagement",
2219
+ "fqn": "pulumi_oci.datasafe",
2220
+ "classes": {
2221
+ "oci:DataSafe/setSecurityAssessmentBaselineManagement:SetSecurityAssessmentBaselineManagement": "SetSecurityAssessmentBaselineManagement"
2222
+ }
2223
+ },
2200
2224
  {
2201
2225
  "pkg": "oci",
2202
2226
  "mod": "DataSafe/setUserAssessmentBaseline",
@@ -2205,6 +2229,14 @@ _utilities.register(
2205
2229
  "oci:DataSafe/setUserAssessmentBaseline:SetUserAssessmentBaseline": "SetUserAssessmentBaseline"
2206
2230
  }
2207
2231
  },
2232
+ {
2233
+ "pkg": "oci",
2234
+ "mod": "DataSafe/setUserAssessmentBaselineManagement",
2235
+ "fqn": "pulumi_oci.datasafe",
2236
+ "classes": {
2237
+ "oci:DataSafe/setUserAssessmentBaselineManagement:SetUserAssessmentBaselineManagement": "SetUserAssessmentBaselineManagement"
2238
+ }
2239
+ },
2208
2240
  {
2209
2241
  "pkg": "oci",
2210
2242
  "mod": "DataSafe/sqlCollection",
@@ -2261,6 +2293,14 @@ _utilities.register(
2261
2293
  "oci:DataSafe/unsetSecurityAssessmentBaseline:UnsetSecurityAssessmentBaseline": "UnsetSecurityAssessmentBaseline"
2262
2294
  }
2263
2295
  },
2296
+ {
2297
+ "pkg": "oci",
2298
+ "mod": "DataSafe/unsetSecurityAssessmentBaselineManagement",
2299
+ "fqn": "pulumi_oci.datasafe",
2300
+ "classes": {
2301
+ "oci:DataSafe/unsetSecurityAssessmentBaselineManagement:UnsetSecurityAssessmentBaselineManagement": "UnsetSecurityAssessmentBaselineManagement"
2302
+ }
2303
+ },
2264
2304
  {
2265
2305
  "pkg": "oci",
2266
2306
  "mod": "DataSafe/unsetUserAssessmentBaseline",
@@ -2269,6 +2309,14 @@ _utilities.register(
2269
2309
  "oci:DataSafe/unsetUserAssessmentBaseline:UnsetUserAssessmentBaseline": "UnsetUserAssessmentBaseline"
2270
2310
  }
2271
2311
  },
2312
+ {
2313
+ "pkg": "oci",
2314
+ "mod": "DataSafe/unsetUserAssessmentBaselineManagement",
2315
+ "fqn": "pulumi_oci.datasafe",
2316
+ "classes": {
2317
+ "oci:DataSafe/unsetUserAssessmentBaselineManagement:UnsetUserAssessmentBaselineManagement": "UnsetUserAssessmentBaselineManagement"
2318
+ }
2319
+ },
2272
2320
  {
2273
2321
  "pkg": "oci",
2274
2322
  "mod": "DataSafe/userAssessment",
@@ -2885,6 +2933,14 @@ _utilities.register(
2885
2933
  "oci:Database/vmClusterRemoveVirtualMachine:VmClusterRemoveVirtualMachine": "VmClusterRemoveVirtualMachine"
2886
2934
  }
2887
2935
  },
2936
+ {
2937
+ "pkg": "oci",
2938
+ "mod": "DatabaseManagement/autonomousDatabaseAutonomousDatabaseDbmFeaturesManagement",
2939
+ "fqn": "pulumi_oci.databasemanagement",
2940
+ "classes": {
2941
+ "oci:DatabaseManagement/autonomousDatabaseAutonomousDatabaseDbmFeaturesManagement:AutonomousDatabaseAutonomousDatabaseDbmFeaturesManagement": "AutonomousDatabaseAutonomousDatabaseDbmFeaturesManagement"
2942
+ }
2943
+ },
2888
2944
  {
2889
2945
  "pkg": "oci",
2890
2946
  "mod": "DatabaseManagement/databaseDbmFeaturesManagement",
@@ -3149,6 +3205,22 @@ _utilities.register(
3149
3205
  "oci:DatabaseTools/databaseToolsPrivateEndpoint:DatabaseToolsPrivateEndpoint": "DatabaseToolsPrivateEndpoint"
3150
3206
  }
3151
3207
  },
3208
+ {
3209
+ "pkg": "oci",
3210
+ "mod": "DelegateAccessControl/delegationControl",
3211
+ "fqn": "pulumi_oci.delegateaccesscontrol",
3212
+ "classes": {
3213
+ "oci:DelegateAccessControl/delegationControl:DelegationControl": "DelegationControl"
3214
+ }
3215
+ },
3216
+ {
3217
+ "pkg": "oci",
3218
+ "mod": "DelegateAccessControl/delegationSubscription",
3219
+ "fqn": "pulumi_oci.delegateaccesscontrol",
3220
+ "classes": {
3221
+ "oci:DelegateAccessControl/delegationSubscription:DelegationSubscription": "DelegationSubscription"
3222
+ }
3223
+ },
3152
3224
  {
3153
3225
  "pkg": "oci",
3154
3226
  "mod": "DemandSignal/occDemandSignal",
@@ -3157,6 +3229,14 @@ _utilities.register(
3157
3229
  "oci:DemandSignal/occDemandSignal:OccDemandSignal": "OccDemandSignal"
3158
3230
  }
3159
3231
  },
3232
+ {
3233
+ "pkg": "oci",
3234
+ "mod": "Desktops/desktopPool",
3235
+ "fqn": "pulumi_oci.desktops",
3236
+ "classes": {
3237
+ "oci:Desktops/desktopPool:DesktopPool": "DesktopPool"
3238
+ }
3239
+ },
3160
3240
  {
3161
3241
  "pkg": "oci",
3162
3242
  "mod": "DevOps/buildPipeline",
@@ -3509,22 +3589,6 @@ _utilities.register(
3509
3589
  "oci:FileStorage/snapshot:Snapshot": "Snapshot"
3510
3590
  }
3511
3591
  },
3512
- {
3513
- "pkg": "oci",
3514
- "mod": "FleetSoftwareUpdate/fsuCollection",
3515
- "fqn": "pulumi_oci.fleetsoftwareupdate",
3516
- "classes": {
3517
- "oci:FleetSoftwareUpdate/fsuCollection:FsuCollection": "FsuCollection"
3518
- }
3519
- },
3520
- {
3521
- "pkg": "oci",
3522
- "mod": "FleetSoftwareUpdate/fsuCycle",
3523
- "fqn": "pulumi_oci.fleetsoftwareupdate",
3524
- "classes": {
3525
- "oci:FleetSoftwareUpdate/fsuCycle:FsuCycle": "FsuCycle"
3526
- }
3527
- },
3528
3592
  {
3529
3593
  "pkg": "oci",
3530
3594
  "mod": "Functions/application",
@@ -3629,22 +3693,6 @@ _utilities.register(
3629
3693
  "oci:GenericArtifactsContent/artifactByPath:ArtifactByPath": "ArtifactByPath"
3630
3694
  }
3631
3695
  },
3632
- {
3633
- "pkg": "oci",
3634
- "mod": "GloballyDistributedDatabase/privateEndpoint",
3635
- "fqn": "pulumi_oci.globallydistributeddatabase",
3636
- "classes": {
3637
- "oci:GloballyDistributedDatabase/privateEndpoint:PrivateEndpoint": "PrivateEndpoint"
3638
- }
3639
- },
3640
- {
3641
- "pkg": "oci",
3642
- "mod": "GloballyDistributedDatabase/shardedDatabase",
3643
- "fqn": "pulumi_oci.globallydistributeddatabase",
3644
- "classes": {
3645
- "oci:GloballyDistributedDatabase/shardedDatabase:ShardedDatabase": "ShardedDatabase"
3646
- }
3647
- },
3648
3696
  {
3649
3697
  "pkg": "oci",
3650
3698
  "mod": "GoldenGate/connection",
@@ -10,5 +10,6 @@ from .announcement_subscriptions_actions_change_compartment import *
10
10
  from .announcement_subscriptions_filter_group import *
11
11
  from .get_announcement_subscription import *
12
12
  from .get_announcement_subscriptions import *
13
+ from .get_services import *
13
14
  from ._inputs import *
14
15
  from . import outputs
@@ -14,6 +14,7 @@ __all__ = [
14
14
  'AnnouncementSubscriptionFilterGroupsFilterArgs',
15
15
  'AnnouncementSubscriptionsFilterGroupFilterArgs',
16
16
  'GetAnnouncementSubscriptionsFilterArgs',
17
+ 'GetServicesFilterArgs',
17
18
  ]
18
19
 
19
20
  @pulumi.input_type
@@ -22,7 +23,7 @@ class AnnouncementSubscriptionFilterGroupsArgs:
22
23
  filters: pulumi.Input[Sequence[pulumi.Input['AnnouncementSubscriptionFilterGroupsFilterArgs']]],
23
24
  name: Optional[pulumi.Input[str]] = None):
24
25
  """
25
- :param pulumi.Input[Sequence[pulumi.Input['AnnouncementSubscriptionFilterGroupsFilterArgs']]] filters: A list of filters against which the Announcements service matches announcements. You cannot have more than one of any given filter type within a filter group.
26
+ :param pulumi.Input[Sequence[pulumi.Input['AnnouncementSubscriptionFilterGroupsFilterArgs']]] filters: A list of filters against which the Announcements service matches announcements. You cannot combine the RESOURCE_ID filter with any other type of filter within a given filter group. For filter types that support multiple values, specify the values individually.
26
27
  :param pulumi.Input[str] name: The name of the group. The name must be unique and it cannot be changed. Avoid entering confidential information.
27
28
  """
28
29
  pulumi.set(__self__, "filters", filters)
@@ -33,7 +34,7 @@ class AnnouncementSubscriptionFilterGroupsArgs:
33
34
  @pulumi.getter
34
35
  def filters(self) -> pulumi.Input[Sequence[pulumi.Input['AnnouncementSubscriptionFilterGroupsFilterArgs']]]:
35
36
  """
36
- A list of filters against which the Announcements service matches announcements. You cannot have more than one of any given filter type within a filter group.
37
+ A list of filters against which the Announcements service matches announcements. You cannot combine the RESOURCE_ID filter with any other type of filter within a given filter group. For filter types that support multiple values, specify the values individually.
37
38
  """
38
39
  return pulumi.get(self, "filters")
39
40
 
@@ -60,7 +61,7 @@ class AnnouncementSubscriptionFilterGroupsFilterArgs:
60
61
  type: pulumi.Input[str],
61
62
  value: pulumi.Input[str]):
62
63
  """
63
- :param pulumi.Input[str] type: The type of filter.
64
+ :param pulumi.Input[str] type: The type of filter. You cannot combine the RESOURCE_ID filter with any other type of filter within a given filter group. For filter types that support multiple values, specify the values individually.
64
65
  :param pulumi.Input[str] value: The value of the filter.
65
66
  """
66
67
  pulumi.set(__self__, "type", type)
@@ -70,7 +71,7 @@ class AnnouncementSubscriptionFilterGroupsFilterArgs:
70
71
  @pulumi.getter
71
72
  def type(self) -> pulumi.Input[str]:
72
73
  """
73
- The type of filter.
74
+ The type of filter. You cannot combine the RESOURCE_ID filter with any other type of filter within a given filter group. For filter types that support multiple values, specify the values individually.
74
75
  """
75
76
  return pulumi.get(self, "type")
76
77
 
@@ -97,7 +98,7 @@ class AnnouncementSubscriptionsFilterGroupFilterArgs:
97
98
  type: pulumi.Input[str],
98
99
  value: pulumi.Input[str]):
99
100
  """
100
- :param pulumi.Input[str] type: (Updatable) The type of filter.
101
+ :param pulumi.Input[str] type: (Updatable) The type of filter. You cannot combine the RESOURCE_ID filter with any other type of filter within a given filter group. For filter types that support multiple values, specify the values individually.
101
102
  :param pulumi.Input[str] value: (Updatable) The value of the filter.
102
103
  """
103
104
  pulumi.set(__self__, "type", type)
@@ -107,7 +108,7 @@ class AnnouncementSubscriptionsFilterGroupFilterArgs:
107
108
  @pulumi.getter
108
109
  def type(self) -> pulumi.Input[str]:
109
110
  """
110
- (Updatable) The type of filter.
111
+ (Updatable) The type of filter. You cannot combine the RESOURCE_ID filter with any other type of filter within a given filter group. For filter types that support multiple values, specify the values individually.
111
112
  """
112
113
  return pulumi.get(self, "type")
113
114
 
@@ -173,3 +174,42 @@ class GetAnnouncementSubscriptionsFilterArgs:
173
174
  pulumi.set(self, "regex", value)
174
175
 
175
176
 
177
+ @pulumi.input_type
178
+ class GetServicesFilterArgs:
179
+ def __init__(__self__, *,
180
+ name: str,
181
+ values: Sequence[str],
182
+ regex: Optional[bool] = None):
183
+ pulumi.set(__self__, "name", name)
184
+ pulumi.set(__self__, "values", values)
185
+ if regex is not None:
186
+ pulumi.set(__self__, "regex", regex)
187
+
188
+ @property
189
+ @pulumi.getter
190
+ def name(self) -> str:
191
+ return pulumi.get(self, "name")
192
+
193
+ @name.setter
194
+ def name(self, value: str):
195
+ pulumi.set(self, "name", value)
196
+
197
+ @property
198
+ @pulumi.getter
199
+ def values(self) -> Sequence[str]:
200
+ return pulumi.get(self, "values")
201
+
202
+ @values.setter
203
+ def values(self, value: Sequence[str]):
204
+ pulumi.set(self, "values", value)
205
+
206
+ @property
207
+ @pulumi.getter
208
+ def regex(self) -> Optional[bool]:
209
+ return pulumi.get(self, "regex")
210
+
211
+ @regex.setter
212
+ def regex(self, value: Optional[bool]):
213
+ pulumi.set(self, "regex", value)
214
+
215
+
@@ -34,8 +34,8 @@ class AnnouncementSubscriptionArgs:
34
34
  :param pulumi.Input[str] description: (Updatable) A description of the announcement subscription. Avoid entering confidential information.
35
35
  :param pulumi.Input['AnnouncementSubscriptionFilterGroupsArgs'] filter_groups: A list of filter groups for the announcement subscription. A filter group combines one or more filters that the Announcements service applies to announcements for matching purposes.
36
36
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
37
- :param pulumi.Input[str] preferred_language: (Updatable) (For announcement subscriptions with Oracle Fusion Applications configured as the service only) The language in which the user prefers to receive emailed announcements. Specify the preference with a value that uses the language tag format (x-obmcs-human-language). For example fr-FR.
38
- :param pulumi.Input[str] preferred_time_zone: (Updatable) The time zone that the user prefers for announcement time stamps. Specify the preference with a value that uses the IANA Time Zone Database format (x-obmcs-time-zone). For example America/Los_Angeles.
37
+ :param pulumi.Input[str] preferred_language: (Updatable) (For announcement subscriptions with SaaS configured as the platform type or Oracle Fusion Applications as the service, or both, only) The language in which the user prefers to receive emailed announcements. Specify the preference with a value that uses the x-obmcs-human-language format. For example fr-FR.
38
+ :param pulumi.Input[str] preferred_time_zone: (Updatable) The time zone in which the user prefers to receive announcements. Specify the preference with a value that uses the IANA Time Zone Database format (x-obmcs-time-zone). For example - America/Los_Angeles
39
39
 
40
40
 
41
41
  ** IMPORTANT **
@@ -145,7 +145,7 @@ class AnnouncementSubscriptionArgs:
145
145
  @pulumi.getter(name="preferredLanguage")
146
146
  def preferred_language(self) -> Optional[pulumi.Input[str]]:
147
147
  """
148
- (Updatable) (For announcement subscriptions with Oracle Fusion Applications configured as the service only) The language in which the user prefers to receive emailed announcements. Specify the preference with a value that uses the language tag format (x-obmcs-human-language). For example fr-FR.
148
+ (Updatable) (For announcement subscriptions with SaaS configured as the platform type or Oracle Fusion Applications as the service, or both, only) The language in which the user prefers to receive emailed announcements. Specify the preference with a value that uses the x-obmcs-human-language format. For example fr-FR.
149
149
  """
150
150
  return pulumi.get(self, "preferred_language")
151
151
 
@@ -157,7 +157,7 @@ class AnnouncementSubscriptionArgs:
157
157
  @pulumi.getter(name="preferredTimeZone")
158
158
  def preferred_time_zone(self) -> Optional[pulumi.Input[str]]:
159
159
  """
160
- (Updatable) The time zone that the user prefers for announcement time stamps. Specify the preference with a value that uses the IANA Time Zone Database format (x-obmcs-time-zone). For example America/Los_Angeles.
160
+ (Updatable) The time zone in which the user prefers to receive announcements. Specify the preference with a value that uses the IANA Time Zone Database format (x-obmcs-time-zone). For example - America/Los_Angeles
161
161
 
162
162
 
163
163
  ** IMPORTANT **
@@ -197,8 +197,8 @@ class _AnnouncementSubscriptionState:
197
197
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
198
198
  :param pulumi.Input[str] lifecycle_details: A message describing the current lifecycle state in more detail. For example, details might provide required or recommended actions for a resource in a Failed state.
199
199
  :param pulumi.Input[str] ons_topic_id: (Updatable) The OCID of the Notifications service topic that is the target for publishing announcements that match the configured announcement subscription. The caller of the operation needs the ONS_TOPIC_PUBLISH permission for the targeted Notifications service topic. For more information about Notifications permissions, see [Details for Notifications](https://docs.cloud.oracle.com/iaas/Content/Identity/policyreference/notificationpolicyreference.htm).
200
- :param pulumi.Input[str] preferred_language: (Updatable) (For announcement subscriptions with Oracle Fusion Applications configured as the service only) The language in which the user prefers to receive emailed announcements. Specify the preference with a value that uses the language tag format (x-obmcs-human-language). For example fr-FR.
201
- :param pulumi.Input[str] preferred_time_zone: (Updatable) The time zone that the user prefers for announcement time stamps. Specify the preference with a value that uses the IANA Time Zone Database format (x-obmcs-time-zone). For example America/Los_Angeles.
200
+ :param pulumi.Input[str] preferred_language: (Updatable) (For announcement subscriptions with SaaS configured as the platform type or Oracle Fusion Applications as the service, or both, only) The language in which the user prefers to receive emailed announcements. Specify the preference with a value that uses the x-obmcs-human-language format. For example fr-FR.
201
+ :param pulumi.Input[str] preferred_time_zone: (Updatable) The time zone in which the user prefers to receive announcements. Specify the preference with a value that uses the IANA Time Zone Database format (x-obmcs-time-zone). For example - America/Los_Angeles
202
202
 
203
203
 
204
204
  ** IMPORTANT **
@@ -337,7 +337,7 @@ class _AnnouncementSubscriptionState:
337
337
  @pulumi.getter(name="preferredLanguage")
338
338
  def preferred_language(self) -> Optional[pulumi.Input[str]]:
339
339
  """
340
- (Updatable) (For announcement subscriptions with Oracle Fusion Applications configured as the service only) The language in which the user prefers to receive emailed announcements. Specify the preference with a value that uses the language tag format (x-obmcs-human-language). For example fr-FR.
340
+ (Updatable) (For announcement subscriptions with SaaS configured as the platform type or Oracle Fusion Applications as the service, or both, only) The language in which the user prefers to receive emailed announcements. Specify the preference with a value that uses the x-obmcs-human-language format. For example fr-FR.
341
341
  """
342
342
  return pulumi.get(self, "preferred_language")
343
343
 
@@ -349,7 +349,7 @@ class _AnnouncementSubscriptionState:
349
349
  @pulumi.getter(name="preferredTimeZone")
350
350
  def preferred_time_zone(self) -> Optional[pulumi.Input[str]]:
351
351
  """
352
- (Updatable) The time zone that the user prefers for announcement time stamps. Specify the preference with a value that uses the IANA Time Zone Database format (x-obmcs-time-zone). For example America/Los_Angeles.
352
+ (Updatable) The time zone in which the user prefers to receive announcements. Specify the preference with a value that uses the IANA Time Zone Database format (x-obmcs-time-zone). For example - America/Los_Angeles
353
353
 
354
354
 
355
355
  ** IMPORTANT **
@@ -476,8 +476,8 @@ class AnnouncementSubscription(pulumi.CustomResource):
476
476
  :param pulumi.Input[Union['AnnouncementSubscriptionFilterGroupsArgs', 'AnnouncementSubscriptionFilterGroupsArgsDict']] filter_groups: A list of filter groups for the announcement subscription. A filter group combines one or more filters that the Announcements service applies to announcements for matching purposes.
477
477
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
478
478
  :param pulumi.Input[str] ons_topic_id: (Updatable) The OCID of the Notifications service topic that is the target for publishing announcements that match the configured announcement subscription. The caller of the operation needs the ONS_TOPIC_PUBLISH permission for the targeted Notifications service topic. For more information about Notifications permissions, see [Details for Notifications](https://docs.cloud.oracle.com/iaas/Content/Identity/policyreference/notificationpolicyreference.htm).
479
- :param pulumi.Input[str] preferred_language: (Updatable) (For announcement subscriptions with Oracle Fusion Applications configured as the service only) The language in which the user prefers to receive emailed announcements. Specify the preference with a value that uses the language tag format (x-obmcs-human-language). For example fr-FR.
480
- :param pulumi.Input[str] preferred_time_zone: (Updatable) The time zone that the user prefers for announcement time stamps. Specify the preference with a value that uses the IANA Time Zone Database format (x-obmcs-time-zone). For example America/Los_Angeles.
479
+ :param pulumi.Input[str] preferred_language: (Updatable) (For announcement subscriptions with SaaS configured as the platform type or Oracle Fusion Applications as the service, or both, only) The language in which the user prefers to receive emailed announcements. Specify the preference with a value that uses the x-obmcs-human-language format. For example fr-FR.
480
+ :param pulumi.Input[str] preferred_time_zone: (Updatable) The time zone in which the user prefers to receive announcements. Specify the preference with a value that uses the IANA Time Zone Database format (x-obmcs-time-zone). For example - America/Los_Angeles
481
481
 
482
482
 
483
483
  ** IMPORTANT **
@@ -623,8 +623,8 @@ class AnnouncementSubscription(pulumi.CustomResource):
623
623
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
624
624
  :param pulumi.Input[str] lifecycle_details: A message describing the current lifecycle state in more detail. For example, details might provide required or recommended actions for a resource in a Failed state.
625
625
  :param pulumi.Input[str] ons_topic_id: (Updatable) The OCID of the Notifications service topic that is the target for publishing announcements that match the configured announcement subscription. The caller of the operation needs the ONS_TOPIC_PUBLISH permission for the targeted Notifications service topic. For more information about Notifications permissions, see [Details for Notifications](https://docs.cloud.oracle.com/iaas/Content/Identity/policyreference/notificationpolicyreference.htm).
626
- :param pulumi.Input[str] preferred_language: (Updatable) (For announcement subscriptions with Oracle Fusion Applications configured as the service only) The language in which the user prefers to receive emailed announcements. Specify the preference with a value that uses the language tag format (x-obmcs-human-language). For example fr-FR.
627
- :param pulumi.Input[str] preferred_time_zone: (Updatable) The time zone that the user prefers for announcement time stamps. Specify the preference with a value that uses the IANA Time Zone Database format (x-obmcs-time-zone). For example America/Los_Angeles.
626
+ :param pulumi.Input[str] preferred_language: (Updatable) (For announcement subscriptions with SaaS configured as the platform type or Oracle Fusion Applications as the service, or both, only) The language in which the user prefers to receive emailed announcements. Specify the preference with a value that uses the x-obmcs-human-language format. For example fr-FR.
627
+ :param pulumi.Input[str] preferred_time_zone: (Updatable) The time zone in which the user prefers to receive announcements. Specify the preference with a value that uses the IANA Time Zone Database format (x-obmcs-time-zone). For example - America/Los_Angeles
628
628
 
629
629
 
630
630
  ** IMPORTANT **
@@ -722,7 +722,7 @@ class AnnouncementSubscription(pulumi.CustomResource):
722
722
  @pulumi.getter(name="preferredLanguage")
723
723
  def preferred_language(self) -> pulumi.Output[str]:
724
724
  """
725
- (Updatable) (For announcement subscriptions with Oracle Fusion Applications configured as the service only) The language in which the user prefers to receive emailed announcements. Specify the preference with a value that uses the language tag format (x-obmcs-human-language). For example fr-FR.
725
+ (Updatable) (For announcement subscriptions with SaaS configured as the platform type or Oracle Fusion Applications as the service, or both, only) The language in which the user prefers to receive emailed announcements. Specify the preference with a value that uses the x-obmcs-human-language format. For example fr-FR.
726
726
  """
727
727
  return pulumi.get(self, "preferred_language")
728
728
 
@@ -730,7 +730,7 @@ class AnnouncementSubscription(pulumi.CustomResource):
730
730
  @pulumi.getter(name="preferredTimeZone")
731
731
  def preferred_time_zone(self) -> pulumi.Output[str]:
732
732
  """
733
- (Updatable) The time zone that the user prefers for announcement time stamps. Specify the preference with a value that uses the IANA Time Zone Database format (x-obmcs-time-zone). For example America/Los_Angeles.
733
+ (Updatable) The time zone in which the user prefers to receive announcements. Specify the preference with a value that uses the IANA Time Zone Database format (x-obmcs-time-zone). For example - America/Los_Angeles
734
734
 
735
735
 
736
736
  ** IMPORTANT **
@@ -153,7 +153,7 @@ class GetAnnouncementSubscriptionResult:
153
153
  @pulumi.getter(name="preferredLanguage")
154
154
  def preferred_language(self) -> str:
155
155
  """
156
- (For announcement subscriptions with Oracle Fusion Applications configured as the service only) The language in which the user prefers to receive emailed announcements. Specify the preference with a value that uses the language tag format (x-obmcs-human-language). For example fr-FR.
156
+ (For announcement subscriptions with SaaS configured as the platform type or Oracle Fusion Applications as the service, or both, only) The language in which the user prefers to receive emailed announcements. Specify the preference with a value that uses the x-obmcs-human-language format. For example fr-FR.
157
157
  """
158
158
  return pulumi.get(self, "preferred_language")
159
159
 
@@ -161,7 +161,7 @@ class GetAnnouncementSubscriptionResult:
161
161
  @pulumi.getter(name="preferredTimeZone")
162
162
  def preferred_time_zone(self) -> str:
163
163
  """
164
- The time zone that the user prefers for announcement time stamps. Specify the preference with a value that uses the IANA Time Zone Database format (x-obmcs-time-zone). For example America/Los_Angeles.
164
+ The time zone in which the user prefers to receive announcements. Specify the preference with a value that uses the IANA Time Zone Database format (x-obmcs-time-zone). For example - America/Los_Angeles
165
165
  """
166
166
  return pulumi.get(self, "preferred_time_zone")
167
167
 
@@ -0,0 +1,173 @@
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
+ import copy
6
+ import warnings
7
+ import pulumi
8
+ import pulumi.runtime
9
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
10
+ from .. import _utilities
11
+ from . import outputs
12
+ from ._inputs import *
13
+
14
+ __all__ = [
15
+ 'GetServicesResult',
16
+ 'AwaitableGetServicesResult',
17
+ 'get_services',
18
+ 'get_services_output',
19
+ ]
20
+
21
+ @pulumi.output_type
22
+ class GetServicesResult:
23
+ """
24
+ A collection of values returned by getServices.
25
+ """
26
+ def __init__(__self__, comms_manager_name=None, compartment_id=None, filters=None, id=None, platform_type=None, services_collections=None):
27
+ if comms_manager_name and not isinstance(comms_manager_name, str):
28
+ raise TypeError("Expected argument 'comms_manager_name' to be a str")
29
+ pulumi.set(__self__, "comms_manager_name", comms_manager_name)
30
+ if compartment_id and not isinstance(compartment_id, str):
31
+ raise TypeError("Expected argument 'compartment_id' to be a str")
32
+ pulumi.set(__self__, "compartment_id", compartment_id)
33
+ if filters and not isinstance(filters, list):
34
+ raise TypeError("Expected argument 'filters' to be a list")
35
+ pulumi.set(__self__, "filters", filters)
36
+ if id and not isinstance(id, str):
37
+ raise TypeError("Expected argument 'id' to be a str")
38
+ pulumi.set(__self__, "id", id)
39
+ if platform_type and not isinstance(platform_type, str):
40
+ raise TypeError("Expected argument 'platform_type' to be a str")
41
+ pulumi.set(__self__, "platform_type", platform_type)
42
+ if services_collections and not isinstance(services_collections, list):
43
+ raise TypeError("Expected argument 'services_collections' to be a list")
44
+ pulumi.set(__self__, "services_collections", services_collections)
45
+
46
+ @property
47
+ @pulumi.getter(name="commsManagerName")
48
+ def comms_manager_name(self) -> Optional[str]:
49
+ """
50
+ Name of the comms manager team that manages Notifications to this service.
51
+ """
52
+ return pulumi.get(self, "comms_manager_name")
53
+
54
+ @property
55
+ @pulumi.getter(name="compartmentId")
56
+ def compartment_id(self) -> str:
57
+ return pulumi.get(self, "compartment_id")
58
+
59
+ @property
60
+ @pulumi.getter
61
+ def filters(self) -> Optional[Sequence['outputs.GetServicesFilterResult']]:
62
+ return pulumi.get(self, "filters")
63
+
64
+ @property
65
+ @pulumi.getter
66
+ def id(self) -> str:
67
+ """
68
+ The provider-assigned unique ID for this managed resource.
69
+ """
70
+ return pulumi.get(self, "id")
71
+
72
+ @property
73
+ @pulumi.getter(name="platformType")
74
+ def platform_type(self) -> Optional[str]:
75
+ """
76
+ The platform type this service object is related to.
77
+ """
78
+ return pulumi.get(self, "platform_type")
79
+
80
+ @property
81
+ @pulumi.getter(name="servicesCollections")
82
+ def services_collections(self) -> Sequence['outputs.GetServicesServicesCollectionResult']:
83
+ """
84
+ The list of services_collection.
85
+ """
86
+ return pulumi.get(self, "services_collections")
87
+
88
+
89
+ class AwaitableGetServicesResult(GetServicesResult):
90
+ # pylint: disable=using-constant-test
91
+ def __await__(self):
92
+ if False:
93
+ yield self
94
+ return GetServicesResult(
95
+ comms_manager_name=self.comms_manager_name,
96
+ compartment_id=self.compartment_id,
97
+ filters=self.filters,
98
+ id=self.id,
99
+ platform_type=self.platform_type,
100
+ services_collections=self.services_collections)
101
+
102
+
103
+ def get_services(comms_manager_name: Optional[str] = None,
104
+ compartment_id: Optional[str] = None,
105
+ filters: Optional[Sequence[Union['GetServicesFilterArgs', 'GetServicesFilterArgsDict']]] = None,
106
+ platform_type: Optional[str] = None,
107
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetServicesResult:
108
+ """
109
+ This data source provides the list of Services in Oracle Cloud Infrastructure.
110
+
111
+ List all OCI services
112
+
113
+ ## Example Usage
114
+
115
+ ```python
116
+ import pulumi
117
+ import pulumi_oci as oci
118
+
119
+ test_services = oci.AnnouncementsService.get_services(compartment_id=compartment_id,
120
+ comms_manager_name=service_comms_manager_name,
121
+ platform_type=service_platform_type)
122
+ ```
123
+
124
+
125
+ :param str comms_manager_name: Filter by comms manager name
126
+ :param str compartment_id: The OCID of the root compartment/tenancy.
127
+ :param str platform_type: A filter to return only services underlying a specific platform.
128
+ """
129
+ __args__ = dict()
130
+ __args__['commsManagerName'] = comms_manager_name
131
+ __args__['compartmentId'] = compartment_id
132
+ __args__['filters'] = filters
133
+ __args__['platformType'] = platform_type
134
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
135
+ __ret__ = pulumi.runtime.invoke('oci:AnnouncementsService/getServices:getServices', __args__, opts=opts, typ=GetServicesResult).value
136
+
137
+ return AwaitableGetServicesResult(
138
+ comms_manager_name=pulumi.get(__ret__, 'comms_manager_name'),
139
+ compartment_id=pulumi.get(__ret__, 'compartment_id'),
140
+ filters=pulumi.get(__ret__, 'filters'),
141
+ id=pulumi.get(__ret__, 'id'),
142
+ platform_type=pulumi.get(__ret__, 'platform_type'),
143
+ services_collections=pulumi.get(__ret__, 'services_collections'))
144
+
145
+
146
+ @_utilities.lift_output_func(get_services)
147
+ def get_services_output(comms_manager_name: Optional[pulumi.Input[Optional[str]]] = None,
148
+ compartment_id: Optional[pulumi.Input[str]] = None,
149
+ filters: Optional[pulumi.Input[Optional[Sequence[Union['GetServicesFilterArgs', 'GetServicesFilterArgsDict']]]]] = None,
150
+ platform_type: Optional[pulumi.Input[Optional[str]]] = None,
151
+ opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetServicesResult]:
152
+ """
153
+ This data source provides the list of Services in Oracle Cloud Infrastructure.
154
+
155
+ List all OCI services
156
+
157
+ ## Example Usage
158
+
159
+ ```python
160
+ import pulumi
161
+ import pulumi_oci as oci
162
+
163
+ test_services = oci.AnnouncementsService.get_services(compartment_id=compartment_id,
164
+ comms_manager_name=service_comms_manager_name,
165
+ platform_type=service_platform_type)
166
+ ```
167
+
168
+
169
+ :param str comms_manager_name: Filter by comms manager name
170
+ :param str compartment_id: The OCID of the root compartment/tenancy.
171
+ :param str platform_type: A filter to return only services underlying a specific platform.
172
+ """
173
+ ...