pulumi-oci 2.9.0a1724479778__py3-none-any.whl → 2.10.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 (123) 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 +64 -24
  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 +195 -66
  19. pulumi_oci/database/vm_cluster_network.py +7 -20
  20. pulumi_oci/databasemanagement/__init__.py +1 -0
  21. pulumi_oci/databasemanagement/_inputs.py +873 -10
  22. pulumi_oci/databasemanagement/autonomous_database_autonomous_database_dbm_features_management.py +275 -0
  23. pulumi_oci/databasemanagement/database_dbm_features_management.py +37 -3
  24. pulumi_oci/databasemanagement/db_management_private_endpoint.py +49 -0
  25. pulumi_oci/databasemanagement/get_db_management_private_endpoint.py +14 -1
  26. pulumi_oci/databasemanagement/get_db_management_private_endpoints.py +21 -1
  27. pulumi_oci/databasemanagement/get_managed_database.py +47 -3
  28. pulumi_oci/databasemanagement/managed_database.py +56 -0
  29. pulumi_oci/databasemanagement/outputs.py +3331 -1397
  30. pulumi_oci/databasemanagement/pluggabledatabase_pluggable_database_dbm_features_management.py +35 -1
  31. pulumi_oci/datasafe/__init__.py +6 -0
  32. pulumi_oci/datasafe/_inputs.py +18 -0
  33. pulumi_oci/datasafe/database_security_config_management.py +244 -2
  34. pulumi_oci/datasafe/masking_policy_health_report_management.py +453 -0
  35. pulumi_oci/datasafe/masking_report_management.py +693 -0
  36. pulumi_oci/datasafe/outputs.py +18 -0
  37. pulumi_oci/datasafe/security_policy_deployment_management.py +180 -2
  38. pulumi_oci/datasafe/security_policy_management.py +172 -2
  39. pulumi_oci/datasafe/set_security_assessment_baseline_management.py +304 -0
  40. pulumi_oci/datasafe/set_user_assessment_baseline_management.py +304 -0
  41. pulumi_oci/datasafe/sql_firewall_policy_management.py +354 -2
  42. pulumi_oci/datasafe/unset_security_assessment_baseline_management.py +264 -0
  43. pulumi_oci/datasafe/unset_user_assessment_baseline_management.py +264 -0
  44. pulumi_oci/delegateaccesscontrol/__init__.py +24 -0
  45. pulumi_oci/delegateaccesscontrol/_inputs.py +306 -0
  46. pulumi_oci/delegateaccesscontrol/delegation_control.py +1082 -0
  47. pulumi_oci/{globallydistributeddatabase/private_endpoint.py → delegateaccesscontrol/delegation_subscription.py} +162 -267
  48. pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request.py +535 -0
  49. pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request_audit_log_report.py +174 -0
  50. pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request_histories.py +133 -0
  51. pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_requests.py +250 -0
  52. pulumi_oci/delegateaccesscontrol/get_delegation_control.py +378 -0
  53. pulumi_oci/delegateaccesscontrol/get_delegation_control_resources.py +133 -0
  54. pulumi_oci/delegateaccesscontrol/get_delegation_controls.py +213 -0
  55. pulumi_oci/{globallydistributeddatabase/get_private_endpoint.py → delegateaccesscontrol/get_delegation_subscription.py} +66 -105
  56. pulumi_oci/delegateaccesscontrol/get_delegation_subscriptions.py +176 -0
  57. pulumi_oci/delegateaccesscontrol/get_service_provider.py +274 -0
  58. pulumi_oci/delegateaccesscontrol/get_service_provider_action.py +210 -0
  59. pulumi_oci/delegateaccesscontrol/get_service_provider_actions.py +210 -0
  60. pulumi_oci/delegateaccesscontrol/get_service_providers.py +213 -0
  61. pulumi_oci/delegateaccesscontrol/outputs.py +1679 -0
  62. pulumi_oci/{fleetsoftwareupdate → desktops}/__init__.py +7 -6
  63. pulumi_oci/desktops/_inputs.py +483 -0
  64. pulumi_oci/desktops/desktop_pool.py +1348 -0
  65. pulumi_oci/desktops/get_desktop.py +223 -0
  66. pulumi_oci/desktops/get_desktop_pool.py +418 -0
  67. pulumi_oci/desktops/get_desktop_pool_desktops.py +208 -0
  68. pulumi_oci/desktops/get_desktop_pool_volumes.py +214 -0
  69. pulumi_oci/desktops/get_desktop_pools.py +203 -0
  70. pulumi_oci/desktops/get_desktops.py +214 -0
  71. pulumi_oci/desktops/outputs.py +1738 -0
  72. pulumi_oci/filestorage/mount_target.py +143 -38
  73. pulumi_oci/filestorage/outputs.py +44 -0
  74. pulumi_oci/identity/domains_group.py +34 -0
  75. pulumi_oci/identity/domains_user.py +34 -0
  76. pulumi_oci/identity/get_domains_group.py +11 -1
  77. pulumi_oci/identity/get_domains_user.py +11 -1
  78. pulumi_oci/identity/outputs.py +14 -0
  79. pulumi_oci/kms/_inputs.py +10 -10
  80. pulumi_oci/kms/get_vault.py +14 -1
  81. pulumi_oci/kms/outputs.py +41 -30
  82. pulumi_oci/kms/vault.py +28 -0
  83. pulumi_oci/loadbalancer/load_balancer.py +224 -0
  84. pulumi_oci/loadbalancer/outputs.py +22 -0
  85. pulumi_oci/managementagent/_inputs.py +44 -0
  86. pulumi_oci/managementagent/management_agent.py +45 -21
  87. pulumi_oci/managementagent/outputs.py +44 -0
  88. pulumi_oci/mysql/_inputs.py +23 -0
  89. pulumi_oci/mysql/get_mysql_db_system.py +15 -2
  90. pulumi_oci/mysql/mysql_db_system.py +53 -0
  91. pulumi_oci/mysql/outputs.py +74 -6
  92. pulumi_oci/ocvp/get_cluster.py +2 -2
  93. pulumi_oci/ocvp/get_exsi_hosts.py +2 -2
  94. pulumi_oci/ocvp/get_supported_vmware_software_versions.py +22 -5
  95. pulumi_oci/ocvp/outputs.py +2 -2
  96. pulumi_oci/pulumi-plugin.json +1 -1
  97. pulumi_oci/recoverymod/_inputs.py +0 -8
  98. pulumi_oci/recoverymod/get_protected_database.py +14 -1
  99. pulumi_oci/recoverymod/get_protection_policy.py +14 -1
  100. pulumi_oci/recoverymod/outputs.py +22 -8
  101. pulumi_oci/recoverymod/protected_database.py +80 -3
  102. pulumi_oci/recoverymod/protection_policy.py +49 -0
  103. pulumi_oci/waf/_inputs.py +29 -16
  104. pulumi_oci/waf/outputs.py +33 -10
  105. {pulumi_oci-2.9.0a1724479778.dist-info → pulumi_oci-2.10.0.dist-info}/METADATA +1 -1
  106. {pulumi_oci-2.9.0a1724479778.dist-info → pulumi_oci-2.10.0.dist-info}/RECORD +108 -90
  107. {pulumi_oci-2.9.0a1724479778.dist-info → pulumi_oci-2.10.0.dist-info}/WHEEL +1 -1
  108. pulumi_oci/fleetsoftwareupdate/_inputs.py +0 -553
  109. pulumi_oci/fleetsoftwareupdate/fsu_collection.py +0 -514
  110. pulumi_oci/fleetsoftwareupdate/fsu_cycle.py +0 -812
  111. pulumi_oci/fleetsoftwareupdate/get_fsu_collection.py +0 -225
  112. pulumi_oci/fleetsoftwareupdate/get_fsu_collections.py +0 -141
  113. pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py +0 -325
  114. pulumi_oci/fleetsoftwareupdate/get_fsu_cycles.py +0 -167
  115. pulumi_oci/fleetsoftwareupdate/outputs.py +0 -1481
  116. pulumi_oci/globallydistributeddatabase/__init__.py +0 -15
  117. pulumi_oci/globallydistributeddatabase/_inputs.py +0 -1003
  118. pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +0 -176
  119. pulumi_oci/globallydistributeddatabase/get_sharded_database.py +0 -610
  120. pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +0 -176
  121. pulumi_oci/globallydistributeddatabase/outputs.py +0 -2058
  122. pulumi_oci/globallydistributeddatabase/sharded_database.py +0 -1816
  123. {pulumi_oci-2.9.0a1724479778.dist-info → pulumi_oci-2.10.0.dist-info}/top_level.txt +0 -0
