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