pulumi-oci 2.26.0a1741415311__py3-none-any.whl → 2.26.0a1741943394__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 +67 -0
- pulumi_oci/containerengine/_inputs.py +34 -35
- pulumi_oci/containerengine/cluster.py +2 -0
- pulumi_oci/containerengine/container_instance.py +2 -4
- pulumi_oci/containerengine/outputs.py +110 -21
- pulumi_oci/containerinstances/outputs.py +0 -14
- pulumi_oci/core/_inputs.py +21 -33
- pulumi_oci/core/outputs.py +13 -21
- pulumi_oci/database/__init__.py +1 -0
- pulumi_oci/database/_inputs.py +704 -0
- pulumi_oci/database/application_vip.py +59 -10
- pulumi_oci/database/autonomous_database.py +7 -28
- pulumi_oci/database/backup.py +153 -5
- pulumi_oci/database/cloud_exadata_infrastructure.py +126 -0
- pulumi_oci/database/cloud_vm_cluster.py +163 -30
- pulumi_oci/database/db_node.py +64 -8
- pulumi_oci/database/exadata_infrastructure.py +157 -3
- pulumi_oci/database/exadata_infrastructure_configure_exascale_management.py +1615 -0
- pulumi_oci/database/exadb_vm_cluster.py +84 -7
- pulumi_oci/database/exascale_db_storage_vault.py +147 -0
- pulumi_oci/database/external_container_database.py +4 -4
- pulumi_oci/database/external_non_container_database.py +4 -4
- pulumi_oci/database/external_pluggable_database.py +4 -4
- pulumi_oci/database/get_application_vip.py +16 -2
- pulumi_oci/database/get_autonomous_database.py +0 -3
- pulumi_oci/database/get_backups.py +136 -10
- pulumi_oci/database/get_cloud_exadata_infrastructure.py +43 -1
- pulumi_oci/database/get_cloud_vm_cluster.py +59 -3
- pulumi_oci/database/get_cloud_vm_clusters.py +28 -6
- pulumi_oci/database/get_database_software_images.py +20 -1
- pulumi_oci/database/get_db_node.py +31 -4
- pulumi_oci/database/get_db_server.py +15 -1
- pulumi_oci/database/get_exadata_infrastructure.py +57 -1
- pulumi_oci/database/get_exadb_vm_cluster.py +29 -1
- pulumi_oci/database/get_exadb_vm_clusters.py +25 -3
- pulumi_oci/database/get_exascale_db_storage_vault.py +43 -1
- pulumi_oci/database/get_exascale_db_storage_vaults.py +47 -3
- pulumi_oci/database/get_external_container_database.py +1 -1
- pulumi_oci/database/get_external_non_container_database.py +1 -1
- pulumi_oci/database/get_external_pluggable_database.py +1 -1
- pulumi_oci/database/get_flex_components.py +28 -6
- pulumi_oci/database/get_vm_cluster.py +60 -4
- pulumi_oci/database/get_vm_clusters.py +25 -3
- pulumi_oci/database/outputs.py +1084 -42
- pulumi_oci/database/pluggable_database.py +13 -13
- pulumi_oci/database/vm_cluster.py +172 -18
- pulumi_oci/database/vm_cluster_add_virtual_network.py +114 -2
- pulumi_oci/database/vm_cluster_remove_virtual_machine.py +114 -2
- pulumi_oci/datasafe/__init__.py +7 -0
- pulumi_oci/datasafe/_inputs.py +301 -0
- pulumi_oci/datasafe/discovery_mod.py +49 -0
- pulumi_oci/datasafe/get_discovery_job.py +15 -1
- pulumi_oci/datasafe/get_masking_report.py +46 -4
- pulumi_oci/datasafe/get_masking_report_masking_errors.py +166 -0
- pulumi_oci/datasafe/get_security_assessment_finding.py +31 -1
- pulumi_oci/datasafe/get_security_assessment_findings.py +43 -3
- pulumi_oci/datasafe/get_sensitive_column_analytics.py +370 -0
- pulumi_oci/datasafe/get_sensitive_data_model.py +15 -1
- pulumi_oci/datasafe/get_sensitive_type_group.py +253 -0
- pulumi_oci/datasafe/get_sensitive_type_group_grouped_sensitive_types.py +166 -0
- pulumi_oci/datasafe/get_sensitive_type_groups.py +294 -0
- pulumi_oci/datasafe/outputs.py +676 -3
- pulumi_oci/datasafe/sensitive_data_model.py +49 -0
- pulumi_oci/datasafe/sensitive_type_group.py +563 -0
- pulumi_oci/datasafe/sensitive_type_group_grouped_sensitive_type.py +287 -0
- pulumi_oci/datascience/__init__.py +4 -0
- pulumi_oci/datascience/_inputs.py +1160 -41
- pulumi_oci/datascience/get_model.py +29 -1
- pulumi_oci/datascience/get_model_custom_metadata_artifact_content.py +151 -0
- pulumi_oci/datascience/get_model_defined_metadata_artifact_content.py +151 -0
- pulumi_oci/datascience/get_model_version_set.py +15 -1
- pulumi_oci/datascience/get_model_version_sets.py +25 -3
- pulumi_oci/datascience/get_models.py +25 -3
- pulumi_oci/datascience/get_pipeline.py +15 -1
- pulumi_oci/datascience/model.py +64 -0
- pulumi_oci/datascience/model_custom_metadata_artifact.py +418 -0
- pulumi_oci/datascience/model_defined_metadata_artifact.py +418 -0
- pulumi_oci/datascience/model_version_set.py +28 -0
- pulumi_oci/datascience/outputs.py +4343 -2164
- pulumi_oci/datascience/pipeline.py +48 -141
- pulumi_oci/datascience/pipeline_run.py +32 -0
- pulumi_oci/dblm/__init__.py +17 -0
- pulumi_oci/dblm/_inputs.py +275 -0
- pulumi_oci/dblm/get_vulnerability.py +242 -0
- pulumi_oci/dblm/get_vulnerability_aggregated_vulnerability_data.py +220 -0
- pulumi_oci/dblm/get_vulnerability_notifications.py +144 -0
- pulumi_oci/dblm/get_vulnerability_resources.py +258 -0
- pulumi_oci/dblm/get_vulnerability_scan.py +267 -0
- pulumi_oci/dblm/get_vulnerability_scans.py +270 -0
- pulumi_oci/dblm/get_vulnerability_vulnerabilities.py +258 -0
- pulumi_oci/dblm/outputs.py +1294 -0
- pulumi_oci/dblm/vulnerability_scan.py +521 -0
- pulumi_oci/email/dkim.py +120 -20
- pulumi_oci/email/get_dkim.py +40 -1
- pulumi_oci/email/outputs.py +29 -0
- pulumi_oci/filestorage/__init__.py +3 -0
- pulumi_oci/filestorage/_inputs.py +49 -0
- pulumi_oci/filestorage/file_system.py +105 -0
- pulumi_oci/filestorage/file_system_quota_rule.py +593 -0
- pulumi_oci/filestorage/get_file_system_quota_rule.py +248 -0
- pulumi_oci/filestorage/get_file_system_quota_rules.py +210 -0
- pulumi_oci/filestorage/outputs.py +186 -0
- pulumi_oci/mysql/_inputs.py +1239 -10
- pulumi_oci/mysql/channel.py +28 -0
- pulumi_oci/mysql/get_channel.py +15 -1
- pulumi_oci/mysql/get_mysql_backup.py +15 -1
- pulumi_oci/mysql/get_mysql_configuration.py +15 -1
- pulumi_oci/mysql/get_mysql_db_system.py +15 -1
- pulumi_oci/mysql/mysql_backup.py +28 -0
- pulumi_oci/mysql/mysql_configuration.py +106 -0
- pulumi_oci/mysql/mysql_db_system.py +36 -0
- pulumi_oci/mysql/outputs.py +2008 -35
- pulumi_oci/opensearch/__init__.py +3 -0
- pulumi_oci/opensearch/_inputs.py +101 -0
- pulumi_oci/opensearch/cluster.py +76 -29
- pulumi_oci/opensearch/get_opensearch_cluster.py +12 -1
- pulumi_oci/opensearch/get_opensearch_cluster_pipeline.py +433 -0
- pulumi_oci/opensearch/get_opensearch_cluster_pipelines.py +218 -0
- pulumi_oci/opensearch/opensearch_cluster_pipeline.py +1172 -0
- pulumi_oci/opensearch/outputs.py +425 -0
- pulumi_oci/psql/_inputs.py +258 -0
- pulumi_oci/psql/backup.py +129 -28
- pulumi_oci/psql/db_system.py +10 -0
- pulumi_oci/psql/get_backup.py +47 -2
- pulumi_oci/psql/get_backups.py +3 -0
- pulumi_oci/psql/get_configurations.py +23 -1
- pulumi_oci/psql/get_db_system.py +1 -1
- pulumi_oci/psql/get_db_systems.py +1 -1
- pulumi_oci/psql/outputs.py +541 -5
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/redis/redis_cluster.py +7 -7
- {pulumi_oci-2.26.0a1741415311.dist-info → pulumi_oci-2.26.0a1741943394.dist-info}/METADATA +1 -1
- {pulumi_oci-2.26.0a1741415311.dist-info → pulumi_oci-2.26.0a1741943394.dist-info}/RECORD +135 -106
- {pulumi_oci-2.26.0a1741415311.dist-info → pulumi_oci-2.26.0a1741943394.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.26.0a1741415311.dist-info → pulumi_oci-2.26.0a1741943394.dist-info}/top_level.txt +0 -0
@@ -28,7 +28,7 @@ class GetFlexComponentsResult:
|
|
28
28
|
"""
|
29
29
|
A collection of values returned by getFlexComponents.
|
30
30
|
"""
|
31
|
-
def __init__(__self__, compartment_id=None, filters=None, flex_component_collections=None, id=None, name=None):
|
31
|
+
def __init__(__self__, compartment_id=None, filters=None, flex_component_collections=None, id=None, name=None, shape=None):
|
32
32
|
if compartment_id and not isinstance(compartment_id, str):
|
33
33
|
raise TypeError("Expected argument 'compartment_id' to be a str")
|
34
34
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
@@ -44,6 +44,9 @@ class GetFlexComponentsResult:
|
|
44
44
|
if name and not isinstance(name, str):
|
45
45
|
raise TypeError("Expected argument 'name' to be a str")
|
46
46
|
pulumi.set(__self__, "name", name)
|
47
|
+
if shape and not isinstance(shape, str):
|
48
|
+
raise TypeError("Expected argument 'shape' to be a str")
|
49
|
+
pulumi.set(__self__, "shape", shape)
|
47
50
|
|
48
51
|
@property
|
49
52
|
@pulumi.getter(name="compartmentId")
|
@@ -79,6 +82,14 @@ class GetFlexComponentsResult:
|
|
79
82
|
"""
|
80
83
|
return pulumi.get(self, "name")
|
81
84
|
|
85
|
+
@property
|
86
|
+
@pulumi.getter
|
87
|
+
def shape(self) -> Optional[str]:
|
88
|
+
"""
|
89
|
+
The name of the DB system shape for this Flex Component.
|
90
|
+
"""
|
91
|
+
return pulumi.get(self, "shape")
|
92
|
+
|
82
93
|
|
83
94
|
class AwaitableGetFlexComponentsResult(GetFlexComponentsResult):
|
84
95
|
# pylint: disable=using-constant-test
|
@@ -90,12 +101,14 @@ class AwaitableGetFlexComponentsResult(GetFlexComponentsResult):
|
|
90
101
|
filters=self.filters,
|
91
102
|
flex_component_collections=self.flex_component_collections,
|
92
103
|
id=self.id,
|
93
|
-
name=self.name
|
104
|
+
name=self.name,
|
105
|
+
shape=self.shape)
|
94
106
|
|
95
107
|
|
96
108
|
def get_flex_components(compartment_id: Optional[str] = None,
|
97
109
|
filters: Optional[Sequence[Union['GetFlexComponentsFilterArgs', 'GetFlexComponentsFilterArgsDict']]] = None,
|
98
110
|
name: Optional[str] = None,
|
111
|
+
shape: Optional[str] = None,
|
99
112
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetFlexComponentsResult:
|
100
113
|
"""
|
101
114
|
This data source provides the list of Flex Components in Oracle Cloud Infrastructure Database service.
|
@@ -109,17 +122,20 @@ def get_flex_components(compartment_id: Optional[str] = None,
|
|
109
122
|
import pulumi_oci as oci
|
110
123
|
|
111
124
|
test_flex_components = oci.Database.get_flex_components(compartment_id=compartment_id,
|
112
|
-
name=flex_component_name
|
125
|
+
name=flex_component_name,
|
126
|
+
shape=flex_component_shape)
|
113
127
|
```
|
114
128
|
|
115
129
|
|
116
130
|
:param str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
117
131
|
:param str name: A filter to return only resources that match the entire name given. The match is not case sensitive.
|
132
|
+
:param str shape: A filter to return only resources that belong to the entire shape name given. The match is not case sensitive.
|
118
133
|
"""
|
119
134
|
__args__ = dict()
|
120
135
|
__args__['compartmentId'] = compartment_id
|
121
136
|
__args__['filters'] = filters
|
122
137
|
__args__['name'] = name
|
138
|
+
__args__['shape'] = shape
|
123
139
|
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
124
140
|
__ret__ = pulumi.runtime.invoke('oci:Database/getFlexComponents:getFlexComponents', __args__, opts=opts, typ=GetFlexComponentsResult).value
|
125
141
|
|
@@ -128,10 +144,12 @@ def get_flex_components(compartment_id: Optional[str] = None,
|
|
128
144
|
filters=pulumi.get(__ret__, 'filters'),
|
129
145
|
flex_component_collections=pulumi.get(__ret__, 'flex_component_collections'),
|
130
146
|
id=pulumi.get(__ret__, 'id'),
|
131
|
-
name=pulumi.get(__ret__, 'name')
|
147
|
+
name=pulumi.get(__ret__, 'name'),
|
148
|
+
shape=pulumi.get(__ret__, 'shape'))
|
132
149
|
def get_flex_components_output(compartment_id: Optional[pulumi.Input[str]] = None,
|
133
150
|
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetFlexComponentsFilterArgs', 'GetFlexComponentsFilterArgsDict']]]]] = None,
|
134
151
|
name: Optional[pulumi.Input[Optional[str]]] = None,
|
152
|
+
shape: Optional[pulumi.Input[Optional[str]]] = None,
|
135
153
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetFlexComponentsResult]:
|
136
154
|
"""
|
137
155
|
This data source provides the list of Flex Components in Oracle Cloud Infrastructure Database service.
|
@@ -145,17 +163,20 @@ def get_flex_components_output(compartment_id: Optional[pulumi.Input[str]] = Non
|
|
145
163
|
import pulumi_oci as oci
|
146
164
|
|
147
165
|
test_flex_components = oci.Database.get_flex_components(compartment_id=compartment_id,
|
148
|
-
name=flex_component_name
|
166
|
+
name=flex_component_name,
|
167
|
+
shape=flex_component_shape)
|
149
168
|
```
|
150
169
|
|
151
170
|
|
152
171
|
:param str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
153
172
|
:param str name: A filter to return only resources that match the entire name given. The match is not case sensitive.
|
173
|
+
:param str shape: A filter to return only resources that belong to the entire shape name given. The match is not case sensitive.
|
154
174
|
"""
|
155
175
|
__args__ = dict()
|
156
176
|
__args__['compartmentId'] = compartment_id
|
157
177
|
__args__['filters'] = filters
|
158
178
|
__args__['name'] = name
|
179
|
+
__args__['shape'] = shape
|
159
180
|
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
160
181
|
__ret__ = pulumi.runtime.invoke_output('oci:Database/getFlexComponents:getFlexComponents', __args__, opts=opts, typ=GetFlexComponentsResult)
|
161
182
|
return __ret__.apply(lambda __response__: GetFlexComponentsResult(
|
@@ -163,4 +184,5 @@ def get_flex_components_output(compartment_id: Optional[pulumi.Input[str]] = Non
|
|
163
184
|
filters=pulumi.get(__response__, 'filters'),
|
164
185
|
flex_component_collections=pulumi.get(__response__, 'flex_component_collections'),
|
165
186
|
id=pulumi.get(__response__, 'id'),
|
166
|
-
name=pulumi.get(__response__, 'name')
|
187
|
+
name=pulumi.get(__response__, 'name'),
|
188
|
+
shape=pulumi.get(__response__, 'shape')))
|
@@ -27,7 +27,7 @@ class GetVmClusterResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getVmCluster.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, availability_domain=None, cloud_automation_update_details=None, compartment_id=None, cpu_core_count=None, cpus_enabled=None, data_collection_options=None, data_storage_size_in_gb=None, data_storage_size_in_tbs=None, db_node_storage_size_in_gbs=None, db_servers=None, defined_tags=None, display_name=None, exadata_infrastructure_id=None, file_system_configuration_details=None, freeform_tags=None, gi_version=None, id=None, is_local_backup_enabled=None, is_sparse_diskgroup_enabled=None, last_patch_history_entry_id=None, license_model=None, lifecycle_details=None, memory_size_in_gbs=None, ocpu_count=None, ocpus_enabled=None, shape=None, ssh_public_keys=None, state=None, system_version=None, time_created=None, time_zone=None, vm_cluster_id=None, vm_cluster_network_id=None):
|
30
|
+
def __init__(__self__, availability_domain=None, cloud_automation_update_details=None, compartment_id=None, compute_model=None, cpu_core_count=None, cpus_enabled=None, data_collection_options=None, data_storage_size_in_gb=None, data_storage_size_in_tbs=None, db_node_storage_size_in_gbs=None, db_servers=None, defined_tags=None, display_name=None, exadata_infrastructure_id=None, exascale_db_storage_vault_id=None, file_system_configuration_details=None, freeform_tags=None, gi_version=None, id=None, is_local_backup_enabled=None, is_sparse_diskgroup_enabled=None, last_patch_history_entry_id=None, license_model=None, lifecycle_details=None, memory_size_in_gbs=None, ocpu_count=None, ocpus_enabled=None, shape=None, ssh_public_keys=None, state=None, storage_management_type=None, system_version=None, time_created=None, time_zone=None, vm_cluster_id=None, vm_cluster_network_id=None, vm_cluster_type=None):
|
31
31
|
if availability_domain and not isinstance(availability_domain, str):
|
32
32
|
raise TypeError("Expected argument 'availability_domain' to be a str")
|
33
33
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
@@ -37,6 +37,9 @@ class GetVmClusterResult:
|
|
37
37
|
if compartment_id and not isinstance(compartment_id, str):
|
38
38
|
raise TypeError("Expected argument 'compartment_id' to be a str")
|
39
39
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
40
|
+
if compute_model and not isinstance(compute_model, str):
|
41
|
+
raise TypeError("Expected argument 'compute_model' to be a str")
|
42
|
+
pulumi.set(__self__, "compute_model", compute_model)
|
40
43
|
if cpu_core_count and not isinstance(cpu_core_count, int):
|
41
44
|
raise TypeError("Expected argument 'cpu_core_count' to be a int")
|
42
45
|
pulumi.set(__self__, "cpu_core_count", cpu_core_count)
|
@@ -67,6 +70,9 @@ class GetVmClusterResult:
|
|
67
70
|
if exadata_infrastructure_id and not isinstance(exadata_infrastructure_id, str):
|
68
71
|
raise TypeError("Expected argument 'exadata_infrastructure_id' to be a str")
|
69
72
|
pulumi.set(__self__, "exadata_infrastructure_id", exadata_infrastructure_id)
|
73
|
+
if exascale_db_storage_vault_id and not isinstance(exascale_db_storage_vault_id, str):
|
74
|
+
raise TypeError("Expected argument 'exascale_db_storage_vault_id' to be a str")
|
75
|
+
pulumi.set(__self__, "exascale_db_storage_vault_id", exascale_db_storage_vault_id)
|
70
76
|
if file_system_configuration_details and not isinstance(file_system_configuration_details, list):
|
71
77
|
raise TypeError("Expected argument 'file_system_configuration_details' to be a list")
|
72
78
|
pulumi.set(__self__, "file_system_configuration_details", file_system_configuration_details)
|
@@ -112,6 +118,9 @@ class GetVmClusterResult:
|
|
112
118
|
if state and not isinstance(state, str):
|
113
119
|
raise TypeError("Expected argument 'state' to be a str")
|
114
120
|
pulumi.set(__self__, "state", state)
|
121
|
+
if storage_management_type and not isinstance(storage_management_type, str):
|
122
|
+
raise TypeError("Expected argument 'storage_management_type' to be a str")
|
123
|
+
pulumi.set(__self__, "storage_management_type", storage_management_type)
|
115
124
|
if system_version and not isinstance(system_version, str):
|
116
125
|
raise TypeError("Expected argument 'system_version' to be a str")
|
117
126
|
pulumi.set(__self__, "system_version", system_version)
|
@@ -127,6 +136,9 @@ class GetVmClusterResult:
|
|
127
136
|
if vm_cluster_network_id and not isinstance(vm_cluster_network_id, str):
|
128
137
|
raise TypeError("Expected argument 'vm_cluster_network_id' to be a str")
|
129
138
|
pulumi.set(__self__, "vm_cluster_network_id", vm_cluster_network_id)
|
139
|
+
if vm_cluster_type and not isinstance(vm_cluster_type, str):
|
140
|
+
raise TypeError("Expected argument 'vm_cluster_type' to be a str")
|
141
|
+
pulumi.set(__self__, "vm_cluster_type", vm_cluster_type)
|
130
142
|
|
131
143
|
@property
|
132
144
|
@pulumi.getter(name="availabilityDomain")
|
@@ -152,6 +164,14 @@ class GetVmClusterResult:
|
|
152
164
|
"""
|
153
165
|
return pulumi.get(self, "compartment_id")
|
154
166
|
|
167
|
+
@property
|
168
|
+
@pulumi.getter(name="computeModel")
|
169
|
+
def compute_model(self) -> str:
|
170
|
+
"""
|
171
|
+
The compute model of the Autonomous Database. This is required if using the `computeCount` parameter. If using `cpuCoreCount` then it is an error to specify `computeModel` to a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
|
172
|
+
"""
|
173
|
+
return pulumi.get(self, "compute_model")
|
174
|
+
|
155
175
|
@property
|
156
176
|
@pulumi.getter(name="cpuCoreCount")
|
157
177
|
def cpu_core_count(self) -> int:
|
@@ -229,6 +249,14 @@ class GetVmClusterResult:
|
|
229
249
|
"""
|
230
250
|
return pulumi.get(self, "exadata_infrastructure_id")
|
231
251
|
|
252
|
+
@property
|
253
|
+
@pulumi.getter(name="exascaleDbStorageVaultId")
|
254
|
+
def exascale_db_storage_vault_id(self) -> str:
|
255
|
+
"""
|
256
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata Database Storage Vault.
|
257
|
+
"""
|
258
|
+
return pulumi.get(self, "exascale_db_storage_vault_id")
|
259
|
+
|
232
260
|
@property
|
233
261
|
@pulumi.getter(name="fileSystemConfigurationDetails")
|
234
262
|
def file_system_configuration_details(self) -> Sequence['outputs.GetVmClusterFileSystemConfigurationDetailResult']:
|
@@ -343,6 +371,14 @@ class GetVmClusterResult:
|
|
343
371
|
"""
|
344
372
|
return pulumi.get(self, "state")
|
345
373
|
|
374
|
+
@property
|
375
|
+
@pulumi.getter(name="storageManagementType")
|
376
|
+
def storage_management_type(self) -> str:
|
377
|
+
"""
|
378
|
+
Specifies whether the type of storage management for the VM cluster is ASM or Exascale.
|
379
|
+
"""
|
380
|
+
return pulumi.get(self, "storage_management_type")
|
381
|
+
|
346
382
|
@property
|
347
383
|
@pulumi.getter(name="systemVersion")
|
348
384
|
def system_version(self) -> str:
|
@@ -380,6 +416,14 @@ class GetVmClusterResult:
|
|
380
416
|
"""
|
381
417
|
return pulumi.get(self, "vm_cluster_network_id")
|
382
418
|
|
419
|
+
@property
|
420
|
+
@pulumi.getter(name="vmClusterType")
|
421
|
+
def vm_cluster_type(self) -> str:
|
422
|
+
"""
|
423
|
+
The vmcluster type for the VM cluster/Cloud VM cluster.
|
424
|
+
"""
|
425
|
+
return pulumi.get(self, "vm_cluster_type")
|
426
|
+
|
383
427
|
|
384
428
|
class AwaitableGetVmClusterResult(GetVmClusterResult):
|
385
429
|
# pylint: disable=using-constant-test
|
@@ -390,6 +434,7 @@ class AwaitableGetVmClusterResult(GetVmClusterResult):
|
|
390
434
|
availability_domain=self.availability_domain,
|
391
435
|
cloud_automation_update_details=self.cloud_automation_update_details,
|
392
436
|
compartment_id=self.compartment_id,
|
437
|
+
compute_model=self.compute_model,
|
393
438
|
cpu_core_count=self.cpu_core_count,
|
394
439
|
cpus_enabled=self.cpus_enabled,
|
395
440
|
data_collection_options=self.data_collection_options,
|
@@ -400,6 +445,7 @@ class AwaitableGetVmClusterResult(GetVmClusterResult):
|
|
400
445
|
defined_tags=self.defined_tags,
|
401
446
|
display_name=self.display_name,
|
402
447
|
exadata_infrastructure_id=self.exadata_infrastructure_id,
|
448
|
+
exascale_db_storage_vault_id=self.exascale_db_storage_vault_id,
|
403
449
|
file_system_configuration_details=self.file_system_configuration_details,
|
404
450
|
freeform_tags=self.freeform_tags,
|
405
451
|
gi_version=self.gi_version,
|
@@ -415,11 +461,13 @@ class AwaitableGetVmClusterResult(GetVmClusterResult):
|
|
415
461
|
shape=self.shape,
|
416
462
|
ssh_public_keys=self.ssh_public_keys,
|
417
463
|
state=self.state,
|
464
|
+
storage_management_type=self.storage_management_type,
|
418
465
|
system_version=self.system_version,
|
419
466
|
time_created=self.time_created,
|
420
467
|
time_zone=self.time_zone,
|
421
468
|
vm_cluster_id=self.vm_cluster_id,
|
422
|
-
vm_cluster_network_id=self.vm_cluster_network_id
|
469
|
+
vm_cluster_network_id=self.vm_cluster_network_id,
|
470
|
+
vm_cluster_type=self.vm_cluster_type)
|
423
471
|
|
424
472
|
|
425
473
|
def get_vm_cluster(vm_cluster_id: Optional[str] = None,
|
@@ -450,6 +498,7 @@ def get_vm_cluster(vm_cluster_id: Optional[str] = None,
|
|
450
498
|
availability_domain=pulumi.get(__ret__, 'availability_domain'),
|
451
499
|
cloud_automation_update_details=pulumi.get(__ret__, 'cloud_automation_update_details'),
|
452
500
|
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
501
|
+
compute_model=pulumi.get(__ret__, 'compute_model'),
|
453
502
|
cpu_core_count=pulumi.get(__ret__, 'cpu_core_count'),
|
454
503
|
cpus_enabled=pulumi.get(__ret__, 'cpus_enabled'),
|
455
504
|
data_collection_options=pulumi.get(__ret__, 'data_collection_options'),
|
@@ -460,6 +509,7 @@ def get_vm_cluster(vm_cluster_id: Optional[str] = None,
|
|
460
509
|
defined_tags=pulumi.get(__ret__, 'defined_tags'),
|
461
510
|
display_name=pulumi.get(__ret__, 'display_name'),
|
462
511
|
exadata_infrastructure_id=pulumi.get(__ret__, 'exadata_infrastructure_id'),
|
512
|
+
exascale_db_storage_vault_id=pulumi.get(__ret__, 'exascale_db_storage_vault_id'),
|
463
513
|
file_system_configuration_details=pulumi.get(__ret__, 'file_system_configuration_details'),
|
464
514
|
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
465
515
|
gi_version=pulumi.get(__ret__, 'gi_version'),
|
@@ -475,11 +525,13 @@ def get_vm_cluster(vm_cluster_id: Optional[str] = None,
|
|
475
525
|
shape=pulumi.get(__ret__, 'shape'),
|
476
526
|
ssh_public_keys=pulumi.get(__ret__, 'ssh_public_keys'),
|
477
527
|
state=pulumi.get(__ret__, 'state'),
|
528
|
+
storage_management_type=pulumi.get(__ret__, 'storage_management_type'),
|
478
529
|
system_version=pulumi.get(__ret__, 'system_version'),
|
479
530
|
time_created=pulumi.get(__ret__, 'time_created'),
|
480
531
|
time_zone=pulumi.get(__ret__, 'time_zone'),
|
481
532
|
vm_cluster_id=pulumi.get(__ret__, 'vm_cluster_id'),
|
482
|
-
vm_cluster_network_id=pulumi.get(__ret__, 'vm_cluster_network_id')
|
533
|
+
vm_cluster_network_id=pulumi.get(__ret__, 'vm_cluster_network_id'),
|
534
|
+
vm_cluster_type=pulumi.get(__ret__, 'vm_cluster_type'))
|
483
535
|
def get_vm_cluster_output(vm_cluster_id: Optional[pulumi.Input[str]] = None,
|
484
536
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetVmClusterResult]:
|
485
537
|
"""
|
@@ -507,6 +559,7 @@ def get_vm_cluster_output(vm_cluster_id: Optional[pulumi.Input[str]] = None,
|
|
507
559
|
availability_domain=pulumi.get(__response__, 'availability_domain'),
|
508
560
|
cloud_automation_update_details=pulumi.get(__response__, 'cloud_automation_update_details'),
|
509
561
|
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
562
|
+
compute_model=pulumi.get(__response__, 'compute_model'),
|
510
563
|
cpu_core_count=pulumi.get(__response__, 'cpu_core_count'),
|
511
564
|
cpus_enabled=pulumi.get(__response__, 'cpus_enabled'),
|
512
565
|
data_collection_options=pulumi.get(__response__, 'data_collection_options'),
|
@@ -517,6 +570,7 @@ def get_vm_cluster_output(vm_cluster_id: Optional[pulumi.Input[str]] = None,
|
|
517
570
|
defined_tags=pulumi.get(__response__, 'defined_tags'),
|
518
571
|
display_name=pulumi.get(__response__, 'display_name'),
|
519
572
|
exadata_infrastructure_id=pulumi.get(__response__, 'exadata_infrastructure_id'),
|
573
|
+
exascale_db_storage_vault_id=pulumi.get(__response__, 'exascale_db_storage_vault_id'),
|
520
574
|
file_system_configuration_details=pulumi.get(__response__, 'file_system_configuration_details'),
|
521
575
|
freeform_tags=pulumi.get(__response__, 'freeform_tags'),
|
522
576
|
gi_version=pulumi.get(__response__, 'gi_version'),
|
@@ -532,8 +586,10 @@ def get_vm_cluster_output(vm_cluster_id: Optional[pulumi.Input[str]] = None,
|
|
532
586
|
shape=pulumi.get(__response__, 'shape'),
|
533
587
|
ssh_public_keys=pulumi.get(__response__, 'ssh_public_keys'),
|
534
588
|
state=pulumi.get(__response__, 'state'),
|
589
|
+
storage_management_type=pulumi.get(__response__, 'storage_management_type'),
|
535
590
|
system_version=pulumi.get(__response__, 'system_version'),
|
536
591
|
time_created=pulumi.get(__response__, 'time_created'),
|
537
592
|
time_zone=pulumi.get(__response__, 'time_zone'),
|
538
593
|
vm_cluster_id=pulumi.get(__response__, 'vm_cluster_id'),
|
539
|
-
vm_cluster_network_id=pulumi.get(__response__, 'vm_cluster_network_id')
|
594
|
+
vm_cluster_network_id=pulumi.get(__response__, 'vm_cluster_network_id'),
|
595
|
+
vm_cluster_type=pulumi.get(__response__, 'vm_cluster_type')))
|
@@ -28,7 +28,7 @@ class GetVmClustersResult:
|
|
28
28
|
"""
|
29
29
|
A collection of values returned by getVmClusters.
|
30
30
|
"""
|
31
|
-
def __init__(__self__, compartment_id=None, display_name=None, exadata_infrastructure_id=None, filters=None, id=None, state=None, vm_clusters=None):
|
31
|
+
def __init__(__self__, compartment_id=None, display_name=None, exadata_infrastructure_id=None, filters=None, id=None, state=None, vm_cluster_type=None, vm_clusters=None):
|
32
32
|
if compartment_id and not isinstance(compartment_id, str):
|
33
33
|
raise TypeError("Expected argument 'compartment_id' to be a str")
|
34
34
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
@@ -47,6 +47,9 @@ class GetVmClustersResult:
|
|
47
47
|
if state and not isinstance(state, str):
|
48
48
|
raise TypeError("Expected argument 'state' to be a str")
|
49
49
|
pulumi.set(__self__, "state", state)
|
50
|
+
if vm_cluster_type and not isinstance(vm_cluster_type, str):
|
51
|
+
raise TypeError("Expected argument 'vm_cluster_type' to be a str")
|
52
|
+
pulumi.set(__self__, "vm_cluster_type", vm_cluster_type)
|
50
53
|
if vm_clusters and not isinstance(vm_clusters, list):
|
51
54
|
raise TypeError("Expected argument 'vm_clusters' to be a list")
|
52
55
|
pulumi.set(__self__, "vm_clusters", vm_clusters)
|
@@ -96,6 +99,14 @@ class GetVmClustersResult:
|
|
96
99
|
"""
|
97
100
|
return pulumi.get(self, "state")
|
98
101
|
|
102
|
+
@property
|
103
|
+
@pulumi.getter(name="vmClusterType")
|
104
|
+
def vm_cluster_type(self) -> Optional[str]:
|
105
|
+
"""
|
106
|
+
The vmcluster type for the VM cluster/Cloud VM cluster.
|
107
|
+
"""
|
108
|
+
return pulumi.get(self, "vm_cluster_type")
|
109
|
+
|
99
110
|
@property
|
100
111
|
@pulumi.getter(name="vmClusters")
|
101
112
|
def vm_clusters(self) -> Sequence['outputs.GetVmClustersVmClusterResult']:
|
@@ -117,6 +128,7 @@ class AwaitableGetVmClustersResult(GetVmClustersResult):
|
|
117
128
|
filters=self.filters,
|
118
129
|
id=self.id,
|
119
130
|
state=self.state,
|
131
|
+
vm_cluster_type=self.vm_cluster_type,
|
120
132
|
vm_clusters=self.vm_clusters)
|
121
133
|
|
122
134
|
|
@@ -125,6 +137,7 @@ def get_vm_clusters(compartment_id: Optional[str] = None,
|
|
125
137
|
exadata_infrastructure_id: Optional[str] = None,
|
126
138
|
filters: Optional[Sequence[Union['GetVmClustersFilterArgs', 'GetVmClustersFilterArgsDict']]] = None,
|
127
139
|
state: Optional[str] = None,
|
140
|
+
vm_cluster_type: Optional[str] = None,
|
128
141
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetVmClustersResult:
|
129
142
|
"""
|
130
143
|
This data source provides the list of Vm Clusters in Oracle Cloud Infrastructure Database service.
|
@@ -141,7 +154,8 @@ def get_vm_clusters(compartment_id: Optional[str] = None,
|
|
141
154
|
test_vm_clusters = oci.Database.get_vm_clusters(compartment_id=compartment_id,
|
142
155
|
display_name=vm_cluster_display_name,
|
143
156
|
exadata_infrastructure_id=test_exadata_infrastructure["id"],
|
144
|
-
state=vm_cluster_state
|
157
|
+
state=vm_cluster_state,
|
158
|
+
vm_cluster_type=vm_cluster_vm_cluster_type)
|
145
159
|
```
|
146
160
|
|
147
161
|
|
@@ -149,6 +163,7 @@ def get_vm_clusters(compartment_id: Optional[str] = None,
|
|
149
163
|
:param str display_name: A filter to return only resources that match the entire display name given. The match is not case sensitive.
|
150
164
|
:param str exadata_infrastructure_id: If provided, filters the results for the given Exadata Infrastructure.
|
151
165
|
:param str state: A filter to return only resources that match the given lifecycle state exactly.
|
166
|
+
:param str vm_cluster_type: A filter to return only vmclusters that match the given vmcluster type exactly.
|
152
167
|
"""
|
153
168
|
__args__ = dict()
|
154
169
|
__args__['compartmentId'] = compartment_id
|
@@ -156,6 +171,7 @@ def get_vm_clusters(compartment_id: Optional[str] = None,
|
|
156
171
|
__args__['exadataInfrastructureId'] = exadata_infrastructure_id
|
157
172
|
__args__['filters'] = filters
|
158
173
|
__args__['state'] = state
|
174
|
+
__args__['vmClusterType'] = vm_cluster_type
|
159
175
|
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
160
176
|
__ret__ = pulumi.runtime.invoke('oci:Database/getVmClusters:getVmClusters', __args__, opts=opts, typ=GetVmClustersResult).value
|
161
177
|
|
@@ -166,12 +182,14 @@ def get_vm_clusters(compartment_id: Optional[str] = None,
|
|
166
182
|
filters=pulumi.get(__ret__, 'filters'),
|
167
183
|
id=pulumi.get(__ret__, 'id'),
|
168
184
|
state=pulumi.get(__ret__, 'state'),
|
185
|
+
vm_cluster_type=pulumi.get(__ret__, 'vm_cluster_type'),
|
169
186
|
vm_clusters=pulumi.get(__ret__, 'vm_clusters'))
|
170
187
|
def get_vm_clusters_output(compartment_id: Optional[pulumi.Input[str]] = None,
|
171
188
|
display_name: Optional[pulumi.Input[Optional[str]]] = None,
|
172
189
|
exadata_infrastructure_id: Optional[pulumi.Input[Optional[str]]] = None,
|
173
190
|
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetVmClustersFilterArgs', 'GetVmClustersFilterArgsDict']]]]] = None,
|
174
191
|
state: Optional[pulumi.Input[Optional[str]]] = None,
|
192
|
+
vm_cluster_type: Optional[pulumi.Input[Optional[str]]] = None,
|
175
193
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetVmClustersResult]:
|
176
194
|
"""
|
177
195
|
This data source provides the list of Vm Clusters in Oracle Cloud Infrastructure Database service.
|
@@ -188,7 +206,8 @@ def get_vm_clusters_output(compartment_id: Optional[pulumi.Input[str]] = None,
|
|
188
206
|
test_vm_clusters = oci.Database.get_vm_clusters(compartment_id=compartment_id,
|
189
207
|
display_name=vm_cluster_display_name,
|
190
208
|
exadata_infrastructure_id=test_exadata_infrastructure["id"],
|
191
|
-
state=vm_cluster_state
|
209
|
+
state=vm_cluster_state,
|
210
|
+
vm_cluster_type=vm_cluster_vm_cluster_type)
|
192
211
|
```
|
193
212
|
|
194
213
|
|
@@ -196,6 +215,7 @@ def get_vm_clusters_output(compartment_id: Optional[pulumi.Input[str]] = None,
|
|
196
215
|
:param str display_name: A filter to return only resources that match the entire display name given. The match is not case sensitive.
|
197
216
|
:param str exadata_infrastructure_id: If provided, filters the results for the given Exadata Infrastructure.
|
198
217
|
:param str state: A filter to return only resources that match the given lifecycle state exactly.
|
218
|
+
:param str vm_cluster_type: A filter to return only vmclusters that match the given vmcluster type exactly.
|
199
219
|
"""
|
200
220
|
__args__ = dict()
|
201
221
|
__args__['compartmentId'] = compartment_id
|
@@ -203,6 +223,7 @@ def get_vm_clusters_output(compartment_id: Optional[pulumi.Input[str]] = None,
|
|
203
223
|
__args__['exadataInfrastructureId'] = exadata_infrastructure_id
|
204
224
|
__args__['filters'] = filters
|
205
225
|
__args__['state'] = state
|
226
|
+
__args__['vmClusterType'] = vm_cluster_type
|
206
227
|
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
207
228
|
__ret__ = pulumi.runtime.invoke_output('oci:Database/getVmClusters:getVmClusters', __args__, opts=opts, typ=GetVmClustersResult)
|
208
229
|
return __ret__.apply(lambda __response__: GetVmClustersResult(
|
@@ -212,4 +233,5 @@ def get_vm_clusters_output(compartment_id: Optional[pulumi.Input[str]] = None,
|
|
212
233
|
filters=pulumi.get(__response__, 'filters'),
|
213
234
|
id=pulumi.get(__response__, 'id'),
|
214
235
|
state=pulumi.get(__response__, 'state'),
|
236
|
+
vm_cluster_type=pulumi.get(__response__, 'vm_cluster_type'),
|
215
237
|
vm_clusters=pulumi.get(__response__, 'vm_clusters')))
|