@@ -21,6 +21,9 @@ __all__ = [
21
21
  'GetAnnouncementSubscriptionsAnnouncementSubscriptionCollectionItemFilterGroupResult',
22
22
  'GetAnnouncementSubscriptionsAnnouncementSubscriptionCollectionItemFilterGroupFilterResult',
23
23
  'GetAnnouncementSubscriptionsFilterResult',
24
+ 'GetServicesFilterResult',
25
+ 'GetServicesServicesCollectionResult',
26
+ 'GetServicesServicesCollectionItemResult',
24
27
  ]
25
28
 
26
29
  @pulumi.output_type
@@ -29,7 +32,7 @@ class AnnouncementSubscriptionFilterGroups(dict):
29
32
  filters: Sequence['outputs.AnnouncementSubscriptionFilterGroupsFilter'],
30
33
  name: Optional[str] = None):
31
34
  """
32
- :param Sequence['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.
35
+ :param Sequence['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.
33
36
  :param str name: The name of the group. The name must be unique and it cannot be changed. Avoid entering confidential information.
34
37
  """
35
38
  pulumi.set(__self__, "filters", filters)
@@ -40,7 +43,7 @@ class AnnouncementSubscriptionFilterGroups(dict):
40
43
  @pulumi.getter
41
44
  def filters(self) -> Sequence['outputs.AnnouncementSubscriptionFilterGroupsFilter']:
42
45
  """
43
- 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.
46
+ 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.
44
47
  """
45
48
  return pulumi.get(self, "filters")
46
49
 
@@ -59,7 +62,7 @@ class AnnouncementSubscriptionFilterGroupsFilter(dict):
59
62
  type: str,
60
63
  value: str):
61
64
  """
62
- :param str type: The type of filter.
65
+ :param 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.
63
66
  :param str value: The value of the filter.
64
67
  """
65
68
  pulumi.set(__self__, "type", type)
@@ -69,7 +72,7 @@ class AnnouncementSubscriptionFilterGroupsFilter(dict):
69
72
  @pulumi.getter
70
73
  def type(self) -> str:
71
74
  """
72
- The type of filter.
75
+ 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.
73
76
  """
74
77
  return pulumi.get(self, "type")
75
78
 
@@ -88,7 +91,7 @@ class AnnouncementSubscriptionsFilterGroupFilter(dict):
88
91
  type: str,
89
92
  value: str):
90
93
  """
91
- :param str type: (Updatable) The type of filter.
94
+ :param 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.
92
95
  :param str value: (Updatable) The value of the filter.
93
96
  """
94
97
  pulumi.set(__self__, "type", type)
@@ -98,7 +101,7 @@ class AnnouncementSubscriptionsFilterGroupFilter(dict):
98
101
  @pulumi.getter
99
102
  def type(self) -> str:
100
103
  """
101
- (Updatable) The type of filter.
104
+ (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.
102
105
  """
103
106
  return pulumi.get(self, "type")
104
107
 
@@ -117,7 +120,7 @@ class GetAnnouncementSubscriptionFilterGroupResult(dict):
117
120
  filters: Sequence['outputs.GetAnnouncementSubscriptionFilterGroupFilterResult'],
118
121
  name: str):
119
122
  """
120
- :param Sequence['GetAnnouncementSubscriptionFilterGroupFilterArgs'] 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. You also cannot combine the RESOURCE_ID filter with any other type of filter within a given filter group.
123
+ :param Sequence['GetAnnouncementSubscriptionFilterGroupFilterArgs'] 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.
121
124
  :param str name: The name of the group. The name must be unique and it cannot be changed. Avoid entering confidential information.
122
125
  """
