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
@@ -46,7 +46,15 @@ class ManagementAgentDataSourceListArgs:
46
46
  type: Optional[pulumi.Input[str]] = None,
47
47
  url: Optional[pulumi.Input[str]] = None):
48
48
  """
49
+ :param pulumi.Input[str] allow_metrics: Comma separated metric name list. The complete set of desired scraped metrics. Use this property to limit the set of metrics uploaded if required.
50
+ :param pulumi.Input[str] compartment_id: Compartment owning this DataSource.
51
+ :param pulumi.Input[int] connection_timeout: Number in milliseconds. The timeout for connecting to the Prometheus Exporter's endpoint.
52
+ :param pulumi.Input[bool] is_daemon_set: If the Kubernetes cluster type is Daemon set then this will be set to true.
53
+ :param pulumi.Input[str] key: Identifier for DataSource. This represents the type and name for the data source associated with the Management Agent.
54
+ :param pulumi.Input[Sequence[pulumi.Input['ManagementAgentDataSourceListMetricDimensionArgs']]] metric_dimensions: The names of other user-supplied properties expressed as fixed values to be used as dimensions for every uploaded datapoint.
49
55
  :param pulumi.Input[str] name: Name of the property
56
+ :param pulumi.Input[str] namespace: The Oracle Cloud Infrastructure monitoring namespace to which scraped metrics should be uploaded.
57
+ :param pulumi.Input[str] proxy_url: The url of the network proxy that provides access to the Prometheus Exporter's endpoint (url required property).
50
58
  :param pulumi.Input[int] read_data_limit: Number in kilobytes. The limit on the data being sent, not to exceed the agent's fixed limit of 400 (KB).
51
59
  :param pulumi.Input[int] read_timeout: Number in milliseconds. The timeout for reading the response from the Prometheus Exporter's endpoint.
52
60
  :param pulumi.Input[str] resource_group: Oracle Cloud Infrastructure monitoring resource group to assign the metric to.
@@ -97,6 +105,9 @@ class ManagementAgentDataSourceListArgs:
97
105
  @property
98
106
  @pulumi.getter(name="allowMetrics")
99
107
  def allow_metrics(self) -> Optional[pulumi.Input[str]]:
108
+ """
109
+ Comma separated metric name list. The complete set of desired scraped metrics. Use this property to limit the set of metrics uploaded if required.
110
+ """
100
111
  return pulumi.get(self, "allow_metrics")
101
112
 
102
113
  @allow_metrics.setter
@@ -106,6 +117,9 @@ class ManagementAgentDataSourceListArgs:
106
117
  @property
107
118
  @pulumi.getter(name="compartmentId")
108
119
  def compartment_id(self) -> Optional[pulumi.Input[str]]:
120
+ """
121
+ Compartment owning this DataSource.
122
+ """
109
123
  return pulumi.get(self, "compartment_id")
110
124
 
111
125
  @compartment_id.setter
@@ -115,6 +129,9 @@ class ManagementAgentDataSourceListArgs:
115
129
  @property
116
130
  @pulumi.getter(name="connectionTimeout")
117
131
  def connection_timeout(self) -> Optional[pulumi.Input[int]]:
132
+ """
133
+ Number in milliseconds. The timeout for connecting to the Prometheus Exporter's endpoint.
134
+ """
118
135
  return pulumi.get(self, "connection_timeout")
119
136
 
120
137
  @connection_timeout.setter
@@ -124,6 +141,9 @@ class ManagementAgentDataSourceListArgs:
124
141
  @property
125
142
  @pulumi.getter(name="isDaemonSet")
126
143
  def is_daemon_set(self) -> Optional[pulumi.Input[bool]]:
144
+ """
145
+ If the Kubernetes cluster type is Daemon set then this will be set to true.
146
+ """
127
147
  return pulumi.get(self, "is_daemon_set")
128
148
 
129
149
  @is_daemon_set.setter
@@ -133,6 +153,9 @@ class ManagementAgentDataSourceListArgs:
133
153
  @property
134
154
  @pulumi.getter
135
155
  def key(self) -> Optional[pulumi.Input[str]]:
156
+ """
157
+ Identifier for DataSource. This represents the type and name for the data source associated with the Management Agent.
158
+ """
136
159
  return pulumi.get(self, "key")
137
160
 
138
161
  @key.setter
@@ -142,6 +165,9 @@ class ManagementAgentDataSourceListArgs:
142
165
  @property
143
166
  @pulumi.getter(name="metricDimensions")
144
167
  def metric_dimensions(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ManagementAgentDataSourceListMetricDimensionArgs']]]]:
168
+ """
169
+ The names of other user-supplied properties expressed as fixed values to be used as dimensions for every uploaded datapoint.
170
+ """
145
171
  return pulumi.get(self, "metric_dimensions")
146
172
 
147
173
  @metric_dimensions.setter
@@ -163,6 +189,9 @@ class ManagementAgentDataSourceListArgs:
163
189
  @property
164
190
  @pulumi.getter
165
191
  def namespace(self) -> Optional[pulumi.Input[str]]:
192
+ """
193
+ The Oracle Cloud Infrastructure monitoring namespace to which scraped metrics should be uploaded.
194
+ """
166
195
  return pulumi.get(self, "namespace")
167
196
 
168
197
  @namespace.setter
@@ -172,6 +201,9 @@ class ManagementAgentDataSourceListArgs:
172
201
  @property
173
202
  @pulumi.getter(name="proxyUrl")
174
203
  def proxy_url(self) -> Optional[pulumi.Input[str]]:
204
+ """
205
+ The url of the network proxy that provides access to the Prometheus Exporter's endpoint (url required property).
206
+ """
175
207
  return pulumi.get(self, "proxy_url")
176
208
 
177
209
  @proxy_url.setter
@@ -294,6 +326,7 @@ class ManagementAgentDataSourceListMetricDimensionArgs:
294
326
  value: Optional[pulumi.Input[str]] = None):
295
327
  """
296
328
  :param pulumi.Input[str] name: Name of the property
329
+ :param pulumi.Input[str] value: Value of the metric dimension
297
330
  """
298
331
  if name is not None:
299
332
  pulumi.set(__self__, "name", name)
@@ -315,6 +348,9 @@ class ManagementAgentDataSourceListMetricDimensionArgs:
315
348
  @property
316
349
  @pulumi.getter
317
350
  def value(self) -> Optional[pulumi.Input[str]]:
351
+ """
352
+ Value of the metric dimension
353
+ """
318
354
  return pulumi.get(self, "value")
319
355
 
320
356
  @value.setter
@@ -367,6 +403,8 @@ class ManagementAgentDataSourceSummaryListArgs:
367
403
  name: Optional[pulumi.Input[str]] = None,
368
404
  type: Optional[pulumi.Input[str]] = None):
369
405
  """
406
+ :param pulumi.Input[bool] is_daemon_set: If the Kubernetes cluster type is Daemon set then this will be set to true.
407
+ :param pulumi.Input[str] key: Identifier for DataSource. This represents the type and name for the data source associated with the Management Agent.
370
408
  :param pulumi.Input[str] name: Name of the property
371
409
  :param pulumi.Input[str] type: The type of the DataSource.
372
410
  """
@@ -382,6 +420,9 @@ class ManagementAgentDataSourceSummaryListArgs:
382
420
  @property
383
421
  @pulumi.getter(name="isDaemonSet")
384
422
  def is_daemon_set(self) -> Optional[pulumi.Input[bool]]:
423
+ """
424
+ If the Kubernetes cluster type is Daemon set then this will be set to true.
425
+ """
385
426
  return pulumi.get(self, "is_daemon_set")
386
427
 
387
428
  @is_daemon_set.setter
@@ -391,6 +432,9 @@ class ManagementAgentDataSourceSummaryListArgs:
391
432
  @property
392
433
  @pulumi.getter
393
434
  def key(self) -> Optional[pulumi.Input[str]]:
435
+ """
436
+ Identifier for DataSource. This represents the type and name for the data source associated with the Management Agent.
437
+ """
394
438
  return pulumi.get(self, "key")
395
439
 
396
440
  @key.setter
@@ -24,9 +24,9 @@ class ManagementAgentArgs:
24
24
  """
25
25
  The set of arguments for constructing a ManagementAgent resource.
26
26
  :param pulumi.Input[str] managed_agent_id: Unique Management Agent identifier
