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,10 @@ class GetBackupsResult:
|
|
28
28
|
"""
|
29
29
|
A collection of values returned by getBackups.
|
30
30
|
"""
|
31
|
-
def __init__(__self__, backups=None, compartment_id=None, database_id=None, filters=None, id=None, shape_family=None):
|
31
|
+
def __init__(__self__, backup_destination_type=None, backups=None, compartment_id=None, database_id=None, filters=None, id=None, shape_family=None, state=None, time_expiry_scheduled_greater_than_or_equal_to=None, time_expiry_scheduled_less_than=None, type=None, version=None):
|
32
|
+
if backup_destination_type and not isinstance(backup_destination_type, str):
|
33
|
+
raise TypeError("Expected argument 'backup_destination_type' to be a str")
|
34
|
+
pulumi.set(__self__, "backup_destination_type", backup_destination_type)
|
32
35
|
if backups and not isinstance(backups, list):
|
33
36
|
raise TypeError("Expected argument 'backups' to be a list")
|
34
37
|
pulumi.set(__self__, "backups", backups)
|
@@ -47,6 +50,29 @@ class GetBackupsResult:
|
|
47
50
|
if shape_family and not isinstance(shape_family, str):
|
48
51
|
raise TypeError("Expected argument 'shape_family' to be a str")
|
49
52
|
pulumi.set(__self__, "shape_family", shape_family)
|
53
|
+
if state and not isinstance(state, str):
|
54
|
+
raise TypeError("Expected argument 'state' to be a str")
|
55
|
+
pulumi.set(__self__, "state", state)
|
56
|
+
if time_expiry_scheduled_greater_than_or_equal_to and not isinstance(time_expiry_scheduled_greater_than_or_equal_to, str):
|
57
|
+
raise TypeError("Expected argument 'time_expiry_scheduled_greater_than_or_equal_to' to be a str")
|
58
|
+
pulumi.set(__self__, "time_expiry_scheduled_greater_than_or_equal_to", time_expiry_scheduled_greater_than_or_equal_to)
|
59
|
+
if time_expiry_scheduled_less_than and not isinstance(time_expiry_scheduled_less_than, str):
|
60
|
+
raise TypeError("Expected argument 'time_expiry_scheduled_less_than' to be a str")
|
61
|
+
pulumi.set(__self__, "time_expiry_scheduled_less_than", time_expiry_scheduled_less_than)
|
62
|
+
if type and not isinstance(type, str):
|
63
|
+
raise TypeError("Expected argument 'type' to be a str")
|
64
|
+
pulumi.set(__self__, "type", type)
|
65
|
+
if version and not isinstance(version, str):
|
66
|
+
raise TypeError("Expected argument 'version' to be a str")
|
67
|
+
pulumi.set(__self__, "version", version)
|
68
|
+
|
69
|
+
@property
|
70
|
+
@pulumi.getter(name="backupDestinationType")
|
71
|
+
def backup_destination_type(self) -> Optional[str]:
|
72
|
+
"""
|
73
|
+
Type of the backup destination.
|
74
|
+
"""
|
75
|
+
return pulumi.get(self, "backup_destination_type")
|
50
76
|
|
51
77
|
@property
|
52
78
|
@pulumi.getter
|
@@ -90,6 +116,40 @@ class GetBackupsResult:
|
|
90
116
|
def shape_family(self) -> Optional[str]:
|
91
117
|
return pulumi.get(self, "shape_family")
|
92
118
|
|
119
|
+
@property
|
120
|
+
@pulumi.getter
|
121
|
+
def state(self) -> Optional[str]:
|
122
|
+
"""
|
123
|
+
The current state of the backup.
|
124
|
+
"""
|
125
|
+
return pulumi.get(self, "state")
|
126
|
+
|
127
|
+
@property
|
128
|
+
@pulumi.getter(name="timeExpiryScheduledGreaterThanOrEqualTo")
|
129
|
+
def time_expiry_scheduled_greater_than_or_equal_to(self) -> Optional[str]:
|
130
|
+
return pulumi.get(self, "time_expiry_scheduled_greater_than_or_equal_to")
|
131
|
+
|
132
|
+
@property
|
133
|
+
@pulumi.getter(name="timeExpiryScheduledLessThan")
|
134
|
+
def time_expiry_scheduled_less_than(self) -> Optional[str]:
|
135
|
+
return pulumi.get(self, "time_expiry_scheduled_less_than")
|
136
|
+
|
137
|
+
@property
|
138
|
+
@pulumi.getter
|
139
|
+
def type(self) -> Optional[str]:
|
140
|
+
"""
|
141
|
+
The type of backup.
|
142
|
+
"""
|
143
|
+
return pulumi.get(self, "type")
|
144
|
+
|
145
|
+
@property
|
146
|
+
@pulumi.getter
|
147
|
+
def version(self) -> Optional[str]:
|
148
|
+
"""
|
149
|
+
Version of the backup's source database
|
150
|
+
"""
|
151
|
+
return pulumi.get(self, "version")
|
152
|
+
|
93
153
|
|
94
154
|
class AwaitableGetBackupsResult(GetBackupsResult):
|
95
155
|
# pylint: disable=using-constant-test
|
@@ -97,18 +157,30 @@ class AwaitableGetBackupsResult(GetBackupsResult):
|
|
97
157
|
if False:
|
98
158
|
yield self
|
99
159
|
return GetBackupsResult(
|
160
|
+
backup_destination_type=self.backup_destination_type,
|
100
161
|
backups=self.backups,
|
101
162
|
compartment_id=self.compartment_id,
|
102
163
|
database_id=self.database_id,
|
103
164
|
filters=self.filters,
|
104
165
|
id=self.id,
|
105
|
-
shape_family=self.shape_family
|
166
|
+
shape_family=self.shape_family,
|
167
|
+
state=self.state,
|
168
|
+
time_expiry_scheduled_greater_than_or_equal_to=self.time_expiry_scheduled_greater_than_or_equal_to,
|
169
|
+
time_expiry_scheduled_less_than=self.time_expiry_scheduled_less_than,
|
170
|
+
type=self.type,
|
171
|
+
version=self.version)
|
106
172
|
|
107
173
|
|
108
|
-
def get_backups(
|
174
|
+
def get_backups(backup_destination_type: Optional[str] = None,
|
175
|
+
compartment_id: Optional[str] = None,
|
109
176
|
database_id: Optional[str] = None,
|
110
177
|
filters: Optional[Sequence[Union['GetBackupsFilterArgs', 'GetBackupsFilterArgsDict']]] = None,
|
111
178
|
shape_family: Optional[str] = None,
|
179
|
+
state: Optional[str] = None,
|
180
|
+
time_expiry_scheduled_greater_than_or_equal_to: Optional[str] = None,
|
181
|
+
time_expiry_scheduled_less_than: Optional[str] = None,
|
182
|
+
type: Optional[str] = None,
|
183
|
+
version: Optional[str] = None,
|
112
184
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetBackupsResult:
|
113
185
|
"""
|
114
186
|
This data source provides the list of Backups in Oracle Cloud Infrastructure Database service.
|
@@ -121,35 +193,65 @@ def get_backups(compartment_id: Optional[str] = None,
|
|
121
193
|
import pulumi
|
122
194
|
import pulumi_oci as oci
|
123
195
|
|
124
|
-
test_backups = oci.Database.get_backups(
|
196
|
+
test_backups = oci.Database.get_backups(backup_destination_type=backup_backup_destination_type,
|
197
|
+
compartment_id=compartment_id,
|
125
198
|
database_id=test_database["id"],
|
126
|
-
shape_family=backup_shape_family
|
199
|
+
shape_family=backup_shape_family,
|
200
|
+
state=backup_state,
|
201
|
+
time_expiry_scheduled_greater_than_or_equal_to=backup_time_expiry_scheduled_greater_than_or_equal_to,
|
202
|
+
time_expiry_scheduled_less_than=backup_time_expiry_scheduled_less_than,
|
203
|
+
type=backup_type,
|
204
|
+
version=backup_version)
|
127
205
|
```
|
128
206
|
|
129
207
|
|
208
|
+
:param str backup_destination_type: A filter to return only resources that match the given backup destination type.
|
130
209
|
:param str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
131
210
|
:param str database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the database.
|
132
211
|
:param str shape_family: If provided, filters the results to the set of database versions which are supported for the given shape family.
|
212
|
+
:param str state: A filter to return only resources that match the given lifecycle state exactly.
|
213
|
+
:param str time_expiry_scheduled_greater_than_or_equal_to: The start of date-time range of expiration for the long term backups to be fetched.
|
214
|
+
:param str time_expiry_scheduled_less_than: The end of date-time range of expiration for the long term backups to be fetched.
|
215
|
+
:param str type: A filter to return only backups that matches with the given type of Backup.
|
216
|
+
:param str version: A filter to return only resources that match the given database version.
|
133
217
|
"""
|
134
218
|
__args__ = dict()
|
219
|
+
__args__['backupDestinationType'] = backup_destination_type
|
135
220
|
__args__['compartmentId'] = compartment_id
|
136
221
|
__args__['databaseId'] = database_id
|
137
222
|
__args__['filters'] = filters
|
138
223
|
__args__['shapeFamily'] = shape_family
|
224
|
+
__args__['state'] = state
|
225
|
+
__args__['timeExpiryScheduledGreaterThanOrEqualTo'] = time_expiry_scheduled_greater_than_or_equal_to
|
226
|
+
__args__['timeExpiryScheduledLessThan'] = time_expiry_scheduled_less_than
|
227
|
+
__args__['type'] = type
|
228
|
+
__args__['version'] = version
|
139
229
|
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
140
230
|
__ret__ = pulumi.runtime.invoke('oci:Database/getBackups:getBackups', __args__, opts=opts, typ=GetBackupsResult).value
|
141
231
|
|
142
232
|
return AwaitableGetBackupsResult(
|
233
|
+
backup_destination_type=pulumi.get(__ret__, 'backup_destination_type'),
|
143
234
|
backups=pulumi.get(__ret__, 'backups'),
|
144
235
|
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
145
236
|
database_id=pulumi.get(__ret__, 'database_id'),
|
146
237
|
filters=pulumi.get(__ret__, 'filters'),
|
147
238
|
id=pulumi.get(__ret__, 'id'),
|
148
|
-
shape_family=pulumi.get(__ret__, 'shape_family')
|
149
|
-
|
239
|
+
shape_family=pulumi.get(__ret__, 'shape_family'),
|
240
|
+
state=pulumi.get(__ret__, 'state'),
|
241
|
+
time_expiry_scheduled_greater_than_or_equal_to=pulumi.get(__ret__, 'time_expiry_scheduled_greater_than_or_equal_to'),
|
242
|
+
time_expiry_scheduled_less_than=pulumi.get(__ret__, 'time_expiry_scheduled_less_than'),
|
243
|
+
type=pulumi.get(__ret__, 'type'),
|
244
|
+
version=pulumi.get(__ret__, 'version'))
|
245
|
+
def get_backups_output(backup_destination_type: Optional[pulumi.Input[Optional[str]]] = None,
|
246
|
+
compartment_id: Optional[pulumi.Input[Optional[str]]] = None,
|
150
247
|
database_id: Optional[pulumi.Input[Optional[str]]] = None,
|
151
248
|
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetBackupsFilterArgs', 'GetBackupsFilterArgsDict']]]]] = None,
|
152
249
|
shape_family: Optional[pulumi.Input[Optional[str]]] = None,
|
250
|
+
state: Optional[pulumi.Input[Optional[str]]] = None,
|
251
|
+
time_expiry_scheduled_greater_than_or_equal_to: Optional[pulumi.Input[Optional[str]]] = None,
|
252
|
+
time_expiry_scheduled_less_than: Optional[pulumi.Input[Optional[str]]] = None,
|
253
|
+
type: Optional[pulumi.Input[Optional[str]]] = None,
|
254
|
+
version: Optional[pulumi.Input[Optional[str]]] = None,
|
153
255
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetBackupsResult]:
|
154
256
|
"""
|
155
257
|
This data source provides the list of Backups in Oracle Cloud Infrastructure Database service.
|
@@ -162,27 +264,51 @@ def get_backups_output(compartment_id: Optional[pulumi.Input[Optional[str]]] = N
|
|
162
264
|
import pulumi
|
163
265
|
import pulumi_oci as oci
|
164
266
|
|
165
|
-
test_backups = oci.Database.get_backups(
|
267
|
+
test_backups = oci.Database.get_backups(backup_destination_type=backup_backup_destination_type,
|
268
|
+
compartment_id=compartment_id,
|
166
269
|
database_id=test_database["id"],
|
167
|
-
shape_family=backup_shape_family
|
270
|
+
shape_family=backup_shape_family,
|
271
|
+
state=backup_state,
|
272
|
+
time_expiry_scheduled_greater_than_or_equal_to=backup_time_expiry_scheduled_greater_than_or_equal_to,
|
273
|
+
time_expiry_scheduled_less_than=backup_time_expiry_scheduled_less_than,
|
274
|
+
type=backup_type,
|
275
|
+
version=backup_version)
|
168
276
|
```
|
169
277
|
|
170
278
|
|
279
|
+
:param str backup_destination_type: A filter to return only resources that match the given backup destination type.
|
171
280
|
:param str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
172
281
|
:param str database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the database.
|
173
282
|
:param str shape_family: If provided, filters the results to the set of database versions which are supported for the given shape family.
|
283
|
+
:param str state: A filter to return only resources that match the given lifecycle state exactly.
|
284
|
+
:param str time_expiry_scheduled_greater_than_or_equal_to: The start of date-time range of expiration for the long term backups to be fetched.
|
285
|
+
:param str time_expiry_scheduled_less_than: The end of date-time range of expiration for the long term backups to be fetched.
|
286
|
+
:param str type: A filter to return only backups that matches with the given type of Backup.
|
287
|
+
:param str version: A filter to return only resources that match the given database version.
|
174
288
|
"""
|
175
289
|
__args__ = dict()
|
290
|
+
__args__['backupDestinationType'] = backup_destination_type
|
176
291
|
__args__['compartmentId'] = compartment_id
|
177
292
|
__args__['databaseId'] = database_id
|
178
293
|
__args__['filters'] = filters
|
179
294
|
__args__['shapeFamily'] = shape_family
|
295
|
+
__args__['state'] = state
|
296
|
+
__args__['timeExpiryScheduledGreaterThanOrEqualTo'] = time_expiry_scheduled_greater_than_or_equal_to
|
297
|
+
__args__['timeExpiryScheduledLessThan'] = time_expiry_scheduled_less_than
|
298
|
+
__args__['type'] = type
|
299
|
+
__args__['version'] = version
|
180
300
|
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
181
301
|
__ret__ = pulumi.runtime.invoke_output('oci:Database/getBackups:getBackups', __args__, opts=opts, typ=GetBackupsResult)
|
182
302
|
return __ret__.apply(lambda __response__: GetBackupsResult(
|
303
|
+
backup_destination_type=pulumi.get(__response__, 'backup_destination_type'),
|
183
304
|
backups=pulumi.get(__response__, 'backups'),
|
184
305
|
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
185
306
|
database_id=pulumi.get(__response__, 'database_id'),
|
186
307
|
filters=pulumi.get(__response__, 'filters'),
|
187
308
|
id=pulumi.get(__response__, 'id'),
|
188
|
-
shape_family=pulumi.get(__response__, 'shape_family')
|
309
|
+
shape_family=pulumi.get(__response__, 'shape_family'),
|
310
|
+
state=pulumi.get(__response__, 'state'),
|
311
|
+
time_expiry_scheduled_greater_than_or_equal_to=pulumi.get(__response__, 'time_expiry_scheduled_greater_than_or_equal_to'),
|
312
|
+
time_expiry_scheduled_less_than=pulumi.get(__response__, 'time_expiry_scheduled_less_than'),
|
313
|
+
type=pulumi.get(__response__, 'type'),
|
314
|
+
version=pulumi.get(__response__, 'version')))
|
@@ -27,7 +27,7 @@ class GetCloudExadataInfrastructureResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getCloudExadataInfrastructure.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, activated_storage_count=None, additional_storage_count=None, availability_domain=None, available_storage_size_in_gbs=None, cloud_exadata_infrastructure_id=None, cluster_placement_group_id=None, compartment_id=None, compute_count=None, cpu_count=None, customer_contacts=None, data_storage_size_in_tbs=None, db_node_storage_size_in_gbs=None, db_server_version=None, defined_file_system_configurations=None, defined_tags=None, display_name=None, freeform_tags=None, id=None, is_scheduling_policy_associated=None, last_maintenance_run_id=None, lifecycle_details=None, maintenance_windows=None, max_cpu_count=None, max_data_storage_in_tbs=None, max_db_node_storage_in_gbs=None, max_memory_in_gbs=None, memory_size_in_gbs=None, monthly_db_server_version=None, monthly_storage_server_version=None, next_maintenance_run_id=None, shape=None, state=None, storage_count=None, storage_server_version=None, subscription_id=None, system_tags=None, time_created=None, total_storage_size_in_gbs=None):
|
30
|
+
def __init__(__self__, activated_storage_count=None, additional_storage_count=None, availability_domain=None, available_storage_size_in_gbs=None, cloud_exadata_infrastructure_id=None, cluster_placement_group_id=None, compartment_id=None, compute_count=None, compute_model=None, cpu_count=None, customer_contacts=None, data_storage_size_in_tbs=None, database_server_type=None, db_node_storage_size_in_gbs=None, db_server_version=None, defined_file_system_configurations=None, defined_tags=None, display_name=None, freeform_tags=None, id=None, is_scheduling_policy_associated=None, last_maintenance_run_id=None, lifecycle_details=None, maintenance_windows=None, max_cpu_count=None, max_data_storage_in_tbs=None, max_db_node_storage_in_gbs=None, max_memory_in_gbs=None, memory_size_in_gbs=None, monthly_db_server_version=None, monthly_storage_server_version=None, next_maintenance_run_id=None, shape=None, state=None, storage_count=None, storage_server_type=None, storage_server_version=None, subscription_id=None, system_tags=None, time_created=None, total_storage_size_in_gbs=None):
|
31
31
|
if activated_storage_count and not isinstance(activated_storage_count, int):
|
32
32
|
raise TypeError("Expected argument 'activated_storage_count' to be a int")
|
33
33
|
pulumi.set(__self__, "activated_storage_count", activated_storage_count)
|
@@ -52,6 +52,9 @@ class GetCloudExadataInfrastructureResult:
|
|
52
52
|
if compute_count and not isinstance(compute_count, int):
|
53
53
|
raise TypeError("Expected argument 'compute_count' to be a int")
|
54
54
|
pulumi.set(__self__, "compute_count", compute_count)
|
55
|
+
if compute_model and not isinstance(compute_model, str):
|
56
|
+
raise TypeError("Expected argument 'compute_model' to be a str")
|
57
|
+
pulumi.set(__self__, "compute_model", compute_model)
|
55
58
|
if cpu_count and not isinstance(cpu_count, int):
|
56
59
|
raise TypeError("Expected argument 'cpu_count' to be a int")
|
57
60
|
pulumi.set(__self__, "cpu_count", cpu_count)
|
@@ -61,6 +64,9 @@ class GetCloudExadataInfrastructureResult:
|
|
61
64
|
if data_storage_size_in_tbs and not isinstance(data_storage_size_in_tbs, float):
|
62
65
|
raise TypeError("Expected argument 'data_storage_size_in_tbs' to be a float")
|
63
66
|
pulumi.set(__self__, "data_storage_size_in_tbs", data_storage_size_in_tbs)
|
67
|
+
if database_server_type and not isinstance(database_server_type, str):
|
68
|
+
raise TypeError("Expected argument 'database_server_type' to be a str")
|
69
|
+
pulumi.set(__self__, "database_server_type", database_server_type)
|
64
70
|
if db_node_storage_size_in_gbs and not isinstance(db_node_storage_size_in_gbs, int):
|
65
71
|
raise TypeError("Expected argument 'db_node_storage_size_in_gbs' to be a int")
|
66
72
|
pulumi.set(__self__, "db_node_storage_size_in_gbs", db_node_storage_size_in_gbs)
|
@@ -127,6 +133,9 @@ class GetCloudExadataInfrastructureResult:
|
|
127
133
|
if storage_count and not isinstance(storage_count, int):
|
128
134
|
raise TypeError("Expected argument 'storage_count' to be a int")
|
129
135
|
pulumi.set(__self__, "storage_count", storage_count)
|
136
|
+
if storage_server_type and not isinstance(storage_server_type, str):
|
137
|
+
raise TypeError("Expected argument 'storage_server_type' to be a str")
|
138
|
+
pulumi.set(__self__, "storage_server_type", storage_server_type)
|
130
139
|
if storage_server_version and not isinstance(storage_server_version, str):
|
131
140
|
raise TypeError("Expected argument 'storage_server_version' to be a str")
|
132
141
|
pulumi.set(__self__, "storage_server_version", storage_server_version)
|
@@ -204,6 +213,14 @@ class GetCloudExadataInfrastructureResult:
|
|
204
213
|
"""
|
205
214
|
return pulumi.get(self, "compute_count")
|
206
215
|
|
216
|
+
@property
|
217
|
+
@pulumi.getter(name="computeModel")
|
218
|
+
def compute_model(self) -> str:
|
219
|
+
"""
|
220
|
+
The compute model of the Exadata infrastructure.
|
221
|
+
"""
|
222
|
+
return pulumi.get(self, "compute_model")
|
223
|
+
|
207
224
|
@property
|
208
225
|
@pulumi.getter(name="cpuCount")
|
209
226
|
def cpu_count(self) -> int:
|
@@ -228,6 +245,14 @@ class GetCloudExadataInfrastructureResult:
|
|
228
245
|
"""
|
229
246
|
return pulumi.get(self, "data_storage_size_in_tbs")
|
230
247
|
|
248
|
+
@property
|
249
|
+
@pulumi.getter(name="databaseServerType")
|
250
|
+
def database_server_type(self) -> str:
|
251
|
+
"""
|
252
|
+
The database server type of the Exadata infrastructure.
|
253
|
+
"""
|
254
|
+
return pulumi.get(self, "database_server_type")
|
255
|
+
|
231
256
|
@property
|
232
257
|
@pulumi.getter(name="dbNodeStorageSizeInGbs")
|
233
258
|
def db_node_storage_size_in_gbs(self) -> int:
|
@@ -404,6 +429,14 @@ class GetCloudExadataInfrastructureResult:
|
|
404
429
|
"""
|
405
430
|
return pulumi.get(self, "storage_count")
|
406
431
|
|
432
|
+
@property
|
433
|
+
@pulumi.getter(name="storageServerType")
|
434
|
+
def storage_server_type(self) -> str:
|
435
|
+
"""
|
436
|
+
The storage server type of the Exadata infrastructure.
|
437
|
+
"""
|
438
|
+
return pulumi.get(self, "storage_server_type")
|
439
|
+
|
407
440
|
@property
|
408
441
|
@pulumi.getter(name="storageServerVersion")
|
409
442
|
def storage_server_version(self) -> str:
|
@@ -459,9 +492,11 @@ class AwaitableGetCloudExadataInfrastructureResult(GetCloudExadataInfrastructure
|
|
459
492
|
cluster_placement_group_id=self.cluster_placement_group_id,
|
460
493
|
compartment_id=self.compartment_id,
|
461
494
|
compute_count=self.compute_count,
|
495
|
+
compute_model=self.compute_model,
|
462
496
|
cpu_count=self.cpu_count,
|
463
497
|
customer_contacts=self.customer_contacts,
|
464
498
|
data_storage_size_in_tbs=self.data_storage_size_in_tbs,
|
499
|
+
database_server_type=self.database_server_type,
|
465
500
|
db_node_storage_size_in_gbs=self.db_node_storage_size_in_gbs,
|
466
501
|
db_server_version=self.db_server_version,
|
467
502
|
defined_file_system_configurations=self.defined_file_system_configurations,
|
@@ -484,6 +519,7 @@ class AwaitableGetCloudExadataInfrastructureResult(GetCloudExadataInfrastructure
|
|
484
519
|
shape=self.shape,
|
485
520
|
state=self.state,
|
486
521
|
storage_count=self.storage_count,
|
522
|
+
storage_server_type=self.storage_server_type,
|
487
523
|
storage_server_version=self.storage_server_version,
|
488
524
|
subscription_id=self.subscription_id,
|
489
525
|
system_tags=self.system_tags,
|
@@ -524,9 +560,11 @@ def get_cloud_exadata_infrastructure(cloud_exadata_infrastructure_id: Optional[s
|
|
524
560
|
cluster_placement_group_id=pulumi.get(__ret__, 'cluster_placement_group_id'),
|
525
561
|
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
526
562
|
compute_count=pulumi.get(__ret__, 'compute_count'),
|
563
|
+
compute_model=pulumi.get(__ret__, 'compute_model'),
|
527
564
|
cpu_count=pulumi.get(__ret__, 'cpu_count'),
|
528
565
|
customer_contacts=pulumi.get(__ret__, 'customer_contacts'),
|
529
566
|
data_storage_size_in_tbs=pulumi.get(__ret__, 'data_storage_size_in_tbs'),
|
567
|
+
database_server_type=pulumi.get(__ret__, 'database_server_type'),
|
530
568
|
db_node_storage_size_in_gbs=pulumi.get(__ret__, 'db_node_storage_size_in_gbs'),
|
531
569
|
db_server_version=pulumi.get(__ret__, 'db_server_version'),
|
532
570
|
defined_file_system_configurations=pulumi.get(__ret__, 'defined_file_system_configurations'),
|
@@ -549,6 +587,7 @@ def get_cloud_exadata_infrastructure(cloud_exadata_infrastructure_id: Optional[s
|
|
549
587
|
shape=pulumi.get(__ret__, 'shape'),
|
550
588
|
state=pulumi.get(__ret__, 'state'),
|
551
589
|
storage_count=pulumi.get(__ret__, 'storage_count'),
|
590
|
+
storage_server_type=pulumi.get(__ret__, 'storage_server_type'),
|
552
591
|
storage_server_version=pulumi.get(__ret__, 'storage_server_version'),
|
553
592
|
subscription_id=pulumi.get(__ret__, 'subscription_id'),
|
554
593
|
system_tags=pulumi.get(__ret__, 'system_tags'),
|
@@ -586,9 +625,11 @@ def get_cloud_exadata_infrastructure_output(cloud_exadata_infrastructure_id: Opt
|
|
586
625
|
cluster_placement_group_id=pulumi.get(__response__, 'cluster_placement_group_id'),
|
587
626
|
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
588
627
|
compute_count=pulumi.get(__response__, 'compute_count'),
|
628
|
+
compute_model=pulumi.get(__response__, 'compute_model'),
|
589
629
|
cpu_count=pulumi.get(__response__, 'cpu_count'),
|
590
630
|
customer_contacts=pulumi.get(__response__, 'customer_contacts'),
|
591
631
|
data_storage_size_in_tbs=pulumi.get(__response__, 'data_storage_size_in_tbs'),
|
632
|
+
database_server_type=pulumi.get(__response__, 'database_server_type'),
|
592
633
|
db_node_storage_size_in_gbs=pulumi.get(__response__, 'db_node_storage_size_in_gbs'),
|
593
634
|
db_server_version=pulumi.get(__response__, 'db_server_version'),
|
594
635
|
defined_file_system_configurations=pulumi.get(__response__, 'defined_file_system_configurations'),
|
@@ -611,6 +652,7 @@ def get_cloud_exadata_infrastructure_output(cloud_exadata_infrastructure_id: Opt
|
|
611
652
|
shape=pulumi.get(__response__, 'shape'),
|
612
653
|
state=pulumi.get(__response__, 'state'),
|
613
654
|
storage_count=pulumi.get(__response__, 'storage_count'),
|
655
|
+
storage_server_type=pulumi.get(__response__, 'storage_server_type'),
|
614
656
|
storage_server_version=pulumi.get(__response__, 'storage_server_version'),
|
615
657
|
subscription_id=pulumi.get(__response__, 'subscription_id'),
|
616
658
|
system_tags=pulumi.get(__response__, 'system_tags'),
|
@@ -27,7 +27,7 @@ class GetCloudVmClusterResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getCloudVmCluster.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, availability_domain=None, backup_network_nsg_ids=None, backup_subnet_id=None, cloud_automation_update_details=None, cloud_exadata_infrastructure_id=None, cloud_vm_cluster_id=None, cluster_name=None, compartment_id=None, cpu_core_count=None, create_async=None, data_collection_options=None, data_storage_percentage=None, data_storage_size_in_tbs=None, db_node_storage_size_in_gbs=None, db_servers=None, defined_tags=None, disk_redundancy=None, display_name=None, domain=None, file_system_configuration_details=None, freeform_tags=None, gi_version=None, hostname=None, id=None, iorm_config_caches=None, is_local_backup_enabled=None, is_sparse_diskgroup_enabled=None, last_update_history_entry_id=None, license_model=None, lifecycle_details=None, listener_port=None, memory_size_in_gbs=None, node_count=None, nsg_ids=None, ocpu_count=None, private_zone_id=None, scan_dns_name=None, scan_dns_record_id=None, scan_ip_ids=None, scan_listener_port_tcp=None, scan_listener_port_tcp_ssl=None, security_attributes=None, shape=None, ssh_public_keys=None, state=None, storage_size_in_gbs=None, subnet_id=None, subscription_id=None, system_tags=None, system_version=None, time_created=None, time_zone=None, vip_ids=None, zone_id=None):
|
30
|
+
def __init__(__self__, availability_domain=None, backup_network_nsg_ids=None, backup_subnet_id=None, cloud_automation_update_details=None, cloud_exadata_infrastructure_id=None, cloud_vm_cluster_id=None, cluster_name=None, compartment_id=None, compute_model=None, cpu_core_count=None, create_async=None, data_collection_options=None, data_storage_percentage=None, data_storage_size_in_tbs=None, db_node_storage_size_in_gbs=None, db_servers=None, defined_tags=None, disk_redundancy=None, display_name=None, domain=None, file_system_configuration_details=None, freeform_tags=None, gi_version=None, hostname=None, id=None, iorm_config_caches=None, is_local_backup_enabled=None, is_sparse_diskgroup_enabled=None, last_update_history_entry_id=None, license_model=None, lifecycle_details=None, listener_port=None, memory_size_in_gbs=None, node_count=None, nsg_ids=None, ocpu_count=None, private_zone_id=None, scan_dns_name=None, scan_dns_record_id=None, scan_ip_ids=None, scan_ipv6ids=None, scan_listener_port_tcp=None, scan_listener_port_tcp_ssl=None, security_attributes=None, shape=None, ssh_public_keys=None, state=None, storage_size_in_gbs=None, subnet_id=None, subscription_id=None, system_tags=None, system_version=None, time_created=None, time_zone=None, vip_ids=None, vipv6ids=None, vm_cluster_type=None, zone_id=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)
|
@@ -52,6 +52,9 @@ class GetCloudVmClusterResult:
|
|
52
52
|
if compartment_id and not isinstance(compartment_id, str):
|
53
53
|
raise TypeError("Expected argument 'compartment_id' to be a str")
|
54
54
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
55
|
+
if compute_model and not isinstance(compute_model, str):
|
56
|
+
raise TypeError("Expected argument 'compute_model' to be a str")
|
57
|
+
pulumi.set(__self__, "compute_model", compute_model)
|
55
58
|
if cpu_core_count and not isinstance(cpu_core_count, int):
|
56
59
|
raise TypeError("Expected argument 'cpu_core_count' to be a int")
|
57
60
|
pulumi.set(__self__, "cpu_core_count", cpu_core_count)
|
@@ -145,6 +148,9 @@ class GetCloudVmClusterResult:
|
|
145
148
|
if scan_ip_ids and not isinstance(scan_ip_ids, list):
|
146
149
|
raise TypeError("Expected argument 'scan_ip_ids' to be a list")
|
147
150
|
pulumi.set(__self__, "scan_ip_ids", scan_ip_ids)
|
151
|
+
if scan_ipv6ids and not isinstance(scan_ipv6ids, list):
|
152
|
+
raise TypeError("Expected argument 'scan_ipv6ids' to be a list")
|
153
|
+
pulumi.set(__self__, "scan_ipv6ids", scan_ipv6ids)
|
148
154
|
if scan_listener_port_tcp and not isinstance(scan_listener_port_tcp, int):
|
149
155
|
raise TypeError("Expected argument 'scan_listener_port_tcp' to be a int")
|
150
156
|
pulumi.set(__self__, "scan_listener_port_tcp", scan_listener_port_tcp)
|
@@ -187,6 +193,12 @@ class GetCloudVmClusterResult:
|
|
187
193
|
if vip_ids and not isinstance(vip_ids, list):
|
188
194
|
raise TypeError("Expected argument 'vip_ids' to be a list")
|
189
195
|
pulumi.set(__self__, "vip_ids", vip_ids)
|
196
|
+
if vipv6ids and not isinstance(vipv6ids, list):
|
197
|
+
raise TypeError("Expected argument 'vipv6ids' to be a list")
|
198
|
+
pulumi.set(__self__, "vipv6ids", vipv6ids)
|
199
|
+
if vm_cluster_type and not isinstance(vm_cluster_type, str):
|
200
|
+
raise TypeError("Expected argument 'vm_cluster_type' to be a str")
|
201
|
+
pulumi.set(__self__, "vm_cluster_type", vm_cluster_type)
|
190
202
|
if zone_id and not isinstance(zone_id, str):
|
191
203
|
raise TypeError("Expected argument 'zone_id' to be a str")
|
192
204
|
pulumi.set(__self__, "zone_id", zone_id)
|
@@ -252,6 +264,14 @@ class GetCloudVmClusterResult:
|
|
252
264
|
"""
|
253
265
|
return pulumi.get(self, "compartment_id")
|
254
266
|
|
267
|
+
@property
|
268
|
+
@pulumi.getter(name="computeModel")
|
269
|
+
def compute_model(self) -> str:
|
270
|
+
"""
|
271
|
+
The compute model of the cloud VM cluster.
|
272
|
+
"""
|
273
|
+
return pulumi.get(self, "compute_model")
|
274
|
+
|
255
275
|
@property
|
256
276
|
@pulumi.getter(name="cpuCoreCount")
|
257
277
|
def cpu_core_count(self) -> int:
|
@@ -491,10 +511,18 @@ class GetCloudVmClusterResult:
|
|
491
511
|
@pulumi.getter(name="scanIpIds")
|
492
512
|
def scan_ip_ids(self) -> Sequence[str]:
|
493
513
|
"""
|
494
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Single Client Access Name (SCAN)
|
514
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Single Client Access Name (SCAN) IPv4 addresses associated with the cloud VM cluster. SCAN IPv4 addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
|
495
515
|
"""
|
496
516
|
return pulumi.get(self, "scan_ip_ids")
|
497
517
|
|
518
|
+
@property
|
519
|
+
@pulumi.getter(name="scanIpv6ids")
|
520
|
+
def scan_ipv6ids(self) -> Sequence[str]:
|
521
|
+
"""
|
522
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Single Client Access Name (SCAN) IPv6 addresses associated with the cloud VM cluster. SCAN IPv6 addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
|
523
|
+
"""
|
524
|
+
return pulumi.get(self, "scan_ipv6ids")
|
525
|
+
|
498
526
|
@property
|
499
527
|
@pulumi.getter(name="scanListenerPortTcp")
|
500
528
|
def scan_listener_port_tcp(self) -> int:
|
@@ -603,10 +631,26 @@ class GetCloudVmClusterResult:
|
|
603
631
|
@pulumi.getter(name="vipIds")
|
604
632
|
def vip_ids(self) -> Sequence[str]:
|
605
633
|
"""
|
606
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the virtual IP (VIP) addresses associated with the cloud VM cluster. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
|
634
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the virtual IP (VIP) IPv4 addresses associated with the cloud VM cluster. The Cluster Ready Services (CRS) creates and maintains one VIP IPv4 address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
|
607
635
|
"""
|
608
636
|
return pulumi.get(self, "vip_ids")
|
609
637
|
|
638
|
+
@property
|
639
|
+
@pulumi.getter
|
640
|
+
def vipv6ids(self) -> Sequence[str]:
|
641
|
+
"""
|
642
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the virtual IP (VIP) IPv6 addresses associated with the cloud VM cluster. The Cluster Ready Services (CRS) creates and maintains one VIP IPv6 address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
|
643
|
+
"""
|
644
|
+
return pulumi.get(self, "vipv6ids")
|
645
|
+
|
646
|
+
@property
|
647
|
+
@pulumi.getter(name="vmClusterType")
|
648
|
+
def vm_cluster_type(self) -> str:
|
649
|
+
"""
|
650
|
+
The vmcluster type for the VM cluster/Cloud VM cluster.
|
651
|
+
"""
|
652
|
+
return pulumi.get(self, "vm_cluster_type")
|
653
|
+
|
610
654
|
@property
|
611
655
|
@pulumi.getter(name="zoneId")
|
612
656
|
def zone_id(self) -> str:
|
@@ -630,6 +674,7 @@ class AwaitableGetCloudVmClusterResult(GetCloudVmClusterResult):
|
|
630
674
|
cloud_vm_cluster_id=self.cloud_vm_cluster_id,
|
631
675
|
cluster_name=self.cluster_name,
|
632
676
|
compartment_id=self.compartment_id,
|
677
|
+
compute_model=self.compute_model,
|
633
678
|
cpu_core_count=self.cpu_core_count,
|
634
679
|
create_async=self.create_async,
|
635
680
|
data_collection_options=self.data_collection_options,
|
@@ -661,6 +706,7 @@ class AwaitableGetCloudVmClusterResult(GetCloudVmClusterResult):
|
|
661
706
|
scan_dns_name=self.scan_dns_name,
|
662
707
|
scan_dns_record_id=self.scan_dns_record_id,
|
663
708
|
scan_ip_ids=self.scan_ip_ids,
|
709
|
+
scan_ipv6ids=self.scan_ipv6ids,
|
664
710
|
scan_listener_port_tcp=self.scan_listener_port_tcp,
|
665
711
|
scan_listener_port_tcp_ssl=self.scan_listener_port_tcp_ssl,
|
666
712
|
security_attributes=self.security_attributes,
|
@@ -675,6 +721,8 @@ class AwaitableGetCloudVmClusterResult(GetCloudVmClusterResult):
|
|
675
721
|
time_created=self.time_created,
|
676
722
|
time_zone=self.time_zone,
|
677
723
|
vip_ids=self.vip_ids,
|
724
|
+
vipv6ids=self.vipv6ids,
|
725
|
+
vm_cluster_type=self.vm_cluster_type,
|
678
726
|
zone_id=self.zone_id)
|
679
727
|
|
680
728
|
|
@@ -711,6 +759,7 @@ def get_cloud_vm_cluster(cloud_vm_cluster_id: Optional[str] = None,
|
|
711
759
|
cloud_vm_cluster_id=pulumi.get(__ret__, 'cloud_vm_cluster_id'),
|
712
760
|
cluster_name=pulumi.get(__ret__, 'cluster_name'),
|
713
761
|
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
762
|
+
compute_model=pulumi.get(__ret__, 'compute_model'),
|
714
763
|
cpu_core_count=pulumi.get(__ret__, 'cpu_core_count'),
|
715
764
|
create_async=pulumi.get(__ret__, 'create_async'),
|
716
765
|
data_collection_options=pulumi.get(__ret__, 'data_collection_options'),
|
@@ -742,6 +791,7 @@ def get_cloud_vm_cluster(cloud_vm_cluster_id: Optional[str] = None,
|
|
742
791
|
scan_dns_name=pulumi.get(__ret__, 'scan_dns_name'),
|
743
792
|
scan_dns_record_id=pulumi.get(__ret__, 'scan_dns_record_id'),
|
744
793
|
scan_ip_ids=pulumi.get(__ret__, 'scan_ip_ids'),
|
794
|
+
scan_ipv6ids=pulumi.get(__ret__, 'scan_ipv6ids'),
|
745
795
|
scan_listener_port_tcp=pulumi.get(__ret__, 'scan_listener_port_tcp'),
|
746
796
|
scan_listener_port_tcp_ssl=pulumi.get(__ret__, 'scan_listener_port_tcp_ssl'),
|
747
797
|
security_attributes=pulumi.get(__ret__, 'security_attributes'),
|
@@ -756,6 +806,8 @@ def get_cloud_vm_cluster(cloud_vm_cluster_id: Optional[str] = None,
|
|
756
806
|
time_created=pulumi.get(__ret__, 'time_created'),
|
757
807
|
time_zone=pulumi.get(__ret__, 'time_zone'),
|
758
808
|
vip_ids=pulumi.get(__ret__, 'vip_ids'),
|
809
|
+
vipv6ids=pulumi.get(__ret__, 'vipv6ids'),
|
810
|
+
vm_cluster_type=pulumi.get(__ret__, 'vm_cluster_type'),
|
759
811
|
zone_id=pulumi.get(__ret__, 'zone_id'))
|
760
812
|
def get_cloud_vm_cluster_output(cloud_vm_cluster_id: Optional[pulumi.Input[str]] = None,
|
761
813
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetCloudVmClusterResult]:
|
@@ -789,6 +841,7 @@ def get_cloud_vm_cluster_output(cloud_vm_cluster_id: Optional[pulumi.Input[str]]
|
|
789
841
|
cloud_vm_cluster_id=pulumi.get(__response__, 'cloud_vm_cluster_id'),
|
790
842
|
cluster_name=pulumi.get(__response__, 'cluster_name'),
|
791
843
|
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
844
|
+
compute_model=pulumi.get(__response__, 'compute_model'),
|
792
845
|
cpu_core_count=pulumi.get(__response__, 'cpu_core_count'),
|
793
846
|
create_async=pulumi.get(__response__, 'create_async'),
|
794
847
|
data_collection_options=pulumi.get(__response__, 'data_collection_options'),
|
@@ -820,6 +873,7 @@ def get_cloud_vm_cluster_output(cloud_vm_cluster_id: Optional[pulumi.Input[str]]
|
|
820
873
|
scan_dns_name=pulumi.get(__response__, 'scan_dns_name'),
|
821
874
|
scan_dns_record_id=pulumi.get(__response__, 'scan_dns_record_id'),
|
822
875
|
scan_ip_ids=pulumi.get(__response__, 'scan_ip_ids'),
|
876
|
+
scan_ipv6ids=pulumi.get(__response__, 'scan_ipv6ids'),
|
823
877
|
scan_listener_port_tcp=pulumi.get(__response__, 'scan_listener_port_tcp'),
|
824
878
|
scan_listener_port_tcp_ssl=pulumi.get(__response__, 'scan_listener_port_tcp_ssl'),
|
825
879
|
security_attributes=pulumi.get(__response__, 'security_attributes'),
|
@@ -834,4 +888,6 @@ def get_cloud_vm_cluster_output(cloud_vm_cluster_id: Optional[pulumi.Input[str]]
|
|
834
888
|
time_created=pulumi.get(__response__, 'time_created'),
|
835
889
|
time_zone=pulumi.get(__response__, 'time_zone'),
|
836
890
|
vip_ids=pulumi.get(__response__, 'vip_ids'),
|
891
|
+
vipv6ids=pulumi.get(__response__, 'vipv6ids'),
|
892
|
+
vm_cluster_type=pulumi.get(__response__, 'vm_cluster_type'),
|
837
893
|
zone_id=pulumi.get(__response__, 'zone_id')))
|