pulumi-oci 2.27.0a1742279484__py3-none-any.whl → 2.28.0a1742538577__py3-none-any.whl

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