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
pulumi_oci/core/outputs.py
CHANGED
@@ -337,6 +337,18 @@ __all__ = [
|
|
337
337
|
'GetComputeGlobalImageCapabilitySchemasFilterResult',
|
338
338
|
'GetComputeGlobalImageCapabilitySchemasVersionsComputeGlobalImageCapabilitySchemaVersionResult',
|
339
339
|
'GetComputeGlobalImageCapabilitySchemasVersionsFilterResult',
|
340
|
+
'GetComputeGpuMemoryClusterInstancesComputeGpuMemoryClusterInstanceCollectionResult',
|
341
|
+
'GetComputeGpuMemoryClusterInstancesComputeGpuMemoryClusterInstanceCollectionItemResult',
|
342
|
+
'GetComputeGpuMemoryClusterInstancesFilterResult',
|
343
|
+
'GetComputeGpuMemoryClustersComputeGpuMemoryClusterCollectionResult',
|
344
|
+
'GetComputeGpuMemoryClustersComputeGpuMemoryClusterCollectionItemResult',
|
345
|
+
'GetComputeGpuMemoryClustersFilterResult',
|
346
|
+
'GetComputeGpuMemoryFabricsComputeGpuMemoryFabricCollectionResult',
|
347
|
+
'GetComputeGpuMemoryFabricsComputeGpuMemoryFabricCollectionItemResult',
|
348
|
+
'GetComputeGpuMemoryFabricsFilterResult',
|
349
|
+
'GetComputeHostsComputeHostCollectionResult',
|
350
|
+
'GetComputeHostsComputeHostCollectionItemResult',
|
351
|
+
'GetComputeHostsFilterResult',
|
340
352
|
'GetComputeImageCapabilitySchemasComputeImageCapabilitySchemaResult',
|
341
353
|
'GetComputeImageCapabilitySchemasFilterResult',
|
342
354
|
'GetConsoleHistoriesConsoleHistoryResult',
|
@@ -23050,6 +23062,841 @@ class GetComputeGlobalImageCapabilitySchemasVersionsFilterResult(dict):
|
|
23050
23062
|
return pulumi.get(self, "regex")
|
23051
23063
|
|
23052
23064
|
|
23065
|
+
@pulumi.output_type
|
23066
|
+
class GetComputeGpuMemoryClusterInstancesComputeGpuMemoryClusterInstanceCollectionResult(dict):
|
23067
|
+
def __init__(__self__, *,
|
23068
|
+
items: Sequence['outputs.GetComputeGpuMemoryClusterInstancesComputeGpuMemoryClusterInstanceCollectionItemResult']):
|
23069
|
+
"""
|
23070
|
+
:param Sequence['GetComputeGpuMemoryClusterInstancesComputeGpuMemoryClusterInstanceCollectionItemArgs'] items: The list of compute GPU memory cluster instances.
|
23071
|
+
"""
|
23072
|
+
pulumi.set(__self__, "items", items)
|
23073
|
+
|
23074
|
+
@property
|
23075
|
+
@pulumi.getter
|
23076
|
+
def items(self) -> Sequence['outputs.GetComputeGpuMemoryClusterInstancesComputeGpuMemoryClusterInstanceCollectionItemResult']:
|
23077
|
+
"""
|
23078
|
+
The list of compute GPU memory cluster instances.
|
23079
|
+
"""
|
23080
|
+
return pulumi.get(self, "items")
|
23081
|
+
|
23082
|
+
|
23083
|
+
@pulumi.output_type
|
23084
|
+
class GetComputeGpuMemoryClusterInstancesComputeGpuMemoryClusterInstanceCollectionItemResult(dict):
|
23085
|
+
def __init__(__self__, *,
|
23086
|
+
availability_domain: str,
|
23087
|
+
compartment_id: str,
|
23088
|
+
display_name: str,
|
23089
|
+
fault_domain: str,
|
23090
|
+
id: str,
|
23091
|
+
instance_configuration_id: str,
|
23092
|
+
instance_shape: str,
|
23093
|
+
region: str,
|
23094
|
+
state: str,
|
23095
|
+
time_created: str):
|
23096
|
+
"""
|
23097
|
+
:param str availability_domain: The availability domain of the GPU memory cluster instance.
|
23098
|
+
:param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the compartment compartment.
|
23099
|
+
:param str display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
23100
|
+
:param str fault_domain: The fault domain the GPU memory cluster instance is running in.
|
23101
|
+
:param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the Customer-unique GPU memory cluster instance
|
23102
|
+
:param str instance_configuration_id: Configuration to be used for this GPU Memory Cluster instance.
|
23103
|
+
:param str instance_shape: The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance. The shape determines the number of CPUs, the amount of memory, and other resources allocated to the instance. You can list all available shapes by calling [ListShapes](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Shape/ListShapes).
|
23104
|
+
:param str region: The region that contains the availability domain the instance is running in.
|
23105
|
+
:param str state: The lifecycle state of the GPU memory cluster instance
|
23106
|
+
:param str time_created: The date and time the GPU memory cluster instance was created. Example: `2016-09-15T21:10:29.600Z`
|
23107
|
+
"""
|
23108
|
+
pulumi.set(__self__, "availability_domain", availability_domain)
|
23109
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
23110
|
+
pulumi.set(__self__, "display_name", display_name)
|
23111
|
+
pulumi.set(__self__, "fault_domain", fault_domain)
|
23112
|
+
pulumi.set(__self__, "id", id)
|
23113
|
+
pulumi.set(__self__, "instance_configuration_id", instance_configuration_id)
|
23114
|
+
pulumi.set(__self__, "instance_shape", instance_shape)
|
23115
|
+
pulumi.set(__self__, "region", region)
|
23116
|
+
pulumi.set(__self__, "state", state)
|
23117
|
+
pulumi.set(__self__, "time_created", time_created)
|
23118
|
+
|
23119
|
+
@property
|
23120
|
+
@pulumi.getter(name="availabilityDomain")
|
23121
|
+
def availability_domain(self) -> str:
|
23122
|
+
"""
|
23123
|
+
The availability domain of the GPU memory cluster instance.
|
23124
|
+
"""
|
23125
|
+
return pulumi.get(self, "availability_domain")
|
23126
|
+
|
23127
|
+
@property
|
23128
|
+
@pulumi.getter(name="compartmentId")
|
23129
|
+
def compartment_id(self) -> str:
|
23130
|
+
"""
|
23131
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the compartment compartment.
|
23132
|
+
"""
|
23133
|
+
return pulumi.get(self, "compartment_id")
|
23134
|
+
|
23135
|
+
@property
|
23136
|
+
@pulumi.getter(name="displayName")
|
23137
|
+
def display_name(self) -> str:
|
23138
|
+
"""
|
23139
|
+
A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
23140
|
+
"""
|
23141
|
+
return pulumi.get(self, "display_name")
|
23142
|
+
|
23143
|
+
@property
|
23144
|
+
@pulumi.getter(name="faultDomain")
|
23145
|
+
def fault_domain(self) -> str:
|
23146
|
+
"""
|
23147
|
+
The fault domain the GPU memory cluster instance is running in.
|
23148
|
+
"""
|
23149
|
+
return pulumi.get(self, "fault_domain")
|
23150
|
+
|
23151
|
+
@property
|
23152
|
+
@pulumi.getter
|
23153
|
+
def id(self) -> str:
|
23154
|
+
"""
|
23155
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the Customer-unique GPU memory cluster instance
|
23156
|
+
"""
|
23157
|
+
return pulumi.get(self, "id")
|
23158
|
+
|
23159
|
+
@property
|
23160
|
+
@pulumi.getter(name="instanceConfigurationId")
|
23161
|
+
def instance_configuration_id(self) -> str:
|
23162
|
+
"""
|
23163
|
+
Configuration to be used for this GPU Memory Cluster instance.
|
23164
|
+
"""
|
23165
|
+
return pulumi.get(self, "instance_configuration_id")
|
23166
|
+
|
23167
|
+
@property
|
23168
|
+
@pulumi.getter(name="instanceShape")
|
23169
|
+
def instance_shape(self) -> str:
|
23170
|
+
"""
|
23171
|
+
The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance. The shape determines the number of CPUs, the amount of memory, and other resources allocated to the instance. You can list all available shapes by calling [ListShapes](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Shape/ListShapes).
|
23172
|
+
"""
|
23173
|
+
return pulumi.get(self, "instance_shape")
|
23174
|
+
|
23175
|
+
@property
|
23176
|
+
@pulumi.getter
|
23177
|
+
def region(self) -> str:
|
23178
|
+
"""
|
23179
|
+
The region that contains the availability domain the instance is running in.
|
23180
|
+
"""
|
23181
|
+
return pulumi.get(self, "region")
|
23182
|
+
|
23183
|
+
@property
|
23184
|
+
@pulumi.getter
|
23185
|
+
def state(self) -> str:
|
23186
|
+
"""
|
23187
|
+
The lifecycle state of the GPU memory cluster instance
|
23188
|
+
"""
|
23189
|
+
return pulumi.get(self, "state")
|
23190
|
+
|
23191
|
+
@property
|
23192
|
+
@pulumi.getter(name="timeCreated")
|
23193
|
+
def time_created(self) -> str:
|
23194
|
+
"""
|
23195
|
+
The date and time the GPU memory cluster instance was created. Example: `2016-09-15T21:10:29.600Z`
|
23196
|
+
"""
|
23197
|
+
return pulumi.get(self, "time_created")
|
23198
|
+
|
23199
|
+
|
23200
|
+
@pulumi.output_type
|
23201
|
+
class GetComputeGpuMemoryClusterInstancesFilterResult(dict):
|
23202
|
+
def __init__(__self__, *,
|
23203
|
+
name: str,
|
23204
|
+
values: Sequence[str],
|
23205
|
+
regex: Optional[bool] = None):
|
23206
|
+
pulumi.set(__self__, "name", name)
|
23207
|
+
pulumi.set(__self__, "values", values)
|
23208
|
+
if regex is not None:
|
23209
|
+
pulumi.set(__self__, "regex", regex)
|
23210
|
+
|
23211
|
+
@property
|
23212
|
+
@pulumi.getter
|
23213
|
+
def name(self) -> str:
|
23214
|
+
return pulumi.get(self, "name")
|
23215
|
+
|
23216
|
+
@property
|
23217
|
+
@pulumi.getter
|
23218
|
+
def values(self) -> Sequence[str]:
|
23219
|
+
return pulumi.get(self, "values")
|
23220
|
+
|
23221
|
+
@property
|
23222
|
+
@pulumi.getter
|
23223
|
+
def regex(self) -> Optional[bool]:
|
23224
|
+
return pulumi.get(self, "regex")
|
23225
|
+
|
23226
|
+
|
23227
|
+
@pulumi.output_type
|
23228
|
+
class GetComputeGpuMemoryClustersComputeGpuMemoryClusterCollectionResult(dict):
|
23229
|
+
def __init__(__self__, *,
|
23230
|
+
items: Sequence['outputs.GetComputeGpuMemoryClustersComputeGpuMemoryClusterCollectionItemResult']):
|
23231
|
+
pulumi.set(__self__, "items", items)
|
23232
|
+
|
23233
|
+
@property
|
23234
|
+
@pulumi.getter
|
23235
|
+
def items(self) -> Sequence['outputs.GetComputeGpuMemoryClustersComputeGpuMemoryClusterCollectionItemResult']:
|
23236
|
+
return pulumi.get(self, "items")
|
23237
|
+
|
23238
|
+
|
23239
|
+
@pulumi.output_type
|
23240
|
+
class GetComputeGpuMemoryClustersComputeGpuMemoryClusterCollectionItemResult(dict):
|
23241
|
+
def __init__(__self__, *,
|
23242
|
+
availability_domain: str,
|
23243
|
+
compartment_id: str,
|
23244
|
+
compute_cluster_id: str,
|
23245
|
+
defined_tags: Mapping[str, str],
|
23246
|
+
display_name: str,
|
23247
|
+
freeform_tags: Mapping[str, str],
|
23248
|
+
gpu_memory_fabric_id: str,
|
23249
|
+
id: str,
|
23250
|
+
instance_configuration_id: str,
|
23251
|
+
size: str,
|
23252
|
+
state: str,
|
23253
|
+
system_tags: Mapping[str, str],
|
23254
|
+
time_created: str):
|
23255
|
+
"""
|
23256
|
+
:param str availability_domain: The name of the availability domain. Example: `Uocm:PHX-AD-1`
|
23257
|
+
:param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
23258
|
+
:param str compute_cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compute cluster. A [compute cluster](https://docs.cloud.oracle.com/iaas/Content/Compute/Tasks/compute-clusters.htm) is a remote direct memory access (RDMA) network group.
|
23259
|
+
: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"}`
|
23260
|
+
:param str display_name: A filter to return only resources that match the given display name exactly.
|
23261
|
+
: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"}`
|
23262
|
+
:param str gpu_memory_fabric_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the GPU memory fabric.
|
23263
|
+
:param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the Customer-unique GPU memory cluster
|
23264
|
+
:param str instance_configuration_id: The OCID of the Instance Configuration used to source launch details for this instance.
|
23265
|
+
:param str size: The number of instances currently running in the GpuMemoryCluster
|
23266
|
+
:param str state: The lifecycle state of the GPU memory cluster
|
23267
|
+
:param Mapping[str, str] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
23268
|
+
:param str time_created: The date and time the GPU memory cluster was created. Example: `2016-09-15T21:10:29.600Z`
|
23269
|
+
"""
|
23270
|
+
pulumi.set(__self__, "availability_domain", availability_domain)
|
23271
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
23272
|
+
pulumi.set(__self__, "compute_cluster_id", compute_cluster_id)
|
23273
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
23274
|
+
pulumi.set(__self__, "display_name", display_name)
|
23275
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
23276
|
+
pulumi.set(__self__, "gpu_memory_fabric_id", gpu_memory_fabric_id)
|
23277
|
+
pulumi.set(__self__, "id", id)
|
23278
|
+
pulumi.set(__self__, "instance_configuration_id", instance_configuration_id)
|
23279
|
+
pulumi.set(__self__, "size", size)
|
23280
|
+
pulumi.set(__self__, "state", state)
|
23281
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
23282
|
+
pulumi.set(__self__, "time_created", time_created)
|
23283
|
+
|
23284
|
+
@property
|
23285
|
+
@pulumi.getter(name="availabilityDomain")
|
23286
|
+
def availability_domain(self) -> str:
|
23287
|
+
"""
|
23288
|
+
The name of the availability domain. Example: `Uocm:PHX-AD-1`
|
23289
|
+
"""
|
23290
|
+
return pulumi.get(self, "availability_domain")
|
23291
|
+
|
23292
|
+
@property
|
23293
|
+
@pulumi.getter(name="compartmentId")
|
23294
|
+
def compartment_id(self) -> str:
|
23295
|
+
"""
|
23296
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
23297
|
+
"""
|
23298
|
+
return pulumi.get(self, "compartment_id")
|
23299
|
+
|
23300
|
+
@property
|
23301
|
+
@pulumi.getter(name="computeClusterId")
|
23302
|
+
def compute_cluster_id(self) -> str:
|
23303
|
+
"""
|
23304
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compute cluster. A [compute cluster](https://docs.cloud.oracle.com/iaas/Content/Compute/Tasks/compute-clusters.htm) is a remote direct memory access (RDMA) network group.
|
23305
|
+
"""
|
23306
|
+
return pulumi.get(self, "compute_cluster_id")
|
23307
|
+
|
23308
|
+
@property
|
23309
|
+
@pulumi.getter(name="definedTags")
|
23310
|
+
def defined_tags(self) -> Mapping[str, str]:
|
23311
|
+
"""
|
23312
|
+
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"}`
|
23313
|
+
"""
|
23314
|
+
return pulumi.get(self, "defined_tags")
|
23315
|
+
|
23316
|
+
@property
|
23317
|
+
@pulumi.getter(name="displayName")
|
23318
|
+
def display_name(self) -> str:
|
23319
|
+
"""
|
23320
|
+
A filter to return only resources that match the given display name exactly.
|
23321
|
+
"""
|
23322
|
+
return pulumi.get(self, "display_name")
|
23323
|
+
|
23324
|
+
@property
|
23325
|
+
@pulumi.getter(name="freeformTags")
|
23326
|
+
def freeform_tags(self) -> Mapping[str, str]:
|
23327
|
+
"""
|
23328
|
+
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"}`
|
23329
|
+
"""
|
23330
|
+
return pulumi.get(self, "freeform_tags")
|
23331
|
+
|
23332
|
+
@property
|
23333
|
+
@pulumi.getter(name="gpuMemoryFabricId")
|
23334
|
+
def gpu_memory_fabric_id(self) -> str:
|
23335
|
+
"""
|
23336
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the GPU memory fabric.
|
23337
|
+
"""
|
23338
|
+
return pulumi.get(self, "gpu_memory_fabric_id")
|
23339
|
+
|
23340
|
+
@property
|
23341
|
+
@pulumi.getter
|
23342
|
+
def id(self) -> str:
|
23343
|
+
"""
|
23344
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the Customer-unique GPU memory cluster
|
23345
|
+
"""
|
23346
|
+
return pulumi.get(self, "id")
|
23347
|
+
|
23348
|
+
@property
|
23349
|
+
@pulumi.getter(name="instanceConfigurationId")
|
23350
|
+
def instance_configuration_id(self) -> str:
|
23351
|
+
"""
|
23352
|
+
The OCID of the Instance Configuration used to source launch details for this instance.
|
23353
|
+
"""
|
23354
|
+
return pulumi.get(self, "instance_configuration_id")
|
23355
|
+
|
23356
|
+
@property
|
23357
|
+
@pulumi.getter
|
23358
|
+
def size(self) -> str:
|
23359
|
+
"""
|
23360
|
+
The number of instances currently running in the GpuMemoryCluster
|
23361
|
+
"""
|
23362
|
+
return pulumi.get(self, "size")
|
23363
|
+
|
23364
|
+
@property
|
23365
|
+
@pulumi.getter
|
23366
|
+
def state(self) -> str:
|
23367
|
+
"""
|
23368
|
+
The lifecycle state of the GPU memory cluster
|
23369
|
+
"""
|
23370
|
+
return pulumi.get(self, "state")
|
23371
|
+
|
23372
|
+
@property
|
23373
|
+
@pulumi.getter(name="systemTags")
|
23374
|
+
def system_tags(self) -> Mapping[str, str]:
|
23375
|
+
"""
|
23376
|
+
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
23377
|
+
"""
|
23378
|
+
return pulumi.get(self, "system_tags")
|
23379
|
+
|
23380
|
+
@property
|
23381
|
+
@pulumi.getter(name="timeCreated")
|
23382
|
+
def time_created(self) -> str:
|
23383
|
+
"""
|
23384
|
+
The date and time the GPU memory cluster was created. Example: `2016-09-15T21:10:29.600Z`
|
23385
|
+
"""
|
23386
|
+
return pulumi.get(self, "time_created")
|
23387
|
+
|
23388
|
+
|
23389
|
+
@pulumi.output_type
|
23390
|
+
class GetComputeGpuMemoryClustersFilterResult(dict):
|
23391
|
+
def __init__(__self__, *,
|
23392
|
+
name: str,
|
23393
|
+
values: Sequence[str],
|
23394
|
+
regex: Optional[bool] = None):
|
23395
|
+
pulumi.set(__self__, "name", name)
|
23396
|
+
pulumi.set(__self__, "values", values)
|
23397
|
+
if regex is not None:
|
23398
|
+
pulumi.set(__self__, "regex", regex)
|
23399
|
+
|
23400
|
+
@property
|
23401
|
+
@pulumi.getter
|
23402
|
+
def name(self) -> str:
|
23403
|
+
return pulumi.get(self, "name")
|
23404
|
+
|
23405
|
+
@property
|
23406
|
+
@pulumi.getter
|
23407
|
+
def values(self) -> Sequence[str]:
|
23408
|
+
return pulumi.get(self, "values")
|
23409
|
+
|
23410
|
+
@property
|
23411
|
+
@pulumi.getter
|
23412
|
+
def regex(self) -> Optional[bool]:
|
23413
|
+
return pulumi.get(self, "regex")
|
23414
|
+
|
23415
|
+
|
23416
|
+
@pulumi.output_type
|
23417
|
+
class GetComputeGpuMemoryFabricsComputeGpuMemoryFabricCollectionResult(dict):
|
23418
|
+
def __init__(__self__, *,
|
23419
|
+
items: Sequence['outputs.GetComputeGpuMemoryFabricsComputeGpuMemoryFabricCollectionItemResult']):
|
23420
|
+
pulumi.set(__self__, "items", items)
|
23421
|
+
|
23422
|
+
@property
|
23423
|
+
@pulumi.getter
|
23424
|
+
def items(self) -> Sequence['outputs.GetComputeGpuMemoryFabricsComputeGpuMemoryFabricCollectionItemResult']:
|
23425
|
+
return pulumi.get(self, "items")
|
23426
|
+
|
23427
|
+
|
23428
|
+
@pulumi.output_type
|
23429
|
+
class GetComputeGpuMemoryFabricsComputeGpuMemoryFabricCollectionItemResult(dict):
|
23430
|
+
def __init__(__self__, *,
|
23431
|
+
additional_data: Mapping[str, str],
|
23432
|
+
compartment_id: str,
|
23433
|
+
compute_gpu_memory_fabric_id: str,
|
23434
|
+
compute_hpc_island_id: str,
|
23435
|
+
compute_local_block_id: str,
|
23436
|
+
compute_network_block_id: str,
|
23437
|
+
defined_tags: Mapping[str, str],
|
23438
|
+
display_name: str,
|
23439
|
+
fabric_health: str,
|
23440
|
+
freeform_tags: Mapping[str, str],
|
23441
|
+
healthy_host_count: str,
|
23442
|
+
id: str,
|
23443
|
+
state: str,
|
23444
|
+
system_tags: Mapping[str, str],
|
23445
|
+
time_created: str,
|
23446
|
+
total_host_count: str):
|
23447
|
+
"""
|
23448
|
+
:param Mapping[str, str] additional_data: Additional data that can be exposed to the customer. Right now it will include the switch tray ids.
|
23449
|
+
:param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
23450
|
+
:param str compute_gpu_memory_fabric_id: A filter to return only the listings that matches the given GPU memory fabric id.
|
23451
|
+
:param str compute_hpc_island_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compute HPC island.
|
23452
|
+
:param str compute_local_block_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for Customer-unique Local Block
|
23453
|
+
:param str compute_network_block_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compute network block.
|
23454
|
+
: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"}`
|
23455
|
+
:param str display_name: A filter to return only resources that match the given display name exactly.
|
23456
|
+
:param str fabric_health: The health state of the GPU memory fabric
|
23457
|
+
: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"}`
|
23458
|
+
:param str healthy_host_count: The total number of healthy bare metal hosts located in this compute GPU memory fabric.
|
23459
|
+
:param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the Customer-unique GPU memory fabric
|
23460
|
+
:param str state: The lifecycle state of the GPU memory fabric
|
23461
|
+
:param Mapping[str, str] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
23462
|
+
:param 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`
|
23463
|
+
:param str total_host_count: The total number of bare metal hosts located in this compute GPU memory fabric.
|
23464
|
+
"""
|
23465
|
+
pulumi.set(__self__, "additional_data", additional_data)
|
23466
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
23467
|
+
pulumi.set(__self__, "compute_gpu_memory_fabric_id", compute_gpu_memory_fabric_id)
|
23468
|
+
pulumi.set(__self__, "compute_hpc_island_id", compute_hpc_island_id)
|
23469
|
+
pulumi.set(__self__, "compute_local_block_id", compute_local_block_id)
|
23470
|
+
pulumi.set(__self__, "compute_network_block_id", compute_network_block_id)
|
23471
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
23472
|
+
pulumi.set(__self__, "display_name", display_name)
|
23473
|
+
pulumi.set(__self__, "fabric_health", fabric_health)
|
23474
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
23475
|
+
pulumi.set(__self__, "healthy_host_count", healthy_host_count)
|
23476
|
+
pulumi.set(__self__, "id", id)
|
23477
|
+
pulumi.set(__self__, "state", state)
|
23478
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
23479
|
+
pulumi.set(__self__, "time_created", time_created)
|
23480
|
+
pulumi.set(__self__, "total_host_count", total_host_count)
|
23481
|
+
|
23482
|
+
@property
|
23483
|
+
@pulumi.getter(name="additionalData")
|
23484
|
+
def additional_data(self) -> Mapping[str, str]:
|
23485
|
+
"""
|
23486
|
+
Additional data that can be exposed to the customer. Right now it will include the switch tray ids.
|
23487
|
+
"""
|
23488
|
+
return pulumi.get(self, "additional_data")
|
23489
|
+
|
23490
|
+
@property
|
23491
|
+
@pulumi.getter(name="compartmentId")
|
23492
|
+
def compartment_id(self) -> str:
|
23493
|
+
"""
|
23494
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
23495
|
+
"""
|
23496
|
+
return pulumi.get(self, "compartment_id")
|
23497
|
+
|
23498
|
+
@property
|
23499
|
+
@pulumi.getter(name="computeGpuMemoryFabricId")
|
23500
|
+
def compute_gpu_memory_fabric_id(self) -> str:
|
23501
|
+
"""
|
23502
|
+
A filter to return only the listings that matches the given GPU memory fabric id.
|
23503
|
+
"""
|
23504
|
+
return pulumi.get(self, "compute_gpu_memory_fabric_id")
|
23505
|
+
|
23506
|
+
@property
|
23507
|
+
@pulumi.getter(name="computeHpcIslandId")
|
23508
|
+
def compute_hpc_island_id(self) -> str:
|
23509
|
+
"""
|
23510
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compute HPC island.
|
23511
|
+
"""
|
23512
|
+
return pulumi.get(self, "compute_hpc_island_id")
|
23513
|
+
|
23514
|
+
@property
|
23515
|
+
@pulumi.getter(name="computeLocalBlockId")
|
23516
|
+
def compute_local_block_id(self) -> str:
|
23517
|
+
"""
|
23518
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for Customer-unique Local Block
|
23519
|
+
"""
|
23520
|
+
return pulumi.get(self, "compute_local_block_id")
|
23521
|
+
|
23522
|
+
@property
|
23523
|
+
@pulumi.getter(name="computeNetworkBlockId")
|
23524
|
+
def compute_network_block_id(self) -> str:
|
23525
|
+
"""
|
23526
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compute network block.
|
23527
|
+
"""
|
23528
|
+
return pulumi.get(self, "compute_network_block_id")
|
23529
|
+
|
23530
|
+
@property
|
23531
|
+
@pulumi.getter(name="definedTags")
|
23532
|
+
def defined_tags(self) -> Mapping[str, str]:
|
23533
|
+
"""
|
23534
|
+
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"}`
|
23535
|
+
"""
|
23536
|
+
return pulumi.get(self, "defined_tags")
|
23537
|
+
|
23538
|
+
@property
|
23539
|
+
@pulumi.getter(name="displayName")
|
23540
|
+
def display_name(self) -> str:
|
23541
|
+
"""
|
23542
|
+
A filter to return only resources that match the given display name exactly.
|
23543
|
+
"""
|
23544
|
+
return pulumi.get(self, "display_name")
|
23545
|
+
|
23546
|
+
@property
|
23547
|
+
@pulumi.getter(name="fabricHealth")
|
23548
|
+
def fabric_health(self) -> str:
|
23549
|
+
"""
|
23550
|
+
The health state of the GPU memory fabric
|
23551
|
+
"""
|
23552
|
+
return pulumi.get(self, "fabric_health")
|
23553
|
+
|
23554
|
+
@property
|
23555
|
+
@pulumi.getter(name="freeformTags")
|
23556
|
+
def freeform_tags(self) -> Mapping[str, str]:
|
23557
|
+
"""
|
23558
|
+
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"}`
|
23559
|
+
"""
|
23560
|
+
return pulumi.get(self, "freeform_tags")
|
23561
|
+
|
23562
|
+
@property
|
23563
|
+
@pulumi.getter(name="healthyHostCount")
|
23564
|
+
def healthy_host_count(self) -> str:
|
23565
|
+
"""
|
23566
|
+
The total number of healthy bare metal hosts located in this compute GPU memory fabric.
|
23567
|
+
"""
|
23568
|
+
return pulumi.get(self, "healthy_host_count")
|
23569
|
+
|
23570
|
+
@property
|
23571
|
+
@pulumi.getter
|
23572
|
+
def id(self) -> str:
|
23573
|
+
"""
|
23574
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the Customer-unique GPU memory fabric
|
23575
|
+
"""
|
23576
|
+
return pulumi.get(self, "id")
|
23577
|
+
|
23578
|
+
@property
|
23579
|
+
@pulumi.getter
|
23580
|
+
def state(self) -> str:
|
23581
|
+
"""
|
23582
|
+
The lifecycle state of the GPU memory fabric
|
23583
|
+
"""
|
23584
|
+
return pulumi.get(self, "state")
|
23585
|
+
|
23586
|
+
@property
|
23587
|
+
@pulumi.getter(name="systemTags")
|
23588
|
+
def system_tags(self) -> Mapping[str, str]:
|
23589
|
+
"""
|
23590
|
+
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
23591
|
+
"""
|
23592
|
+
return pulumi.get(self, "system_tags")
|
23593
|
+
|
23594
|
+
@property
|
23595
|
+
@pulumi.getter(name="timeCreated")
|
23596
|
+
def time_created(self) -> str:
|
23597
|
+
"""
|
23598
|
+
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`
|
23599
|
+
"""
|
23600
|
+
return pulumi.get(self, "time_created")
|
23601
|
+
|
23602
|
+
@property
|
23603
|
+
@pulumi.getter(name="totalHostCount")
|
23604
|
+
def total_host_count(self) -> str:
|
23605
|
+
"""
|
23606
|
+
The total number of bare metal hosts located in this compute GPU memory fabric.
|
23607
|
+
"""
|
23608
|
+
return pulumi.get(self, "total_host_count")
|
23609
|
+
|
23610
|
+
|
23611
|
+
@pulumi.output_type
|
23612
|
+
class GetComputeGpuMemoryFabricsFilterResult(dict):
|
23613
|
+
def __init__(__self__, *,
|
23614
|
+
name: str,
|
23615
|
+
values: Sequence[str],
|
23616
|
+
regex: Optional[bool] = None):
|
23617
|
+
pulumi.set(__self__, "name", name)
|
23618
|
+
pulumi.set(__self__, "values", values)
|
23619
|
+
if regex is not None:
|
23620
|
+
pulumi.set(__self__, "regex", regex)
|
23621
|
+
|
23622
|
+
@property
|
23623
|
+
@pulumi.getter
|
23624
|
+
def name(self) -> str:
|
23625
|
+
return pulumi.get(self, "name")
|
23626
|
+
|
23627
|
+
@property
|
23628
|
+
@pulumi.getter
|
23629
|
+
def values(self) -> Sequence[str]:
|
23630
|
+
return pulumi.get(self, "values")
|
23631
|
+
|
23632
|
+
@property
|
23633
|
+
@pulumi.getter
|
23634
|
+
def regex(self) -> Optional[bool]:
|
23635
|
+
return pulumi.get(self, "regex")
|
23636
|
+
|
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
|
+
|
23053
23900
|
@pulumi.output_type
|
23054
23901
|
class GetComputeImageCapabilitySchemasComputeImageCapabilitySchemaResult(dict):
|
23055
23902
|
def __init__(__self__, *,
|