pulumi-oci 1.35.0a1715306721__py3-none-any.whl → 1.36.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 (130) hide show
  1. pulumi_oci/__init__.py +208 -0
  2. pulumi_oci/core/__init__.py +3 -0
  3. pulumi_oci/core/_inputs.py +40 -0
  4. pulumi_oci/core/get_ip_inventory_subnet.py +171 -0
  5. pulumi_oci/core/get_ip_inventory_subnet_cidr.py +171 -0
  6. pulumi_oci/core/get_ip_inventory_vcn_overlaps.py +206 -0
  7. pulumi_oci/core/outputs.py +261 -0
  8. pulumi_oci/database/_inputs.py +304 -0
  9. pulumi_oci/database/cloud_exadata_infrastructure.py +28 -0
  10. pulumi_oci/database/cloud_vm_cluster.py +55 -0
  11. pulumi_oci/database/exadata_infrastructure.py +28 -0
  12. pulumi_oci/database/get_cloud_exadata_infrastructure.py +14 -1
  13. pulumi_oci/database/get_cloud_vm_cluster.py +14 -1
  14. pulumi_oci/database/get_exadata_infrastructure.py +14 -1
  15. pulumi_oci/database/get_vm_cluster.py +14 -1
  16. pulumi_oci/database/outputs.py +734 -6
  17. pulumi_oci/database/vm_cluster.py +55 -0
  18. pulumi_oci/database/vm_cluster_add_virtual_network.py +28 -0
  19. pulumi_oci/database/vm_cluster_remove_virtual_machine.py +28 -0
  20. pulumi_oci/datasafe/__init__.py +1 -0
  21. pulumi_oci/datasafe/masking_report_management.py +693 -0
  22. pulumi_oci/disasterrecovery/_inputs.py +16 -0
  23. pulumi_oci/disasterrecovery/outputs.py +36 -0
  24. pulumi_oci/email/__init__.py +3 -0
  25. pulumi_oci/email/_inputs.py +46 -0
  26. pulumi_oci/email/dkim.py +4 -4
  27. pulumi_oci/email/email_domain.py +77 -0
  28. pulumi_oci/email/email_return_path.py +642 -0
  29. pulumi_oci/email/get_email_domain.py +27 -1
  30. pulumi_oci/email/get_email_return_path.py +274 -0
  31. pulumi_oci/email/get_email_return_paths.py +203 -0
  32. pulumi_oci/email/outputs.py +231 -0
  33. pulumi_oci/loadbalancer/_inputs.py +160 -20
  34. pulumi_oci/loadbalancer/backend.py +49 -0
  35. pulumi_oci/loadbalancer/backend_set.py +57 -0
  36. pulumi_oci/loadbalancer/get_listener_rules.py +2 -2
  37. pulumi_oci/loadbalancer/listener.py +2 -0
  38. pulumi_oci/loadbalancer/load_balancer.py +98 -7
  39. pulumi_oci/loadbalancer/outputs.py +375 -36
  40. pulumi_oci/loadbalancer/rule_set.py +10 -0
  41. pulumi_oci/loganalytics/namespace.py +4 -4
  42. pulumi_oci/networkloadbalancer/get_listener.py +14 -1
  43. pulumi_oci/networkloadbalancer/listener.py +51 -2
  44. pulumi_oci/networkloadbalancer/outputs.py +11 -0
  45. pulumi_oci/osmanagementhub/__init__.py +48 -0
  46. pulumi_oci/osmanagementhub/_inputs.py +3635 -493
  47. pulumi_oci/osmanagementhub/event.py +701 -0
  48. pulumi_oci/osmanagementhub/get_entitlements.py +178 -0
  49. pulumi_oci/osmanagementhub/get_errata.py +283 -0
  50. pulumi_oci/osmanagementhub/get_erratum.py +308 -0
  51. pulumi_oci/osmanagementhub/get_event.py +314 -0
  52. pulumi_oci/osmanagementhub/get_events.py +314 -0
  53. pulumi_oci/osmanagementhub/get_lifecycle_environment.py +26 -13
  54. pulumi_oci/osmanagementhub/get_lifecycle_environments.py +48 -11
  55. pulumi_oci/osmanagementhub/get_lifecycle_stage.py +28 -15
  56. pulumi_oci/osmanagementhub/get_lifecycle_stages.py +86 -19
  57. pulumi_oci/osmanagementhub/get_managed_instance.py +587 -0
  58. pulumi_oci/osmanagementhub/get_managed_instance_available_packages.py +187 -0
  59. pulumi_oci/osmanagementhub/get_managed_instance_available_software_sources.py +190 -0
  60. pulumi_oci/osmanagementhub/get_managed_instance_available_windows_updates.py +238 -0
  61. pulumi_oci/osmanagementhub/get_managed_instance_errata.py +204 -0
  62. pulumi_oci/osmanagementhub/get_managed_instance_group.py +62 -10
  63. pulumi_oci/osmanagementhub/get_managed_instance_group_available_modules.py +7 -9
  64. pulumi_oci/osmanagementhub/get_managed_instance_group_available_packages.py +7 -7
  65. pulumi_oci/osmanagementhub/get_managed_instance_group_available_software_sources.py +8 -10
  66. pulumi_oci/osmanagementhub/get_managed_instance_group_installed_packages.py +220 -0
  67. pulumi_oci/osmanagementhub/get_managed_instance_group_modules.py +244 -0
  68. pulumi_oci/osmanagementhub/get_managed_instance_groups.py +71 -16
  69. pulumi_oci/osmanagementhub/get_managed_instance_installed_packages.py +221 -0
  70. pulumi_oci/osmanagementhub/get_managed_instance_installed_windows_updates.py +204 -0
  71. pulumi_oci/osmanagementhub/get_managed_instance_modules.py +187 -0
  72. pulumi_oci/osmanagementhub/get_managed_instance_updatable_packages.py +221 -0
  73. pulumi_oci/osmanagementhub/get_managed_instances.py +537 -0
  74. pulumi_oci/osmanagementhub/get_management_station.py +42 -19
  75. pulumi_oci/osmanagementhub/get_management_station_mirrors.py +4 -4
  76. pulumi_oci/osmanagementhub/get_management_stations.py +15 -15
  77. pulumi_oci/osmanagementhub/get_profile.py +51 -12
  78. pulumi_oci/osmanagementhub/get_profiles.py +76 -16
  79. pulumi_oci/osmanagementhub/get_scheduled_job.py +426 -0
  80. pulumi_oci/osmanagementhub/get_scheduled_jobs.py +433 -0
  81. pulumi_oci/osmanagementhub/get_software_package.py +301 -0
  82. pulumi_oci/osmanagementhub/get_software_package_software_source.py +329 -0
  83. pulumi_oci/osmanagementhub/get_software_packages.py +232 -0
  84. pulumi_oci/osmanagementhub/get_software_source.py +109 -18
  85. pulumi_oci/osmanagementhub/get_software_source_module_stream.py +5 -5
  86. pulumi_oci/osmanagementhub/get_software_source_module_stream_profile.py +6 -6
  87. pulumi_oci/osmanagementhub/get_software_source_module_stream_profiles.py +8 -8
  88. pulumi_oci/osmanagementhub/get_software_source_module_streams.py +9 -9
  89. pulumi_oci/osmanagementhub/get_software_source_package_group.py +8 -8
  90. pulumi_oci/osmanagementhub/get_software_source_package_groups.py +7 -7
  91. pulumi_oci/osmanagementhub/get_software_source_software_package.py +23 -10
  92. pulumi_oci/osmanagementhub/get_software_source_software_packages.py +6 -6
  93. pulumi_oci/osmanagementhub/get_software_source_vendors.py +2 -2
  94. pulumi_oci/osmanagementhub/get_software_sources.py +78 -21
  95. pulumi_oci/osmanagementhub/get_windows_update.py +222 -0
  96. pulumi_oci/osmanagementhub/get_windows_updates.py +187 -0
  97. pulumi_oci/osmanagementhub/lifecycle_environment.py +159 -86
  98. pulumi_oci/osmanagementhub/lifecycle_stage_attach_managed_instances_management.py +249 -0
  99. pulumi_oci/osmanagementhub/lifecycle_stage_detach_managed_instances_management.py +249 -0
  100. pulumi_oci/osmanagementhub/lifecycle_stage_promote_software_source_management.py +296 -0
  101. pulumi_oci/osmanagementhub/managed_instance.py +1327 -0
  102. pulumi_oci/osmanagementhub/managed_instance_attach_profile_management.py +266 -0
  103. pulumi_oci/osmanagementhub/managed_instance_detach_profile_management.py +214 -0
  104. pulumi_oci/osmanagementhub/managed_instance_group.py +264 -86
  105. pulumi_oci/osmanagementhub/managed_instance_group_attach_managed_instances_management.py +293 -0
  106. pulumi_oci/osmanagementhub/managed_instance_group_attach_software_sources_management.py +293 -0
  107. pulumi_oci/osmanagementhub/managed_instance_group_detach_managed_instances_management.py +264 -0
  108. pulumi_oci/osmanagementhub/managed_instance_group_detach_software_sources_management.py +293 -0
  109. pulumi_oci/osmanagementhub/managed_instance_group_install_packages_management.py +293 -0
  110. pulumi_oci/osmanagementhub/managed_instance_group_install_windows_updates_management.py +293 -0
  111. pulumi_oci/osmanagementhub/managed_instance_group_manage_module_streams_management.py +526 -0
  112. pulumi_oci/osmanagementhub/managed_instance_group_remove_packages_management.py +293 -0
  113. pulumi_oci/osmanagementhub/managed_instance_group_update_all_packages_management.py +292 -0
  114. pulumi_oci/osmanagementhub/managed_instance_install_windows_updates_management.py +341 -0
  115. pulumi_oci/osmanagementhub/managed_instance_update_packages_management.py +341 -0
  116. pulumi_oci/osmanagementhub/management_station.py +184 -81
  117. pulumi_oci/osmanagementhub/management_station_mirror_synchronize_management.py +264 -0
  118. pulumi_oci/osmanagementhub/management_station_refresh_management.py +212 -0
  119. pulumi_oci/osmanagementhub/management_station_synchronize_mirrors_management.py +264 -0
  120. pulumi_oci/osmanagementhub/outputs.py +10867 -2365
  121. pulumi_oci/osmanagementhub/profile.py +200 -78
  122. pulumi_oci/osmanagementhub/scheduled_job.py +1331 -0
  123. pulumi_oci/osmanagementhub/software_source.py +365 -181
  124. pulumi_oci/osmanagementhub/software_source_add_packages_management.py +266 -0
  125. pulumi_oci/osmanagementhub/software_source_change_availability_management.py +194 -0
  126. pulumi_oci/pulumi-plugin.json +2 -1
  127. {pulumi_oci-1.35.0a1715306721.dist-info → pulumi_oci-1.36.0.dist-info}/METADATA +1 -1
  128. {pulumi_oci-1.35.0a1715306721.dist-info → pulumi_oci-1.36.0.dist-info}/RECORD +130 -75
  129. {pulumi_oci-1.35.0a1715306721.dist-info → pulumi_oci-1.36.0.dist-info}/WHEEL +0 -0
  130. {pulumi_oci-1.35.0a1715306721.dist-info → pulumi_oci-1.36.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,537 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import pulumi
8
+ import pulumi.runtime
9
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
10
+ from .. import _utilities
11
+ from . import outputs
12
+ from ._inputs import *
13
+
14
+ __all__ = [
15
+ 'GetManagedInstancesResult',
16
+ 'AwaitableGetManagedInstancesResult',
17
+ 'get_managed_instances',
18
+ 'get_managed_instances_output',
19
+ ]
20
+
21
+ @pulumi.output_type
22
+ class GetManagedInstancesResult:
23
+ """
24
+ A collection of values returned by getManagedInstances.
25
+ """
26
+ 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):
27
+ if advisory_names and not isinstance(advisory_names, list):
28
+ raise TypeError("Expected argument 'advisory_names' to be a list")
29
+ pulumi.set(__self__, "advisory_names", advisory_names)
30
+ if arch_types and not isinstance(arch_types, list):
31
+ raise TypeError("Expected argument 'arch_types' to be a list")
32
+ pulumi.set(__self__, "arch_types", arch_types)
33
+ if compartment_id and not isinstance(compartment_id, str):
34
+ raise TypeError("Expected argument 'compartment_id' to be a str")
35
+ pulumi.set(__self__, "compartment_id", compartment_id)
36
+ if display_name_contains and not isinstance(display_name_contains, str):
37
+ raise TypeError("Expected argument 'display_name_contains' to be a str")
38
+ pulumi.set(__self__, "display_name_contains", display_name_contains)
39
+ if display_names and not isinstance(display_names, list):
40
+ raise TypeError("Expected argument 'display_names' to be a list")
41
+ pulumi.set(__self__, "display_names", display_names)
42
+ if filters and not isinstance(filters, list):
43
+ raise TypeError("Expected argument 'filters' to be a list")
44
+ pulumi.set(__self__, "filters", filters)
45
+ if group and not isinstance(group, str):
46
+ raise TypeError("Expected argument 'group' to be a str")
47
+ pulumi.set(__self__, "group", group)
48
+ if group_not_equal_to and not isinstance(group_not_equal_to, str):
49
+ raise TypeError("Expected argument 'group_not_equal_to' to be a str")
50
+ pulumi.set(__self__, "group_not_equal_to", group_not_equal_to)
51
+ if id and not isinstance(id, str):
52
+ raise TypeError("Expected argument 'id' to be a str")
53
+ pulumi.set(__self__, "id", id)
54
+ if is_attached_to_group_or_lifecycle_stage and not isinstance(is_attached_to_group_or_lifecycle_stage, bool):
55
+ raise TypeError("Expected argument 'is_attached_to_group_or_lifecycle_stage' to be a bool")
56
+ pulumi.set(__self__, "is_attached_to_group_or_lifecycle_stage", is_attached_to_group_or_lifecycle_stage)
57
+ if is_managed_by_autonomous_linux and not isinstance(is_managed_by_autonomous_linux, bool):
58
+ raise TypeError("Expected argument 'is_managed_by_autonomous_linux' to be a bool")
59
+ pulumi.set(__self__, "is_managed_by_autonomous_linux", is_managed_by_autonomous_linux)
60
+ if is_management_station and not isinstance(is_management_station, bool):
61
+ raise TypeError("Expected argument 'is_management_station' to be a bool")
62
+ pulumi.set(__self__, "is_management_station", is_management_station)
63
+ if is_profile_attached and not isinstance(is_profile_attached, bool):
64
+ raise TypeError("Expected argument 'is_profile_attached' to be a bool")
65
+ pulumi.set(__self__, "is_profile_attached", is_profile_attached)
66
+ if lifecycle_environment and not isinstance(lifecycle_environment, str):
67
+ raise TypeError("Expected argument 'lifecycle_environment' to be a str")
68
+ pulumi.set(__self__, "lifecycle_environment", lifecycle_environment)
69
+ if lifecycle_environment_not_equal_to and not isinstance(lifecycle_environment_not_equal_to, str):
70
+ raise TypeError("Expected argument 'lifecycle_environment_not_equal_to' to be a str")
71
+ pulumi.set(__self__, "lifecycle_environment_not_equal_to", lifecycle_environment_not_equal_to)
72
+ if lifecycle_stage and not isinstance(lifecycle_stage, str):
73
+ raise TypeError("Expected argument 'lifecycle_stage' to be a str")
74
+ pulumi.set(__self__, "lifecycle_stage", lifecycle_stage)
75
+ if lifecycle_stage_not_equal_to and not isinstance(lifecycle_stage_not_equal_to, str):
76
+ raise TypeError("Expected argument 'lifecycle_stage_not_equal_to' to be a str")
77
+ pulumi.set(__self__, "lifecycle_stage_not_equal_to", lifecycle_stage_not_equal_to)
78
+ if location_not_equal_tos and not isinstance(location_not_equal_tos, list):
79
+ raise TypeError("Expected argument 'location_not_equal_tos' to be a list")
80
+ pulumi.set(__self__, "location_not_equal_tos", location_not_equal_tos)
81
+ if locations and not isinstance(locations, list):
82
+ raise TypeError("Expected argument 'locations' to be a list")
83
+ pulumi.set(__self__, "locations", locations)
84
+ if managed_instance_collections and not isinstance(managed_instance_collections, list):
85
+ raise TypeError("Expected argument 'managed_instance_collections' to be a list")
86
+ pulumi.set(__self__, "managed_instance_collections", managed_instance_collections)
87
+ if managed_instance_id and not isinstance(managed_instance_id, str):
88
+ raise TypeError("Expected argument 'managed_instance_id' to be a str")
89
+ pulumi.set(__self__, "managed_instance_id", managed_instance_id)
90
+ if os_families and not isinstance(os_families, list):
91
+ raise TypeError("Expected argument 'os_families' to be a list")
92
+ pulumi.set(__self__, "os_families", os_families)
93
+ if profile_not_equal_tos and not isinstance(profile_not_equal_tos, list):
94
+ raise TypeError("Expected argument 'profile_not_equal_tos' to be a list")
95
+ pulumi.set(__self__, "profile_not_equal_tos", profile_not_equal_tos)
96
+ if profiles and not isinstance(profiles, list):
97
+ raise TypeError("Expected argument 'profiles' to be a list")
98
+ pulumi.set(__self__, "profiles", profiles)
99
+ if software_source_id and not isinstance(software_source_id, str):
100
+ raise TypeError("Expected argument 'software_source_id' to be a str")
101
+ pulumi.set(__self__, "software_source_id", software_source_id)
102
+ if statuses and not isinstance(statuses, list):
103
+ raise TypeError("Expected argument 'statuses' to be a list")
104
+ pulumi.set(__self__, "statuses", statuses)
105
+
106
+ @property
107
+ @pulumi.getter(name="advisoryNames")
108
+ def advisory_names(self) -> Optional[Sequence[str]]:
109
+ return pulumi.get(self, "advisory_names")
110
+
111
+ @property
112
+ @pulumi.getter(name="archTypes")
113
+ def arch_types(self) -> Optional[Sequence[str]]:
114
+ return pulumi.get(self, "arch_types")
115
+
116
+ @property
117
+ @pulumi.getter(name="compartmentId")
118
+ def compartment_id(self) -> Optional[str]:
119
+ """
120
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that contains the managed instance.
121
+ """
122
+ return pulumi.get(self, "compartment_id")
123
+
124
+ @property
125
+ @pulumi.getter(name="displayNameContains")
126
+ def display_name_contains(self) -> Optional[str]:
127
+ return pulumi.get(self, "display_name_contains")
128
+
129
+ @property
130
+ @pulumi.getter(name="displayNames")
131
+ def display_names(self) -> Optional[Sequence[str]]:
132
+ """
133
+ Software source name.
134
+ """
135
+ return pulumi.get(self, "display_names")
136
+
137
+ @property
138
+ @pulumi.getter
139
+ def filters(self) -> Optional[Sequence['outputs.GetManagedInstancesFilterResult']]:
140
+ return pulumi.get(self, "filters")
141
+
142
+ @property
143
+ @pulumi.getter
144
+ def group(self) -> Optional[str]:
145
+ return pulumi.get(self, "group")
146
+
147
+ @property
148
+ @pulumi.getter(name="groupNotEqualTo")
149
+ def group_not_equal_to(self) -> Optional[str]:
150
+ return pulumi.get(self, "group_not_equal_to")
151
+
152
+ @property
153
+ @pulumi.getter
154
+ def id(self) -> str:
155
+ """
156
+ The provider-assigned unique ID for this managed resource.
157
+ """
158
+ return pulumi.get(self, "id")
159
+
160
+ @property
161
+ @pulumi.getter(name="isAttachedToGroupOrLifecycleStage")
162
+ def is_attached_to_group_or_lifecycle_stage(self) -> Optional[bool]:
163
+ return pulumi.get(self, "is_attached_to_group_or_lifecycle_stage")
164
+
165
+ @property
166
+ @pulumi.getter(name="isManagedByAutonomousLinux")
167
+ def is_managed_by_autonomous_linux(self) -> Optional[bool]:
168
+ """
169
+ Indicates whether the Autonomous Linux service manages the instance.
170
+ """
171
+ return pulumi.get(self, "is_managed_by_autonomous_linux")
172
+
173
+ @property
174
+ @pulumi.getter(name="isManagementStation")
175
+ def is_management_station(self) -> Optional[bool]:
176
+ """
177
+ Indicates whether this managed instance is acting as an on-premises management station.
178
+ """
179
+ return pulumi.get(self, "is_management_station")
180
+
181
+ @property
182
+ @pulumi.getter(name="isProfileAttached")
183
+ def is_profile_attached(self) -> Optional[bool]:
184
+ return pulumi.get(self, "is_profile_attached")
185
+
186
+ @property
187
+ @pulumi.getter(name="lifecycleEnvironment")
188
+ def lifecycle_environment(self) -> Optional[str]:
189
+ """
190
+ Id and name of a resource to simplify the display for the user.
191
+ """
192
+ return pulumi.get(self, "lifecycle_environment")
193
+
194
+ @property
195
+ @pulumi.getter(name="lifecycleEnvironmentNotEqualTo")
196
+ def lifecycle_environment_not_equal_to(self) -> Optional[str]:
197
+ return pulumi.get(self, "lifecycle_environment_not_equal_to")
198
+
199
+ @property
200
+ @pulumi.getter(name="lifecycleStage")
201
+ def lifecycle_stage(self) -> Optional[str]:
202
+ """
203
+ Id and name of a resource to simplify the display for the user.
204
+ """
205
+ return pulumi.get(self, "lifecycle_stage")
206
+
207
+ @property
208
+ @pulumi.getter(name="lifecycleStageNotEqualTo")
209
+ def lifecycle_stage_not_equal_to(self) -> Optional[str]:
210
+ return pulumi.get(self, "lifecycle_stage_not_equal_to")
211
+
212
+ @property
213
+ @pulumi.getter(name="locationNotEqualTos")
214
+ def location_not_equal_tos(self) -> Optional[Sequence[str]]:
215
+ return pulumi.get(self, "location_not_equal_tos")
216
+
217
+ @property
218
+ @pulumi.getter
219
+ def locations(self) -> Optional[Sequence[str]]:
220
+ """
221
+ The location of the managed instance.
222
+ """
223
+ return pulumi.get(self, "locations")
224
+
225
+ @property
226
+ @pulumi.getter(name="managedInstanceCollections")
227
+ def managed_instance_collections(self) -> Sequence['outputs.GetManagedInstancesManagedInstanceCollectionResult']:
228
+ """
229
+ The list of managed_instance_collection.
230
+ """
231
+ return pulumi.get(self, "managed_instance_collections")
232
+
233
+ @property
234
+ @pulumi.getter(name="managedInstanceId")
235
+ def managed_instance_id(self) -> Optional[str]:
236
+ return pulumi.get(self, "managed_instance_id")
237
+
238
+ @property
239
+ @pulumi.getter(name="osFamilies")
240
+ def os_families(self) -> Optional[Sequence[str]]:
241
+ """
242
+ The operating system type of the managed instance.
243
+ """
244
+ return pulumi.get(self, "os_families")
245
+
246
+ @property
247
+ @pulumi.getter(name="profileNotEqualTos")
248
+ def profile_not_equal_tos(self) -> Optional[Sequence[str]]:
249
+ return pulumi.get(self, "profile_not_equal_tos")
250
+
251
+ @property
252
+ @pulumi.getter
253
+ def profiles(self) -> Optional[Sequence[str]]:
254
+ """
255
+ The profile that was used to register this instance with the service.
256
+ """
257
+ return pulumi.get(self, "profiles")
258
+
259
+ @property
260
+ @pulumi.getter(name="softwareSourceId")
261
+ def software_source_id(self) -> Optional[str]:
262
+ return pulumi.get(self, "software_source_id")
263
+
264
+ @property
265
+ @pulumi.getter
266
+ def statuses(self) -> Optional[Sequence[str]]:
267
+ """
268
+ Current status of the managed instance.
269
+ """
270
+ return pulumi.get(self, "statuses")
271
+
272
+
273
+ class AwaitableGetManagedInstancesResult(GetManagedInstancesResult):
274
+ # pylint: disable=using-constant-test
275
+ def __await__(self):
276
+ if False:
277
+ yield self
278
+ return GetManagedInstancesResult(
279
+ advisory_names=self.advisory_names,
280
+ arch_types=self.arch_types,
281
+ compartment_id=self.compartment_id,
282
+ display_name_contains=self.display_name_contains,
283
+ display_names=self.display_names,
284
+ filters=self.filters,
285
+ group=self.group,
286
+ group_not_equal_to=self.group_not_equal_to,
287
+ id=self.id,
288
+ is_attached_to_group_or_lifecycle_stage=self.is_attached_to_group_or_lifecycle_stage,
289
+ is_managed_by_autonomous_linux=self.is_managed_by_autonomous_linux,
290
+ is_management_station=self.is_management_station,
291
+ is_profile_attached=self.is_profile_attached,
292
+ lifecycle_environment=self.lifecycle_environment,
293
+ lifecycle_environment_not_equal_to=self.lifecycle_environment_not_equal_to,
294
+ lifecycle_stage=self.lifecycle_stage,
295
+ lifecycle_stage_not_equal_to=self.lifecycle_stage_not_equal_to,
296
+ location_not_equal_tos=self.location_not_equal_tos,
297
+ locations=self.locations,
298
+ managed_instance_collections=self.managed_instance_collections,
299
+ managed_instance_id=self.managed_instance_id,
300
+ os_families=self.os_families,
301
+ profile_not_equal_tos=self.profile_not_equal_tos,
302
+ profiles=self.profiles,
303
+ software_source_id=self.software_source_id,
304
+ statuses=self.statuses)
305
+
306
+
307
+ def get_managed_instances(advisory_names: Optional[Sequence[str]] = None,
308
+ arch_types: Optional[Sequence[str]] = None,
309
+ compartment_id: Optional[str] = None,
310
+ display_name_contains: Optional[str] = None,
311
+ display_names: Optional[Sequence[str]] = None,
312
+ filters: Optional[Sequence[pulumi.InputType['GetManagedInstancesFilterArgs']]] = None,
313
+ group: Optional[str] = None,
314
+ group_not_equal_to: Optional[str] = None,
315
+ is_attached_to_group_or_lifecycle_stage: Optional[bool] = None,
316
+ is_managed_by_autonomous_linux: Optional[bool] = None,
317
+ is_management_station: Optional[bool] = None,
318
+ is_profile_attached: Optional[bool] = None,
319
+ lifecycle_environment: Optional[str] = None,
320
+ lifecycle_environment_not_equal_to: Optional[str] = None,
321
+ lifecycle_stage: Optional[str] = None,
322
+ lifecycle_stage_not_equal_to: Optional[str] = None,
323
+ location_not_equal_tos: Optional[Sequence[str]] = None,
324
+ locations: Optional[Sequence[str]] = None,
325
+ managed_instance_id: Optional[str] = None,
326
+ os_families: Optional[Sequence[str]] = None,
327
+ profile_not_equal_tos: Optional[Sequence[str]] = None,
328
+ profiles: Optional[Sequence[str]] = None,
329
+ software_source_id: Optional[str] = None,
330
+ statuses: Optional[Sequence[str]] = None,
331
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetManagedInstancesResult:
332
+ """
333
+ This data source provides the list of Managed Instances in Oracle Cloud Infrastructure Os Management Hub service.
334
+
335
+ 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.
336
+
337
+ ## Example Usage
338
+
339
+ ```python
340
+ import pulumi
341
+ import pulumi_oci as oci
342
+
343
+ test_managed_instances = oci.OsManagementHub.get_managed_instances(advisory_names=managed_instance_advisory_name,
344
+ arch_types=managed_instance_arch_type,
345
+ compartment_id=compartment_id,
346
+ display_names=managed_instance_display_name,
347
+ display_name_contains=managed_instance_display_name_contains,
348
+ group=managed_instance_group,
349
+ group_not_equal_to=managed_instance_group_not_equal_to,
350
+ is_attached_to_group_or_lifecycle_stage=managed_instance_is_attached_to_group_or_lifecycle_stage,
351
+ is_managed_by_autonomous_linux=managed_instance_is_managed_by_autonomous_linux,
352
+ is_management_station=managed_instance_is_management_station,
353
+ is_profile_attached=managed_instance_is_profile_attached,
354
+ lifecycle_environment=managed_instance_lifecycle_environment,
355
+ lifecycle_environment_not_equal_to=managed_instance_lifecycle_environment_not_equal_to,
356
+ lifecycle_stage=managed_instance_lifecycle_stage,
357
+ lifecycle_stage_not_equal_to=managed_instance_lifecycle_stage_not_equal_to,
358
+ locations=managed_instance_location,
359
+ location_not_equal_tos=managed_instance_location_not_equal_to,
360
+ managed_instance_id=test_managed_instance["id"],
361
+ os_families=managed_instance_os_family,
362
+ profiles=managed_instance_profile,
363
+ profile_not_equal_tos=managed_instance_profile_not_equal_to,
364
+ software_source_id=test_software_source["id"],
365
+ statuses=managed_instance_status)
366
+ ```
367
+
368
+
369
+ :param Sequence[str] advisory_names: The assigned erratum name. It's unique and not changeable. Example: `ELSA-2020-5804`
370
+ :param Sequence[str] arch_types: A filter to return only instances whose architecture type matches the given architecture.
371
+ :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.
372
+ :param str display_name_contains: A filter to return resources that may partially match the given display name.
373
+ :param Sequence[str] display_names: A filter to return resources that match the given display names.
374
+ :param str group: A filter to return only managed instances that are attached to the specified group.
375
+ :param str group_not_equal_to: A filter to return only managed instances that are NOT attached to the specified group.
376
+ :param bool is_attached_to_group_or_lifecycle_stage: A filter to return only managed instances that are attached to the specified group or lifecycle environment.
377
+ :param bool is_managed_by_autonomous_linux: Indicates whether to list only resources managed by the Autonomous Linux service.
378
+ :param bool is_management_station: A filter to return only managed instances that are acting as management stations.
379
+ :param bool is_profile_attached: A filter to return only managed instances with a registration profile attached.
380
+ :param str lifecycle_environment: A filter to return only managed instances in a specific lifecycle environment.
381
+ :param str lifecycle_environment_not_equal_to: A filter to return only managed instances that aren't in a specific lifecycle environment.
382
+ :param str lifecycle_stage: A filter to return only managed instances that are associated with the specified lifecycle environment.
383
+ :param str lifecycle_stage_not_equal_to: A filter to return only managed instances that are NOT associated with the specified lifecycle environment.
384
+ :param Sequence[str] location_not_equal_tos: A filter to return only resources whose location does not match the given value.
385
+ :param Sequence[str] locations: A filter to return only resources whose location matches the given value.
386
+ :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.
387
+ :param Sequence[str] os_families: A filter to return only resources that match the given operating system family.
388
+ :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).
389
+ :param Sequence[str] profiles: A multi filter to return only managed instances that match the given profile ids.
390
+ :param str software_source_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the software source. This filter returns resources associated with this software source.
391
+ :param Sequence[str] statuses: A filter to return only managed instances whose status matches the status provided.
392
+ """
393
+ __args__ = dict()
394
+ __args__['advisoryNames'] = advisory_names
395
+ __args__['archTypes'] = arch_types
396
+ __args__['compartmentId'] = compartment_id
397
+ __args__['displayNameContains'] = display_name_contains
398
+ __args__['displayNames'] = display_names
399
+ __args__['filters'] = filters
400
+ __args__['group'] = group
401
+ __args__['groupNotEqualTo'] = group_not_equal_to
402
+ __args__['isAttachedToGroupOrLifecycleStage'] = is_attached_to_group_or_lifecycle_stage
403
+ __args__['isManagedByAutonomousLinux'] = is_managed_by_autonomous_linux
404
+ __args__['isManagementStation'] = is_management_station
405
+ __args__['isProfileAttached'] = is_profile_attached
406
+ __args__['lifecycleEnvironment'] = lifecycle_environment
407
+ __args__['lifecycleEnvironmentNotEqualTo'] = lifecycle_environment_not_equal_to
408
+ __args__['lifecycleStage'] = lifecycle_stage
409
+ __args__['lifecycleStageNotEqualTo'] = lifecycle_stage_not_equal_to
410
+ __args__['locationNotEqualTos'] = location_not_equal_tos
411
+ __args__['locations'] = locations
412
+ __args__['managedInstanceId'] = managed_instance_id
413
+ __args__['osFamilies'] = os_families
414
+ __args__['profileNotEqualTos'] = profile_not_equal_tos
415
+ __args__['profiles'] = profiles
416
+ __args__['softwareSourceId'] = software_source_id
417
+ __args__['statuses'] = statuses
418
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
419
+ __ret__ = pulumi.runtime.invoke('oci:OsManagementHub/getManagedInstances:getManagedInstances', __args__, opts=opts, typ=GetManagedInstancesResult).value
420
+
421
+ return AwaitableGetManagedInstancesResult(
422
+ advisory_names=pulumi.get(__ret__, 'advisory_names'),
423
+ arch_types=pulumi.get(__ret__, 'arch_types'),
424
+ compartment_id=pulumi.get(__ret__, 'compartment_id'),
425
+ display_name_contains=pulumi.get(__ret__, 'display_name_contains'),
426
+ display_names=pulumi.get(__ret__, 'display_names'),
427
+ filters=pulumi.get(__ret__, 'filters'),
428
+ group=pulumi.get(__ret__, 'group'),
429
+ group_not_equal_to=pulumi.get(__ret__, 'group_not_equal_to'),
430
+ id=pulumi.get(__ret__, 'id'),
431
+ is_attached_to_group_or_lifecycle_stage=pulumi.get(__ret__, 'is_attached_to_group_or_lifecycle_stage'),
432
+ is_managed_by_autonomous_linux=pulumi.get(__ret__, 'is_managed_by_autonomous_linux'),
433
+ is_management_station=pulumi.get(__ret__, 'is_management_station'),
434
+ is_profile_attached=pulumi.get(__ret__, 'is_profile_attached'),
435
+ lifecycle_environment=pulumi.get(__ret__, 'lifecycle_environment'),
436
+ lifecycle_environment_not_equal_to=pulumi.get(__ret__, 'lifecycle_environment_not_equal_to'),
437
+ lifecycle_stage=pulumi.get(__ret__, 'lifecycle_stage'),
438
+ lifecycle_stage_not_equal_to=pulumi.get(__ret__, 'lifecycle_stage_not_equal_to'),
439
+ location_not_equal_tos=pulumi.get(__ret__, 'location_not_equal_tos'),
440
+ locations=pulumi.get(__ret__, 'locations'),
441
+ managed_instance_collections=pulumi.get(__ret__, 'managed_instance_collections'),
442
+ managed_instance_id=pulumi.get(__ret__, 'managed_instance_id'),
443
+ os_families=pulumi.get(__ret__, 'os_families'),
444
+ profile_not_equal_tos=pulumi.get(__ret__, 'profile_not_equal_tos'),
445
+ profiles=pulumi.get(__ret__, 'profiles'),
446
+ software_source_id=pulumi.get(__ret__, 'software_source_id'),
447
+ statuses=pulumi.get(__ret__, 'statuses'))
448
+
449
+
450
+ @_utilities.lift_output_func(get_managed_instances)
451
+ def get_managed_instances_output(advisory_names: Optional[pulumi.Input[Optional[Sequence[str]]]] = None,
452
+ arch_types: Optional[pulumi.Input[Optional[Sequence[str]]]] = None,
453
+ compartment_id: Optional[pulumi.Input[Optional[str]]] = None,
454
+ display_name_contains: Optional[pulumi.Input[Optional[str]]] = None,
455
+ display_names: Optional[pulumi.Input[Optional[Sequence[str]]]] = None,
456
+ filters: Optional[pulumi.Input[Optional[Sequence[pulumi.InputType['GetManagedInstancesFilterArgs']]]]] = None,
457
+ group: Optional[pulumi.Input[Optional[str]]] = None,
458
+ group_not_equal_to: Optional[pulumi.Input[Optional[str]]] = None,
459
+ is_attached_to_group_or_lifecycle_stage: Optional[pulumi.Input[Optional[bool]]] = None,
460
+ is_managed_by_autonomous_linux: Optional[pulumi.Input[Optional[bool]]] = None,
461
+ is_management_station: Optional[pulumi.Input[Optional[bool]]] = None,
462
+ is_profile_attached: Optional[pulumi.Input[Optional[bool]]] = None,
463
+ lifecycle_environment: Optional[pulumi.Input[Optional[str]]] = None,
464
+ lifecycle_environment_not_equal_to: Optional[pulumi.Input[Optional[str]]] = None,
465
+ lifecycle_stage: Optional[pulumi.Input[Optional[str]]] = None,
466
+ lifecycle_stage_not_equal_to: Optional[pulumi.Input[Optional[str]]] = None,
467
+ location_not_equal_tos: Optional[pulumi.Input[Optional[Sequence[str]]]] = None,
468
+ locations: Optional[pulumi.Input[Optional[Sequence[str]]]] = None,
469
+ managed_instance_id: Optional[pulumi.Input[Optional[str]]] = None,
470
+ os_families: Optional[pulumi.Input[Optional[Sequence[str]]]] = None,
471
+ profile_not_equal_tos: Optional[pulumi.Input[Optional[Sequence[str]]]] = None,
472
+ profiles: Optional[pulumi.Input[Optional[Sequence[str]]]] = None,
473
+ software_source_id: Optional[pulumi.Input[Optional[str]]] = None,
474
+ statuses: Optional[pulumi.Input[Optional[Sequence[str]]]] = None,
475
+ opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetManagedInstancesResult]:
476
+ """
477
+ This data source provides the list of Managed Instances in Oracle Cloud Infrastructure Os Management Hub service.
478
+
479
+ 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.
480
+
481
+ ## Example Usage
482
+
483
+ ```python
484
+ import pulumi
485
+ import pulumi_oci as oci
486
+
487
+ test_managed_instances = oci.OsManagementHub.get_managed_instances(advisory_names=managed_instance_advisory_name,
488
+ arch_types=managed_instance_arch_type,
489
+ compartment_id=compartment_id,
490
+ display_names=managed_instance_display_name,
491
+ display_name_contains=managed_instance_display_name_contains,
492
+ group=managed_instance_group,
493
+ group_not_equal_to=managed_instance_group_not_equal_to,
494
+ is_attached_to_group_or_lifecycle_stage=managed_instance_is_attached_to_group_or_lifecycle_stage,
495
+ is_managed_by_autonomous_linux=managed_instance_is_managed_by_autonomous_linux,
496
+ is_management_station=managed_instance_is_management_station,
497
+ is_profile_attached=managed_instance_is_profile_attached,
498
+ lifecycle_environment=managed_instance_lifecycle_environment,
499
+ lifecycle_environment_not_equal_to=managed_instance_lifecycle_environment_not_equal_to,
500
+ lifecycle_stage=managed_instance_lifecycle_stage,
501
+ lifecycle_stage_not_equal_to=managed_instance_lifecycle_stage_not_equal_to,
502
+ locations=managed_instance_location,
503
+ location_not_equal_tos=managed_instance_location_not_equal_to,
504
+ managed_instance_id=test_managed_instance["id"],
505
+ os_families=managed_instance_os_family,
506
+ profiles=managed_instance_profile,
507
+ profile_not_equal_tos=managed_instance_profile_not_equal_to,
508
+ software_source_id=test_software_source["id"],
509
+ statuses=managed_instance_status)
510
+ ```
511
+
512
+
513
+ :param Sequence[str] advisory_names: The assigned erratum name. It's unique and not changeable. Example: `ELSA-2020-5804`
514
+ :param Sequence[str] arch_types: A filter to return only instances whose architecture type matches the given architecture.
515
+ :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.
516
+ :param str display_name_contains: A filter to return resources that may partially match the given display name.
517
+ :param Sequence[str] display_names: A filter to return resources that match the given display names.
518
+ :param str group: A filter to return only managed instances that are attached to the specified group.
519
+ :param str group_not_equal_to: A filter to return only managed instances that are NOT attached to the specified group.
520
+ :param bool is_attached_to_group_or_lifecycle_stage: A filter to return only managed instances that are attached to the specified group or lifecycle environment.
521
+ :param bool is_managed_by_autonomous_linux: Indicates whether to list only resources managed by the Autonomous Linux service.
522
+ :param bool is_management_station: A filter to return only managed instances that are acting as management stations.
523
+ :param bool is_profile_attached: A filter to return only managed instances with a registration profile attached.
524
+ :param str lifecycle_environment: A filter to return only managed instances in a specific lifecycle environment.
525
+ :param str lifecycle_environment_not_equal_to: A filter to return only managed instances that aren't in a specific lifecycle environment.
526
+ :param str lifecycle_stage: A filter to return only managed instances that are associated with the specified lifecycle environment.
527
+ :param str lifecycle_stage_not_equal_to: A filter to return only managed instances that are NOT associated with the specified lifecycle environment.
528
+ :param Sequence[str] location_not_equal_tos: A filter to return only resources whose location does not match the given value.
529
+ :param Sequence[str] locations: A filter to return only resources whose location matches the given value.
530
+ :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.
531
+ :param Sequence[str] os_families: A filter to return only resources that match the given operating system family.
532
+ :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).
533
+ :param Sequence[str] profiles: A multi filter to return only managed instances that match the given profile ids.
534
+ :param str software_source_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the software source. This filter returns resources associated with this software source.
535
+ :param Sequence[str] statuses: A filter to return only managed instances whose status matches the status provided.
536
+ """
537
+ ...