pulumi-oci 2.3.0a1721242122__py3-none-any.whl → 2.4.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 (89) hide show
  1. pulumi_oci/__init__.py +19 -11
  2. pulumi_oci/apmsynthetics/_inputs.py +457 -1
  3. pulumi_oci/apmsynthetics/config.py +172 -7
  4. pulumi_oci/apmsynthetics/get_monitor.py +42 -3
  5. pulumi_oci/apmsynthetics/get_monitors.py +2 -2
  6. pulumi_oci/apmsynthetics/outputs.py +1129 -9
  7. pulumi_oci/core/_inputs.py +8 -8
  8. pulumi_oci/core/outputs.py +24 -8
  9. pulumi_oci/database/_inputs.py +16 -0
  10. pulumi_oci/database/autonomous_database.py +83 -9
  11. pulumi_oci/database/cloud_autonomous_vm_cluster.py +7 -25
  12. pulumi_oci/database/cloud_exadata_infrastructure.py +66 -17
  13. pulumi_oci/database/cloud_vm_cluster.py +49 -0
  14. pulumi_oci/database/database.py +0 -96
  15. pulumi_oci/database/get_autonomous_database.py +25 -1
  16. pulumi_oci/database/get_cloud_exadata_infrastructure.py +14 -1
  17. pulumi_oci/database/get_cloud_vm_cluster.py +14 -1
  18. pulumi_oci/database/get_key_store.py +11 -1
  19. pulumi_oci/database/key_store.py +34 -0
  20. pulumi_oci/database/outputs.py +93 -0
  21. pulumi_oci/datasafe/__init__.py +1 -0
  22. pulumi_oci/datasafe/_inputs.py +130 -0
  23. pulumi_oci/datasafe/discovery_mod.py +67 -38
  24. pulumi_oci/datasafe/get_audit_events.py +2 -2
  25. pulumi_oci/datasafe/get_discovery_job.py +15 -1
  26. pulumi_oci/datasafe/get_report.py +1 -1
  27. pulumi_oci/datasafe/get_report_definition.py +1 -1
  28. pulumi_oci/datasafe/get_reports.py +43 -1
  29. pulumi_oci/datasafe/get_security_assessment.py +14 -1
  30. pulumi_oci/datasafe/get_security_assessment_finding.py +16 -3
  31. pulumi_oci/datasafe/get_security_assessment_findings.py +21 -3
  32. pulumi_oci/datasafe/get_sensitive_data_model.py +15 -1
  33. pulumi_oci/datasafe/get_sensitive_data_model_sensitive_types.py +153 -0
  34. pulumi_oci/datasafe/get_user_assessment.py +14 -1
  35. pulumi_oci/datasafe/outputs.py +530 -6
  36. pulumi_oci/datasafe/report.py +4 -4
  37. pulumi_oci/datasafe/report_definition.py +4 -4
  38. pulumi_oci/datasafe/security_assessment.py +49 -0
  39. pulumi_oci/datasafe/sensitive_data_model.py +60 -3
  40. pulumi_oci/datasafe/unset_security_assessment_baseline.py +69 -16
  41. pulumi_oci/datasafe/unset_user_assessment_baseline.py +58 -5
  42. pulumi_oci/datasafe/user_assessment.py +49 -0
  43. pulumi_oci/{emwarehouse → globallydistributeddatabase}/__init__.py +6 -6
  44. pulumi_oci/globallydistributeddatabase/_inputs.py +1003 -0
  45. pulumi_oci/globallydistributeddatabase/get_private_endpoint.py +300 -0
  46. pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +176 -0
  47. pulumi_oci/globallydistributeddatabase/get_sharded_database.py +610 -0
  48. pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +176 -0
  49. pulumi_oci/globallydistributeddatabase/outputs.py +2058 -0
  50. pulumi_oci/{emwarehouse/em_warehouse.py → globallydistributeddatabase/private_endpoint.py} +288 -267
  51. pulumi_oci/globallydistributeddatabase/sharded_database.py +1816 -0
  52. pulumi_oci/integration/_inputs.py +0 -2
  53. pulumi_oci/integration/get_integration_instance.py +0 -1
  54. pulumi_oci/integration/integration_instance.py +0 -27
  55. pulumi_oci/integration/outputs.py +4 -12
  56. pulumi_oci/opsi/_inputs.py +8 -8
  57. pulumi_oci/opsi/database_insight.py +71 -15
  58. pulumi_oci/opsi/get_database_insight.py +29 -3
  59. pulumi_oci/opsi/get_database_insights.py +1 -1
  60. pulumi_oci/opsi/get_enterprise_manager_bridges.py +2 -2
  61. pulumi_oci/opsi/get_host_insight.py +1 -4
  62. pulumi_oci/opsi/get_host_insights.py +3 -3
  63. pulumi_oci/opsi/get_news_report.py +1 -1
  64. pulumi_oci/opsi/get_news_reports.py +3 -3
  65. pulumi_oci/opsi/get_operations_insights_private_endpoint.py +1 -1
  66. pulumi_oci/opsi/get_operations_insights_private_endpoints.py +1 -1
  67. pulumi_oci/opsi/get_operations_insights_warehouse.py +7 -7
  68. pulumi_oci/opsi/get_operations_insights_warehouse_user.py +2 -2
  69. pulumi_oci/opsi/get_operations_insights_warehouses.py +5 -5
  70. pulumi_oci/opsi/host_insight.py +6 -14
  71. pulumi_oci/opsi/news_report.py +2 -2
  72. pulumi_oci/opsi/operations_insights_private_endpoint.py +9 -9
  73. pulumi_oci/opsi/operations_insights_warehouse.py +17 -17
  74. pulumi_oci/opsi/operations_insights_warehouse_download_warehouse_wallet.py +14 -14
  75. pulumi_oci/opsi/operations_insights_warehouse_rotate_warehouse_wallet.py +7 -7
  76. pulumi_oci/opsi/operations_insights_warehouse_user.py +14 -14
  77. pulumi_oci/opsi/outputs.py +46 -24
  78. pulumi_oci/pulumi-plugin.json +1 -1
  79. {pulumi_oci-2.3.0a1721242122.dist-info → pulumi_oci-2.4.0.dist-info}/METADATA +1 -1
  80. {pulumi_oci-2.3.0a1721242122.dist-info → pulumi_oci-2.4.0.dist-info}/RECORD +82 -81
  81. {pulumi_oci-2.3.0a1721242122.dist-info → pulumi_oci-2.4.0.dist-info}/WHEEL +1 -1
  82. pulumi_oci/emwarehouse/_inputs.py +0 -94
  83. pulumi_oci/emwarehouse/get_em_warehouse.py +0 -300
  84. pulumi_oci/emwarehouse/get_em_warehouses.py +0 -203
  85. pulumi_oci/emwarehouse/get_etl_run.py +0 -159
  86. pulumi_oci/emwarehouse/get_etl_runs.py +0 -173
  87. pulumi_oci/emwarehouse/get_resource_usage.py +0 -171
  88. pulumi_oci/emwarehouse/outputs.py +0 -616
  89. {pulumi_oci-2.3.0a1721242122.dist-info → pulumi_oci-2.4.0.dist-info}/top_level.txt +0 -0
