pulumi-oci 2.28.0a1742970963__py3-none-any.whl → 2.28.0a1743049042__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.
@@ -0,0 +1,254 @@
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 sys
8
+ import pulumi
9
+ import pulumi.runtime
10
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
15
+ from .. import _utilities
16
+ from . import outputs
17
+ from ._inputs import *
18
+
19
+ __all__ = [
20
+ 'GetComputeHostsResult',
21
+ 'AwaitableGetComputeHostsResult',
22
+ 'get_compute_hosts',
23
+ 'get_compute_hosts_output',
24
+ ]
25
+
26
+ @pulumi.output_type
27
+ class GetComputeHostsResult:
28
+ """
29
+ A collection of values returned by getComputeHosts.
30
+ """
31
+ def __init__(__self__, availability_domain=None, compartment_id=None, compute_host_collections=None, compute_host_health=None, compute_host_lifecycle_state=None, display_name=None, filters=None, id=None, network_resource_id=None):
32
+ if availability_domain and not isinstance(availability_domain, str):
33
+ raise TypeError("Expected argument 'availability_domain' to be a str")
34
+ pulumi.set(__self__, "availability_domain", availability_domain)
35
+ if compartment_id and not isinstance(compartment_id, str):
36
+ raise TypeError("Expected argument 'compartment_id' to be a str")
37
+ pulumi.set(__self__, "compartment_id", compartment_id)
38
+ if compute_host_collections and not isinstance(compute_host_collections, list):
39
+ raise TypeError("Expected argument 'compute_host_collections' to be a list")
40
+ pulumi.set(__self__, "compute_host_collections", compute_host_collections)
41
+ if compute_host_health and not isinstance(compute_host_health, str):
42
+ raise TypeError("Expected argument 'compute_host_health' to be a str")
43
+ pulumi.set(__self__, "compute_host_health", compute_host_health)
44
+ if compute_host_lifecycle_state and not isinstance(compute_host_lifecycle_state, str):
45
+ raise TypeError("Expected argument 'compute_host_lifecycle_state' to be a str")
46
+ pulumi.set(__self__, "compute_host_lifecycle_state", compute_host_lifecycle_state)
47
+ if display_name and not isinstance(display_name, str):
48
+ raise TypeError("Expected argument 'display_name' to be a str")
49
+ pulumi.set(__self__, "display_name", display_name)
50
+ if filters and not isinstance(filters, list):
51
+ raise TypeError("Expected argument 'filters' to be a list")
52
+ pulumi.set(__self__, "filters", filters)
53
+ if id and not isinstance(id, str):
54
+ raise TypeError("Expected argument 'id' to be a str")
55
+ pulumi.set(__self__, "id", id)
56
+ if network_resource_id and not isinstance(network_resource_id, str):
57
+ raise TypeError("Expected argument 'network_resource_id' to be a str")
58
+ pulumi.set(__self__, "network_resource_id", network_resource_id)
59
+
60
+ @property
61
+ @pulumi.getter(name="availabilityDomain")
62
+ def availability_domain(self) -> Optional[str]:
63
+ """
64
+ The availability domain of the compute host. Example: `Uocm:US-CHICAGO-1-AD-2`
65
+ """
66
+ return pulumi.get(self, "availability_domain")
67
+
68
+ @property
69
+ @pulumi.getter(name="compartmentId")
70
+ def compartment_id(self) -> str:
71
+ """
72
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the compartment. This should always be the root compartment.
73
+ """
74
+ return pulumi.get(self, "compartment_id")
75
+
76
+ @property
77
+ @pulumi.getter(name="computeHostCollections")
78
+ def compute_host_collections(self) -> Sequence['outputs.GetComputeHostsComputeHostCollectionResult']:
79
+ """
80
+ The list of compute_host_collection.
81
+ """
82
+ return pulumi.get(self, "compute_host_collections")
83
+
84
+ @property
85
+ @pulumi.getter(name="computeHostHealth")
86
+ def compute_host_health(self) -> Optional[str]:
87
+ return pulumi.get(self, "compute_host_health")
88
+
89
+ @property
90
+ @pulumi.getter(name="computeHostLifecycleState")
91
+ def compute_host_lifecycle_state(self) -> Optional[str]:
92
+ return pulumi.get(self, "compute_host_lifecycle_state")
93
+
94
+ @property
95
+ @pulumi.getter(name="displayName")
96
+ def display_name(self) -> Optional[str]:
97
+ """
98
+ A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
99
+ """
100
+ return pulumi.get(self, "display_name")
101
+
102
+ @property
103
+ @pulumi.getter
104
+ def filters(self) -> Optional[Sequence['outputs.GetComputeHostsFilterResult']]:
105
+ return pulumi.get(self, "filters")
106
+
107
+ @property
108
+ @pulumi.getter
109
+ def id(self) -> str:
110
+ """
111
+ The provider-assigned unique ID for this managed resource.
112
+ """
113
+ return pulumi.get(self, "id")
114
+
115
+ @property
116
+ @pulumi.getter(name="networkResourceId")
117
+ def network_resource_id(self) -> Optional[str]:
118
+ return pulumi.get(self, "network_resource_id")
119
+
120
+
121
+ class AwaitableGetComputeHostsResult(GetComputeHostsResult):
122
+ # pylint: disable=using-constant-test
123
+ def __await__(self):
124
+ if False:
125
+ yield self
126
+ return GetComputeHostsResult(
127
+ availability_domain=self.availability_domain,
128
+ compartment_id=self.compartment_id,
129
+ compute_host_collections=self.compute_host_collections,
130
+ compute_host_health=self.compute_host_health,
131
+ compute_host_lifecycle_state=self.compute_host_lifecycle_state,
132
+ display_name=self.display_name,
133
+ filters=self.filters,
134
+ id=self.id,
135
+ network_resource_id=self.network_resource_id)
136
+
137
+
138
+ def get_compute_hosts(availability_domain: Optional[str] = None,
139
+ compartment_id: Optional[str] = None,
140
+ compute_host_health: Optional[str] = None,
141
+ compute_host_lifecycle_state: Optional[str] = None,
142
+ display_name: Optional[str] = None,
143
+ filters: Optional[Sequence[Union['GetComputeHostsFilterArgs', 'GetComputeHostsFilterArgsDict']]] = None,
144
+ network_resource_id: Optional[str] = None,
145
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetComputeHostsResult:
146
+ """
147
+ This data source provides the list of Compute Hosts in Oracle Cloud Infrastructure Core service.
148
+
149
+ Generates a list of summary host details
150
+
151
+ ## Example Usage
152
+
153
+ ```python
154
+ import pulumi
155
+ import pulumi_oci as oci
156
+
157
+ test_compute_hosts = oci.Core.get_compute_hosts(compartment_id=compartment_id,
158
+ availability_domain=compute_host_availability_domain,
159
+ compute_host_health=compute_host_compute_host_health,
160
+ compute_host_lifecycle_state=compute_host_compute_host_lifecycle_state,
161
+ display_name=compute_host_display_name,
162
+ network_resource_id=test_resource["id"])
163
+ ```
164
+
165
+
166
+ :param str availability_domain: The name of the availability domain. Example: `Uocm:PHX-AD-1`
167
+ :param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
168
+ :param str compute_host_health: A filter to return only ComputeHostSummary resources that match the given Compute Host health State OCID exactly.
169
+ :param str compute_host_lifecycle_state: A filter to return only ComputeHostSummary resources that match the given Compute Host lifecycle State OCID exactly.
170
+ :param str display_name: A filter to return only resources that match the given display name exactly.
171
+ :param str network_resource_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compute host network resoruce.
172
+ * Customer-unique HPC island ID
173
+ * Customer-unique network block ID
174
+ * Customer-unique local block ID
175
+ """
176
+ __args__ = dict()
177
+ __args__['availabilityDomain'] = availability_domain
178
+ __args__['compartmentId'] = compartment_id
179
+ __args__['computeHostHealth'] = compute_host_health
180
+ __args__['computeHostLifecycleState'] = compute_host_lifecycle_state
181
+ __args__['displayName'] = display_name
182
+ __args__['filters'] = filters
183
+ __args__['networkResourceId'] = network_resource_id
184
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
185
+ __ret__ = pulumi.runtime.invoke('oci:Core/getComputeHosts:getComputeHosts', __args__, opts=opts, typ=GetComputeHostsResult).value
186
+
187
+ return AwaitableGetComputeHostsResult(
188
+ availability_domain=pulumi.get(__ret__, 'availability_domain'),
189
+ compartment_id=pulumi.get(__ret__, 'compartment_id'),
190
+ compute_host_collections=pulumi.get(__ret__, 'compute_host_collections'),
191
+ compute_host_health=pulumi.get(__ret__, 'compute_host_health'),
192
+ compute_host_lifecycle_state=pulumi.get(__ret__, 'compute_host_lifecycle_state'),
193
+ display_name=pulumi.get(__ret__, 'display_name'),
194
+ filters=pulumi.get(__ret__, 'filters'),
195
+ id=pulumi.get(__ret__, 'id'),
196
+ network_resource_id=pulumi.get(__ret__, 'network_resource_id'))
197
+ def get_compute_hosts_output(availability_domain: Optional[pulumi.Input[Optional[str]]] = None,
198
+ compartment_id: Optional[pulumi.Input[str]] = None,
199
+ compute_host_health: Optional[pulumi.Input[Optional[str]]] = None,
200
+ compute_host_lifecycle_state: Optional[pulumi.Input[Optional[str]]] = None,
201
+ display_name: Optional[pulumi.Input[Optional[str]]] = None,
202
+ filters: Optional[pulumi.Input[Optional[Sequence[Union['GetComputeHostsFilterArgs', 'GetComputeHostsFilterArgsDict']]]]] = None,
203
+ network_resource_id: Optional[pulumi.Input[Optional[str]]] = None,
204
+ opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetComputeHostsResult]:
205
+ """
206
+ This data source provides the list of Compute Hosts in Oracle Cloud Infrastructure Core service.
207
+
208
+ Generates a list of summary host details
209
+
210
+ ## Example Usage
211
+
212
+ ```python
213
+ import pulumi
214
+ import pulumi_oci as oci
215
+
216
+ test_compute_hosts = oci.Core.get_compute_hosts(compartment_id=compartment_id,
217
+ availability_domain=compute_host_availability_domain,
218
+ compute_host_health=compute_host_compute_host_health,
219
+ compute_host_lifecycle_state=compute_host_compute_host_lifecycle_state,
220
+ display_name=compute_host_display_name,
221
+ network_resource_id=test_resource["id"])
222
+ ```
223
+
224
+
225
+ :param str availability_domain: The name of the availability domain. Example: `Uocm:PHX-AD-1`
226
+ :param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
227
+ :param str compute_host_health: A filter to return only ComputeHostSummary resources that match the given Compute Host health State OCID exactly.
228
+ :param str compute_host_lifecycle_state: A filter to return only ComputeHostSummary resources that match the given Compute Host lifecycle State OCID exactly.
229
+ :param str display_name: A filter to return only resources that match the given display name exactly.
230
+ :param str network_resource_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compute host network resoruce.
231
+ * Customer-unique HPC island ID
232
+ * Customer-unique network block ID
233
+ * Customer-unique local block ID
234
+ """
235
+ __args__ = dict()
236
+ __args__['availabilityDomain'] = availability_domain
237
+ __args__['compartmentId'] = compartment_id
238
+ __args__['computeHostHealth'] = compute_host_health
239
+ __args__['computeHostLifecycleState'] = compute_host_lifecycle_state
240
+ __args__['displayName'] = display_name
241
+ __args__['filters'] = filters
242
+ __args__['networkResourceId'] = network_resource_id
243
+ opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
244
+ __ret__ = pulumi.runtime.invoke_output('oci:Core/getComputeHosts:getComputeHosts', __args__, opts=opts, typ=GetComputeHostsResult)
245
+ return __ret__.apply(lambda __response__: GetComputeHostsResult(
246
+ availability_domain=pulumi.get(__response__, 'availability_domain'),
247
+ compartment_id=pulumi.get(__response__, 'compartment_id'),
248
+ compute_host_collections=pulumi.get(__response__, 'compute_host_collections'),
249
+ compute_host_health=pulumi.get(__response__, 'compute_host_health'),
250
+ compute_host_lifecycle_state=pulumi.get(__response__, 'compute_host_lifecycle_state'),
251
+ display_name=pulumi.get(__response__, 'display_name'),
252
+ filters=pulumi.get(__response__, 'filters'),
253
+ id=pulumi.get(__response__, 'id'),
254
+ network_resource_id=pulumi.get(__response__, 'network_resource_id')))
@@ -346,6 +346,9 @@ __all__ = [
346
346
  'GetComputeGpuMemoryFabricsComputeGpuMemoryFabricCollectionResult',
347
347
  'GetComputeGpuMemoryFabricsComputeGpuMemoryFabricCollectionItemResult',
348
348
  'GetComputeGpuMemoryFabricsFilterResult',
349
+ 'GetComputeHostsComputeHostCollectionResult',
350
+ 'GetComputeHostsComputeHostCollectionItemResult',
351
+ 'GetComputeHostsFilterResult',
349
352
  'GetComputeImageCapabilitySchemasComputeImageCapabilitySchemaResult',
350
353
  'GetComputeImageCapabilitySchemasFilterResult',
351
354
  'GetConsoleHistoriesConsoleHistoryResult',
@@ -23632,6 +23635,268 @@ class GetComputeGpuMemoryFabricsFilterResult(dict):
23632
23635
  return pulumi.get(self, "regex")
23633
23636
 
23634
23637
 
23638
+ @pulumi.output_type
23639
+ class GetComputeHostsComputeHostCollectionResult(dict):
23640
+ def __init__(__self__, *,
23641
+ items: Sequence['outputs.GetComputeHostsComputeHostCollectionItemResult']):
23642
+ pulumi.set(__self__, "items", items)
23643
+
23644
+ @property
23645
+ @pulumi.getter
23646
+ def items(self) -> Sequence['outputs.GetComputeHostsComputeHostCollectionItemResult']:
23647
+ return pulumi.get(self, "items")
23648
+
23649
+
23650
+ @pulumi.output_type
23651
+ class GetComputeHostsComputeHostCollectionItemResult(dict):
23652
+ def __init__(__self__, *,
23653
+ availability_domain: str,
23654
+ capacity_reservation_id: str,
23655
+ compartment_id: str,
23656
+ defined_tags: Mapping[str, str],
23657
+ display_name: str,
23658
+ fault_domain: str,
23659
+ freeform_tags: Mapping[str, str],
23660
+ gpu_memory_fabric_id: str,
23661
+ has_impacted_components: bool,
23662
+ health: str,
23663
+ hpc_island_id: str,
23664
+ id: str,
23665
+ instance_id: str,
23666
+ lifecycle_details: Mapping[str, str],
23667
+ local_block_id: str,
23668
+ network_block_id: str,
23669
+ shape: str,
23670
+ state: str,
23671
+ time_created: str,
23672
+ time_updated: str):
23673
+ """
23674
+ :param str availability_domain: The name of the availability domain. Example: `Uocm:PHX-AD-1`
23675
+ :param str capacity_reservation_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the Capacity Reserver that is currently on host
23676
+ :param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
23677
+ :param Mapping[str, str] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
23678
+ :param str display_name: A filter to return only resources that match the given display name exactly.
23679
+ :param str fault_domain: A fault domain is a grouping of hardware and infrastructure within an availability domain. Each availability domain contains three fault domains. Fault domains let you distribute your instances so that they are not on the same physical hardware within a single availability domain. A hardware failure or Compute hardware maintenance that affects one fault domain does not affect instances in other fault domains.
23680
+ :param Mapping[str, str] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
23681
+ :param str gpu_memory_fabric_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for Customer-unique GPU Memory Fabric
23682
+ :param str health: The heathy state of the host
23683
+ :param str hpc_island_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for Customer-unique HPC Island
23684
+ :param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the Customer-unique host
23685
+ :param str instance_id: The public [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the Virtual Machine or Bare Metal instance
23686
+ :param Mapping[str, str] lifecycle_details: A free-form description detailing why the host is in its current state.
23687
+ :param str local_block_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for Customer-unique Local Block
23688
+ :param str network_block_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for Customer-unique Network Block
23689
+ :param str shape: The shape of host
23690
+ :param str state: The lifecycle state of the host
23691
+ :param str time_created: The date and time that the compute host record was created, in the format defined by [RFC3339](https://tools .ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
23692
+ :param str time_updated: The date and time that the compute host record was updated, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
23693
+ """
23694
+ pulumi.set(__self__, "availability_domain", availability_domain)
23695
+ pulumi.set(__self__, "capacity_reservation_id", capacity_reservation_id)
23696
+ pulumi.set(__self__, "compartment_id", compartment_id)
23697
+ pulumi.set(__self__, "defined_tags", defined_tags)
23698
+ pulumi.set(__self__, "display_name", display_name)
23699
+ pulumi.set(__self__, "fault_domain", fault_domain)
23700
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
23701
+ pulumi.set(__self__, "gpu_memory_fabric_id", gpu_memory_fabric_id)
23702
+ pulumi.set(__self__, "has_impacted_components", has_impacted_components)
23703
+ pulumi.set(__self__, "health", health)
23704
+ pulumi.set(__self__, "hpc_island_id", hpc_island_id)
23705
+ pulumi.set(__self__, "id", id)
23706
+ pulumi.set(__self__, "instance_id", instance_id)
23707
+ pulumi.set(__self__, "lifecycle_details", lifecycle_details)
23708
+ pulumi.set(__self__, "local_block_id", local_block_id)
23709
+ pulumi.set(__self__, "network_block_id", network_block_id)
23710
+ pulumi.set(__self__, "shape", shape)
23711
+ pulumi.set(__self__, "state", state)
23712
+ pulumi.set(__self__, "time_created", time_created)
23713
+ pulumi.set(__self__, "time_updated", time_updated)
23714
+
23715
+ @property
23716
+ @pulumi.getter(name="availabilityDomain")
23717
+ def availability_domain(self) -> str:
23718
+ """
23719
+ The name of the availability domain. Example: `Uocm:PHX-AD-1`
23720
+ """
23721
+ return pulumi.get(self, "availability_domain")
23722
+
23723
+ @property
23724
+ @pulumi.getter(name="capacityReservationId")
23725
+ def capacity_reservation_id(self) -> str:
23726
+ """
23727
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the Capacity Reserver that is currently on host
23728
+ """
23729
+ return pulumi.get(self, "capacity_reservation_id")
23730
+
23731
+ @property
23732
+ @pulumi.getter(name="compartmentId")
23733
+ def compartment_id(self) -> str:
23734
+ """
23735
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
23736
+ """
23737
+ return pulumi.get(self, "compartment_id")
23738
+
23739
+ @property
23740
+ @pulumi.getter(name="definedTags")
23741
+ def defined_tags(self) -> Mapping[str, str]:
23742
+ """
23743
+ Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
23744
+ """
23745
+ return pulumi.get(self, "defined_tags")
23746
+
23747
+ @property
23748
+ @pulumi.getter(name="displayName")
23749
+ def display_name(self) -> str:
23750
+ """
23751
+ A filter to return only resources that match the given display name exactly.
23752
+ """
23753
+ return pulumi.get(self, "display_name")
23754
+
23755
+ @property
23756
+ @pulumi.getter(name="faultDomain")
23757
+ def fault_domain(self) -> str:
23758
+ """
23759
+ A fault domain is a grouping of hardware and infrastructure within an availability domain. Each availability domain contains three fault domains. Fault domains let you distribute your instances so that they are not on the same physical hardware within a single availability domain. A hardware failure or Compute hardware maintenance that affects one fault domain does not affect instances in other fault domains.
23760
+ """
23761
+ return pulumi.get(self, "fault_domain")
23762
+
23763
+ @property
23764
+ @pulumi.getter(name="freeformTags")
23765
+ def freeform_tags(self) -> Mapping[str, str]:
23766
+ """
23767
+ Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
23768
+ """
23769
+ return pulumi.get(self, "freeform_tags")
23770
+
23771
+ @property
23772
+ @pulumi.getter(name="gpuMemoryFabricId")
23773
+ def gpu_memory_fabric_id(self) -> str:
23774
+ """
23775
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for Customer-unique GPU Memory Fabric
23776
+ """
23777
+ return pulumi.get(self, "gpu_memory_fabric_id")
23778
+
23779
+ @property
23780
+ @pulumi.getter(name="hasImpactedComponents")
23781
+ def has_impacted_components(self) -> bool:
23782
+ return pulumi.get(self, "has_impacted_components")
23783
+
23784
+ @property
23785
+ @pulumi.getter
23786
+ def health(self) -> str:
23787
+ """
23788
+ The heathy state of the host
23789
+ """
23790
+ return pulumi.get(self, "health")
23791
+
23792
+ @property
23793
+ @pulumi.getter(name="hpcIslandId")
23794
+ def hpc_island_id(self) -> str:
23795
+ """
23796
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for Customer-unique HPC Island
23797
+ """
23798
+ return pulumi.get(self, "hpc_island_id")
23799
+
23800
+ @property
23801
+ @pulumi.getter
23802
+ def id(self) -> str:
23803
+ """
23804
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the Customer-unique host
23805
+ """
23806
+ return pulumi.get(self, "id")
23807
+
23808
+ @property
23809
+ @pulumi.getter(name="instanceId")
23810
+ def instance_id(self) -> str:
23811
+ """
23812
+ The public [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the Virtual Machine or Bare Metal instance
23813
+ """
23814
+ return pulumi.get(self, "instance_id")
23815
+
23816
+ @property
23817
+ @pulumi.getter(name="lifecycleDetails")
23818
+ def lifecycle_details(self) -> Mapping[str, str]:
23819
+ """
23820
+ A free-form description detailing why the host is in its current state.
23821
+ """
23822
+ return pulumi.get(self, "lifecycle_details")
23823
+
23824
+ @property
23825
+ @pulumi.getter(name="localBlockId")
23826
+ def local_block_id(self) -> str:
23827
+ """
23828
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for Customer-unique Local Block
23829
+ """
23830
+ return pulumi.get(self, "local_block_id")
23831
+
23832
+ @property
23833
+ @pulumi.getter(name="networkBlockId")
23834
+ def network_block_id(self) -> str:
23835
+ """
23836
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for Customer-unique Network Block
23837
+ """
23838
+ return pulumi.get(self, "network_block_id")
23839
+
23840
+ @property
23841
+ @pulumi.getter
23842
+ def shape(self) -> str:
23843
+ """
23844
+ The shape of host
23845
+ """
23846
+ return pulumi.get(self, "shape")
23847
+
23848
+ @property
23849
+ @pulumi.getter
23850
+ def state(self) -> str:
23851
+ """
23852
+ The lifecycle state of the host
23853
+ """
23854
+ return pulumi.get(self, "state")
23855
+
23856
+ @property
23857
+ @pulumi.getter(name="timeCreated")
23858
+ def time_created(self) -> str:
23859
+ """
23860
+ The date and time that the compute host record was created, in the format defined by [RFC3339](https://tools .ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
23861
+ """
23862
+ return pulumi.get(self, "time_created")
23863
+
23864
+ @property
23865
+ @pulumi.getter(name="timeUpdated")
23866
+ def time_updated(self) -> str:
23867
+ """
23868
+ The date and time that the compute host record was updated, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
23869
+ """
23870
+ return pulumi.get(self, "time_updated")
23871
+
23872
+
23873
+ @pulumi.output_type
23874
+ class GetComputeHostsFilterResult(dict):
23875
+ def __init__(__self__, *,
23876
+ name: str,
23877
+ values: Sequence[str],
23878
+ regex: Optional[bool] = None):
23879
+ pulumi.set(__self__, "name", name)
23880
+ pulumi.set(__self__, "values", values)
23881
+ if regex is not None:
23882
+ pulumi.set(__self__, "regex", regex)
23883
+
23884
+ @property
23885
+ @pulumi.getter
23886
+ def name(self) -> str:
23887
+ return pulumi.get(self, "name")
23888
+
23889
+ @property
23890
+ @pulumi.getter
23891
+ def values(self) -> Sequence[str]:
23892
+ return pulumi.get(self, "values")
23893
+
23894
+ @property
23895
+ @pulumi.getter
23896
+ def regex(self) -> Optional[bool]:
23897
+ return pulumi.get(self, "regex")
23898
+
23899
+
23635
23900
  @pulumi.output_type
23636
23901
  class GetComputeImageCapabilitySchemasComputeImageCapabilitySchemaResult(dict):
23637
23902
  def __init__(__self__, *,
@@ -7957,21 +7957,7 @@ if not MYPY:
7957
7957
  * type: string
7958
7958
  * uniqueness: none
7959
7959
  """
7960
- ref: NotRequired[pulumi.Input[str]]
7961
- """
7962
- (Updatable) URI of the policy.
7963
-
7964
- **Added In:** 2209070044
7965
-
7966
- **SCIM++ Properties:**
7967
- * idcsSearchable: false
7968
- * multiValued: false
7969
- * mutability: readOnly
7970
- * required: false
7971
- * returned: default
7972
- * type: reference
7973
- * uniqueness: none
7974
- """
7960
+ _ref: NotRequired[pulumi.Input[str]]
7975
7961
  elif False:
7976
7962
  DomainsAppRadiusPolicyArgsDict: TypeAlias = Mapping[str, Any]
7977
7963
 
@@ -7979,7 +7965,7 @@ elif False:
7979
7965
  class DomainsAppRadiusPolicyArgs:
7980
7966
  def __init__(__self__, *,
7981
7967
  value: pulumi.Input[str],
7982
- ref: Optional[pulumi.Input[str]] = None):
7968
+ _ref: Optional[pulumi.Input[str]] = None):
7983
7969
  """
7984
7970
  :param pulumi.Input[str] value: (Updatable) Identifier of the Policy.
7985
7971
 
@@ -7994,22 +7980,10 @@ class DomainsAppRadiusPolicyArgs:
7994
7980
  * returned: default
7995
7981
  * type: string
7996
7982
  * uniqueness: none
7997
- :param pulumi.Input[str] ref: (Updatable) URI of the policy.
7998
-
7999
- **Added In:** 2209070044
8000
-
8001
- **SCIM++ Properties:**
8002
- * idcsSearchable: false
8003
- * multiValued: false
8004
- * mutability: readOnly
8005
- * required: false
8006
- * returned: default
8007
- * type: reference
8008
- * uniqueness: none
8009
7983
  """
8010
7984
  pulumi.set(__self__, "value", value)
8011
- if ref is not None:
8012
- pulumi.set(__self__, "ref", ref)
7985
+ if _ref is not None:
7986
+ pulumi.set(__self__, "_ref", _ref)
8013
7987
 
8014
7988
  @property
8015
7989
  @pulumi.getter
@@ -8037,26 +8011,12 @@ class DomainsAppRadiusPolicyArgs:
8037
8011
 
8038
8012
  @property
8039
8013
  @pulumi.getter
8040
- def ref(self) -> Optional[pulumi.Input[str]]:
8041
- """
8042
- (Updatable) URI of the policy.
8043
-
8044
- **Added In:** 2209070044
8045
-
8046
- **SCIM++ Properties:**
8047
- * idcsSearchable: false
8048
- * multiValued: false
8049
- * mutability: readOnly
8050
- * required: false
8051
- * returned: default
8052
- * type: reference
8053
- * uniqueness: none
8054
- """
8055
- return pulumi.get(self, "ref")
8014
+ def _ref(self) -> Optional[pulumi.Input[str]]:
8015
+ return pulumi.get(self, "_ref")
8056
8016
 
8057
- @ref.setter
8058
- def ref(self, value: Optional[pulumi.Input[str]]):
8059
- pulumi.set(self, "ref", value)
8017
+ @_ref.setter
8018
+ def _ref(self, value: Optional[pulumi.Input[str]]):
8019
+ pulumi.set(self, "_ref", value)
8060
8020
 
8061
8021
 
8062
8022
  if not MYPY: