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
@@ -26,6 +26,7 @@ class ConfigArgs:
26
26
  configuration: Optional[pulumi.Input['ConfigConfigurationArgs']] = None,
27
27
  defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
28
28
  freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
29
+ is_ipv6: Optional[pulumi.Input[bool]] = None,
29
30
  is_run_now: Optional[pulumi.Input[bool]] = None,
30
31
  is_run_once: Optional[pulumi.Input[bool]] = None,
31
32
  maintenance_window_schedule: Optional[pulumi.Input['ConfigMaintenanceWindowScheduleArgs']] = None,
@@ -52,6 +53,7 @@ class ConfigArgs:
52
53
  :param pulumi.Input['ConfigConfigurationArgs'] configuration: (Updatable) Details of monitor configuration.
53
54
  :param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
54
55
  :param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
56
+ :param pulumi.Input[bool] is_ipv6: (Updatable) If enabled, domain name will resolve to an IPv6 address.
55
57
  :param pulumi.Input[bool] is_run_now: (Updatable) If isRunNow is enabled, then the monitor will run immediately.
56
58
  :param pulumi.Input[bool] is_run_once: (Updatable) If runOnce is enabled, then the monitor will run once.
57
59
  :param pulumi.Input['ConfigMaintenanceWindowScheduleArgs'] maintenance_window_schedule: (Updatable) Details required to schedule maintenance window.
@@ -60,7 +62,7 @@ class ConfigArgs:
60
62
  :param pulumi.Input[str] script_name: Name of the script.
61
63
  :param pulumi.Input[Sequence[pulumi.Input['ConfigScriptParameterArgs']]] script_parameters: (Updatable) List of script parameters in the monitor. This is valid only for SCRIPTED_BROWSER and SCRIPTED_REST monitor types. For other monitor types, it should be set to null. Example: `[{"paramName": "userid", "paramValue":"testuser"}]`
62
64
  :param pulumi.Input[str] status: (Updatable) Enables or disables the monitor.
63
- :param pulumi.Input[str] target: (Updatable) 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
65
+ :param pulumi.Input[str] target: (Updatable) 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.
64
66
  :param pulumi.Input[int] timeout_in_seconds: (Updatable) 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.
65
67
  """
66
68
  pulumi.set(__self__, "apm_domain_id", apm_domain_id)
@@ -78,6 +80,8 @@ class ConfigArgs:
78
80
  pulumi.set(__self__, "defined_tags", defined_tags)
79
81
  if freeform_tags is not None:
80
82
  pulumi.set(__self__, "freeform_tags", freeform_tags)
83
+ if is_ipv6 is not None:
84
+ pulumi.set(__self__, "is_ipv6", is_ipv6)
81
85
  if is_run_now is not None:
82
86
  pulumi.set(__self__, "is_run_now", is_run_now)
83
87
  if is_run_once is not None:
@@ -223,6 +227,18 @@ class ConfigArgs:
223
227
  def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
224
228
  pulumi.set(self, "freeform_tags", value)
225
229
 
230
+ @property
231
+ @pulumi.getter(name="isIpv6")
232
+ def is_ipv6(self) -> Optional[pulumi.Input[bool]]:
233
+ """
234
+ (Updatable) If enabled, domain name will resolve to an IPv6 address.
235
+ """
236
+ return pulumi.get(self, "is_ipv6")
237
+
238
+ @is_ipv6.setter
239
+ def is_ipv6(self, value: Optional[pulumi.Input[bool]]):
240
+ pulumi.set(self, "is_ipv6", value)
241
+
226
242
  @property
227
243
  @pulumi.getter(name="isRunNow")
228
244
  def is_run_now(self) -> Optional[pulumi.Input[bool]]:
@@ -323,7 +339,7 @@ class ConfigArgs:
323
339
  @pulumi.getter
324
340
  def target(self) -> Optional[pulumi.Input[str]]:
325
341
  """
326
- (Updatable) 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
342
+ (Updatable) 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.
327
343
  """
328
344
  return pulumi.get(self, "target")
329
345
 
@@ -351,11 +367,14 @@ class _ConfigState:
351
367
  availability_configuration: Optional[pulumi.Input['ConfigAvailabilityConfigurationArgs']] = None,
352
368
  batch_interval_in_seconds: Optional[pulumi.Input[int]] = None,
353
369
  configuration: Optional[pulumi.Input['ConfigConfigurationArgs']] = None,
370
+ created_by: Optional[pulumi.Input[str]] = None,
354
371
  defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
355
372
  display_name: Optional[pulumi.Input[str]] = None,
356
373
  freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
374
+ is_ipv6: Optional[pulumi.Input[bool]] = None,
357
375
  is_run_now: Optional[pulumi.Input[bool]] = None,
358
376
  is_run_once: Optional[pulumi.Input[bool]] = None,
377
+ last_updated_by: Optional[pulumi.Input[str]] = None,
359
378
  maintenance_window_schedule: Optional[pulumi.Input['ConfigMaintenanceWindowScheduleArgs']] = None,
360
379
  monitor_type: Optional[pulumi.Input[str]] = None,
361
380
  repeat_interval_in_seconds: Optional[pulumi.Input[int]] = None,
@@ -376,11 +395,14 @@ class _ConfigState:
376
395
  :param pulumi.Input['ConfigAvailabilityConfigurationArgs'] availability_configuration: (Updatable) Monitor availability configuration details.
377
396
  :param pulumi.Input[int] batch_interval_in_seconds: (Updatable) Time interval between 2 runs in round robin batch mode (*SchedulingPolicy - BATCHED_ROUND_ROBIN).
378
397
  :param pulumi.Input['ConfigConfigurationArgs'] configuration: (Updatable) Details of monitor configuration.
398
+ :param pulumi.Input[str] created_by: Name of the user that created the monitor.
379
399
  :param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
380
400
  :param pulumi.Input[str] display_name: (Updatable) Unique name that can be edited. The name should not contain any confidential information.
381
401
  :param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
402
+ :param pulumi.Input[bool] is_ipv6: (Updatable) If enabled, domain name will resolve to an IPv6 address.
382
403
  :param pulumi.Input[bool] is_run_now: (Updatable) If isRunNow is enabled, then the monitor will run immediately.
383
404
  :param pulumi.Input[bool] is_run_once: (Updatable) If runOnce is enabled, then the monitor will run once.
405
+ :param pulumi.Input[str] last_updated_by: Name of the user that recently updated the monitor.
384
406
  :param pulumi.Input['ConfigMaintenanceWindowScheduleArgs'] maintenance_window_schedule: (Updatable) Details required to schedule maintenance window.
385
407
  :param pulumi.Input[str] monitor_type: Type of monitor.
386
408
  :param pulumi.Input[int] repeat_interval_in_seconds: (Updatable) 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.
@@ -389,7 +411,7 @@ class _ConfigState:
389
411
  :param pulumi.Input[str] script_name: Name of the script.
390
412
  :param pulumi.Input[Sequence[pulumi.Input['ConfigScriptParameterArgs']]] script_parameters: (Updatable) List of script parameters in the monitor. This is valid only for SCRIPTED_BROWSER and SCRIPTED_REST monitor types. For other monitor types, it should be set to null. Example: `[{"paramName": "userid", "paramValue":"testuser"}]`
391
413
  :param pulumi.Input[str] status: (Updatable) Enables or disables the monitor.
392
- :param pulumi.Input[str] target: (Updatable) 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
414
+ :param pulumi.Input[str] target: (Updatable) 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.
393
415
  :param pulumi.Input[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`
394
416
  :param pulumi.Input[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`
395
417
  :param pulumi.Input[int] timeout_in_seconds: (Updatable) 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.
@@ -408,16 +430,22 @@ class _ConfigState:
408
430
  pulumi.set(__self__, "batch_interval_in_seconds", batch_interval_in_seconds)
409
431
  if configuration is not None:
410
432
  pulumi.set(__self__, "configuration", configuration)
433
+ if created_by is not None:
434
+ pulumi.set(__self__, "created_by", created_by)
411
435
  if defined_tags is not None:
412
436
  pulumi.set(__self__, "defined_tags", defined_tags)
413
437
  if display_name is not None:
414
438
  pulumi.set(__self__, "display_name", display_name)
415
439
  if freeform_tags is not None:
416
440
  pulumi.set(__self__, "freeform_tags", freeform_tags)
441
+ if is_ipv6 is not None:
442
+ pulumi.set(__self__, "is_ipv6", is_ipv6)
417
443
  if is_run_now is not None:
418
444
  pulumi.set(__self__, "is_run_now", is_run_now)
419
445
  if is_run_once is not None:
420
446
  pulumi.set(__self__, "is_run_once", is_run_once)
447
+ if last_updated_by is not None:
448
+ pulumi.set(__self__, "last_updated_by", last_updated_by)
421
449
  if maintenance_window_schedule is not None:
422
450
  pulumi.set(__self__, "maintenance_window_schedule", maintenance_window_schedule)
423
451
  if monitor_type is not None:
@@ -495,6 +523,18 @@ class _ConfigState:
495
523
  def configuration(self, value: Optional[pulumi.Input['ConfigConfigurationArgs']]):
496
524
  pulumi.set(self, "configuration", value)
497
525
 
526
+ @property
527
+ @pulumi.getter(name="createdBy")
528
+ def created_by(self) -> Optional[pulumi.Input[str]]:
529
+ """
530
+ Name of the user that created the monitor.
531
+ """
532
+ return pulumi.get(self, "created_by")
533
+
534
+ @created_by.setter
535
+ def created_by(self, value: Optional[pulumi.Input[str]]):
536
+ pulumi.set(self, "created_by", value)
537
+
498
538
  @property
499
539
  @pulumi.getter(name="definedTags")
500
540
  def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
@@ -531,6 +571,18 @@ class _ConfigState:
531
571
  def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
532
572
  pulumi.set(self, "freeform_tags", value)
533
573
 
574
+ @property
575
+ @pulumi.getter(name="isIpv6")
576
+ def is_ipv6(self) -> Optional[pulumi.Input[bool]]:
577
+ """
578
+ (Updatable) If enabled, domain name will resolve to an IPv6 address.
579
+ """
580
+ return pulumi.get(self, "is_ipv6")
581
+
582
+ @is_ipv6.setter
583
+ def is_ipv6(self, value: Optional[pulumi.Input[bool]]):
584
+ pulumi.set(self, "is_ipv6", value)
585
+
534
586
  @property
535
587
  @pulumi.getter(name="isRunNow")
536
588
  def is_run_now(self) -> Optional[pulumi.Input[bool]]:
@@ -555,6 +607,18 @@ class _ConfigState:
555
607
  def is_run_once(self, value: Optional[pulumi.Input[bool]]):
556
608
  pulumi.set(self, "is_run_once", value)
557
609
 
610
+ @property
611
+ @pulumi.getter(name="lastUpdatedBy")
612
+ def last_updated_by(self) -> Optional[pulumi.Input[str]]:
613
+ """
614
+ Name of the user that recently updated the monitor.
615
+ """
616
+ return pulumi.get(self, "last_updated_by")
617
+
618
+ @last_updated_by.setter
619
+ def last_updated_by(self, value: Optional[pulumi.Input[str]]):
620
+ pulumi.set(self, "last_updated_by", value)
621
+
558
622
  @property
559
623
  @pulumi.getter(name="maintenanceWindowSchedule")
560
624
  def maintenance_window_schedule(self) -> Optional[pulumi.Input['ConfigMaintenanceWindowScheduleArgs']]:
@@ -655,7 +719,7 @@ class _ConfigState:
655
719
  @pulumi.getter
656
720
  def target(self) -> Optional[pulumi.Input[str]]:
657
721
  """
