pulumi-oci 2.27.0a1742279484__py3-none-any.whl → 2.27.0a1742444119__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.27.0a1742444119.dist-info}/METADATA +2 -2
  82. {pulumi_oci-2.27.0a1742279484.dist-info → pulumi_oci-2.27.0a1742444119.dist-info}/RECORD +84 -57
  83. {pulumi_oci-2.27.0a1742279484.dist-info → pulumi_oci-2.27.0a1742444119.dist-info}/WHEEL +1 -1
  84. {pulumi_oci-2.27.0a1742279484.dist-info → pulumi_oci-2.27.0a1742444119.dist-info}/top_level.txt +0 -0
pulumi_oci/__init__.py CHANGED
@@ -1298,6 +1298,22 @@ _utilities.register(
1298
1298
  "oci:Core/computeCluster:ComputeCluster": "ComputeCluster"
1299
1299
  }
1300
1300
  },
1301
+ {
1302
+ "pkg": "oci",
1303
+ "mod": "Core/computeGpuMemoryCluster",
1304
+ "fqn": "pulumi_oci.core",
1305
+ "classes": {
1306
+ "oci:Core/computeGpuMemoryCluster:ComputeGpuMemoryCluster": "ComputeGpuMemoryCluster"
1307
+ }
1308
+ },
1309
+ {
1310
+ "pkg": "oci",
1311
+ "mod": "Core/computeGpuMemoryFabric",
1312
+ "fqn": "pulumi_oci.core",
1313
+ "classes": {
1314
+ "oci:Core/computeGpuMemoryFabric:ComputeGpuMemoryFabric": "ComputeGpuMemoryFabric"
1315
+ }
1316
+ },
1301
1317
  {
1302
1318
  "pkg": "oci",
1303
1319
  "mod": "Core/computeImageCapabilitySchema",
@@ -2570,6 +2586,14 @@ _utilities.register(
2570
2586
  "oci:Database/autonomousContainerDatabase:AutonomousContainerDatabase": "AutonomousContainerDatabase"
2571
2587
  }
2572
2588
  },
2589
+ {
2590
+ "pkg": "oci",
2591
+ "mod": "Database/autonomousContainerDatabaseAddStandby",
2592
+ "fqn": "pulumi_oci.database",
2593
+ "classes": {
2594
+ "oci:Database/autonomousContainerDatabaseAddStandby:AutonomousContainerDatabaseAddStandby": "AutonomousContainerDatabaseAddStandby"
2595
+ }
2596
+ },
2573
2597
  {
2574
2598
  "pkg": "oci",
2575
2599
  "mod": "Database/autonomousContainerDatabaseDataguardAssociation",
@@ -2594,6 +2618,14 @@ _utilities.register(
2594
2618
  "oci:Database/autonomousContainerDatabaseDataguardRoleChange:AutonomousContainerDatabaseDataguardRoleChange": "AutonomousContainerDatabaseDataguardRoleChange"
2595
2619
  }
2596
2620
  },
2621
+ {
2622
+ "pkg": "oci",
2623
+ "mod": "Database/autonomousContainerDatabaseSnapshotStandby",
2624
+ "fqn": "pulumi_oci.database",
2625
+ "classes": {
2626
+ "oci:Database/autonomousContainerDatabaseSnapshotStandby:AutonomousContainerDatabaseSnapshotStandby": "AutonomousContainerDatabaseSnapshotStandby"
2627
+ }
2628
+ },
2597
2629
  {
2598
2630
  "pkg": "oci",
2599
2631
  "mod": "Database/autonomousDatabase",
@@ -5914,6 +5946,14 @@ _utilities.register(
5914
5946
  "oci:OsManagementHub/lifecycleStagePromoteSoftwareSourceManagement:LifecycleStagePromoteSoftwareSourceManagement": "LifecycleStagePromoteSoftwareSourceManagement"
5915
5947
  }
5916
5948
  },
5949
+ {
5950
+ "pkg": "oci",
5951
+ "mod": "OsManagementHub/lifecycleStageRebootManagement",
5952
+ "fqn": "pulumi_oci.osmanagementhub",
5953
+ "classes": {
5954
+ "oci:OsManagementHub/lifecycleStageRebootManagement:LifecycleStageRebootManagement": "LifecycleStageRebootManagement"
5955
+ }
5956
+ },
5917
5957
  {
5918
5958
  "pkg": "oci",
5919
5959
  "mod": "OsManagementHub/managedInstance",
@@ -6002,6 +6042,14 @@ _utilities.register(
6002
6042
  "oci:OsManagementHub/managedInstanceGroupManageModuleStreamsManagement:ManagedInstanceGroupManageModuleStreamsManagement": "ManagedInstanceGroupManageModuleStreamsManagement"
6003
6043
  }
6004
6044
  },
