pulumi-oci 2.27.0a1742279484__py3-none-any.whl → 2.28.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_oci/__init__.py +144 -0
- pulumi_oci/containerengine/_inputs.py +9 -9
- pulumi_oci/containerengine/outputs.py +18 -22
- pulumi_oci/core/__init__.py +9 -0
- pulumi_oci/core/_inputs.py +196 -0
- pulumi_oci/core/compute_gpu_memory_cluster.py +706 -0
- pulumi_oci/core/compute_gpu_memory_fabric.py +667 -0
- pulumi_oci/core/get_compute_gpu_memory_cluster.py +281 -0
- pulumi_oci/core/get_compute_gpu_memory_cluster_instances.py +144 -0
- pulumi_oci/core/get_compute_gpu_memory_clusters.py +232 -0
- pulumi_oci/core/get_compute_gpu_memory_fabric.py +309 -0
- pulumi_oci/core/get_compute_gpu_memory_fabrics.py +289 -0
- pulumi_oci/core/get_compute_host.py +393 -0
- pulumi_oci/core/get_compute_hosts.py +254 -0
- pulumi_oci/core/outputs.py +847 -0
- pulumi_oci/database/__init__.py +2 -0
- pulumi_oci/database/_inputs.py +2211 -24
- pulumi_oci/database/autonomous_container_database.py +305 -52
- pulumi_oci/database/autonomous_container_database_add_standby.py +2183 -0
- pulumi_oci/database/autonomous_container_database_dataguard_association.py +80 -40
- pulumi_oci/database/autonomous_container_database_snapshot_standby.py +322 -0
- pulumi_oci/database/get_autonomous_container_database.py +103 -2
- pulumi_oci/database/get_autonomous_container_database_dataguard_association.py +12 -1
- pulumi_oci/database/get_autonomous_container_databases.py +1 -1
- pulumi_oci/database/get_maintenance_run.py +15 -1
- pulumi_oci/database/maintenance_run.py +28 -0
- pulumi_oci/database/outputs.py +2747 -225
- pulumi_oci/goldengate/_inputs.py +128 -0
- pulumi_oci/goldengate/deployment.py +103 -0
- pulumi_oci/goldengate/deployment_backup.py +28 -0
- pulumi_oci/goldengate/get_deployment.py +43 -1
- pulumi_oci/goldengate/get_deployment_backup.py +15 -1
- pulumi_oci/goldengate/outputs.py +289 -0
- pulumi_oci/identity/_inputs.py +9 -49
- pulumi_oci/identity/domains_app.py +34 -0
- pulumi_oci/identity/get_domains_app.py +12 -1
- pulumi_oci/identity/outputs.py +20 -47
- pulumi_oci/osmanagementhub/__init__.py +18 -0
- pulumi_oci/osmanagementhub/_inputs.py +677 -12
- pulumi_oci/osmanagementhub/event.py +8 -0
- pulumi_oci/osmanagementhub/get_entitlements.py +2 -2
- pulumi_oci/osmanagementhub/get_event.py +2 -0
- pulumi_oci/osmanagementhub/get_events.py +2 -0
- pulumi_oci/osmanagementhub/get_managed_instance.py +30 -2
- pulumi_oci/osmanagementhub/get_managed_instances.py +75 -63
- pulumi_oci/osmanagementhub/get_management_station.py +116 -4
- pulumi_oci/osmanagementhub/get_management_station_mirrors.py +1 -1
- pulumi_oci/osmanagementhub/get_management_stations.py +47 -4
- pulumi_oci/osmanagementhub/get_profile.py +32 -4
- pulumi_oci/osmanagementhub/get_profile_available_software_sources.py +207 -0
- pulumi_oci/osmanagementhub/get_profile_version.py +388 -0
- pulumi_oci/osmanagementhub/get_profiles.py +63 -3
- pulumi_oci/osmanagementhub/get_scheduled_job.py +15 -1
- pulumi_oci/osmanagementhub/get_software_package.py +2 -2
- pulumi_oci/osmanagementhub/get_software_package_software_source.py +7 -7
- pulumi_oci/osmanagementhub/get_software_source.py +89 -5
- pulumi_oci/osmanagementhub/get_software_source_available_software_packages.py +209 -0
- pulumi_oci/osmanagementhub/get_software_source_manifest.py +127 -0
- pulumi_oci/osmanagementhub/get_software_sources.py +30 -8
- pulumi_oci/osmanagementhub/lifecycle_stage_attach_managed_instances_management.py +6 -39
- pulumi_oci/osmanagementhub/lifecycle_stage_detach_managed_instances_management.py +6 -39
- pulumi_oci/osmanagementhub/lifecycle_stage_reboot_management.py +297 -0
- pulumi_oci/osmanagementhub/managed_instance.py +56 -0
- pulumi_oci/osmanagementhub/managed_instance_group_install_packages_management.py +49 -0
- pulumi_oci/osmanagementhub/managed_instance_group_reboot_management.py +297 -0
- pulumi_oci/osmanagementhub/managed_instance_reboot_management.py +299 -0
- pulumi_oci/osmanagementhub/management_station.py +251 -4
- pulumi_oci/osmanagementhub/management_station_associate_managed_instances_management.py +298 -0
- pulumi_oci/osmanagementhub/management_station_refresh_management.py +2 -2
- pulumi_oci/osmanagementhub/management_station_synchronize_mirrors_management.py +9 -9
- pulumi_oci/osmanagementhub/outputs.py +1349 -50
- pulumi_oci/osmanagementhub/profile.py +70 -14
- pulumi_oci/osmanagementhub/profile_attach_lifecycle_stage_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_attach_managed_instance_group_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_attach_management_station_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_attach_software_sources_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_detach_software_sources_management.py +269 -0
- pulumi_oci/osmanagementhub/scheduled_job.py +72 -21
- pulumi_oci/osmanagementhub/software_source.py +365 -26
- pulumi_oci/osmanagementhub/software_source_add_packages_management.py +67 -10
- pulumi_oci/osmanagementhub/software_source_generate_metadata_management.py +217 -0
- pulumi_oci/osmanagementhub/software_source_manifest.py +268 -0
- pulumi_oci/osmanagementhub/software_source_remove_packages_management.py +277 -0
- pulumi_oci/osmanagementhub/software_source_replace_packages_management.py +277 -0
- pulumi_oci/osmanagementhub/work_request_rerun_management.py +325 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/sch/_inputs.py +24 -24
- pulumi_oci/sch/connector.py +46 -18
- pulumi_oci/sch/get_service_connector.py +16 -8
- pulumi_oci/sch/outputs.py +53 -50
- pulumi_oci/stackmonitoring/_inputs.py +191 -0
- pulumi_oci/stackmonitoring/config.py +307 -23
- pulumi_oci/stackmonitoring/get_config.py +90 -5
- pulumi_oci/stackmonitoring/get_maintenance_window.py +43 -1
- pulumi_oci/stackmonitoring/maintenance_window.py +136 -2
- pulumi_oci/stackmonitoring/outputs.py +448 -3
- {pulumi_oci-2.27.0a1742279484.dist-info → pulumi_oci-2.28.0.dist-info}/METADATA +2 -2
- {pulumi_oci-2.27.0a1742279484.dist-info → pulumi_oci-2.28.0.dist-info}/RECORD +100 -71
- {pulumi_oci-2.27.0a1742279484.dist-info → pulumi_oci-2.28.0.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.27.0a1742279484.dist-info → pulumi_oci-2.28.0.dist-info}/top_level.txt +0 -0
pulumi_oci/__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
|
pulumi_oci/core/__init__.py
CHANGED
@@ -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,13 @@ 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 *
|
84
|
+
from .get_compute_host import *
|
85
|
+
from .get_compute_hosts import *
|
77
86
|
from .get_compute_image_capability_schema import *
|
78
87
|
from .get_compute_image_capability_schemas import *
|
79
88
|
from .get_console_histories import *
|
pulumi_oci/core/_inputs.py
CHANGED
@@ -429,6 +429,14 @@ __all__ = [
|
|
429
429
|
'GetComputeGlobalImageCapabilitySchemasFilterArgsDict',
|
430
430
|
'GetComputeGlobalImageCapabilitySchemasVersionsFilterArgs',
|
431
431
|
'GetComputeGlobalImageCapabilitySchemasVersionsFilterArgsDict',
|
432
|
+
'GetComputeGpuMemoryClusterInstancesFilterArgs',
|
433
|
+
'GetComputeGpuMemoryClusterInstancesFilterArgsDict',
|
434
|
+
'GetComputeGpuMemoryClustersFilterArgs',
|
435
|
+
'GetComputeGpuMemoryClustersFilterArgsDict',
|
436
|
+
'GetComputeGpuMemoryFabricsFilterArgs',
|
437
|
+
'GetComputeGpuMemoryFabricsFilterArgsDict',
|
438
|
+
'GetComputeHostsFilterArgs',
|
439
|
+
'GetComputeHostsFilterArgsDict',
|
432
440
|
'GetComputeImageCapabilitySchemasFilterArgs',
|
433
441
|
'GetComputeImageCapabilitySchemasFilterArgsDict',
|
434
442
|
'GetConsoleHistoriesFilterArgs',
|
@@ -20932,6 +20940,194 @@ class GetComputeGlobalImageCapabilitySchemasVersionsFilterArgs:
|
|
20932
20940
|
pulumi.set(self, "regex", value)
|
20933
20941
|
|
20934
20942
|
|
20943
|
+
if not MYPY:
|
20944
|
+
class GetComputeGpuMemoryClusterInstancesFilterArgsDict(TypedDict):
|
20945
|
+
name: str
|
20946
|
+
values: Sequence[str]
|
20947
|
+
regex: NotRequired[bool]
|
20948
|
+
elif False:
|
20949
|
+
GetComputeGpuMemoryClusterInstancesFilterArgsDict: TypeAlias = Mapping[str, Any]
|
20950
|
+
|
20951
|
+
@pulumi.input_type
|
20952
|
+
class GetComputeGpuMemoryClusterInstancesFilterArgs:
|
20953
|
+
def __init__(__self__, *,
|
20954
|
+
name: str,
|
20955
|
+
values: Sequence[str],
|
20956
|
+
regex: Optional[bool] = None):
|
20957
|
+
pulumi.set(__self__, "name", name)
|
20958
|
+
pulumi.set(__self__, "values", values)
|
20959
|
+
if regex is not None:
|
20960
|
+
pulumi.set(__self__, "regex", regex)
|
20961
|
+
|
20962
|
+
@property
|
20963
|
+
@pulumi.getter
|
20964
|
+
def name(self) -> str:
|
20965
|
+
return pulumi.get(self, "name")
|
20966
|
+
|
20967
|
+
@name.setter
|
20968
|
+
def name(self, value: str):
|
20969
|
+
pulumi.set(self, "name", value)
|
20970
|
+
|
20971
|
+
@property
|
20972
|
+
@pulumi.getter
|
20973
|
+
def values(self) -> Sequence[str]:
|
20974
|
+
return pulumi.get(self, "values")
|
20975
|
+
|
20976
|
+
@values.setter
|
20977
|
+
def values(self, value: Sequence[str]):
|
20978
|
+
pulumi.set(self, "values", value)
|
20979
|
+
|
20980
|
+
@property
|
20981
|
+
@pulumi.getter
|
20982
|
+
def regex(self) -> Optional[bool]:
|
20983
|
+
return pulumi.get(self, "regex")
|
20984
|
+
|
20985
|
+
@regex.setter
|
20986
|
+
def regex(self, value: Optional[bool]):
|
20987
|
+
pulumi.set(self, "regex", value)
|
20988
|
+
|
20989
|
+
|
20990
|
+
if not MYPY:
|
20991
|
+
class GetComputeGpuMemoryClustersFilterArgsDict(TypedDict):
|
20992
|
+
name: str
|
20993
|
+
values: Sequence[str]
|
20994
|
+
regex: NotRequired[bool]
|
20995
|
+
elif False:
|
20996
|
+
GetComputeGpuMemoryClustersFilterArgsDict: TypeAlias = Mapping[str, Any]
|
20997
|
+
|
20998
|
+
@pulumi.input_type
|
20999
|
+
class GetComputeGpuMemoryClustersFilterArgs:
|
21000
|
+
def __init__(__self__, *,
|
21001
|
+
name: str,
|
21002
|
+
values: Sequence[str],
|
21003
|
+
regex: Optional[bool] = None):
|
21004
|
+
pulumi.set(__self__, "name", name)
|
21005
|
+
pulumi.set(__self__, "values", values)
|
21006
|
+
if regex is not None:
|
21007
|
+
pulumi.set(__self__, "regex", regex)
|
21008
|
+
|
21009
|
+
@property
|
21010
|
+
@pulumi.getter
|
21011
|
+
def name(self) -> str:
|
21012
|
+
return pulumi.get(self, "name")
|
21013
|
+
|
21014
|
+
@name.setter
|
21015
|
+
def name(self, value: str):
|
21016
|
+
pulumi.set(self, "name", value)
|
21017
|
+
|
21018
|
+
@property
|
21019
|
+
@pulumi.getter
|
21020
|
+
def values(self) -> Sequence[str]:
|
21021
|
+
return pulumi.get(self, "values")
|
21022
|
+
|
21023
|
+
@values.setter
|
21024
|
+
def values(self, value: Sequence[str]):
|
21025
|
+
pulumi.set(self, "values", value)
|
21026
|
+
|
21027
|
+
@property
|
21028
|
+
@pulumi.getter
|
21029
|
+
def regex(self) -> Optional[bool]:
|
21030
|
+
return pulumi.get(self, "regex")
|
21031
|
+
|
21032
|
+
@regex.setter
|
21033
|
+
def regex(self, value: Optional[bool]):
|
21034
|
+
pulumi.set(self, "regex", value)
|
21035
|
+
|
21036
|
+
|
21037
|
+
if not MYPY:
|
21038
|
+
class GetComputeGpuMemoryFabricsFilterArgsDict(TypedDict):
|
21039
|
+
name: str
|
21040
|
+
values: Sequence[str]
|
21041
|
+
regex: NotRequired[bool]
|
21042
|
+
elif False:
|
21043
|
+
GetComputeGpuMemoryFabricsFilterArgsDict: TypeAlias = Mapping[str, Any]
|
21044
|
+
|
21045
|
+
@pulumi.input_type
|
21046
|
+
class GetComputeGpuMemoryFabricsFilterArgs:
|
21047
|
+
def __init__(__self__, *,
|
21048
|
+
name: str,
|
21049
|
+
values: Sequence[str],
|
21050
|
+
regex: Optional[bool] = None):
|
21051
|
+
pulumi.set(__self__, "name", name)
|
21052
|
+
pulumi.set(__self__, "values", values)
|
21053
|
+
if regex is not None:
|
21054
|
+
pulumi.set(__self__, "regex", regex)
|
21055
|
+
|
21056
|
+
@property
|
21057
|
+
@pulumi.getter
|
21058
|
+
def name(self) -> str:
|
21059
|
+
return pulumi.get(self, "name")
|
21060
|
+
|
21061
|
+
@name.setter
|
21062
|
+
def name(self, value: str):
|
21063
|
+
pulumi.set(self, "name", value)
|
21064
|
+
|
21065
|
+
@property
|
21066
|
+
@pulumi.getter
|
21067
|
+
def values(self) -> Sequence[str]:
|
21068
|
+
return pulumi.get(self, "values")
|
21069
|
+
|
21070
|
+
@values.setter
|
21071
|
+
def values(self, value: Sequence[str]):
|
21072
|
+
pulumi.set(self, "values", value)
|
21073
|
+
|
21074
|
+
@property
|
21075
|
+
@pulumi.getter
|
21076
|
+
def regex(self) -> Optional[bool]:
|
21077
|
+
return pulumi.get(self, "regex")
|
21078
|
+
|
21079
|
+
@regex.setter
|
21080
|
+
def regex(self, value: Optional[bool]):
|
21081
|
+
pulumi.set(self, "regex", value)
|
21082
|
+
|
21083
|
+
|
21084
|
+
if not MYPY:
|
21085
|
+
class GetComputeHostsFilterArgsDict(TypedDict):
|
21086
|
+
name: str
|
21087
|
+
values: Sequence[str]
|
21088
|
+
regex: NotRequired[bool]
|
21089
|
+
elif False:
|
21090
|
+
GetComputeHostsFilterArgsDict: TypeAlias = Mapping[str, Any]
|
21091
|
+
|
21092
|
+
@pulumi.input_type
|
21093
|
+
class GetComputeHostsFilterArgs:
|
21094
|
+
def __init__(__self__, *,
|
21095
|
+
name: str,
|
21096
|
+
values: Sequence[str],
|
21097
|
+
regex: Optional[bool] = None):
|
21098
|
+
pulumi.set(__self__, "name", name)
|
21099
|
+
pulumi.set(__self__, "values", values)
|
21100
|
+
if regex is not None:
|
21101
|
+
pulumi.set(__self__, "regex", regex)
|
21102
|
+
|
21103
|
+
@property
|
21104
|
+
@pulumi.getter
|
21105
|
+
def name(self) -> str:
|
21106
|
+
return pulumi.get(self, "name")
|
21107
|
+
|
21108
|
+
@name.setter
|
21109
|
+
def name(self, value: str):
|
21110
|
+
pulumi.set(self, "name", value)
|
21111
|
+
|
21112
|
+
@property
|
21113
|
+
@pulumi.getter
|
21114
|
+
def values(self) -> Sequence[str]:
|
21115
|
+
return pulumi.get(self, "values")
|
21116
|
+
|
21117
|
+
@values.setter
|
21118
|
+
def values(self, value: Sequence[str]):
|
21119
|
+
pulumi.set(self, "values", value)
|
21120
|
+
|
21121
|
+
@property
|
21122
|
+
@pulumi.getter
|
21123
|
+
def regex(self) -> Optional[bool]:
|
21124
|
+
return pulumi.get(self, "regex")
|
21125
|
+
|
21126
|
+
@regex.setter
|
21127
|
+
def regex(self, value: Optional[bool]):
|
21128
|
+
pulumi.set(self, "regex", value)
|
21129
|
+
|
21130
|
+
|
20935
21131
|
if not MYPY:
|
20936
21132
|
class GetComputeImageCapabilitySchemasFilterArgsDict(TypedDict):
|
20937
21133
|
name: str
|