pulumi-oci 2.1.0a1719905039__py3-none-any.whl → 2.1.0a1720054142__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 +43 -0
- pulumi_oci/database/__init__.py +11 -0
- pulumi_oci/database/_inputs.py +607 -0
- pulumi_oci/database/db_node.py +28 -0
- pulumi_oci/database/exadb_vm_cluster.py +1761 -0
- pulumi_oci/database/exascale_db_storage_vault.py +787 -0
- pulumi_oci/database/get_backups.py +22 -5
- pulumi_oci/database/get_db_node.py +14 -1
- pulumi_oci/database/get_db_nodes.py +2 -2
- pulumi_oci/database/get_exadb_vm_cluster.py +614 -0
- pulumi_oci/database/get_exadb_vm_cluster_update.py +226 -0
- pulumi_oci/database/get_exadb_vm_cluster_update_history_entries.py +153 -0
- pulumi_oci/database/get_exadb_vm_cluster_update_history_entry.py +226 -0
- pulumi_oci/database/get_exadb_vm_cluster_updates.py +173 -0
- pulumi_oci/database/get_exadb_vm_clusters.py +196 -0
- pulumi_oci/database/get_exascale_db_storage_vault.py +301 -0
- pulumi_oci/database/get_exascale_db_storage_vaults.py +176 -0
- pulumi_oci/database/get_gi_version_minor_versions.py +221 -0
- pulumi_oci/database/get_gi_versions.py +22 -5
- pulumi_oci/database/outputs.py +2050 -0
- pulumi_oci/database/pluggable_database.py +7 -7
- pulumi_oci/databasemigration/__init__.py +6 -0
- pulumi_oci/databasemigration/_inputs.py +1577 -0
- pulumi_oci/databasemigration/connection.py +2019 -0
- pulumi_oci/databasemigration/get_connection.py +616 -0
- pulumi_oci/databasemigration/get_connections.py +225 -0
- pulumi_oci/databasemigration/get_job_advisor_report.py +2 -10
- pulumi_oci/databasemigration/get_migration.py +427 -0
- pulumi_oci/databasemigration/get_migration_object_types.py +24 -13
- pulumi_oci/databasemigration/get_migrations.py +407 -0
- pulumi_oci/databasemigration/job.py +16 -20
- pulumi_oci/databasemigration/migration.py +1471 -0
- pulumi_oci/databasemigration/outputs.py +4301 -73
- pulumi_oci/filestorage/_inputs.py +10 -18
- pulumi_oci/filestorage/export.py +28 -7
- pulumi_oci/filestorage/file_system.py +159 -35
- pulumi_oci/filestorage/outputs.py +55 -34
- pulumi_oci/generativeai/_inputs.py +50 -2
- pulumi_oci/generativeai/dedicated_ai_cluster.py +30 -2
- pulumi_oci/generativeai/endpoint.py +2 -2
- pulumi_oci/generativeai/get_dedicated_ai_cluster.py +2 -47
- pulumi_oci/generativeai/get_dedicated_ai_clusters.py +2 -14
- pulumi_oci/generativeai/get_endpoint.py +2 -26
- pulumi_oci/generativeai/get_endpoints.py +2 -8
- pulumi_oci/generativeai/get_model.py +2 -38
- pulumi_oci/generativeai/get_models.py +2 -8
- pulumi_oci/generativeai/model.py +2 -2
- pulumi_oci/generativeai/outputs.py +86 -310
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/resourcescheduler/__init__.py +12 -0
- pulumi_oci/resourcescheduler/_inputs.py +224 -0
- pulumi_oci/resourcescheduler/get_schedule.py +340 -0
- pulumi_oci/resourcescheduler/get_schedules.py +193 -0
- pulumi_oci/resourcescheduler/outputs.py +687 -0
- pulumi_oci/resourcescheduler/schedule.py +977 -0
- {pulumi_oci-2.1.0a1719905039.dist-info → pulumi_oci-2.1.0a1720054142.dist-info}/METADATA +1 -1
- {pulumi_oci-2.1.0a1719905039.dist-info → pulumi_oci-2.1.0a1720054142.dist-info}/RECORD +59 -36
- {pulumi_oci-2.1.0a1719905039.dist-info → pulumi_oci-2.1.0a1720054142.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.1.0a1719905039.dist-info → pulumi_oci-2.1.0a1720054142.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,1761 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import copy
|
6
|
+
import warnings
|
7
|
+
import pulumi
|
8
|
+
import pulumi.runtime
|
9
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
10
|
+
from .. import _utilities
|
11
|
+
from . import outputs
|
12
|
+
from ._inputs import *
|
13
|
+
|
14
|
+
__all__ = ['ExadbVmClusterArgs', 'ExadbVmCluster']
|
15
|
+
|
16
|
+
@pulumi.input_type
|
17
|
+
class ExadbVmClusterArgs:
|
18
|
+
def __init__(__self__, *,
|
19
|
+
availability_domain: pulumi.Input[str],
|
20
|
+
backup_subnet_id: pulumi.Input[str],
|
21
|
+
compartment_id: pulumi.Input[str],
|
22
|
+
display_name: pulumi.Input[str],
|
23
|
+
exascale_db_storage_vault_id: pulumi.Input[str],
|
24
|
+
grid_image_id: pulumi.Input[str],
|
25
|
+
hostname: pulumi.Input[str],
|
26
|
+
node_config: pulumi.Input['ExadbVmClusterNodeConfigArgs'],
|
27
|
+
shape: pulumi.Input[str],
|
28
|
+
ssh_public_keys: pulumi.Input[Sequence[pulumi.Input[str]]],
|
29
|
+
subnet_id: pulumi.Input[str],
|
30
|
+
backup_network_nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
31
|
+
cluster_name: Optional[pulumi.Input[str]] = None,
|
32
|
+
data_collection_options: Optional[pulumi.Input['ExadbVmClusterDataCollectionOptionsArgs']] = None,
|
33
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
34
|
+
domain: Optional[pulumi.Input[str]] = None,
|
35
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
36
|
+
license_model: Optional[pulumi.Input[str]] = None,
|
37
|
+
node_resources: Optional[pulumi.Input[Sequence[pulumi.Input['ExadbVmClusterNodeResourceArgs']]]] = None,
|
38
|
+
nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
39
|
+
private_zone_id: Optional[pulumi.Input[str]] = None,
|
40
|
+
scan_listener_port_tcp: Optional[pulumi.Input[int]] = None,
|
41
|
+
scan_listener_port_tcp_ssl: Optional[pulumi.Input[int]] = None,
|
42
|
+
system_version: Optional[pulumi.Input[str]] = None,
|
43
|
+
time_zone: Optional[pulumi.Input[str]] = None):
|
44
|
+
"""
|
45
|
+
The set of arguments for constructing a ExadbVmCluster resource.
|
46
|
+
:param pulumi.Input[str] availability_domain: The name of the availability domain in which the Exadata VM cluster on Exascale Infrastructure is located.
|
47
|
+
:param pulumi.Input[str] backup_subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup network subnet associated with the Exadata VM cluster on Exascale Infrastructure.
|
48
|
+
:param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
49
|
+
:param pulumi.Input[str] display_name: (Updatable) The user-friendly name for the Exadata VM cluster on Exascale Infrastructure. The name does not need to be unique.
|
50
|
+
:param pulumi.Input[str] exascale_db_storage_vault_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata Database Storage Vault.
|
51
|
+
:param pulumi.Input[str] grid_image_id: (Updatable) Grid Setup will be done using this grid image id
|
52
|
+
:param pulumi.Input[str] hostname: The hostname for the Exadata VM cluster on Exascale Infrastructure. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). For Exadata systems, the maximum length of the hostname is 12 characters.
|
53
|
+
|
54
|
+
The maximum length of the combined hostname and domain is 63 characters.
|
55
|
+
|
56
|
+
**Note:** The hostname must be unique within the subnet. If it is not unique, then the Exadata VM cluster on Exascale Infrastructure will fail to provision.
|
57
|
+
:param pulumi.Input['ExadbVmClusterNodeConfigArgs'] node_config: (Updatable) The configuration of each node in the Exadata VM cluster on Exascale Infrastructure.
|
58
|
+
:param pulumi.Input[str] shape: The shape of the Exadata VM cluster on Exascale Infrastructure resource
|
59
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] ssh_public_keys: (Updatable) The public key portion of one or more key pairs used for SSH access to the Exadata VM cluster on Exascale Infrastructure.
|
60
|
+
:param pulumi.Input[str] subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
|
61
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] backup_network_nsg_ids: (Updatable) A list of the [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see [Security Rules](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/securityrules.htm). Applicable only to Exadata systems.
|
62
|
+
:param pulumi.Input[str] cluster_name: The cluster name for Exadata VM cluster on Exascale Infrastructure. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
|
63
|
+
:param pulumi.Input['ExadbVmClusterDataCollectionOptionsArgs'] data_collection_options: (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
|
64
|
+
:param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
|
65
|
+
:param pulumi.Input[str] domain: A domain name used for the Exadata VM cluster on Exascale Infrastructure. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, then the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted. Applies to Exadata Database Service on Exascale Infrastructure only.
|
66
|
+
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
67
|
+
:param pulumi.Input[str] license_model: (Updatable) The Oracle license model that applies to the Exadata VM cluster on Exascale Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
|
68
|
+
:param pulumi.Input[Sequence[pulumi.Input['ExadbVmClusterNodeResourceArgs']]] node_resources: Each `node_resource` represents a node in the Exadata VM cluster on Exascale Infrastructure.
|
69
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] nsg_ids: (Updatable) The list of [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see [Security Rules](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/securityrules.htm). **NsgIds restrictions:**
|
70
|
+
* A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
|
71
|
+
:param pulumi.Input[str] private_zone_id: The private zone ID in which you want DNS records to be created.
|
72
|
+
:param pulumi.Input[int] scan_listener_port_tcp: The TCP Single Client Access Name (SCAN) port. The default port is 1521.
|
73
|
+
:param pulumi.Input[int] scan_listener_port_tcp_ssl: The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
|
74
|
+
:param pulumi.Input[str] system_version: (Updatable) Operating system version of the image.
|
75
|
+
:param pulumi.Input[str] time_zone: The time zone to use for the Exadata VM cluster on Exascale Infrastructure. For details, see [Time Zones](https://docs.cloud.oracle.com/iaas/Content/Database/References/timezones.htm).
|
76
|
+
|
77
|
+
|
78
|
+
** IMPORTANT **
|
79
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
80
|
+
"""
|
81
|
+
pulumi.set(__self__, "availability_domain", availability_domain)
|
82
|
+
pulumi.set(__self__, "backup_subnet_id", backup_subnet_id)
|
83
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
84
|
+
pulumi.set(__self__, "display_name", display_name)
|
85
|
+
pulumi.set(__self__, "exascale_db_storage_vault_id", exascale_db_storage_vault_id)
|
86
|
+
pulumi.set(__self__, "grid_image_id", grid_image_id)
|
87
|
+
pulumi.set(__self__, "hostname", hostname)
|
88
|
+
pulumi.set(__self__, "node_config", node_config)
|
89
|
+
pulumi.set(__self__, "shape", shape)
|
90
|
+
pulumi.set(__self__, "ssh_public_keys", ssh_public_keys)
|
91
|
+
pulumi.set(__self__, "subnet_id", subnet_id)
|
92
|
+
if backup_network_nsg_ids is not None:
|
93
|
+
pulumi.set(__self__, "backup_network_nsg_ids", backup_network_nsg_ids)
|
94
|
+
if cluster_name is not None:
|
95
|
+
pulumi.set(__self__, "cluster_name", cluster_name)
|
96
|
+
if data_collection_options is not None:
|
97
|
+
pulumi.set(__self__, "data_collection_options", data_collection_options)
|
98
|
+
if defined_tags is not None:
|
99
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
100
|
+
if domain is not None:
|
101
|
+
pulumi.set(__self__, "domain", domain)
|
102
|
+
if freeform_tags is not None:
|
103
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
104
|
+
if license_model is not None:
|
105
|
+
pulumi.set(__self__, "license_model", license_model)
|
106
|
+
if node_resources is not None:
|
107
|
+
pulumi.set(__self__, "node_resources", node_resources)
|
108
|
+
if nsg_ids is not None:
|
109
|
+
pulumi.set(__self__, "nsg_ids", nsg_ids)
|
110
|
+
if private_zone_id is not None:
|
111
|
+
pulumi.set(__self__, "private_zone_id", private_zone_id)
|
112
|
+
if scan_listener_port_tcp is not None:
|
113
|
+
pulumi.set(__self__, "scan_listener_port_tcp", scan_listener_port_tcp)
|
114
|
+
if scan_listener_port_tcp_ssl is not None:
|
115
|
+
pulumi.set(__self__, "scan_listener_port_tcp_ssl", scan_listener_port_tcp_ssl)
|
116
|
+
if system_version is not None:
|
117
|
+
pulumi.set(__self__, "system_version", system_version)
|
118
|
+
if time_zone is not None:
|
119
|
+
pulumi.set(__self__, "time_zone", time_zone)
|
120
|
+
|
121
|
+
@property
|
122
|
+
@pulumi.getter(name="availabilityDomain")
|
123
|
+
def availability_domain(self) -> pulumi.Input[str]:
|
124
|
+
"""
|
125
|
+
The name of the availability domain in which the Exadata VM cluster on Exascale Infrastructure is located.
|
126
|
+
"""
|
127
|
+
return pulumi.get(self, "availability_domain")
|
128
|
+
|
129
|
+
@availability_domain.setter
|
130
|
+
def availability_domain(self, value: pulumi.Input[str]):
|
131
|
+
pulumi.set(self, "availability_domain", value)
|
132
|
+
|
133
|
+
@property
|
134
|
+
@pulumi.getter(name="backupSubnetId")
|
135
|
+
def backup_subnet_id(self) -> pulumi.Input[str]:
|
136
|
+
"""
|
137
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup network subnet associated with the Exadata VM cluster on Exascale Infrastructure.
|
138
|
+
"""
|
139
|
+
return pulumi.get(self, "backup_subnet_id")
|
140
|
+
|
141
|
+
@backup_subnet_id.setter
|
142
|
+
def backup_subnet_id(self, value: pulumi.Input[str]):
|
143
|
+
pulumi.set(self, "backup_subnet_id", value)
|
144
|
+
|
145
|
+
@property
|
146
|
+
@pulumi.getter(name="compartmentId")
|
147
|
+
def compartment_id(self) -> pulumi.Input[str]:
|
148
|
+
"""
|
149
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
150
|
+
"""
|
151
|
+
return pulumi.get(self, "compartment_id")
|
152
|
+
|
153
|
+
@compartment_id.setter
|
154
|
+
def compartment_id(self, value: pulumi.Input[str]):
|
155
|
+
pulumi.set(self, "compartment_id", value)
|
156
|
+
|
157
|
+
@property
|
158
|
+
@pulumi.getter(name="displayName")
|
159
|
+
def display_name(self) -> pulumi.Input[str]:
|
160
|
+
"""
|
161
|
+
(Updatable) The user-friendly name for the Exadata VM cluster on Exascale Infrastructure. The name does not need to be unique.
|
162
|
+
"""
|
163
|
+
return pulumi.get(self, "display_name")
|
164
|
+
|
165
|
+
@display_name.setter
|
166
|
+
def display_name(self, value: pulumi.Input[str]):
|
167
|
+
pulumi.set(self, "display_name", value)
|
168
|
+
|
169
|
+
@property
|
170
|
+
@pulumi.getter(name="exascaleDbStorageVaultId")
|
171
|
+
def exascale_db_storage_vault_id(self) -> pulumi.Input[str]:
|
172
|
+
"""
|
173
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata Database Storage Vault.
|
174
|
+
"""
|
175
|
+
return pulumi.get(self, "exascale_db_storage_vault_id")
|
176
|
+
|
177
|
+
@exascale_db_storage_vault_id.setter
|
178
|
+
def exascale_db_storage_vault_id(self, value: pulumi.Input[str]):
|
179
|
+
pulumi.set(self, "exascale_db_storage_vault_id", value)
|
180
|
+
|
181
|
+
@property
|
182
|
+
@pulumi.getter(name="gridImageId")
|
183
|
+
def grid_image_id(self) -> pulumi.Input[str]:
|
184
|
+
"""
|
185
|
+
(Updatable) Grid Setup will be done using this grid image id
|
186
|
+
"""
|
187
|
+
return pulumi.get(self, "grid_image_id")
|
188
|
+
|
189
|
+
@grid_image_id.setter
|
190
|
+
def grid_image_id(self, value: pulumi.Input[str]):
|
191
|
+
pulumi.set(self, "grid_image_id", value)
|
192
|
+
|
193
|
+
@property
|
194
|
+
@pulumi.getter
|
195
|
+
def hostname(self) -> pulumi.Input[str]:
|
196
|
+
"""
|
197
|
+
The hostname for the Exadata VM cluster on Exascale Infrastructure. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). For Exadata systems, the maximum length of the hostname is 12 characters.
|
198
|
+
|
199
|
+
The maximum length of the combined hostname and domain is 63 characters.
|
200
|
+
|
201
|
+
**Note:** The hostname must be unique within the subnet. If it is not unique, then the Exadata VM cluster on Exascale Infrastructure will fail to provision.
|
202
|
+
"""
|
203
|
+
return pulumi.get(self, "hostname")
|
204
|
+
|
205
|
+
@hostname.setter
|
206
|
+
def hostname(self, value: pulumi.Input[str]):
|
207
|
+
pulumi.set(self, "hostname", value)
|
208
|
+
|
209
|
+
@property
|
210
|
+
@pulumi.getter(name="nodeConfig")
|
211
|
+
def node_config(self) -> pulumi.Input['ExadbVmClusterNodeConfigArgs']:
|
212
|
+
"""
|
213
|
+
(Updatable) The configuration of each node in the Exadata VM cluster on Exascale Infrastructure.
|
214
|
+
"""
|
215
|
+
return pulumi.get(self, "node_config")
|
216
|
+
|
217
|
+
@node_config.setter
|
218
|
+
def node_config(self, value: pulumi.Input['ExadbVmClusterNodeConfigArgs']):
|
219
|
+
pulumi.set(self, "node_config", value)
|
220
|
+
|
221
|
+
@property
|
222
|
+
@pulumi.getter
|
223
|
+
def shape(self) -> pulumi.Input[str]:
|
224
|
+
"""
|
225
|
+
The shape of the Exadata VM cluster on Exascale Infrastructure resource
|
226
|
+
"""
|
227
|
+
return pulumi.get(self, "shape")
|
228
|
+
|
229
|
+
@shape.setter
|
230
|
+
def shape(self, value: pulumi.Input[str]):
|
231
|
+
pulumi.set(self, "shape", value)
|
232
|
+
|
233
|
+
@property
|
234
|
+
@pulumi.getter(name="sshPublicKeys")
|
235
|
+
def ssh_public_keys(self) -> pulumi.Input[Sequence[pulumi.Input[str]]]:
|
236
|
+
"""
|
237
|
+
(Updatable) The public key portion of one or more key pairs used for SSH access to the Exadata VM cluster on Exascale Infrastructure.
|
238
|
+
"""
|
239
|
+
return pulumi.get(self, "ssh_public_keys")
|
240
|
+
|
241
|
+
@ssh_public_keys.setter
|
242
|
+
def ssh_public_keys(self, value: pulumi.Input[Sequence[pulumi.Input[str]]]):
|
243
|
+
pulumi.set(self, "ssh_public_keys", value)
|
244
|
+
|
245
|
+
@property
|
246
|
+
@pulumi.getter(name="subnetId")
|
247
|
+
def subnet_id(self) -> pulumi.Input[str]:
|
248
|
+
"""
|
249
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
|
250
|
+
"""
|
251
|
+
return pulumi.get(self, "subnet_id")
|
252
|
+
|
253
|
+
@subnet_id.setter
|
254
|
+
def subnet_id(self, value: pulumi.Input[str]):
|
255
|
+
pulumi.set(self, "subnet_id", value)
|
256
|
+
|
257
|
+
@property
|
258
|
+
@pulumi.getter(name="backupNetworkNsgIds")
|
259
|
+
def backup_network_nsg_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
260
|
+
"""
|
261
|
+
(Updatable) A list of the [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see [Security Rules](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/securityrules.htm). Applicable only to Exadata systems.
|
262
|
+
"""
|
263
|
+
return pulumi.get(self, "backup_network_nsg_ids")
|
264
|
+
|
265
|
+
@backup_network_nsg_ids.setter
|
266
|
+
def backup_network_nsg_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
267
|
+
pulumi.set(self, "backup_network_nsg_ids", value)
|
268
|
+
|
269
|
+
@property
|
270
|
+
@pulumi.getter(name="clusterName")
|
271
|
+
def cluster_name(self) -> Optional[pulumi.Input[str]]:
|
272
|
+
"""
|
273
|
+
The cluster name for Exadata VM cluster on Exascale Infrastructure. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
|
274
|
+
"""
|
275
|
+
return pulumi.get(self, "cluster_name")
|
276
|
+
|
277
|
+
@cluster_name.setter
|
278
|
+
def cluster_name(self, value: Optional[pulumi.Input[str]]):
|
279
|
+
pulumi.set(self, "cluster_name", value)
|
280
|
+
|
281
|
+
@property
|
282
|
+
@pulumi.getter(name="dataCollectionOptions")
|
283
|
+
def data_collection_options(self) -> Optional[pulumi.Input['ExadbVmClusterDataCollectionOptionsArgs']]:
|
284
|
+
"""
|
285
|
+
(Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
|
286
|
+
"""
|
287
|
+
return pulumi.get(self, "data_collection_options")
|
288
|
+
|
289
|
+
@data_collection_options.setter
|
290
|
+
def data_collection_options(self, value: Optional[pulumi.Input['ExadbVmClusterDataCollectionOptionsArgs']]):
|
291
|
+
pulumi.set(self, "data_collection_options", value)
|
292
|
+
|
293
|
+
@property
|
294
|
+
@pulumi.getter(name="definedTags")
|
295
|
+
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
|
296
|
+
"""
|
297
|
+
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
|
298
|
+
"""
|
299
|
+
return pulumi.get(self, "defined_tags")
|
300
|
+
|
301
|
+
@defined_tags.setter
|
302
|
+
def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
|
303
|
+
pulumi.set(self, "defined_tags", value)
|
304
|
+
|
305
|
+
@property
|
306
|
+
@pulumi.getter
|
307
|
+
def domain(self) -> Optional[pulumi.Input[str]]:
|
308
|
+
"""
|
309
|
+
A domain name used for the Exadata VM cluster on Exascale Infrastructure. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, then the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted. Applies to Exadata Database Service on Exascale Infrastructure only.
|
310
|
+
"""
|
311
|
+
return pulumi.get(self, "domain")
|
312
|
+
|
313
|
+
@domain.setter
|
314
|
+
def domain(self, value: Optional[pulumi.Input[str]]):
|
315
|
+
pulumi.set(self, "domain", value)
|
316
|
+
|
317
|
+
@property
|
318
|
+
@pulumi.getter(name="freeformTags")
|
319
|
+
def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
|
320
|
+
"""
|
321
|
+
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
322
|
+
"""
|
323
|
+
return pulumi.get(self, "freeform_tags")
|
324
|
+
|
325
|
+
@freeform_tags.setter
|
326
|
+
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
|
327
|
+
pulumi.set(self, "freeform_tags", value)
|
328
|
+
|
329
|
+
@property
|
330
|
+
@pulumi.getter(name="licenseModel")
|
331
|
+
def license_model(self) -> Optional[pulumi.Input[str]]:
|
332
|
+
"""
|
333
|
+
(Updatable) The Oracle license model that applies to the Exadata VM cluster on Exascale Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
|
334
|
+
"""
|
335
|
+
return pulumi.get(self, "license_model")
|
336
|
+
|
337
|
+
@license_model.setter
|
338
|
+
def license_model(self, value: Optional[pulumi.Input[str]]):
|
339
|
+
pulumi.set(self, "license_model", value)
|
340
|
+
|
341
|
+
@property
|
342
|
+
@pulumi.getter(name="nodeResources")
|
343
|
+
def node_resources(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ExadbVmClusterNodeResourceArgs']]]]:
|
344
|
+
"""
|
345
|
+
Each `node_resource` represents a node in the Exadata VM cluster on Exascale Infrastructure.
|
346
|
+
"""
|
347
|
+
return pulumi.get(self, "node_resources")
|
348
|
+
|
349
|
+
@node_resources.setter
|
350
|
+
def node_resources(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ExadbVmClusterNodeResourceArgs']]]]):
|
351
|
+
pulumi.set(self, "node_resources", value)
|
352
|
+
|
353
|
+
@property
|
354
|
+
@pulumi.getter(name="nsgIds")
|
355
|
+
def nsg_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
356
|
+
"""
|
357
|
+
(Updatable) The list of [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see [Security Rules](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/securityrules.htm). **NsgIds restrictions:**
|
358
|
+
* A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
|
359
|
+
"""
|
360
|
+
return pulumi.get(self, "nsg_ids")
|
361
|
+
|
362
|
+
@nsg_ids.setter
|
363
|
+
def nsg_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
364
|
+
pulumi.set(self, "nsg_ids", value)
|
365
|
+
|
366
|
+
@property
|
367
|
+
@pulumi.getter(name="privateZoneId")
|
368
|
+
def private_zone_id(self) -> Optional[pulumi.Input[str]]:
|
369
|
+
"""
|
370
|
+
The private zone ID in which you want DNS records to be created.
|
371
|
+
"""
|
372
|
+
return pulumi.get(self, "private_zone_id")
|
373
|
+
|
374
|
+
@private_zone_id.setter
|
375
|
+
def private_zone_id(self, value: Optional[pulumi.Input[str]]):
|
376
|
+
pulumi.set(self, "private_zone_id", value)
|
377
|
+
|
378
|
+
@property
|
379
|
+
@pulumi.getter(name="scanListenerPortTcp")
|
380
|
+
def scan_listener_port_tcp(self) -> Optional[pulumi.Input[int]]:
|
381
|
+
"""
|
382
|
+
The TCP Single Client Access Name (SCAN) port. The default port is 1521.
|
383
|
+
"""
|
384
|
+
return pulumi.get(self, "scan_listener_port_tcp")
|
385
|
+
|
386
|
+
@scan_listener_port_tcp.setter
|
387
|
+
def scan_listener_port_tcp(self, value: Optional[pulumi.Input[int]]):
|
388
|
+
pulumi.set(self, "scan_listener_port_tcp", value)
|
389
|
+
|
390
|
+
@property
|
391
|
+
@pulumi.getter(name="scanListenerPortTcpSsl")
|
392
|
+
def scan_listener_port_tcp_ssl(self) -> Optional[pulumi.Input[int]]:
|
393
|
+
"""
|
394
|
+
The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
|
395
|
+
"""
|
396
|
+
return pulumi.get(self, "scan_listener_port_tcp_ssl")
|
397
|
+
|
398
|
+
@scan_listener_port_tcp_ssl.setter
|
399
|
+
def scan_listener_port_tcp_ssl(self, value: Optional[pulumi.Input[int]]):
|
400
|
+
pulumi.set(self, "scan_listener_port_tcp_ssl", value)
|
401
|
+
|
402
|
+
@property
|
403
|
+
@pulumi.getter(name="systemVersion")
|
404
|
+
def system_version(self) -> Optional[pulumi.Input[str]]:
|
405
|
+
"""
|
406
|
+
(Updatable) Operating system version of the image.
|
407
|
+
"""
|
408
|
+
return pulumi.get(self, "system_version")
|
409
|
+
|
410
|
+
@system_version.setter
|
411
|
+
def system_version(self, value: Optional[pulumi.Input[str]]):
|
412
|
+
pulumi.set(self, "system_version", value)
|
413
|
+
|
414
|
+
@property
|
415
|
+
@pulumi.getter(name="timeZone")
|
416
|
+
def time_zone(self) -> Optional[pulumi.Input[str]]:
|
417
|
+
"""
|
418
|
+
The time zone to use for the Exadata VM cluster on Exascale Infrastructure. For details, see [Time Zones](https://docs.cloud.oracle.com/iaas/Content/Database/References/timezones.htm).
|
419
|
+
|
420
|
+
|
421
|
+
** IMPORTANT **
|
422
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
423
|
+
"""
|
424
|
+
return pulumi.get(self, "time_zone")
|
425
|
+
|
426
|
+
@time_zone.setter
|
427
|
+
def time_zone(self, value: Optional[pulumi.Input[str]]):
|
428
|
+
pulumi.set(self, "time_zone", value)
|
429
|
+
|
430
|
+
|
431
|
+
@pulumi.input_type
|
432
|
+
class _ExadbVmClusterState:
|
433
|
+
def __init__(__self__, *,
|
434
|
+
availability_domain: Optional[pulumi.Input[str]] = None,
|
435
|
+
backup_network_nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
436
|
+
backup_subnet_id: Optional[pulumi.Input[str]] = None,
|
437
|
+
cluster_name: Optional[pulumi.Input[str]] = None,
|
438
|
+
compartment_id: Optional[pulumi.Input[str]] = None,
|
439
|
+
data_collection_options: Optional[pulumi.Input['ExadbVmClusterDataCollectionOptionsArgs']] = None,
|
440
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
441
|
+
display_name: Optional[pulumi.Input[str]] = None,
|
442
|
+
domain: Optional[pulumi.Input[str]] = None,
|
443
|
+
exascale_db_storage_vault_id: Optional[pulumi.Input[str]] = None,
|
444
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
445
|
+
gi_version: Optional[pulumi.Input[str]] = None,
|
446
|
+
grid_image_id: Optional[pulumi.Input[str]] = None,
|
447
|
+
grid_image_type: Optional[pulumi.Input[str]] = None,
|
448
|
+
hostname: Optional[pulumi.Input[str]] = None,
|
449
|
+
iorm_config_caches: Optional[pulumi.Input[Sequence[pulumi.Input['ExadbVmClusterIormConfigCachArgs']]]] = None,
|
450
|
+
last_update_history_entry_id: Optional[pulumi.Input[str]] = None,
|
451
|
+
license_model: Optional[pulumi.Input[str]] = None,
|
452
|
+
lifecycle_details: Optional[pulumi.Input[str]] = None,
|
453
|
+
listener_port: Optional[pulumi.Input[str]] = None,
|
454
|
+
node_config: Optional[pulumi.Input['ExadbVmClusterNodeConfigArgs']] = None,
|
455
|
+
node_resources: Optional[pulumi.Input[Sequence[pulumi.Input['ExadbVmClusterNodeResourceArgs']]]] = None,
|
456
|
+
nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
457
|
+
private_zone_id: Optional[pulumi.Input[str]] = None,
|
458
|
+
scan_dns_name: Optional[pulumi.Input[str]] = None,
|
459
|
+
scan_dns_record_id: Optional[pulumi.Input[str]] = None,
|
460
|
+
scan_ip_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
461
|
+
scan_listener_port_tcp: Optional[pulumi.Input[int]] = None,
|
462
|
+
scan_listener_port_tcp_ssl: Optional[pulumi.Input[int]] = None,
|
463
|
+
shape: Optional[pulumi.Input[str]] = None,
|
464
|
+
ssh_public_keys: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
465
|
+
state: Optional[pulumi.Input[str]] = None,
|
466
|
+
subnet_id: Optional[pulumi.Input[str]] = None,
|
467
|
+
system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
468
|
+
system_version: Optional[pulumi.Input[str]] = None,
|
469
|
+
time_created: Optional[pulumi.Input[str]] = None,
|
470
|
+
time_zone: Optional[pulumi.Input[str]] = None,
|
471
|
+
vip_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
472
|
+
zone_id: Optional[pulumi.Input[str]] = None):
|
473
|
+
"""
|
474
|
+
Input properties used for looking up and filtering ExadbVmCluster resources.
|
475
|
+
:param pulumi.Input[str] availability_domain: The name of the availability domain in which the Exadata VM cluster on Exascale Infrastructure is located.
|
476
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] backup_network_nsg_ids: (Updatable) A list of the [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see [Security Rules](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/securityrules.htm). Applicable only to Exadata systems.
|
477
|
+
:param pulumi.Input[str] backup_subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup network subnet associated with the Exadata VM cluster on Exascale Infrastructure.
|
478
|
+
:param pulumi.Input[str] cluster_name: The cluster name for Exadata VM cluster on Exascale Infrastructure. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
|
479
|
+
:param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
480
|
+
:param pulumi.Input['ExadbVmClusterDataCollectionOptionsArgs'] data_collection_options: (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
|
481
|
+
:param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
|
482
|
+
:param pulumi.Input[str] display_name: (Updatable) The user-friendly name for the Exadata VM cluster on Exascale Infrastructure. The name does not need to be unique.
|
483
|
+
:param pulumi.Input[str] domain: A domain name used for the Exadata VM cluster on Exascale Infrastructure. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, then the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted. Applies to Exadata Database Service on Exascale Infrastructure only.
|
484
|
+
:param pulumi.Input[str] exascale_db_storage_vault_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata Database Storage Vault.
|
485
|
+
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
486
|
+
:param pulumi.Input[str] gi_version: A valid Oracle Grid Infrastructure (GI) software version.
|
487
|
+
:param pulumi.Input[str] grid_image_id: (Updatable) Grid Setup will be done using this grid image id
|
488
|
+
:param pulumi.Input[str] grid_image_type: The type of Grid Image
|
489
|
+
:param pulumi.Input[str] hostname: The hostname for the Exadata VM cluster on Exascale Infrastructure. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). For Exadata systems, the maximum length of the hostname is 12 characters.
|
490
|
+
|
491
|
+
The maximum length of the combined hostname and domain is 63 characters.
|
492
|
+
|
493
|
+
**Note:** The hostname must be unique within the subnet. If it is not unique, then the Exadata VM cluster on Exascale Infrastructure will fail to provision.
|
494
|
+
:param pulumi.Input[Sequence[pulumi.Input['ExadbVmClusterIormConfigCachArgs']]] iorm_config_caches: The IORM settings of the Exadata DB system.
|
495
|
+
:param pulumi.Input[str] last_update_history_entry_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the last maintenance update history entry. This value is updated when a maintenance update starts.
|
496
|
+
:param pulumi.Input[str] license_model: (Updatable) The Oracle license model that applies to the Exadata VM cluster on Exascale Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
|
497
|
+
:param pulumi.Input[str] lifecycle_details: Additional information about the current lifecycle state.
|
498
|
+
:param pulumi.Input[str] listener_port: The port number configured for the listener on the Exadata VM cluster on Exascale Infrastructure.
|
499
|
+
:param pulumi.Input['ExadbVmClusterNodeConfigArgs'] node_config: (Updatable) The configuration of each node in the Exadata VM cluster on Exascale Infrastructure.
|
500
|
+
:param pulumi.Input[Sequence[pulumi.Input['ExadbVmClusterNodeResourceArgs']]] node_resources: Each `node_resource` represents a node in the Exadata VM cluster on Exascale Infrastructure.
|
501
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] nsg_ids: (Updatable) The list of [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see [Security Rules](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/securityrules.htm). **NsgIds restrictions:**
|
502
|
+
* A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
|
503
|
+
:param pulumi.Input[str] private_zone_id: The private zone ID in which you want DNS records to be created.
|
504
|
+
:param pulumi.Input[str] scan_dns_name: The FQDN of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
|
505
|
+
:param pulumi.Input[str] scan_dns_record_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
|
506
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] scan_ip_ids: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Single Client Access Name (SCAN) IP addresses associated with the Exadata VM cluster on Exascale Infrastructure. SCAN IP 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.
|
507
|
+
:param pulumi.Input[int] scan_listener_port_tcp: The TCP Single Client Access Name (SCAN) port. The default port is 1521.
|
508
|
+
:param pulumi.Input[int] scan_listener_port_tcp_ssl: The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
|
509
|
+
:param pulumi.Input[str] shape: The shape of the Exadata VM cluster on Exascale Infrastructure resource
|
510
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] ssh_public_keys: (Updatable) The public key portion of one or more key pairs used for SSH access to the Exadata VM cluster on Exascale Infrastructure.
|
511
|
+
:param pulumi.Input[str] state: The current state of the Exadata VM cluster on Exascale Infrastructure.
|
512
|
+
:param pulumi.Input[str] subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
|
513
|
+
:param pulumi.Input[Mapping[str, Any]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
|
514
|
+
:param pulumi.Input[str] system_version: (Updatable) Operating system version of the image.
|
515
|
+
:param pulumi.Input[str] time_created: The date and time that the Exadata VM cluster on Exascale Infrastructure was created.
|
516
|
+
:param pulumi.Input[str] time_zone: The time zone to use for the Exadata VM cluster on Exascale Infrastructure. For details, see [Time Zones](https://docs.cloud.oracle.com/iaas/Content/Database/References/timezones.htm).
|
517
|
+
|
518
|
+
|
519
|
+
** IMPORTANT **
|
520
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
521
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] vip_ids: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the virtual IP (VIP) addresses associated with the Exadata VM cluster on Exascale Infrastructure. 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, then the VIP is reassigned to another active node in the cluster.
|
522
|
+
:param pulumi.Input[str] zone_id: The OCID of the zone with which the Exadata VM cluster on Exascale Infrastructure is associated.
|
523
|
+
"""
|
524
|
+
if availability_domain is not None:
|
525
|
+
pulumi.set(__self__, "availability_domain", availability_domain)
|
526
|
+
if backup_network_nsg_ids is not None:
|
527
|
+
pulumi.set(__self__, "backup_network_nsg_ids", backup_network_nsg_ids)
|
528
|
+
if backup_subnet_id is not None:
|
529
|
+
pulumi.set(__self__, "backup_subnet_id", backup_subnet_id)
|
530
|
+
if cluster_name is not None:
|
531
|
+
pulumi.set(__self__, "cluster_name", cluster_name)
|
532
|
+
if compartment_id is not None:
|
533
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
534
|
+
if data_collection_options is not None:
|
535
|
+
pulumi.set(__self__, "data_collection_options", data_collection_options)
|
536
|
+
if defined_tags is not None:
|
537
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
538
|
+
if display_name is not None:
|
539
|
+
pulumi.set(__self__, "display_name", display_name)
|
540
|
+
if domain is not None:
|
541
|
+
pulumi.set(__self__, "domain", domain)
|
542
|
+
if exascale_db_storage_vault_id is not None:
|
543
|
+
pulumi.set(__self__, "exascale_db_storage_vault_id", exascale_db_storage_vault_id)
|
544
|
+
if freeform_tags is not None:
|
545
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
546
|
+
if gi_version is not None:
|
547
|
+
pulumi.set(__self__, "gi_version", gi_version)
|
548
|
+
if grid_image_id is not None:
|
549
|
+
pulumi.set(__self__, "grid_image_id", grid_image_id)
|
550
|
+
if grid_image_type is not None:
|
551
|
+
pulumi.set(__self__, "grid_image_type", grid_image_type)
|
552
|
+
if hostname is not None:
|
553
|
+
pulumi.set(__self__, "hostname", hostname)
|
554
|
+
if iorm_config_caches is not None:
|
555
|
+
pulumi.set(__self__, "iorm_config_caches", iorm_config_caches)
|
556
|
+
if last_update_history_entry_id is not None:
|
557
|
+
pulumi.set(__self__, "last_update_history_entry_id", last_update_history_entry_id)
|
558
|
+
if license_model is not None:
|
559
|
+
pulumi.set(__self__, "license_model", license_model)
|
560
|
+
if lifecycle_details is not None:
|
561
|
+
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
562
|
+
if listener_port is not None:
|
563
|
+
pulumi.set(__self__, "listener_port", listener_port)
|
564
|
+
if node_config is not None:
|
565
|
+
pulumi.set(__self__, "node_config", node_config)
|
566
|
+
if node_resources is not None:
|
567
|
+
pulumi.set(__self__, "node_resources", node_resources)
|
568
|
+
if nsg_ids is not None:
|
569
|
+
pulumi.set(__self__, "nsg_ids", nsg_ids)
|
570
|
+
if private_zone_id is not None:
|
571
|
+
pulumi.set(__self__, "private_zone_id", private_zone_id)
|
572
|
+
if scan_dns_name is not None:
|
573
|
+
pulumi.set(__self__, "scan_dns_name", scan_dns_name)
|
574
|
+
if scan_dns_record_id is not None:
|
575
|
+
pulumi.set(__self__, "scan_dns_record_id", scan_dns_record_id)
|
576
|
+
if scan_ip_ids is not None:
|
577
|
+
pulumi.set(__self__, "scan_ip_ids", scan_ip_ids)
|
578
|
+
if scan_listener_port_tcp is not None:
|
579
|
+
pulumi.set(__self__, "scan_listener_port_tcp", scan_listener_port_tcp)
|
580
|
+
if scan_listener_port_tcp_ssl is not None:
|
581
|
+
pulumi.set(__self__, "scan_listener_port_tcp_ssl", scan_listener_port_tcp_ssl)
|
582
|
+
if shape is not None:
|
583
|
+
pulumi.set(__self__, "shape", shape)
|
584
|
+
if ssh_public_keys is not None:
|
585
|
+
pulumi.set(__self__, "ssh_public_keys", ssh_public_keys)
|
586
|
+
if state is not None:
|
587
|
+
pulumi.set(__self__, "state", state)
|
588
|
+
if subnet_id is not None:
|
589
|
+
pulumi.set(__self__, "subnet_id", subnet_id)
|
590
|
+
if system_tags is not None:
|
591
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
592
|
+
if system_version is not None:
|
593
|
+
pulumi.set(__self__, "system_version", system_version)
|
594
|
+
if time_created is not None:
|
595
|
+
pulumi.set(__self__, "time_created", time_created)
|
596
|
+
if time_zone is not None:
|
597
|
+
pulumi.set(__self__, "time_zone", time_zone)
|
598
|
+
if vip_ids is not None:
|
599
|
+
pulumi.set(__self__, "vip_ids", vip_ids)
|
600
|
+
if zone_id is not None:
|
601
|
+
pulumi.set(__self__, "zone_id", zone_id)
|
602
|
+
|
603
|
+
@property
|
604
|
+
@pulumi.getter(name="availabilityDomain")
|
605
|
+
def availability_domain(self) -> Optional[pulumi.Input[str]]:
|
606
|
+
"""
|
607
|
+
The name of the availability domain in which the Exadata VM cluster on Exascale Infrastructure is located.
|
608
|
+
"""
|
609
|
+
return pulumi.get(self, "availability_domain")
|
610
|
+
|
611
|
+
@availability_domain.setter
|
612
|
+
def availability_domain(self, value: Optional[pulumi.Input[str]]):
|
613
|
+
pulumi.set(self, "availability_domain", value)
|
614
|
+
|
615
|
+
@property
|
616
|
+
@pulumi.getter(name="backupNetworkNsgIds")
|
617
|
+
def backup_network_nsg_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
618
|
+
"""
|
619
|
+
(Updatable) A list of the [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see [Security Rules](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/securityrules.htm). Applicable only to Exadata systems.
|
620
|
+
"""
|
621
|
+
return pulumi.get(self, "backup_network_nsg_ids")
|
622
|
+
|
623
|
+
@backup_network_nsg_ids.setter
|
624
|
+
def backup_network_nsg_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
625
|
+
pulumi.set(self, "backup_network_nsg_ids", value)
|
626
|
+
|
627
|
+
@property
|
628
|
+
@pulumi.getter(name="backupSubnetId")
|
629
|
+
def backup_subnet_id(self) -> Optional[pulumi.Input[str]]:
|
630
|
+
"""
|
631
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup network subnet associated with the Exadata VM cluster on Exascale Infrastructure.
|
632
|
+
"""
|
633
|
+
return pulumi.get(self, "backup_subnet_id")
|
634
|
+
|
635
|
+
@backup_subnet_id.setter
|
636
|
+
def backup_subnet_id(self, value: Optional[pulumi.Input[str]]):
|
637
|
+
pulumi.set(self, "backup_subnet_id", value)
|
638
|
+
|
639
|
+
@property
|
640
|
+
@pulumi.getter(name="clusterName")
|
641
|
+
def cluster_name(self) -> Optional[pulumi.Input[str]]:
|
642
|
+
"""
|
643
|
+
The cluster name for Exadata VM cluster on Exascale Infrastructure. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
|
644
|
+
"""
|
645
|
+
return pulumi.get(self, "cluster_name")
|
646
|
+
|
647
|
+
@cluster_name.setter
|
648
|
+
def cluster_name(self, value: Optional[pulumi.Input[str]]):
|
649
|
+
pulumi.set(self, "cluster_name", value)
|
650
|
+
|
651
|
+
@property
|
652
|
+
@pulumi.getter(name="compartmentId")
|
653
|
+
def compartment_id(self) -> Optional[pulumi.Input[str]]:
|
654
|
+
"""
|
655
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
656
|
+
"""
|
657
|
+
return pulumi.get(self, "compartment_id")
|
658
|
+
|
659
|
+
@compartment_id.setter
|
660
|
+
def compartment_id(self, value: Optional[pulumi.Input[str]]):
|
661
|
+
pulumi.set(self, "compartment_id", value)
|
662
|
+
|
663
|
+
@property
|
664
|
+
@pulumi.getter(name="dataCollectionOptions")
|
665
|
+
def data_collection_options(self) -> Optional[pulumi.Input['ExadbVmClusterDataCollectionOptionsArgs']]:
|
666
|
+
"""
|
667
|
+
(Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
|
668
|
+
"""
|
669
|
+
return pulumi.get(self, "data_collection_options")
|
670
|
+
|
671
|
+
@data_collection_options.setter
|
672
|
+
def data_collection_options(self, value: Optional[pulumi.Input['ExadbVmClusterDataCollectionOptionsArgs']]):
|
673
|
+
pulumi.set(self, "data_collection_options", value)
|
674
|
+
|
675
|
+
@property
|
676
|
+
@pulumi.getter(name="definedTags")
|
677
|
+
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
|
678
|
+
"""
|
679
|
+
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
|
680
|
+
"""
|
681
|
+
return pulumi.get(self, "defined_tags")
|
682
|
+
|
683
|
+
@defined_tags.setter
|
684
|
+
def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
|
685
|
+
pulumi.set(self, "defined_tags", value)
|
686
|
+
|
687
|
+
@property
|
688
|
+
@pulumi.getter(name="displayName")
|
689
|
+
def display_name(self) -> Optional[pulumi.Input[str]]:
|
690
|
+
"""
|
691
|
+
(Updatable) The user-friendly name for the Exadata VM cluster on Exascale Infrastructure. The name does not need to be unique.
|
692
|
+
"""
|
693
|
+
return pulumi.get(self, "display_name")
|
694
|
+
|
695
|
+
@display_name.setter
|
696
|
+
def display_name(self, value: Optional[pulumi.Input[str]]):
|
697
|
+
pulumi.set(self, "display_name", value)
|
698
|
+
|
699
|
+
@property
|
700
|
+
@pulumi.getter
|
701
|
+
def domain(self) -> Optional[pulumi.Input[str]]:
|
702
|
+
"""
|
703
|
+
A domain name used for the Exadata VM cluster on Exascale Infrastructure. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, then the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted. Applies to Exadata Database Service on Exascale Infrastructure only.
|
704
|
+
"""
|
705
|
+
return pulumi.get(self, "domain")
|
706
|
+
|
707
|
+
@domain.setter
|
708
|
+
def domain(self, value: Optional[pulumi.Input[str]]):
|
709
|
+
pulumi.set(self, "domain", value)
|
710
|
+
|
711
|
+
@property
|
712
|
+
@pulumi.getter(name="exascaleDbStorageVaultId")
|
713
|
+
def exascale_db_storage_vault_id(self) -> Optional[pulumi.Input[str]]:
|
714
|
+
"""
|
715
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata Database Storage Vault.
|
716
|
+
"""
|
717
|
+
return pulumi.get(self, "exascale_db_storage_vault_id")
|
718
|
+
|
719
|
+
@exascale_db_storage_vault_id.setter
|
720
|
+
def exascale_db_storage_vault_id(self, value: Optional[pulumi.Input[str]]):
|
721
|
+
pulumi.set(self, "exascale_db_storage_vault_id", value)
|
722
|
+
|
723
|
+
@property
|
724
|
+
@pulumi.getter(name="freeformTags")
|
725
|
+
def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
|
726
|
+
"""
|
727
|
+
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
728
|
+
"""
|
729
|
+
return pulumi.get(self, "freeform_tags")
|
730
|
+
|
731
|
+
@freeform_tags.setter
|
732
|
+
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
|
733
|
+
pulumi.set(self, "freeform_tags", value)
|
734
|
+
|
735
|
+
@property
|
736
|
+
@pulumi.getter(name="giVersion")
|
737
|
+
def gi_version(self) -> Optional[pulumi.Input[str]]:
|
738
|
+
"""
|
739
|
+
A valid Oracle Grid Infrastructure (GI) software version.
|
740
|
+
"""
|
741
|
+
return pulumi.get(self, "gi_version")
|
742
|
+
|
743
|
+
@gi_version.setter
|
744
|
+
def gi_version(self, value: Optional[pulumi.Input[str]]):
|
745
|
+
pulumi.set(self, "gi_version", value)
|
746
|
+
|
747
|
+
@property
|
748
|
+
@pulumi.getter(name="gridImageId")
|
749
|
+
def grid_image_id(self) -> Optional[pulumi.Input[str]]:
|
750
|
+
"""
|
751
|
+
(Updatable) Grid Setup will be done using this grid image id
|
752
|
+
"""
|
753
|
+
return pulumi.get(self, "grid_image_id")
|
754
|
+
|
755
|
+
@grid_image_id.setter
|
756
|
+
def grid_image_id(self, value: Optional[pulumi.Input[str]]):
|
757
|
+
pulumi.set(self, "grid_image_id", value)
|
758
|
+
|
759
|
+
@property
|
760
|
+
@pulumi.getter(name="gridImageType")
|
761
|
+
def grid_image_type(self) -> Optional[pulumi.Input[str]]:
|
762
|
+
"""
|
763
|
+
The type of Grid Image
|
764
|
+
"""
|
765
|
+
return pulumi.get(self, "grid_image_type")
|
766
|
+
|
767
|
+
@grid_image_type.setter
|
768
|
+
def grid_image_type(self, value: Optional[pulumi.Input[str]]):
|
769
|
+
pulumi.set(self, "grid_image_type", value)
|
770
|
+
|
771
|
+
@property
|
772
|
+
@pulumi.getter
|
773
|
+
def hostname(self) -> Optional[pulumi.Input[str]]:
|
774
|
+
"""
|
775
|
+
The hostname for the Exadata VM cluster on Exascale Infrastructure. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). For Exadata systems, the maximum length of the hostname is 12 characters.
|
776
|
+
|
777
|
+
The maximum length of the combined hostname and domain is 63 characters.
|
778
|
+
|
779
|
+
**Note:** The hostname must be unique within the subnet. If it is not unique, then the Exadata VM cluster on Exascale Infrastructure will fail to provision.
|
780
|
+
"""
|
781
|
+
return pulumi.get(self, "hostname")
|
782
|
+
|
783
|
+
@hostname.setter
|
784
|
+
def hostname(self, value: Optional[pulumi.Input[str]]):
|
785
|
+
pulumi.set(self, "hostname", value)
|
786
|
+
|
787
|
+
@property
|
788
|
+
@pulumi.getter(name="iormConfigCaches")
|
789
|
+
def iorm_config_caches(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ExadbVmClusterIormConfigCachArgs']]]]:
|
790
|
+
"""
|
791
|
+
The IORM settings of the Exadata DB system.
|
792
|
+
"""
|
793
|
+
return pulumi.get(self, "iorm_config_caches")
|
794
|
+
|
795
|
+
@iorm_config_caches.setter
|
796
|
+
def iorm_config_caches(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ExadbVmClusterIormConfigCachArgs']]]]):
|
797
|
+
pulumi.set(self, "iorm_config_caches", value)
|
798
|
+
|
799
|
+
@property
|
800
|
+
@pulumi.getter(name="lastUpdateHistoryEntryId")
|
801
|
+
def last_update_history_entry_id(self) -> Optional[pulumi.Input[str]]:
|
802
|
+
"""
|
803
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the last maintenance update history entry. This value is updated when a maintenance update starts.
|
804
|
+
"""
|
805
|
+
return pulumi.get(self, "last_update_history_entry_id")
|
806
|
+
|
807
|
+
@last_update_history_entry_id.setter
|
808
|
+
def last_update_history_entry_id(self, value: Optional[pulumi.Input[str]]):
|
809
|
+
pulumi.set(self, "last_update_history_entry_id", value)
|
810
|
+
|
811
|
+
@property
|
812
|
+
@pulumi.getter(name="licenseModel")
|
813
|
+
def license_model(self) -> Optional[pulumi.Input[str]]:
|
814
|
+
"""
|
815
|
+
(Updatable) The Oracle license model that applies to the Exadata VM cluster on Exascale Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
|
816
|
+
"""
|
817
|
+
return pulumi.get(self, "license_model")
|
818
|
+
|
819
|
+
@license_model.setter
|
820
|
+
def license_model(self, value: Optional[pulumi.Input[str]]):
|
821
|
+
pulumi.set(self, "license_model", value)
|
822
|
+
|
823
|
+
@property
|
824
|
+
@pulumi.getter(name="lifecycleDetails")
|
825
|
+
def lifecycle_details(self) -> Optional[pulumi.Input[str]]:
|
826
|
+
"""
|
827
|
+
Additional information about the current lifecycle state.
|
828
|
+
"""
|
829
|
+
return pulumi.get(self, "lifecycle_details")
|
830
|
+
|
831
|
+
@lifecycle_details.setter
|
832
|
+
def lifecycle_details(self, value: Optional[pulumi.Input[str]]):
|
833
|
+
pulumi.set(self, "lifecycle_details", value)
|
834
|
+
|
835
|
+
@property
|
836
|
+
@pulumi.getter(name="listenerPort")
|
837
|
+
def listener_port(self) -> Optional[pulumi.Input[str]]:
|
838
|
+
"""
|
839
|
+
The port number configured for the listener on the Exadata VM cluster on Exascale Infrastructure.
|
840
|
+
"""
|
841
|
+
return pulumi.get(self, "listener_port")
|
842
|
+
|
843
|
+
@listener_port.setter
|
844
|
+
def listener_port(self, value: Optional[pulumi.Input[str]]):
|
845
|
+
pulumi.set(self, "listener_port", value)
|
846
|
+
|
847
|
+
@property
|
848
|
+
@pulumi.getter(name="nodeConfig")
|
849
|
+
def node_config(self) -> Optional[pulumi.Input['ExadbVmClusterNodeConfigArgs']]:
|
850
|
+
"""
|
851
|
+
(Updatable) The configuration of each node in the Exadata VM cluster on Exascale Infrastructure.
|
852
|
+
"""
|
853
|
+
return pulumi.get(self, "node_config")
|
854
|
+
|
855
|
+
@node_config.setter
|
856
|
+
def node_config(self, value: Optional[pulumi.Input['ExadbVmClusterNodeConfigArgs']]):
|
857
|
+
pulumi.set(self, "node_config", value)
|
858
|
+
|
859
|
+
@property
|
860
|
+
@pulumi.getter(name="nodeResources")
|
861
|
+
def node_resources(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ExadbVmClusterNodeResourceArgs']]]]:
|
862
|
+
"""
|
863
|
+
Each `node_resource` represents a node in the Exadata VM cluster on Exascale Infrastructure.
|
864
|
+
"""
|
865
|
+
return pulumi.get(self, "node_resources")
|
866
|
+
|
867
|
+
@node_resources.setter
|
868
|
+
def node_resources(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ExadbVmClusterNodeResourceArgs']]]]):
|
869
|
+
pulumi.set(self, "node_resources", value)
|
870
|
+
|
871
|
+
@property
|
872
|
+
@pulumi.getter(name="nsgIds")
|
873
|
+
def nsg_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
874
|
+
"""
|
875
|
+
(Updatable) The list of [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see [Security Rules](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/securityrules.htm). **NsgIds restrictions:**
|
876
|
+
* A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
|
877
|
+
"""
|
878
|
+
return pulumi.get(self, "nsg_ids")
|
879
|
+
|
880
|
+
@nsg_ids.setter
|
881
|
+
def nsg_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
882
|
+
pulumi.set(self, "nsg_ids", value)
|
883
|
+
|
884
|
+
@property
|
885
|
+
@pulumi.getter(name="privateZoneId")
|
886
|
+
def private_zone_id(self) -> Optional[pulumi.Input[str]]:
|
887
|
+
"""
|
888
|
+
The private zone ID in which you want DNS records to be created.
|
889
|
+
"""
|
890
|
+
return pulumi.get(self, "private_zone_id")
|
891
|
+
|
892
|
+
@private_zone_id.setter
|
893
|
+
def private_zone_id(self, value: Optional[pulumi.Input[str]]):
|
894
|
+
pulumi.set(self, "private_zone_id", value)
|
895
|
+
|
896
|
+
@property
|
897
|
+
@pulumi.getter(name="scanDnsName")
|
898
|
+
def scan_dns_name(self) -> Optional[pulumi.Input[str]]:
|
899
|
+
"""
|
900
|
+
The FQDN of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
|
901
|
+
"""
|
902
|
+
return pulumi.get(self, "scan_dns_name")
|
903
|
+
|
904
|
+
@scan_dns_name.setter
|
905
|
+
def scan_dns_name(self, value: Optional[pulumi.Input[str]]):
|
906
|
+
pulumi.set(self, "scan_dns_name", value)
|
907
|
+
|
908
|
+
@property
|
909
|
+
@pulumi.getter(name="scanDnsRecordId")
|
910
|
+
def scan_dns_record_id(self) -> Optional[pulumi.Input[str]]:
|
911
|
+
"""
|
912
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
|
913
|
+
"""
|
914
|
+
return pulumi.get(self, "scan_dns_record_id")
|
915
|
+
|
916
|
+
@scan_dns_record_id.setter
|
917
|
+
def scan_dns_record_id(self, value: Optional[pulumi.Input[str]]):
|
918
|
+
pulumi.set(self, "scan_dns_record_id", value)
|
919
|
+
|
920
|
+
@property
|
921
|
+
@pulumi.getter(name="scanIpIds")
|
922
|
+
def scan_ip_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
923
|
+
"""
|
924
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Single Client Access Name (SCAN) IP addresses associated with the Exadata VM cluster on Exascale Infrastructure. SCAN IP 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.
|
925
|
+
"""
|
926
|
+
return pulumi.get(self, "scan_ip_ids")
|
927
|
+
|
928
|
+
@scan_ip_ids.setter
|
929
|
+
def scan_ip_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
930
|
+
pulumi.set(self, "scan_ip_ids", value)
|
931
|
+
|
932
|
+
@property
|
933
|
+
@pulumi.getter(name="scanListenerPortTcp")
|
934
|
+
def scan_listener_port_tcp(self) -> Optional[pulumi.Input[int]]:
|
935
|
+
"""
|
936
|
+
The TCP Single Client Access Name (SCAN) port. The default port is 1521.
|
937
|
+
"""
|
938
|
+
return pulumi.get(self, "scan_listener_port_tcp")
|
939
|
+
|
940
|
+
@scan_listener_port_tcp.setter
|
941
|
+
def scan_listener_port_tcp(self, value: Optional[pulumi.Input[int]]):
|
942
|
+
pulumi.set(self, "scan_listener_port_tcp", value)
|
943
|
+
|
944
|
+
@property
|
945
|
+
@pulumi.getter(name="scanListenerPortTcpSsl")
|
946
|
+
def scan_listener_port_tcp_ssl(self) -> Optional[pulumi.Input[int]]:
|
947
|
+
"""
|
948
|
+
The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
|
949
|
+
"""
|
950
|
+
return pulumi.get(self, "scan_listener_port_tcp_ssl")
|
951
|
+
|
952
|
+
@scan_listener_port_tcp_ssl.setter
|
953
|
+
def scan_listener_port_tcp_ssl(self, value: Optional[pulumi.Input[int]]):
|
954
|
+
pulumi.set(self, "scan_listener_port_tcp_ssl", value)
|
955
|
+
|
956
|
+
@property
|
957
|
+
@pulumi.getter
|
958
|
+
def shape(self) -> Optional[pulumi.Input[str]]:
|
959
|
+
"""
|
960
|
+
The shape of the Exadata VM cluster on Exascale Infrastructure resource
|
961
|
+
"""
|
962
|
+
return pulumi.get(self, "shape")
|
963
|
+
|
964
|
+
@shape.setter
|
965
|
+
def shape(self, value: Optional[pulumi.Input[str]]):
|
966
|
+
pulumi.set(self, "shape", value)
|
967
|
+
|
968
|
+
@property
|
969
|
+
@pulumi.getter(name="sshPublicKeys")
|
970
|
+
def ssh_public_keys(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
971
|
+
"""
|
972
|
+
(Updatable) The public key portion of one or more key pairs used for SSH access to the Exadata VM cluster on Exascale Infrastructure.
|
973
|
+
"""
|
974
|
+
return pulumi.get(self, "ssh_public_keys")
|
975
|
+
|
976
|
+
@ssh_public_keys.setter
|
977
|
+
def ssh_public_keys(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
978
|
+
pulumi.set(self, "ssh_public_keys", value)
|
979
|
+
|
980
|
+
@property
|
981
|
+
@pulumi.getter
|
982
|
+
def state(self) -> Optional[pulumi.Input[str]]:
|
983
|
+
"""
|
984
|
+
The current state of the Exadata VM cluster on Exascale Infrastructure.
|
985
|
+
"""
|
986
|
+
return pulumi.get(self, "state")
|
987
|
+
|
988
|
+
@state.setter
|
989
|
+
def state(self, value: Optional[pulumi.Input[str]]):
|
990
|
+
pulumi.set(self, "state", value)
|
991
|
+
|
992
|
+
@property
|
993
|
+
@pulumi.getter(name="subnetId")
|
994
|
+
def subnet_id(self) -> Optional[pulumi.Input[str]]:
|
995
|
+
"""
|
996
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
|
997
|
+
"""
|
998
|
+
return pulumi.get(self, "subnet_id")
|
999
|
+
|
1000
|
+
@subnet_id.setter
|
1001
|
+
def subnet_id(self, value: Optional[pulumi.Input[str]]):
|
1002
|
+
pulumi.set(self, "subnet_id", value)
|
1003
|
+
|
1004
|
+
@property
|
1005
|
+
@pulumi.getter(name="systemTags")
|
1006
|
+
def system_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
|
1007
|
+
"""
|
1008
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
|
1009
|
+
"""
|
1010
|
+
return pulumi.get(self, "system_tags")
|
1011
|
+
|
1012
|
+
@system_tags.setter
|
1013
|
+
def system_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
|
1014
|
+
pulumi.set(self, "system_tags", value)
|
1015
|
+
|
1016
|
+
@property
|
1017
|
+
@pulumi.getter(name="systemVersion")
|
1018
|
+
def system_version(self) -> Optional[pulumi.Input[str]]:
|
1019
|
+
"""
|
1020
|
+
(Updatable) Operating system version of the image.
|
1021
|
+
"""
|
1022
|
+
return pulumi.get(self, "system_version")
|
1023
|
+
|
1024
|
+
@system_version.setter
|
1025
|
+
def system_version(self, value: Optional[pulumi.Input[str]]):
|
1026
|
+
pulumi.set(self, "system_version", value)
|
1027
|
+
|
1028
|
+
@property
|
1029
|
+
@pulumi.getter(name="timeCreated")
|
1030
|
+
def time_created(self) -> Optional[pulumi.Input[str]]:
|
1031
|
+
"""
|
1032
|
+
The date and time that the Exadata VM cluster on Exascale Infrastructure was created.
|
1033
|
+
"""
|
1034
|
+
return pulumi.get(self, "time_created")
|
1035
|
+
|
1036
|
+
@time_created.setter
|
1037
|
+
def time_created(self, value: Optional[pulumi.Input[str]]):
|
1038
|
+
pulumi.set(self, "time_created", value)
|
1039
|
+
|
1040
|
+
@property
|
1041
|
+
@pulumi.getter(name="timeZone")
|
1042
|
+
def time_zone(self) -> Optional[pulumi.Input[str]]:
|
1043
|
+
"""
|
1044
|
+
The time zone to use for the Exadata VM cluster on Exascale Infrastructure. For details, see [Time Zones](https://docs.cloud.oracle.com/iaas/Content/Database/References/timezones.htm).
|
1045
|
+
|
1046
|
+
|
1047
|
+
** IMPORTANT **
|
1048
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
1049
|
+
"""
|
1050
|
+
return pulumi.get(self, "time_zone")
|
1051
|
+
|
1052
|
+
@time_zone.setter
|
1053
|
+
def time_zone(self, value: Optional[pulumi.Input[str]]):
|
1054
|
+
pulumi.set(self, "time_zone", value)
|
1055
|
+
|
1056
|
+
@property
|
1057
|
+
@pulumi.getter(name="vipIds")
|
1058
|
+
def vip_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
1059
|
+
"""
|
1060
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the virtual IP (VIP) addresses associated with the Exadata VM cluster on Exascale Infrastructure. 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, then the VIP is reassigned to another active node in the cluster.
|
1061
|
+
"""
|
1062
|
+
return pulumi.get(self, "vip_ids")
|
1063
|
+
|
1064
|
+
@vip_ids.setter
|
1065
|
+
def vip_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
1066
|
+
pulumi.set(self, "vip_ids", value)
|
1067
|
+
|
1068
|
+
@property
|
1069
|
+
@pulumi.getter(name="zoneId")
|
1070
|
+
def zone_id(self) -> Optional[pulumi.Input[str]]:
|
1071
|
+
"""
|
1072
|
+
The OCID of the zone with which the Exadata VM cluster on Exascale Infrastructure is associated.
|
1073
|
+
"""
|
1074
|
+
return pulumi.get(self, "zone_id")
|
1075
|
+
|
1076
|
+
@zone_id.setter
|
1077
|
+
def zone_id(self, value: Optional[pulumi.Input[str]]):
|
1078
|
+
pulumi.set(self, "zone_id", value)
|
1079
|
+
|
1080
|
+
|
1081
|
+
class ExadbVmCluster(pulumi.CustomResource):
|
1082
|
+
@overload
|
1083
|
+
def __init__(__self__,
|
1084
|
+
resource_name: str,
|
1085
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
1086
|
+
availability_domain: Optional[pulumi.Input[str]] = None,
|
1087
|
+
backup_network_nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1088
|
+
backup_subnet_id: Optional[pulumi.Input[str]] = None,
|
1089
|
+
cluster_name: Optional[pulumi.Input[str]] = None,
|
1090
|
+
compartment_id: Optional[pulumi.Input[str]] = None,
|
1091
|
+
data_collection_options: Optional[pulumi.Input[pulumi.InputType['ExadbVmClusterDataCollectionOptionsArgs']]] = None,
|
1092
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
1093
|
+
display_name: Optional[pulumi.Input[str]] = None,
|
1094
|
+
domain: Optional[pulumi.Input[str]] = None,
|
1095
|
+
exascale_db_storage_vault_id: Optional[pulumi.Input[str]] = None,
|
1096
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
1097
|
+
grid_image_id: Optional[pulumi.Input[str]] = None,
|
1098
|
+
hostname: Optional[pulumi.Input[str]] = None,
|
1099
|
+
license_model: Optional[pulumi.Input[str]] = None,
|
1100
|
+
node_config: Optional[pulumi.Input[pulumi.InputType['ExadbVmClusterNodeConfigArgs']]] = None,
|
1101
|
+
node_resources: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ExadbVmClusterNodeResourceArgs']]]]] = None,
|
1102
|
+
nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1103
|
+
private_zone_id: Optional[pulumi.Input[str]] = None,
|
1104
|
+
scan_listener_port_tcp: Optional[pulumi.Input[int]] = None,
|
1105
|
+
scan_listener_port_tcp_ssl: Optional[pulumi.Input[int]] = None,
|
1106
|
+
shape: Optional[pulumi.Input[str]] = None,
|
1107
|
+
ssh_public_keys: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1108
|
+
subnet_id: Optional[pulumi.Input[str]] = None,
|
1109
|
+
system_version: Optional[pulumi.Input[str]] = None,
|
1110
|
+
time_zone: Optional[pulumi.Input[str]] = None,
|
1111
|
+
__props__=None):
|
1112
|
+
"""
|
1113
|
+
This resource provides the Exadb Vm Cluster resource in Oracle Cloud Infrastructure Database service.
|
1114
|
+
|
1115
|
+
Creates an Exadata VM cluster on Exascale Infrastructure
|
1116
|
+
|
1117
|
+
## Import
|
1118
|
+
|
1119
|
+
ExadbVmClusters can be imported using the `id`, e.g.
|
1120
|
+
|
1121
|
+
```sh
|
1122
|
+
$ pulumi import oci:Database/exadbVmCluster:ExadbVmCluster test_exadb_vm_cluster "id"
|
1123
|
+
```
|
1124
|
+
|
1125
|
+
:param str resource_name: The name of the resource.
|
1126
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
1127
|
+
:param pulumi.Input[str] availability_domain: The name of the availability domain in which the Exadata VM cluster on Exascale Infrastructure is located.
|
1128
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] backup_network_nsg_ids: (Updatable) A list of the [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see [Security Rules](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/securityrules.htm). Applicable only to Exadata systems.
|
1129
|
+
:param pulumi.Input[str] backup_subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup network subnet associated with the Exadata VM cluster on Exascale Infrastructure.
|
1130
|
+
:param pulumi.Input[str] cluster_name: The cluster name for Exadata VM cluster on Exascale Infrastructure. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
|
1131
|
+
:param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
1132
|
+
:param pulumi.Input[pulumi.InputType['ExadbVmClusterDataCollectionOptionsArgs']] data_collection_options: (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
|
1133
|
+
:param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
|
1134
|
+
:param pulumi.Input[str] display_name: (Updatable) The user-friendly name for the Exadata VM cluster on Exascale Infrastructure. The name does not need to be unique.
|
1135
|
+
:param pulumi.Input[str] domain: A domain name used for the Exadata VM cluster on Exascale Infrastructure. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, then the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted. Applies to Exadata Database Service on Exascale Infrastructure only.
|
1136
|
+
:param pulumi.Input[str] exascale_db_storage_vault_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata Database Storage Vault.
|
1137
|
+
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
1138
|
+
:param pulumi.Input[str] grid_image_id: (Updatable) Grid Setup will be done using this grid image id
|
1139
|
+
:param pulumi.Input[str] hostname: The hostname for the Exadata VM cluster on Exascale Infrastructure. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). For Exadata systems, the maximum length of the hostname is 12 characters.
|
1140
|
+
|
1141
|
+
The maximum length of the combined hostname and domain is 63 characters.
|
1142
|
+
|
1143
|
+
**Note:** The hostname must be unique within the subnet. If it is not unique, then the Exadata VM cluster on Exascale Infrastructure will fail to provision.
|
1144
|
+
:param pulumi.Input[str] license_model: (Updatable) The Oracle license model that applies to the Exadata VM cluster on Exascale Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
|
1145
|
+
:param pulumi.Input[pulumi.InputType['ExadbVmClusterNodeConfigArgs']] node_config: (Updatable) The configuration of each node in the Exadata VM cluster on Exascale Infrastructure.
|
1146
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ExadbVmClusterNodeResourceArgs']]]] node_resources: Each `node_resource` represents a node in the Exadata VM cluster on Exascale Infrastructure.
|
1147
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] nsg_ids: (Updatable) The list of [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see [Security Rules](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/securityrules.htm). **NsgIds restrictions:**
|
1148
|
+
* A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
|
1149
|
+
:param pulumi.Input[str] private_zone_id: The private zone ID in which you want DNS records to be created.
|
1150
|
+
:param pulumi.Input[int] scan_listener_port_tcp: The TCP Single Client Access Name (SCAN) port. The default port is 1521.
|
1151
|
+
:param pulumi.Input[int] scan_listener_port_tcp_ssl: The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
|
1152
|
+
:param pulumi.Input[str] shape: The shape of the Exadata VM cluster on Exascale Infrastructure resource
|
1153
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] ssh_public_keys: (Updatable) The public key portion of one or more key pairs used for SSH access to the Exadata VM cluster on Exascale Infrastructure.
|
1154
|
+
:param pulumi.Input[str] subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
|
1155
|
+
:param pulumi.Input[str] system_version: (Updatable) Operating system version of the image.
|
1156
|
+
:param pulumi.Input[str] time_zone: The time zone to use for the Exadata VM cluster on Exascale Infrastructure. For details, see [Time Zones](https://docs.cloud.oracle.com/iaas/Content/Database/References/timezones.htm).
|
1157
|
+
|
1158
|
+
|
1159
|
+
** IMPORTANT **
|
1160
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
1161
|
+
"""
|
1162
|
+
...
|
1163
|
+
@overload
|
1164
|
+
def __init__(__self__,
|
1165
|
+
resource_name: str,
|
1166
|
+
args: ExadbVmClusterArgs,
|
1167
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
1168
|
+
"""
|
1169
|
+
This resource provides the Exadb Vm Cluster resource in Oracle Cloud Infrastructure Database service.
|
1170
|
+
|
1171
|
+
Creates an Exadata VM cluster on Exascale Infrastructure
|
1172
|
+
|
1173
|
+
## Import
|
1174
|
+
|
1175
|
+
ExadbVmClusters can be imported using the `id`, e.g.
|
1176
|
+
|
1177
|
+
```sh
|
1178
|
+
$ pulumi import oci:Database/exadbVmCluster:ExadbVmCluster test_exadb_vm_cluster "id"
|
1179
|
+
```
|
1180
|
+
|
1181
|
+
:param str resource_name: The name of the resource.
|
1182
|
+
:param ExadbVmClusterArgs args: The arguments to use to populate this resource's properties.
|
1183
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
1184
|
+
"""
|
1185
|
+
...
|
1186
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
1187
|
+
resource_args, opts = _utilities.get_resource_args_opts(ExadbVmClusterArgs, pulumi.ResourceOptions, *args, **kwargs)
|
1188
|
+
if resource_args is not None:
|
1189
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
1190
|
+
else:
|
1191
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
1192
|
+
|
1193
|
+
def _internal_init(__self__,
|
1194
|
+
resource_name: str,
|
1195
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
1196
|
+
availability_domain: Optional[pulumi.Input[str]] = None,
|
1197
|
+
backup_network_nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1198
|
+
backup_subnet_id: Optional[pulumi.Input[str]] = None,
|
1199
|
+
cluster_name: Optional[pulumi.Input[str]] = None,
|
1200
|
+
compartment_id: Optional[pulumi.Input[str]] = None,
|
1201
|
+
data_collection_options: Optional[pulumi.Input[pulumi.InputType['ExadbVmClusterDataCollectionOptionsArgs']]] = None,
|
1202
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
1203
|
+
display_name: Optional[pulumi.Input[str]] = None,
|
1204
|
+
domain: Optional[pulumi.Input[str]] = None,
|
1205
|
+
exascale_db_storage_vault_id: Optional[pulumi.Input[str]] = None,
|
1206
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
1207
|
+
grid_image_id: Optional[pulumi.Input[str]] = None,
|
1208
|
+
hostname: Optional[pulumi.Input[str]] = None,
|
1209
|
+
license_model: Optional[pulumi.Input[str]] = None,
|
1210
|
+
node_config: Optional[pulumi.Input[pulumi.InputType['ExadbVmClusterNodeConfigArgs']]] = None,
|
1211
|
+
node_resources: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ExadbVmClusterNodeResourceArgs']]]]] = None,
|
1212
|
+
nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1213
|
+
private_zone_id: Optional[pulumi.Input[str]] = None,
|
1214
|
+
scan_listener_port_tcp: Optional[pulumi.Input[int]] = None,
|
1215
|
+
scan_listener_port_tcp_ssl: Optional[pulumi.Input[int]] = None,
|
1216
|
+
shape: Optional[pulumi.Input[str]] = None,
|
1217
|
+
ssh_public_keys: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1218
|
+
subnet_id: Optional[pulumi.Input[str]] = None,
|
1219
|
+
system_version: Optional[pulumi.Input[str]] = None,
|
1220
|
+
time_zone: Optional[pulumi.Input[str]] = None,
|
1221
|
+
__props__=None):
|
1222
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
1223
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
1224
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
1225
|
+
if opts.id is None:
|
1226
|
+
if __props__ is not None:
|
1227
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
1228
|
+
__props__ = ExadbVmClusterArgs.__new__(ExadbVmClusterArgs)
|
1229
|
+
|
1230
|
+
if availability_domain is None and not opts.urn:
|
1231
|
+
raise TypeError("Missing required property 'availability_domain'")
|
1232
|
+
__props__.__dict__["availability_domain"] = availability_domain
|
1233
|
+
__props__.__dict__["backup_network_nsg_ids"] = backup_network_nsg_ids
|
1234
|
+
if backup_subnet_id is None and not opts.urn:
|
1235
|
+
raise TypeError("Missing required property 'backup_subnet_id'")
|
1236
|
+
__props__.__dict__["backup_subnet_id"] = backup_subnet_id
|
1237
|
+
__props__.__dict__["cluster_name"] = cluster_name
|
1238
|
+
if compartment_id is None and not opts.urn:
|
1239
|
+
raise TypeError("Missing required property 'compartment_id'")
|
1240
|
+
__props__.__dict__["compartment_id"] = compartment_id
|
1241
|
+
__props__.__dict__["data_collection_options"] = data_collection_options
|
1242
|
+
__props__.__dict__["defined_tags"] = defined_tags
|
1243
|
+
if display_name is None and not opts.urn:
|
1244
|
+
raise TypeError("Missing required property 'display_name'")
|
1245
|
+
__props__.__dict__["display_name"] = display_name
|
1246
|
+
__props__.__dict__["domain"] = domain
|
1247
|
+
if exascale_db_storage_vault_id is None and not opts.urn:
|
1248
|
+
raise TypeError("Missing required property 'exascale_db_storage_vault_id'")
|
1249
|
+
__props__.__dict__["exascale_db_storage_vault_id"] = exascale_db_storage_vault_id
|
1250
|
+
__props__.__dict__["freeform_tags"] = freeform_tags
|
1251
|
+
if grid_image_id is None and not opts.urn:
|
1252
|
+
raise TypeError("Missing required property 'grid_image_id'")
|
1253
|
+
__props__.__dict__["grid_image_id"] = grid_image_id
|
1254
|
+
if hostname is None and not opts.urn:
|
1255
|
+
raise TypeError("Missing required property 'hostname'")
|
1256
|
+
__props__.__dict__["hostname"] = hostname
|
1257
|
+
__props__.__dict__["license_model"] = license_model
|
1258
|
+
if node_config is None and not opts.urn:
|
1259
|
+
raise TypeError("Missing required property 'node_config'")
|
1260
|
+
__props__.__dict__["node_config"] = node_config
|
1261
|
+
__props__.__dict__["node_resources"] = node_resources
|
1262
|
+
__props__.__dict__["nsg_ids"] = nsg_ids
|
1263
|
+
__props__.__dict__["private_zone_id"] = private_zone_id
|
1264
|
+
__props__.__dict__["scan_listener_port_tcp"] = scan_listener_port_tcp
|
1265
|
+
__props__.__dict__["scan_listener_port_tcp_ssl"] = scan_listener_port_tcp_ssl
|
1266
|
+
if shape is None and not opts.urn:
|
1267
|
+
raise TypeError("Missing required property 'shape'")
|
1268
|
+
__props__.__dict__["shape"] = shape
|
1269
|
+
if ssh_public_keys is None and not opts.urn:
|
1270
|
+
raise TypeError("Missing required property 'ssh_public_keys'")
|
1271
|
+
__props__.__dict__["ssh_public_keys"] = ssh_public_keys
|
1272
|
+
if subnet_id is None and not opts.urn:
|
1273
|
+
raise TypeError("Missing required property 'subnet_id'")
|
1274
|
+
__props__.__dict__["subnet_id"] = subnet_id
|
1275
|
+
__props__.__dict__["system_version"] = system_version
|
1276
|
+
__props__.__dict__["time_zone"] = time_zone
|
1277
|
+
__props__.__dict__["gi_version"] = None
|
1278
|
+
__props__.__dict__["grid_image_type"] = None
|
1279
|
+
__props__.__dict__["iorm_config_caches"] = None
|
1280
|
+
__props__.__dict__["last_update_history_entry_id"] = None
|
1281
|
+
__props__.__dict__["lifecycle_details"] = None
|
1282
|
+
__props__.__dict__["listener_port"] = None
|
1283
|
+
__props__.__dict__["scan_dns_name"] = None
|
1284
|
+
__props__.__dict__["scan_dns_record_id"] = None
|
1285
|
+
__props__.__dict__["scan_ip_ids"] = None
|
1286
|
+
__props__.__dict__["state"] = None
|
1287
|
+
__props__.__dict__["system_tags"] = None
|
1288
|
+
__props__.__dict__["time_created"] = None
|
1289
|
+
__props__.__dict__["vip_ids"] = None
|
1290
|
+
__props__.__dict__["zone_id"] = None
|
1291
|
+
super(ExadbVmCluster, __self__).__init__(
|
1292
|
+
'oci:Database/exadbVmCluster:ExadbVmCluster',
|
1293
|
+
resource_name,
|
1294
|
+
__props__,
|
1295
|
+
opts)
|
1296
|
+
|
1297
|
+
@staticmethod
|
1298
|
+
def get(resource_name: str,
|
1299
|
+
id: pulumi.Input[str],
|
1300
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
1301
|
+
availability_domain: Optional[pulumi.Input[str]] = None,
|
1302
|
+
backup_network_nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1303
|
+
backup_subnet_id: Optional[pulumi.Input[str]] = None,
|
1304
|
+
cluster_name: Optional[pulumi.Input[str]] = None,
|
1305
|
+
compartment_id: Optional[pulumi.Input[str]] = None,
|
1306
|
+
data_collection_options: Optional[pulumi.Input[pulumi.InputType['ExadbVmClusterDataCollectionOptionsArgs']]] = None,
|
1307
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
1308
|
+
display_name: Optional[pulumi.Input[str]] = None,
|
1309
|
+
domain: Optional[pulumi.Input[str]] = None,
|
1310
|
+
exascale_db_storage_vault_id: Optional[pulumi.Input[str]] = None,
|
1311
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
1312
|
+
gi_version: Optional[pulumi.Input[str]] = None,
|
1313
|
+
grid_image_id: Optional[pulumi.Input[str]] = None,
|
1314
|
+
grid_image_type: Optional[pulumi.Input[str]] = None,
|
1315
|
+
hostname: Optional[pulumi.Input[str]] = None,
|
1316
|
+
iorm_config_caches: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ExadbVmClusterIormConfigCachArgs']]]]] = None,
|
1317
|
+
last_update_history_entry_id: Optional[pulumi.Input[str]] = None,
|
1318
|
+
license_model: Optional[pulumi.Input[str]] = None,
|
1319
|
+
lifecycle_details: Optional[pulumi.Input[str]] = None,
|
1320
|
+
listener_port: Optional[pulumi.Input[str]] = None,
|
1321
|
+
node_config: Optional[pulumi.Input[pulumi.InputType['ExadbVmClusterNodeConfigArgs']]] = None,
|
1322
|
+
node_resources: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ExadbVmClusterNodeResourceArgs']]]]] = None,
|
1323
|
+
nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1324
|
+
private_zone_id: Optional[pulumi.Input[str]] = None,
|
1325
|
+
scan_dns_name: Optional[pulumi.Input[str]] = None,
|
1326
|
+
scan_dns_record_id: Optional[pulumi.Input[str]] = None,
|
1327
|
+
scan_ip_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1328
|
+
scan_listener_port_tcp: Optional[pulumi.Input[int]] = None,
|
1329
|
+
scan_listener_port_tcp_ssl: Optional[pulumi.Input[int]] = None,
|
1330
|
+
shape: Optional[pulumi.Input[str]] = None,
|
1331
|
+
ssh_public_keys: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1332
|
+
state: Optional[pulumi.Input[str]] = None,
|
1333
|
+
subnet_id: Optional[pulumi.Input[str]] = None,
|
1334
|
+
system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
1335
|
+
system_version: Optional[pulumi.Input[str]] = None,
|
1336
|
+
time_created: Optional[pulumi.Input[str]] = None,
|
1337
|
+
time_zone: Optional[pulumi.Input[str]] = None,
|
1338
|
+
vip_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1339
|
+
zone_id: Optional[pulumi.Input[str]] = None) -> 'ExadbVmCluster':
|
1340
|
+
"""
|
1341
|
+
Get an existing ExadbVmCluster resource's state with the given name, id, and optional extra
|
1342
|
+
properties used to qualify the lookup.
|
1343
|
+
|
1344
|
+
:param str resource_name: The unique name of the resulting resource.
|
1345
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
1346
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
1347
|
+
:param pulumi.Input[str] availability_domain: The name of the availability domain in which the Exadata VM cluster on Exascale Infrastructure is located.
|
1348
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] backup_network_nsg_ids: (Updatable) A list of the [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see [Security Rules](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/securityrules.htm). Applicable only to Exadata systems.
|
1349
|
+
:param pulumi.Input[str] backup_subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup network subnet associated with the Exadata VM cluster on Exascale Infrastructure.
|
1350
|
+
:param pulumi.Input[str] cluster_name: The cluster name for Exadata VM cluster on Exascale Infrastructure. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
|
1351
|
+
:param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
1352
|
+
:param pulumi.Input[pulumi.InputType['ExadbVmClusterDataCollectionOptionsArgs']] data_collection_options: (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
|
1353
|
+
:param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
|
1354
|
+
:param pulumi.Input[str] display_name: (Updatable) The user-friendly name for the Exadata VM cluster on Exascale Infrastructure. The name does not need to be unique.
|
1355
|
+
:param pulumi.Input[str] domain: A domain name used for the Exadata VM cluster on Exascale Infrastructure. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, then the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted. Applies to Exadata Database Service on Exascale Infrastructure only.
|
1356
|
+
:param pulumi.Input[str] exascale_db_storage_vault_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata Database Storage Vault.
|
1357
|
+
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
1358
|
+
:param pulumi.Input[str] gi_version: A valid Oracle Grid Infrastructure (GI) software version.
|
1359
|
+
:param pulumi.Input[str] grid_image_id: (Updatable) Grid Setup will be done using this grid image id
|
1360
|
+
:param pulumi.Input[str] grid_image_type: The type of Grid Image
|
1361
|
+
:param pulumi.Input[str] hostname: The hostname for the Exadata VM cluster on Exascale Infrastructure. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). For Exadata systems, the maximum length of the hostname is 12 characters.
|
1362
|
+
|
1363
|
+
The maximum length of the combined hostname and domain is 63 characters.
|
1364
|
+
|
1365
|
+
**Note:** The hostname must be unique within the subnet. If it is not unique, then the Exadata VM cluster on Exascale Infrastructure will fail to provision.
|
1366
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ExadbVmClusterIormConfigCachArgs']]]] iorm_config_caches: The IORM settings of the Exadata DB system.
|
1367
|
+
:param pulumi.Input[str] last_update_history_entry_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the last maintenance update history entry. This value is updated when a maintenance update starts.
|
1368
|
+
:param pulumi.Input[str] license_model: (Updatable) The Oracle license model that applies to the Exadata VM cluster on Exascale Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
|
1369
|
+
:param pulumi.Input[str] lifecycle_details: Additional information about the current lifecycle state.
|
1370
|
+
:param pulumi.Input[str] listener_port: The port number configured for the listener on the Exadata VM cluster on Exascale Infrastructure.
|
1371
|
+
:param pulumi.Input[pulumi.InputType['ExadbVmClusterNodeConfigArgs']] node_config: (Updatable) The configuration of each node in the Exadata VM cluster on Exascale Infrastructure.
|
1372
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ExadbVmClusterNodeResourceArgs']]]] node_resources: Each `node_resource` represents a node in the Exadata VM cluster on Exascale Infrastructure.
|
1373
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] nsg_ids: (Updatable) The list of [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see [Security Rules](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/securityrules.htm). **NsgIds restrictions:**
|
1374
|
+
* A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
|
1375
|
+
:param pulumi.Input[str] private_zone_id: The private zone ID in which you want DNS records to be created.
|
1376
|
+
:param pulumi.Input[str] scan_dns_name: The FQDN of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
|
1377
|
+
:param pulumi.Input[str] scan_dns_record_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
|
1378
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] scan_ip_ids: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Single Client Access Name (SCAN) IP addresses associated with the Exadata VM cluster on Exascale Infrastructure. SCAN IP 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.
|
1379
|
+
:param pulumi.Input[int] scan_listener_port_tcp: The TCP Single Client Access Name (SCAN) port. The default port is 1521.
|
1380
|
+
:param pulumi.Input[int] scan_listener_port_tcp_ssl: The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
|
1381
|
+
:param pulumi.Input[str] shape: The shape of the Exadata VM cluster on Exascale Infrastructure resource
|
1382
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] ssh_public_keys: (Updatable) The public key portion of one or more key pairs used for SSH access to the Exadata VM cluster on Exascale Infrastructure.
|
1383
|
+
:param pulumi.Input[str] state: The current state of the Exadata VM cluster on Exascale Infrastructure.
|
1384
|
+
:param pulumi.Input[str] subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
|
1385
|
+
:param pulumi.Input[Mapping[str, Any]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
|
1386
|
+
:param pulumi.Input[str] system_version: (Updatable) Operating system version of the image.
|
1387
|
+
:param pulumi.Input[str] time_created: The date and time that the Exadata VM cluster on Exascale Infrastructure was created.
|
1388
|
+
:param pulumi.Input[str] time_zone: The time zone to use for the Exadata VM cluster on Exascale Infrastructure. For details, see [Time Zones](https://docs.cloud.oracle.com/iaas/Content/Database/References/timezones.htm).
|
1389
|
+
|
1390
|
+
|
1391
|
+
** IMPORTANT **
|
1392
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
1393
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] vip_ids: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the virtual IP (VIP) addresses associated with the Exadata VM cluster on Exascale Infrastructure. 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, then the VIP is reassigned to another active node in the cluster.
|
1394
|
+
:param pulumi.Input[str] zone_id: The OCID of the zone with which the Exadata VM cluster on Exascale Infrastructure is associated.
|
1395
|
+
"""
|
1396
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
1397
|
+
|
1398
|
+
__props__ = _ExadbVmClusterState.__new__(_ExadbVmClusterState)
|
1399
|
+
|
1400
|
+
__props__.__dict__["availability_domain"] = availability_domain
|
1401
|
+
__props__.__dict__["backup_network_nsg_ids"] = backup_network_nsg_ids
|
1402
|
+
__props__.__dict__["backup_subnet_id"] = backup_subnet_id
|
1403
|
+
__props__.__dict__["cluster_name"] = cluster_name
|
1404
|
+
__props__.__dict__["compartment_id"] = compartment_id
|
1405
|
+
__props__.__dict__["data_collection_options"] = data_collection_options
|
1406
|
+
__props__.__dict__["defined_tags"] = defined_tags
|
1407
|
+
__props__.__dict__["display_name"] = display_name
|
1408
|
+
__props__.__dict__["domain"] = domain
|
1409
|
+
__props__.__dict__["exascale_db_storage_vault_id"] = exascale_db_storage_vault_id
|
1410
|
+
__props__.__dict__["freeform_tags"] = freeform_tags
|
1411
|
+
__props__.__dict__["gi_version"] = gi_version
|
1412
|
+
__props__.__dict__["grid_image_id"] = grid_image_id
|
1413
|
+
__props__.__dict__["grid_image_type"] = grid_image_type
|
1414
|
+
__props__.__dict__["hostname"] = hostname
|
1415
|
+
__props__.__dict__["iorm_config_caches"] = iorm_config_caches
|
1416
|
+
__props__.__dict__["last_update_history_entry_id"] = last_update_history_entry_id
|
1417
|
+
__props__.__dict__["license_model"] = license_model
|
1418
|
+
__props__.__dict__["lifecycle_details"] = lifecycle_details
|
1419
|
+
__props__.__dict__["listener_port"] = listener_port
|
1420
|
+
__props__.__dict__["node_config"] = node_config
|
1421
|
+
__props__.__dict__["node_resources"] = node_resources
|
1422
|
+
__props__.__dict__["nsg_ids"] = nsg_ids
|
1423
|
+
__props__.__dict__["private_zone_id"] = private_zone_id
|
1424
|
+
__props__.__dict__["scan_dns_name"] = scan_dns_name
|
1425
|
+
__props__.__dict__["scan_dns_record_id"] = scan_dns_record_id
|
1426
|
+
__props__.__dict__["scan_ip_ids"] = scan_ip_ids
|
1427
|
+
__props__.__dict__["scan_listener_port_tcp"] = scan_listener_port_tcp
|
1428
|
+
__props__.__dict__["scan_listener_port_tcp_ssl"] = scan_listener_port_tcp_ssl
|
1429
|
+
__props__.__dict__["shape"] = shape
|
1430
|
+
__props__.__dict__["ssh_public_keys"] = ssh_public_keys
|
1431
|
+
__props__.__dict__["state"] = state
|
1432
|
+
__props__.__dict__["subnet_id"] = subnet_id
|
1433
|
+
__props__.__dict__["system_tags"] = system_tags
|
1434
|
+
__props__.__dict__["system_version"] = system_version
|
1435
|
+
__props__.__dict__["time_created"] = time_created
|
1436
|
+
__props__.__dict__["time_zone"] = time_zone
|
1437
|
+
__props__.__dict__["vip_ids"] = vip_ids
|
1438
|
+
__props__.__dict__["zone_id"] = zone_id
|
1439
|
+
return ExadbVmCluster(resource_name, opts=opts, __props__=__props__)
|
1440
|
+
|
1441
|
+
@property
|
1442
|
+
@pulumi.getter(name="availabilityDomain")
|
1443
|
+
def availability_domain(self) -> pulumi.Output[str]:
|
1444
|
+
"""
|
1445
|
+
The name of the availability domain in which the Exadata VM cluster on Exascale Infrastructure is located.
|
1446
|
+
"""
|
1447
|
+
return pulumi.get(self, "availability_domain")
|
1448
|
+
|
1449
|
+
@property
|
1450
|
+
@pulumi.getter(name="backupNetworkNsgIds")
|
1451
|
+
def backup_network_nsg_ids(self) -> pulumi.Output[Sequence[str]]:
|
1452
|
+
"""
|
1453
|
+
(Updatable) A list of the [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see [Security Rules](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/securityrules.htm). Applicable only to Exadata systems.
|
1454
|
+
"""
|
1455
|
+
return pulumi.get(self, "backup_network_nsg_ids")
|
1456
|
+
|
1457
|
+
@property
|
1458
|
+
@pulumi.getter(name="backupSubnetId")
|
1459
|
+
def backup_subnet_id(self) -> pulumi.Output[str]:
|
1460
|
+
"""
|
1461
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup network subnet associated with the Exadata VM cluster on Exascale Infrastructure.
|
1462
|
+
"""
|
1463
|
+
return pulumi.get(self, "backup_subnet_id")
|
1464
|
+
|
1465
|
+
@property
|
1466
|
+
@pulumi.getter(name="clusterName")
|
1467
|
+
def cluster_name(self) -> pulumi.Output[str]:
|
1468
|
+
"""
|
1469
|
+
The cluster name for Exadata VM cluster on Exascale Infrastructure. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
|
1470
|
+
"""
|
1471
|
+
return pulumi.get(self, "cluster_name")
|
1472
|
+
|
1473
|
+
@property
|
1474
|
+
@pulumi.getter(name="compartmentId")
|
1475
|
+
def compartment_id(self) -> pulumi.Output[str]:
|
1476
|
+
"""
|
1477
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
1478
|
+
"""
|
1479
|
+
return pulumi.get(self, "compartment_id")
|
1480
|
+
|
1481
|
+
@property
|
1482
|
+
@pulumi.getter(name="dataCollectionOptions")
|
1483
|
+
def data_collection_options(self) -> pulumi.Output['outputs.ExadbVmClusterDataCollectionOptions']:
|
1484
|
+
"""
|
1485
|
+
(Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
|
1486
|
+
"""
|
1487
|
+
return pulumi.get(self, "data_collection_options")
|
1488
|
+
|
1489
|
+
@property
|
1490
|
+
@pulumi.getter(name="definedTags")
|
1491
|
+
def defined_tags(self) -> pulumi.Output[Mapping[str, Any]]:
|
1492
|
+
"""
|
1493
|
+
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
|
1494
|
+
"""
|
1495
|
+
return pulumi.get(self, "defined_tags")
|
1496
|
+
|
1497
|
+
@property
|
1498
|
+
@pulumi.getter(name="displayName")
|
1499
|
+
def display_name(self) -> pulumi.Output[str]:
|
1500
|
+
"""
|
1501
|
+
(Updatable) The user-friendly name for the Exadata VM cluster on Exascale Infrastructure. The name does not need to be unique.
|
1502
|
+
"""
|
1503
|
+
return pulumi.get(self, "display_name")
|
1504
|
+
|
1505
|
+
@property
|
1506
|
+
@pulumi.getter
|
1507
|
+
def domain(self) -> pulumi.Output[str]:
|
1508
|
+
"""
|
1509
|
+
A domain name used for the Exadata VM cluster on Exascale Infrastructure. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, then the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted. Applies to Exadata Database Service on Exascale Infrastructure only.
|
1510
|
+
"""
|
1511
|
+
return pulumi.get(self, "domain")
|
1512
|
+
|
1513
|
+
@property
|
1514
|
+
@pulumi.getter(name="exascaleDbStorageVaultId")
|
1515
|
+
def exascale_db_storage_vault_id(self) -> pulumi.Output[str]:
|
1516
|
+
"""
|
1517
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata Database Storage Vault.
|
1518
|
+
"""
|
1519
|
+
return pulumi.get(self, "exascale_db_storage_vault_id")
|
1520
|
+
|
1521
|
+
@property
|
1522
|
+
@pulumi.getter(name="freeformTags")
|
1523
|
+
def freeform_tags(self) -> pulumi.Output[Mapping[str, Any]]:
|
1524
|
+
"""
|
1525
|
+
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
1526
|
+
"""
|
1527
|
+
return pulumi.get(self, "freeform_tags")
|
1528
|
+
|
1529
|
+
@property
|
1530
|
+
@pulumi.getter(name="giVersion")
|
1531
|
+
def gi_version(self) -> pulumi.Output[str]:
|
1532
|
+
"""
|
1533
|
+
A valid Oracle Grid Infrastructure (GI) software version.
|
1534
|
+
"""
|
1535
|
+
return pulumi.get(self, "gi_version")
|
1536
|
+
|
1537
|
+
@property
|
1538
|
+
@pulumi.getter(name="gridImageId")
|
1539
|
+
def grid_image_id(self) -> pulumi.Output[str]:
|
1540
|
+
"""
|
1541
|
+
(Updatable) Grid Setup will be done using this grid image id
|
1542
|
+
"""
|
1543
|
+
return pulumi.get(self, "grid_image_id")
|
1544
|
+
|
1545
|
+
@property
|
1546
|
+
@pulumi.getter(name="gridImageType")
|
1547
|
+
def grid_image_type(self) -> pulumi.Output[str]:
|
1548
|
+
"""
|
1549
|
+
The type of Grid Image
|
1550
|
+
"""
|
1551
|
+
return pulumi.get(self, "grid_image_type")
|
1552
|
+
|
1553
|
+
@property
|
1554
|
+
@pulumi.getter
|
1555
|
+
def hostname(self) -> pulumi.Output[str]:
|
1556
|
+
"""
|
1557
|
+
The hostname for the Exadata VM cluster on Exascale Infrastructure. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). For Exadata systems, the maximum length of the hostname is 12 characters.
|
1558
|
+
|
1559
|
+
The maximum length of the combined hostname and domain is 63 characters.
|
1560
|
+
|
1561
|
+
**Note:** The hostname must be unique within the subnet. If it is not unique, then the Exadata VM cluster on Exascale Infrastructure will fail to provision.
|
1562
|
+
"""
|
1563
|
+
return pulumi.get(self, "hostname")
|
1564
|
+
|
1565
|
+
@property
|
1566
|
+
@pulumi.getter(name="iormConfigCaches")
|
1567
|
+
def iorm_config_caches(self) -> pulumi.Output[Sequence['outputs.ExadbVmClusterIormConfigCach']]:
|
1568
|
+
"""
|
1569
|
+
The IORM settings of the Exadata DB system.
|
1570
|
+
"""
|
1571
|
+
return pulumi.get(self, "iorm_config_caches")
|
1572
|
+
|
1573
|
+
@property
|
1574
|
+
@pulumi.getter(name="lastUpdateHistoryEntryId")
|
1575
|
+
def last_update_history_entry_id(self) -> pulumi.Output[str]:
|
1576
|
+
"""
|
1577
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the last maintenance update history entry. This value is updated when a maintenance update starts.
|
1578
|
+
"""
|
1579
|
+
return pulumi.get(self, "last_update_history_entry_id")
|
1580
|
+
|
1581
|
+
@property
|
1582
|
+
@pulumi.getter(name="licenseModel")
|
1583
|
+
def license_model(self) -> pulumi.Output[str]:
|
1584
|
+
"""
|
1585
|
+
(Updatable) The Oracle license model that applies to the Exadata VM cluster on Exascale Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
|
1586
|
+
"""
|
1587
|
+
return pulumi.get(self, "license_model")
|
1588
|
+
|
1589
|
+
@property
|
1590
|
+
@pulumi.getter(name="lifecycleDetails")
|
1591
|
+
def lifecycle_details(self) -> pulumi.Output[str]:
|
1592
|
+
"""
|
1593
|
+
Additional information about the current lifecycle state.
|
1594
|
+
"""
|
1595
|
+
return pulumi.get(self, "lifecycle_details")
|
1596
|
+
|
1597
|
+
@property
|
1598
|
+
@pulumi.getter(name="listenerPort")
|
1599
|
+
def listener_port(self) -> pulumi.Output[str]:
|
1600
|
+
"""
|
1601
|
+
The port number configured for the listener on the Exadata VM cluster on Exascale Infrastructure.
|
1602
|
+
"""
|
1603
|
+
return pulumi.get(self, "listener_port")
|
1604
|
+
|
1605
|
+
@property
|
1606
|
+
@pulumi.getter(name="nodeConfig")
|
1607
|
+
def node_config(self) -> pulumi.Output['outputs.ExadbVmClusterNodeConfig']:
|
1608
|
+
"""
|
1609
|
+
(Updatable) The configuration of each node in the Exadata VM cluster on Exascale Infrastructure.
|
1610
|
+
"""
|
1611
|
+
return pulumi.get(self, "node_config")
|
1612
|
+
|
1613
|
+
@property
|
1614
|
+
@pulumi.getter(name="nodeResources")
|
1615
|
+
def node_resources(self) -> pulumi.Output[Sequence['outputs.ExadbVmClusterNodeResource']]:
|
1616
|
+
"""
|
1617
|
+
Each `node_resource` represents a node in the Exadata VM cluster on Exascale Infrastructure.
|
1618
|
+
"""
|
1619
|
+
return pulumi.get(self, "node_resources")
|
1620
|
+
|
1621
|
+
@property
|
1622
|
+
@pulumi.getter(name="nsgIds")
|
1623
|
+
def nsg_ids(self) -> pulumi.Output[Sequence[str]]:
|
1624
|
+
"""
|
1625
|
+
(Updatable) The list of [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see [Security Rules](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/securityrules.htm). **NsgIds restrictions:**
|
1626
|
+
* A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
|
1627
|
+
"""
|
1628
|
+
return pulumi.get(self, "nsg_ids")
|
1629
|
+
|
1630
|
+
@property
|
1631
|
+
@pulumi.getter(name="privateZoneId")
|
1632
|
+
def private_zone_id(self) -> pulumi.Output[str]:
|
1633
|
+
"""
|
1634
|
+
The private zone ID in which you want DNS records to be created.
|
1635
|
+
"""
|
1636
|
+
return pulumi.get(self, "private_zone_id")
|
1637
|
+
|
1638
|
+
@property
|
1639
|
+
@pulumi.getter(name="scanDnsName")
|
1640
|
+
def scan_dns_name(self) -> pulumi.Output[str]:
|
1641
|
+
"""
|
1642
|
+
The FQDN of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
|
1643
|
+
"""
|
1644
|
+
return pulumi.get(self, "scan_dns_name")
|
1645
|
+
|
1646
|
+
@property
|
1647
|
+
@pulumi.getter(name="scanDnsRecordId")
|
1648
|
+
def scan_dns_record_id(self) -> pulumi.Output[str]:
|
1649
|
+
"""
|
1650
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
|
1651
|
+
"""
|
1652
|
+
return pulumi.get(self, "scan_dns_record_id")
|
1653
|
+
|
1654
|
+
@property
|
1655
|
+
@pulumi.getter(name="scanIpIds")
|
1656
|
+
def scan_ip_ids(self) -> pulumi.Output[Sequence[str]]:
|
1657
|
+
"""
|
1658
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Single Client Access Name (SCAN) IP addresses associated with the Exadata VM cluster on Exascale Infrastructure. SCAN IP 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.
|
1659
|
+
"""
|
1660
|
+
return pulumi.get(self, "scan_ip_ids")
|
1661
|
+
|
1662
|
+
@property
|
1663
|
+
@pulumi.getter(name="scanListenerPortTcp")
|
1664
|
+
def scan_listener_port_tcp(self) -> pulumi.Output[int]:
|
1665
|
+
"""
|
1666
|
+
The TCP Single Client Access Name (SCAN) port. The default port is 1521.
|
1667
|
+
"""
|
1668
|
+
return pulumi.get(self, "scan_listener_port_tcp")
|
1669
|
+
|
1670
|
+
@property
|
1671
|
+
@pulumi.getter(name="scanListenerPortTcpSsl")
|
1672
|
+
def scan_listener_port_tcp_ssl(self) -> pulumi.Output[int]:
|
1673
|
+
"""
|
1674
|
+
The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
|
1675
|
+
"""
|
1676
|
+
return pulumi.get(self, "scan_listener_port_tcp_ssl")
|
1677
|
+
|
1678
|
+
@property
|
1679
|
+
@pulumi.getter
|
1680
|
+
def shape(self) -> pulumi.Output[str]:
|
1681
|
+
"""
|
1682
|
+
The shape of the Exadata VM cluster on Exascale Infrastructure resource
|
1683
|
+
"""
|
1684
|
+
return pulumi.get(self, "shape")
|
1685
|
+
|
1686
|
+
@property
|
1687
|
+
@pulumi.getter(name="sshPublicKeys")
|
1688
|
+
def ssh_public_keys(self) -> pulumi.Output[Sequence[str]]:
|
1689
|
+
"""
|
1690
|
+
(Updatable) The public key portion of one or more key pairs used for SSH access to the Exadata VM cluster on Exascale Infrastructure.
|
1691
|
+
"""
|
1692
|
+
return pulumi.get(self, "ssh_public_keys")
|
1693
|
+
|
1694
|
+
@property
|
1695
|
+
@pulumi.getter
|
1696
|
+
def state(self) -> pulumi.Output[str]:
|
1697
|
+
"""
|
1698
|
+
The current state of the Exadata VM cluster on Exascale Infrastructure.
|
1699
|
+
"""
|
1700
|
+
return pulumi.get(self, "state")
|
1701
|
+
|
1702
|
+
@property
|
1703
|
+
@pulumi.getter(name="subnetId")
|
1704
|
+
def subnet_id(self) -> pulumi.Output[str]:
|
1705
|
+
"""
|
1706
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
|
1707
|
+
"""
|
1708
|
+
return pulumi.get(self, "subnet_id")
|
1709
|
+
|
1710
|
+
@property
|
1711
|
+
@pulumi.getter(name="systemTags")
|
1712
|
+
def system_tags(self) -> pulumi.Output[Mapping[str, Any]]:
|
1713
|
+
"""
|
1714
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
|
1715
|
+
"""
|
1716
|
+
return pulumi.get(self, "system_tags")
|
1717
|
+
|
1718
|
+
@property
|
1719
|
+
@pulumi.getter(name="systemVersion")
|
1720
|
+
def system_version(self) -> pulumi.Output[str]:
|
1721
|
+
"""
|
1722
|
+
(Updatable) Operating system version of the image.
|
1723
|
+
"""
|
1724
|
+
return pulumi.get(self, "system_version")
|
1725
|
+
|
1726
|
+
@property
|
1727
|
+
@pulumi.getter(name="timeCreated")
|
1728
|
+
def time_created(self) -> pulumi.Output[str]:
|
1729
|
+
"""
|
1730
|
+
The date and time that the Exadata VM cluster on Exascale Infrastructure was created.
|
1731
|
+
"""
|
1732
|
+
return pulumi.get(self, "time_created")
|
1733
|
+
|
1734
|
+
@property
|
1735
|
+
@pulumi.getter(name="timeZone")
|
1736
|
+
def time_zone(self) -> pulumi.Output[str]:
|
1737
|
+
"""
|
1738
|
+
The time zone to use for the Exadata VM cluster on Exascale Infrastructure. For details, see [Time Zones](https://docs.cloud.oracle.com/iaas/Content/Database/References/timezones.htm).
|
1739
|
+
|
1740
|
+
|
1741
|
+
** IMPORTANT **
|
1742
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
1743
|
+
"""
|
1744
|
+
return pulumi.get(self, "time_zone")
|
1745
|
+
|
1746
|
+
@property
|
1747
|
+
@pulumi.getter(name="vipIds")
|
1748
|
+
def vip_ids(self) -> pulumi.Output[Sequence[str]]:
|
1749
|
+
"""
|
1750
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the virtual IP (VIP) addresses associated with the Exadata VM cluster on Exascale Infrastructure. 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, then the VIP is reassigned to another active node in the cluster.
|
1751
|
+
"""
|
1752
|
+
return pulumi.get(self, "vip_ids")
|
1753
|
+
|
1754
|
+
@property
|
1755
|
+
@pulumi.getter(name="zoneId")
|
1756
|
+
def zone_id(self) -> pulumi.Output[str]:
|
1757
|
+
"""
|
1758
|
+
The OCID of the zone with which the Exadata VM cluster on Exascale Infrastructure is associated.
|
1759
|
+
"""
|
1760
|
+
return pulumi.get(self, "zone_id")
|
1761
|
+
|