658
- (Updatable) 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
722
+ (Updatable) 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.
659
723
  """
660
724
  return pulumi.get(self, "target")
661
725
 
@@ -740,6 +804,7 @@ class Config(pulumi.CustomResource):
740
804
  defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
741
805
  display_name: Optional[pulumi.Input[str]] = None,
742
806
  freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
807
+ is_ipv6: Optional[pulumi.Input[bool]] = None,
743
808
  is_run_now: Optional[pulumi.Input[bool]] = None,
744
809
  is_run_once: Optional[pulumi.Input[bool]] = None,
745
810
  maintenance_window_schedule: Optional[pulumi.Input[pulumi.InputType['ConfigMaintenanceWindowScheduleArgs']]] = None,
@@ -791,10 +856,38 @@ class Config(pulumi.CustomResource):
791
856
  ),
792
857
  ),
793
858
  config_type=monitor_configuration_config_type,
859
+ connection_string=monitor_configuration_connection_string,
860
+ database_authentication_details=oci.apm_synthetics.ConfigConfigurationDatabaseAuthenticationDetailsArgs(
861
+ password=oci.apm_synthetics.ConfigConfigurationDatabaseAuthenticationDetailsPasswordArgs(
862
+ password=monitor_configuration_database_authentication_details_password_password,
863
+ password_type=monitor_configuration_database_authentication_details_password_password_type,
864
+ vault_secret_id=test_secret["id"],
865
+ ),
866
+ username=monitor_configuration_database_authentication_details_username,
867
+ ),
868
+ database_connection_type=monitor_configuration_database_connection_type,
869
+ database_role=monitor_configuration_database_role,
870
+ database_type=monitor_configuration_database_type,
871
+ database_wallet_details=oci.apm_synthetics.ConfigConfigurationDatabaseWalletDetailsArgs(
872
+ database_wallet=monitor_configuration_database_wallet_details_database_wallet,
873
+ service_name=test_service["name"],
874
+ ),
794
875
  dns_configuration=oci.apm_synthetics.ConfigConfigurationDnsConfigurationArgs(
795
876
  is_override_dns=monitor_configuration_dns_configuration_is_override_dns,
796
877
  override_dns_ip=monitor_configuration_dns_configuration_override_dns_ip,
797
878
  ),
879
+ download_size_limit_in_bytes=monitor_configuration_download_size_limit_in_bytes,
880
+ ftp_basic_authentication_details=oci.apm_synthetics.ConfigConfigurationFtpBasicAuthenticationDetailsArgs(
881
+ password=oci.apm_synthetics.ConfigConfigurationFtpBasicAuthenticationDetailsPasswordArgs(
882
+ password=monitor_configuration_ftp_basic_authentication_details_password_password,
883
+ password_type=monitor_configuration_ftp_basic_authentication_details_password_password_type,
884
+ vault_secret_id=test_secret["id"],
885
+ ),
886
+ username=monitor_configuration_ftp_basic_authentication_details_username,
887
+ ),
888
+ ftp_protocol=monitor_configuration_ftp_protocol,
889
+ ftp_request_type=monitor_configuration_ftp_request_type,
890
+ is_active_mode=monitor_configuration_is_active_mode,
798
891
  is_certificate_validation_enabled=monitor_configuration_is_certificate_validation_enabled,
799
892
  is_default_snapshot_enabled=monitor_configuration_is_default_snapshot_enabled,
800
893
  is_failure_retried=monitor_configuration_is_failure_retried,
@@ -809,6 +902,7 @@ class Config(pulumi.CustomResource):
809
902
  transmission_rate=monitor_configuration_network_configuration_transmission_rate,
810
903
  ),
811
904
  protocol=monitor_configuration_protocol,
905
+ query=monitor_configuration_query,
812
906
  record_type=monitor_configuration_record_type,
813
907
  req_authentication_details=oci.apm_synthetics.ConfigConfigurationReqAuthenticationDetailsArgs(
814
908
  auth_headers=[oci.apm_synthetics.ConfigConfigurationReqAuthenticationDetailsAuthHeaderArgs(
@@ -834,6 +928,7 @@ class Config(pulumi.CustomResource):
834
928
  param_name=monitor_configuration_request_query_params_param_name,
835
929
  param_value=monitor_configuration_request_query_params_param_value,
836
930
  )],
931
+ upload_file_size_in_bytes=monitor_configuration_upload_file_size_in_bytes,
837
932
  verify_response_codes=monitor_configuration_verify_response_codes,
838
933
  verify_response_content=monitor_configuration_verify_response_content,
839
934
  verify_texts=[oci.apm_synthetics.ConfigConfigurationVerifyTextArgs(
@@ -846,6 +941,7 @@ class Config(pulumi.CustomResource):
846
941
  freeform_tags={
847
942
  "bar-key": "value",
848
943
  },
944
+ is_ipv6=monitor_is_ipv6,
849
945
  is_run_now=monitor_is_run_now,
850
946
  is_run_once=monitor_is_run_once,
851
947
  maintenance_window_schedule=oci.apm_synthetics.ConfigMaintenanceWindowScheduleArgs(
@@ -880,6 +976,7 @@ class Config(pulumi.CustomResource):
880
976
  :param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
881
977
  :param pulumi.Input[str] display_name: (Updatable) Unique name that can be edited. The name should not contain any confidential information.
882
978
  :param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
979
+ :param pulumi.Input[bool] is_ipv6: (Updatable) If enabled, domain name will resolve to an IPv6 address.
883
980
  :param pulumi.Input[bool] is_run_now: (Updatable) If isRunNow is enabled, then the monitor will run immediately.
884
981
  :param pulumi.Input[bool] is_run_once: (Updatable) If runOnce is enabled, then the monitor will run once.
885
982
  :param pulumi.Input[pulumi.InputType['ConfigMaintenanceWindowScheduleArgs']] maintenance_window_schedule: (Updatable) Details required to schedule maintenance window.
@@ -890,7 +987,7 @@ class Config(pulumi.CustomResource):
890
987
  :param pulumi.Input[str] script_name: Name of the script.
891
988
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ConfigScriptParameterArgs']]]] script_parameters: (Updatable) List of script parameters in the monitor. This is valid only for SCRIPTED_BROWSER and SCRIPTED_REST monitor types. For other monitor types, it should be set to null. Example: `[{"paramName": "userid", "paramValue":"testuser"}]`
892
989
  :param pulumi.Input[str] status: (Updatable) Enables or disables the monitor.
893
- :param pulumi.Input[str] target: (Updatable) 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
990
+ :param pulumi.Input[str] target: (Updatable) 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.
894
991
  :param pulumi.Input[int] timeout_in_seconds: (Updatable) 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.
895
992
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ConfigVantagePointArgs']]]] vantage_points: (Updatable) A list of public and dedicated vantage points from which to execute the monitor. Use /publicVantagePoints to fetch public vantage points, and /dedicatedVantagePoints to fetch dedicated vantage points.
896
993
 
@@ -941,10 +1038,38 @@ class Config(pulumi.CustomResource):
941
1038
  ),
942
1039
  ),
943
1040
  config_type=monitor_configuration_config_type,
1041
+ connection_string=monitor_configuration_connection_string,
1042
+ database_authentication_details=oci.apm_synthetics.ConfigConfigurationDatabaseAuthenticationDetailsArgs(
1043
+ password=oci.apm_synthetics.ConfigConfigurationDatabaseAuthenticationDetailsPasswordArgs(
1044
+ password=monitor_configuration_database_authentication_details_password_password,
1045
+ password_type=monitor_configuration_database_authentication_details_password_password_type,
1046
+ vault_secret_id=test_secret["id"],
1047
+ ),
1048
+ username=monitor_configuration_database_authentication_details_username,
1049
+ ),
1050
+ database_connection_type=monitor_configuration_database_connection_type,
1051
+ database_role=monitor_configuration_database_role,
1052
+ database_type=monitor_configuration_database_type,
1053
+ database_wallet_details=oci.apm_synthetics.ConfigConfigurationDatabaseWalletDetailsArgs(
1054
+ database_wallet=monitor_configuration_database_wallet_details_database_wallet,
1055
+ service_name=test_service["name"],
1056
+ ),
944
1057
  dns_configuration=oci.apm_synthetics.ConfigConfigurationDnsConfigurationArgs(
945
1058
  is_override_dns=monitor_configuration_dns_configuration_is_override_dns,
946
1059
  override_dns_ip=monitor_configuration_dns_configuration_override_dns_ip,
947
1060
  ),
1061
+ download_size_limit_in_bytes=monitor_configuration_download_size_limit_in_bytes,
1062
+ ftp_basic_authentication_details=oci.apm_synthetics.ConfigConfigurationFtpBasicAuthenticationDetailsArgs(
1063
+ password=oci.apm_synthetics.ConfigConfigurationFtpBasicAuthenticationDetailsPasswordArgs(
1064
+ password=monitor_configuration_ftp_basic_authentication_details_password_password,
1065
+ password_type=monitor_configuration_ftp_basic_authentication_details_password_password_type,
1066
+ vault_secret_id=test_secret["id"],
1067
+ ),
1068
+ username=monitor_configuration_ftp_basic_authentication_details_username,
1069
+ ),
1070
+ ftp_protocol=monitor_configuration_ftp_protocol,
1071
+ ftp_request_type=monitor_configuration_ftp_request_type,
1072
+ is_active_mode=monitor_configuration_is_active_mode,
948
1073
  is_certificate_validation_enabled=monitor_configuration_is_certificate_validation_enabled,
949
1074
  is_default_snapshot_enabled=monitor_configuration_is_default_snapshot_enabled,
950
1075
  is_failure_retried=monitor_configuration_is_failure_retried,
@@ -959,6 +1084,7 @@ class Config(pulumi.CustomResource):
959
1084
  transmission_rate=monitor_configuration_network_configuration_transmission_rate,
960
1085
  ),
961
1086
  protocol=monitor_configuration_protocol,
1087
+ query=monitor_configuration_query,
962
1088
  record_type=monitor_configuration_record_type,
963
1089
  req_authentication_details=oci.apm_synthetics.ConfigConfigurationReqAuthenticationDetailsArgs(
964
1090
  auth_headers=[oci.apm_synthetics.ConfigConfigurationReqAuthenticationDetailsAuthHeaderArgs(
@@ -984,6 +1110,7 @@ class Config(pulumi.CustomResource):
984
1110
  param_name=monitor_configuration_request_query_params_param_name,
985
1111
  param_value=monitor_configuration_request_query_params_param_value,
986
1112
  )],
1113
+ upload_file_size_in_bytes=monitor_configuration_upload_file_size_in_bytes,
987
1114
  verify_response_codes=monitor_configuration_verify_response_codes,
988
1115
  verify_response_content=monitor_configuration_verify_response_content,
989
1116
  verify_texts=[oci.apm_synthetics.ConfigConfigurationVerifyTextArgs(
@@ -996,6 +1123,7 @@ class Config(pulumi.CustomResource):
996
1123
  freeform_tags={
997
1124
  "bar-key": "value",
998
1125
  },
1126
+ is_ipv6=monitor_is_ipv6,
999
1127
  is_run_now=monitor_is_run_now,
1000
1128
  is_run_once=monitor_is_run_once,
1001
1129
  maintenance_window_schedule=oci.apm_synthetics.ConfigMaintenanceWindowScheduleArgs(
@@ -1043,6 +1171,7 @@ class Config(pulumi.CustomResource):
1043
1171
  defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
1044
1172
  display_name: Optional[pulumi.Input[str]] = None,
1045
1173
  freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
1174
+ is_ipv6: Optional[pulumi.Input[bool]] = None,
1046
1175
  is_run_now: Optional[pulumi.Input[bool]] = None,
1047
1176
  is_run_once: Optional[pulumi.Input[bool]] = None,
1048
1177
  maintenance_window_schedule: Optional[pulumi.Input[pulumi.InputType['ConfigMaintenanceWindowScheduleArgs']]] = None,
@@ -1076,6 +1205,7 @@ class Config(pulumi.CustomResource):
1076
1205
  raise TypeError("Missing required property 'display_name'")
1077
1206
  __props__.__dict__["display_name"] = display_name
1078
1207
  __props__.__dict__["freeform_tags"] = freeform_tags
1208
+ __props__.__dict__["is_ipv6"] = is_ipv6
1079
1209
  __props__.__dict__["is_run_now"] = is_run_now
1080
1210
  __props__.__dict__["is_run_once"] = is_run_once
1081
1211
  __props__.__dict__["maintenance_window_schedule"] = maintenance_window_schedule
@@ -1095,6 +1225,8 @@ class Config(pulumi.CustomResource):
1095
1225
  if vantage_points is None and not opts.urn:
1096
1226
  raise TypeError("Missing required property 'vantage_points'")
1097
1227
  __props__.__dict__["vantage_points"] = vantage_points
1228
+ __props__.__dict__["created_by"] = None
1229
+ __props__.__dict__["last_updated_by"] = None
1098
1230
  __props__.__dict__["time_created"] = None
1099
1231
  __props__.__dict__["time_updated"] = None
1100
1232
  __props__.__dict__["vantage_point_count"] = None
@@ -1112,11 +1244,14 @@ class Config(pulumi.CustomResource):
1112
1244
  availability_configuration: Optional[pulumi.Input[pulumi.InputType['ConfigAvailabilityConfigurationArgs']]] = None,
1113
1245
  batch_interval_in_seconds: Optional[pulumi.Input[int]] = None,
1114
1246
  configuration: Optional[pulumi.Input[pulumi.InputType['ConfigConfigurationArgs']]] = None,
1247
+ created_by: Optional[pulumi.Input[str]] = None,
1115
1248
  defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
1116
1249
  display_name: Optional[pulumi.Input[str]] = None,
1117
1250
  freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
1251
+ is_ipv6: Optional[pulumi.Input[bool]] = None,
1118
1252
  is_run_now: Optional[pulumi.Input[bool]] = None,
1119
1253
  is_run_once: Optional[pulumi.Input[bool]] = None,
1254
+ last_updated_by: Optional[pulumi.Input[str]] = None,
1120
1255
  maintenance_window_schedule: Optional[pulumi.Input[pulumi.InputType['ConfigMaintenanceWindowScheduleArgs']]] = None,
1121
1256
  monitor_type: Optional[pulumi.Input[str]] = None,
1122
1257
  repeat_interval_in_seconds: Optional[pulumi.Input[int]] = None,
@@ -1142,11 +1277,14 @@ class Config(pulumi.CustomResource):
1142
1277
  :param pulumi.Input[pulumi.InputType['ConfigAvailabilityConfigurationArgs']] availability_configuration: (Updatable) Monitor availability configuration details.
1143
1278
  :param pulumi.Input[int] batch_interval_in_seconds: (Updatable) Time interval between 2 runs in round robin batch mode (*SchedulingPolicy - BATCHED_ROUND_ROBIN).
1144
1279
  :param pulumi.Input[pulumi.InputType['ConfigConfigurationArgs']] configuration: (Updatable) Details of monitor configuration.
1280
+ :param pulumi.Input[str] created_by: Name of the user that created the monitor.
1145
1281
  :param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
1146
1282
  :param pulumi.Input[str] display_name: (Updatable) Unique name that can be edited. The name should not contain any confidential information.
1147
1283
  :param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
1284
+ :param pulumi.Input[bool] is_ipv6: (Updatable) If enabled, domain name will resolve to an IPv6 address.
1148
1285
  :param pulumi.Input[bool] is_run_now: (Updatable) If isRunNow is enabled, then the monitor will run immediately.
1149
1286
  :param pulumi.Input[bool] is_run_once: (Updatable) If runOnce is enabled, then the monitor will run once.
1287
+ :param pulumi.Input[str] last_updated_by: Name of the user that recently updated the monitor.
1150
1288
  :param pulumi.Input[pulumi.InputType['ConfigMaintenanceWindowScheduleArgs']] maintenance_window_schedule: (Updatable) Details required to schedule maintenance window.
1151
1289
  :param pulumi.Input[str] monitor_type: Type of monitor.
1152
1290
  :param pulumi.Input[int] repeat_interval_in_seconds: (Updatable) 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.
@@ -1155,7 +1293,7 @@ class Config(pulumi.CustomResource):
1155
1293
  :param pulumi.Input[str] script_name: Name of the script.
1156
1294
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ConfigScriptParameterArgs']]]] script_parameters: (Updatable) List of script parameters in the monitor. This is valid only for SCRIPTED_BROWSER and SCRIPTED_REST monitor types. For other monitor types, it should be set to null. Example: `[{"paramName": "userid", "paramValue":"testuser"}]`
1157
1295
  :param pulumi.Input[str] status: (Updatable) Enables or disables the monitor.
1158
- :param pulumi.Input[str] target: (Updatable) 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
1296
+ :param pulumi.Input[str] target: (Updatable) 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.
1159
1297
  :param pulumi.Input[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`
1160
1298
  :param pulumi.Input[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`
1161
1299
  :param pulumi.Input[int] timeout_in_seconds: (Updatable) 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.
@@ -1174,11 +1312,14 @@ class Config(pulumi.CustomResource):
1174
1312
  __props__.__dict__["availability_configuration"] = availability_configuration
1175
1313
  __props__.__dict__["batch_interval_in_seconds"] = batch_interval_in_seconds
1176
1314
  __props__.__dict__["configuration"] = configuration
1315
+ __props__.__dict__["created_by"] = created_by
1177
1316
  __props__.__dict__["defined_tags"] = defined_tags
1178
1317
  __props__.__dict__["display_name"] = display_name
1179
1318
  __props__.__dict__["freeform_tags"] = freeform_tags
1319
+ __props__.__dict__["is_ipv6"] = is_ipv6
1180
1320
  __props__.__dict__["is_run_now"] = is_run_now
1181
1321
  __props__.__dict__["is_run_once"] = is_run_once
1322
+ __props__.__dict__["last_updated_by"] = last_updated_by
1182
1323
  __props__.__dict__["maintenance_window_schedule"] = maintenance_window_schedule
1183
1324
  __props__.__dict__["monitor_type"] = monitor_type
1184
1325
  __props__.__dict__["repeat_interval_in_seconds"] = repeat_interval_in_seconds
@@ -1227,6 +1368,14 @@ class Config(pulumi.CustomResource):
1227
1368
  """
1228
1369
  return pulumi.get(self, "configuration")
1229
1370
 
1371
+ @property
1372
+ @pulumi.getter(name="createdBy")
1373
+ def created_by(self) -> pulumi.Output[str]:
1374
+ """
1375
+ Name of the user that created the monitor.
1376
+ """
1377
+ return pulumi.get(self, "created_by")
1378
+
1230
1379
  @property
1231
1380
  @pulumi.getter(name="definedTags")
1232
1381
  def defined_tags(self) -> pulumi.Output[Mapping[str, Any]]:
@@ -1251,6 +1400,14 @@ class Config(pulumi.CustomResource):
1251
1400
  """
1252
1401
  return pulumi.get(self, "freeform_tags")
1253
1402
 
1403
+ @property
1404
+ @pulumi.getter(name="isIpv6")
1405
+ def is_ipv6(self) -> pulumi.Output[bool]:
1406
+ """
1407
+ (Updatable) If enabled, domain name will resolve to an IPv6 address.
1408
+ """
1409
+ return pulumi.get(self, "is_ipv6")
1410
+
1254
1411
  @property
1255
1412
  @pulumi.getter(name="isRunNow")
1256
1413
  def is_run_now(self) -> pulumi.Output[bool]:
@@ -1267,6 +1424,14 @@ class Config(pulumi.CustomResource):
1267
1424
  """
1268
1425
  return pulumi.get(self, "is_run_once")
1269
1426
 
1427
+ @property
1428
+ @pulumi.getter(name="lastUpdatedBy")
1429
+ def last_updated_by(self) -> pulumi.Output[str]:
1430
+ """
1431
+ Name of the user that recently updated the monitor.
1432
+ """
1433
+ return pulumi.get(self, "last_updated_by")
1434
+
1270
1435
  @property
1271
1436
  @pulumi.getter(name="maintenanceWindowSchedule")
1272
1437
  def maintenance_window_schedule(self) -> pulumi.Output['outputs.ConfigMaintenanceWindowSchedule']:
@@ -1335,7 +1500,7 @@ class Config(pulumi.CustomResource):
1335
1500
  @pulumi.getter
1336
1501
  def target(self) -> pulumi.Output[str]:
1337
1502
  """
1338
- (Updatable) 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
1503
+ (Updatable) 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.
1339
1504
  """
1340
1505
  return pulumi.get(self, "target")
1341
1506
 
@@ -22,7 +22,7 @@ class GetMonitorResult:
22
22
  """
23
23
  A collection of values returned by getMonitor.
24
24
  """
25
- def __init__(__self__, apm_domain_id=None, availability_configurations=None, batch_interval_in_seconds=None, configurations=None, defined_tags=None, display_name=None, freeform_tags=None, id=None, is_run_now=None, is_run_once=None, maintenance_window_schedules=None, monitor_id=None, monitor_type=None, repeat_interval_in_seconds=None, scheduling_policy=None, script_id=None, script_name=None, script_parameters=None, status=None, target=None, time_created=None, time_updated=None, timeout_in_seconds=None, vantage_point_count=None, vantage_points=None):
25
+ def __init__(__self__, apm_domain_id=None, availability_configurations=None, batch_interval_in_seconds=None, configurations=None, created_by=None, defined_tags=None, display_name=None, freeform_tags=None, id=None, is_ipv6=None, is_run_now=None, is_run_once=None, last_updated_by=None, maintenance_window_schedules=None, monitor_id=None, monitor_type=None, repeat_interval_in_seconds=None, scheduling_policy=None, script_id=None, script_name=None, script_parameters=None, status=None, target=None, time_created=None, time_updated=None, timeout_in_seconds=None, vantage_point_count=None, vantage_points=None):
26
26
  if apm_domain_id and not isinstance(apm_domain_id, str):
27
27
  raise TypeError("Expected argument 'apm_domain_id' to be a str")
28
28
  pulumi.set(__self__, "apm_domain_id", apm_domain_id)
@@ -35,6 +35,9 @@ class GetMonitorResult:
35
35
  if configurations and not isinstance(configurations, list):
36
36
  raise TypeError("Expected argument 'configurations' to be a list")
37
37
  pulumi.set(__self__, "configurations", configurations)
38
+ if created_by and not isinstance(created_by, str):
39
+ raise TypeError("Expected argument 'created_by' to be a str")
40
+ pulumi.set(__self__, "created_by", created_by)
38
41
  if defined_tags and not isinstance(defined_tags, dict):
39
42
  raise TypeError("Expected argument 'defined_tags' to be a dict")
40
43
  pulumi.set(__self__, "defined_tags", defined_tags)
@@ -47,12 +50,18 @@ class GetMonitorResult:
47
50
  if id and not isinstance(id, str):
48
51
  raise TypeError("Expected argument 'id' to be a str")
49
52
  pulumi.set(__self__, "id", id)
53
+ if is_ipv6 and not isinstance(is_ipv6, bool):
54
+ raise TypeError("Expected argument 'is_ipv6' to be a bool")
55
+ pulumi.set(__self__, "is_ipv6", is_ipv6)
50
56
  if is_run_now and not isinstance(is_run_now, bool):
51
57
  raise TypeError("Expected argument 'is_run_now' to be a bool")
52
58
  pulumi.set(__self__, "is_run_now", is_run_now)
53
59
  if is_run_once and not isinstance(is_run_once, bool):
54
60
  raise TypeError("Expected argument 'is_run_once' to be a bool")
55
61
  pulumi.set(__self__, "is_run_once", is_run_once)
62
+ if last_updated_by and not isinstance(last_updated_by, str):
63
+ raise TypeError("Expected argument 'last_updated_by' to be a str")
64
+ pulumi.set(__self__, "last_updated_by", last_updated_by)
56
65
  if maintenance_window_schedules and not isinstance(maintenance_window_schedules, list):
57
66
  raise TypeError("Expected argument 'maintenance_window_schedules' to be a list")
58
67
  pulumi.set(__self__, "maintenance_window_schedules", maintenance_window_schedules)
@@ -128,6 +137,14 @@ class GetMonitorResult:
128
137
  """
129
138
  return pulumi.get(self, "configurations")
130
139
 
140
+ @property
141
+ @pulumi.getter(name="createdBy")
142
+ def created_by(self) -> str:
143
+ """
144
+ Name of the user that created the monitor.
145
+ """
146
+ return pulumi.get(self, "created_by")
147
+
131
148
  @property
132
149
  @pulumi.getter(name="definedTags")
133
150
  def defined_tags(self) -> Mapping[str, Any]:
@@ -160,6 +177,14 @@ class GetMonitorResult:
160
177
  """
161
178
  return pulumi.get(self, "id")
162
179
 
180
+ @property
181
+ @pulumi.getter(name="isIpv6")
182
+ def is_ipv6(self) -> bool:
183
+ """
184
+ If enabled, domain name will resolve to an IPv6 address.
185
+ """
186
+ return pulumi.get(self, "is_ipv6")
187
+
163
188
  @property
164
189
  @pulumi.getter(name="isRunNow")
165
190
  def is_run_now(self) -> bool:
@@ -176,6 +201,14 @@ class GetMonitorResult:
176
201
  """
177
202
  return pulumi.get(self, "is_run_once")
178
203
 
204
+ @property
205
+ @pulumi.getter(name="lastUpdatedBy")
206
+ def last_updated_by(self) -> str:
207
+ """
208
+ Name of the user that recently updated the monitor.
209
+ """
210
+ return pulumi.get(self, "last_updated_by")
211
+
179
212
  @property
180
213
  @pulumi.getter(name="maintenanceWindowSchedules")
181
214
  def maintenance_window_schedules(self) -> Sequence['outputs.GetMonitorMaintenanceWindowScheduleResult']:
@@ -249,7 +282,7 @@ class GetMonitorResult:
249
282
  @pulumi.getter
250
283
  def target(self) -> str:
251
284
  """
252
- 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
285
+ 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.
253
286
  """
254
287
  return pulumi.get(self, "target")
255
288
 
@@ -289,7 +322,7 @@ class GetMonitorResult:
289
322
  @pulumi.getter(name="vantagePoints")
290
323
  def vantage_points(self) -> Sequence['outputs.GetMonitorVantagePointResult']:
291
324
  """
292
- List of public and dedicated vantage points where the monitor is running.
325
+ List of public, dedicated and onPremise vantage points where the monitor is running.
293
326
  """
294
327
  return pulumi.get(self, "vantage_points")
295
328
 
@@ -304,12 +337,15 @@ class AwaitableGetMonitorResult(GetMonitorResult):
304
337
  availability_configurations=self.availability_configurations,
305
338
  batch_interval_in_seconds=self.batch_interval_in_seconds,
306
339
  configurations=self.configurations,
340
+ created_by=self.created_by,
307
341
  defined_tags=self.defined_tags,
308
342
  display_name=self.display_name,
309
343
  freeform_tags=self.freeform_tags,
310
344
  id=self.id,
345
+ is_ipv6=self.is_ipv6,
311
346
  is_run_now=self.is_run_now,
312
347
  is_run_once=self.is_run_once,
348
+ last_updated_by=self.last_updated_by,
313
349
  maintenance_window_schedules=self.maintenance_window_schedules,
314
350
  monitor_id=self.monitor_id,
315
351
  monitor_type=self.monitor_type,
@@ -360,12 +396,15 @@ def get_monitor(apm_domain_id: Optional[str] = None,
360
396
  availability_configurations=pulumi.get(__ret__, 'availability_configurations'),
361
397
  batch_interval_in_seconds=pulumi.get(__ret__, 'batch_interval_in_seconds'),
362
398
  configurations=pulumi.get(__ret__, 'configurations'),
399
+ created_by=pulumi.get(__ret__, 'created_by'),
363
400
  defined_tags=pulumi.get(__ret__, 'defined_tags'),
364
401
  display_name=pulumi.get(__ret__, 'display_name'),
365
402
  freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
366
403
  id=pulumi.get(__ret__, 'id'),
404
+ is_ipv6=pulumi.get(__ret__, 'is_ipv6'),
367
405
  is_run_now=pulumi.get(__ret__, 'is_run_now'),
368
406
  is_run_once=pulumi.get(__ret__, 'is_run_once'),
407
+ last_updated_by=pulumi.get(__ret__, 'last_updated_by'),
369
408
  maintenance_window_schedules=pulumi.get(__ret__, 'maintenance_window_schedules'),
370
409
  monitor_id=pulumi.get(__ret__, 'monitor_id'),
371
410
  monitor_type=pulumi.get(__ret__, 'monitor_type'),
@@ -187,7 +187,7 @@ def get_monitors(apm_domain_id: Optional[str] = None,
187
187
  :param str display_name: A filter to return only the resources that match the entire display name.
188
188
  :param bool is_maintenance_window_active: A filter to return the monitors whose maintenance window is currently active.
189
189
  :param bool is_maintenance_window_set: A filter to return the monitors whose maintenance window is set.
190
- :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.
190
+ :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.
191
191
  :param str script_id: A filter to return only monitors using scriptId.
192
192
  :param str status: A filter to return only monitors that match the status given.
193
193
  :param str vantage_point: The name of the public or dedicated vantage point.
@@ -256,7 +256,7 @@ def get_monitors_output(apm_domain_id: Optional[pulumi.Input[str]] = None,
256
256
  :param str display_name: A filter to return only the resources that match the entire display name.
257
257
  :param bool is_maintenance_window_active: A filter to return the monitors whose maintenance window is currently active.
258
258
  :param bool is_maintenance_window_set: A filter to return the monitors whose maintenance window is set.
259
- :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.
259
+ :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.
260
260
  :param str script_id: A filter to return only monitors using scriptId.
261
261
  :param str status: A filter to return only monitors that match the status given.
262
262
  :param str vantage_point: The name of the public or dedicated vantage point.