27
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
28
- :param pulumi.Input[str] display_name: Management Agent Name
29
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
27
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
28
+ :param pulumi.Input[str] display_name: (Updatable) New displayName of Agent.
29
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
30
30
  """
31
31
  pulumi.set(__self__, "managed_agent_id", managed_agent_id)
32
32
  if defined_tags is not None:
@@ -54,7 +54,7 @@ class ManagementAgentArgs:
54
54
  @pulumi.getter(name="definedTags")
55
55
  def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
56
56
  """
57
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
57
+ (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
58
58
  """
59
59
  return pulumi.get(self, "defined_tags")
60
60
 
@@ -75,7 +75,7 @@ class ManagementAgentArgs:
75
75
  @pulumi.getter(name="displayName")
76
76
  def display_name(self) -> Optional[pulumi.Input[str]]:
77
77
  """
78
- Management Agent Name
78
+ (Updatable) New displayName of Agent.
79
79
  """
80
80
  return pulumi.get(self, "display_name")
81
81
 
@@ -87,7 +87,7 @@ class ManagementAgentArgs:
87
87
  @pulumi.getter(name="freeformTags")
88
88
  def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
89
89
  """
90
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
90
+ (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
91
91
  """
92
92
  return pulumi.get(self, "freeform_tags")
93
93
 
@@ -129,9 +129,12 @@ class _ManagementAgentState:
129
129
  version: Optional[pulumi.Input[str]] = None):
130
130
  """
131
131
  Input properties used for looking up and filtering ManagementAgent resources.
132
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
133
- :param pulumi.Input[str] display_name: Management Agent Name
134
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
132
+ :param pulumi.Input[str] availability_status: The current availability status of managementAgent
133
+ :param pulumi.Input[str] compartment_id: Compartment owning this DataSource.
134
+ :param pulumi.Input[Sequence[pulumi.Input['ManagementAgentDataSourceListArgs']]] data_source_lists: list of dataSources associated with the agent
135
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
136
+ :param pulumi.Input[str] display_name: (Updatable) New displayName of Agent.
137
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
135
138
  :param pulumi.Input[str] host: Management Agent host machine name
136
139
  :param pulumi.Input[str] host_id: Host resource ocid
137
140
  :param pulumi.Input[str] install_key_id: agent install key identifier
@@ -213,6 +216,9 @@ class _ManagementAgentState:
213
216
  @property
214
217
  @pulumi.getter(name="availabilityStatus")
215
218
  def availability_status(self) -> Optional[pulumi.Input[str]]:
219
+ """
220
+ The current availability status of managementAgent
221
+ """
216
222
  return pulumi.get(self, "availability_status")
217
223
 
218
224
  @availability_status.setter
@@ -222,6 +228,9 @@ class _ManagementAgentState:
222
228
  @property
223
229
  @pulumi.getter(name="compartmentId")
224
230
  def compartment_id(self) -> Optional[pulumi.Input[str]]:
231
+ """
232
+ Compartment owning this DataSource.
233
+ """
225
234
  return pulumi.get(self, "compartment_id")
226
235
 
227
236
  @compartment_id.setter
@@ -231,6 +240,9 @@ class _ManagementAgentState:
231
240
  @property
232
241
  @pulumi.getter(name="dataSourceLists")
233
242
  def data_source_lists(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ManagementAgentDataSourceListArgs']]]]:
243
+ """
244
+ list of dataSources associated with the agent
245
+ """
234
246
  return pulumi.get(self, "data_source_lists")
235
247
 
236
248
  @data_source_lists.setter
@@ -250,7 +262,7 @@ class _ManagementAgentState:
250
262
  @pulumi.getter(name="definedTags")
251
263
  def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
252
264
  """
253
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
265
+ (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
254
266
  """
255
267
  return pulumi.get(self, "defined_tags")
256
268
 
@@ -271,7 +283,7 @@ class _ManagementAgentState:
271
283
  @pulumi.getter(name="displayName")
272
284
  def display_name(self) -> Optional[pulumi.Input[str]]:
273
285
  """
274
- Management Agent Name
286
+ (Updatable) New displayName of Agent.
275
287
  """
276
288
  return pulumi.get(self, "display_name")
277
289
 
@@ -283,7 +295,7 @@ class _ManagementAgentState:
283
295
  @pulumi.getter(name="freeformTags")
284
296
  def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
285
297
  """
286
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
298
+ (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
287
299
  """
288
300
  return pulumi.get(self, "freeform_tags")
289
301
 
@@ -568,9 +580,9 @@ class ManagementAgent(pulumi.CustomResource):
568
580
 
569
581
  :param str resource_name: The name of the resource.
570
582
  :param pulumi.ResourceOptions opts: Options for the resource.
571
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
572
- :param pulumi.Input[str] display_name: Management Agent Name
573
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
583
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
584
+ :param pulumi.Input[str] display_name: (Updatable) New displayName of Agent.
585
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
574
586
  :param pulumi.Input[str] managed_agent_id: Unique Management Agent identifier
575
587
  """
576
588
  ...
@@ -706,9 +718,12 @@ class ManagementAgent(pulumi.CustomResource):
706
718
  :param str resource_name: The unique name of the resulting resource.
707
719
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
708
720
  :param pulumi.ResourceOptions opts: Options for the resource.
709
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
710
- :param pulumi.Input[str] display_name: Management Agent Name
711
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
721
+ :param pulumi.Input[str] availability_status: The current availability status of managementAgent
722
+ :param pulumi.Input[str] compartment_id: Compartment owning this DataSource.
723
+ :param pulumi.Input[Sequence[pulumi.Input[Union['ManagementAgentDataSourceListArgs', 'ManagementAgentDataSourceListArgsDict']]]] data_source_lists: list of dataSources associated with the agent
724
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
725
+ :param pulumi.Input[str] display_name: (Updatable) New displayName of Agent.
726
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
712
727
  :param pulumi.Input[str] host: Management Agent host machine name
713
728
  :param pulumi.Input[str] host_id: Host resource ocid
714
729
  :param pulumi.Input[str] install_key_id: agent install key identifier
@@ -767,16 +782,25 @@ class ManagementAgent(pulumi.CustomResource):
767
782
  @property
768
783
  @pulumi.getter(name="availabilityStatus")
769
784
  def availability_status(self) -> pulumi.Output[str]:
785
+ """
786
+ The current availability status of managementAgent
787
+ """
770
788
  return pulumi.get(self, "availability_status")
771
789
 
772
790
  @property
773
791
  @pulumi.getter(name="compartmentId")
774
792
  def compartment_id(self) -> pulumi.Output[str]:
793
+ """
794
+ Compartment owning this DataSource.
795
+ """
775
796
  return pulumi.get(self, "compartment_id")
776
797
 
777
798
  @property
778
799
  @pulumi.getter(name="dataSourceLists")
779
800
  def data_source_lists(self) -> pulumi.Output[Sequence['outputs.ManagementAgentDataSourceList']]:
801
+ """
802
+ list of dataSources associated with the agent
803
+ """
780
804
  return pulumi.get(self, "data_source_lists")
781
805
 
782
806
  @property
@@ -788,7 +812,7 @@ class ManagementAgent(pulumi.CustomResource):
788
812
  @pulumi.getter(name="definedTags")
789
813
  def defined_tags(self) -> pulumi.Output[Mapping[str, str]]:
790
814
  """
791
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
815
+ (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
792
816
  """
793
817
  return pulumi.get(self, "defined_tags")
794
818
 
@@ -801,7 +825,7 @@ class ManagementAgent(pulumi.CustomResource):
801
825
  @pulumi.getter(name="displayName")
802
826
  def display_name(self) -> pulumi.Output[str]:
803
827
  """
804
- Management Agent Name
828
+ (Updatable) New displayName of Agent.
805
829
  """
806
830
  return pulumi.get(self, "display_name")
807
831
 
@@ -809,7 +833,7 @@ class ManagementAgent(pulumi.CustomResource):
809
833
  @pulumi.getter(name="freeformTags")
810
834
  def freeform_tags(self) -> pulumi.Output[Mapping[str, str]]:
811
835
  """
812
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
836
+ (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
813
837
  """
814
838
  return pulumi.get(self, "freeform_tags")
815
839
 
@@ -108,7 +108,15 @@ class ManagementAgentDataSourceList(dict):
108
108
  type: Optional[str] = None,
109
109
  url: Optional[str] = None):
110
110
  """
111
+ :param str allow_metrics: Comma separated metric name list. The complete set of desired scraped metrics. Use this property to limit the set of metrics uploaded if required.
112
+ :param str compartment_id: Compartment owning this DataSource.
113
+ :param int connection_timeout: Number in milliseconds. The timeout for connecting to the Prometheus Exporter's endpoint.
114
+ :param bool is_daemon_set: If the Kubernetes cluster type is Daemon set then this will be set to true.
115
+ :param str key: Identifier for DataSource. This represents the type and name for the data source associated with the Management Agent.
116
+ :param Sequence['ManagementAgentDataSourceListMetricDimensionArgs'] metric_dimensions: The names of other user-supplied properties expressed as fixed values to be used as dimensions for every uploaded datapoint.
111
117
  :param str name: Name of the property
118
+ :param str namespace: The Oracle Cloud Infrastructure monitoring namespace to which scraped metrics should be uploaded.
119
+ :param str proxy_url: The url of the network proxy that provides access to the Prometheus Exporter's endpoint (url required property).
112
120
  :param int read_data_limit: Number in kilobytes. The limit on the data being sent, not to exceed the agent's fixed limit of 400 (KB).
113
121
  :param int read_timeout: Number in milliseconds. The timeout for reading the response from the Prometheus Exporter's endpoint.
114
122
  :param str resource_group: Oracle Cloud Infrastructure monitoring resource group to assign the metric to.
@@ -159,31 +167,49 @@ class ManagementAgentDataSourceList(dict):
159
167
  @property
160
168
  @pulumi.getter(name="allowMetrics")
161
169
  def allow_metrics(self) -> Optional[str]:
170
+ """
171
+ Comma separated metric name list. The complete set of desired scraped metrics. Use this property to limit the set of metrics uploaded if required.
172
+ """
162
173
  return pulumi.get(self, "allow_metrics")
163
174
 
164
175
  @property
165
176
  @pulumi.getter(name="compartmentId")
166
177
  def compartment_id(self) -> Optional[str]:
178
+ """
179
+ Compartment owning this DataSource.
180
+ """
167
181
  return pulumi.get(self, "compartment_id")
168
182
 
169
183
  @property
170
184
  @pulumi.getter(name="connectionTimeout")
171
185
  def connection_timeout(self) -> Optional[int]:
186
+ """
187
+ Number in milliseconds. The timeout for connecting to the Prometheus Exporter's endpoint.
188
+ """
172
189
  return pulumi.get(self, "connection_timeout")
173
190
 
174
191
  @property
175
192
  @pulumi.getter(name="isDaemonSet")
176
193
  def is_daemon_set(self) -> Optional[bool]:
194
+ """
195
+ If the Kubernetes cluster type is Daemon set then this will be set to true.
196
+ """
177
197
  return pulumi.get(self, "is_daemon_set")
178
198
 
179
199
  @property
180
200
  @pulumi.getter
181
201
  def key(self) -> Optional[str]:
202
+ """
203
+ Identifier for DataSource. This represents the type and name for the data source associated with the Management Agent.
204
+ """
182
205
  return pulumi.get(self, "key")
183
206
 
184
207
  @property
185
208
  @pulumi.getter(name="metricDimensions")
186
209
  def metric_dimensions(self) -> Optional[Sequence['outputs.ManagementAgentDataSourceListMetricDimension']]:
210
+ """
211
+ The names of other user-supplied properties expressed as fixed values to be used as dimensions for every uploaded datapoint.
212
+ """
187
213
  return pulumi.get(self, "metric_dimensions")
188
214
 
189
215
  @property
@@ -197,11 +223,17 @@ class ManagementAgentDataSourceList(dict):
197
223
  @property
198
224
  @pulumi.getter
199
225
  def namespace(self) -> Optional[str]:
226
+ """
227
+ The Oracle Cloud Infrastructure monitoring namespace to which scraped metrics should be uploaded.
228
+ """
200
229
  return pulumi.get(self, "namespace")
201
230
 
202
231
  @property
203
232
  @pulumi.getter(name="proxyUrl")
204
233
  def proxy_url(self) -> Optional[str]:
234
+ """
235
+ The url of the network proxy that provides access to the Prometheus Exporter's endpoint (url required property).
236
+ """
205
237
  return pulumi.get(self, "proxy_url")
206
238
 
207
239
  @property
@@ -284,6 +316,7 @@ class ManagementAgentDataSourceListMetricDimension(dict):
284
316
  value: Optional[str] = None):
285
317
  """
286
318
  :param str name: Name of the property
319
+ :param str value: Value of the metric dimension
287
320
  """
288
321
  if name is not None:
289
322
  pulumi.set(__self__, "name", name)
@@ -301,6 +334,9 @@ class ManagementAgentDataSourceListMetricDimension(dict):
301
334
  @property
302
335
  @pulumi.getter
303
336
  def value(self) -> Optional[str]:
337
+ """
338
+ Value of the metric dimension
339
+ """
304
340
  return pulumi.get(self, "value")
305
341
 
306
342
 
@@ -358,6 +394,8 @@ class ManagementAgentDataSourceSummaryList(dict):
358
394
  name: Optional[str] = None,
359
395
  type: Optional[str] = None):
360
396
  """
397
+ :param bool is_daemon_set: If the Kubernetes cluster type is Daemon set then this will be set to true.
398
+ :param str key: Identifier for DataSource. This represents the type and name for the data source associated with the Management Agent.
361
399
  :param str name: Name of the property
362
400
  :param str type: The type of the DataSource.
363
401
  """
@@ -373,11 +411,17 @@ class ManagementAgentDataSourceSummaryList(dict):
373
411
  @property
374
412
  @pulumi.getter(name="isDaemonSet")
375
413
  def is_daemon_set(self) -> Optional[bool]:
414
+ """
415
+ If the Kubernetes cluster type is Daemon set then this will be set to true.
416
+ """
376
417
  return pulumi.get(self, "is_daemon_set")
377
418
 
378
419
  @property
379
420
  @pulumi.getter
380
421
  def key(self) -> Optional[str]:
422
+ """
423
+ Identifier for DataSource. This represents the type and name for the data source associated with the Management Agent.
424
+ """
381
425
  return pulumi.get(self, "key")
382
426
 
383
427
  @property
@@ -37,6 +37,7 @@ __all__ = [
37
37
  'MysqlDbSystemChannelTargetArgs',
38
38
  'MysqlDbSystemChannelTargetFilterArgs',
39
39
  'MysqlDbSystemCurrentPlacementArgs',
40
+ 'MysqlDbSystemCustomerContactArgs',
40
41
  'MysqlDbSystemDataStorageArgs',
41
42
  'MysqlDbSystemDeletionPolicyArgs',
42
43
  'MysqlDbSystemEndpointArgs',
@@ -3888,6 +3889,28 @@ class MysqlDbSystemCurrentPlacementArgs:
3888
3889
  pulumi.set(self, "fault_domain", value)
3889
3890
 
3890
3891
 
3892
+ @pulumi.input_type
3893
+ class MysqlDbSystemCustomerContactArgs:
3894
+ def __init__(__self__, *,
3895
+ email: pulumi.Input[str]):
3896
+ """
3897
+ :param pulumi.Input[str] email: (Updatable) The email address used by Oracle to send notifications regarding the DB System.
3898
+ """
3899
+ pulumi.set(__self__, "email", email)
3900
+
3901
+ @property
3902
+ @pulumi.getter
3903
+ def email(self) -> pulumi.Input[str]:
3904
+ """
3905
+ (Updatable) The email address used by Oracle to send notifications regarding the DB System.
3906
+ """
3907
+ return pulumi.get(self, "email")
3908
+
3909
+ @email.setter
3910
+ def email(self, value: pulumi.Input[str]):
3911
+ pulumi.set(self, "email", value)
3912
+
3913
+
3891
3914
  @pulumi.input_type
3892
3915
  class MysqlDbSystemDataStorageArgs:
3893
3916
  def __init__(__self__, *,
@@ -22,7 +22,7 @@ class GetMysqlDbSystemResult:
22
22
  """
23
23
  A collection of values returned by getMysqlDbSystem.
24
24
  """
25
- def __init__(__self__, admin_password=None, admin_username=None, availability_domain=None, backup_policies=None, channels=None, compartment_id=None, configuration_id=None, crash_recovery=None, current_placements=None, data_storage_size_in_gb=None, data_storages=None, database_management=None, db_system_id=None, defined_tags=None, deletion_policies=None, description=None, display_name=None, endpoints=None, fault_domain=None, freeform_tags=None, heat_wave_clusters=None, hostname_label=None, id=None, ip_address=None, is_heat_wave_cluster_attached=None, is_highly_available=None, lifecycle_details=None, maintenances=None, mysql_version=None, point_in_time_recovery_details=None, port=None, port_x=None, secure_connections=None, shape_name=None, shutdown_type=None, sources=None, state=None, subnet_id=None, time_created=None, time_updated=None):
25
+ def __init__(__self__, admin_password=None, admin_username=None, availability_domain=None, backup_policies=None, channels=None, compartment_id=None, configuration_id=None, crash_recovery=None, current_placements=None, customer_contacts=None, data_storage_size_in_gb=None, data_storages=None, database_management=None, db_system_id=None, defined_tags=None, deletion_policies=None, description=None, display_name=None, endpoints=None, fault_domain=None, freeform_tags=None, heat_wave_clusters=None, hostname_label=None, id=None, ip_address=None, is_heat_wave_cluster_attached=None, is_highly_available=None, lifecycle_details=None, maintenances=None, mysql_version=None, point_in_time_recovery_details=None, port=None, port_x=None, secure_connections=None, shape_name=None, shutdown_type=None, sources=None, state=None, subnet_id=None, time_created=None, time_updated=None):
26
26
  if admin_password and not isinstance(admin_password, str):
27
27
  raise TypeError("Expected argument 'admin_password' to be a str")
28
28
  pulumi.set(__self__, "admin_password", admin_password)
@@ -50,6 +50,9 @@ class GetMysqlDbSystemResult:
50
50
  if current_placements and not isinstance(current_placements, list):
51
51
  raise TypeError("Expected argument 'current_placements' to be a list")
52
52
  pulumi.set(__self__, "current_placements", current_placements)
53
+ if customer_contacts and not isinstance(customer_contacts, list):
54
+ raise TypeError("Expected argument 'customer_contacts' to be a list")
55
+ pulumi.set(__self__, "customer_contacts", customer_contacts)
53
56
  if data_storage_size_in_gb and not isinstance(data_storage_size_in_gb, int):
54
57
  raise TypeError("Expected argument 'data_storage_size_in_gb' to be a int")
55
58
  pulumi.set(__self__, "data_storage_size_in_gb", data_storage_size_in_gb)
@@ -210,11 +213,19 @@ class GetMysqlDbSystemResult:
210
213
  """
211
214
  return pulumi.get(self, "current_placements")
212
215
 
216
+ @property
217
+ @pulumi.getter(name="customerContacts")
218
+ def customer_contacts(self) -> Sequence['outputs.GetMysqlDbSystemCustomerContactResult']:
219
+ """
220
+ The list of customer email addresses that receive information from Oracle about the specified Oracle Cloud Infrastructure DB System resource. Oracle uses these email addresses to send notifications about planned and unplanned software maintenance updates, information about system hardware, and other information needed by administrators. Up to 10 email addresses can be added to the customer contacts for a DB System.
221
+ """
222
+ return pulumi.get(self, "customer_contacts")
223
+
213
224
  @property
214
225
  @pulumi.getter(name="dataStorageSizeInGb")
215
226
  def data_storage_size_in_gb(self) -> int:
216
227
  """
217
- DEPRECATED: User specified size of the data volume. May be less than current allocatedStorageSizeInGBs. Replaced by dataStorage.dataStorageSizeInGBs.
228
+ Initial size of the data volume in GiBs that will be created and attached.
218
229
  """
219
230
  return pulumi.get(self, "data_storage_size_in_gb")
220
231
 
@@ -471,6 +482,7 @@ class AwaitableGetMysqlDbSystemResult(GetMysqlDbSystemResult):
471
482
  configuration_id=self.configuration_id,
472
483
  crash_recovery=self.crash_recovery,
473
484
  current_placements=self.current_placements,
485
+ customer_contacts=self.customer_contacts,
474
486
  data_storage_size_in_gb=self.data_storage_size_in_gb,
475
487
  data_storages=self.data_storages,
476
488
  database_management=self.database_management,
@@ -538,6 +550,7 @@ def get_mysql_db_system(db_system_id: Optional[str] = None,
538
550
  configuration_id=pulumi.get(__ret__, 'configuration_id'),
539
551
  crash_recovery=pulumi.get(__ret__, 'crash_recovery'),
540
552
  current_placements=pulumi.get(__ret__, 'current_placements'),
553
+ customer_contacts=pulumi.get(__ret__, 'customer_contacts'),
541
554
  data_storage_size_in_gb=pulumi.get(__ret__, 'data_storage_size_in_gb'),
542
555
  data_storages=pulumi.get(__ret__, 'data_storages'),
543
556
  database_management=pulumi.get(__ret__, 'database_management'),