123
126
  pulumi.set(__self__, "filters", filters)
@@ -127,7 +130,7 @@ class GetAnnouncementSubscriptionFilterGroupResult(dict):
127
130
  @pulumi.getter
128
131
  def filters(self) -> Sequence['outputs.GetAnnouncementSubscriptionFilterGroupFilterResult']:
129
132
  """
130
- 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. You also cannot combine the RESOURCE_ID filter with any other type of filter within a given filter group.
133
+ 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.
131
134
  """
132
135
  return pulumi.get(self, "filters")
133
136
 
@@ -146,7 +149,7 @@ class GetAnnouncementSubscriptionFilterGroupFilterResult(dict):
146
149
  type: str,
147
150
  value: str):
148
151
  """
149
- :param str type: The type of filter.
152
+ :param 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.
150
153
  :param str value: The value of the filter.
151
154
  """
152
155
  pulumi.set(__self__, "type", type)
@@ -156,7 +159,7 @@ class GetAnnouncementSubscriptionFilterGroupFilterResult(dict):
156
159
  @pulumi.getter
157
160
  def type(self) -> str:
158
161
  """
159
- The type of filter.
162
+ 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.
160
163
  """
161
164
  return pulumi.get(self, "type")
162
165
 
@@ -209,8 +212,8 @@ class GetAnnouncementSubscriptionsAnnouncementSubscriptionCollectionItemResult(d
209
212
  :param str id: The OCID of the announcement subscription.
210
213
  :param 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.
211
214
  :param str ons_topic_id: The OCID of the Notifications service topic that is the target for publishing announcements that match the configured announcement subscription.
212
- :param str preferred_language: (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.
213
- :param str preferred_time_zone: 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.
215
+ :param str preferred_language: (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.
216
+ :param str preferred_time_zone: 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
214
217
  :param str state: A filter to return only announcement subscriptions that match the given lifecycle state.
215
218
  :param Mapping[str, str] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
216
219
  :param str time_created: The date and time that the announcement subscription was created, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format.
@@ -308,7 +311,7 @@ class GetAnnouncementSubscriptionsAnnouncementSubscriptionCollectionItemResult(d
308
311
  @pulumi.getter(name="preferredLanguage")
309
312
  def preferred_language(self) -> str:
310
313
  """
311
- (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.
314
+ (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.
312
315
  """
313
316
  return pulumi.get(self, "preferred_language")
314
317
 
@@ -316,7 +319,7 @@ class GetAnnouncementSubscriptionsAnnouncementSubscriptionCollectionItemResult(d
316
319
  @pulumi.getter(name="preferredTimeZone")
317
320
  def preferred_time_zone(self) -> str:
318
321
  """
319
- 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.
322
+ 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
320
323
  """
321
324
  return pulumi.get(self, "preferred_time_zone")
322
325
 
@@ -359,7 +362,7 @@ class GetAnnouncementSubscriptionsAnnouncementSubscriptionCollectionItemFilterGr
359
362
  filters: Sequence['outputs.GetAnnouncementSubscriptionsAnnouncementSubscriptionCollectionItemFilterGroupFilterResult'],
360
363
  name: str):
361
364
  """
362
- :param Sequence['GetAnnouncementSubscriptionsAnnouncementSubscriptionCollectionItemFilterGroupFilterArgs'] 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. You also cannot combine the RESOURCE_ID filter with any other type of filter within a given filter group.
365
+ :param Sequence['GetAnnouncementSubscriptionsAnnouncementSubscriptionCollectionItemFilterGroupFilterArgs'] 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.
363
366
  :param str name: The name of the group. The name must be unique and it cannot be changed. Avoid entering confidential information.
364
367
  """
365
368
  pulumi.set(__self__, "filters", filters)
@@ -369,7 +372,7 @@ class GetAnnouncementSubscriptionsAnnouncementSubscriptionCollectionItemFilterGr
369
372
  @pulumi.getter
370
373
  def filters(self) -> Sequence['outputs.GetAnnouncementSubscriptionsAnnouncementSubscriptionCollectionItemFilterGroupFilterResult']:
371
374
  """
372
- 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. You also cannot combine the RESOURCE_ID filter with any other type of filter within a given filter group.
375
+ 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.
373
376
  """
374
377
  return pulumi.get(self, "filters")
375
378
 
@@ -388,7 +391,7 @@ class GetAnnouncementSubscriptionsAnnouncementSubscriptionCollectionItemFilterGr
388
391
  type: str,
389
392
  value: str):
390
393
  """
391
- :param str type: The type of filter.
394
+ :param 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.
392
395
  :param str value: The value of the filter.
393
396
  """
394
397
  pulumi.set(__self__, "type", type)
@@ -398,7 +401,7 @@ class GetAnnouncementSubscriptionsAnnouncementSubscriptionCollectionItemFilterGr
398
401
  @pulumi.getter
399
402
  def type(self) -> str:
400
403
  """
401
- The type of filter.
404
+ 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.
402
405
  """
403
406
  return pulumi.get(self, "type")
404
407
 
@@ -444,3 +447,177 @@ class GetAnnouncementSubscriptionsFilterResult(dict):
444
447
  return pulumi.get(self, "regex")
445
448
 
446
449
 
450
+ @pulumi.output_type
451
+ class GetServicesFilterResult(dict):
452
+ def __init__(__self__, *,
453
+ name: str,
454
+ values: Sequence[str],
455
+ regex: Optional[bool] = None):
456
+ pulumi.set(__self__, "name", name)
457
+ pulumi.set(__self__, "values", values)
458
+ if regex is not None:
459
+ pulumi.set(__self__, "regex", regex)
460
+
461
+ @property
462
+ @pulumi.getter
463
+ def name(self) -> str:
464
+ return pulumi.get(self, "name")
465
+
466
+ @property
467
+ @pulumi.getter
468
+ def values(self) -> Sequence[str]:
469
+ return pulumi.get(self, "values")
470
+
471
+ @property
472
+ @pulumi.getter
473
+ def regex(self) -> Optional[bool]:
474
+ return pulumi.get(self, "regex")
475
+
476
+
477
+ @pulumi.output_type
478
+ class GetServicesServicesCollectionResult(dict):
479
+ def __init__(__self__, *,
480
+ items: Sequence['outputs.GetServicesServicesCollectionItemResult']):
481
+ pulumi.set(__self__, "items", items)
482
+
483
+ @property
484
+ @pulumi.getter
485
+ def items(self) -> Sequence['outputs.GetServicesServicesCollectionItemResult']:
486
+ return pulumi.get(self, "items")
487
+
488
+
489
+ @pulumi.output_type
490
+ class GetServicesServicesCollectionItemResult(dict):
491
+ def __init__(__self__, *,
492
+ comms_manager_name: str,
493
+ excluded_realms: Sequence[str],
494
+ id: str,
495
+ platform_type: str,
496
+ previous_service_names: Sequence[str],
497
+ service_name: str,
498
+ short_name: str,
499
+ state: str,
500
+ team_name: str,
501
+ time_created: str,
502
+ time_updated: str,
503
+ type: str):
504
+ """
505
+ :param str comms_manager_name: Filter by comms manager name
506
+ :param Sequence[str] excluded_realms: The list of realms where this service is not available to be used.
507
+ :param str id: ID of the service object.
508
+ :param str platform_type: A filter to return only services underlying a specific platform.
509
+ :param Sequence[str] previous_service_names: The list of previously used names for this service object.
510
+ :param str service_name: Name of the service represented by this object.
511
+ :param str short_name: Short name of the team to whom this service object is related.
512
+ :param str state: Current state of the service object.
513
+ :param str team_name: Team name to which this service object is related.
514
+ :param str time_created: The date and time when the service object was created.
515
+ :param str time_updated: The date and time when the service object was updated.
516
+ """
517
+ pulumi.set(__self__, "comms_manager_name", comms_manager_name)
518
+ pulumi.set(__self__, "excluded_realms", excluded_realms)
519
+ pulumi.set(__self__, "id", id)
520
+ pulumi.set(__self__, "platform_type", platform_type)
521
+ pulumi.set(__self__, "previous_service_names", previous_service_names)
522
+ pulumi.set(__self__, "service_name", service_name)
523
+ pulumi.set(__self__, "short_name", short_name)
524
+ pulumi.set(__self__, "state", state)
525
+ pulumi.set(__self__, "team_name", team_name)
526
+ pulumi.set(__self__, "time_created", time_created)
527
+ pulumi.set(__self__, "time_updated", time_updated)
528
+ pulumi.set(__self__, "type", type)
529
+
530
+ @property
531
+ @pulumi.getter(name="commsManagerName")
532
+ def comms_manager_name(self) -> str:
533
+ """
534
+ Filter by comms manager name
535
+ """
536
+ return pulumi.get(self, "comms_manager_name")
537
+
538
+ @property
539
+ @pulumi.getter(name="excludedRealms")
540
+ def excluded_realms(self) -> Sequence[str]:
541
+ """
542
+ The list of realms where this service is not available to be used.
543
+ """
544
+ return pulumi.get(self, "excluded_realms")
545
+
546
+ @property
547
+ @pulumi.getter
548
+ def id(self) -> str:
549
+ """
550
+ ID of the service object.
551
+ """
552
+ return pulumi.get(self, "id")
553
+
554
+ @property
555
+ @pulumi.getter(name="platformType")
556
+ def platform_type(self) -> str:
557
+ """
558
+ A filter to return only services underlying a specific platform.
559
+ """
560
+ return pulumi.get(self, "platform_type")
561
+
562
+ @property
563
+ @pulumi.getter(name="previousServiceNames")
564
+ def previous_service_names(self) -> Sequence[str]:
565
+ """
566
+ The list of previously used names for this service object.
567
+ """
568
+ return pulumi.get(self, "previous_service_names")
569
+
570
+ @property
571
+ @pulumi.getter(name="serviceName")
572
+ def service_name(self) -> str:
573
+ """
574
+ Name of the service represented by this object.
575
+ """
576
+ return pulumi.get(self, "service_name")
577
+
578
+ @property
579
+ @pulumi.getter(name="shortName")
580
+ def short_name(self) -> str:
581
+ """
582
+ Short name of the team to whom this service object is related.
583
+ """
584
+ return pulumi.get(self, "short_name")
585
+
586
+ @property
587
+ @pulumi.getter
588
+ def state(self) -> str:
589
+ """
590
+ Current state of the service object.
591
+ """
592
+ return pulumi.get(self, "state")
593
+
594
+ @property
595
+ @pulumi.getter(name="teamName")
596
+ def team_name(self) -> str:
597
+ """
598
+ Team name to which this service object is related.
599
+ """
600
+ return pulumi.get(self, "team_name")
601
+
602
+ @property
603
+ @pulumi.getter(name="timeCreated")
604
+ def time_created(self) -> str:
605
+ """
606
+ The date and time when the service object was created.
607
+ """
608
+ return pulumi.get(self, "time_created")
609
+
610
+ @property
611
+ @pulumi.getter(name="timeUpdated")
612
+ def time_updated(self) -> str:
613
+ """
614
+ The date and time when the service object was updated.
615
+ """
616
+ return pulumi.get(self, "time_updated")
617
+
618
+ @property
619
+ @pulumi.getter
620
+ def type(self) -> str:
621
+ return pulumi.get(self, "type")
622
+
623
+
@@ -1217,10 +1217,7 @@ class BdsInstanceCloudSqlDetailArgs:
1217
1217
  kerberos_details: Optional[pulumi.Input[Sequence[pulumi.Input['BdsInstanceCloudSqlDetailKerberosDetailArgs']]]] = None,
1218
1218
  memory_in_gbs: Optional[pulumi.Input[int]] = None,
1219
1219
  nvmes: Optional[pulumi.Input[int]] = None,
1220
- ocpus: Optional[pulumi.Input[int]] = None,
1221
- odh_version: Optional[pulumi.Input[str]] = None,
1222
- os_version: Optional[pulumi.Input[str]] = None,
1223
- ssh_fingerprint: Optional[pulumi.Input[str]] = None):
1220
+ ocpus: Optional[pulumi.Input[int]] = None):
1224
1221
  """
1225
1222
  :param pulumi.Input[str] shape: Shape of the node
1226
1223
  :param pulumi.Input[str] block_volume_size_in_gbs: The size of block volume in GB that needs to be attached to a given node. All the necessary details needed for attachment are managed by service itself.
@@ -1230,9 +1227,6 @@ class BdsInstanceCloudSqlDetailArgs:
1230
1227
  :param pulumi.Input[int] memory_in_gbs: The total amount of memory available to the node, in gigabytes.
1231
1228
  :param pulumi.Input[int] nvmes: The number of NVMe drives to be used for storage. A single drive has 6.8 TB available.
1232
1229
  :param pulumi.Input[int] ocpus: The total number of OCPUs available to the node.
1233
- :param pulumi.Input[str] odh_version: Version of the ODH (Oracle Distribution including Apache Hadoop) for the node.
1234
- :param pulumi.Input[str] os_version: BDS-assigned Operating System version for the node.
1235
- :param pulumi.Input[str] ssh_fingerprint: The fingerprint of the SSH key used for node access
1236
1230
  """
1237
1231
  pulumi.set(__self__, "shape", shape)
1238
1232
  if block_volume_size_in_gbs is not None:
@@ -1249,12 +1243,6 @@ class BdsInstanceCloudSqlDetailArgs:
1249
1243
  pulumi.set(__self__, "nvmes", nvmes)
1250
1244
  if ocpus is not None:
1251
1245
  pulumi.set(__self__, "ocpus", ocpus)
1252
- if odh_version is not None:
1253
- pulumi.set(__self__, "odh_version", odh_version)
1254
- if os_version is not None:
1255
- pulumi.set(__self__, "os_version", os_version)
1256
- if ssh_fingerprint is not None:
1257
- pulumi.set(__self__, "ssh_fingerprint", ssh_fingerprint)
1258
1246
 
1259
1247
  @property
1260
1248
  @pulumi.getter
@@ -1352,42 +1340,6 @@ class BdsInstanceCloudSqlDetailArgs:
1352
1340
  def ocpus(self, value: Optional[pulumi.Input[int]]):
1353
1341
  pulumi.set(self, "ocpus", value)
1354
1342
 
1355
- @property
1356
- @pulumi.getter(name="odhVersion")
1357
- def odh_version(self) -> Optional[pulumi.Input[str]]:
1358
- """
1359
- Version of the ODH (Oracle Distribution including Apache Hadoop) for the node.
1360
- """
1361
- return pulumi.get(self, "odh_version")
1362
-
1363
- @odh_version.setter
1364
- def odh_version(self, value: Optional[pulumi.Input[str]]):
1365
- pulumi.set(self, "odh_version", value)
1366
-
1367
- @property
1368
- @pulumi.getter(name="osVersion")
1369
- def os_version(self) -> Optional[pulumi.Input[str]]:
1370
- """
1371
- BDS-assigned Operating System version for the node.
1372
- """
1373
- return pulumi.get(self, "os_version")
1374
-
1375
- @os_version.setter
1376
- def os_version(self, value: Optional[pulumi.Input[str]]):
1377
- pulumi.set(self, "os_version", value)
1378
-
1379
- @property
1380
- @pulumi.getter(name="sshFingerprint")
1381
- def ssh_fingerprint(self) -> Optional[pulumi.Input[str]]:
1382
- """
1383
- The fingerprint of the SSH key used for node access
1384
- """
1385
- return pulumi.get(self, "ssh_fingerprint")
1386
-
1387
- @ssh_fingerprint.setter
1388
- def ssh_fingerprint(self, value: Optional[pulumi.Input[str]]):
1389
- pulumi.set(self, "ssh_fingerprint", value)
1390
-
1391
1343
 
1392
1344
  @pulumi.input_type
1393
1345
  class BdsInstanceCloudSqlDetailKerberosDetailArgs: