pulumi-oci 2.27.0a1742279484__py3-none-any.whl → 2.28.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.
- pulumi_oci/__init__.py +144 -0
- pulumi_oci/containerengine/_inputs.py +9 -9
- pulumi_oci/containerengine/outputs.py +18 -22
- pulumi_oci/core/__init__.py +9 -0
- pulumi_oci/core/_inputs.py +196 -0
- pulumi_oci/core/compute_gpu_memory_cluster.py +706 -0
- pulumi_oci/core/compute_gpu_memory_fabric.py +667 -0
- pulumi_oci/core/get_compute_gpu_memory_cluster.py +281 -0
- pulumi_oci/core/get_compute_gpu_memory_cluster_instances.py +144 -0
- pulumi_oci/core/get_compute_gpu_memory_clusters.py +232 -0
- pulumi_oci/core/get_compute_gpu_memory_fabric.py +309 -0
- pulumi_oci/core/get_compute_gpu_memory_fabrics.py +289 -0
- pulumi_oci/core/get_compute_host.py +393 -0
- pulumi_oci/core/get_compute_hosts.py +254 -0
- pulumi_oci/core/outputs.py +847 -0
- pulumi_oci/database/__init__.py +2 -0
- pulumi_oci/database/_inputs.py +2211 -24
- pulumi_oci/database/autonomous_container_database.py +305 -52
- pulumi_oci/database/autonomous_container_database_add_standby.py +2183 -0
- pulumi_oci/database/autonomous_container_database_dataguard_association.py +80 -40
- pulumi_oci/database/autonomous_container_database_snapshot_standby.py +322 -0
- pulumi_oci/database/get_autonomous_container_database.py +103 -2
- pulumi_oci/database/get_autonomous_container_database_dataguard_association.py +12 -1
- pulumi_oci/database/get_autonomous_container_databases.py +1 -1
- pulumi_oci/database/get_maintenance_run.py +15 -1
- pulumi_oci/database/maintenance_run.py +28 -0
- pulumi_oci/database/outputs.py +2747 -225
- pulumi_oci/goldengate/_inputs.py +128 -0
- pulumi_oci/goldengate/deployment.py +103 -0
- pulumi_oci/goldengate/deployment_backup.py +28 -0
- pulumi_oci/goldengate/get_deployment.py +43 -1
- pulumi_oci/goldengate/get_deployment_backup.py +15 -1
- pulumi_oci/goldengate/outputs.py +289 -0
- pulumi_oci/identity/_inputs.py +9 -49
- pulumi_oci/identity/domains_app.py +34 -0
- pulumi_oci/identity/get_domains_app.py +12 -1
- pulumi_oci/identity/outputs.py +20 -47
- pulumi_oci/osmanagementhub/__init__.py +18 -0
- pulumi_oci/osmanagementhub/_inputs.py +677 -12
- pulumi_oci/osmanagementhub/event.py +8 -0
- pulumi_oci/osmanagementhub/get_entitlements.py +2 -2
- pulumi_oci/osmanagementhub/get_event.py +2 -0
- pulumi_oci/osmanagementhub/get_events.py +2 -0
- pulumi_oci/osmanagementhub/get_managed_instance.py +30 -2
- pulumi_oci/osmanagementhub/get_managed_instances.py +75 -63
- pulumi_oci/osmanagementhub/get_management_station.py +116 -4
- pulumi_oci/osmanagementhub/get_management_station_mirrors.py +1 -1
- pulumi_oci/osmanagementhub/get_management_stations.py +47 -4
- pulumi_oci/osmanagementhub/get_profile.py +32 -4
- pulumi_oci/osmanagementhub/get_profile_available_software_sources.py +207 -0
- pulumi_oci/osmanagementhub/get_profile_version.py +388 -0
- pulumi_oci/osmanagementhub/get_profiles.py +63 -3
- pulumi_oci/osmanagementhub/get_scheduled_job.py +15 -1
- pulumi_oci/osmanagementhub/get_software_package.py +2 -2
- pulumi_oci/osmanagementhub/get_software_package_software_source.py +7 -7
- pulumi_oci/osmanagementhub/get_software_source.py +89 -5
- pulumi_oci/osmanagementhub/get_software_source_available_software_packages.py +209 -0
- pulumi_oci/osmanagementhub/get_software_source_manifest.py +127 -0
- pulumi_oci/osmanagementhub/get_software_sources.py +30 -8
- pulumi_oci/osmanagementhub/lifecycle_stage_attach_managed_instances_management.py +6 -39
- pulumi_oci/osmanagementhub/lifecycle_stage_detach_managed_instances_management.py +6 -39
- pulumi_oci/osmanagementhub/lifecycle_stage_reboot_management.py +297 -0
- pulumi_oci/osmanagementhub/managed_instance.py +56 -0
- pulumi_oci/osmanagementhub/managed_instance_group_install_packages_management.py +49 -0
- pulumi_oci/osmanagementhub/managed_instance_group_reboot_management.py +297 -0
- pulumi_oci/osmanagementhub/managed_instance_reboot_management.py +299 -0
- pulumi_oci/osmanagementhub/management_station.py +251 -4
- pulumi_oci/osmanagementhub/management_station_associate_managed_instances_management.py +298 -0
- pulumi_oci/osmanagementhub/management_station_refresh_management.py +2 -2
- pulumi_oci/osmanagementhub/management_station_synchronize_mirrors_management.py +9 -9
- pulumi_oci/osmanagementhub/outputs.py +1349 -50
- pulumi_oci/osmanagementhub/profile.py +70 -14
- pulumi_oci/osmanagementhub/profile_attach_lifecycle_stage_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_attach_managed_instance_group_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_attach_management_station_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_attach_software_sources_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_detach_software_sources_management.py +269 -0
- pulumi_oci/osmanagementhub/scheduled_job.py +72 -21
- pulumi_oci/osmanagementhub/software_source.py +365 -26
- pulumi_oci/osmanagementhub/software_source_add_packages_management.py +67 -10
- pulumi_oci/osmanagementhub/software_source_generate_metadata_management.py +217 -0
- pulumi_oci/osmanagementhub/software_source_manifest.py +268 -0
- pulumi_oci/osmanagementhub/software_source_remove_packages_management.py +277 -0
- pulumi_oci/osmanagementhub/software_source_replace_packages_management.py +277 -0
- pulumi_oci/osmanagementhub/work_request_rerun_management.py +325 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/sch/_inputs.py +24 -24
- pulumi_oci/sch/connector.py +46 -18
- pulumi_oci/sch/get_service_connector.py +16 -8
- pulumi_oci/sch/outputs.py +53 -50
- pulumi_oci/stackmonitoring/_inputs.py +191 -0
- pulumi_oci/stackmonitoring/config.py +307 -23
- pulumi_oci/stackmonitoring/get_config.py +90 -5
- pulumi_oci/stackmonitoring/get_maintenance_window.py +43 -1
- pulumi_oci/stackmonitoring/maintenance_window.py +136 -2
- pulumi_oci/stackmonitoring/outputs.py +448 -3
- {pulumi_oci-2.27.0a1742279484.dist-info → pulumi_oci-2.28.0.dist-info}/METADATA +2 -2
- {pulumi_oci-2.27.0a1742279484.dist-info → pulumi_oci-2.28.0.dist-info}/RECORD +100 -71
- {pulumi_oci-2.27.0a1742279484.dist-info → pulumi_oci-2.28.0.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.27.0a1742279484.dist-info → pulumi_oci-2.28.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,667 @@
|
|
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
|
+
|
17
|
+
__all__ = ['ComputeGpuMemoryFabricArgs', 'ComputeGpuMemoryFabric']
|
18
|
+
|
19
|
+
@pulumi.input_type
|
20
|
+
class ComputeGpuMemoryFabricArgs:
|
21
|
+
def __init__(__self__, *,
|
22
|
+
compute_gpu_memory_fabric_id: pulumi.Input[str],
|
23
|
+
compartment_id: Optional[pulumi.Input[str]] = None,
|
24
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
25
|
+
display_name: Optional[pulumi.Input[str]] = None,
|
26
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
|
27
|
+
"""
|
28
|
+
The set of arguments for constructing a ComputeGpuMemoryFabric resource.
|
29
|
+
:param pulumi.Input[str] compute_gpu_memory_fabric_id: The OCID of the compute GPU memory fabric.
|
30
|
+
:param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the compartment. This should always be the root compartment.
|
31
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) 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"}`
|
32
|
+
:param pulumi.Input[str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
33
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) 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"}`
|
34
|
+
|
35
|
+
|
36
|
+
** IMPORTANT **
|
37
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
38
|
+
"""
|
39
|
+
pulumi.set(__self__, "compute_gpu_memory_fabric_id", compute_gpu_memory_fabric_id)
|
40
|
+
if compartment_id is not None:
|
41
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
42
|
+
if defined_tags is not None:
|
43
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
44
|
+
if display_name is not None:
|
45
|
+
pulumi.set(__self__, "display_name", display_name)
|
46
|
+
if freeform_tags is not None:
|
47
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
48
|
+
|
49
|
+
@property
|
50
|
+
@pulumi.getter(name="computeGpuMemoryFabricId")
|
51
|
+
def compute_gpu_memory_fabric_id(self) -> pulumi.Input[str]:
|
52
|
+
"""
|
53
|
+
The OCID of the compute GPU memory fabric.
|
54
|
+
"""
|
55
|
+
return pulumi.get(self, "compute_gpu_memory_fabric_id")
|
56
|
+
|
57
|
+
@compute_gpu_memory_fabric_id.setter
|
58
|
+
def compute_gpu_memory_fabric_id(self, value: pulumi.Input[str]):
|
59
|
+
pulumi.set(self, "compute_gpu_memory_fabric_id", value)
|
60
|
+
|
61
|
+
@property
|
62
|
+
@pulumi.getter(name="compartmentId")
|
63
|
+
def compartment_id(self) -> Optional[pulumi.Input[str]]:
|
64
|
+
"""
|
65
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the compartment. This should always be the root compartment.
|
66
|
+
"""
|
67
|
+
return pulumi.get(self, "compartment_id")
|
68
|
+
|
69
|
+
@compartment_id.setter
|
70
|
+
def compartment_id(self, value: Optional[pulumi.Input[str]]):
|
71
|
+
pulumi.set(self, "compartment_id", value)
|
72
|
+
|
73
|
+
@property
|
74
|
+
@pulumi.getter(name="definedTags")
|
75
|
+
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
76
|
+
"""
|
77
|
+
(Updatable) 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"}`
|
78
|
+
"""
|
79
|
+
return pulumi.get(self, "defined_tags")
|
80
|
+
|
81
|
+
@defined_tags.setter
|
82
|
+
def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
83
|
+
pulumi.set(self, "defined_tags", value)
|
84
|
+
|
85
|
+
@property
|
86
|
+
@pulumi.getter(name="displayName")
|
87
|
+
def display_name(self) -> Optional[pulumi.Input[str]]:
|
88
|
+
"""
|
89
|
+
(Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
90
|
+
"""
|
91
|
+
return pulumi.get(self, "display_name")
|
92
|
+
|
93
|
+
@display_name.setter
|
94
|
+
def display_name(self, value: Optional[pulumi.Input[str]]):
|
95
|
+
pulumi.set(self, "display_name", value)
|
96
|
+
|
97
|
+
@property
|
98
|
+
@pulumi.getter(name="freeformTags")
|
99
|
+
def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
100
|
+
"""
|
101
|
+
(Updatable) 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"}`
|
102
|
+
|
103
|
+
|
104
|
+
** IMPORTANT **
|
105
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
106
|
+
"""
|
107
|
+
return pulumi.get(self, "freeform_tags")
|
108
|
+
|
109
|
+
@freeform_tags.setter
|
110
|
+
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
111
|
+
pulumi.set(self, "freeform_tags", value)
|
112
|
+
|
113
|
+
|
114
|
+
@pulumi.input_type
|
115
|
+
class _ComputeGpuMemoryFabricState:
|
116
|
+
def __init__(__self__, *,
|
117
|
+
additional_data: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
118
|
+
compartment_id: Optional[pulumi.Input[str]] = None,
|
119
|
+
compute_gpu_memory_fabric_id: Optional[pulumi.Input[str]] = None,
|
120
|
+
compute_hpc_island_id: Optional[pulumi.Input[str]] = None,
|
121
|
+
compute_local_block_id: Optional[pulumi.Input[str]] = None,
|
122
|
+
compute_network_block_id: Optional[pulumi.Input[str]] = None,
|
123
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
124
|
+
display_name: Optional[pulumi.Input[str]] = None,
|
125
|
+
fabric_health: Optional[pulumi.Input[str]] = None,
|
126
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
127
|
+
healthy_host_count: Optional[pulumi.Input[str]] = None,
|
128
|
+
state: Optional[pulumi.Input[str]] = None,
|
129
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
130
|
+
time_created: Optional[pulumi.Input[str]] = None,
|
131
|
+
total_host_count: Optional[pulumi.Input[str]] = None):
|
132
|
+
"""
|
133
|
+
Input properties used for looking up and filtering ComputeGpuMemoryFabric resources.
|
134
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] additional_data: Additional data that can be exposed to the customer. Right now it will include the switch tray ids.
|
135
|
+
:param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the compartment. This should always be the root compartment.
|
136
|
+
:param pulumi.Input[str] compute_gpu_memory_fabric_id: The OCID of the compute GPU memory fabric.
|
137
|
+
:param pulumi.Input[str] compute_hpc_island_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for Customer-unique HPC Island
|
138
|
+
:param pulumi.Input[str] compute_local_block_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for Customer-unique Local Block
|
139
|
+
:param pulumi.Input[str] compute_network_block_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for Customer-unique Network Block
|
140
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) 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"}`
|
141
|
+
:param pulumi.Input[str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
142
|
+
:param pulumi.Input[str] fabric_health: The health state of the GPU memory fabric
|
143
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) 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"}`
|
144
|
+
|
145
|
+
|
146
|
+
** IMPORTANT **
|
147
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
148
|
+
:param pulumi.Input[str] healthy_host_count: The total number of healthy bare metal hosts located in this compute GPU memory fabric.
|
149
|
+
:param pulumi.Input[str] state: The lifecycle state of the GPU memory fabric
|
150
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
151
|
+
:param pulumi.Input[str] time_created: The date and time that the compute GPU memory fabric record was created, in the format defined by [RFC3339] (https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
152
|
+
:param pulumi.Input[str] total_host_count: The total number of bare metal hosts located in this compute GPU memory fabric.
|
153
|
+
"""
|
154
|
+
if additional_data is not None:
|
155
|
+
pulumi.set(__self__, "additional_data", additional_data)
|
156
|
+
if compartment_id is not None:
|
157
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
158
|
+
if compute_gpu_memory_fabric_id is not None:
|
159
|
+
pulumi.set(__self__, "compute_gpu_memory_fabric_id", compute_gpu_memory_fabric_id)
|
160
|
+
if compute_hpc_island_id is not None:
|
161
|
+
pulumi.set(__self__, "compute_hpc_island_id", compute_hpc_island_id)
|
162
|
+
if compute_local_block_id is not None:
|
163
|
+
pulumi.set(__self__, "compute_local_block_id", compute_local_block_id)
|
164
|
+
if compute_network_block_id is not None:
|
165
|
+
pulumi.set(__self__, "compute_network_block_id", compute_network_block_id)
|
166
|
+
if defined_tags is not None:
|
167
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
168
|
+
if display_name is not None:
|
169
|
+
pulumi.set(__self__, "display_name", display_name)
|
170
|
+
if fabric_health is not None:
|
171
|
+
pulumi.set(__self__, "fabric_health", fabric_health)
|
172
|
+
if freeform_tags is not None:
|
173
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
174
|
+
if healthy_host_count is not None:
|
175
|
+
pulumi.set(__self__, "healthy_host_count", healthy_host_count)
|
176
|
+
if state is not None:
|
177
|
+
pulumi.set(__self__, "state", state)
|
178
|
+
if system_tags is not None:
|
179
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
180
|
+
if time_created is not None:
|
181
|
+
pulumi.set(__self__, "time_created", time_created)
|
182
|
+
if total_host_count is not None:
|
183
|
+
pulumi.set(__self__, "total_host_count", total_host_count)
|
184
|
+
|
185
|
+
@property
|
186
|
+
@pulumi.getter(name="additionalData")
|
187
|
+
def additional_data(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
188
|
+
"""
|
189
|
+
Additional data that can be exposed to the customer. Right now it will include the switch tray ids.
|
190
|
+
"""
|
191
|
+
return pulumi.get(self, "additional_data")
|
192
|
+
|
193
|
+
@additional_data.setter
|
194
|
+
def additional_data(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
195
|
+
pulumi.set(self, "additional_data", value)
|
196
|
+
|
197
|
+
@property
|
198
|
+
@pulumi.getter(name="compartmentId")
|
199
|
+
def compartment_id(self) -> Optional[pulumi.Input[str]]:
|
200
|
+
"""
|
201
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the compartment. This should always be the root compartment.
|
202
|
+
"""
|
203
|
+
return pulumi.get(self, "compartment_id")
|
204
|
+
|
205
|
+
@compartment_id.setter
|
206
|
+
def compartment_id(self, value: Optional[pulumi.Input[str]]):
|
207
|
+
pulumi.set(self, "compartment_id", value)
|
208
|
+
|
209
|
+
@property
|
210
|
+
@pulumi.getter(name="computeGpuMemoryFabricId")
|
211
|
+
def compute_gpu_memory_fabric_id(self) -> Optional[pulumi.Input[str]]:
|
212
|
+
"""
|
213
|
+
The OCID of the compute GPU memory fabric.
|
214
|
+
"""
|
215
|
+
return pulumi.get(self, "compute_gpu_memory_fabric_id")
|
216
|
+
|
217
|
+
@compute_gpu_memory_fabric_id.setter
|
218
|
+
def compute_gpu_memory_fabric_id(self, value: Optional[pulumi.Input[str]]):
|
219
|
+
pulumi.set(self, "compute_gpu_memory_fabric_id", value)
|
220
|
+
|
221
|
+
@property
|
222
|
+
@pulumi.getter(name="computeHpcIslandId")
|
223
|
+
def compute_hpc_island_id(self) -> Optional[pulumi.Input[str]]:
|
224
|
+
"""
|
225
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for Customer-unique HPC Island
|
226
|
+
"""
|
227
|
+
return pulumi.get(self, "compute_hpc_island_id")
|
228
|
+
|
229
|
+
@compute_hpc_island_id.setter
|
230
|
+
def compute_hpc_island_id(self, value: Optional[pulumi.Input[str]]):
|
231
|
+
pulumi.set(self, "compute_hpc_island_id", value)
|
232
|
+
|
233
|
+
@property
|
234
|
+
@pulumi.getter(name="computeLocalBlockId")
|
235
|
+
def compute_local_block_id(self) -> Optional[pulumi.Input[str]]:
|
236
|
+
"""
|
237
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for Customer-unique Local Block
|
238
|
+
"""
|
239
|
+
return pulumi.get(self, "compute_local_block_id")
|
240
|
+
|
241
|
+
@compute_local_block_id.setter
|
242
|
+
def compute_local_block_id(self, value: Optional[pulumi.Input[str]]):
|
243
|
+
pulumi.set(self, "compute_local_block_id", value)
|
244
|
+
|
245
|
+
@property
|
246
|
+
@pulumi.getter(name="computeNetworkBlockId")
|
247
|
+
def compute_network_block_id(self) -> Optional[pulumi.Input[str]]:
|
248
|
+
"""
|
249
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for Customer-unique Network Block
|
250
|
+
"""
|
251
|
+
return pulumi.get(self, "compute_network_block_id")
|
252
|
+
|
253
|
+
@compute_network_block_id.setter
|
254
|
+
def compute_network_block_id(self, value: Optional[pulumi.Input[str]]):
|
255
|
+
pulumi.set(self, "compute_network_block_id", value)
|
256
|
+
|
257
|
+
@property
|
258
|
+
@pulumi.getter(name="definedTags")
|
259
|
+
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
260
|
+
"""
|
261
|
+
(Updatable) 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"}`
|
262
|
+
"""
|
263
|
+
return pulumi.get(self, "defined_tags")
|
264
|
+
|
265
|
+
@defined_tags.setter
|
266
|
+
def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
267
|
+
pulumi.set(self, "defined_tags", value)
|
268
|
+
|
269
|
+
@property
|
270
|
+
@pulumi.getter(name="displayName")
|
271
|
+
def display_name(self) -> Optional[pulumi.Input[str]]:
|
272
|
+
"""
|
273
|
+
(Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
274
|
+
"""
|
275
|
+
return pulumi.get(self, "display_name")
|
276
|
+
|
277
|
+
@display_name.setter
|
278
|
+
def display_name(self, value: Optional[pulumi.Input[str]]):
|
279
|
+
pulumi.set(self, "display_name", value)
|
280
|
+
|
281
|
+
@property
|
282
|
+
@pulumi.getter(name="fabricHealth")
|
283
|
+
def fabric_health(self) -> Optional[pulumi.Input[str]]:
|
284
|
+
"""
|
285
|
+
The health state of the GPU memory fabric
|
286
|
+
"""
|
287
|
+
return pulumi.get(self, "fabric_health")
|
288
|
+
|
289
|
+
@fabric_health.setter
|
290
|
+
def fabric_health(self, value: Optional[pulumi.Input[str]]):
|
291
|
+
pulumi.set(self, "fabric_health", value)
|
292
|
+
|
293
|
+
@property
|
294
|
+
@pulumi.getter(name="freeformTags")
|
295
|
+
def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
296
|
+
"""
|
297
|
+
(Updatable) 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"}`
|
298
|
+
|
299
|
+
|
300
|
+
** IMPORTANT **
|
301
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
302
|
+
"""
|
303
|
+
return pulumi.get(self, "freeform_tags")
|
304
|
+
|
305
|
+
@freeform_tags.setter
|
306
|
+
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
307
|
+
pulumi.set(self, "freeform_tags", value)
|
308
|
+
|
309
|
+
@property
|
310
|
+
@pulumi.getter(name="healthyHostCount")
|
311
|
+
def healthy_host_count(self) -> Optional[pulumi.Input[str]]:
|
312
|
+
"""
|
313
|
+
The total number of healthy bare metal hosts located in this compute GPU memory fabric.
|
314
|
+
"""
|
315
|
+
return pulumi.get(self, "healthy_host_count")
|
316
|
+
|
317
|
+
@healthy_host_count.setter
|
318
|
+
def healthy_host_count(self, value: Optional[pulumi.Input[str]]):
|
319
|
+
pulumi.set(self, "healthy_host_count", value)
|
320
|
+
|
321
|
+
@property
|
322
|
+
@pulumi.getter
|
323
|
+
def state(self) -> Optional[pulumi.Input[str]]:
|
324
|
+
"""
|
325
|
+
The lifecycle state of the GPU memory fabric
|
326
|
+
"""
|
327
|
+
return pulumi.get(self, "state")
|
328
|
+
|
329
|
+
@state.setter
|
330
|
+
def state(self, value: Optional[pulumi.Input[str]]):
|
331
|
+
pulumi.set(self, "state", value)
|
332
|
+
|
333
|
+
@property
|
334
|
+
@pulumi.getter(name="systemTags")
|
335
|
+
def system_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
336
|
+
"""
|
337
|
+
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
338
|
+
"""
|
339
|
+
return pulumi.get(self, "system_tags")
|
340
|
+
|
341
|
+
@system_tags.setter
|
342
|
+
def system_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
343
|
+
pulumi.set(self, "system_tags", value)
|
344
|
+
|
345
|
+
@property
|
346
|
+
@pulumi.getter(name="timeCreated")
|
347
|
+
def time_created(self) -> Optional[pulumi.Input[str]]:
|
348
|
+
"""
|
349
|
+
The date and time that the compute GPU memory fabric record was created, in the format defined by [RFC3339] (https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
350
|
+
"""
|
351
|
+
return pulumi.get(self, "time_created")
|
352
|
+
|
353
|
+
@time_created.setter
|
354
|
+
def time_created(self, value: Optional[pulumi.Input[str]]):
|
355
|
+
pulumi.set(self, "time_created", value)
|
356
|
+
|
357
|
+
@property
|
358
|
+
@pulumi.getter(name="totalHostCount")
|
359
|
+
def total_host_count(self) -> Optional[pulumi.Input[str]]:
|
360
|
+
"""
|
361
|
+
The total number of bare metal hosts located in this compute GPU memory fabric.
|
362
|
+
"""
|
363
|
+
return pulumi.get(self, "total_host_count")
|
364
|
+
|
365
|
+
@total_host_count.setter
|
366
|
+
def total_host_count(self, value: Optional[pulumi.Input[str]]):
|
367
|
+
pulumi.set(self, "total_host_count", value)
|
368
|
+
|
369
|
+
|
370
|
+
class ComputeGpuMemoryFabric(pulumi.CustomResource):
|
371
|
+
@overload
|
372
|
+
def __init__(__self__,
|
373
|
+
resource_name: str,
|
374
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
375
|
+
compartment_id: Optional[pulumi.Input[str]] = None,
|
376
|
+
compute_gpu_memory_fabric_id: Optional[pulumi.Input[str]] = None,
|
377
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
378
|
+
display_name: Optional[pulumi.Input[str]] = None,
|
379
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
380
|
+
__props__=None):
|
381
|
+
"""
|
382
|
+
This resource provides the Compute Gpu Memory Fabric resource in Oracle Cloud Infrastructure Core service.
|
383
|
+
|
384
|
+
Customer can update displayName and tags for compute GPU memory fabric record
|
385
|
+
|
386
|
+
## Import
|
387
|
+
|
388
|
+
ComputeGpuMemoryFabrics can be imported using the `id`, e.g.
|
389
|
+
|
390
|
+
```sh
|
391
|
+
$ pulumi import oci:Core/computeGpuMemoryFabric:ComputeGpuMemoryFabric test_compute_gpu_memory_fabric "id"
|
392
|
+
```
|
393
|
+
|
394
|
+
:param str resource_name: The name of the resource.
|
395
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
396
|
+
:param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the compartment. This should always be the root compartment.
|
397
|
+
:param pulumi.Input[str] compute_gpu_memory_fabric_id: The OCID of the compute GPU memory fabric.
|
398
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) 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"}`
|
399
|
+
:param pulumi.Input[str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
400
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) 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"}`
|
401
|
+
|
402
|
+
|
403
|
+
** IMPORTANT **
|
404
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
405
|
+
"""
|
406
|
+
...
|
407
|
+
@overload
|
408
|
+
def __init__(__self__,
|
409
|
+
resource_name: str,
|
410
|
+
args: ComputeGpuMemoryFabricArgs,
|
411
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
412
|
+
"""
|
413
|
+
This resource provides the Compute Gpu Memory Fabric resource in Oracle Cloud Infrastructure Core service.
|
414
|
+
|
415
|
+
Customer can update displayName and tags for compute GPU memory fabric record
|
416
|
+
|
417
|
+
## Import
|
418
|
+
|
419
|
+
ComputeGpuMemoryFabrics can be imported using the `id`, e.g.
|
420
|
+
|
421
|
+
```sh
|
422
|
+
$ pulumi import oci:Core/computeGpuMemoryFabric:ComputeGpuMemoryFabric test_compute_gpu_memory_fabric "id"
|
423
|
+
```
|
424
|
+
|
425
|
+
:param str resource_name: The name of the resource.
|
426
|
+
:param ComputeGpuMemoryFabricArgs args: The arguments to use to populate this resource's properties.
|
427
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
428
|
+
"""
|
429
|
+
...
|
430
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
431
|
+
resource_args, opts = _utilities.get_resource_args_opts(ComputeGpuMemoryFabricArgs, pulumi.ResourceOptions, *args, **kwargs)
|
432
|
+
if resource_args is not None:
|
433
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
434
|
+
else:
|
435
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
436
|
+
|
437
|
+
def _internal_init(__self__,
|
438
|
+
resource_name: str,
|
439
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
440
|
+
compartment_id: Optional[pulumi.Input[str]] = None,
|
441
|
+
compute_gpu_memory_fabric_id: Optional[pulumi.Input[str]] = None,
|
442
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
443
|
+
display_name: Optional[pulumi.Input[str]] = None,
|
444
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
445
|
+
__props__=None):
|
446
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
447
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
448
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
449
|
+
if opts.id is None:
|
450
|
+
if __props__ is not None:
|
451
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
452
|
+
__props__ = ComputeGpuMemoryFabricArgs.__new__(ComputeGpuMemoryFabricArgs)
|
453
|
+
|
454
|
+
__props__.__dict__["compartment_id"] = compartment_id
|
455
|
+
if compute_gpu_memory_fabric_id is None and not opts.urn:
|
456
|
+
raise TypeError("Missing required property 'compute_gpu_memory_fabric_id'")
|
457
|
+
__props__.__dict__["compute_gpu_memory_fabric_id"] = compute_gpu_memory_fabric_id
|
458
|
+
__props__.__dict__["defined_tags"] = defined_tags
|
459
|
+
__props__.__dict__["display_name"] = display_name
|
460
|
+
__props__.__dict__["freeform_tags"] = freeform_tags
|
461
|
+
__props__.__dict__["additional_data"] = None
|
462
|
+
__props__.__dict__["compute_hpc_island_id"] = None
|
463
|
+
__props__.__dict__["compute_local_block_id"] = None
|
464
|
+
__props__.__dict__["compute_network_block_id"] = None
|
465
|
+
__props__.__dict__["fabric_health"] = None
|
466
|
+
__props__.__dict__["healthy_host_count"] = None
|
467
|
+
__props__.__dict__["state"] = None
|
468
|
+
__props__.__dict__["system_tags"] = None
|
469
|
+
__props__.__dict__["time_created"] = None
|
470
|
+
__props__.__dict__["total_host_count"] = None
|
471
|
+
super(ComputeGpuMemoryFabric, __self__).__init__(
|
472
|
+
'oci:Core/computeGpuMemoryFabric:ComputeGpuMemoryFabric',
|
473
|
+
resource_name,
|
474
|
+
__props__,
|
475
|
+
opts)
|
476
|
+
|
477
|
+
@staticmethod
|
478
|
+
def get(resource_name: str,
|
479
|
+
id: pulumi.Input[str],
|
480
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
481
|
+
additional_data: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
482
|
+
compartment_id: Optional[pulumi.Input[str]] = None,
|
483
|
+
compute_gpu_memory_fabric_id: Optional[pulumi.Input[str]] = None,
|
484
|
+
compute_hpc_island_id: Optional[pulumi.Input[str]] = None,
|
485
|
+
compute_local_block_id: Optional[pulumi.Input[str]] = None,
|
486
|
+
compute_network_block_id: Optional[pulumi.Input[str]] = None,
|
487
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
488
|
+
display_name: Optional[pulumi.Input[str]] = None,
|
489
|
+
fabric_health: Optional[pulumi.Input[str]] = None,
|
490
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
491
|
+
healthy_host_count: Optional[pulumi.Input[str]] = None,
|
492
|
+
state: Optional[pulumi.Input[str]] = None,
|
493
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
494
|
+
time_created: Optional[pulumi.Input[str]] = None,
|
495
|
+
total_host_count: Optional[pulumi.Input[str]] = None) -> 'ComputeGpuMemoryFabric':
|
496
|
+
"""
|
497
|
+
Get an existing ComputeGpuMemoryFabric resource's state with the given name, id, and optional extra
|
498
|
+
properties used to qualify the lookup.
|
499
|
+
|
500
|
+
:param str resource_name: The unique name of the resulting resource.
|
501
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
502
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
503
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] additional_data: Additional data that can be exposed to the customer. Right now it will include the switch tray ids.
|
504
|
+
:param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the compartment. This should always be the root compartment.
|
505
|
+
:param pulumi.Input[str] compute_gpu_memory_fabric_id: The OCID of the compute GPU memory fabric.
|
506
|
+
:param pulumi.Input[str] compute_hpc_island_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for Customer-unique HPC Island
|
507
|
+
:param pulumi.Input[str] compute_local_block_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for Customer-unique Local Block
|
508
|
+
:param pulumi.Input[str] compute_network_block_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for Customer-unique Network Block
|
509
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) 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"}`
|
510
|
+
:param pulumi.Input[str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
511
|
+
:param pulumi.Input[str] fabric_health: The health state of the GPU memory fabric
|
512
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) 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"}`
|
513
|
+
|
514
|
+
|
515
|
+
** IMPORTANT **
|
516
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
517
|
+
:param pulumi.Input[str] healthy_host_count: The total number of healthy bare metal hosts located in this compute GPU memory fabric.
|
518
|
+
:param pulumi.Input[str] state: The lifecycle state of the GPU memory fabric
|
519
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
520
|
+
:param pulumi.Input[str] time_created: The date and time that the compute GPU memory fabric record was created, in the format defined by [RFC3339] (https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
521
|
+
:param pulumi.Input[str] total_host_count: The total number of bare metal hosts located in this compute GPU memory fabric.
|
522
|
+
"""
|
523
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
524
|
+
|
525
|
+
__props__ = _ComputeGpuMemoryFabricState.__new__(_ComputeGpuMemoryFabricState)
|
526
|
+
|
527
|
+
__props__.__dict__["additional_data"] = additional_data
|
528
|
+
__props__.__dict__["compartment_id"] = compartment_id
|
529
|
+
__props__.__dict__["compute_gpu_memory_fabric_id"] = compute_gpu_memory_fabric_id
|
530
|
+
__props__.__dict__["compute_hpc_island_id"] = compute_hpc_island_id
|
531
|
+
__props__.__dict__["compute_local_block_id"] = compute_local_block_id
|
532
|
+
__props__.__dict__["compute_network_block_id"] = compute_network_block_id
|
533
|
+
__props__.__dict__["defined_tags"] = defined_tags
|
534
|
+
__props__.__dict__["display_name"] = display_name
|
535
|
+
__props__.__dict__["fabric_health"] = fabric_health
|
536
|
+
__props__.__dict__["freeform_tags"] = freeform_tags
|
537
|
+
__props__.__dict__["healthy_host_count"] = healthy_host_count
|
538
|
+
__props__.__dict__["state"] = state
|
539
|
+
__props__.__dict__["system_tags"] = system_tags
|
540
|
+
__props__.__dict__["time_created"] = time_created
|
541
|
+
__props__.__dict__["total_host_count"] = total_host_count
|
542
|
+
return ComputeGpuMemoryFabric(resource_name, opts=opts, __props__=__props__)
|
543
|
+
|
544
|
+
@property
|
545
|
+
@pulumi.getter(name="additionalData")
|
546
|
+
def additional_data(self) -> pulumi.Output[Mapping[str, str]]:
|
547
|
+
"""
|
548
|
+
Additional data that can be exposed to the customer. Right now it will include the switch tray ids.
|
549
|
+
"""
|
550
|
+
return pulumi.get(self, "additional_data")
|
551
|
+
|
552
|
+
@property
|
553
|
+
@pulumi.getter(name="compartmentId")
|
554
|
+
def compartment_id(self) -> pulumi.Output[str]:
|
555
|
+
"""
|
556
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the compartment. This should always be the root compartment.
|
557
|
+
"""
|
558
|
+
return pulumi.get(self, "compartment_id")
|
559
|
+
|
560
|
+
@property
|
561
|
+
@pulumi.getter(name="computeGpuMemoryFabricId")
|
562
|
+
def compute_gpu_memory_fabric_id(self) -> pulumi.Output[str]:
|
563
|
+
"""
|
564
|
+
The OCID of the compute GPU memory fabric.
|
565
|
+
"""
|
566
|
+
return pulumi.get(self, "compute_gpu_memory_fabric_id")
|
567
|
+
|
568
|
+
@property
|
569
|
+
@pulumi.getter(name="computeHpcIslandId")
|
570
|
+
def compute_hpc_island_id(self) -> pulumi.Output[str]:
|
571
|
+
"""
|
572
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for Customer-unique HPC Island
|
573
|
+
"""
|
574
|
+
return pulumi.get(self, "compute_hpc_island_id")
|
575
|
+
|
576
|
+
@property
|
577
|
+
@pulumi.getter(name="computeLocalBlockId")
|
578
|
+
def compute_local_block_id(self) -> pulumi.Output[str]:
|
579
|
+
"""
|
580
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for Customer-unique Local Block
|
581
|
+
"""
|
582
|
+
return pulumi.get(self, "compute_local_block_id")
|
583
|
+
|
584
|
+
@property
|
585
|
+
@pulumi.getter(name="computeNetworkBlockId")
|
586
|
+
def compute_network_block_id(self) -> pulumi.Output[str]:
|
587
|
+
"""
|
588
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for Customer-unique Network Block
|
589
|
+
"""
|
590
|
+
return pulumi.get(self, "compute_network_block_id")
|
591
|
+
|
592
|
+
@property
|
593
|
+
@pulumi.getter(name="definedTags")
|
594
|
+
def defined_tags(self) -> pulumi.Output[Mapping[str, str]]:
|
595
|
+
"""
|
596
|
+
(Updatable) 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"}`
|
597
|
+
"""
|
598
|
+
return pulumi.get(self, "defined_tags")
|
599
|
+
|
600
|
+
@property
|
601
|
+
@pulumi.getter(name="displayName")
|
602
|
+
def display_name(self) -> pulumi.Output[str]:
|
603
|
+
"""
|
604
|
+
(Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
605
|
+
"""
|
606
|
+
return pulumi.get(self, "display_name")
|
607
|
+
|
608
|
+
@property
|
609
|
+
@pulumi.getter(name="fabricHealth")
|
610
|
+
def fabric_health(self) -> pulumi.Output[str]:
|
611
|
+
"""
|
612
|
+
The health state of the GPU memory fabric
|
613
|
+
"""
|
614
|
+
return pulumi.get(self, "fabric_health")
|
615
|
+
|
616
|
+
@property
|
617
|
+
@pulumi.getter(name="freeformTags")
|
618
|
+
def freeform_tags(self) -> pulumi.Output[Mapping[str, str]]:
|
619
|
+
"""
|
620
|
+
(Updatable) 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"}`
|
621
|
+
|
622
|
+
|
623
|
+
** IMPORTANT **
|
624
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
625
|
+
"""
|
626
|
+
return pulumi.get(self, "freeform_tags")
|
627
|
+
|
628
|
+
@property
|
629
|
+
@pulumi.getter(name="healthyHostCount")
|
630
|
+
def healthy_host_count(self) -> pulumi.Output[str]:
|
631
|
+
"""
|
632
|
+
The total number of healthy bare metal hosts located in this compute GPU memory fabric.
|
633
|
+
"""
|
634
|
+
return pulumi.get(self, "healthy_host_count")
|
635
|
+
|
636
|
+
@property
|
637
|
+
@pulumi.getter
|
638
|
+
def state(self) -> pulumi.Output[str]:
|
639
|
+
"""
|
640
|
+
The lifecycle state of the GPU memory fabric
|
641
|
+
"""
|
642
|
+
return pulumi.get(self, "state")
|
643
|
+
|
644
|
+
@property
|
645
|
+
@pulumi.getter(name="systemTags")
|
646
|
+
def system_tags(self) -> pulumi.Output[Mapping[str, str]]:
|
647
|
+
"""
|
648
|
+
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
649
|
+
"""
|
650
|
+
return pulumi.get(self, "system_tags")
|
651
|
+
|
652
|
+
@property
|
653
|
+
@pulumi.getter(name="timeCreated")
|
654
|
+
def time_created(self) -> pulumi.Output[str]:
|
655
|
+
"""
|
656
|
+
The date and time that the compute GPU memory fabric record was created, in the format defined by [RFC3339] (https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
657
|
+
"""
|
658
|
+
return pulumi.get(self, "time_created")
|
659
|
+
|
660
|
+
@property
|
661
|
+
@pulumi.getter(name="totalHostCount")
|
662
|
+
def total_host_count(self) -> pulumi.Output[str]:
|
663
|
+
"""
|
664
|
+
The total number of bare metal hosts located in this compute GPU memory fabric.
|
665
|
+
"""
|
666
|
+
return pulumi.get(self, "total_host_count")
|
667
|
+
|