pulumi-oci 2.27.0a1742279484__py3-none-any.whl → 2.28.0a1742538577__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 (84) hide show
  1. pulumi_oci/__init__.py +144 -0
  2. pulumi_oci/containerengine/_inputs.py +9 -9
  3. pulumi_oci/containerengine/outputs.py +18 -22
  4. pulumi_oci/core/__init__.py +7 -0
  5. pulumi_oci/core/_inputs.py +147 -0
  6. pulumi_oci/core/compute_gpu_memory_cluster.py +706 -0
  7. pulumi_oci/core/compute_gpu_memory_fabric.py +667 -0
  8. pulumi_oci/core/get_compute_gpu_memory_cluster.py +281 -0
  9. pulumi_oci/core/get_compute_gpu_memory_cluster_instances.py +144 -0
  10. pulumi_oci/core/get_compute_gpu_memory_clusters.py +232 -0
  11. pulumi_oci/core/get_compute_gpu_memory_fabric.py +309 -0
  12. pulumi_oci/core/get_compute_gpu_memory_fabrics.py +289 -0
  13. pulumi_oci/core/outputs.py +582 -0
  14. pulumi_oci/database/__init__.py +2 -0
  15. pulumi_oci/database/_inputs.py +2211 -24
  16. pulumi_oci/database/autonomous_container_database.py +305 -52
  17. pulumi_oci/database/autonomous_container_database_add_standby.py +2183 -0
  18. pulumi_oci/database/autonomous_container_database_dataguard_association.py +80 -40
  19. pulumi_oci/database/autonomous_container_database_snapshot_standby.py +322 -0
  20. pulumi_oci/database/get_autonomous_container_database.py +103 -2
  21. pulumi_oci/database/get_autonomous_container_database_dataguard_association.py +12 -1
  22. pulumi_oci/database/get_autonomous_container_databases.py +1 -1
  23. pulumi_oci/database/get_maintenance_run.py +15 -1
  24. pulumi_oci/database/maintenance_run.py +28 -0
  25. pulumi_oci/database/outputs.py +2747 -225
  26. pulumi_oci/goldengate/_inputs.py +128 -0
  27. pulumi_oci/goldengate/deployment.py +103 -0
  28. pulumi_oci/goldengate/deployment_backup.py +28 -0
  29. pulumi_oci/goldengate/get_deployment.py +43 -1
  30. pulumi_oci/goldengate/get_deployment_backup.py +15 -1
  31. pulumi_oci/goldengate/outputs.py +289 -0
  32. pulumi_oci/osmanagementhub/__init__.py +18 -0
  33. pulumi_oci/osmanagementhub/_inputs.py +677 -12
  34. pulumi_oci/osmanagementhub/event.py +8 -0
  35. pulumi_oci/osmanagementhub/get_entitlements.py +2 -2
  36. pulumi_oci/osmanagementhub/get_event.py +2 -0
  37. pulumi_oci/osmanagementhub/get_events.py +2 -0
  38. pulumi_oci/osmanagementhub/get_managed_instance.py +30 -2
  39. pulumi_oci/osmanagementhub/get_managed_instances.py +75 -63
  40. pulumi_oci/osmanagementhub/get_management_station.py +116 -4
  41. pulumi_oci/osmanagementhub/get_management_station_mirrors.py +1 -1
  42. pulumi_oci/osmanagementhub/get_management_stations.py +47 -4
  43. pulumi_oci/osmanagementhub/get_profile.py +32 -4
  44. pulumi_oci/osmanagementhub/get_profile_available_software_sources.py +207 -0
  45. pulumi_oci/osmanagementhub/get_profile_version.py +388 -0
  46. pulumi_oci/osmanagementhub/get_profiles.py +63 -3
  47. pulumi_oci/osmanagementhub/get_scheduled_job.py +15 -1
  48. pulumi_oci/osmanagementhub/get_software_package.py +2 -2
  49. pulumi_oci/osmanagementhub/get_software_package_software_source.py +7 -7
  50. pulumi_oci/osmanagementhub/get_software_source.py +89 -5
  51. pulumi_oci/osmanagementhub/get_software_source_available_software_packages.py +209 -0
  52. pulumi_oci/osmanagementhub/get_software_source_manifest.py +127 -0
  53. pulumi_oci/osmanagementhub/get_software_sources.py +30 -8
  54. pulumi_oci/osmanagementhub/lifecycle_stage_attach_managed_instances_management.py +6 -39
  55. pulumi_oci/osmanagementhub/lifecycle_stage_detach_managed_instances_management.py +6 -39
  56. pulumi_oci/osmanagementhub/lifecycle_stage_reboot_management.py +297 -0
  57. pulumi_oci/osmanagementhub/managed_instance.py +56 -0
  58. pulumi_oci/osmanagementhub/managed_instance_group_install_packages_management.py +49 -0
  59. pulumi_oci/osmanagementhub/managed_instance_group_reboot_management.py +297 -0
  60. pulumi_oci/osmanagementhub/managed_instance_reboot_management.py +299 -0
  61. pulumi_oci/osmanagementhub/management_station.py +251 -4
  62. pulumi_oci/osmanagementhub/management_station_associate_managed_instances_management.py +298 -0
  63. pulumi_oci/osmanagementhub/management_station_refresh_management.py +2 -2
  64. pulumi_oci/osmanagementhub/management_station_synchronize_mirrors_management.py +9 -9
  65. pulumi_oci/osmanagementhub/outputs.py +1349 -50
  66. pulumi_oci/osmanagementhub/profile.py +70 -14
  67. pulumi_oci/osmanagementhub/profile_attach_lifecycle_stage_management.py +269 -0
  68. pulumi_oci/osmanagementhub/profile_attach_managed_instance_group_management.py +269 -0
  69. pulumi_oci/osmanagementhub/profile_attach_management_station_management.py +269 -0
  70. pulumi_oci/osmanagementhub/profile_attach_software_sources_management.py +269 -0
  71. pulumi_oci/osmanagementhub/profile_detach_software_sources_management.py +269 -0
  72. pulumi_oci/osmanagementhub/scheduled_job.py +72 -21
  73. pulumi_oci/osmanagementhub/software_source.py +365 -26
  74. pulumi_oci/osmanagementhub/software_source_add_packages_management.py +67 -10
  75. pulumi_oci/osmanagementhub/software_source_generate_metadata_management.py +217 -0
  76. pulumi_oci/osmanagementhub/software_source_manifest.py +268 -0
  77. pulumi_oci/osmanagementhub/software_source_remove_packages_management.py +277 -0
  78. pulumi_oci/osmanagementhub/software_source_replace_packages_management.py +277 -0
  79. pulumi_oci/osmanagementhub/work_request_rerun_management.py +325 -0
  80. pulumi_oci/pulumi-plugin.json +1 -1
  81. {pulumi_oci-2.27.0a1742279484.dist-info → pulumi_oci-2.28.0a1742538577.dist-info}/METADATA +2 -2
  82. {pulumi_oci-2.27.0a1742279484.dist-info → pulumi_oci-2.28.0a1742538577.dist-info}/RECORD +84 -57
  83. {pulumi_oci-2.27.0a1742279484.dist-info → pulumi_oci-2.28.0a1742538577.dist-info}/WHEEL +1 -1
  84. {pulumi_oci-2.27.0a1742279484.dist-info → pulumi_oci-2.28.0a1742538577.dist-info}/top_level.txt +0 -0
@@ -148,6 +148,8 @@ class _EventState:
148
148
  * `SOFTWARE_SOURCE` - Software source
149
149
  * `AGENT` - Agent
150
150
  * `MANAGEMENT_STATION` - Management Station
151
+ * `SYSADMIN` - Used to identify attempts on fixing agent errors on the instance
152
+ * `REBOOT` - Reboot
151
153
  """
152
154
  if compartment_id is not None:
153
155
  pulumi.set(__self__, "compartment_id", compartment_id)
@@ -393,6 +395,8 @@ class _EventState:
393
395
  * `SOFTWARE_SOURCE` - Software source
394
396
  * `AGENT` - Agent
395
397
  * `MANAGEMENT_STATION` - Management Station
398
+ * `SYSADMIN` - Used to identify attempts on fixing agent errors on the instance
399
+ * `REBOOT` - Reboot
396
400
  """
397
401
  return pulumi.get(self, "type")
398
402
 
@@ -564,6 +568,8 @@ class Event(pulumi.CustomResource):
564
568
  * `SOFTWARE_SOURCE` - Software source
565
569
  * `AGENT` - Agent
566
570
  * `MANAGEMENT_STATION` - Management Station
571
+ * `SYSADMIN` - Used to identify attempts on fixing agent errors on the instance
572
+ * `REBOOT` - Reboot
567
573
  """
568
574
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
569
575
 
@@ -733,6 +739,8 @@ class Event(pulumi.CustomResource):
733
739
  * `SOFTWARE_SOURCE` - Software source
734
740
  * `AGENT` - Agent
735
741
  * `MANAGEMENT_STATION` - Management Station
742
+ * `SYSADMIN` - Used to identify attempts on fixing agent errors on the instance
743
+ * `REBOOT` - Reboot
736
744
  """
737
745
  return pulumi.get(self, "type")
738
746
 
@@ -132,7 +132,7 @@ def get_entitlements(compartment_id: Optional[str] = None,
132
132
 
133
133
 
134
134
  :param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. This parameter is required and returns only resources contained within the specified compartment.
135
- :param str csi: A filter to return entitlements that match the given CSI.
135
+ :param str csi: A filter to return entitlements that match the given customer support identifier (CSI).
136
136
  :param str vendor_name: A filter to return only resources that match the given vendor name.
137
137
  """
138
138
  __args__ = dict()
@@ -174,7 +174,7 @@ def get_entitlements_output(compartment_id: Optional[pulumi.Input[str]] = None,
174
174
 
175
175
 
176
176
  :param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. This parameter is required and returns only resources contained within the specified compartment.
177
- :param str csi: A filter to return entitlements that match the given CSI.
177
+ :param str csi: A filter to return entitlements that match the given customer support identifier (CSI).
178
178
  :param str vendor_name: A filter to return only resources that match the given vendor name.
179
179
  """
180
180
  __args__ = dict()
@@ -229,6 +229,8 @@ class GetEventResult:
229
229
  * `SOFTWARE_SOURCE` - Software source
230
230
  * `AGENT` - Agent
231
231
  * `MANAGEMENT_STATION` - Management Station
232
+ * `SYSADMIN` - Used to identify attempts on fixing agent errors on the instance
233
+ * `REBOOT` - Reboot
232
234
  """
233
235
  return pulumi.get(self, "type")
234
236
 
@@ -166,6 +166,8 @@ class GetEventsResult:
166
166
  * `SOFTWARE_SOURCE` - Software source
167
167
  * `AGENT` - Agent
168
168
  * `MANAGEMENT_STATION` - Management Station
169
+ * `SYSADMIN` - Used to identify attempts on fixing agent errors on the instance
170
+ * `REBOOT` - Reboot
169
171
  """
170
172
  return pulumi.get(self, "types")
171
173
 
@@ -27,7 +27,10 @@ class GetManagedInstanceResult:
27
27
  """
28
28
  A collection of values returned by getManagedInstance.
29
29
  """
30
- def __init__(__self__, architecture=None, autonomous_settings=None, bug_updates_available=None, compartment_id=None, description=None, display_name=None, enhancement_updates_available=None, id=None, installed_packages=None, installed_windows_updates=None, is_managed_by_autonomous_linux=None, is_management_station=None, is_reboot_required=None, ksplice_effective_kernel_version=None, lifecycle_environments=None, lifecycle_stages=None, location=None, managed_instance_groups=None, managed_instance_id=None, notification_topic_id=None, os_family=None, os_kernel_version=None, os_name=None, os_version=None, other_updates_available=None, primary_management_station_id=None, profile=None, scheduled_job_count=None, secondary_management_station_id=None, security_updates_available=None, software_sources=None, status=None, tenancy_id=None, time_created=None, time_last_boot=None, time_last_checkin=None, time_updated=None, updates_available=None, work_request_count=None):
30
+ def __init__(__self__, agent_version=None, architecture=None, autonomous_settings=None, bug_updates_available=None, compartment_id=None, description=None, display_name=None, enhancement_updates_available=None, id=None, installed_packages=None, installed_windows_updates=None, is_managed_by_autonomous_linux=None, is_management_station=None, is_reboot_required=None, ksplice_effective_kernel_version=None, lifecycle_environments=None, lifecycle_stages=None, location=None, managed_instance_groups=None, managed_instance_id=None, notification_topic_id=None, os_family=None, os_kernel_version=None, os_name=None, os_version=None, other_updates_available=None, primary_management_station_id=None, profile=None, profile_version=None, scheduled_job_count=None, secondary_management_station_id=None, security_updates_available=None, software_sources=None, status=None, tenancy_id=None, time_created=None, time_last_boot=None, time_last_checkin=None, time_updated=None, updates_available=None, work_request_count=None):
31
+ if agent_version and not isinstance(agent_version, str):
32
+ raise TypeError("Expected argument 'agent_version' to be a str")
33
+ pulumi.set(__self__, "agent_version", agent_version)
31
34
  if architecture and not isinstance(architecture, str):
32
35
  raise TypeError("Expected argument 'architecture' to be a str")
33
36
  pulumi.set(__self__, "architecture", architecture)
@@ -109,6 +112,9 @@ class GetManagedInstanceResult:
109
112
  if profile and not isinstance(profile, str):
110
113
  raise TypeError("Expected argument 'profile' to be a str")
111
114
  pulumi.set(__self__, "profile", profile)
115
+ if profile_version and not isinstance(profile_version, str):
116
+ raise TypeError("Expected argument 'profile_version' to be a str")
117
+ pulumi.set(__self__, "profile_version", profile_version)
112
118
  if scheduled_job_count and not isinstance(scheduled_job_count, int):
113
119
  raise TypeError("Expected argument 'scheduled_job_count' to be a int")
114
120
  pulumi.set(__self__, "scheduled_job_count", scheduled_job_count)
@@ -146,6 +152,14 @@ class GetManagedInstanceResult:
146
152
  raise TypeError("Expected argument 'work_request_count' to be a int")
147
153
  pulumi.set(__self__, "work_request_count", work_request_count)
148
154
 
155
+ @property
156
+ @pulumi.getter(name="agentVersion")
157
+ def agent_version(self) -> str:
158
+ """
159
+ The version of osmh-agent running on the managed instance
160
+ """
161
+ return pulumi.get(self, "agent_version")
162
+
149
163
  @property
150
164
  @pulumi.getter
151
165
  def architecture(self) -> str:
@@ -359,6 +373,14 @@ class GetManagedInstanceResult:
359
373
  """
360
374
  return pulumi.get(self, "profile")
361
375
 
376
+ @property
377
+ @pulumi.getter(name="profileVersion")
378
+ def profile_version(self) -> str:
379
+ """
380
+ The version of the profile that was used to register this instance with the service.
381
+ """
382
+ return pulumi.get(self, "profile_version")
383
+
362
384
  @property
363
385
  @pulumi.getter(name="scheduledJobCount")
364
386
  def scheduled_job_count(self) -> int:
@@ -371,7 +393,7 @@ class GetManagedInstanceResult:
371
393
  @pulumi.getter(name="secondaryManagementStationId")
372
394
  def secondary_management_station_id(self) -> str:
373
395
  """
374
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management station for the instance to use as secondary managment station.
396
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management station for the instance to use as secondary management station.
375
397
  """
376
398
  return pulumi.get(self, "secondary_management_station_id")
377
399
 
@@ -462,6 +484,7 @@ class AwaitableGetManagedInstanceResult(GetManagedInstanceResult):
462
484
  if False:
463
485
  yield self
464
486
  return GetManagedInstanceResult(
487
+ agent_version=self.agent_version,
465
488
  architecture=self.architecture,
466
489
  autonomous_settings=self.autonomous_settings,
467
490
  bug_updates_available=self.bug_updates_available,
@@ -489,6 +512,7 @@ class AwaitableGetManagedInstanceResult(GetManagedInstanceResult):
489
512
  other_updates_available=self.other_updates_available,
490
513
  primary_management_station_id=self.primary_management_station_id,
491
514
  profile=self.profile,
515
+ profile_version=self.profile_version,
492
516
  scheduled_job_count=self.scheduled_job_count,
493
517
  secondary_management_station_id=self.secondary_management_station_id,
494
518
  security_updates_available=self.security_updates_available,
@@ -528,6 +552,7 @@ def get_managed_instance(managed_instance_id: Optional[str] = None,
528
552
  __ret__ = pulumi.runtime.invoke('oci:OsManagementHub/getManagedInstance:getManagedInstance', __args__, opts=opts, typ=GetManagedInstanceResult).value
529
553
 
530
554
  return AwaitableGetManagedInstanceResult(
555
+ agent_version=pulumi.get(__ret__, 'agent_version'),
531
556
  architecture=pulumi.get(__ret__, 'architecture'),
532
557
  autonomous_settings=pulumi.get(__ret__, 'autonomous_settings'),
533
558
  bug_updates_available=pulumi.get(__ret__, 'bug_updates_available'),
@@ -555,6 +580,7 @@ def get_managed_instance(managed_instance_id: Optional[str] = None,
555
580
  other_updates_available=pulumi.get(__ret__, 'other_updates_available'),
556
581
  primary_management_station_id=pulumi.get(__ret__, 'primary_management_station_id'),
557
582
  profile=pulumi.get(__ret__, 'profile'),
583
+ profile_version=pulumi.get(__ret__, 'profile_version'),
558
584
  scheduled_job_count=pulumi.get(__ret__, 'scheduled_job_count'),
559
585
  secondary_management_station_id=pulumi.get(__ret__, 'secondary_management_station_id'),
560
586
  security_updates_available=pulumi.get(__ret__, 'security_updates_available'),
@@ -591,6 +617,7 @@ def get_managed_instance_output(managed_instance_id: Optional[pulumi.Input[str]]
591
617
  opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
592
618
  __ret__ = pulumi.runtime.invoke_output('oci:OsManagementHub/getManagedInstance:getManagedInstance', __args__, opts=opts, typ=GetManagedInstanceResult)
593
619
  return __ret__.apply(lambda __response__: GetManagedInstanceResult(
620
+ agent_version=pulumi.get(__response__, 'agent_version'),
594
621
  architecture=pulumi.get(__response__, 'architecture'),
595
622
  autonomous_settings=pulumi.get(__response__, 'autonomous_settings'),
596
623
  bug_updates_available=pulumi.get(__response__, 'bug_updates_available'),
@@ -618,6 +645,7 @@ def get_managed_instance_output(managed_instance_id: Optional[pulumi.Input[str]]
618
645
  other_updates_available=pulumi.get(__response__, 'other_updates_available'),
619
646
  primary_management_station_id=pulumi.get(__response__, 'primary_management_station_id'),
620
647
  profile=pulumi.get(__response__, 'profile'),
648
+ profile_version=pulumi.get(__response__, 'profile_version'),
621
649
  scheduled_job_count=pulumi.get(__response__, 'scheduled_job_count'),
622
650
  secondary_management_station_id=pulumi.get(__response__, 'secondary_management_station_id'),
623
651
  security_updates_available=pulumi.get(__response__, 'security_updates_available'),
@@ -28,10 +28,13 @@ class GetManagedInstancesResult:
28
28
  """
29
29
  A collection of values returned by getManagedInstances.
30
30
  """
31
- def __init__(__self__, advisory_names=None, arch_types=None, compartment_id=None, display_name_contains=None, display_names=None, filters=None, group=None, group_not_equal_to=None, id=None, is_attached_to_group_or_lifecycle_stage=None, is_managed_by_autonomous_linux=None, is_management_station=None, is_profile_attached=None, lifecycle_environment=None, lifecycle_environment_not_equal_to=None, lifecycle_stage=None, lifecycle_stage_not_equal_to=None, location_not_equal_tos=None, locations=None, managed_instance_collections=None, managed_instance_id=None, os_families=None, profile_not_equal_tos=None, profiles=None, software_source_id=None, statuses=None):
31
+ def __init__(__self__, advisory_names=None, agent_version=None, arch_types=None, compartment_id=None, display_name_contains=None, display_names=None, filters=None, group=None, group_not_equal_to=None, id=None, is_attached_to_group_or_lifecycle_stage=None, is_managed_by_autonomous_linux=None, is_management_station=None, is_profile_attached=None, is_reboot_required=None, lifecycle_environment=None, lifecycle_environment_not_equal_to=None, lifecycle_stage=None, lifecycle_stage_not_equal_to=None, location_not_equal_tos=None, locations=None, managed_instance_collections=None, managed_instance_id=None, management_station_not_equal_tos=None, management_stations=None, os_families=None, profile_not_equal_tos=None, profiles=None, software_source_id=None, statuses=None):
32
32
  if advisory_names and not isinstance(advisory_names, list):
33
33
  raise TypeError("Expected argument 'advisory_names' to be a list")
34
34
  pulumi.set(__self__, "advisory_names", advisory_names)
35
+ if agent_version and not isinstance(agent_version, str):
36
+ raise TypeError("Expected argument 'agent_version' to be a str")
37
+ pulumi.set(__self__, "agent_version", agent_version)
35
38
  if arch_types and not isinstance(arch_types, list):
36
39
  raise TypeError("Expected argument 'arch_types' to be a list")
37
40
  pulumi.set(__self__, "arch_types", arch_types)
@@ -68,6 +71,9 @@ class GetManagedInstancesResult:
68
71
  if is_profile_attached and not isinstance(is_profile_attached, bool):
69
72
  raise TypeError("Expected argument 'is_profile_attached' to be a bool")
70
73
  pulumi.set(__self__, "is_profile_attached", is_profile_attached)
74
+ if is_reboot_required and not isinstance(is_reboot_required, bool):
75
+ raise TypeError("Expected argument 'is_reboot_required' to be a bool")
76
+ pulumi.set(__self__, "is_reboot_required", is_reboot_required)
71
77
  if lifecycle_environment and not isinstance(lifecycle_environment, str):
72
78
  raise TypeError("Expected argument 'lifecycle_environment' to be a str")
73
79
  pulumi.set(__self__, "lifecycle_environment", lifecycle_environment)
@@ -92,6 +98,12 @@ class GetManagedInstancesResult:
92
98
  if managed_instance_id and not isinstance(managed_instance_id, str):
93
99
  raise TypeError("Expected argument 'managed_instance_id' to be a str")
94
100
  pulumi.set(__self__, "managed_instance_id", managed_instance_id)
101
+ if management_station_not_equal_tos and not isinstance(management_station_not_equal_tos, list):
102
+ raise TypeError("Expected argument 'management_station_not_equal_tos' to be a list")
103
+ pulumi.set(__self__, "management_station_not_equal_tos", management_station_not_equal_tos)
104
+ if management_stations and not isinstance(management_stations, list):
105
+ raise TypeError("Expected argument 'management_stations' to be a list")
106
+ pulumi.set(__self__, "management_stations", management_stations)
95
107
  if os_families and not isinstance(os_families, list):
96
108
  raise TypeError("Expected argument 'os_families' to be a list")
97
109
  pulumi.set(__self__, "os_families", os_families)
@@ -113,6 +125,14 @@ class GetManagedInstancesResult:
113
125
  def advisory_names(self) -> Optional[Sequence[str]]:
114
126
  return pulumi.get(self, "advisory_names")
115
127
 
128
+ @property
129
+ @pulumi.getter(name="agentVersion")
130
+ def agent_version(self) -> Optional[str]:
131
+ """
132
+ The version of osmh-agent running on the managed instance
133
+ """
134
+ return pulumi.get(self, "agent_version")
135
+
116
136
  @property
117
137
  @pulumi.getter(name="archTypes")
118
138
  def arch_types(self) -> Optional[Sequence[str]]:
@@ -188,6 +208,14 @@ class GetManagedInstancesResult:
188
208
  def is_profile_attached(self) -> Optional[bool]:
189
209
  return pulumi.get(self, "is_profile_attached")
190
210
 
211
+ @property
212
+ @pulumi.getter(name="isRebootRequired")
213
+ def is_reboot_required(self) -> Optional[bool]:
214
+ """
215
+ Indicates whether a reboot is required to complete installation of updates.
216
+ """
217
+ return pulumi.get(self, "is_reboot_required")
218
+
191
219
  @property
192
220
  @pulumi.getter(name="lifecycleEnvironment")
193
221
  def lifecycle_environment(self) -> Optional[str]:
@@ -240,6 +268,16 @@ class GetManagedInstancesResult:
240
268
  def managed_instance_id(self) -> Optional[str]:
241
269
  return pulumi.get(self, "managed_instance_id")
242
270
 
271
+ @property
272
+ @pulumi.getter(name="managementStationNotEqualTos")
273
+ def management_station_not_equal_tos(self) -> Optional[Sequence[str]]:
274
+ return pulumi.get(self, "management_station_not_equal_tos")
275
+
276
+ @property
277
+ @pulumi.getter(name="managementStations")
278
+ def management_stations(self) -> Optional[Sequence[str]]:
279
+ return pulumi.get(self, "management_stations")
280
+
243
281
  @property
244
282
  @pulumi.getter(name="osFamilies")
245
283
  def os_families(self) -> Optional[Sequence[str]]:
@@ -282,6 +320,7 @@ class AwaitableGetManagedInstancesResult(GetManagedInstancesResult):
282
320
  yield self
283
321
  return GetManagedInstancesResult(
284
322
  advisory_names=self.advisory_names,
323
+ agent_version=self.agent_version,
285
324
  arch_types=self.arch_types,
286
325
  compartment_id=self.compartment_id,
287
326
  display_name_contains=self.display_name_contains,
@@ -294,6 +333,7 @@ class AwaitableGetManagedInstancesResult(GetManagedInstancesResult):
294
333
  is_managed_by_autonomous_linux=self.is_managed_by_autonomous_linux,
295
334
  is_management_station=self.is_management_station,
296
335
  is_profile_attached=self.is_profile_attached,
336
+ is_reboot_required=self.is_reboot_required,
297
337
  lifecycle_environment=self.lifecycle_environment,
298
338
  lifecycle_environment_not_equal_to=self.lifecycle_environment_not_equal_to,
299
339
  lifecycle_stage=self.lifecycle_stage,
@@ -302,6 +342,8 @@ class AwaitableGetManagedInstancesResult(GetManagedInstancesResult):
302
342
  locations=self.locations,
303
343
  managed_instance_collections=self.managed_instance_collections,
304
344
  managed_instance_id=self.managed_instance_id,
345
+ management_station_not_equal_tos=self.management_station_not_equal_tos,
346
+ management_stations=self.management_stations,
305
347
  os_families=self.os_families,
306
348
  profile_not_equal_tos=self.profile_not_equal_tos,
307
349
  profiles=self.profiles,
@@ -310,6 +352,7 @@ class AwaitableGetManagedInstancesResult(GetManagedInstancesResult):
310
352
 
311
353
 
312
354
  def get_managed_instances(advisory_names: Optional[Sequence[str]] = None,
355
+ agent_version: Optional[str] = None,
313
356
  arch_types: Optional[Sequence[str]] = None,
314
357
  compartment_id: Optional[str] = None,
315
358
  display_name_contains: Optional[str] = None,
@@ -321,6 +364,7 @@ def get_managed_instances(advisory_names: Optional[Sequence[str]] = None,
321
364
  is_managed_by_autonomous_linux: Optional[bool] = None,
322
365
  is_management_station: Optional[bool] = None,
323
366
  is_profile_attached: Optional[bool] = None,
367
+ is_reboot_required: Optional[bool] = None,
324
368
  lifecycle_environment: Optional[str] = None,
325
369
  lifecycle_environment_not_equal_to: Optional[str] = None,
326
370
  lifecycle_stage: Optional[str] = None,
@@ -328,6 +372,8 @@ def get_managed_instances(advisory_names: Optional[Sequence[str]] = None,
328
372
  location_not_equal_tos: Optional[Sequence[str]] = None,
329
373
  locations: Optional[Sequence[str]] = None,
330
374
  managed_instance_id: Optional[str] = None,
375
+ management_station_not_equal_tos: Optional[Sequence[str]] = None,
376
+ management_stations: Optional[Sequence[str]] = None,
331
377
  os_families: Optional[Sequence[str]] = None,
332
378
  profile_not_equal_tos: Optional[Sequence[str]] = None,
333
379
  profiles: Optional[Sequence[str]] = None,
@@ -339,39 +385,9 @@ def get_managed_instances(advisory_names: Optional[Sequence[str]] = None,
339
385
 
340
386
  Lists managed instances that match the specified compartment or managed instance OCID. Filter the list against a variety of criteria including but not limited to its name, status, architecture, and OS version.
341
387
 
342
- ## Example Usage
343
-
344
- ```python
345
- import pulumi
346
- import pulumi_oci as oci
347
-
348
- test_managed_instances = oci.OsManagementHub.get_managed_instances(advisory_names=managed_instance_advisory_name,
349
- arch_types=managed_instance_arch_type,
350
- compartment_id=compartment_id,
351
- display_names=managed_instance_display_name,
352
- display_name_contains=managed_instance_display_name_contains,
353
- group=managed_instance_group,
354
- group_not_equal_to=managed_instance_group_not_equal_to,
355
- is_attached_to_group_or_lifecycle_stage=managed_instance_is_attached_to_group_or_lifecycle_stage,
356
- is_managed_by_autonomous_linux=managed_instance_is_managed_by_autonomous_linux,
357
- is_management_station=managed_instance_is_management_station,
358
- is_profile_attached=managed_instance_is_profile_attached,
359
- lifecycle_environment=managed_instance_lifecycle_environment,
360
- lifecycle_environment_not_equal_to=managed_instance_lifecycle_environment_not_equal_to,
361
- lifecycle_stage=managed_instance_lifecycle_stage,
362
- lifecycle_stage_not_equal_to=managed_instance_lifecycle_stage_not_equal_to,
363
- locations=managed_instance_location,
364
- location_not_equal_tos=managed_instance_location_not_equal_to,
365
- managed_instance_id=test_managed_instance["id"],
366
- os_families=managed_instance_os_family,
367
- profiles=managed_instance_profile,
368
- profile_not_equal_tos=managed_instance_profile_not_equal_to,
369
- software_source_id=test_software_source["id"],
370
- statuses=managed_instance_status)
371
- ```
372
-
373
388
 
374
389
  :param Sequence[str] advisory_names: The assigned erratum name. It's unique and not changeable. Example: `ELSA-2020-5804`
390
+ :param str agent_version: A filter to return only managed instances with the specified version of osmh-agent running.
375
391
  :param Sequence[str] arch_types: A filter to return only instances whose architecture type matches the given architecture.
376
392
  :param str compartment_id: The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
377
393
  :param str display_name_contains: A filter to return resources that may partially match the given display name.
@@ -382,6 +398,7 @@ def get_managed_instances(advisory_names: Optional[Sequence[str]] = None,
382
398
  :param bool is_managed_by_autonomous_linux: Indicates whether to list only resources managed by the Autonomous Linux service.
383
399
  :param bool is_management_station: A filter to return only managed instances that are acting as management stations.
384
400
  :param bool is_profile_attached: A filter to return only managed instances with a registration profile attached.
401
+ :param bool is_reboot_required: A filter to return only managed instances that require a reboot to install updates.
385
402
  :param str lifecycle_environment: A filter to return only managed instances in a specific lifecycle environment.
386
403
  :param str lifecycle_environment_not_equal_to: A filter to return only managed instances that aren't in a specific lifecycle environment.
387
404
  :param str lifecycle_stage: A filter to return only managed instances that are associated with the specified lifecycle environment.
@@ -389,6 +406,8 @@ def get_managed_instances(advisory_names: Optional[Sequence[str]] = None,
389
406
  :param Sequence[str] location_not_equal_tos: A filter to return only resources whose location does not match the given value.
390
407
  :param Sequence[str] locations: A filter to return only resources whose location matches the given value.
391
408
  :param str managed_instance_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the managed instance. This filter returns resources associated with this managed instance.
409
+ :param Sequence[str] management_station_not_equal_tos: A filter to return resources that aren't associated with the specified management station [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
410
+ :param Sequence[str] management_stations: A filter to return resources that are associated with the specified management station [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
392
411
  :param Sequence[str] os_families: A filter to return only resources that match the given operating system family.
393
412
  :param Sequence[str] profile_not_equal_tos: A multi filter to return only managed instances that don't contain the given profile [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
394
413
  :param Sequence[str] profiles: A multi filter to return only managed instances that match the given profile ids.
@@ -397,6 +416,7 @@ def get_managed_instances(advisory_names: Optional[Sequence[str]] = None,
397
416
  """
398
417
  __args__ = dict()
399
418
  __args__['advisoryNames'] = advisory_names
419
+ __args__['agentVersion'] = agent_version
400
420
  __args__['archTypes'] = arch_types
401
421
  __args__['compartmentId'] = compartment_id
402
422
  __args__['displayNameContains'] = display_name_contains
@@ -408,6 +428,7 @@ def get_managed_instances(advisory_names: Optional[Sequence[str]] = None,
408
428
  __args__['isManagedByAutonomousLinux'] = is_managed_by_autonomous_linux
409
429
  __args__['isManagementStation'] = is_management_station
410
430
  __args__['isProfileAttached'] = is_profile_attached
431
+ __args__['isRebootRequired'] = is_reboot_required
411
432
  __args__['lifecycleEnvironment'] = lifecycle_environment
412
433
  __args__['lifecycleEnvironmentNotEqualTo'] = lifecycle_environment_not_equal_to
413
434
  __args__['lifecycleStage'] = lifecycle_stage
@@ -415,6 +436,8 @@ def get_managed_instances(advisory_names: Optional[Sequence[str]] = None,
415
436
  __args__['locationNotEqualTos'] = location_not_equal_tos
416
437
  __args__['locations'] = locations
417
438
  __args__['managedInstanceId'] = managed_instance_id
439
+ __args__['managementStationNotEqualTos'] = management_station_not_equal_tos
440
+ __args__['managementStations'] = management_stations
418
441
  __args__['osFamilies'] = os_families
419
442
  __args__['profileNotEqualTos'] = profile_not_equal_tos
420
443
  __args__['profiles'] = profiles
@@ -425,6 +448,7 @@ def get_managed_instances(advisory_names: Optional[Sequence[str]] = None,
425
448
 
426
449
  return AwaitableGetManagedInstancesResult(
427
450
  advisory_names=pulumi.get(__ret__, 'advisory_names'),
451
+ agent_version=pulumi.get(__ret__, 'agent_version'),
428
452
  arch_types=pulumi.get(__ret__, 'arch_types'),
429
453
  compartment_id=pulumi.get(__ret__, 'compartment_id'),
430
454
  display_name_contains=pulumi.get(__ret__, 'display_name_contains'),
@@ -437,6 +461,7 @@ def get_managed_instances(advisory_names: Optional[Sequence[str]] = None,
437
461
  is_managed_by_autonomous_linux=pulumi.get(__ret__, 'is_managed_by_autonomous_linux'),
438
462
  is_management_station=pulumi.get(__ret__, 'is_management_station'),
439
463
  is_profile_attached=pulumi.get(__ret__, 'is_profile_attached'),
464
+ is_reboot_required=pulumi.get(__ret__, 'is_reboot_required'),
440
465
  lifecycle_environment=pulumi.get(__ret__, 'lifecycle_environment'),
441
466
  lifecycle_environment_not_equal_to=pulumi.get(__ret__, 'lifecycle_environment_not_equal_to'),
442
467
  lifecycle_stage=pulumi.get(__ret__, 'lifecycle_stage'),
@@ -445,12 +470,15 @@ def get_managed_instances(advisory_names: Optional[Sequence[str]] = None,
445
470
  locations=pulumi.get(__ret__, 'locations'),
446
471
  managed_instance_collections=pulumi.get(__ret__, 'managed_instance_collections'),
447
472
  managed_instance_id=pulumi.get(__ret__, 'managed_instance_id'),
473
+ management_station_not_equal_tos=pulumi.get(__ret__, 'management_station_not_equal_tos'),
474
+ management_stations=pulumi.get(__ret__, 'management_stations'),
448
475
  os_families=pulumi.get(__ret__, 'os_families'),
449
476
  profile_not_equal_tos=pulumi.get(__ret__, 'profile_not_equal_tos'),
450
477
  profiles=pulumi.get(__ret__, 'profiles'),
451
478
  software_source_id=pulumi.get(__ret__, 'software_source_id'),
452
479
  statuses=pulumi.get(__ret__, 'statuses'))
453
480
  def get_managed_instances_output(advisory_names: Optional[pulumi.Input[Optional[Sequence[str]]]] = None,
481
+ agent_version: Optional[pulumi.Input[Optional[str]]] = None,
454
482
  arch_types: Optional[pulumi.Input[Optional[Sequence[str]]]] = None,
455
483
  compartment_id: Optional[pulumi.Input[Optional[str]]] = None,
456
484
  display_name_contains: Optional[pulumi.Input[Optional[str]]] = None,
@@ -462,6 +490,7 @@ def get_managed_instances_output(advisory_names: Optional[pulumi.Input[Optional[
462
490
  is_managed_by_autonomous_linux: Optional[pulumi.Input[Optional[bool]]] = None,
463
491
  is_management_station: Optional[pulumi.Input[Optional[bool]]] = None,
464
492
  is_profile_attached: Optional[pulumi.Input[Optional[bool]]] = None,
493
+ is_reboot_required: Optional[pulumi.Input[Optional[bool]]] = None,
465
494
  lifecycle_environment: Optional[pulumi.Input[Optional[str]]] = None,
466
495
  lifecycle_environment_not_equal_to: Optional[pulumi.Input[Optional[str]]] = None,
467
496
  lifecycle_stage: Optional[pulumi.Input[Optional[str]]] = None,
@@ -469,6 +498,8 @@ def get_managed_instances_output(advisory_names: Optional[pulumi.Input[Optional[
469
498
  location_not_equal_tos: Optional[pulumi.Input[Optional[Sequence[str]]]] = None,
470
499
  locations: Optional[pulumi.Input[Optional[Sequence[str]]]] = None,
471
500
  managed_instance_id: Optional[pulumi.Input[Optional[str]]] = None,
501
+ management_station_not_equal_tos: Optional[pulumi.Input[Optional[Sequence[str]]]] = None,
502
+ management_stations: Optional[pulumi.Input[Optional[Sequence[str]]]] = None,
472
503
  os_families: Optional[pulumi.Input[Optional[Sequence[str]]]] = None,
473
504
  profile_not_equal_tos: Optional[pulumi.Input[Optional[Sequence[str]]]] = None,
474
505
  profiles: Optional[pulumi.Input[Optional[Sequence[str]]]] = None,
@@ -480,39 +511,9 @@ def get_managed_instances_output(advisory_names: Optional[pulumi.Input[Optional[
480
511
 
481
512
  Lists managed instances that match the specified compartment or managed instance OCID. Filter the list against a variety of criteria including but not limited to its name, status, architecture, and OS version.
482
513
 
483
- ## Example Usage
484
-
485
- ```python
486
- import pulumi
487
- import pulumi_oci as oci
488
-
489
- test_managed_instances = oci.OsManagementHub.get_managed_instances(advisory_names=managed_instance_advisory_name,
490
- arch_types=managed_instance_arch_type,
491
- compartment_id=compartment_id,
492
- display_names=managed_instance_display_name,
493
- display_name_contains=managed_instance_display_name_contains,
494
- group=managed_instance_group,
495
- group_not_equal_to=managed_instance_group_not_equal_to,
496
- is_attached_to_group_or_lifecycle_stage=managed_instance_is_attached_to_group_or_lifecycle_stage,
497
- is_managed_by_autonomous_linux=managed_instance_is_managed_by_autonomous_linux,
498
- is_management_station=managed_instance_is_management_station,
499
- is_profile_attached=managed_instance_is_profile_attached,
500
- lifecycle_environment=managed_instance_lifecycle_environment,
501
- lifecycle_environment_not_equal_to=managed_instance_lifecycle_environment_not_equal_to,
502
- lifecycle_stage=managed_instance_lifecycle_stage,
503
- lifecycle_stage_not_equal_to=managed_instance_lifecycle_stage_not_equal_to,
504
- locations=managed_instance_location,
505
- location_not_equal_tos=managed_instance_location_not_equal_to,
506
- managed_instance_id=test_managed_instance["id"],
507
- os_families=managed_instance_os_family,
508
- profiles=managed_instance_profile,
509
- profile_not_equal_tos=managed_instance_profile_not_equal_to,
510
- software_source_id=test_software_source["id"],
511
- statuses=managed_instance_status)
512
- ```
513
-
514
514
 
515
515
  :param Sequence[str] advisory_names: The assigned erratum name. It's unique and not changeable. Example: `ELSA-2020-5804`
516
+ :param str agent_version: A filter to return only managed instances with the specified version of osmh-agent running.
516
517
  :param Sequence[str] arch_types: A filter to return only instances whose architecture type matches the given architecture.
517
518
  :param str compartment_id: The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
518
519
  :param str display_name_contains: A filter to return resources that may partially match the given display name.
@@ -523,6 +524,7 @@ def get_managed_instances_output(advisory_names: Optional[pulumi.Input[Optional[
523
524
  :param bool is_managed_by_autonomous_linux: Indicates whether to list only resources managed by the Autonomous Linux service.
524
525
  :param bool is_management_station: A filter to return only managed instances that are acting as management stations.
525
526
  :param bool is_profile_attached: A filter to return only managed instances with a registration profile attached.
527
+ :param bool is_reboot_required: A filter to return only managed instances that require a reboot to install updates.
526
528
  :param str lifecycle_environment: A filter to return only managed instances in a specific lifecycle environment.
527
529
  :param str lifecycle_environment_not_equal_to: A filter to return only managed instances that aren't in a specific lifecycle environment.
528
530
  :param str lifecycle_stage: A filter to return only managed instances that are associated with the specified lifecycle environment.
@@ -530,6 +532,8 @@ def get_managed_instances_output(advisory_names: Optional[pulumi.Input[Optional[
530
532
  :param Sequence[str] location_not_equal_tos: A filter to return only resources whose location does not match the given value.
531
533
  :param Sequence[str] locations: A filter to return only resources whose location matches the given value.
532
534
  :param str managed_instance_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the managed instance. This filter returns resources associated with this managed instance.
535
+ :param Sequence[str] management_station_not_equal_tos: A filter to return resources that aren't associated with the specified management station [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
536
+ :param Sequence[str] management_stations: A filter to return resources that are associated with the specified management station [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
533
537
  :param Sequence[str] os_families: A filter to return only resources that match the given operating system family.
534
538
  :param Sequence[str] profile_not_equal_tos: A multi filter to return only managed instances that don't contain the given profile [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
535
539
  :param Sequence[str] profiles: A multi filter to return only managed instances that match the given profile ids.
@@ -538,6 +542,7 @@ def get_managed_instances_output(advisory_names: Optional[pulumi.Input[Optional[
538
542
  """
539
543
  __args__ = dict()
540
544
  __args__['advisoryNames'] = advisory_names
545
+ __args__['agentVersion'] = agent_version
541
546
  __args__['archTypes'] = arch_types
542
547
  __args__['compartmentId'] = compartment_id
543
548
  __args__['displayNameContains'] = display_name_contains
@@ -549,6 +554,7 @@ def get_managed_instances_output(advisory_names: Optional[pulumi.Input[Optional[
549
554
  __args__['isManagedByAutonomousLinux'] = is_managed_by_autonomous_linux
550
555
  __args__['isManagementStation'] = is_management_station
551
556
  __args__['isProfileAttached'] = is_profile_attached
557
+ __args__['isRebootRequired'] = is_reboot_required
552
558
  __args__['lifecycleEnvironment'] = lifecycle_environment
553
559
  __args__['lifecycleEnvironmentNotEqualTo'] = lifecycle_environment_not_equal_to
554
560
  __args__['lifecycleStage'] = lifecycle_stage
@@ -556,6 +562,8 @@ def get_managed_instances_output(advisory_names: Optional[pulumi.Input[Optional[
556
562
  __args__['locationNotEqualTos'] = location_not_equal_tos
557
563
  __args__['locations'] = locations
558
564
  __args__['managedInstanceId'] = managed_instance_id
565
+ __args__['managementStationNotEqualTos'] = management_station_not_equal_tos
566
+ __args__['managementStations'] = management_stations
559
567
  __args__['osFamilies'] = os_families
560
568
  __args__['profileNotEqualTos'] = profile_not_equal_tos
561
569
  __args__['profiles'] = profiles
@@ -565,6 +573,7 @@ def get_managed_instances_output(advisory_names: Optional[pulumi.Input[Optional[
565
573
  __ret__ = pulumi.runtime.invoke_output('oci:OsManagementHub/getManagedInstances:getManagedInstances', __args__, opts=opts, typ=GetManagedInstancesResult)
566
574
  return __ret__.apply(lambda __response__: GetManagedInstancesResult(
567
575
  advisory_names=pulumi.get(__response__, 'advisory_names'),
576
+ agent_version=pulumi.get(__response__, 'agent_version'),
568
577
  arch_types=pulumi.get(__response__, 'arch_types'),
569
578
  compartment_id=pulumi.get(__response__, 'compartment_id'),
570
579
  display_name_contains=pulumi.get(__response__, 'display_name_contains'),
@@ -577,6 +586,7 @@ def get_managed_instances_output(advisory_names: Optional[pulumi.Input[Optional[
577
586
  is_managed_by_autonomous_linux=pulumi.get(__response__, 'is_managed_by_autonomous_linux'),
578
587
  is_management_station=pulumi.get(__response__, 'is_management_station'),
579
588
  is_profile_attached=pulumi.get(__response__, 'is_profile_attached'),
589
+ is_reboot_required=pulumi.get(__response__, 'is_reboot_required'),
580
590
  lifecycle_environment=pulumi.get(__response__, 'lifecycle_environment'),
581
591
  lifecycle_environment_not_equal_to=pulumi.get(__response__, 'lifecycle_environment_not_equal_to'),
582
592
  lifecycle_stage=pulumi.get(__response__, 'lifecycle_stage'),
@@ -585,6 +595,8 @@ def get_managed_instances_output(advisory_names: Optional[pulumi.Input[Optional[
585
595
  locations=pulumi.get(__response__, 'locations'),
586
596
  managed_instance_collections=pulumi.get(__response__, 'managed_instance_collections'),
587
597
  managed_instance_id=pulumi.get(__response__, 'managed_instance_id'),
598
+ management_station_not_equal_tos=pulumi.get(__response__, 'management_station_not_equal_tos'),
599
+ management_stations=pulumi.get(__response__, 'management_stations'),
588
600
  os_families=pulumi.get(__response__, 'os_families'),
589
601
  profile_not_equal_tos=pulumi.get(__response__, 'profile_not_equal_tos'),
590
602
  profiles=pulumi.get(__response__, 'profiles'),