@@ -16,7 +16,12 @@ __all__ = [
16
16
  'ConfigConfigurationClientCertificateDetails',
17
17
  'ConfigConfigurationClientCertificateDetailsClientCertificate',
18
18
  'ConfigConfigurationClientCertificateDetailsPrivateKey',
19
+ 'ConfigConfigurationDatabaseAuthenticationDetails',
20
+ 'ConfigConfigurationDatabaseAuthenticationDetailsPassword',
21
+ 'ConfigConfigurationDatabaseWalletDetails',
19
22
  'ConfigConfigurationDnsConfiguration',
23
+ 'ConfigConfigurationFtpBasicAuthenticationDetails',
24
+ 'ConfigConfigurationFtpBasicAuthenticationDetailsPassword',
20
25
  'ConfigConfigurationNetworkConfiguration',
21
26
  'ConfigConfigurationReqAuthenticationDetails',
22
27
  'ConfigConfigurationReqAuthenticationDetailsAuthHeader',
@@ -49,7 +54,12 @@ __all__ = [
49
54
  'GetMonitorConfigurationClientCertificateDetailResult',
50
55
  'GetMonitorConfigurationClientCertificateDetailClientCertificateResult',
51
56
  'GetMonitorConfigurationClientCertificateDetailPrivateKeyResult',
57
+ 'GetMonitorConfigurationDatabaseAuthenticationDetailResult',
58
+ 'GetMonitorConfigurationDatabaseAuthenticationDetailPasswordResult',
59
+ 'GetMonitorConfigurationDatabaseWalletDetailResult',
52
60
  'GetMonitorConfigurationDnsConfigurationResult',
61
+ 'GetMonitorConfigurationFtpBasicAuthenticationDetailResult',
62
+ 'GetMonitorConfigurationFtpBasicAuthenticationDetailPasswordResult',
53
63
  'GetMonitorConfigurationNetworkConfigurationResult',
54
64
  'GetMonitorConfigurationReqAuthenticationDetailResult',
55
65
  'GetMonitorConfigurationReqAuthenticationDetailAuthHeaderResult',
@@ -68,7 +78,12 @@ __all__ = [
68
78
  'GetMonitorsMonitorCollectionItemConfigurationClientCertificateDetailResult',
69
79
  'GetMonitorsMonitorCollectionItemConfigurationClientCertificateDetailClientCertificateResult',
70
80
  'GetMonitorsMonitorCollectionItemConfigurationClientCertificateDetailPrivateKeyResult',
81
+ 'GetMonitorsMonitorCollectionItemConfigurationDatabaseAuthenticationDetailResult',
82
+ 'GetMonitorsMonitorCollectionItemConfigurationDatabaseAuthenticationDetailPasswordResult',
83
+ 'GetMonitorsMonitorCollectionItemConfigurationDatabaseWalletDetailResult',
71
84
  'GetMonitorsMonitorCollectionItemConfigurationDnsConfigurationResult',
85
+ 'GetMonitorsMonitorCollectionItemConfigurationFtpBasicAuthenticationDetailResult',
86
+ 'GetMonitorsMonitorCollectionItemConfigurationFtpBasicAuthenticationDetailPasswordResult',
72
87
  'GetMonitorsMonitorCollectionItemConfigurationNetworkConfigurationResult',
73
88
  'GetMonitorsMonitorCollectionItemConfigurationReqAuthenticationDetailResult',
74
89
  'GetMonitorsMonitorCollectionItemConfigurationReqAuthenticationDetailAuthHeaderResult',
@@ -172,8 +187,30 @@ class ConfigConfiguration(dict):
172
187
  suggest = "client_certificate_details"
173
188
  elif key == "configType":
174
189
  suggest = "config_type"
190
+ elif key == "connectionString":
191
+ suggest = "connection_string"
192
+ elif key == "databaseAuthenticationDetails":
193
+ suggest = "database_authentication_details"
194
+ elif key == "databaseConnectionType":
195
+ suggest = "database_connection_type"
196
+ elif key == "databaseRole":
197
+ suggest = "database_role"
198
+ elif key == "databaseType":
199
+ suggest = "database_type"
200
+ elif key == "databaseWalletDetails":
201
+ suggest = "database_wallet_details"
175
202
  elif key == "dnsConfiguration":
176
203
  suggest = "dns_configuration"
204
+ elif key == "downloadSizeLimitInBytes":
205
+ suggest = "download_size_limit_in_bytes"
206
+ elif key == "ftpBasicAuthenticationDetails":
207
+ suggest = "ftp_basic_authentication_details"
208
+ elif key == "ftpProtocol":
209
+ suggest = "ftp_protocol"
210
+ elif key == "ftpRequestType":
211
+ suggest = "ftp_request_type"
212
+ elif key == "isActiveMode":
213
+ suggest = "is_active_mode"
177
214
  elif key == "isCertificateValidationEnabled":
178
215
  suggest = "is_certificate_validation_enabled"
179
216
  elif key == "isDefaultSnapshotEnabled":
@@ -202,6 +239,8 @@ class ConfigConfiguration(dict):
202
239
  suggest = "request_post_body"
203
240
  elif key == "requestQueryParams":
204
241
  suggest = "request_query_params"
242
+ elif key == "uploadFileSizeInBytes":
243
+ suggest = "upload_file_size_in_bytes"
205
244
  elif key == "verifyResponseCodes":
206
245
  suggest = "verify_response_codes"
207
246
  elif key == "verifyResponseContent":
@@ -223,7 +262,18 @@ class ConfigConfiguration(dict):
223
262
  def __init__(__self__, *,
224
263
  client_certificate_details: Optional['outputs.ConfigConfigurationClientCertificateDetails'] = None,
225
264
  config_type: Optional[str] = None,
265
+ connection_string: Optional[str] = None,
266
+ database_authentication_details: Optional['outputs.ConfigConfigurationDatabaseAuthenticationDetails'] = None,
267
+ database_connection_type: Optional[str] = None,
268
+ database_role: Optional[str] = None,
269
+ database_type: Optional[str] = None,
270
+ database_wallet_details: Optional['outputs.ConfigConfigurationDatabaseWalletDetails'] = None,
226
271
  dns_configuration: Optional['outputs.ConfigConfigurationDnsConfiguration'] = None,
272
+ download_size_limit_in_bytes: Optional[int] = None,
273
+ ftp_basic_authentication_details: Optional['outputs.ConfigConfigurationFtpBasicAuthenticationDetails'] = None,
274
+ ftp_protocol: Optional[str] = None,
275
+ ftp_request_type: Optional[str] = None,
276
+ is_active_mode: Optional[bool] = None,
227
277
  is_certificate_validation_enabled: Optional[bool] = None,
228
278
  is_default_snapshot_enabled: Optional[bool] = None,
229
279
  is_failure_retried: Optional[bool] = None,
@@ -232,6 +282,7 @@ class ConfigConfiguration(dict):
232
282
  name_server: Optional[str] = None,
233
283
  network_configuration: Optional['outputs.ConfigConfigurationNetworkConfiguration'] = None,
234
284
  protocol: Optional[str] = None,
285
+ query: Optional[str] = None,
235
286
  record_type: Optional[str] = None,
236
287
  req_authentication_details: Optional['outputs.ConfigConfigurationReqAuthenticationDetails'] = None,
237
288
  req_authentication_scheme: Optional[str] = None,
@@ -239,13 +290,25 @@ class ConfigConfiguration(dict):
239
290
  request_method: Optional[str] = None,
240
291
  request_post_body: Optional[str] = None,
241
292
  request_query_params: Optional[Sequence['outputs.ConfigConfigurationRequestQueryParam']] = None,
293
+ upload_file_size_in_bytes: Optional[int] = None,
242
294
  verify_response_codes: Optional[Sequence[str]] = None,
243
295
  verify_response_content: Optional[str] = None,
244
296
  verify_texts: Optional[Sequence['outputs.ConfigConfigurationVerifyText']] = None):
245
297
  """
246
298
  :param 'ConfigConfigurationClientCertificateDetailsArgs' client_certificate_details: (Updatable) Details for client certificate.
247
299
  :param str config_type: (Updatable) Type of configuration.
300
+ :param str connection_string: (Updatable) Database connection string.
301
+ :param 'ConfigConfigurationDatabaseAuthenticationDetailsArgs' database_authentication_details: (Updatable) Details for basic authentication.
302
+ :param str database_connection_type: (Updatable) Database connection type. Only CUSTOM_JDBC is supported for MYSQL database type.
303
+ :param str database_role: (Updatable) Database role.
304
+ :param str database_type: (Updatable) Database type.
305
+ :param 'ConfigConfigurationDatabaseWalletDetailsArgs' database_wallet_details: (Updatable) Details for database wallet.
248
306
  :param 'ConfigConfigurationDnsConfigurationArgs' dns_configuration: (Updatable) Information about the DNS settings.
307
+ :param int download_size_limit_in_bytes: (Updatable) Download size limit in Bytes, at which to stop the transfer. Maximum download size limit is 5 MiB.
308
+ :param 'ConfigConfigurationFtpBasicAuthenticationDetailsArgs' ftp_basic_authentication_details: (Updatable) Details for basic authentication.
309
+ :param str ftp_protocol: (Updatable) FTP protocol type.
310
+ :param str ftp_request_type: (Updatable) FTP monitor request type.
311
+ :param bool is_active_mode: (Updatable) If enabled, Active mode will be used for the FTP connection.
249
312
  :param bool is_certificate_validation_enabled: (Updatable) If certificate validation is enabled, then the call will fail in case of certification errors.
250
313
  :param bool is_default_snapshot_enabled: (Updatable) If disabled, auto snapshots are not collected.
251
314
  :param bool is_failure_retried: (Updatable) If isFailureRetried is enabled, then a failed call will be retried.
@@ -254,6 +317,7 @@ class ConfigConfiguration(dict):
254
317
  :param str name_server: (Updatable) Name of the server that will be used to perform DNS lookup.
255
318
  :param 'ConfigConfigurationNetworkConfigurationArgs' network_configuration: (Updatable) Details of the network configuration. For NETWORK monitor type, NetworkConfiguration is mandatory.
256
319
  :param str protocol: (Updatable) Type of protocol.
320
+ :param str query: (Updatable) SQL query to be executed.
257
321
  :param str record_type: (Updatable) DNS record type.
258
322
  :param 'ConfigConfigurationReqAuthenticationDetailsArgs' req_authentication_details: (Updatable) Details for request HTTP authentication.
259
323
  :param str req_authentication_scheme: (Updatable) Request HTTP authentication scheme.
@@ -261,6 +325,7 @@ class ConfigConfiguration(dict):
261
325
  :param str request_method: (Updatable) Request HTTP method.
262
326
  :param str request_post_body: (Updatable) Request post body content.
263
327
  :param Sequence['ConfigConfigurationRequestQueryParamArgs'] request_query_params: (Updatable) List of request query params. Example: `[{"paramName": "sortOrder", "paramValue": "asc"}]`
328
+ :param int upload_file_size_in_bytes: (Updatable) File upload size in Bytes, at which to stop the transfer. Maximum upload size is 5 MiB.
264
329
  :param Sequence[str] verify_response_codes: (Updatable) Expected HTTP response codes. For status code range, set values such as 2xx, 3xx.
265
330
  :param str verify_response_content: (Updatable) Verify response content against regular expression based string. If response content does not match the verifyResponseContent value, then it will be considered a failure.
266
331
  :param Sequence['ConfigConfigurationVerifyTextArgs'] verify_texts: (Updatable) Verifies all the search strings present in the response. If any search string is not present in the response, then it will be considered as a failure.
@@ -269,8 +334,30 @@ class ConfigConfiguration(dict):
269
334
  pulumi.set(__self__, "client_certificate_details", client_certificate_details)
270
335
  if config_type is not None:
271
336
  pulumi.set(__self__, "config_type", config_type)
337
+ if connection_string is not None:
338
+ pulumi.set(__self__, "connection_string", connection_string)
339
+ if database_authentication_details is not None:
340
+ pulumi.set(__self__, "database_authentication_details", database_authentication_details)
341
+ if database_connection_type is not None:
342
+ pulumi.set(__self__, "database_connection_type", database_connection_type)
343
+ if database_role is not None:
344
+ pulumi.set(__self__, "database_role", database_role)
345
+ if database_type is not None:
346
+ pulumi.set(__self__, "database_type", database_type)
347
+ if database_wallet_details is not None:
348
+ pulumi.set(__self__, "database_wallet_details", database_wallet_details)
272
349
  if dns_configuration is not None:
273
350
  pulumi.set(__self__, "dns_configuration", dns_configuration)
351
+ if download_size_limit_in_bytes is not None:
352
+ pulumi.set(__self__, "download_size_limit_in_bytes", download_size_limit_in_bytes)
353
+ if ftp_basic_authentication_details is not None:
354
+ pulumi.set(__self__, "ftp_basic_authentication_details", ftp_basic_authentication_details)
355
+ if ftp_protocol is not None:
356
+ pulumi.set(__self__, "ftp_protocol", ftp_protocol)
357
+ if ftp_request_type is not None:
358
+ pulumi.set(__self__, "ftp_request_type", ftp_request_type)
359
+ if is_active_mode is not None:
360
+ pulumi.set(__self__, "is_active_mode", is_active_mode)
274
361
  if is_certificate_validation_enabled is not None:
275
362
  pulumi.set(__self__, "is_certificate_validation_enabled", is_certificate_validation_enabled)
276
363
  if is_default_snapshot_enabled is not None:
@@ -287,6 +374,8 @@ class ConfigConfiguration(dict):
287
374
  pulumi.set(__self__, "network_configuration", network_configuration)
288
375
  if protocol is not None:
289
376
  pulumi.set(__self__, "protocol", protocol)
377
+ if query is not None:
378
+ pulumi.set(__self__, "query", query)
290
379
  if record_type is not None:
291
380
  pulumi.set(__self__, "record_type", record_type)
292
381
  if req_authentication_details is not None:
@@ -301,6 +390,8 @@ class ConfigConfiguration(dict):
301
390
  pulumi.set(__self__, "request_post_body", request_post_body)
302
391
  if request_query_params is not None:
303
392
  pulumi.set(__self__, "request_query_params", request_query_params)
393
+ if upload_file_size_in_bytes is not None:
394
+ pulumi.set(__self__, "upload_file_size_in_bytes", upload_file_size_in_bytes)
304
395
  if verify_response_codes is not None:
305
396
  pulumi.set(__self__, "verify_response_codes", verify_response_codes)
306
397
  if verify_response_content is not None:
@@ -324,6 +415,54 @@ class ConfigConfiguration(dict):
324
415
  """
325
416
  return pulumi.get(self, "config_type")
326
417
 
418
+ @property
419
+ @pulumi.getter(name="connectionString")
420
+ def connection_string(self) -> Optional[str]:
421
+ """
422
+ (Updatable) Database connection string.
423
+ """
424
+ return pulumi.get(self, "connection_string")
425
+
426
+ @property
427
+ @pulumi.getter(name="databaseAuthenticationDetails")
428
+ def database_authentication_details(self) -> Optional['outputs.ConfigConfigurationDatabaseAuthenticationDetails']:
429
+ """
430
+ (Updatable) Details for basic authentication.
431
+ """
432
+ return pulumi.get(self, "database_authentication_details")
433
+
434
+ @property
435
+ @pulumi.getter(name="databaseConnectionType")
436
+ def database_connection_type(self) -> Optional[str]:
437
+ """
438
+ (Updatable) Database connection type. Only CUSTOM_JDBC is supported for MYSQL database type.
439
+ """
440
+ return pulumi.get(self, "database_connection_type")
441
+
442
+ @property
443
+ @pulumi.getter(name="databaseRole")
444
+ def database_role(self) -> Optional[str]:
445
+ """
446
+ (Updatable) Database role.
447
+ """
448
+ return pulumi.get(self, "database_role")
449
+
450
+ @property
451
+ @pulumi.getter(name="databaseType")
452
+ def database_type(self) -> Optional[str]:
453
+ """
454
+ (Updatable) Database type.
455
+ """
456
+ return pulumi.get(self, "database_type")
457
+
458
+ @property
459
+ @pulumi.getter(name="databaseWalletDetails")
460
+ def database_wallet_details(self) -> Optional['outputs.ConfigConfigurationDatabaseWalletDetails']:
461
+ """
462
+ (Updatable) Details for database wallet.
463
+ """
464
+ return pulumi.get(self, "database_wallet_details")
465
+
327
466
  @property
328
467
  @pulumi.getter(name="dnsConfiguration")
329
468
  def dns_configuration(self) -> Optional['outputs.ConfigConfigurationDnsConfiguration']:
@@ -332,6 +471,46 @@ class ConfigConfiguration(dict):
332
471
  """
333
472
  return pulumi.get(self, "dns_configuration")
334
473
 
474
+ @property
475
+ @pulumi.getter(name="downloadSizeLimitInBytes")
476
+ def download_size_limit_in_bytes(self) -> Optional[int]:
477
+ """
478
+ (Updatable) Download size limit in Bytes, at which to stop the transfer. Maximum download size limit is 5 MiB.
479
+ """
480
+ return pulumi.get(self, "download_size_limit_in_bytes")
481
+
482
+ @property
483
+ @pulumi.getter(name="ftpBasicAuthenticationDetails")
484
+ def ftp_basic_authentication_details(self) -> Optional['outputs.ConfigConfigurationFtpBasicAuthenticationDetails']:
485
+ """
486
+ (Updatable) Details for basic authentication.
487
+ """
488
+ return pulumi.get(self, "ftp_basic_authentication_details")
489
+
490
+ @property
491
+ @pulumi.getter(name="ftpProtocol")
492
+ def ftp_protocol(self) -> Optional[str]:
493
+ """
494
+ (Updatable) FTP protocol type.
495
+ """
496
+ return pulumi.get(self, "ftp_protocol")
497
+
498
+ @property
499
+ @pulumi.getter(name="ftpRequestType")
500
+ def ftp_request_type(self) -> Optional[str]:
501
+ """
502
+ (Updatable) FTP monitor request type.
503
+ """
504
+ return pulumi.get(self, "ftp_request_type")
505
+
506
+ @property
507
+ @pulumi.getter(name="isActiveMode")
508
+ def is_active_mode(self) -> Optional[bool]:
509
+ """
510
+ (Updatable) If enabled, Active mode will be used for the FTP connection.
511
+ """
512
+ return pulumi.get(self, "is_active_mode")
513
+
335
514
  @property
336
515
  @pulumi.getter(name="isCertificateValidationEnabled")
337
516
  def is_certificate_validation_enabled(self) -> Optional[bool]:
@@ -396,6 +575,14 @@ class ConfigConfiguration(dict):
396
575
  """
397
576
  return pulumi.get(self, "protocol")
398
577
 
578
+ @property
579
+ @pulumi.getter
580
+ def query(self) -> Optional[str]:
581
+ """
582
+ (Updatable) SQL query to be executed.
583
+ """
584
+ return pulumi.get(self, "query")
585
+
399
586
  @property
400
587
  @pulumi.getter(name="recordType")
401
588
  def record_type(self) -> Optional[str]:
@@ -452,6 +639,14 @@ class ConfigConfiguration(dict):
452
639
  """
453
640
  return pulumi.get(self, "request_query_params")
454
641
 
642
+ @property
643
+ @pulumi.getter(name="uploadFileSizeInBytes")
644
+ def upload_file_size_in_bytes(self) -> Optional[int]:
645
+ """
646
+ (Updatable) File upload size in Bytes, at which to stop the transfer. Maximum upload size is 5 MiB.
647
+ """
648
+ return pulumi.get(self, "upload_file_size_in_bytes")
649
+
455
650
  @property
456
651
  @pulumi.getter(name="verifyResponseCodes")
457
652
  def verify_response_codes(self) -> Optional[Sequence[str]]:
@@ -623,6 +818,149 @@ class ConfigConfigurationClientCertificateDetailsPrivateKey(dict):
623
818
  return pulumi.get(self, "file_name")
624
819
 
625
820
 
821
+ @pulumi.output_type
822
+ class ConfigConfigurationDatabaseAuthenticationDetails(dict):
823
+ def __init__(__self__, *,
824
+ password: Optional['outputs.ConfigConfigurationDatabaseAuthenticationDetailsPassword'] = None,
825
+ username: Optional[str] = None):
826
+ """
827
+ :param 'ConfigConfigurationDatabaseAuthenticationDetailsPasswordArgs' password: (Updatable) Password.
828
+ :param str username: (Updatable) Username for authentication.
829
+ """
830
+ if password is not None:
831
+ pulumi.set(__self__, "password", password)
832
+ if username is not None:
833
+ pulumi.set(__self__, "username", username)
834
+
835
+ @property
836
+ @pulumi.getter
837
+ def password(self) -> Optional['outputs.ConfigConfigurationDatabaseAuthenticationDetailsPassword']:
838
+ """
839
+ (Updatable) Password.
840
+ """
841
+ return pulumi.get(self, "password")
842
+
843
+ @property
844
+ @pulumi.getter
845
+ def username(self) -> Optional[str]:
846
+ """
847
+ (Updatable) Username for authentication.
848
+ """
849
+ return pulumi.get(self, "username")
850
+
851
+
852
+ @pulumi.output_type
853
+ class ConfigConfigurationDatabaseAuthenticationDetailsPassword(dict):
854
+ @staticmethod
855
+ def __key_warning(key: str):
856
+ suggest = None
857
+ if key == "passwordType":
858
+ suggest = "password_type"
859
+ elif key == "vaultSecretId":
860
+ suggest = "vault_secret_id"
861
+
862
+ if suggest:
863
+ pulumi.log.warn(f"Key '{key}' not found in ConfigConfigurationDatabaseAuthenticationDetailsPassword. Access the value via the '{suggest}' property getter instead.")
864
+
865
+ def __getitem__(self, key: str) -> Any:
866
+ ConfigConfigurationDatabaseAuthenticationDetailsPassword.__key_warning(key)
867
+ return super().__getitem__(key)
868
+
869
+ def get(self, key: str, default = None) -> Any:
870
+ ConfigConfigurationDatabaseAuthenticationDetailsPassword.__key_warning(key)
871
+ return super().get(key, default)
872
+
873
+ def __init__(__self__, *,
874
+ password: Optional[str] = None,
875
+ password_type: Optional[str] = None,
876
+ vault_secret_id: Optional[str] = None):
877
+ """
878
+ :param str password: (Updatable) Password.
879
+ :param str password_type: (Updatable) Type of method to pass password.
880
+ :param str vault_secret_id: (Updatable) Vault secret OCID.
881
+ """
882
+ if password is not None:
883
+ pulumi.set(__self__, "password", password)
884
+ if password_type is not None:
885
+ pulumi.set(__self__, "password_type", password_type)
886
+ if vault_secret_id is not None:
887
+ pulumi.set(__self__, "vault_secret_id", vault_secret_id)
888
+
889
+ @property
890
+ @pulumi.getter
891
+ def password(self) -> Optional[str]:
892
+ """
893
+ (Updatable) Password.
894
+ """
895
+ return pulumi.get(self, "password")
896
+
897
+ @property
898
+ @pulumi.getter(name="passwordType")
899
+ def password_type(self) -> Optional[str]:
900
+ """
901
+ (Updatable) Type of method to pass password.
902
+ """
903
+ return pulumi.get(self, "password_type")
904
+
905
+ @property
906
+ @pulumi.getter(name="vaultSecretId")
907
+ def vault_secret_id(self) -> Optional[str]:
908
+ """
909
+ (Updatable) Vault secret OCID.
910
+ """
911
+ return pulumi.get(self, "vault_secret_id")
912
+
913
+
914
+ @pulumi.output_type
915
+ class ConfigConfigurationDatabaseWalletDetails(dict):
916
+ @staticmethod
917
+ def __key_warning(key: str):
918
+ suggest = None
919
+ if key == "databaseWallet":
920
+ suggest = "database_wallet"
921
+ elif key == "serviceName":
922
+ suggest = "service_name"
923
+
924
+ if suggest:
925
+ pulumi.log.warn(f"Key '{key}' not found in ConfigConfigurationDatabaseWalletDetails. Access the value via the '{suggest}' property getter instead.")
926
+
927
+ def __getitem__(self, key: str) -> Any:
928
+ ConfigConfigurationDatabaseWalletDetails.__key_warning(key)
929
+ return super().__getitem__(key)
930
+
931
+ def get(self, key: str, default = None) -> Any:
932
+ ConfigConfigurationDatabaseWalletDetails.__key_warning(key)
933
+ return super().get(key, default)
934
+
935
+ def __init__(__self__, *,
936
+ database_wallet: Optional[str] = None,
937
+ service_name: Optional[str] = None):
938
+ """
939
+ :param str database_wallet: (Updatable) The database wallet configuration zip file.
940
+ :param str service_name: (Updatable) Service name of the database.
941
+ """
942
+ if database_wallet is not None:
943
+ pulumi.set(__self__, "database_wallet", database_wallet)
944
+ if service_name is not None:
945
+ pulumi.set(__self__, "service_name", service_name)
946
+
947
+ @property
948
+ @pulumi.getter(name="databaseWallet")
949
+ def database_wallet(self) -> Optional[str]:
950
+ """
951
+ (Updatable) The database wallet configuration zip file.
952
+ """
953
+ return pulumi.get(self, "database_wallet")
954
+
955
+ @property
956
+ @pulumi.getter(name="serviceName")
957
+ def service_name(self) -> Optional[str]:
958
+ """
959
+ (Updatable) Service name of the database.
960
+ """
961
+ return pulumi.get(self, "service_name")
962
+
963
+
626
964
  @pulumi.output_type
627
965
  class ConfigConfigurationDnsConfiguration(dict):
628
966
  @staticmethod
@@ -673,6 +1011,99 @@ class ConfigConfigurationDnsConfiguration(dict):
673
1011
  return pulumi.get(self, "override_dns_ip")
674
1012
 
675
1013
 
1014
+ @pulumi.output_type
1015
+ class ConfigConfigurationFtpBasicAuthenticationDetails(dict):
1016
+ def __init__(__self__, *,
1017
+ password: Optional['outputs.ConfigConfigurationFtpBasicAuthenticationDetailsPassword'] = None,
1018
+ username: Optional[str] = None):
1019
+ """
1020
+ :param 'ConfigConfigurationFtpBasicAuthenticationDetailsPasswordArgs' password: (Updatable) Password.
1021
+ :param str username: (Updatable) Username for authentication.
1022
+ """
1023
+ if password is not None:
1024
+ pulumi.set(__self__, "password", password)
1025
+ if username is not None:
1026
+ pulumi.set(__self__, "username", username)
1027
+
1028
+ @property
1029
+ @pulumi.getter
1030
+ def password(self) -> Optional['outputs.ConfigConfigurationFtpBasicAuthenticationDetailsPassword']:
1031
+ """
1032
+ (Updatable) Password.
1033
+ """
1034
+ return pulumi.get(self, "password")
1035
+
1036
+ @property
1037
+ @pulumi.getter
1038
+ def username(self) -> Optional[str]:
1039
+ """
1040
+ (Updatable) Username for authentication.
1041
+ """
1042
+ return pulumi.get(self, "username")
1043
+
1044
+
1045
+ @pulumi.output_type
1046
+ class ConfigConfigurationFtpBasicAuthenticationDetailsPassword(dict):
1047
+ @staticmethod
1048
+ def __key_warning(key: str):
1049
+ suggest = None
1050
+ if key == "passwordType":
1051
+ suggest = "password_type"
1052
+ elif key == "vaultSecretId":
1053
+ suggest = "vault_secret_id"
1054
+
1055
+ if suggest:
1056
+ pulumi.log.warn(f"Key '{key}' not found in ConfigConfigurationFtpBasicAuthenticationDetailsPassword. Access the value via the '{suggest}' property getter instead.")
1057
+
1058
+ def __getitem__(self, key: str) -> Any:
1059
+ ConfigConfigurationFtpBasicAuthenticationDetailsPassword.__key_warning(key)
1060
+ return super().__getitem__(key)
1061
+
1062
+ def get(self, key: str, default = None) -> Any:
1063
+ ConfigConfigurationFtpBasicAuthenticationDetailsPassword.__key_warning(key)
1064
+ return super().get(key, default)
1065
+
1066
+ def __init__(__self__, *,
1067
+ password: Optional[str] = None,
1068
+ password_type: Optional[str] = None,
1069
+ vault_secret_id: Optional[str] = None):
1070
+ """
1071
+ :param str password: (Updatable) Password.
1072
+ :param str password_type: (Updatable) Type of method to pass password.
1073
+ :param str vault_secret_id: (Updatable) Vault secret OCID.
1074
+ """
1075
+ if password is not None:
1076
+ pulumi.set(__self__, "password", password)
1077
+ if password_type is not None:
1078
+ pulumi.set(__self__, "password_type", password_type)
1079
+ if vault_secret_id is not None:
1080
+ pulumi.set(__self__, "vault_secret_id", vault_secret_id)
1081
+
1082
+ @property
1083
+ @pulumi.getter
1084
+ def password(self) -> Optional[str]:
1085
+ """
1086
+ (Updatable) Password.
1087
+ """
1088
+ return pulumi.get(self, "password")
1089
+
1090
+ @property
1091
+ @pulumi.getter(name="passwordType")
1092
+ def password_type(self) -> Optional[str]:
1093
+ """
1094
+ (Updatable) Type of method to pass password.
1095
+ """
1096
+ return pulumi.get(self, "password_type")
1097
+
1098
+ @property
1099
+ @pulumi.getter(name="vaultSecretId")
1100
+ def vault_secret_id(self) -> Optional[str]:
1101
+ """
1102
+ (Updatable) Vault secret OCID.
1103
+ """
1104
+ return pulumi.get(self, "vault_secret_id")
1105
+
1106
+
676
1107
  @pulumi.output_type
677
1108
  class ConfigConfigurationNetworkConfiguration(dict):
678
1109
  @staticmethod
@@ -1263,6 +1694,8 @@ class ConfigVantagePoint(dict):
1263
1694
  suggest = None
1264
1695
  if key == "displayName":
1265
1696
  suggest = "display_name"
1697
+ elif key == "workerLists":
1698
+ suggest = "worker_lists"
1266
1699
 
1267
1700
  if suggest:
1268
1701
  pulumi.log.warn(f"Key '{key}' not found in ConfigVantagePoint. Access the value via the '{suggest}' property getter instead.")
@@ -1277,14 +1710,18 @@ class ConfigVantagePoint(dict):
1277
1710
 
1278
1711
  def __init__(__self__, *,
1279
1712
  name: str,
1280
- display_name: Optional[str] = None):
1713
+ display_name: Optional[str] = None,
1714
+ worker_lists: Optional[Sequence[str]] = None):
1281
1715
  """
1282
1716
  :param str name: Name of the vantage point.
1283
1717
  :param str display_name: Unique name that can be edited. The name should not contain any confidential information.
1718
+ :param Sequence[str] worker_lists: List of workers running the assigned monitor.
1284
1719
  """
1285
1720
  pulumi.set(__self__, "name", name)
1286
1721
  if display_name is not None:
1287
1722
  pulumi.set(__self__, "display_name", display_name)
1723
+ if worker_lists is not None:
1724
+ pulumi.set(__self__, "worker_lists", worker_lists)
1288
1725
 
1289
1726
  @property
1290
1727
  @pulumi.getter
@@ -1302,6 +1739,14 @@ class ConfigVantagePoint(dict):
1302
1739
  """
1303
1740
  return pulumi.get(self, "display_name")
1304
1741
 
1742
+ @property
1743
+ @pulumi.getter(name="workerLists")
1744
+ def worker_lists(self) -> Optional[Sequence[str]]:
1745
+ """
1746
+ List of workers running the assigned monitor.
1747
+ """
1748
+ return pulumi.get(self, "worker_lists")
1749
+
1305
1750
 
1306
1751
  @pulumi.output_type
1307
1752
  class DedicatedVantagePointDvpStackDetails(dict):
@@ -2434,7 +2879,18 @@ class GetMonitorConfigurationResult(dict):
2434
2879
  def __init__(__self__, *,
2435
2880
  client_certificate_details: Sequence['outputs.GetMonitorConfigurationClientCertificateDetailResult'],
2436
2881
  config_type: str,
2882
+ connection_string: str,
2883
+ database_authentication_details: Sequence['outputs.GetMonitorConfigurationDatabaseAuthenticationDetailResult'],
2884
+ database_connection_type: str,
2885
+ database_role: str,
2886
+ database_type: str,
2887
+ database_wallet_details: Sequence['outputs.GetMonitorConfigurationDatabaseWalletDetailResult'],
2437
2888
  dns_configurations: Sequence['outputs.GetMonitorConfigurationDnsConfigurationResult'],
2889
+ download_size_limit_in_bytes: int,
2890
+ ftp_basic_authentication_details: Sequence['outputs.GetMonitorConfigurationFtpBasicAuthenticationDetailResult'],
2891
+ ftp_protocol: str,
2892
+ ftp_request_type: str,
2893
+ is_active_mode: bool,
2438
2894
  is_certificate_validation_enabled: bool,
2439
2895
  is_default_snapshot_enabled: bool,
2440
2896
  is_failure_retried: bool,
@@ -2443,6 +2899,7 @@ class GetMonitorConfigurationResult(dict):
2443
2899
  name_server: str,
2444
2900
  network_configurations: Sequence['outputs.GetMonitorConfigurationNetworkConfigurationResult'],
2445
2901
  protocol: str,
2902
+ query: str,
2446
2903
  record_type: str,
2447
2904
  req_authentication_details: Sequence['outputs.GetMonitorConfigurationReqAuthenticationDetailResult'],
2448
2905
  req_authentication_scheme: str,
@@ -2450,13 +2907,25 @@ class GetMonitorConfigurationResult(dict):
2450
2907
  request_method: str,
2451
2908
  request_post_body: str,
2452
2909
  request_query_params: Sequence['outputs.GetMonitorConfigurationRequestQueryParamResult'],
2910
+ upload_file_size_in_bytes: int,
2453
2911
  verify_response_codes: Sequence[str],
2454
2912
  verify_response_content: str,
2455
2913
  verify_texts: Sequence['outputs.GetMonitorConfigurationVerifyTextResult']):
2456
2914
  """
2457
2915
  :param Sequence['GetMonitorConfigurationClientCertificateDetailArgs'] client_certificate_details: Details for client certificate.
2458
2916
  :param str config_type: Type of configuration.
2917
+ :param str connection_string: Database connection string.
2918
+ :param Sequence['GetMonitorConfigurationDatabaseAuthenticationDetailArgs'] database_authentication_details: Details for basic authentication.
2919
+ :param str database_connection_type: Database connection type. Only CUSTOM_JDBC is supported for MYSQL database type.
2920
+ :param str database_role: Database role.
2921
+ :param str database_type: Database type.
2922
+ :param Sequence['GetMonitorConfigurationDatabaseWalletDetailArgs'] database_wallet_details: Details for database wallet.
2459
2923
  :param Sequence['GetMonitorConfigurationDnsConfigurationArgs'] dns_configurations: Information about the DNS settings.
2924
+ :param int download_size_limit_in_bytes: Download size limit in Bytes, at which to stop the transfer. Maximum download size limit is 5 MiB.
2925
+ :param Sequence['GetMonitorConfigurationFtpBasicAuthenticationDetailArgs'] ftp_basic_authentication_details: Details for basic authentication.
2926
+ :param str ftp_protocol: FTP protocol type.
2927
+ :param str ftp_request_type: FTP monitor request type.
2928
+ :param bool is_active_mode: If enabled, Active mode will be used for the FTP connection.
2460
2929
  :param bool is_certificate_validation_enabled: If certificate validation is enabled, then the call will fail in case of certification errors.
2461
2930
  :param bool is_default_snapshot_enabled: If disabled, auto snapshots are not collected.
2462
2931
  :param bool is_failure_retried: If isFailureRetried is enabled, then a failed call will be retried.
@@ -2465,6 +2934,7 @@ class GetMonitorConfigurationResult(dict):
2465
2934
  :param str name_server: Name of the server that will be used to perform DNS lookup.
2466
2935
  :param Sequence['GetMonitorConfigurationNetworkConfigurationArgs'] network_configurations: Details of the network configuration. For NETWORK monitor type, NetworkConfiguration is mandatory.
2467
2936
  :param str protocol: Type of protocol.
2937
+ :param str query: SQL query to be executed.
2468
2938
  :param str record_type: DNS record type.
2469
2939
  :param Sequence['GetMonitorConfigurationReqAuthenticationDetailArgs'] req_authentication_details: Details for request HTTP authentication.
2470
2940
  :param str req_authentication_scheme: Request HTTP authentication scheme.
@@ -2472,13 +2942,25 @@ class GetMonitorConfigurationResult(dict):
2472
2942
  :param str request_method: Request HTTP method.
2473
2943
  :param str request_post_body: Request post body content.
2474
2944
  :param Sequence['GetMonitorConfigurationRequestQueryParamArgs'] request_query_params: List of request query params. Example: `[{"paramName": "sortOrder", "paramValue": "asc"}]`
2945
+ :param int upload_file_size_in_bytes: File upload size in Bytes, at which to stop the transfer. Maximum upload size is 5 MiB.
2475
2946
  :param Sequence[str] verify_response_codes: Expected HTTP response codes. For status code range, set values such as 2xx, 3xx.
2476
2947
  :param str verify_response_content: Verify response content against regular expression based string. If response content does not match the verifyResponseContent value, then it will be considered a failure.
2477
2948
  :param Sequence['GetMonitorConfigurationVerifyTextArgs'] verify_texts: Verifies all the search strings present in the response. If any search string is not present in the response, then it will be considered as a failure.
2478
2949
  """
2479
2950
  pulumi.set(__self__, "client_certificate_details", client_certificate_details)
2480
2951
  pulumi.set(__self__, "config_type", config_type)
2952
+ pulumi.set(__self__, "connection_string", connection_string)
2953
+ pulumi.set(__self__, "database_authentication_details", database_authentication_details)
2954
+ pulumi.set(__self__, "database_connection_type", database_connection_type)
2955
+ pulumi.set(__self__, "database_role", database_role)
2956
+ pulumi.set(__self__, "database_type", database_type)
2957
+ pulumi.set(__self__, "database_wallet_details", database_wallet_details)
2481
2958
  pulumi.set(__self__, "dns_configurations", dns_configurations)
2959
+ pulumi.set(__self__, "download_size_limit_in_bytes", download_size_limit_in_bytes)
2960
+ pulumi.set(__self__, "ftp_basic_authentication_details", ftp_basic_authentication_details)
2961
+ pulumi.set(__self__, "ftp_protocol", ftp_protocol)
2962
+ pulumi.set(__self__, "ftp_request_type", ftp_request_type)
2963
+ pulumi.set(__self__, "is_active_mode", is_active_mode)
2482
2964
  pulumi.set(__self__, "is_certificate_validation_enabled", is_certificate_validation_enabled)
2483
2965
  pulumi.set(__self__, "is_default_snapshot_enabled", is_default_snapshot_enabled)
2484
2966
  pulumi.set(__self__, "is_failure_retried", is_failure_retried)
@@ -2487,6 +2969,7 @@ class GetMonitorConfigurationResult(dict):
2487
2969
  pulumi.set(__self__, "name_server", name_server)
2488
2970
  pulumi.set(__self__, "network_configurations", network_configurations)
2489
2971
  pulumi.set(__self__, "protocol", protocol)
2972
+ pulumi.set(__self__, "query", query)
2490
2973
  pulumi.set(__self__, "record_type", record_type)
2491
2974
  pulumi.set(__self__, "req_authentication_details", req_authentication_details)
2492
2975
  pulumi.set(__self__, "req_authentication_scheme", req_authentication_scheme)
@@ -2494,6 +2977,7 @@ class GetMonitorConfigurationResult(dict):
2494
2977
  pulumi.set(__self__, "request_method", request_method)
2495
2978
  pulumi.set(__self__, "request_post_body", request_post_body)
2496
2979
  pulumi.set(__self__, "request_query_params", request_query_params)
2980
+ pulumi.set(__self__, "upload_file_size_in_bytes", upload_file_size_in_bytes)
2497
2981
  pulumi.set(__self__, "verify_response_codes", verify_response_codes)
2498
2982
  pulumi.set(__self__, "verify_response_content", verify_response_content)
2499
2983
  pulumi.set(__self__, "verify_texts", verify_texts)
@@ -2514,6 +2998,54 @@ class GetMonitorConfigurationResult(dict):
2514
2998
  """
2515
2999
  return pulumi.get(self, "config_type")
2516
3000
 
3001
+ @property
3002
+ @pulumi.getter(name="connectionString")
3003
+ def connection_string(self) -> str:
3004
+ """
3005
+ Database connection string.
3006
+ """
3007
+ return pulumi.get(self, "connection_string")
3008
+
3009
+ @property
3010
+ @pulumi.getter(name="databaseAuthenticationDetails")
3011
+ def database_authentication_details(self) -> Sequence['outputs.GetMonitorConfigurationDatabaseAuthenticationDetailResult']:
3012
+ """
3013
+ Details for basic authentication.
3014
+ """
3015
+ return pulumi.get(self, "database_authentication_details")
3016
+
3017
+ @property
3018
+ @pulumi.getter(name="databaseConnectionType")
3019
+ def database_connection_type(self) -> str:
3020
+ """
3021
+ Database connection type. Only CUSTOM_JDBC is supported for MYSQL database type.
3022
+ """
3023
+ return pulumi.get(self, "database_connection_type")
3024
+
3025
+ @property
3026
+ @pulumi.getter(name="databaseRole")
3027
+ def database_role(self) -> str:
3028
+ """
3029
+ Database role.
3030
+ """
3031
+ return pulumi.get(self, "database_role")
3032
+
3033
+ @property
3034
+ @pulumi.getter(name="databaseType")
3035
+ def database_type(self) -> str:
3036
+ """
3037
+ Database type.
3038
+ """
3039
+ return pulumi.get(self, "database_type")
3040
+
3041
+ @property
3042
+ @pulumi.getter(name="databaseWalletDetails")
3043
+ def database_wallet_details(self) -> Sequence['outputs.GetMonitorConfigurationDatabaseWalletDetailResult']:
3044
+ """
3045
+ Details for database wallet.
3046
+ """
3047
+ return pulumi.get(self, "database_wallet_details")
3048
+
2517
3049
  @property
2518
3050
  @pulumi.getter(name="dnsConfigurations")
2519
3051
  def dns_configurations(self) -> Sequence['outputs.GetMonitorConfigurationDnsConfigurationResult']:
@@ -2522,6 +3054,46 @@ class GetMonitorConfigurationResult(dict):
2522
3054
  """
2523
3055
  return pulumi.get(self, "dns_configurations")
2524
3056
 
3057
+ @property
3058
+ @pulumi.getter(name="downloadSizeLimitInBytes")
3059
+ def download_size_limit_in_bytes(self) -> int:
3060
+ """
3061
+ Download size limit in Bytes, at which to stop the transfer. Maximum download size limit is 5 MiB.
3062
+ """
3063
+ return pulumi.get(self, "download_size_limit_in_bytes")
3064
+
3065
+ @property
3066
+ @pulumi.getter(name="ftpBasicAuthenticationDetails")
3067
+ def ftp_basic_authentication_details(self) -> Sequence['outputs.GetMonitorConfigurationFtpBasicAuthenticationDetailResult']:
3068
+ """
3069
+ Details for basic authentication.
3070
+ """
3071
+ return pulumi.get(self, "ftp_basic_authentication_details")
3072
+
3073
+ @property
3074
+ @pulumi.getter(name="ftpProtocol")
3075
+ def ftp_protocol(self) -> str:
3076
+ """
3077
+ FTP protocol type.
3078
+ """
3079
+ return pulumi.get(self, "ftp_protocol")
3080
+
3081
+ @property
3082
+ @pulumi.getter(name="ftpRequestType")
3083
+ def ftp_request_type(self) -> str:
3084
+ """
3085
+ FTP monitor request type.
3086
+ """
3087
+ return pulumi.get(self, "ftp_request_type")
3088
+
3089
+ @property
3090
+ @pulumi.getter(name="isActiveMode")
3091
+ def is_active_mode(self) -> bool:
3092
+ """
3093
+ If enabled, Active mode will be used for the FTP connection.
3094
+ """
3095
+ return pulumi.get(self, "is_active_mode")
3096
+
2525
3097
  @property
2526
3098
  @pulumi.getter(name="isCertificateValidationEnabled")
2527
3099
  def is_certificate_validation_enabled(self) -> bool:
@@ -2586,6 +3158,14 @@ class GetMonitorConfigurationResult(dict):
2586
3158
  """
2587
3159
  return pulumi.get(self, "protocol")
2588
3160
 
3161
+ @property
3162
+ @pulumi.getter
3163
+ def query(self) -> str:
3164
+ """
3165
+ SQL query to be executed.
3166
+ """
3167
+ return pulumi.get(self, "query")
3168
+
2589
3169
  @property
2590
3170
  @pulumi.getter(name="recordType")
2591
3171
  def record_type(self) -> str:
@@ -2642,6 +3222,14 @@ class GetMonitorConfigurationResult(dict):
2642
3222
  """
2643
3223
  return pulumi.get(self, "request_query_params")
2644
3224
 
3225
+ @property
3226
+ @pulumi.getter(name="uploadFileSizeInBytes")
3227
+ def upload_file_size_in_bytes(self) -> int:
3228
+ """
3229
+ File upload size in Bytes, at which to stop the transfer. Maximum upload size is 5 MiB.
3230
+ """
3231
+ return pulumi.get(self, "upload_file_size_in_bytes")
3232
+
2645
3233
  @property
2646
3234
  @pulumi.getter(name="verifyResponseCodes")
2647
3235
  def verify_response_codes(self) -> Sequence[str]:
@@ -2754,6 +3342,104 @@ class GetMonitorConfigurationClientCertificateDetailPrivateKeyResult(dict):
2754
3342
  return pulumi.get(self, "file_name")
2755
3343
 
2756
3344
 
3345
+ @pulumi.output_type
3346
+ class GetMonitorConfigurationDatabaseAuthenticationDetailResult(dict):
3347
+ def __init__(__self__, *,
3348
+ passwords: Sequence['outputs.GetMonitorConfigurationDatabaseAuthenticationDetailPasswordResult'],
3349
+ username: str):
3350
+ """
3351
+ :param Sequence['GetMonitorConfigurationDatabaseAuthenticationDetailPasswordArgs'] passwords: Password.
3352
+ :param str username: Username for authentication.
3353
+ """
3354
+ pulumi.set(__self__, "passwords", passwords)
3355
+ pulumi.set(__self__, "username", username)
3356
+
3357
+ @property
3358
+ @pulumi.getter
3359
+ def passwords(self) -> Sequence['outputs.GetMonitorConfigurationDatabaseAuthenticationDetailPasswordResult']:
3360
+ """
3361
+ Password.
3362
+ """
3363
+ return pulumi.get(self, "passwords")
3364
+
3365
+ @property
3366
+ @pulumi.getter
3367
+ def username(self) -> str:
3368
+ """
3369
+ Username for authentication.
3370
+ """
3371
+ return pulumi.get(self, "username")
3372
+
3373
+
3374
+ @pulumi.output_type
3375
+ class GetMonitorConfigurationDatabaseAuthenticationDetailPasswordResult(dict):
3376
+ def __init__(__self__, *,
3377
+ password: str,
3378
+ password_type: str,
3379
+ vault_secret_id: str):
3380
+ """
3381
+ :param str password: Password.
3382
+ :param str password_type: Type of method to pass password.
3383
+ :param str vault_secret_id: Vault secret OCID.
3384
+ """
3385
+ pulumi.set(__self__, "password", password)
3386
+ pulumi.set(__self__, "password_type", password_type)
3387
+ pulumi.set(__self__, "vault_secret_id", vault_secret_id)
3388
+
3389
+ @property
3390
+ @pulumi.getter
3391
+ def password(self) -> str:
3392
+ """
3393
+ Password.
3394
+ """
3395
+ return pulumi.get(self, "password")
3396
+
3397
+ @property
3398
+ @pulumi.getter(name="passwordType")
3399
+ def password_type(self) -> str:
3400
+ """
3401
+ Type of method to pass password.
3402
+ """
3403
+ return pulumi.get(self, "password_type")
3404
+
3405
+ @property
3406
+ @pulumi.getter(name="vaultSecretId")
3407
+ def vault_secret_id(self) -> str:
3408
+ """
3409
+ Vault secret OCID.
3410
+ """
3411
+ return pulumi.get(self, "vault_secret_id")
3412
+
3413
+
3414
+ @pulumi.output_type
3415
+ class GetMonitorConfigurationDatabaseWalletDetailResult(dict):
3416
+ def __init__(__self__, *,
3417
+ database_wallet: str,
3418
+ service_name: str):
3419
+ """
3420
+ :param str database_wallet: The database wallet configuration zip file.
3421
+ :param str service_name: Service name of the database.
3422
+ """
3423
+ pulumi.set(__self__, "database_wallet", database_wallet)
3424
+ pulumi.set(__self__, "service_name", service_name)
3425
+
3426
+ @property
3427
+ @pulumi.getter(name="databaseWallet")
3428
+ def database_wallet(self) -> str:
3429
+ """
3430
+ The database wallet configuration zip file.
3431
+ """
3432
+ return pulumi.get(self, "database_wallet")
3433
+
3434
+ @property
3435
+ @pulumi.getter(name="serviceName")
3436
+ def service_name(self) -> str:
3437
+ """
3438
+ Service name of the database.
3439
+ """
3440
+ return pulumi.get(self, "service_name")
3441
+
3442
+
2757
3443
  @pulumi.output_type
2758
3444
  class GetMonitorConfigurationDnsConfigurationResult(dict):
2759
3445
  def __init__(__self__, *,
@@ -2783,6 +3469,75 @@ class GetMonitorConfigurationDnsConfigurationResult(dict):
2783
3469
  return pulumi.get(self, "override_dns_ip")
2784
3470
 
2785
3471
 
3472
+ @pulumi.output_type
3473
+ class GetMonitorConfigurationFtpBasicAuthenticationDetailResult(dict):
3474
+ def __init__(__self__, *,
3475
+ passwords: Sequence['outputs.GetMonitorConfigurationFtpBasicAuthenticationDetailPasswordResult'],
3476
+ username: str):
3477
+ """
3478
+ :param Sequence['GetMonitorConfigurationFtpBasicAuthenticationDetailPasswordArgs'] passwords: Password.
3479
+ :param str username: Username for authentication.
3480
+ """
3481
+ pulumi.set(__self__, "passwords", passwords)
3482
+ pulumi.set(__self__, "username", username)
3483
+
3484
+ @property
3485
+ @pulumi.getter
3486
+ def passwords(self) -> Sequence['outputs.GetMonitorConfigurationFtpBasicAuthenticationDetailPasswordResult']:
3487
+ """
3488
+ Password.
3489
+ """
3490
+ return pulumi.get(self, "passwords")
3491
+
3492
+ @property
3493
+ @pulumi.getter
3494
+ def username(self) -> str:
3495
+ """
3496
+ Username for authentication.
3497
+ """
3498
+ return pulumi.get(self, "username")
3499
+
3500
+
3501
+ @pulumi.output_type
3502
+ class GetMonitorConfigurationFtpBasicAuthenticationDetailPasswordResult(dict):
3503
+ def __init__(__self__, *,
3504
+ password: str,
3505
+ password_type: str,
3506
+ vault_secret_id: str):
3507
+ """
3508
+ :param str password: Password.
3509
+ :param str password_type: Type of method to pass password.
3510
+ :param str vault_secret_id: Vault secret OCID.
3511
+ """
3512
+ pulumi.set(__self__, "password", password)
3513
+ pulumi.set(__self__, "password_type", password_type)
3514
+ pulumi.set(__self__, "vault_secret_id", vault_secret_id)
3515
+
3516
+ @property
3517
+ @pulumi.getter
3518
+ def password(self) -> str:
3519
+ """
3520
+ Password.
3521
+ """
3522
+ return pulumi.get(self, "password")
3523
+
3524
+ @property
3525
+ @pulumi.getter(name="passwordType")
3526
+ def password_type(self) -> str:
3527
+ """
3528
+ Type of method to pass password.
3529
+ """
3530
+ return pulumi.get(self, "password_type")
3531
+
3532
+ @property
3533
+ @pulumi.getter(name="vaultSecretId")
3534
+ def vault_secret_id(self) -> str:
3535
+ """
3536
+ Vault secret OCID.
3537
+ """
3538
+ return pulumi.get(self, "vault_secret_id")
3539
+
3540
+
2786
3541
  @pulumi.output_type
2787
3542
  class GetMonitorConfigurationNetworkConfigurationResult(dict):
2788
3543
  def __init__(__self__, *,
@@ -3169,13 +3924,16 @@ class GetMonitorScriptParameterMonitorScriptParameterResult(dict):
3169
3924
  class GetMonitorVantagePointResult(dict):
3170
3925
  def __init__(__self__, *,
3171
3926
  display_name: str,
3172
- name: str):
3927
+ name: str,
3928
+ worker_lists: Sequence[str]):
3173
3929
  """
3174
3930
  :param str display_name: Unique name that can be edited. The name should not contain any confidential information.
3175
3931
  :param str name: Name of the vantage point.
3932
+ :param Sequence[str] worker_lists: List of workers running the assigned monitor.
3176
3933
  """
3177
3934
  pulumi.set(__self__, "display_name", display_name)
3178
3935
  pulumi.set(__self__, "name", name)
3936
+ pulumi.set(__self__, "worker_lists", worker_lists)
3179
3937
 
3180
3938
  @property
3181
3939
  @pulumi.getter(name="displayName")
@@ -3193,6 +3951,14 @@ class GetMonitorVantagePointResult(dict):
3193
3951
  """
3194
3952
  return pulumi.get(self, "name")
3195
3953
 
3954
+ @property
3955
+ @pulumi.getter(name="workerLists")
3956
+ def worker_lists(self) -> Sequence[str]:
3957
+ """
3958
+ List of workers running the assigned monitor.
3959
+ """
3960
+ return pulumi.get(self, "worker_lists")
3961
+
3196
3962
 
3197
3963
  @pulumi.output_type
3198
3964
  class GetMonitorsFilterResult(dict):
@@ -3246,12 +4012,15 @@ class GetMonitorsMonitorCollectionItemResult(dict):
3246
4012
  availability_configurations: Sequence['outputs.GetMonitorsMonitorCollectionItemAvailabilityConfigurationResult'],
3247
4013
  batch_interval_in_seconds: int,
3248
4014
  configurations: Sequence['outputs.GetMonitorsMonitorCollectionItemConfigurationResult'],
4015
+ created_by: str,
3249
4016
  defined_tags: Mapping[str, Any],
3250
4017
  display_name: str,
3251
4018
  freeform_tags: Mapping[str, Any],
3252
4019
  id: str,
4020
+ is_ipv6: bool,
3253
4021
  is_run_now: bool,
3254
4022
  is_run_once: bool,
4023
+ last_updated_by: str,
3255
4024
  maintenance_window_schedules: Sequence['outputs.GetMonitorsMonitorCollectionItemMaintenanceWindowScheduleResult'],
3256
4025
  monitor_type: str,
3257
4026
  repeat_interval_in_seconds: int,
@@ -3271,37 +4040,43 @@ class GetMonitorsMonitorCollectionItemResult(dict):
3271
4040
  :param Sequence['GetMonitorsMonitorCollectionItemAvailabilityConfigurationArgs'] availability_configurations: Monitor availability configuration details.
3272
4041
  :param int batch_interval_in_seconds: Time interval between two runs in round robin batch mode (SchedulingPolicy - BATCHED_ROUND_ROBIN).
3273
4042
  :param Sequence['GetMonitorsMonitorCollectionItemConfigurationArgs'] configurations: Details of monitor configuration.
4043
+ :param str created_by: Name of the user that created the monitor.
3274
4044
  :param Mapping[str, Any] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
3275
4045
  :param str display_name: A filter to return only the resources that match the entire display name.
3276
4046
  :param Mapping[str, Any] 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"}`
3277
4047
  :param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the monitor.
4048
+ :param bool is_ipv6: If enabled, domain name will resolve to an IPv6 address.
3278
4049
  :param bool is_run_now: If isRunNow is enabled, then the monitor will run immediately.
3279
4050
  :param bool is_run_once: If runOnce is enabled, then the monitor will run once.
4051
+ :param str last_updated_by: Name of the user that recently updated the monitor.
3280
4052
  :param Sequence['GetMonitorsMonitorCollectionItemMaintenanceWindowScheduleArgs'] maintenance_window_schedules: Details required to schedule maintenance window.
3281
- :param str monitor_type: A filter to return only monitors that match the given monitor type. Supported values are SCRIPTED_BROWSER, BROWSER, SCRIPTED_REST, REST and NETWORK.
4053
+ :param str monitor_type: A filter to return only monitors that match the given monitor type. Supported values are SCRIPTED_BROWSER, BROWSER, SCRIPTED_REST, REST, NETWORK, DNS, FTP and SQL.
3282
4054
  :param int repeat_interval_in_seconds: Interval in seconds after the start time when the job should be repeated. Minimum repeatIntervalInSeconds should be 300 seconds for Scripted REST, Scripted Browser and Browser monitors, and 60 seconds for REST monitor.
3283
4055
  :param str scheduling_policy: Scheduling policy to decide the distribution of monitor executions on vantage points.
3284
4056
  :param str script_id: A filter to return only monitors using scriptId.
3285
4057
  :param str script_name: Name of the script.
3286
4058
  :param Sequence['GetMonitorsMonitorCollectionItemScriptParameterArgs'] script_parameters: List of script parameters. Example: `[{"monitorScriptParameter": {"paramName": "userid", "paramValue":"testuser"}, "isSecret": false, "isOverwritten": false}]`
3287
4059
  :param str status: A filter to return only monitors that match the status given.
3288
- :param str target: Specify the endpoint on which to run the monitor. For BROWSER, REST and NETWORK monitor types, target is mandatory. If target is specified in the SCRIPTED_BROWSER monitor type, then the monitor will run the selected script (specified by scriptId in monitor) against the specified target endpoint. If target is not specified in the SCRIPTED_BROWSER monitor type, then the monitor will run the selected script as it is. For NETWORK monitor with TCP protocol, a port needs to be provided along with target. Example: 192.168.0.1:80
4060
+ :param str target: Specify the endpoint on which to run the monitor. For BROWSER, REST, NETWORK, DNS and FTP monitor types, target is mandatory. If target is specified in the SCRIPTED_BROWSER monitor type, then the monitor will run the selected script (specified by scriptId in monitor) against the specified target endpoint. If target is not specified in the SCRIPTED_BROWSER monitor type, then the monitor will run the selected script as it is. For NETWORK monitor with TCP protocol, a port needs to be provided along with target. Example: 192.168.0.1:80.
3289
4061
  :param str time_created: The time the resource was created, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2020-02-12T22:47:12.613Z`
3290
4062
  :param str time_updated: The time the resource was updated, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2020-02-13T22:47:12.613Z`
3291
4063
  :param int timeout_in_seconds: Timeout in seconds. If isFailureRetried is true, then timeout cannot be more than 30% of repeatIntervalInSeconds time for monitors. If isFailureRetried is false, then timeout cannot be more than 50% of repeatIntervalInSeconds time for monitors. Also, timeoutInSeconds should be a multiple of 60 for Scripted REST, Scripted Browser and Browser monitors. Monitor will be allowed to run only for timeoutInSeconds time. It would be terminated after that.
3292
4064
  :param int vantage_point_count: Number of vantage points where monitor is running.
3293
- :param Sequence['GetMonitorsMonitorCollectionItemVantagePointArgs'] vantage_points: List of public and dedicated vantage points where the monitor is running.
4065
+ :param Sequence['GetMonitorsMonitorCollectionItemVantagePointArgs'] vantage_points: List of public, dedicated and onPremise vantage points where the monitor is running.
3294
4066
  """
3295
4067
  pulumi.set(__self__, "apm_domain_id", apm_domain_id)
3296
4068
  pulumi.set(__self__, "availability_configurations", availability_configurations)
3297
4069
  pulumi.set(__self__, "batch_interval_in_seconds", batch_interval_in_seconds)
3298
4070
  pulumi.set(__self__, "configurations", configurations)
4071
+ pulumi.set(__self__, "created_by", created_by)
3299
4072
  pulumi.set(__self__, "defined_tags", defined_tags)
3300
4073
  pulumi.set(__self__, "display_name", display_name)
3301
4074
  pulumi.set(__self__, "freeform_tags", freeform_tags)
3302
4075
  pulumi.set(__self__, "id", id)
4076
+ pulumi.set(__self__, "is_ipv6", is_ipv6)
3303
4077
  pulumi.set(__self__, "is_run_now", is_run_now)
3304
4078
  pulumi.set(__self__, "is_run_once", is_run_once)
4079
+ pulumi.set(__self__, "last_updated_by", last_updated_by)
3305
4080
  pulumi.set(__self__, "maintenance_window_schedules", maintenance_window_schedules)
3306
4081
  pulumi.set(__self__, "monitor_type", monitor_type)
3307
4082
  pulumi.set(__self__, "repeat_interval_in_seconds", repeat_interval_in_seconds)
@@ -3349,6 +4124,14 @@ class GetMonitorsMonitorCollectionItemResult(dict):
3349
4124
  """
3350
4125
  return pulumi.get(self, "configurations")
3351
4126
 
4127
+ @property
4128
+ @pulumi.getter(name="createdBy")
4129
+ def created_by(self) -> str:
4130
+ """
4131
+ Name of the user that created the monitor.
4132
+ """
4133
+ return pulumi.get(self, "created_by")
4134
+
3352
4135
  @property
3353
4136
  @pulumi.getter(name="definedTags")
3354
4137
  def defined_tags(self) -> Mapping[str, Any]:
@@ -3381,6 +4164,14 @@ class GetMonitorsMonitorCollectionItemResult(dict):
3381
4164
  """
3382
4165
  return pulumi.get(self, "id")
3383
4166
 
4167
+ @property
4168
+ @pulumi.getter(name="isIpv6")
4169
+ def is_ipv6(self) -> bool:
4170
+ """
4171
+ If enabled, domain name will resolve to an IPv6 address.
4172
+ """
4173
+ return pulumi.get(self, "is_ipv6")
4174
+
3384
4175
  @property
3385
4176
  @pulumi.getter(name="isRunNow")
3386
4177
  def is_run_now(self) -> bool:
@@ -3397,6 +4188,14 @@ class GetMonitorsMonitorCollectionItemResult(dict):
3397
4188
  """
3398
4189
  return pulumi.get(self, "is_run_once")
3399
4190
 
4191
+ @property
4192
+ @pulumi.getter(name="lastUpdatedBy")
4193
+ def last_updated_by(self) -> str:
4194
+ """
4195
+ Name of the user that recently updated the monitor.
4196
+ """
4197
+ return pulumi.get(self, "last_updated_by")
4198
+
3400
4199
  @property
3401
4200
  @pulumi.getter(name="maintenanceWindowSchedules")
3402
4201
  def maintenance_window_schedules(self) -> Sequence['outputs.GetMonitorsMonitorCollectionItemMaintenanceWindowScheduleResult']:
@@ -3409,7 +4208,7 @@ class GetMonitorsMonitorCollectionItemResult(dict):
3409
4208
  @pulumi.getter(name="monitorType")
3410
4209
  def monitor_type(self) -> str:
3411
4210
  """
3412
- A filter to return only monitors that match the given monitor type. Supported values are SCRIPTED_BROWSER, BROWSER, SCRIPTED_REST, REST and NETWORK.
4211
+ A filter to return only monitors that match the given monitor type. Supported values are SCRIPTED_BROWSER, BROWSER, SCRIPTED_REST, REST, NETWORK, DNS, FTP and SQL.
3413
4212
  """
3414
4213
  return pulumi.get(self, "monitor_type")
3415
4214
 
@@ -3465,7 +4264,7 @@ class GetMonitorsMonitorCollectionItemResult(dict):
3465
4264
  @pulumi.getter
3466
4265
  def target(self) -> str:
3467
4266
  """
3468
- Specify the endpoint on which to run the monitor. For BROWSER, REST and NETWORK monitor types, target is mandatory. If target is specified in the SCRIPTED_BROWSER monitor type, then the monitor will run the selected script (specified by scriptId in monitor) against the specified target endpoint. If target is not specified in the SCRIPTED_BROWSER monitor type, then the monitor will run the selected script as it is. For NETWORK monitor with TCP protocol, a port needs to be provided along with target. Example: 192.168.0.1:80
4267
+ Specify the endpoint on which to run the monitor. For BROWSER, REST, NETWORK, DNS and FTP monitor types, target is mandatory. If target is specified in the SCRIPTED_BROWSER monitor type, then the monitor will run the selected script (specified by scriptId in monitor) against the specified target endpoint. If target is not specified in the SCRIPTED_BROWSER monitor type, then the monitor will run the selected script as it is. For NETWORK monitor with TCP protocol, a port needs to be provided along with target. Example: 192.168.0.1:80.
3469
4268
  """
3470
4269
  return pulumi.get(self, "target")
3471
4270
 
@@ -3505,7 +4304,7 @@ class GetMonitorsMonitorCollectionItemResult(dict):
3505
4304
  @pulumi.getter(name="vantagePoints")
3506
4305
  def vantage_points(self) -> Sequence['outputs.GetMonitorsMonitorCollectionItemVantagePointResult']:
3507
4306
  """
3508
- List of public and dedicated vantage points where the monitor is running.
4307
+ List of public, dedicated and onPremise vantage points where the monitor is running.
3509
4308
  """
3510
4309
  return pulumi.get(self, "vantage_points")
3511
4310
 
@@ -3544,7 +4343,18 @@ class GetMonitorsMonitorCollectionItemConfigurationResult(dict):
3544
4343
  def __init__(__self__, *,
3545
4344
  client_certificate_details: Sequence['outputs.GetMonitorsMonitorCollectionItemConfigurationClientCertificateDetailResult'],
3546
4345
  config_type: str,
4346
+ connection_string: str,
4347
+ database_authentication_details: Sequence['outputs.GetMonitorsMonitorCollectionItemConfigurationDatabaseAuthenticationDetailResult'],
4348
+ database_connection_type: str,
4349
+ database_role: str,
4350
+ database_type: str,
4351
+ database_wallet_details: Sequence['outputs.GetMonitorsMonitorCollectionItemConfigurationDatabaseWalletDetailResult'],
3547
4352
  dns_configurations: Sequence['outputs.GetMonitorsMonitorCollectionItemConfigurationDnsConfigurationResult'],
4353
+ download_size_limit_in_bytes: int,
4354
+ ftp_basic_authentication_details: Sequence['outputs.GetMonitorsMonitorCollectionItemConfigurationFtpBasicAuthenticationDetailResult'],
4355
+ ftp_protocol: str,
4356
+ ftp_request_type: str,
4357
+ is_active_mode: bool,
3548
4358
  is_certificate_validation_enabled: bool,
3549
4359
  is_default_snapshot_enabled: bool,
3550
4360
  is_failure_retried: bool,
@@ -3553,6 +4363,7 @@ class GetMonitorsMonitorCollectionItemConfigurationResult(dict):
3553
4363
  name_server: str,
3554
4364
  network_configurations: Sequence['outputs.GetMonitorsMonitorCollectionItemConfigurationNetworkConfigurationResult'],
3555
4365
  protocol: str,
4366
+ query: str,
3556
4367
  record_type: str,
3557
4368
  req_authentication_details: Sequence['outputs.GetMonitorsMonitorCollectionItemConfigurationReqAuthenticationDetailResult'],
3558
4369
  req_authentication_scheme: str,
@@ -3560,13 +4371,25 @@ class GetMonitorsMonitorCollectionItemConfigurationResult(dict):
3560
4371
  request_method: str,
3561
4372
  request_post_body: str,
3562
4373
  request_query_params: Sequence['outputs.GetMonitorsMonitorCollectionItemConfigurationRequestQueryParamResult'],
4374
+ upload_file_size_in_bytes: int,
3563
4375
  verify_response_codes: Sequence[str],
3564
4376
  verify_response_content: str,
3565
4377
  verify_texts: Sequence['outputs.GetMonitorsMonitorCollectionItemConfigurationVerifyTextResult']):
3566
4378
  """
3567
4379
  :param Sequence['GetMonitorsMonitorCollectionItemConfigurationClientCertificateDetailArgs'] client_certificate_details: Details for client certificate.
3568
4380
  :param str config_type: Type of configuration.
4381
+ :param str connection_string: Database connection string.
4382
+ :param Sequence['GetMonitorsMonitorCollectionItemConfigurationDatabaseAuthenticationDetailArgs'] database_authentication_details: Details for basic authentication.
4383
+ :param str database_connection_type: Database connection type. Only CUSTOM_JDBC is supported for MYSQL database type.
4384
+ :param str database_role: Database role.
4385
+ :param str database_type: Database type.
4386
+ :param Sequence['GetMonitorsMonitorCollectionItemConfigurationDatabaseWalletDetailArgs'] database_wallet_details: Details for database wallet.
3569
4387
  :param Sequence['GetMonitorsMonitorCollectionItemConfigurationDnsConfigurationArgs'] dns_configurations: Information about the DNS settings.
4388
+ :param int download_size_limit_in_bytes: Download size limit in Bytes, at which to stop the transfer. Maximum download size limit is 5 MiB.
4389
+ :param Sequence['GetMonitorsMonitorCollectionItemConfigurationFtpBasicAuthenticationDetailArgs'] ftp_basic_authentication_details: Details for basic authentication.
4390
+ :param str ftp_protocol: FTP protocol type.
4391
+ :param str ftp_request_type: FTP monitor request type.
4392
+ :param bool is_active_mode: If enabled, Active mode will be used for the FTP connection.
3570
4393
  :param bool is_certificate_validation_enabled: If certificate validation is enabled, then the call will fail in case of certification errors.
3571
4394
  :param bool is_default_snapshot_enabled: If disabled, auto snapshots are not collected.
3572
4395
  :param bool is_failure_retried: If isFailureRetried is enabled, then a failed call will be retried.
@@ -3575,6 +4398,7 @@ class GetMonitorsMonitorCollectionItemConfigurationResult(dict):
3575
4398
  :param str name_server: Name of the server that will be used to perform DNS lookup.
3576
4399
  :param Sequence['GetMonitorsMonitorCollectionItemConfigurationNetworkConfigurationArgs'] network_configurations: Details of the network configuration. For NETWORK monitor type, NetworkConfiguration is mandatory.
3577
4400
  :param str protocol: Type of protocol.
4401
+ :param str query: SQL query to be executed.
3578
4402
  :param str record_type: DNS record type.
3579
4403
  :param Sequence['GetMonitorsMonitorCollectionItemConfigurationReqAuthenticationDetailArgs'] req_authentication_details: Details for request HTTP authentication.
3580
4404
  :param str req_authentication_scheme: Request HTTP authentication scheme.
@@ -3582,13 +4406,25 @@ class GetMonitorsMonitorCollectionItemConfigurationResult(dict):
3582
4406
  :param str request_method: Request HTTP method.
3583
4407
  :param str request_post_body: Request post body content.
3584
4408
  :param Sequence['GetMonitorsMonitorCollectionItemConfigurationRequestQueryParamArgs'] request_query_params: List of request query params. Example: `[{"paramName": "sortOrder", "paramValue": "asc"}]`
4409
+ :param int upload_file_size_in_bytes: File upload size in Bytes, at which to stop the transfer. Maximum upload size is 5 MiB.
3585
4410
  :param Sequence[str] verify_response_codes: Expected HTTP response codes. For status code range, set values such as 2xx, 3xx.
3586
4411
  :param str verify_response_content: Verify response content against regular expression based string. If response content does not match the verifyResponseContent value, then it will be considered a failure.
3587
4412
  :param Sequence['GetMonitorsMonitorCollectionItemConfigurationVerifyTextArgs'] verify_texts: Verifies all the search strings present in the response. If any search string is not present in the response, then it will be considered as a failure.
3588
4413
  """
3589
4414
  pulumi.set(__self__, "client_certificate_details", client_certificate_details)
3590
4415
  pulumi.set(__self__, "config_type", config_type)
4416
+ pulumi.set(__self__, "connection_string", connection_string)
4417
+ pulumi.set(__self__, "database_authentication_details", database_authentication_details)
4418
+ pulumi.set(__self__, "database_connection_type", database_connection_type)
4419
+ pulumi.set(__self__, "database_role", database_role)
4420
+ pulumi.set(__self__, "database_type", database_type)
4421
+ pulumi.set(__self__, "database_wallet_details", database_wallet_details)
3591
4422
  pulumi.set(__self__, "dns_configurations", dns_configurations)
4423
+ pulumi.set(__self__, "download_size_limit_in_bytes", download_size_limit_in_bytes)
4424
+ pulumi.set(__self__, "ftp_basic_authentication_details", ftp_basic_authentication_details)
4425
+ pulumi.set(__self__, "ftp_protocol", ftp_protocol)
4426
+ pulumi.set(__self__, "ftp_request_type", ftp_request_type)
4427
+ pulumi.set(__self__, "is_active_mode", is_active_mode)
3592
4428
  pulumi.set(__self__, "is_certificate_validation_enabled", is_certificate_validation_enabled)
3593
4429
  pulumi.set(__self__, "is_default_snapshot_enabled", is_default_snapshot_enabled)
3594
4430
  pulumi.set(__self__, "is_failure_retried", is_failure_retried)
@@ -3597,6 +4433,7 @@ class GetMonitorsMonitorCollectionItemConfigurationResult(dict):
3597
4433
  pulumi.set(__self__, "name_server", name_server)
3598
4434
  pulumi.set(__self__, "network_configurations", network_configurations)
3599
4435
  pulumi.set(__self__, "protocol", protocol)
4436
+ pulumi.set(__self__, "query", query)
3600
4437
  pulumi.set(__self__, "record_type", record_type)
3601
4438
  pulumi.set(__self__, "req_authentication_details", req_authentication_details)
3602
4439
  pulumi.set(__self__, "req_authentication_scheme", req_authentication_scheme)
@@ -3604,6 +4441,7 @@ class GetMonitorsMonitorCollectionItemConfigurationResult(dict):
3604
4441
  pulumi.set(__self__, "request_method", request_method)
3605
4442
  pulumi.set(__self__, "request_post_body", request_post_body)
3606
4443
  pulumi.set(__self__, "request_query_params", request_query_params)
4444
+ pulumi.set(__self__, "upload_file_size_in_bytes", upload_file_size_in_bytes)
3607
4445
  pulumi.set(__self__, "verify_response_codes", verify_response_codes)
3608
4446
  pulumi.set(__self__, "verify_response_content", verify_response_content)
3609
4447
  pulumi.set(__self__, "verify_texts", verify_texts)
@@ -3624,6 +4462,54 @@ class GetMonitorsMonitorCollectionItemConfigurationResult(dict):
3624
4462
  """
3625
4463
  return pulumi.get(self, "config_type")
3626
4464
 
4465
+ @property
4466
+ @pulumi.getter(name="connectionString")
4467
+ def connection_string(self) -> str:
4468
+ """
4469
+ Database connection string.
4470
+ """
4471
+ return pulumi.get(self, "connection_string")
4472
+
4473
+ @property
4474
+ @pulumi.getter(name="databaseAuthenticationDetails")
4475
+ def database_authentication_details(self) -> Sequence['outputs.GetMonitorsMonitorCollectionItemConfigurationDatabaseAuthenticationDetailResult']:
4476
+ """
4477
+ Details for basic authentication.
4478
+ """
4479
+ return pulumi.get(self, "database_authentication_details")
4480
+
4481
+ @property
4482
+ @pulumi.getter(name="databaseConnectionType")
4483
+ def database_connection_type(self) -> str:
4484
+ """
4485
+ Database connection type. Only CUSTOM_JDBC is supported for MYSQL database type.
4486
+ """
4487
+ return pulumi.get(self, "database_connection_type")
4488
+
4489
+ @property
4490
+ @pulumi.getter(name="databaseRole")
4491
+ def database_role(self) -> str:
4492
+ """
4493
+ Database role.
4494
+ """
4495
+ return pulumi.get(self, "database_role")
4496
+
4497
+ @property
4498
+ @pulumi.getter(name="databaseType")
4499
+ def database_type(self) -> str:
4500
+ """
4501
+ Database type.
4502
+ """
4503
+ return pulumi.get(self, "database_type")
4504
+
4505
+ @property
4506
+ @pulumi.getter(name="databaseWalletDetails")
4507
+ def database_wallet_details(self) -> Sequence['outputs.GetMonitorsMonitorCollectionItemConfigurationDatabaseWalletDetailResult']:
4508
+ """
4509
+ Details for database wallet.
4510
+ """
4511
+ return pulumi.get(self, "database_wallet_details")
4512
+
3627
4513
  @property
3628
4514
  @pulumi.getter(name="dnsConfigurations")
3629
4515
  def dns_configurations(self) -> Sequence['outputs.GetMonitorsMonitorCollectionItemConfigurationDnsConfigurationResult']:
@@ -3632,6 +4518,46 @@ class GetMonitorsMonitorCollectionItemConfigurationResult(dict):
3632
4518
  """
3633
4519
  return pulumi.get(self, "dns_configurations")
3634
4520
 
4521
+ @property
4522
+ @pulumi.getter(name="downloadSizeLimitInBytes")
4523
+ def download_size_limit_in_bytes(self) -> int:
4524
+ """
4525
+ Download size limit in Bytes, at which to stop the transfer. Maximum download size limit is 5 MiB.
4526
+ """
4527
+ return pulumi.get(self, "download_size_limit_in_bytes")
4528
+
4529
+ @property
4530
+ @pulumi.getter(name="ftpBasicAuthenticationDetails")
4531
+ def ftp_basic_authentication_details(self) -> Sequence['outputs.GetMonitorsMonitorCollectionItemConfigurationFtpBasicAuthenticationDetailResult']:
4532
+ """
4533
+ Details for basic authentication.
4534
+ """
4535
+ return pulumi.get(self, "ftp_basic_authentication_details")
4536
+
4537
+ @property
4538
+ @pulumi.getter(name="ftpProtocol")
4539
+ def ftp_protocol(self) -> str:
4540
+ """
4541
+ FTP protocol type.
4542
+ """
4543
+ return pulumi.get(self, "ftp_protocol")
4544
+
4545
+ @property
4546
+ @pulumi.getter(name="ftpRequestType")
4547
+ def ftp_request_type(self) -> str:
4548
+ """
4549
+ FTP monitor request type.
4550
+ """
4551
+ return pulumi.get(self, "ftp_request_type")
4552
+
4553
+ @property
4554
+ @pulumi.getter(name="isActiveMode")
4555
+ def is_active_mode(self) -> bool:
4556
+ """
4557
+ If enabled, Active mode will be used for the FTP connection.
4558
+ """
4559
+ return pulumi.get(self, "is_active_mode")
4560
+
3635
4561
  @property
3636
4562
  @pulumi.getter(name="isCertificateValidationEnabled")
3637
4563
  def is_certificate_validation_enabled(self) -> bool:
@@ -3696,6 +4622,14 @@ class GetMonitorsMonitorCollectionItemConfigurationResult(dict):
3696
4622
  """
3697
4623
  return pulumi.get(self, "protocol")
3698
4624
 
4625
+ @property
4626
+ @pulumi.getter
4627
+ def query(self) -> str:
4628
+ """
4629
+ SQL query to be executed.
4630
+ """
4631
+ return pulumi.get(self, "query")
4632
+
3699
4633
  @property
3700
4634
  @pulumi.getter(name="recordType")
3701
4635
  def record_type(self) -> str:
@@ -3752,6 +4686,14 @@ class GetMonitorsMonitorCollectionItemConfigurationResult(dict):
3752
4686
  """
3753
4687
  return pulumi.get(self, "request_query_params")
3754
4688
 
4689
+ @property
4690
+ @pulumi.getter(name="uploadFileSizeInBytes")
4691
+ def upload_file_size_in_bytes(self) -> int:
4692
+ """
4693
+ File upload size in Bytes, at which to stop the transfer. Maximum upload size is 5 MiB.
4694
+ """
4695
+ return pulumi.get(self, "upload_file_size_in_bytes")
4696
+
3755
4697
  @property
3756
4698
  @pulumi.getter(name="verifyResponseCodes")
3757
4699
  def verify_response_codes(self) -> Sequence[str]:
@@ -3864,6 +4806,104 @@ class GetMonitorsMonitorCollectionItemConfigurationClientCertificateDetailPrivat
3864
4806
  return pulumi.get(self, "file_name")
3865
4807
 
3866
4808
 
4809
+ @pulumi.output_type
4810
+ class GetMonitorsMonitorCollectionItemConfigurationDatabaseAuthenticationDetailResult(dict):
4811
+ def __init__(__self__, *,
4812
+ passwords: Sequence['outputs.GetMonitorsMonitorCollectionItemConfigurationDatabaseAuthenticationDetailPasswordResult'],
4813
+ username: str):
4814
+ """
4815
+ :param Sequence['GetMonitorsMonitorCollectionItemConfigurationDatabaseAuthenticationDetailPasswordArgs'] passwords: Password.
4816
+ :param str username: Username for authentication.
4817
+ """
4818
+ pulumi.set(__self__, "passwords", passwords)
4819
+ pulumi.set(__self__, "username", username)
4820
+
4821
+ @property
4822
+ @pulumi.getter
4823
+ def passwords(self) -> Sequence['outputs.GetMonitorsMonitorCollectionItemConfigurationDatabaseAuthenticationDetailPasswordResult']:
4824
+ """
4825
+ Password.
4826
+ """
4827
+ return pulumi.get(self, "passwords")
4828
+
4829
+ @property
4830
+ @pulumi.getter
4831
+ def username(self) -> str:
4832
+ """
4833
+ Username for authentication.
4834
+ """
4835
+ return pulumi.get(self, "username")
4836
+
4837
+
4838
+ @pulumi.output_type
4839
+ class GetMonitorsMonitorCollectionItemConfigurationDatabaseAuthenticationDetailPasswordResult(dict):
4840
+ def __init__(__self__, *,
4841
+ password: str,
4842
+ password_type: str,
4843
+ vault_secret_id: str):
4844
+ """
4845
+ :param str password: Password.
4846
+ :param str password_type: Type of method to pass password.
4847
+ :param str vault_secret_id: Vault secret OCID.
4848
+ """
4849
+ pulumi.set(__self__, "password", password)
4850
+ pulumi.set(__self__, "password_type", password_type)
4851
+ pulumi.set(__self__, "vault_secret_id", vault_secret_id)
4852
+
4853
+ @property
4854
+ @pulumi.getter
4855
+ def password(self) -> str:
4856
+ """
4857
+ Password.
4858
+ """
4859
+ return pulumi.get(self, "password")
4860
+
4861
+ @property
4862
+ @pulumi.getter(name="passwordType")
4863
+ def password_type(self) -> str:
4864
+ """
4865
+ Type of method to pass password.
4866
+ """
4867
+ return pulumi.get(self, "password_type")
4868
+
4869
+ @property
4870
+ @pulumi.getter(name="vaultSecretId")
4871
+ def vault_secret_id(self) -> str:
4872
+ """
4873
+ Vault secret OCID.
4874
+ """
4875
+ return pulumi.get(self, "vault_secret_id")
4876
+
4877
+
4878
+ @pulumi.output_type
4879
+ class GetMonitorsMonitorCollectionItemConfigurationDatabaseWalletDetailResult(dict):
4880
+ def __init__(__self__, *,
4881
+ database_wallet: str,
4882
+ service_name: str):
4883
+ """
4884
+ :param str database_wallet: The database wallet configuration zip file.
4885
+ :param str service_name: Service name of the database.
4886
+ """
4887
+ pulumi.set(__self__, "database_wallet", database_wallet)
4888
+ pulumi.set(__self__, "service_name", service_name)
4889
+
4890
+ @property
4891
+ @pulumi.getter(name="databaseWallet")
4892
+ def database_wallet(self) -> str:
4893
+ """
4894
+ The database wallet configuration zip file.
4895
+ """
4896
+ return pulumi.get(self, "database_wallet")
4897
+
4898
+ @property
4899
+ @pulumi.getter(name="serviceName")
4900
+ def service_name(self) -> str:
4901
+ """
4902
+ Service name of the database.
4903
+ """
4904
+ return pulumi.get(self, "service_name")
4905
+
4906
+
3867
4907
  @pulumi.output_type
3868
4908
  class GetMonitorsMonitorCollectionItemConfigurationDnsConfigurationResult(dict):
3869
4909
  def __init__(__self__, *,
@@ -3893,6 +4933,75 @@ class GetMonitorsMonitorCollectionItemConfigurationDnsConfigurationResult(dict):
3893
4933
  return pulumi.get(self, "override_dns_ip")
3894
4934
 
3895
4935
 
4936
+ @pulumi.output_type
4937
+ class GetMonitorsMonitorCollectionItemConfigurationFtpBasicAuthenticationDetailResult(dict):
4938
+ def __init__(__self__, *,
4939
+ passwords: Sequence['outputs.GetMonitorsMonitorCollectionItemConfigurationFtpBasicAuthenticationDetailPasswordResult'],
4940
+ username: str):
4941
+ """
4942
+ :param Sequence['GetMonitorsMonitorCollectionItemConfigurationFtpBasicAuthenticationDetailPasswordArgs'] passwords: Password.
4943
+ :param str username: Username for authentication.
4944
+ """
4945
+ pulumi.set(__self__, "passwords", passwords)
4946
+ pulumi.set(__self__, "username", username)
4947
+
4948
+ @property
4949
+ @pulumi.getter
4950
+ def passwords(self) -> Sequence['outputs.GetMonitorsMonitorCollectionItemConfigurationFtpBasicAuthenticationDetailPasswordResult']:
4951
+ """
4952
+ Password.
4953
+ """
4954
+ return pulumi.get(self, "passwords")
4955
+
4956
+ @property
4957
+ @pulumi.getter
4958
+ def username(self) -> str:
4959
+ """
4960
+ Username for authentication.
4961
+ """
4962
+ return pulumi.get(self, "username")
4963
+
4964
+
4965
+ @pulumi.output_type
4966
+ class GetMonitorsMonitorCollectionItemConfigurationFtpBasicAuthenticationDetailPasswordResult(dict):
4967
+ def __init__(__self__, *,
4968
+ password: str,
4969
+ password_type: str,
4970
+ vault_secret_id: str):
4971
+ """
4972
+ :param str password: Password.
4973
+ :param str password_type: Type of method to pass password.
4974
+ :param str vault_secret_id: Vault secret OCID.
4975
+ """
4976
+ pulumi.set(__self__, "password", password)
4977
+ pulumi.set(__self__, "password_type", password_type)
4978
+ pulumi.set(__self__, "vault_secret_id", vault_secret_id)
4979
+
4980
+ @property
4981
+ @pulumi.getter
4982
+ def password(self) -> str:
4983
+ """
4984
+ Password.
4985
+ """
4986
+ return pulumi.get(self, "password")
4987
+
4988
+ @property
4989
+ @pulumi.getter(name="passwordType")
4990
+ def password_type(self) -> str:
4991
+ """
4992
+ Type of method to pass password.
4993
+ """
4994
+ return pulumi.get(self, "password_type")
4995
+
4996
+ @property
4997
+ @pulumi.getter(name="vaultSecretId")
4998
+ def vault_secret_id(self) -> str:
4999
+ """
5000
+ Vault secret OCID.
5001
+ """
5002
+ return pulumi.get(self, "vault_secret_id")
5003
+
5004
+
3896
5005
  @pulumi.output_type
3897
5006
  class GetMonitorsMonitorCollectionItemConfigurationNetworkConfigurationResult(dict):
3898
5007
  def __init__(__self__, *,
@@ -4279,13 +5388,16 @@ class GetMonitorsMonitorCollectionItemScriptParameterMonitorScriptParameterResul
4279
5388
  class GetMonitorsMonitorCollectionItemVantagePointResult(dict):
4280
5389
  def __init__(__self__, *,
4281
5390
  display_name: str,
4282
- name: str):
5391
+ name: str,
5392
+ worker_lists: Sequence[str]):
4283
5393
  """
4284
5394
  :param str display_name: A filter to return only the resources that match the entire display name.
4285
5395
  :param str name: Name of the vantage point.
5396
+ :param Sequence[str] worker_lists: List of workers running the assigned monitor.
4286
5397
  """
4287
5398
  pulumi.set(__self__, "display_name", display_name)
4288
5399
  pulumi.set(__self__, "name", name)
5400
+ pulumi.set(__self__, "worker_lists", worker_lists)
4289
5401
 
4290
5402
  @property
4291
5403
  @pulumi.getter(name="displayName")
@@ -4303,6 +5415,14 @@ class GetMonitorsMonitorCollectionItemVantagePointResult(dict):
4303
5415
  """
4304
5416
  return pulumi.get(self, "name")
4305
5417
 
5418
+ @property
5419
+ @pulumi.getter(name="workerLists")
5420
+ def worker_lists(self) -> Sequence[str]:
5421
+ """
5422
+ List of workers running the assigned monitor.
5423
+ """
5424
+ return pulumi.get(self, "worker_lists")
5425
+
4306
5426
 
4307
5427
  @pulumi.output_type
4308
5428
  class GetOnPremiseVantagePointWorkerIdentityInfoResult(dict):