pulumi-oci 1.23.0a1708018020__py3-none-any.whl → 1.24.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 +8 -0
- pulumi_oci/core/_inputs.py +6 -6
- pulumi_oci/core/instance.py +7 -7
- pulumi_oci/core/outputs.py +6 -6
- pulumi_oci/dataintegration/__init__.py +3 -0
- pulumi_oci/dataintegration/_inputs.py +749 -0
- pulumi_oci/dataintegration/get_workspace_application_schedule.py +316 -0
- pulumi_oci/dataintegration/get_workspace_application_schedules.py +230 -0
- pulumi_oci/dataintegration/outputs.py +2826 -912
- pulumi_oci/dataintegration/workspace_application_schedule.py +926 -0
- pulumi_oci/datascience/_inputs.py +204 -0
- pulumi_oci/datascience/get_job.py +14 -1
- pulumi_oci/datascience/get_job_run.py +14 -1
- pulumi_oci/datascience/get_model_version_set.py +14 -1
- pulumi_oci/datascience/get_private_endpoint.py +14 -1
- pulumi_oci/datascience/get_project.py +14 -1
- pulumi_oci/datascience/job.py +63 -0
- pulumi_oci/datascience/job_run.py +63 -0
- pulumi_oci/datascience/model_version_set.py +28 -0
- pulumi_oci/datascience/outputs.py +549 -0
- pulumi_oci/datascience/private_endpoint.py +28 -0
- pulumi_oci/datascience/project.py +28 -0
- {pulumi_oci-1.23.0a1708018020.dist-info → pulumi_oci-1.24.0.dist-info}/METADATA +1 -1
- {pulumi_oci-1.23.0a1708018020.dist-info → pulumi_oci-1.24.0.dist-info}/RECORD +26 -23
- {pulumi_oci-1.23.0a1708018020.dist-info → pulumi_oci-1.24.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.23.0a1708018020.dist-info → pulumi_oci-1.24.0.dist-info}/top_level.txt +0 -0
pulumi_oci/__init__.py
CHANGED
@@ -1734,6 +1734,14 @@ _utilities.register(
|
|
1734
1734
|
"oci:DataIntegration/workspaceApplicationPatch:WorkspaceApplicationPatch": "WorkspaceApplicationPatch"
|
1735
1735
|
}
|
1736
1736
|
},
|
1737
|
+
{
|
1738
|
+
"pkg": "oci",
|
1739
|
+
"mod": "DataIntegration/workspaceApplicationSchedule",
|
1740
|
+
"fqn": "pulumi_oci.dataintegration",
|
1741
|
+
"classes": {
|
1742
|
+
"oci:DataIntegration/workspaceApplicationSchedule:WorkspaceApplicationSchedule": "WorkspaceApplicationSchedule"
|
1743
|
+
}
|
1744
|
+
},
|
1737
1745
|
{
|
1738
1746
|
"pkg": "oci",
|
1739
1747
|
"mod": "DataIntegration/workspaceExportRequest",
|
pulumi_oci/core/_inputs.py
CHANGED
@@ -6225,7 +6225,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsPlatformConfigArgs:
|
|
6225
6225
|
:param pulumi.Input[bool] is_measured_boot_enabled: Whether the Measured Boot feature is enabled on the instance.
|
6226
6226
|
:param pulumi.Input[bool] is_memory_encryption_enabled: Whether the instance is a confidential instance. If this value is `true`, the instance is a confidential instance. The default value is `false`.
|
6227
6227
|
:param pulumi.Input[bool] is_secure_boot_enabled: Whether Secure Boot is enabled on the instance.
|
6228
|
-
:param pulumi.Input[bool] is_symmetric_multi_threading_enabled: Whether symmetric multithreading is enabled on the instance. Symmetric multithreading is also called simultaneous multithreading (SMT) or Intel Hyper-Threading.
|
6228
|
+
:param pulumi.Input[bool] is_symmetric_multi_threading_enabled: (Updatable only for AMD_VM and INTEL_VM) Whether symmetric multithreading is enabled on the instance. Symmetric multithreading is also called simultaneous multithreading (SMT) or Intel Hyper-Threading.
|
6229
6229
|
|
6230
6230
|
Intel and AMD processors have two hardware execution threads per core (OCPU). SMT permits multiple independent threads of execution, to better use the resources and increase the efficiency of the CPU. When multithreading is disabled, only one thread is permitted to run on each core, which can provide higher or more predictable performance for some workloads.
|
6231
6231
|
:param pulumi.Input[bool] is_trusted_platform_module_enabled: Whether the Trusted Platform Module (TPM) is enabled on the instance.
|
@@ -6358,7 +6358,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsPlatformConfigArgs:
|
|
6358
6358
|
@pulumi.getter(name="isSymmetricMultiThreadingEnabled")
|
6359
6359
|
def is_symmetric_multi_threading_enabled(self) -> Optional[pulumi.Input[bool]]:
|
6360
6360
|
"""
|
6361
|
-
Whether symmetric multithreading is enabled on the instance. Symmetric multithreading is also called simultaneous multithreading (SMT) or Intel Hyper-Threading.
|
6361
|
+
(Updatable only for AMD_VM and INTEL_VM) Whether symmetric multithreading is enabled on the instance. Symmetric multithreading is also called simultaneous multithreading (SMT) or Intel Hyper-Threading.
|
6362
6362
|
|
6363
6363
|
Intel and AMD processors have two hardware execution threads per core (OCPU). SMT permits multiple independent threads of execution, to better use the resources and increase the efficiency of the CPU. When multithreading is disabled, only one thread is permitted to run on each core, which can provide higher or more predictable performance for some workloads.
|
6364
6364
|
"""
|
@@ -8379,7 +8379,7 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsPlatformConfigArgs:
|
|
8379
8379
|
:param pulumi.Input[bool] is_measured_boot_enabled: Whether the Measured Boot feature is enabled on the instance.
|
8380
8380
|
:param pulumi.Input[bool] is_memory_encryption_enabled: Whether the instance is a confidential instance. If this value is `true`, the instance is a confidential instance. The default value is `false`.
|
8381
8381
|
:param pulumi.Input[bool] is_secure_boot_enabled: Whether Secure Boot is enabled on the instance.
|
8382
|
-
:param pulumi.Input[bool] is_symmetric_multi_threading_enabled: Whether symmetric multithreading is enabled on the instance. Symmetric multithreading is also called simultaneous multithreading (SMT) or Intel Hyper-Threading.
|
8382
|
+
:param pulumi.Input[bool] is_symmetric_multi_threading_enabled: (Updatable only for AMD_VM and INTEL_VM) Whether symmetric multithreading is enabled on the instance. Symmetric multithreading is also called simultaneous multithreading (SMT) or Intel Hyper-Threading.
|
8383
8383
|
|
8384
8384
|
Intel and AMD processors have two hardware execution threads per core (OCPU). SMT permits multiple independent threads of execution, to better use the resources and increase the efficiency of the CPU. When multithreading is disabled, only one thread is permitted to run on each core, which can provide higher or more predictable performance for some workloads.
|
8385
8385
|
:param pulumi.Input[bool] is_trusted_platform_module_enabled: Whether the Trusted Platform Module (TPM) is enabled on the instance.
|
@@ -8498,7 +8498,7 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsPlatformConfigArgs:
|
|
8498
8498
|
@pulumi.getter(name="isSymmetricMultiThreadingEnabled")
|
8499
8499
|
def is_symmetric_multi_threading_enabled(self) -> Optional[pulumi.Input[bool]]:
|
8500
8500
|
"""
|
8501
|
-
Whether symmetric multithreading is enabled on the instance. Symmetric multithreading is also called simultaneous multithreading (SMT) or Intel Hyper-Threading.
|
8501
|
+
(Updatable only for AMD_VM and INTEL_VM) Whether symmetric multithreading is enabled on the instance. Symmetric multithreading is also called simultaneous multithreading (SMT) or Intel Hyper-Threading.
|
8502
8502
|
|
8503
8503
|
Intel and AMD processors have two hardware execution threads per core (OCPU). SMT permits multiple independent threads of execution, to better use the resources and increase the efficiency of the CPU. When multithreading is disabled, only one thread is permitted to run on each core, which can provide higher or more predictable performance for some workloads.
|
8504
8504
|
"""
|
@@ -9914,7 +9914,7 @@ class InstancePlatformConfigArgs:
|
|
9914
9914
|
:param pulumi.Input[bool] is_measured_boot_enabled: Whether the Measured Boot feature is enabled on the instance.
|
9915
9915
|
:param pulumi.Input[bool] is_memory_encryption_enabled: Whether the instance is a confidential instance. If this value is `true`, the instance is a confidential instance. The default value is `false`.
|
9916
9916
|
:param pulumi.Input[bool] is_secure_boot_enabled: Whether Secure Boot is enabled on the instance.
|
9917
|
-
:param pulumi.Input[bool] is_symmetric_multi_threading_enabled: Whether symmetric multithreading is enabled on the instance. Symmetric multithreading is also called simultaneous multithreading (SMT) or Intel Hyper-Threading.
|
9917
|
+
:param pulumi.Input[bool] is_symmetric_multi_threading_enabled: (Updatable only for INTEL_VM and AMD_VM) Whether symmetric multithreading is enabled on the instance. Symmetric multithreading is also called simultaneous multithreading (SMT) or Intel Hyper-Threading.
|
9918
9918
|
|
9919
9919
|
Intel and AMD processors have two hardware execution threads per core (OCPU). SMT permits multiple independent threads of execution, to better use the resources and increase the efficiency of the CPU. When multithreading is disabled, only one thread is permitted to run on each core, which can provide higher or more predictable performance for some workloads.
|
9920
9920
|
:param pulumi.Input[bool] is_trusted_platform_module_enabled: Whether the Trusted Platform Module (TPM) is enabled on the instance.
|
@@ -10047,7 +10047,7 @@ class InstancePlatformConfigArgs:
|
|
10047
10047
|
@pulumi.getter(name="isSymmetricMultiThreadingEnabled")
|
10048
10048
|
def is_symmetric_multi_threading_enabled(self) -> Optional[pulumi.Input[bool]]:
|
10049
10049
|
"""
|
10050
|
-
Whether symmetric multithreading is enabled on the instance. Symmetric multithreading is also called simultaneous multithreading (SMT) or Intel Hyper-Threading.
|
10050
|
+
(Updatable only for INTEL_VM and AMD_VM) Whether symmetric multithreading is enabled on the instance. Symmetric multithreading is also called simultaneous multithreading (SMT) or Intel Hyper-Threading.
|
10051
10051
|
|
10052
10052
|
Intel and AMD processors have two hardware execution threads per core (OCPU). SMT permits multiple independent threads of execution, to better use the resources and increase the efficiency of the CPU. When multithreading is disabled, only one thread is permitted to run on each core, which can provide higher or more predictable performance for some workloads.
|
10053
10053
|
"""
|
pulumi_oci/core/instance.py
CHANGED
@@ -116,7 +116,7 @@ class InstanceArgs:
|
|
116
116
|
The combined size of the `metadata` and `extendedMetadata` objects can be a maximum of 32,000 bytes.
|
117
117
|
|
118
118
|
**Note:** Both the 'user_data' and 'ssh_authorized_keys' fields cannot be changed after an instance has launched. Any request which updates, removes, or adds either of these fields will be rejected. You must provide the same values for 'user_data' and 'ssh_authorized_keys' that already exist on the instance.
|
119
|
-
:param pulumi.Input['InstancePlatformConfigArgs'] platform_config: The platform configuration requested for the instance.
|
119
|
+
:param pulumi.Input['InstancePlatformConfigArgs'] platform_config: (Updatable only for VM's) The platform configuration requested for the instance.
|
120
120
|
|
121
121
|
If you provide the parameter, the instance is created with the platform configuration that you specify. For any values that you omit, the instance uses the default configuration values for the `shape` that you specify. If you don't provide the parameter, the default values for the `shape` are used.
|
122
122
|
|
@@ -527,7 +527,7 @@ class InstanceArgs:
|
|
527
527
|
@pulumi.getter(name="platformConfig")
|
528
528
|
def platform_config(self) -> Optional[pulumi.Input['InstancePlatformConfigArgs']]:
|
529
529
|
"""
|
530
|
-
The platform configuration requested for the instance.
|
530
|
+
(Updatable only for VM's) The platform configuration requested for the instance.
|
531
531
|
|
532
532
|
If you provide the parameter, the instance is created with the platform configuration that you specify. For any values that you omit, the instance uses the default configuration values for the `shape` that you specify. If you don't provide the parameter, the default values for the `shape` are used.
|
533
533
|
|
@@ -764,7 +764,7 @@ class _InstanceState:
|
|
764
764
|
The combined size of the `metadata` and `extendedMetadata` objects can be a maximum of 32,000 bytes.
|
765
765
|
|
766
766
|
**Note:** Both the 'user_data' and 'ssh_authorized_keys' fields cannot be changed after an instance has launched. Any request which updates, removes, or adds either of these fields will be rejected. You must provide the same values for 'user_data' and 'ssh_authorized_keys' that already exist on the instance.
|
767
|
-
:param pulumi.Input['InstancePlatformConfigArgs'] platform_config: The platform configuration requested for the instance.
|
767
|
+
:param pulumi.Input['InstancePlatformConfigArgs'] platform_config: (Updatable only for VM's) The platform configuration requested for the instance.
|
768
768
|
|
769
769
|
If you provide the parameter, the instance is created with the platform configuration that you specify. For any values that you omit, the instance uses the default configuration values for the `shape` that you specify. If you don't provide the parameter, the default values for the `shape` are used.
|
770
770
|
|
@@ -1241,7 +1241,7 @@ class _InstanceState:
|
|
1241
1241
|
@pulumi.getter(name="platformConfig")
|
1242
1242
|
def platform_config(self) -> Optional[pulumi.Input['InstancePlatformConfigArgs']]:
|
1243
1243
|
"""
|
1244
|
-
The platform configuration requested for the instance.
|
1244
|
+
(Updatable only for VM's) The platform configuration requested for the instance.
|
1245
1245
|
|
1246
1246
|
If you provide the parameter, the instance is created with the platform configuration that you specify. For any values that you omit, the instance uses the default configuration values for the `shape` that you specify. If you don't provide the parameter, the default values for the `shape` are used.
|
1247
1247
|
|
@@ -1600,7 +1600,7 @@ class Instance(pulumi.CustomResource):
|
|
1600
1600
|
The combined size of the `metadata` and `extendedMetadata` objects can be a maximum of 32,000 bytes.
|
1601
1601
|
|
1602
1602
|
**Note:** Both the 'user_data' and 'ssh_authorized_keys' fields cannot be changed after an instance has launched. Any request which updates, removes, or adds either of these fields will be rejected. You must provide the same values for 'user_data' and 'ssh_authorized_keys' that already exist on the instance.
|
1603
|
-
:param pulumi.Input[pulumi.InputType['InstancePlatformConfigArgs']] platform_config: The platform configuration requested for the instance.
|
1603
|
+
:param pulumi.Input[pulumi.InputType['InstancePlatformConfigArgs']] platform_config: (Updatable only for VM's) The platform configuration requested for the instance.
|
1604
1604
|
|
1605
1605
|
If you provide the parameter, the instance is created with the platform configuration that you specify. For any values that you omit, the instance uses the default configuration values for the `shape` that you specify. If you don't provide the parameter, the default values for the `shape` are used.
|
1606
1606
|
|
@@ -1913,7 +1913,7 @@ class Instance(pulumi.CustomResource):
|
|
1913
1913
|
The combined size of the `metadata` and `extendedMetadata` objects can be a maximum of 32,000 bytes.
|
1914
1914
|
|
1915
1915
|
**Note:** Both the 'user_data' and 'ssh_authorized_keys' fields cannot be changed after an instance has launched. Any request which updates, removes, or adds either of these fields will be rejected. You must provide the same values for 'user_data' and 'ssh_authorized_keys' that already exist on the instance.
|
1916
|
-
:param pulumi.Input[pulumi.InputType['InstancePlatformConfigArgs']] platform_config: The platform configuration requested for the instance.
|
1916
|
+
:param pulumi.Input[pulumi.InputType['InstancePlatformConfigArgs']] platform_config: (Updatable only for VM's) The platform configuration requested for the instance.
|
1917
1917
|
|
1918
1918
|
If you provide the parameter, the instance is created with the platform configuration that you specify. For any values that you omit, the instance uses the default configuration values for the `shape` that you specify. If you don't provide the parameter, the default values for the `shape` are used.
|
1919
1919
|
|
@@ -2246,7 +2246,7 @@ class Instance(pulumi.CustomResource):
|
|
2246
2246
|
@pulumi.getter(name="platformConfig")
|
2247
2247
|
def platform_config(self) -> pulumi.Output['outputs.InstancePlatformConfig']:
|
2248
2248
|
"""
|
2249
|
-
The platform configuration requested for the instance.
|
2249
|
+
(Updatable only for VM's) The platform configuration requested for the instance.
|
2250
2250
|
|
2251
2251
|
If you provide the parameter, the instance is created with the platform configuration that you specify. For any values that you omit, the instance uses the default configuration values for the `shape` that you specify. If you don't provide the parameter, the default values for the `shape` are used.
|
2252
2252
|
|
pulumi_oci/core/outputs.py
CHANGED
@@ -6836,7 +6836,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsPlatformConfig(dict):
|
|
6836
6836
|
:param bool is_measured_boot_enabled: Whether the Measured Boot feature is enabled on the instance.
|
6837
6837
|
:param bool is_memory_encryption_enabled: Whether the instance is a confidential instance. If this value is `true`, the instance is a confidential instance. The default value is `false`.
|
6838
6838
|
:param bool is_secure_boot_enabled: Whether Secure Boot is enabled on the instance.
|
6839
|
-
:param bool is_symmetric_multi_threading_enabled: Whether symmetric multithreading is enabled on the instance. Symmetric multithreading is also called simultaneous multithreading (SMT) or Intel Hyper-Threading.
|
6839
|
+
:param bool is_symmetric_multi_threading_enabled: (Updatable only for AMD_VM and INTEL_VM) Whether symmetric multithreading is enabled on the instance. Symmetric multithreading is also called simultaneous multithreading (SMT) or Intel Hyper-Threading.
|
6840
6840
|
|
6841
6841
|
Intel and AMD processors have two hardware execution threads per core (OCPU). SMT permits multiple independent threads of execution, to better use the resources and increase the efficiency of the CPU. When multithreading is disabled, only one thread is permitted to run on each core, which can provide higher or more predictable performance for some workloads.
|
6842
6842
|
:param bool is_trusted_platform_module_enabled: Whether the Trusted Platform Module (TPM) is enabled on the instance.
|
@@ -6937,7 +6937,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsPlatformConfig(dict):
|
|
6937
6937
|
@pulumi.getter(name="isSymmetricMultiThreadingEnabled")
|
6938
6938
|
def is_symmetric_multi_threading_enabled(self) -> Optional[bool]:
|
6939
6939
|
"""
|
6940
|
-
Whether symmetric multithreading is enabled on the instance. Symmetric multithreading is also called simultaneous multithreading (SMT) or Intel Hyper-Threading.
|
6940
|
+
(Updatable only for AMD_VM and INTEL_VM) Whether symmetric multithreading is enabled on the instance. Symmetric multithreading is also called simultaneous multithreading (SMT) or Intel Hyper-Threading.
|
6941
6941
|
|
6942
6942
|
Intel and AMD processors have two hardware execution threads per core (OCPU). SMT permits multiple independent threads of execution, to better use the resources and increase the efficiency of the CPU. When multithreading is disabled, only one thread is permitted to run on each core, which can provide higher or more predictable performance for some workloads.
|
6943
6943
|
"""
|
@@ -9028,7 +9028,7 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsPlatformConfig(dict
|
|
9028
9028
|
:param bool is_measured_boot_enabled: Whether the Measured Boot feature is enabled on the instance.
|
9029
9029
|
:param bool is_memory_encryption_enabled: Whether the instance is a confidential instance. If this value is `true`, the instance is a confidential instance. The default value is `false`.
|
9030
9030
|
:param bool is_secure_boot_enabled: Whether Secure Boot is enabled on the instance.
|
9031
|
-
:param bool is_symmetric_multi_threading_enabled: Whether symmetric multithreading is enabled on the instance. Symmetric multithreading is also called simultaneous multithreading (SMT) or Intel Hyper-Threading.
|
9031
|
+
:param bool is_symmetric_multi_threading_enabled: (Updatable only for AMD_VM and INTEL_VM) Whether symmetric multithreading is enabled on the instance. Symmetric multithreading is also called simultaneous multithreading (SMT) or Intel Hyper-Threading.
|
9032
9032
|
|
9033
9033
|
Intel and AMD processors have two hardware execution threads per core (OCPU). SMT permits multiple independent threads of execution, to better use the resources and increase the efficiency of the CPU. When multithreading is disabled, only one thread is permitted to run on each core, which can provide higher or more predictable performance for some workloads.
|
9034
9034
|
:param bool is_trusted_platform_module_enabled: Whether the Trusted Platform Module (TPM) is enabled on the instance.
|
@@ -9119,7 +9119,7 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsPlatformConfig(dict
|
|
9119
9119
|
@pulumi.getter(name="isSymmetricMultiThreadingEnabled")
|
9120
9120
|
def is_symmetric_multi_threading_enabled(self) -> Optional[bool]:
|
9121
9121
|
"""
|
9122
|
-
Whether symmetric multithreading is enabled on the instance. Symmetric multithreading is also called simultaneous multithreading (SMT) or Intel Hyper-Threading.
|
9122
|
+
(Updatable only for AMD_VM and INTEL_VM) Whether symmetric multithreading is enabled on the instance. Symmetric multithreading is also called simultaneous multithreading (SMT) or Intel Hyper-Threading.
|
9123
9123
|
|
9124
9124
|
Intel and AMD processors have two hardware execution threads per core (OCPU). SMT permits multiple independent threads of execution, to better use the resources and increase the efficiency of the CPU. When multithreading is disabled, only one thread is permitted to run on each core, which can provide higher or more predictable performance for some workloads.
|
9125
9125
|
"""
|
@@ -10615,7 +10615,7 @@ class InstancePlatformConfig(dict):
|
|
10615
10615
|
:param bool is_measured_boot_enabled: Whether the Measured Boot feature is enabled on the instance.
|
10616
10616
|
:param bool is_memory_encryption_enabled: Whether the instance is a confidential instance. If this value is `true`, the instance is a confidential instance. The default value is `false`.
|
10617
10617
|
:param bool is_secure_boot_enabled: Whether Secure Boot is enabled on the instance.
|
10618
|
-
:param bool is_symmetric_multi_threading_enabled: Whether symmetric multithreading is enabled on the instance. Symmetric multithreading is also called simultaneous multithreading (SMT) or Intel Hyper-Threading.
|
10618
|
+
:param bool is_symmetric_multi_threading_enabled: (Updatable only for INTEL_VM and AMD_VM) Whether symmetric multithreading is enabled on the instance. Symmetric multithreading is also called simultaneous multithreading (SMT) or Intel Hyper-Threading.
|
10619
10619
|
|
10620
10620
|
Intel and AMD processors have two hardware execution threads per core (OCPU). SMT permits multiple independent threads of execution, to better use the resources and increase the efficiency of the CPU. When multithreading is disabled, only one thread is permitted to run on each core, which can provide higher or more predictable performance for some workloads.
|
10621
10621
|
:param bool is_trusted_platform_module_enabled: Whether the Trusted Platform Module (TPM) is enabled on the instance.
|
@@ -10716,7 +10716,7 @@ class InstancePlatformConfig(dict):
|
|
10716
10716
|
@pulumi.getter(name="isSymmetricMultiThreadingEnabled")
|
10717
10717
|
def is_symmetric_multi_threading_enabled(self) -> Optional[bool]:
|
10718
10718
|
"""
|
10719
|
-
Whether symmetric multithreading is enabled on the instance. Symmetric multithreading is also called simultaneous multithreading (SMT) or Intel Hyper-Threading.
|
10719
|
+
(Updatable only for INTEL_VM and AMD_VM) Whether symmetric multithreading is enabled on the instance. Symmetric multithreading is also called simultaneous multithreading (SMT) or Intel Hyper-Threading.
|
10720
10720
|
|
10721
10721
|
Intel and AMD processors have two hardware execution threads per core (OCPU). SMT permits multiple independent threads of execution, to better use the resources and increase the efficiency of the CPU. When multithreading is disabled, only one thread is permitted to run on each core, which can provide higher or more predictable performance for some workloads.
|
10722
10722
|
"""
|
@@ -9,6 +9,8 @@ from .get_workspace import *
|
|
9
9
|
from .get_workspace_application import *
|
10
10
|
from .get_workspace_application_patch import *
|
11
11
|
from .get_workspace_application_patches import *
|
12
|
+
from .get_workspace_application_schedule import *
|
13
|
+
from .get_workspace_application_schedules import *
|
12
14
|
from .get_workspace_applications import *
|
13
15
|
from .get_workspace_export_request import *
|
14
16
|
from .get_workspace_export_requests import *
|
@@ -22,6 +24,7 @@ from .get_workspaces import *
|
|
22
24
|
from .workspace import *
|
23
25
|
from .workspace_application import *
|
24
26
|
from .workspace_application_patch import *
|
27
|
+
from .workspace_application_schedule import *
|
25
28
|
from .workspace_export_request import *
|
26
29
|
from .workspace_folder import *
|
27
30
|
from .workspace_import_request import *
|