6045
+ {
6046
+ "pkg": "oci",
6047
+ "mod": "OsManagementHub/managedInstanceGroupRebootManagement",
6048
+ "fqn": "pulumi_oci.osmanagementhub",
6049
+ "classes": {
6050
+ "oci:OsManagementHub/managedInstanceGroupRebootManagement:ManagedInstanceGroupRebootManagement": "ManagedInstanceGroupRebootManagement"
6051
+ }
6052
+ },
6005
6053
  {
6006
6054
  "pkg": "oci",
6007
6055
  "mod": "OsManagementHub/managedInstanceGroupRemovePackagesManagement",
@@ -6026,6 +6074,14 @@ _utilities.register(
6026
6074
  "oci:OsManagementHub/managedInstanceInstallWindowsUpdatesManagement:ManagedInstanceInstallWindowsUpdatesManagement": "ManagedInstanceInstallWindowsUpdatesManagement"
6027
6075
  }
6028
6076
  },
6077
+ {
6078
+ "pkg": "oci",
6079
+ "mod": "OsManagementHub/managedInstanceRebootManagement",
6080
+ "fqn": "pulumi_oci.osmanagementhub",
6081
+ "classes": {
6082
+ "oci:OsManagementHub/managedInstanceRebootManagement:ManagedInstanceRebootManagement": "ManagedInstanceRebootManagement"
6083
+ }
6084
+ },
6029
6085
  {
6030
6086
  "pkg": "oci",
6031
6087
  "mod": "OsManagementHub/managedInstanceUpdatePackagesManagement",
@@ -6042,6 +6098,14 @@ _utilities.register(
6042
6098
  "oci:OsManagementHub/managementStation:ManagementStation": "ManagementStation"
6043
6099
  }
6044
6100
  },
6101
+ {
6102
+ "pkg": "oci",
6103
+ "mod": "OsManagementHub/managementStationAssociateManagedInstancesManagement",
6104
+ "fqn": "pulumi_oci.osmanagementhub",
6105
+ "classes": {
6106
+ "oci:OsManagementHub/managementStationAssociateManagedInstancesManagement:ManagementStationAssociateManagedInstancesManagement": "ManagementStationAssociateManagedInstancesManagement"
6107
+ }
6108
+ },
6045
6109
  {
6046
6110
  "pkg": "oci",
6047
6111
  "mod": "OsManagementHub/managementStationMirrorSynchronizeManagement",
@@ -6074,6 +6138,46 @@ _utilities.register(
6074
6138
  "oci:OsManagementHub/profile:Profile": "Profile"
6075
6139
  }
6076
6140
  },
6141
+ {
6142
+ "pkg": "oci",
6143
+ "mod": "OsManagementHub/profileAttachLifecycleStageManagement",
6144
+ "fqn": "pulumi_oci.osmanagementhub",
6145
+ "classes": {
6146
+ "oci:OsManagementHub/profileAttachLifecycleStageManagement:ProfileAttachLifecycleStageManagement": "ProfileAttachLifecycleStageManagement"
6147
+ }
6148
+ },
6149
+ {
6150
+ "pkg": "oci",
6151
+ "mod": "OsManagementHub/profileAttachManagedInstanceGroupManagement",
6152
+ "fqn": "pulumi_oci.osmanagementhub",
6153
+ "classes": {
6154
+ "oci:OsManagementHub/profileAttachManagedInstanceGroupManagement:ProfileAttachManagedInstanceGroupManagement": "ProfileAttachManagedInstanceGroupManagement"
6155
+ }
6156
+ },
6157
+ {
6158
+ "pkg": "oci",
6159
+ "mod": "OsManagementHub/profileAttachManagementStationManagement",
6160
+ "fqn": "pulumi_oci.osmanagementhub",
6161
+ "classes": {
6162
+ "oci:OsManagementHub/profileAttachManagementStationManagement:ProfileAttachManagementStationManagement": "ProfileAttachManagementStationManagement"
6163
+ }
6164
+ },
6165
+ {
6166
+ "pkg": "oci",
6167
+ "mod": "OsManagementHub/profileAttachSoftwareSourcesManagement",
6168
+ "fqn": "pulumi_oci.osmanagementhub",
6169
+ "classes": {
6170
+ "oci:OsManagementHub/profileAttachSoftwareSourcesManagement:ProfileAttachSoftwareSourcesManagement": "ProfileAttachSoftwareSourcesManagement"
6171
+ }
6172
+ },
6173
+ {
6174
+ "pkg": "oci",
6175
+ "mod": "OsManagementHub/profileDetachSoftwareSourcesManagement",
6176
+ "fqn": "pulumi_oci.osmanagementhub",
6177
+ "classes": {
6178
+ "oci:OsManagementHub/profileDetachSoftwareSourcesManagement:ProfileDetachSoftwareSourcesManagement": "ProfileDetachSoftwareSourcesManagement"
6179
+ }
6180
+ },
6077
6181
  {
6078
6182
  "pkg": "oci",
6079
6183
  "mod": "OsManagementHub/scheduledJob",
@@ -6106,6 +6210,46 @@ _utilities.register(
6106
6210
  "oci:OsManagementHub/softwareSourceChangeAvailabilityManagement:SoftwareSourceChangeAvailabilityManagement": "SoftwareSourceChangeAvailabilityManagement"
6107
6211
  }
6108
6212
  },
6213
+ {
6214
+ "pkg": "oci",
6215
+ "mod": "OsManagementHub/softwareSourceGenerateMetadataManagement",
6216
+ "fqn": "pulumi_oci.osmanagementhub",
6217
+ "classes": {
6218
+ "oci:OsManagementHub/softwareSourceGenerateMetadataManagement:SoftwareSourceGenerateMetadataManagement": "SoftwareSourceGenerateMetadataManagement"
6219
+ }
6220
+ },
6221
+ {
6222
+ "pkg": "oci",
6223
+ "mod": "OsManagementHub/softwareSourceManifest",
6224
+ "fqn": "pulumi_oci.osmanagementhub",
6225
+ "classes": {
6226
+ "oci:OsManagementHub/softwareSourceManifest:SoftwareSourceManifest": "SoftwareSourceManifest"
6227
+ }
6228
+ },
6229
+ {
6230
+ "pkg": "oci",
6231
+ "mod": "OsManagementHub/softwareSourceRemovePackagesManagement",
6232
+ "fqn": "pulumi_oci.osmanagementhub",
6233
+ "classes": {
6234
+ "oci:OsManagementHub/softwareSourceRemovePackagesManagement:SoftwareSourceRemovePackagesManagement": "SoftwareSourceRemovePackagesManagement"
6235
+ }
6236
+ },
6237
+ {
6238
+ "pkg": "oci",
6239
+ "mod": "OsManagementHub/softwareSourceReplacePackagesManagement",
6240
+ "fqn": "pulumi_oci.osmanagementhub",
6241
+ "classes": {
6242
+ "oci:OsManagementHub/softwareSourceReplacePackagesManagement:SoftwareSourceReplacePackagesManagement": "SoftwareSourceReplacePackagesManagement"
6243
+ }
6244
+ },
6245
+ {
6246
+ "pkg": "oci",
6247
+ "mod": "OsManagementHub/workRequestRerunManagement",
6248
+ "fqn": "pulumi_oci.osmanagementhub",
6249
+ "classes": {
6250
+ "oci:OsManagementHub/workRequestRerunManagement:WorkRequestRerunManagement": "WorkRequestRerunManagement"
6251
+ }
6252
+ },
6109
6253
  {
6110
6254
  "pkg": "oci",
6111
6255
  "mod": "OspGateway/addressActionVerification",
@@ -781,7 +781,7 @@ if not MYPY:
781
781
  """
782
782
  ip_families: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
783
783
  """
784
- IP family to use for single stack or define the order of IP families for dual-stack
784
+ IP family to use for single stack or define the order of IP families for dual-stack. Available values are [] (defaults to IPv4), [IPv4] (IPv4), [IPv4, IPv6] (IPv4 preferred dual stack).
785
785
  """
786
786
  kubernetes_network_config: NotRequired[pulumi.Input['ClusterOptionsKubernetesNetworkConfigArgsDict']]
787
787
  """
@@ -825,7 +825,7 @@ class ClusterOptionsArgs:
825
825
  """
826
826
  :param pulumi.Input['ClusterOptionsAddOnsArgs'] add_ons: Configurable cluster add-ons
827
827
  :param pulumi.Input['ClusterOptionsAdmissionControllerOptionsArgs'] admission_controller_options: (Updatable) Configurable cluster admission controllers
828
- :param pulumi.Input[Sequence[pulumi.Input[str]]] ip_families: IP family to use for single stack or define the order of IP families for dual-stack
828
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] ip_families: IP family to use for single stack or define the order of IP families for dual-stack. Available values are [] (defaults to IPv4), [IPv4] (IPv4), [IPv4, IPv6] (IPv4 preferred dual stack).
829
829
  :param pulumi.Input['ClusterOptionsKubernetesNetworkConfigArgs'] kubernetes_network_config: Network configuration for Kubernetes.
830
830
  :param pulumi.Input['ClusterOptionsOpenIdConnectDiscoveryArgs'] open_id_connect_discovery: (Updatable) The property that define the status of the OIDC Discovery feature for a cluster.
831
831
  :param pulumi.Input['ClusterOptionsOpenIdConnectTokenAuthenticationConfigArgs'] open_id_connect_token_authentication_config: (Updatable) The properties that configure OIDC token authentication in kube-apiserver. For more information, see [Configuring the API Server](https://kubernetes.io/docs/reference/access-authn-authz/authentication/#using-flags).
@@ -880,7 +880,7 @@ class ClusterOptionsArgs:
880
880
  @pulumi.getter(name="ipFamilies")
881
881
  def ip_families(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
882
882
  """
883
- IP family to use for single stack or define the order of IP families for dual-stack
883
+ IP family to use for single stack or define the order of IP families for dual-stack. Available values are [] (defaults to IPv4), [IPv4] (IPv4), [IPv4, IPv6] (IPv4 preferred dual stack).
884
884
  """
885
885
  return pulumi.get(self, "ip_families")
886
886
 
@@ -1049,11 +1049,11 @@ if not MYPY:
1049
1049
  class ClusterOptionsKubernetesNetworkConfigArgsDict(TypedDict):
1050
1050
  pods_cidr: NotRequired[pulumi.Input[str]]
1051
1051
  """
1052
- The CIDR block for Kubernetes pods. Optional, defaults to 10.244.0.0/16.
1052
+ The CIDR block for Kubernetes pods. Optional. For ipv4, defaults to 10.244.0.0/16. For ipv6, defaults to fd00:eeee:eeee:0000::/96.
1053
1053
  """
1054
1054
  services_cidr: NotRequired[pulumi.Input[str]]
1055
1055
  """
1056
- The CIDR block for Kubernetes services. Optional, defaults to 10.96.0.0/16.
1056
+ The CIDR block for Kubernetes services. Optional. For ipv4, defaults to 10.96.0.0/16. For ipv6, defaults to fd00:eeee:eeee:0001::/108.
1057
1057
  """
1058
1058
  elif False:
1059
1059
  ClusterOptionsKubernetesNetworkConfigArgsDict: TypeAlias = Mapping[str, Any]
@@ -1064,8 +1064,8 @@ class ClusterOptionsKubernetesNetworkConfigArgs:
1064
1064
  pods_cidr: Optional[pulumi.Input[str]] = None,
1065
1065
  services_cidr: Optional[pulumi.Input[str]] = None):
1066
1066
  """
1067
- :param pulumi.Input[str] pods_cidr: The CIDR block for Kubernetes pods. Optional, defaults to 10.244.0.0/16.
1068
- :param pulumi.Input[str] services_cidr: The CIDR block for Kubernetes services. Optional, defaults to 10.96.0.0/16.
1067
+ :param pulumi.Input[str] pods_cidr: The CIDR block for Kubernetes pods. Optional. For ipv4, defaults to 10.244.0.0/16. For ipv6, defaults to fd00:eeee:eeee:0000::/96.
1068
+ :param pulumi.Input[str] services_cidr: The CIDR block for Kubernetes services. Optional. For ipv4, defaults to 10.96.0.0/16. For ipv6, defaults to fd00:eeee:eeee:0001::/108.
1069
1069
  """
1070
1070
  if pods_cidr is not None:
1071
1071
  pulumi.set(__self__, "pods_cidr", pods_cidr)
@@ -1076,7 +1076,7 @@ class ClusterOptionsKubernetesNetworkConfigArgs:
1076
1076
  @pulumi.getter(name="podsCidr")
1077
1077
  def pods_cidr(self) -> Optional[pulumi.Input[str]]:
1078
1078
  """
1079
- The CIDR block for Kubernetes pods. Optional, defaults to 10.244.0.0/16.
1079
+ The CIDR block for Kubernetes pods. Optional. For ipv4, defaults to 10.244.0.0/16. For ipv6, defaults to fd00:eeee:eeee:0000::/96.
1080
1080
  """
1081
1081
  return pulumi.get(self, "pods_cidr")
1082
1082
 
@@ -1088,7 +1088,7 @@ class ClusterOptionsKubernetesNetworkConfigArgs:
1088
1088
  @pulumi.getter(name="servicesCidr")
1089
1089
  def services_cidr(self) -> Optional[pulumi.Input[str]]:
1090
1090
  """
1091
- The CIDR block for Kubernetes services. Optional, defaults to 10.96.0.0/16.
1091
+ The CIDR block for Kubernetes services. Optional. For ipv4, defaults to 10.96.0.0/16. For ipv6, defaults to fd00:eeee:eeee:0001::/108.
1092
1092
  """
1093
1093
  return pulumi.get(self, "services_cidr")
1094
1094
 
@@ -721,7 +721,7 @@ class ClusterOptions(dict):
721
721
  """
722
722
  :param 'ClusterOptionsAddOnsArgs' add_ons: Configurable cluster add-ons
723
723
  :param 'ClusterOptionsAdmissionControllerOptionsArgs' admission_controller_options: (Updatable) Configurable cluster admission controllers
724
- :param Sequence[str] ip_families: IP family to use for single stack or define the order of IP families for dual-stack
724
+ :param Sequence[str] ip_families: IP family to use for single stack or define the order of IP families for dual-stack. Available values are [] (defaults to IPv4), [IPv4] (IPv4), [IPv4, IPv6] (IPv4 preferred dual stack).
725
725
  :param 'ClusterOptionsKubernetesNetworkConfigArgs' kubernetes_network_config: Network configuration for Kubernetes.
726
726
  :param 'ClusterOptionsOpenIdConnectDiscoveryArgs' open_id_connect_discovery: (Updatable) The property that define the status of the OIDC Discovery feature for a cluster.
727
727
  :param 'ClusterOptionsOpenIdConnectTokenAuthenticationConfigArgs' open_id_connect_token_authentication_config: (Updatable) The properties that configure OIDC token authentication in kube-apiserver. For more information, see [Configuring the API Server](https://kubernetes.io/docs/reference/access-authn-authz/authentication/#using-flags).
@@ -768,7 +768,7 @@ class ClusterOptions(dict):
768
768
  @pulumi.getter(name="ipFamilies")
769
769
  def ip_families(self) -> Optional[Sequence[str]]:
770
770
  """
771
- IP family to use for single stack or define the order of IP families for dual-stack
771
+ IP family to use for single stack or define the order of IP families for dual-stack. Available values are [] (defaults to IPv4), [IPv4] (IPv4), [IPv4, IPv6] (IPv4 preferred dual stack).
772
772
  """
773
773
  return pulumi.get(self, "ip_families")
774
774
 
@@ -932,8 +932,8 @@ class ClusterOptionsKubernetesNetworkConfig(dict):
932
932
  pods_cidr: Optional[str] = None,
933
933
  services_cidr: Optional[str] = None):
934
934
  """
935
- :param str pods_cidr: The CIDR block for Kubernetes pods. Optional, defaults to 10.244.0.0/16.
936
- :param str services_cidr: The CIDR block for Kubernetes services. Optional, defaults to 10.96.0.0/16.
935
+ :param str pods_cidr: The CIDR block for Kubernetes pods. Optional. For ipv4, defaults to 10.244.0.0/16. For ipv6, defaults to fd00:eeee:eeee:0000::/96.
936
+ :param str services_cidr: The CIDR block for Kubernetes services. Optional. For ipv4, defaults to 10.96.0.0/16. For ipv6, defaults to fd00:eeee:eeee:0001::/108.
937
937
  """
938
938
  if pods_cidr is not None:
939
939
  pulumi.set(__self__, "pods_cidr", pods_cidr)
@@ -944,7 +944,7 @@ class ClusterOptionsKubernetesNetworkConfig(dict):
944
944
  @pulumi.getter(name="podsCidr")
945
945
  def pods_cidr(self) -> Optional[str]:
946
946
  """
947
- The CIDR block for Kubernetes pods. Optional, defaults to 10.244.0.0/16.
947
+ The CIDR block for Kubernetes pods. Optional. For ipv4, defaults to 10.244.0.0/16. For ipv6, defaults to fd00:eeee:eeee:0000::/96.
948
948
  """
949
949
  return pulumi.get(self, "pods_cidr")
950
950
 
@@ -952,7 +952,7 @@ class ClusterOptionsKubernetesNetworkConfig(dict):
952
952
  @pulumi.getter(name="servicesCidr")
953
953
  def services_cidr(self) -> Optional[str]:
954
954
  """
955
- The CIDR block for Kubernetes services. Optional, defaults to 10.96.0.0/16.
955
+ The CIDR block for Kubernetes services. Optional. For ipv4, defaults to 10.96.0.0/16. For ipv6, defaults to fd00:eeee:eeee:0001::/108.
956
956
  """
957
957
  return pulumi.get(self, "services_cidr")
958
958
 
@@ -4811,7 +4811,7 @@ class GetClusterOptionResult(dict):
4811
4811
  """
4812
4812
  :param Sequence['GetClusterOptionAddOnArgs'] add_ons: Configurable cluster add-ons
4813
4813
  :param Sequence['GetClusterOptionAdmissionControllerOptionArgs'] admission_controller_options: Configurable cluster admission controllers
4814
- :param Sequence[str] ip_families: IP family to use for single stack or define the order of IP families for dual-stack
4814
+ :param Sequence[str] ip_families: IP family to use for single stack or define the order of IP families for dual-stack. Available values are [] (defaults to IPv4), [IPv4] (IPv4), [IPv4, IPv6] (IPv4 preferred dual stack).
4815
4815
  :param Sequence['GetClusterOptionKubernetesNetworkConfigArgs'] kubernetes_network_configs: Network configuration for Kubernetes.
4816
4816
  :param Sequence['GetClusterOptionOpenIdConnectDiscoveryArgs'] open_id_connect_discoveries: The property that define the status of the OIDC Discovery feature for a cluster.
4817
4817
  :param Sequence['GetClusterOptionOpenIdConnectTokenAuthenticationConfigArgs'] open_id_connect_token_authentication_configs: The properties that configure OIDC token authentication in kube-apiserver. For more information, see [Configuring the API Server](https://kubernetes.io/docs/reference/access-authn-authz/authentication/#using-flags).
@@ -4849,7 +4849,7 @@ class GetClusterOptionResult(dict):
4849
4849
  @pulumi.getter(name="ipFamilies")
4850
4850
  def ip_families(self) -> Sequence[str]:
4851
4851
  """
4852
- IP family to use for single stack or define the order of IP families for dual-stack
4852
+ IP family to use for single stack or define the order of IP families for dual-stack. Available values are [] (defaults to IPv4), [IPv4] (IPv4), [IPv4, IPv6] (IPv4 preferred dual stack).
4853
4853
  """
4854
4854
  return pulumi.get(self, "ip_families")
4855
4855
 
@@ -4973,8 +4973,8 @@ class GetClusterOptionKubernetesNetworkConfigResult(dict):
4973
4973
  pods_cidr: str,
4974
4974
  services_cidr: str):
4975
4975
  """
4976
- :param str pods_cidr: The CIDR block for Kubernetes pods. Optional, defaults to 10.244.0.0/16.
4977
- :param str services_cidr: The CIDR block for Kubernetes services. Optional, defaults to 10.96.0.0/16.
4976
+ :param str pods_cidr: The CIDR block for Kubernetes pods. Optional. For ipv4, defaults to 10.244.0.0/16. For ipv6, defaults to fd00:eeee:eeee:0000::/96.
4977
+ :param str services_cidr: The CIDR block for Kubernetes services. Optional. For ipv4, defaults to 10.96.0.0/16. For ipv6, defaults to fd00:eeee:eeee:0001::/108.
4978
4978
  """
4979
4979
  pulumi.set(__self__, "pods_cidr", pods_cidr)
4980
4980
  pulumi.set(__self__, "services_cidr", services_cidr)
@@ -4983,7 +4983,7 @@ class GetClusterOptionKubernetesNetworkConfigResult(dict):
4983
4983
  @pulumi.getter(name="podsCidr")
4984
4984
  def pods_cidr(self) -> str:
4985
4985
  """
4986
- The CIDR block for Kubernetes pods. Optional, defaults to 10.244.0.0/16.
4986
+ The CIDR block for Kubernetes pods. Optional. For ipv4, defaults to 10.244.0.0/16. For ipv6, defaults to fd00:eeee:eeee:0000::/96.
4987
4987
  """
4988
4988
  return pulumi.get(self, "pods_cidr")
4989
4989
 
@@ -4991,7 +4991,7 @@ class GetClusterOptionKubernetesNetworkConfigResult(dict):
4991
4991
  @pulumi.getter(name="servicesCidr")
4992
4992
  def services_cidr(self) -> str:
4993
4993
  """
4994
- The CIDR block for Kubernetes services. Optional, defaults to 10.96.0.0/16.
4994
+ The CIDR block for Kubernetes services. Optional. For ipv4, defaults to 10.96.0.0/16. For ipv6, defaults to fd00:eeee:eeee:0001::/108.
4995
4995
  """
4996
4996
  return pulumi.get(self, "services_cidr")
4997
4997
 
@@ -5877,7 +5877,7 @@ class GetClustersClusterOptionResult(dict):
5877
5877
  """
5878
5878
  :param Sequence['GetClustersClusterOptionAddOnArgs'] add_ons: Configurable cluster add-ons
5879
5879
  :param Sequence['GetClustersClusterOptionAdmissionControllerOptionArgs'] admission_controller_options: Configurable cluster admission controllers
5880
- :param Sequence[str] ip_families: IP family to use for single stack or define the order of IP families for dual-stack
5880
+ :param Sequence[str] ip_families: IP family to use for single stack or define the order of IP families for dual-stack. Available values are [] (defaults to IPv4), [IPv4] (IPv4), [IPv4, IPv6] (IPv4 preferred dual stack).
5881
5881
  :param Sequence['GetClustersClusterOptionKubernetesNetworkConfigArgs'] kubernetes_network_configs: Network configuration for Kubernetes.
5882
5882
  :param Sequence['GetClustersClusterOptionOpenIdConnectDiscoveryArgs'] open_id_connect_discoveries: The property that define the status of the OIDC Discovery feature for a cluster.
5883
5883
  :param Sequence['GetClustersClusterOptionOpenIdConnectTokenAuthenticationConfigArgs'] open_id_connect_token_authentication_configs: The properties that configure OIDC token authentication in kube-apiserver. For more information, see [Configuring the API Server](https://kubernetes.io/docs/reference/access-authn-authz/authentication/#using-flags).
@@ -5915,7 +5915,7 @@ class GetClustersClusterOptionResult(dict):
5915
5915
  @pulumi.getter(name="ipFamilies")
5916
5916
  def ip_families(self) -> Sequence[str]:
5917
5917
  """
5918
- IP family to use for single stack or define the order of IP families for dual-stack
5918
+ IP family to use for single stack or define the order of IP families for dual-stack. Available values are [] (defaults to IPv4), [IPv4] (IPv4), [IPv4, IPv6] (IPv4 preferred dual stack).
5919
5919
  """
5920
5920
  return pulumi.get(self, "ip_families")
5921
5921
 
@@ -6021,8 +6021,8 @@ class GetClustersClusterOptionKubernetesNetworkConfigResult(dict):
6021
6021
  pods_cidr: str,
6022
6022
  services_cidr: str):
6023
6023
  """
6024
- :param str pods_cidr: The CIDR block for Kubernetes pods. Optional, defaults to 10.244.0.0/16.
6025
- :param str services_cidr: The CIDR block for Kubernetes services. Optional, defaults to 10.96.0.0/16.
6024
+ :param str pods_cidr: The CIDR block for Kubernetes pods. Optional. For ipv4, defaults to 10.244.0.0/16. For ipv6, defaults to fd00:eeee:eeee:0000::/96.
6025
+ :param str services_cidr: The CIDR block for Kubernetes services. Optional. For ipv4, defaults to 10.96.0.0/16. For ipv6, defaults to fd00:eeee:eeee:0001::/108.
6026
6026
  """
6027
6027
  pulumi.set(__self__, "pods_cidr", pods_cidr)
6028
6028
  pulumi.set(__self__, "services_cidr", services_cidr)
@@ -6031,7 +6031,7 @@ class GetClustersClusterOptionKubernetesNetworkConfigResult(dict):
6031
6031
  @pulumi.getter(name="podsCidr")
6032
6032
  def pods_cidr(self) -> str:
6033
6033
  """
6034
- The CIDR block for Kubernetes pods. Optional, defaults to 10.244.0.0/16.
6034
+ The CIDR block for Kubernetes pods. Optional. For ipv4, defaults to 10.244.0.0/16. For ipv6, defaults to fd00:eeee:eeee:0000::/96.
6035
6035
  """
6036
6036
  return pulumi.get(self, "pods_cidr")
6037
6037
 
@@ -6039,7 +6039,7 @@ class GetClustersClusterOptionKubernetesNetworkConfigResult(dict):
6039
6039
  @pulumi.getter(name="servicesCidr")
6040
6040
  def services_cidr(self) -> str:
6041
6041
  """
6042
- The CIDR block for Kubernetes services. Optional, defaults to 10.96.0.0/16.
6042
+ The CIDR block for Kubernetes services. Optional. For ipv4, defaults to 10.96.0.0/16. For ipv6, defaults to fd00:eeee:eeee:0001::/108.
6043
6043
  """
6044
6044
  return pulumi.get(self, "services_cidr")
6045
6045
 
@@ -7088,7 +7088,6 @@ class GetNodePoolsNodePoolResult(dict):
7088
7088
  :param Sequence['GetNodePoolsNodePoolNodeEvictionNodePoolSettingArgs'] node_eviction_node_pool_settings: Node Eviction Details configuration
7089
7089
  :param str node_image_id: Deprecated. see `nodeSource`. The OCID of the image running on the nodes in the node pool.
7090
7090
  :param str node_image_name: Deprecated. see `nodeSource`. The name of the image running on the nodes in the node pool.
7091
- :param Mapping[str, str] node_metadata: A list of key/value pairs to add to each underlying Oracle Cloud Infrastructure instance in the node pool on launch.
7092
7091
  :param Sequence['GetNodePoolsNodePoolNodePoolCyclingDetailArgs'] node_pool_cycling_details: Node Pool Cycling Details
7093
7092
  :param str node_shape: The name of the node shape of the nodes in the node pool.
7094
7093
  :param Sequence['GetNodePoolsNodePoolNodeShapeConfigArgs'] node_shape_configs: The shape configuration of the nodes.
@@ -7234,9 +7233,6 @@ class GetNodePoolsNodePoolResult(dict):
7234
7233
  @property
7235
7234
  @pulumi.getter(name="nodeMetadata")
7236
7235
  def node_metadata(self) -> Mapping[str, str]:
7237
- """
7238
- A list of key/value pairs to add to each underlying Oracle Cloud Infrastructure instance in the node pool on launch.
7239
- """
7240
7236
  return pulumi.get(self, "node_metadata")
7241
7237
 
7242
7238
  @property
@@ -16,6 +16,8 @@ from .compute_capacity_report import *
16
16
  from .compute_capacity_reservation import *
17
17
  from .compute_capacity_topology import *
18
18
  from .compute_cluster import *
19
+ from .compute_gpu_memory_cluster import *
20
+ from .compute_gpu_memory_fabric import *
19
21
  from .compute_image_capability_schema import *
20
22
  from .console_history import *
21
23
  from .cpe import *
@@ -74,6 +76,11 @@ from .get_compute_global_image_capability_schema import *
74
76
  from .get_compute_global_image_capability_schemas import *
75
77
  from .get_compute_global_image_capability_schemas_version import *
76
78
  from .get_compute_global_image_capability_schemas_versions import *
79
+ from .get_compute_gpu_memory_cluster import *
80
+ from .get_compute_gpu_memory_cluster_instances import *
81
+ from .get_compute_gpu_memory_clusters import *
82
+ from .get_compute_gpu_memory_fabric import *
83
+ from .get_compute_gpu_memory_fabrics import *
77
84
  from .get_compute_image_capability_schema import *
78
85
  from .get_compute_image_capability_schemas import *
79
86
  from .get_console_histories import *
@@ -429,6 +429,12 @@ __all__ = [
429
429
  'GetComputeGlobalImageCapabilitySchemasFilterArgsDict',
430
430
  'GetComputeGlobalImageCapabilitySchemasVersionsFilterArgs',
431
431
  'GetComputeGlobalImageCapabilitySchemasVersionsFilterArgsDict',
432
+ 'GetComputeGpuMemoryClusterInstancesFilterArgs',
433
+ 'GetComputeGpuMemoryClusterInstancesFilterArgsDict',
434
+ 'GetComputeGpuMemoryClustersFilterArgs',
435
+ 'GetComputeGpuMemoryClustersFilterArgsDict',
436
+ 'GetComputeGpuMemoryFabricsFilterArgs',
437
+ 'GetComputeGpuMemoryFabricsFilterArgsDict',
432
438
  'GetComputeImageCapabilitySchemasFilterArgs',
433
439
  'GetComputeImageCapabilitySchemasFilterArgsDict',
434
440
  'GetConsoleHistoriesFilterArgs',
@@ -20932,6 +20938,147 @@ class GetComputeGlobalImageCapabilitySchemasVersionsFilterArgs:
20932
20938
  pulumi.set(self, "regex", value)
20933
20939
 
20934
20940
 
20941
+ if not MYPY:
20942
+ class GetComputeGpuMemoryClusterInstancesFilterArgsDict(TypedDict):
20943
+ name: str
20944
+ values: Sequence[str]
20945
+ regex: NotRequired[bool]
20946
+ elif False:
20947
+ GetComputeGpuMemoryClusterInstancesFilterArgsDict: TypeAlias = Mapping[str, Any]
20948
+
20949
+ @pulumi.input_type
20950
+ class GetComputeGpuMemoryClusterInstancesFilterArgs:
20951
+ def __init__(__self__, *,
20952
+ name: str,
20953
+ values: Sequence[str],
20954
+ regex: Optional[bool] = None):
20955
+ pulumi.set(__self__, "name", name)
20956
+ pulumi.set(__self__, "values", values)
20957
+ if regex is not None:
20958
+ pulumi.set(__self__, "regex", regex)
20959
+
20960
+ @property
20961
+ @pulumi.getter
20962
+ def name(self) -> str:
20963
+ return pulumi.get(self, "name")
20964
+
20965
+ @name.setter
20966
+ def name(self, value: str):
20967
+ pulumi.set(self, "name", value)
20968
+
20969
+ @property
20970
+ @pulumi.getter
20971
+ def values(self) -> Sequence[str]:
20972
+ return pulumi.get(self, "values")
20973
+
20974
+ @values.setter
20975
+ def values(self, value: Sequence[str]):
20976
+ pulumi.set(self, "values", value)
20977
+
20978
+ @property
20979
+ @pulumi.getter
20980
+ def regex(self) -> Optional[bool]:
20981
+ return pulumi.get(self, "regex")
20982
+
20983
+ @regex.setter
20984
+ def regex(self, value: Optional[bool]):
20985
+ pulumi.set(self, "regex", value)
20986
+
20987
+
20988
+ if not MYPY:
20989
+ class GetComputeGpuMemoryClustersFilterArgsDict(TypedDict):
20990
+ name: str
20991
+ values: Sequence[str]
20992
+ regex: NotRequired[bool]
20993
+ elif False:
20994
+ GetComputeGpuMemoryClustersFilterArgsDict: TypeAlias = Mapping[str, Any]
20995
+
20996
+ @pulumi.input_type
20997
+ class GetComputeGpuMemoryClustersFilterArgs:
20998
+ def __init__(__self__, *,
20999
+ name: str,
21000
+ values: Sequence[str],
21001
+ regex: Optional[bool] = None):
21002
+ pulumi.set(__self__, "name", name)
21003
+ pulumi.set(__self__, "values", values)
21004
+ if regex is not None:
21005
+ pulumi.set(__self__, "regex", regex)
21006
+
21007
+ @property
21008
+ @pulumi.getter
21009
+ def name(self) -> str:
21010
+ return pulumi.get(self, "name")
21011
+
21012
+ @name.setter
21013
+ def name(self, value: str):
21014
+ pulumi.set(self, "name", value)
21015
+
21016
+ @property
21017
+ @pulumi.getter
21018
+ def values(self) -> Sequence[str]:
21019
+ return pulumi.get(self, "values")
21020
+
21021
+ @values.setter
21022
+ def values(self, value: Sequence[str]):
21023
+ pulumi.set(self, "values", value)
21024
+
21025
+ @property
21026
+ @pulumi.getter
21027
+ def regex(self) -> Optional[bool]:
21028
+ return pulumi.get(self, "regex")
21029
+
21030
+ @regex.setter
21031
+ def regex(self, value: Optional[bool]):
21032
+ pulumi.set(self, "regex", value)
21033
+
21034
+
21035
+ if not MYPY:
21036
+ class GetComputeGpuMemoryFabricsFilterArgsDict(TypedDict):
21037
+ name: str
21038
+ values: Sequence[str]
21039
+ regex: NotRequired[bool]
21040
+ elif False:
21041
+ GetComputeGpuMemoryFabricsFilterArgsDict: TypeAlias = Mapping[str, Any]
21042
+
21043
+ @pulumi.input_type
21044
+ class GetComputeGpuMemoryFabricsFilterArgs:
21045
+ def __init__(__self__, *,
21046
+ name: str,
21047
+ values: Sequence[str],
21048
+ regex: Optional[bool] = None):
21049
+ pulumi.set(__self__, "name", name)
21050
+ pulumi.set(__self__, "values", values)
21051
+ if regex is not None:
21052
+ pulumi.set(__self__, "regex", regex)
21053
+
21054
+ @property
21055
+ @pulumi.getter
21056
+ def name(self) -> str:
21057
+ return pulumi.get(self, "name")
21058
+
21059
+ @name.setter
21060
+ def name(self, value: str):
21061
+ pulumi.set(self, "name", value)
21062
+
21063
+ @property
21064
+ @pulumi.getter
21065
+ def values(self) -> Sequence[str]:
21066
+ return pulumi.get(self, "values")
21067
+
21068
+ @values.setter
21069
+ def values(self, value: Sequence[str]):
21070
+ pulumi.set(self, "values", value)
21071
+
21072
+ @property
21073
+ @pulumi.getter
21074
+ def regex(self) -> Optional[bool]:
21075
+ return pulumi.get(self, "regex")
21076
+
21077
+ @regex.setter
21078
+ def regex(self, value: Optional[bool]):
21079
+ pulumi.set(self, "regex", value)
21080
+
21081
+
20935
21082
  if not MYPY:
20936
21083
  class GetComputeImageCapabilitySchemasFilterArgsDict(TypedDict):
20937
21084
  name: str