pulumi-oci 3.8.0a1758168665__py3-none-any.whl → 3.9.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_oci/__init__.py +24 -0
- pulumi_oci/database/__init__.py +1 -0
- pulumi_oci/database/_inputs.py +550 -0
- pulumi_oci/database/cloud_exadata_infrastructure.py +28 -0
- pulumi_oci/database/cloud_exadata_infrastructure_configure_exascale_management.py +1308 -0
- pulumi_oci/database/cloud_vm_cluster.py +77 -0
- pulumi_oci/database/get_cloud_exadata_infrastructure.py +15 -1
- pulumi_oci/database/get_cloud_vm_cluster.py +29 -1
- pulumi_oci/database/outputs.py +515 -0
- pulumi_oci/datasafe/_inputs.py +180 -0
- pulumi_oci/datasafe/audit_policy_management.py +7 -7
- pulumi_oci/datasafe/audit_trail_management.py +2 -0
- pulumi_oci/datasafe/discovery_jobs_result.py +40 -0
- pulumi_oci/datasafe/get_data_safe_configuration.py +2 -2
- pulumi_oci/datasafe/get_discovery_jobs_result.py +29 -1
- pulumi_oci/datasafe/get_discovery_jobs_results.py +23 -1
- pulumi_oci/datasafe/get_masking_reports.py +20 -1
- pulumi_oci/datasafe/get_security_assessment_finding.py +16 -1
- pulumi_oci/datasafe/get_security_assessment_findings.py +26 -3
- pulumi_oci/datasafe/get_sensitive_data_models_sensitive_column.py +30 -1
- pulumi_oci/datasafe/get_sensitive_data_models_sensitive_columns.py +44 -3
- pulumi_oci/datasafe/outputs.py +400 -2
- pulumi_oci/datasafe/sensitive_data_models_sensitive_column.py +58 -0
- pulumi_oci/jms/__init__.py +16 -0
- pulumi_oci/jms/_inputs.py +2068 -29
- pulumi_oci/jms/fleet.py +56 -0
- pulumi_oci/jms/get_fleet.py +29 -1
- pulumi_oci/jms/get_fleet_containers.py +289 -0
- pulumi_oci/jms/get_fleet_export_setting.py +16 -1
- pulumi_oci/jms/get_fleet_library_applications.py +280 -0
- pulumi_oci/jms/get_fleet_library_managed_instances.py +280 -0
- pulumi_oci/jms/get_fleet_summarize_library_inventory.py +211 -0
- pulumi_oci/jms/get_fleet_uncorrelated_package_applications.py +239 -0
- pulumi_oci/jms/get_fleet_uncorrelated_package_managed_instances.py +242 -0
- pulumi_oci/jms/get_fleet_uncorrelated_packages.py +242 -0
- pulumi_oci/jms/get_java_family.py +15 -1
- pulumi_oci/jms/get_jms_plugin.py +2 -2
- pulumi_oci/jms/get_jms_plugins.py +4 -4
- pulumi_oci/jms/get_task_schedule.py +262 -0
- pulumi_oci/jms/get_task_schedules.py +218 -0
- pulumi_oci/jms/get_utils_analyze_applications_configuration.py +153 -0
- pulumi_oci/jms/get_utils_java_migration_analysi.py +316 -0
- pulumi_oci/jms/get_utils_java_migration_analysis.py +177 -0
- pulumi_oci/jms/get_utils_performance_tuning_analysi.py +274 -0
- pulumi_oci/jms/get_utils_performance_tuning_analysis.py +196 -0
- pulumi_oci/jms/get_utils_subscription_acknowledgment_configuration.py +161 -0
- pulumi_oci/jms/jms_plugin.py +36 -15
- pulumi_oci/jms/outputs.py +8500 -3920
- pulumi_oci/jms/task_schedule.py +658 -0
- pulumi_oci/marketplace/__init__.py +2 -0
- pulumi_oci/marketplace/_inputs.py +49 -0
- pulumi_oci/marketplace/get_marketplace_metadata_public_keys.py +144 -0
- pulumi_oci/marketplace/marketplace_external_attested_metadata.py +298 -0
- pulumi_oci/marketplace/outputs.py +124 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/redis/get_redis_cluster.py +29 -1
- pulumi_oci/redis/outputs.py +22 -0
- pulumi_oci/redis/redis_cluster.py +56 -0
- {pulumi_oci-3.8.0a1758168665.dist-info → pulumi_oci-3.9.0.dist-info}/METADATA +1 -1
- {pulumi_oci-3.8.0a1758168665.dist-info → pulumi_oci-3.9.0.dist-info}/RECORD +62 -43
- {pulumi_oci-3.8.0a1758168665.dist-info → pulumi_oci-3.9.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-3.8.0a1758168665.dist-info → pulumi_oci-3.9.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,1308 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import builtins as _builtins
|
6
|
+
import warnings
|
7
|
+
import sys
|
8
|
+
import pulumi
|
9
|
+
import pulumi.runtime
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
15
|
+
from .. import _utilities
|
16
|
+
from . import outputs
|
17
|
+
from ._inputs import *
|
18
|
+
|
19
|
+
__all__ = ['CloudExadataInfrastructureConfigureExascaleManagementArgs', 'CloudExadataInfrastructureConfigureExascaleManagement']
|
20
|
+
|
21
|
+
@pulumi.input_type
|
22
|
+
class CloudExadataInfrastructureConfigureExascaleManagementArgs:
|
23
|
+
def __init__(__self__, *,
|
24
|
+
cloud_exadata_infrastructure_id: pulumi.Input[_builtins.str],
|
25
|
+
total_storage_in_gbs: pulumi.Input[_builtins.int]):
|
26
|
+
"""
|
27
|
+
The set of arguments for constructing a CloudExadataInfrastructureConfigureExascaleManagement resource.
|
28
|
+
:param pulumi.Input[_builtins.str] cloud_exadata_infrastructure_id: The cloud Exadata infrastructure [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
29
|
+
:param pulumi.Input[_builtins.int] total_storage_in_gbs: Storage size needed for Exascale in GBs.
|
30
|
+
|
31
|
+
|
32
|
+
** IMPORTANT **
|
33
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
34
|
+
"""
|
35
|
+
pulumi.set(__self__, "cloud_exadata_infrastructure_id", cloud_exadata_infrastructure_id)
|
36
|
+
pulumi.set(__self__, "total_storage_in_gbs", total_storage_in_gbs)
|
37
|
+
|
38
|
+
@_builtins.property
|
39
|
+
@pulumi.getter(name="cloudExadataInfrastructureId")
|
40
|
+
def cloud_exadata_infrastructure_id(self) -> pulumi.Input[_builtins.str]:
|
41
|
+
"""
|
42
|
+
The cloud Exadata infrastructure [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
43
|
+
"""
|
44
|
+
return pulumi.get(self, "cloud_exadata_infrastructure_id")
|
45
|
+
|
46
|
+
@cloud_exadata_infrastructure_id.setter
|
47
|
+
def cloud_exadata_infrastructure_id(self, value: pulumi.Input[_builtins.str]):
|
48
|
+
pulumi.set(self, "cloud_exadata_infrastructure_id", value)
|
49
|
+
|
50
|
+
@_builtins.property
|
51
|
+
@pulumi.getter(name="totalStorageInGbs")
|
52
|
+
def total_storage_in_gbs(self) -> pulumi.Input[_builtins.int]:
|
53
|
+
"""
|
54
|
+
Storage size needed for Exascale in GBs.
|
55
|
+
|
56
|
+
|
57
|
+
** IMPORTANT **
|
58
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
59
|
+
"""
|
60
|
+
return pulumi.get(self, "total_storage_in_gbs")
|
61
|
+
|
62
|
+
@total_storage_in_gbs.setter
|
63
|
+
def total_storage_in_gbs(self, value: pulumi.Input[_builtins.int]):
|
64
|
+
pulumi.set(self, "total_storage_in_gbs", value)
|
65
|
+
|
66
|
+
|
67
|
+
@pulumi.input_type
|
68
|
+
class _CloudExadataInfrastructureConfigureExascaleManagementState:
|
69
|
+
def __init__(__self__, *,
|
70
|
+
activated_storage_count: Optional[pulumi.Input[_builtins.int]] = None,
|
71
|
+
additional_storage_count: Optional[pulumi.Input[_builtins.int]] = None,
|
72
|
+
availability_domain: Optional[pulumi.Input[_builtins.str]] = None,
|
73
|
+
available_storage_size_in_gbs: Optional[pulumi.Input[_builtins.int]] = None,
|
74
|
+
cloud_exadata_infrastructure_id: Optional[pulumi.Input[_builtins.str]] = None,
|
75
|
+
cluster_placement_group_id: Optional[pulumi.Input[_builtins.str]] = None,
|
76
|
+
compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
|
77
|
+
compute_count: Optional[pulumi.Input[_builtins.int]] = None,
|
78
|
+
cpu_count: Optional[pulumi.Input[_builtins.int]] = None,
|
79
|
+
customer_contacts: Optional[pulumi.Input[Sequence[pulumi.Input['CloudExadataInfrastructureConfigureExascaleManagementCustomerContactArgs']]]] = None,
|
80
|
+
data_storage_size_in_tbs: Optional[pulumi.Input[_builtins.float]] = None,
|
81
|
+
db_node_storage_size_in_gbs: Optional[pulumi.Input[_builtins.int]] = None,
|
82
|
+
db_server_version: Optional[pulumi.Input[_builtins.str]] = None,
|
83
|
+
defined_file_system_configurations: Optional[pulumi.Input[Sequence[pulumi.Input['CloudExadataInfrastructureConfigureExascaleManagementDefinedFileSystemConfigurationArgs']]]] = None,
|
84
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
85
|
+
display_name: Optional[pulumi.Input[_builtins.str]] = None,
|
86
|
+
exascale_configs: Optional[pulumi.Input[Sequence[pulumi.Input['CloudExadataInfrastructureConfigureExascaleManagementExascaleConfigArgs']]]] = None,
|
87
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
88
|
+
is_scheduling_policy_associated: Optional[pulumi.Input[_builtins.bool]] = None,
|
89
|
+
last_maintenance_run_id: Optional[pulumi.Input[_builtins.str]] = None,
|
90
|
+
lifecycle_details: Optional[pulumi.Input[_builtins.str]] = None,
|
91
|
+
maintenance_windows: Optional[pulumi.Input[Sequence[pulumi.Input['CloudExadataInfrastructureConfigureExascaleManagementMaintenanceWindowArgs']]]] = None,
|
92
|
+
max_cpu_count: Optional[pulumi.Input[_builtins.int]] = None,
|
93
|
+
max_data_storage_in_tbs: Optional[pulumi.Input[_builtins.float]] = None,
|
94
|
+
max_db_node_storage_in_gbs: Optional[pulumi.Input[_builtins.int]] = None,
|
95
|
+
max_memory_in_gbs: Optional[pulumi.Input[_builtins.int]] = None,
|
96
|
+
memory_size_in_gbs: Optional[pulumi.Input[_builtins.int]] = None,
|
97
|
+
monthly_db_server_version: Optional[pulumi.Input[_builtins.str]] = None,
|
98
|
+
monthly_storage_server_version: Optional[pulumi.Input[_builtins.str]] = None,
|
99
|
+
next_maintenance_run_id: Optional[pulumi.Input[_builtins.str]] = None,
|
100
|
+
shape: Optional[pulumi.Input[_builtins.str]] = None,
|
101
|
+
state: Optional[pulumi.Input[_builtins.str]] = None,
|
102
|
+
storage_count: Optional[pulumi.Input[_builtins.int]] = None,
|
103
|
+
storage_server_version: Optional[pulumi.Input[_builtins.str]] = None,
|
104
|
+
subscription_id: Optional[pulumi.Input[_builtins.str]] = None,
|
105
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
106
|
+
time_created: Optional[pulumi.Input[_builtins.str]] = None,
|
107
|
+
total_storage_in_gbs: Optional[pulumi.Input[_builtins.int]] = None,
|
108
|
+
total_storage_size_in_gbs: Optional[pulumi.Input[_builtins.int]] = None):
|
109
|
+
"""
|
110
|
+
Input properties used for looking up and filtering CloudExadataInfrastructureConfigureExascaleManagement resources.
|
111
|
+
:param pulumi.Input[_builtins.int] activated_storage_count: The requested number of additional storage servers activated for the Exadata infrastructure.
|
112
|
+
:param pulumi.Input[_builtins.int] additional_storage_count: The requested number of additional storage servers for the Exadata infrastructure.
|
113
|
+
:param pulumi.Input[_builtins.str] availability_domain: The name of the availability domain that the cloud Exadata infrastructure resource is located in.
|
114
|
+
:param pulumi.Input[_builtins.int] available_storage_size_in_gbs: The available storage can be allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
|
115
|
+
:param pulumi.Input[_builtins.str] cloud_exadata_infrastructure_id: The cloud Exadata infrastructure [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
116
|
+
:param pulumi.Input[_builtins.str] cluster_placement_group_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cluster placement group of the Exadata Infrastructure.
|
117
|
+
:param pulumi.Input[_builtins.str] compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
118
|
+
:param pulumi.Input[_builtins.int] compute_count: The number of compute servers for the cloud Exadata infrastructure.
|
119
|
+
:param pulumi.Input[_builtins.int] cpu_count: The total number of CPU cores allocated.
|
120
|
+
:param pulumi.Input[Sequence[pulumi.Input['CloudExadataInfrastructureConfigureExascaleManagementCustomerContactArgs']]] customer_contacts: The list of customer email addresses that receive information from Oracle about the specified Oracle Cloud Infrastructure Database service resource. Oracle uses these email addresses to send notifications about planned and unplanned software maintenance updates, information about system hardware, and other information needed by administrators. Up to 10 email addresses can be added to the customer contacts for a cloud Exadata infrastructure instance.
|
121
|
+
:param pulumi.Input[_builtins.float] data_storage_size_in_tbs: Size, in terabytes, of the DATA disk group.
|
122
|
+
:param pulumi.Input[_builtins.int] db_node_storage_size_in_gbs: The local node storage allocated in GBs.
|
123
|
+
:param pulumi.Input[_builtins.str] db_server_version: The software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
|
124
|
+
:param pulumi.Input[Sequence[pulumi.Input['CloudExadataInfrastructureConfigureExascaleManagementDefinedFileSystemConfigurationArgs']]] defined_file_system_configurations: Details of the file system configuration of the Exadata infrastructure.
|
125
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] defined_tags: 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).
|
126
|
+
:param pulumi.Input[_builtins.str] display_name: The user-friendly name for the cloud Exadata infrastructure resource. The name does not need to be unique.
|
127
|
+
:param pulumi.Input[Sequence[pulumi.Input['CloudExadataInfrastructureConfigureExascaleManagementExascaleConfigArgs']]] exascale_configs: The exascale config response details for the Exadata Cloud@Customer infrastructure or cloud Exadata infrastructure . Applies to both Exadata Cloud@Customer instances and Exadata Cloud Service instances.
|
128
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] freeform_tags: 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"}`
|
129
|
+
:param pulumi.Input[_builtins.bool] is_scheduling_policy_associated: If true, the infrastructure is using granular maintenance scheduling preference.
|
130
|
+
:param pulumi.Input[_builtins.str] last_maintenance_run_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the last maintenance run.
|
131
|
+
:param pulumi.Input[_builtins.str] lifecycle_details: Additional information about the current lifecycle state.
|
132
|
+
:param pulumi.Input[Sequence[pulumi.Input['CloudExadataInfrastructureConfigureExascaleManagementMaintenanceWindowArgs']]] maintenance_windows: The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
|
133
|
+
:param pulumi.Input[_builtins.int] max_cpu_count: The total number of CPU cores available.
|
134
|
+
:param pulumi.Input[_builtins.float] max_data_storage_in_tbs: The total available DATA disk group size.
|
135
|
+
:param pulumi.Input[_builtins.int] max_db_node_storage_in_gbs: The total local node storage available in GBs.
|
136
|
+
:param pulumi.Input[_builtins.int] max_memory_in_gbs: The total memory available in GBs.
|
137
|
+
:param pulumi.Input[_builtins.int] memory_size_in_gbs: The memory allocated in GBs.
|
138
|
+
:param pulumi.Input[_builtins.str] monthly_db_server_version: The monthly software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
|
139
|
+
:param pulumi.Input[_builtins.str] monthly_storage_server_version: The monthly software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
|
140
|
+
:param pulumi.Input[_builtins.str] next_maintenance_run_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the next maintenance run.
|
141
|
+
:param pulumi.Input[_builtins.str] shape: The model name of the cloud Exadata infrastructure resource.
|
142
|
+
:param pulumi.Input[_builtins.str] state: The current lifecycle state of the cloud Exadata infrastructure resource.
|
143
|
+
:param pulumi.Input[_builtins.int] storage_count: The number of storage servers for the cloud Exadata infrastructure.
|
144
|
+
:param pulumi.Input[_builtins.str] storage_server_version: The software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
|
145
|
+
:param pulumi.Input[_builtins.str] subscription_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subscription with which resource needs to be associated with.
|
146
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] 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).
|
147
|
+
:param pulumi.Input[_builtins.str] time_created: The date and time the cloud Exadata infrastructure resource was created.
|
148
|
+
:param pulumi.Input[_builtins.int] total_storage_in_gbs: Storage size needed for Exascale in GBs.
|
149
|
+
|
150
|
+
|
151
|
+
** IMPORTANT **
|
152
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
153
|
+
:param pulumi.Input[_builtins.int] total_storage_size_in_gbs: The total storage allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
|
154
|
+
"""
|
155
|
+
if activated_storage_count is not None:
|
156
|
+
pulumi.set(__self__, "activated_storage_count", activated_storage_count)
|
157
|
+
if additional_storage_count is not None:
|
158
|
+
pulumi.set(__self__, "additional_storage_count", additional_storage_count)
|
159
|
+
if availability_domain is not None:
|
160
|
+
pulumi.set(__self__, "availability_domain", availability_domain)
|
161
|
+
if available_storage_size_in_gbs is not None:
|
162
|
+
pulumi.set(__self__, "available_storage_size_in_gbs", available_storage_size_in_gbs)
|
163
|
+
if cloud_exadata_infrastructure_id is not None:
|
164
|
+
pulumi.set(__self__, "cloud_exadata_infrastructure_id", cloud_exadata_infrastructure_id)
|
165
|
+
if cluster_placement_group_id is not None:
|
166
|
+
pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
|
167
|
+
if compartment_id is not None:
|
168
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
169
|
+
if compute_count is not None:
|
170
|
+
pulumi.set(__self__, "compute_count", compute_count)
|
171
|
+
if cpu_count is not None:
|
172
|
+
pulumi.set(__self__, "cpu_count", cpu_count)
|
173
|
+
if customer_contacts is not None:
|
174
|
+
pulumi.set(__self__, "customer_contacts", customer_contacts)
|
175
|
+
if data_storage_size_in_tbs is not None:
|
176
|
+
pulumi.set(__self__, "data_storage_size_in_tbs", data_storage_size_in_tbs)
|
177
|
+
if db_node_storage_size_in_gbs is not None:
|
178
|
+
pulumi.set(__self__, "db_node_storage_size_in_gbs", db_node_storage_size_in_gbs)
|
179
|
+
if db_server_version is not None:
|
180
|
+
pulumi.set(__self__, "db_server_version", db_server_version)
|
181
|
+
if defined_file_system_configurations is not None:
|
182
|
+
pulumi.set(__self__, "defined_file_system_configurations", defined_file_system_configurations)
|
183
|
+
if defined_tags is not None:
|
184
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
185
|
+
if display_name is not None:
|
186
|
+
pulumi.set(__self__, "display_name", display_name)
|
187
|
+
if exascale_configs is not None:
|
188
|
+
pulumi.set(__self__, "exascale_configs", exascale_configs)
|
189
|
+
if freeform_tags is not None:
|
190
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
191
|
+
if is_scheduling_policy_associated is not None:
|
192
|
+
pulumi.set(__self__, "is_scheduling_policy_associated", is_scheduling_policy_associated)
|
193
|
+
if last_maintenance_run_id is not None:
|
194
|
+
pulumi.set(__self__, "last_maintenance_run_id", last_maintenance_run_id)
|
195
|
+
if lifecycle_details is not None:
|
196
|
+
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
197
|
+
if maintenance_windows is not None:
|
198
|
+
pulumi.set(__self__, "maintenance_windows", maintenance_windows)
|
199
|
+
if max_cpu_count is not None:
|
200
|
+
pulumi.set(__self__, "max_cpu_count", max_cpu_count)
|
201
|
+
if max_data_storage_in_tbs is not None:
|
202
|
+
pulumi.set(__self__, "max_data_storage_in_tbs", max_data_storage_in_tbs)
|
203
|
+
if max_db_node_storage_in_gbs is not None:
|
204
|
+
pulumi.set(__self__, "max_db_node_storage_in_gbs", max_db_node_storage_in_gbs)
|
205
|
+
if max_memory_in_gbs is not None:
|
206
|
+
pulumi.set(__self__, "max_memory_in_gbs", max_memory_in_gbs)
|
207
|
+
if memory_size_in_gbs is not None:
|
208
|
+
pulumi.set(__self__, "memory_size_in_gbs", memory_size_in_gbs)
|
209
|
+
if monthly_db_server_version is not None:
|
210
|
+
pulumi.set(__self__, "monthly_db_server_version", monthly_db_server_version)
|
211
|
+
if monthly_storage_server_version is not None:
|
212
|
+
pulumi.set(__self__, "monthly_storage_server_version", monthly_storage_server_version)
|
213
|
+
if next_maintenance_run_id is not None:
|
214
|
+
pulumi.set(__self__, "next_maintenance_run_id", next_maintenance_run_id)
|
215
|
+
if shape is not None:
|
216
|
+
pulumi.set(__self__, "shape", shape)
|
217
|
+
if state is not None:
|
218
|
+
pulumi.set(__self__, "state", state)
|
219
|
+
if storage_count is not None:
|
220
|
+
pulumi.set(__self__, "storage_count", storage_count)
|
221
|
+
if storage_server_version is not None:
|
222
|
+
pulumi.set(__self__, "storage_server_version", storage_server_version)
|
223
|
+
if subscription_id is not None:
|
224
|
+
pulumi.set(__self__, "subscription_id", subscription_id)
|
225
|
+
if system_tags is not None:
|
226
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
227
|
+
if time_created is not None:
|
228
|
+
pulumi.set(__self__, "time_created", time_created)
|
229
|
+
if total_storage_in_gbs is not None:
|
230
|
+
pulumi.set(__self__, "total_storage_in_gbs", total_storage_in_gbs)
|
231
|
+
if total_storage_size_in_gbs is not None:
|
232
|
+
pulumi.set(__self__, "total_storage_size_in_gbs", total_storage_size_in_gbs)
|
233
|
+
|
234
|
+
@_builtins.property
|
235
|
+
@pulumi.getter(name="activatedStorageCount")
|
236
|
+
def activated_storage_count(self) -> Optional[pulumi.Input[_builtins.int]]:
|
237
|
+
"""
|
238
|
+
The requested number of additional storage servers activated for the Exadata infrastructure.
|
239
|
+
"""
|
240
|
+
return pulumi.get(self, "activated_storage_count")
|
241
|
+
|
242
|
+
@activated_storage_count.setter
|
243
|
+
def activated_storage_count(self, value: Optional[pulumi.Input[_builtins.int]]):
|
244
|
+
pulumi.set(self, "activated_storage_count", value)
|
245
|
+
|
246
|
+
@_builtins.property
|
247
|
+
@pulumi.getter(name="additionalStorageCount")
|
248
|
+
def additional_storage_count(self) -> Optional[pulumi.Input[_builtins.int]]:
|
249
|
+
"""
|
250
|
+
The requested number of additional storage servers for the Exadata infrastructure.
|
251
|
+
"""
|
252
|
+
return pulumi.get(self, "additional_storage_count")
|
253
|
+
|
254
|
+
@additional_storage_count.setter
|
255
|
+
def additional_storage_count(self, value: Optional[pulumi.Input[_builtins.int]]):
|
256
|
+
pulumi.set(self, "additional_storage_count", value)
|
257
|
+
|
258
|
+
@_builtins.property
|
259
|
+
@pulumi.getter(name="availabilityDomain")
|
260
|
+
def availability_domain(self) -> Optional[pulumi.Input[_builtins.str]]:
|
261
|
+
"""
|
262
|
+
The name of the availability domain that the cloud Exadata infrastructure resource is located in.
|
263
|
+
"""
|
264
|
+
return pulumi.get(self, "availability_domain")
|
265
|
+
|
266
|
+
@availability_domain.setter
|
267
|
+
def availability_domain(self, value: Optional[pulumi.Input[_builtins.str]]):
|
268
|
+
pulumi.set(self, "availability_domain", value)
|
269
|
+
|
270
|
+
@_builtins.property
|
271
|
+
@pulumi.getter(name="availableStorageSizeInGbs")
|
272
|
+
def available_storage_size_in_gbs(self) -> Optional[pulumi.Input[_builtins.int]]:
|
273
|
+
"""
|
274
|
+
The available storage can be allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
|
275
|
+
"""
|
276
|
+
return pulumi.get(self, "available_storage_size_in_gbs")
|
277
|
+
|
278
|
+
@available_storage_size_in_gbs.setter
|
279
|
+
def available_storage_size_in_gbs(self, value: Optional[pulumi.Input[_builtins.int]]):
|
280
|
+
pulumi.set(self, "available_storage_size_in_gbs", value)
|
281
|
+
|
282
|
+
@_builtins.property
|
283
|
+
@pulumi.getter(name="cloudExadataInfrastructureId")
|
284
|
+
def cloud_exadata_infrastructure_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
285
|
+
"""
|
286
|
+
The cloud Exadata infrastructure [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
287
|
+
"""
|
288
|
+
return pulumi.get(self, "cloud_exadata_infrastructure_id")
|
289
|
+
|
290
|
+
@cloud_exadata_infrastructure_id.setter
|
291
|
+
def cloud_exadata_infrastructure_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
292
|
+
pulumi.set(self, "cloud_exadata_infrastructure_id", value)
|
293
|
+
|
294
|
+
@_builtins.property
|
295
|
+
@pulumi.getter(name="clusterPlacementGroupId")
|
296
|
+
def cluster_placement_group_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
297
|
+
"""
|
298
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cluster placement group of the Exadata Infrastructure.
|
299
|
+
"""
|
300
|
+
return pulumi.get(self, "cluster_placement_group_id")
|
301
|
+
|
302
|
+
@cluster_placement_group_id.setter
|
303
|
+
def cluster_placement_group_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
304
|
+
pulumi.set(self, "cluster_placement_group_id", value)
|
305
|
+
|
306
|
+
@_builtins.property
|
307
|
+
@pulumi.getter(name="compartmentId")
|
308
|
+
def compartment_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
309
|
+
"""
|
310
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
311
|
+
"""
|
312
|
+
return pulumi.get(self, "compartment_id")
|
313
|
+
|
314
|
+
@compartment_id.setter
|
315
|
+
def compartment_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
316
|
+
pulumi.set(self, "compartment_id", value)
|
317
|
+
|
318
|
+
@_builtins.property
|
319
|
+
@pulumi.getter(name="computeCount")
|
320
|
+
def compute_count(self) -> Optional[pulumi.Input[_builtins.int]]:
|
321
|
+
"""
|
322
|
+
The number of compute servers for the cloud Exadata infrastructure.
|
323
|
+
"""
|
324
|
+
return pulumi.get(self, "compute_count")
|
325
|
+
|
326
|
+
@compute_count.setter
|
327
|
+
def compute_count(self, value: Optional[pulumi.Input[_builtins.int]]):
|
328
|
+
pulumi.set(self, "compute_count", value)
|
329
|
+
|
330
|
+
@_builtins.property
|
331
|
+
@pulumi.getter(name="cpuCount")
|
332
|
+
def cpu_count(self) -> Optional[pulumi.Input[_builtins.int]]:
|
333
|
+
"""
|
334
|
+
The total number of CPU cores allocated.
|
335
|
+
"""
|
336
|
+
return pulumi.get(self, "cpu_count")
|
337
|
+
|
338
|
+
@cpu_count.setter
|
339
|
+
def cpu_count(self, value: Optional[pulumi.Input[_builtins.int]]):
|
340
|
+
pulumi.set(self, "cpu_count", value)
|
341
|
+
|
342
|
+
@_builtins.property
|
343
|
+
@pulumi.getter(name="customerContacts")
|
344
|
+
def customer_contacts(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['CloudExadataInfrastructureConfigureExascaleManagementCustomerContactArgs']]]]:
|
345
|
+
"""
|
346
|
+
The list of customer email addresses that receive information from Oracle about the specified Oracle Cloud Infrastructure Database service resource. Oracle uses these email addresses to send notifications about planned and unplanned software maintenance updates, information about system hardware, and other information needed by administrators. Up to 10 email addresses can be added to the customer contacts for a cloud Exadata infrastructure instance.
|
347
|
+
"""
|
348
|
+
return pulumi.get(self, "customer_contacts")
|
349
|
+
|
350
|
+
@customer_contacts.setter
|
351
|
+
def customer_contacts(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['CloudExadataInfrastructureConfigureExascaleManagementCustomerContactArgs']]]]):
|
352
|
+
pulumi.set(self, "customer_contacts", value)
|
353
|
+
|
354
|
+
@_builtins.property
|
355
|
+
@pulumi.getter(name="dataStorageSizeInTbs")
|
356
|
+
def data_storage_size_in_tbs(self) -> Optional[pulumi.Input[_builtins.float]]:
|
357
|
+
"""
|
358
|
+
Size, in terabytes, of the DATA disk group.
|
359
|
+
"""
|
360
|
+
return pulumi.get(self, "data_storage_size_in_tbs")
|
361
|
+
|
362
|
+
@data_storage_size_in_tbs.setter
|
363
|
+
def data_storage_size_in_tbs(self, value: Optional[pulumi.Input[_builtins.float]]):
|
364
|
+
pulumi.set(self, "data_storage_size_in_tbs", value)
|
365
|
+
|
366
|
+
@_builtins.property
|
367
|
+
@pulumi.getter(name="dbNodeStorageSizeInGbs")
|
368
|
+
def db_node_storage_size_in_gbs(self) -> Optional[pulumi.Input[_builtins.int]]:
|
369
|
+
"""
|
370
|
+
The local node storage allocated in GBs.
|
371
|
+
"""
|
372
|
+
return pulumi.get(self, "db_node_storage_size_in_gbs")
|
373
|
+
|
374
|
+
@db_node_storage_size_in_gbs.setter
|
375
|
+
def db_node_storage_size_in_gbs(self, value: Optional[pulumi.Input[_builtins.int]]):
|
376
|
+
pulumi.set(self, "db_node_storage_size_in_gbs", value)
|
377
|
+
|
378
|
+
@_builtins.property
|
379
|
+
@pulumi.getter(name="dbServerVersion")
|
380
|
+
def db_server_version(self) -> Optional[pulumi.Input[_builtins.str]]:
|
381
|
+
"""
|
382
|
+
The software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
|
383
|
+
"""
|
384
|
+
return pulumi.get(self, "db_server_version")
|
385
|
+
|
386
|
+
@db_server_version.setter
|
387
|
+
def db_server_version(self, value: Optional[pulumi.Input[_builtins.str]]):
|
388
|
+
pulumi.set(self, "db_server_version", value)
|
389
|
+
|
390
|
+
@_builtins.property
|
391
|
+
@pulumi.getter(name="definedFileSystemConfigurations")
|
392
|
+
def defined_file_system_configurations(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['CloudExadataInfrastructureConfigureExascaleManagementDefinedFileSystemConfigurationArgs']]]]:
|
393
|
+
"""
|
394
|
+
Details of the file system configuration of the Exadata infrastructure.
|
395
|
+
"""
|
396
|
+
return pulumi.get(self, "defined_file_system_configurations")
|
397
|
+
|
398
|
+
@defined_file_system_configurations.setter
|
399
|
+
def defined_file_system_configurations(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['CloudExadataInfrastructureConfigureExascaleManagementDefinedFileSystemConfigurationArgs']]]]):
|
400
|
+
pulumi.set(self, "defined_file_system_configurations", value)
|
401
|
+
|
402
|
+
@_builtins.property
|
403
|
+
@pulumi.getter(name="definedTags")
|
404
|
+
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
|
405
|
+
"""
|
406
|
+
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).
|
407
|
+
"""
|
408
|
+
return pulumi.get(self, "defined_tags")
|
409
|
+
|
410
|
+
@defined_tags.setter
|
411
|
+
def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
412
|
+
pulumi.set(self, "defined_tags", value)
|
413
|
+
|
414
|
+
@_builtins.property
|
415
|
+
@pulumi.getter(name="displayName")
|
416
|
+
def display_name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
417
|
+
"""
|
418
|
+
The user-friendly name for the cloud Exadata infrastructure resource. The name does not need to be unique.
|
419
|
+
"""
|
420
|
+
return pulumi.get(self, "display_name")
|
421
|
+
|
422
|
+
@display_name.setter
|
423
|
+
def display_name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
424
|
+
pulumi.set(self, "display_name", value)
|
425
|
+
|
426
|
+
@_builtins.property
|
427
|
+
@pulumi.getter(name="exascaleConfigs")
|
428
|
+
def exascale_configs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['CloudExadataInfrastructureConfigureExascaleManagementExascaleConfigArgs']]]]:
|
429
|
+
"""
|
430
|
+
The exascale config response details for the Exadata Cloud@Customer infrastructure or cloud Exadata infrastructure . Applies to both Exadata Cloud@Customer instances and Exadata Cloud Service instances.
|
431
|
+
"""
|
432
|
+
return pulumi.get(self, "exascale_configs")
|
433
|
+
|
434
|
+
@exascale_configs.setter
|
435
|
+
def exascale_configs(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['CloudExadataInfrastructureConfigureExascaleManagementExascaleConfigArgs']]]]):
|
436
|
+
pulumi.set(self, "exascale_configs", value)
|
437
|
+
|
438
|
+
@_builtins.property
|
439
|
+
@pulumi.getter(name="freeformTags")
|
440
|
+
def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
|
441
|
+
"""
|
442
|
+
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"}`
|
443
|
+
"""
|
444
|
+
return pulumi.get(self, "freeform_tags")
|
445
|
+
|
446
|
+
@freeform_tags.setter
|
447
|
+
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
448
|
+
pulumi.set(self, "freeform_tags", value)
|
449
|
+
|
450
|
+
@_builtins.property
|
451
|
+
@pulumi.getter(name="isSchedulingPolicyAssociated")
|
452
|
+
def is_scheduling_policy_associated(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
453
|
+
"""
|
454
|
+
If true, the infrastructure is using granular maintenance scheduling preference.
|
455
|
+
"""
|
456
|
+
return pulumi.get(self, "is_scheduling_policy_associated")
|
457
|
+
|
458
|
+
@is_scheduling_policy_associated.setter
|
459
|
+
def is_scheduling_policy_associated(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
460
|
+
pulumi.set(self, "is_scheduling_policy_associated", value)
|
461
|
+
|
462
|
+
@_builtins.property
|
463
|
+
@pulumi.getter(name="lastMaintenanceRunId")
|
464
|
+
def last_maintenance_run_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
465
|
+
"""
|
466
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the last maintenance run.
|
467
|
+
"""
|
468
|
+
return pulumi.get(self, "last_maintenance_run_id")
|
469
|
+
|
470
|
+
@last_maintenance_run_id.setter
|
471
|
+
def last_maintenance_run_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
472
|
+
pulumi.set(self, "last_maintenance_run_id", value)
|
473
|
+
|
474
|
+
@_builtins.property
|
475
|
+
@pulumi.getter(name="lifecycleDetails")
|
476
|
+
def lifecycle_details(self) -> Optional[pulumi.Input[_builtins.str]]:
|
477
|
+
"""
|
478
|
+
Additional information about the current lifecycle state.
|
479
|
+
"""
|
480
|
+
return pulumi.get(self, "lifecycle_details")
|
481
|
+
|
482
|
+
@lifecycle_details.setter
|
483
|
+
def lifecycle_details(self, value: Optional[pulumi.Input[_builtins.str]]):
|
484
|
+
pulumi.set(self, "lifecycle_details", value)
|
485
|
+
|
486
|
+
@_builtins.property
|
487
|
+
@pulumi.getter(name="maintenanceWindows")
|
488
|
+
def maintenance_windows(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['CloudExadataInfrastructureConfigureExascaleManagementMaintenanceWindowArgs']]]]:
|
489
|
+
"""
|
490
|
+
The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
|
491
|
+
"""
|
492
|
+
return pulumi.get(self, "maintenance_windows")
|
493
|
+
|
494
|
+
@maintenance_windows.setter
|
495
|
+
def maintenance_windows(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['CloudExadataInfrastructureConfigureExascaleManagementMaintenanceWindowArgs']]]]):
|
496
|
+
pulumi.set(self, "maintenance_windows", value)
|
497
|
+
|
498
|
+
@_builtins.property
|
499
|
+
@pulumi.getter(name="maxCpuCount")
|
500
|
+
def max_cpu_count(self) -> Optional[pulumi.Input[_builtins.int]]:
|
501
|
+
"""
|
502
|
+
The total number of CPU cores available.
|
503
|
+
"""
|
504
|
+
return pulumi.get(self, "max_cpu_count")
|
505
|
+
|
506
|
+
@max_cpu_count.setter
|
507
|
+
def max_cpu_count(self, value: Optional[pulumi.Input[_builtins.int]]):
|
508
|
+
pulumi.set(self, "max_cpu_count", value)
|
509
|
+
|
510
|
+
@_builtins.property
|
511
|
+
@pulumi.getter(name="maxDataStorageInTbs")
|
512
|
+
def max_data_storage_in_tbs(self) -> Optional[pulumi.Input[_builtins.float]]:
|
513
|
+
"""
|
514
|
+
The total available DATA disk group size.
|
515
|
+
"""
|
516
|
+
return pulumi.get(self, "max_data_storage_in_tbs")
|
517
|
+
|
518
|
+
@max_data_storage_in_tbs.setter
|
519
|
+
def max_data_storage_in_tbs(self, value: Optional[pulumi.Input[_builtins.float]]):
|
520
|
+
pulumi.set(self, "max_data_storage_in_tbs", value)
|
521
|
+
|
522
|
+
@_builtins.property
|
523
|
+
@pulumi.getter(name="maxDbNodeStorageInGbs")
|
524
|
+
def max_db_node_storage_in_gbs(self) -> Optional[pulumi.Input[_builtins.int]]:
|
525
|
+
"""
|
526
|
+
The total local node storage available in GBs.
|
527
|
+
"""
|
528
|
+
return pulumi.get(self, "max_db_node_storage_in_gbs")
|
529
|
+
|
530
|
+
@max_db_node_storage_in_gbs.setter
|
531
|
+
def max_db_node_storage_in_gbs(self, value: Optional[pulumi.Input[_builtins.int]]):
|
532
|
+
pulumi.set(self, "max_db_node_storage_in_gbs", value)
|
533
|
+
|
534
|
+
@_builtins.property
|
535
|
+
@pulumi.getter(name="maxMemoryInGbs")
|
536
|
+
def max_memory_in_gbs(self) -> Optional[pulumi.Input[_builtins.int]]:
|
537
|
+
"""
|
538
|
+
The total memory available in GBs.
|
539
|
+
"""
|
540
|
+
return pulumi.get(self, "max_memory_in_gbs")
|
541
|
+
|
542
|
+
@max_memory_in_gbs.setter
|
543
|
+
def max_memory_in_gbs(self, value: Optional[pulumi.Input[_builtins.int]]):
|
544
|
+
pulumi.set(self, "max_memory_in_gbs", value)
|
545
|
+
|
546
|
+
@_builtins.property
|
547
|
+
@pulumi.getter(name="memorySizeInGbs")
|
548
|
+
def memory_size_in_gbs(self) -> Optional[pulumi.Input[_builtins.int]]:
|
549
|
+
"""
|
550
|
+
The memory allocated in GBs.
|
551
|
+
"""
|
552
|
+
return pulumi.get(self, "memory_size_in_gbs")
|
553
|
+
|
554
|
+
@memory_size_in_gbs.setter
|
555
|
+
def memory_size_in_gbs(self, value: Optional[pulumi.Input[_builtins.int]]):
|
556
|
+
pulumi.set(self, "memory_size_in_gbs", value)
|
557
|
+
|
558
|
+
@_builtins.property
|
559
|
+
@pulumi.getter(name="monthlyDbServerVersion")
|
560
|
+
def monthly_db_server_version(self) -> Optional[pulumi.Input[_builtins.str]]:
|
561
|
+
"""
|
562
|
+
The monthly software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
|
563
|
+
"""
|
564
|
+
return pulumi.get(self, "monthly_db_server_version")
|
565
|
+
|
566
|
+
@monthly_db_server_version.setter
|
567
|
+
def monthly_db_server_version(self, value: Optional[pulumi.Input[_builtins.str]]):
|
568
|
+
pulumi.set(self, "monthly_db_server_version", value)
|
569
|
+
|
570
|
+
@_builtins.property
|
571
|
+
@pulumi.getter(name="monthlyStorageServerVersion")
|
572
|
+
def monthly_storage_server_version(self) -> Optional[pulumi.Input[_builtins.str]]:
|
573
|
+
"""
|
574
|
+
The monthly software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
|
575
|
+
"""
|
576
|
+
return pulumi.get(self, "monthly_storage_server_version")
|
577
|
+
|
578
|
+
@monthly_storage_server_version.setter
|
579
|
+
def monthly_storage_server_version(self, value: Optional[pulumi.Input[_builtins.str]]):
|
580
|
+
pulumi.set(self, "monthly_storage_server_version", value)
|
581
|
+
|
582
|
+
@_builtins.property
|
583
|
+
@pulumi.getter(name="nextMaintenanceRunId")
|
584
|
+
def next_maintenance_run_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
585
|
+
"""
|
586
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the next maintenance run.
|
587
|
+
"""
|
588
|
+
return pulumi.get(self, "next_maintenance_run_id")
|
589
|
+
|
590
|
+
@next_maintenance_run_id.setter
|
591
|
+
def next_maintenance_run_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
592
|
+
pulumi.set(self, "next_maintenance_run_id", value)
|
593
|
+
|
594
|
+
@_builtins.property
|
595
|
+
@pulumi.getter
|
596
|
+
def shape(self) -> Optional[pulumi.Input[_builtins.str]]:
|
597
|
+
"""
|
598
|
+
The model name of the cloud Exadata infrastructure resource.
|
599
|
+
"""
|
600
|
+
return pulumi.get(self, "shape")
|
601
|
+
|
602
|
+
@shape.setter
|
603
|
+
def shape(self, value: Optional[pulumi.Input[_builtins.str]]):
|
604
|
+
pulumi.set(self, "shape", value)
|
605
|
+
|
606
|
+
@_builtins.property
|
607
|
+
@pulumi.getter
|
608
|
+
def state(self) -> Optional[pulumi.Input[_builtins.str]]:
|
609
|
+
"""
|
610
|
+
The current lifecycle state of the cloud Exadata infrastructure resource.
|
611
|
+
"""
|
612
|
+
return pulumi.get(self, "state")
|
613
|
+
|
614
|
+
@state.setter
|
615
|
+
def state(self, value: Optional[pulumi.Input[_builtins.str]]):
|
616
|
+
pulumi.set(self, "state", value)
|
617
|
+
|
618
|
+
@_builtins.property
|
619
|
+
@pulumi.getter(name="storageCount")
|
620
|
+
def storage_count(self) -> Optional[pulumi.Input[_builtins.int]]:
|
621
|
+
"""
|
622
|
+
The number of storage servers for the cloud Exadata infrastructure.
|
623
|
+
"""
|
624
|
+
return pulumi.get(self, "storage_count")
|
625
|
+
|
626
|
+
@storage_count.setter
|
627
|
+
def storage_count(self, value: Optional[pulumi.Input[_builtins.int]]):
|
628
|
+
pulumi.set(self, "storage_count", value)
|
629
|
+
|
630
|
+
@_builtins.property
|
631
|
+
@pulumi.getter(name="storageServerVersion")
|
632
|
+
def storage_server_version(self) -> Optional[pulumi.Input[_builtins.str]]:
|
633
|
+
"""
|
634
|
+
The software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
|
635
|
+
"""
|
636
|
+
return pulumi.get(self, "storage_server_version")
|
637
|
+
|
638
|
+
@storage_server_version.setter
|
639
|
+
def storage_server_version(self, value: Optional[pulumi.Input[_builtins.str]]):
|
640
|
+
pulumi.set(self, "storage_server_version", value)
|
641
|
+
|
642
|
+
@_builtins.property
|
643
|
+
@pulumi.getter(name="subscriptionId")
|
644
|
+
def subscription_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
645
|
+
"""
|
646
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subscription with which resource needs to be associated with.
|
647
|
+
"""
|
648
|
+
return pulumi.get(self, "subscription_id")
|
649
|
+
|
650
|
+
@subscription_id.setter
|
651
|
+
def subscription_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
652
|
+
pulumi.set(self, "subscription_id", value)
|
653
|
+
|
654
|
+
@_builtins.property
|
655
|
+
@pulumi.getter(name="systemTags")
|
656
|
+
def system_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
|
657
|
+
"""
|
658
|
+
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).
|
659
|
+
"""
|
660
|
+
return pulumi.get(self, "system_tags")
|
661
|
+
|
662
|
+
@system_tags.setter
|
663
|
+
def system_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
664
|
+
pulumi.set(self, "system_tags", value)
|
665
|
+
|
666
|
+
@_builtins.property
|
667
|
+
@pulumi.getter(name="timeCreated")
|
668
|
+
def time_created(self) -> Optional[pulumi.Input[_builtins.str]]:
|
669
|
+
"""
|
670
|
+
The date and time the cloud Exadata infrastructure resource was created.
|
671
|
+
"""
|
672
|
+
return pulumi.get(self, "time_created")
|
673
|
+
|
674
|
+
@time_created.setter
|
675
|
+
def time_created(self, value: Optional[pulumi.Input[_builtins.str]]):
|
676
|
+
pulumi.set(self, "time_created", value)
|
677
|
+
|
678
|
+
@_builtins.property
|
679
|
+
@pulumi.getter(name="totalStorageInGbs")
|
680
|
+
def total_storage_in_gbs(self) -> Optional[pulumi.Input[_builtins.int]]:
|
681
|
+
"""
|
682
|
+
Storage size needed for Exascale in GBs.
|
683
|
+
|
684
|
+
|
685
|
+
** IMPORTANT **
|
686
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
687
|
+
"""
|
688
|
+
return pulumi.get(self, "total_storage_in_gbs")
|
689
|
+
|
690
|
+
@total_storage_in_gbs.setter
|
691
|
+
def total_storage_in_gbs(self, value: Optional[pulumi.Input[_builtins.int]]):
|
692
|
+
pulumi.set(self, "total_storage_in_gbs", value)
|
693
|
+
|
694
|
+
@_builtins.property
|
695
|
+
@pulumi.getter(name="totalStorageSizeInGbs")
|
696
|
+
def total_storage_size_in_gbs(self) -> Optional[pulumi.Input[_builtins.int]]:
|
697
|
+
"""
|
698
|
+
The total storage allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
|
699
|
+
"""
|
700
|
+
return pulumi.get(self, "total_storage_size_in_gbs")
|
701
|
+
|
702
|
+
@total_storage_size_in_gbs.setter
|
703
|
+
def total_storage_size_in_gbs(self, value: Optional[pulumi.Input[_builtins.int]]):
|
704
|
+
pulumi.set(self, "total_storage_size_in_gbs", value)
|
705
|
+
|
706
|
+
|
707
|
+
@pulumi.type_token("oci:Database/cloudExadataInfrastructureConfigureExascaleManagement:CloudExadataInfrastructureConfigureExascaleManagement")
|
708
|
+
class CloudExadataInfrastructureConfigureExascaleManagement(pulumi.CustomResource):
|
709
|
+
@overload
|
710
|
+
def __init__(__self__,
|
711
|
+
resource_name: str,
|
712
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
713
|
+
cloud_exadata_infrastructure_id: Optional[pulumi.Input[_builtins.str]] = None,
|
714
|
+
total_storage_in_gbs: Optional[pulumi.Input[_builtins.int]] = None,
|
715
|
+
__props__=None):
|
716
|
+
"""
|
717
|
+
This resource provides the Cloud Exadata Infrastructure Configure Exascale Management resource in Oracle Cloud Infrastructure Database service.
|
718
|
+
|
719
|
+
Configures Exascale on Cloud exadata infrastructure resource. Applies to Exadata Cloud Service instances only.
|
720
|
+
|
721
|
+
## Example Usage
|
722
|
+
|
723
|
+
```python
|
724
|
+
import pulumi
|
725
|
+
import pulumi_oci as oci
|
726
|
+
|
727
|
+
test_cloud_exadata_infrastructure_configure_exascale_management = oci.database.CloudExadataInfrastructureConfigureExascaleManagement("test_cloud_exadata_infrastructure_configure_exascale_management",
|
728
|
+
cloud_exadata_infrastructure_id=test_cloud_exadata_infrastructure["id"],
|
729
|
+
total_storage_in_gbs=cloud_exadata_infrastructure_configure_exascale_management_total_storage_in_gbs)
|
730
|
+
```
|
731
|
+
|
732
|
+
## Import
|
733
|
+
|
734
|
+
CloudExadataInfrastructureConfigureExascaleManagement can be imported using the `id`, e.g.
|
735
|
+
|
736
|
+
```sh
|
737
|
+
$ pulumi import oci:Database/cloudExadataInfrastructureConfigureExascaleManagement:CloudExadataInfrastructureConfigureExascaleManagement test_cloud_exadata_infrastructure_configure_exascale_management "id"
|
738
|
+
```
|
739
|
+
|
740
|
+
:param str resource_name: The name of the resource.
|
741
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
742
|
+
:param pulumi.Input[_builtins.str] cloud_exadata_infrastructure_id: The cloud Exadata infrastructure [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
743
|
+
:param pulumi.Input[_builtins.int] total_storage_in_gbs: Storage size needed for Exascale in GBs.
|
744
|
+
|
745
|
+
|
746
|
+
** IMPORTANT **
|
747
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
748
|
+
"""
|
749
|
+
...
|
750
|
+
@overload
|
751
|
+
def __init__(__self__,
|
752
|
+
resource_name: str,
|
753
|
+
args: CloudExadataInfrastructureConfigureExascaleManagementArgs,
|
754
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
755
|
+
"""
|
756
|
+
This resource provides the Cloud Exadata Infrastructure Configure Exascale Management resource in Oracle Cloud Infrastructure Database service.
|
757
|
+
|
758
|
+
Configures Exascale on Cloud exadata infrastructure resource. Applies to Exadata Cloud Service instances only.
|
759
|
+
|
760
|
+
## Example Usage
|
761
|
+
|
762
|
+
```python
|
763
|
+
import pulumi
|
764
|
+
import pulumi_oci as oci
|
765
|
+
|
766
|
+
test_cloud_exadata_infrastructure_configure_exascale_management = oci.database.CloudExadataInfrastructureConfigureExascaleManagement("test_cloud_exadata_infrastructure_configure_exascale_management",
|
767
|
+
cloud_exadata_infrastructure_id=test_cloud_exadata_infrastructure["id"],
|
768
|
+
total_storage_in_gbs=cloud_exadata_infrastructure_configure_exascale_management_total_storage_in_gbs)
|
769
|
+
```
|
770
|
+
|
771
|
+
## Import
|
772
|
+
|
773
|
+
CloudExadataInfrastructureConfigureExascaleManagement can be imported using the `id`, e.g.
|
774
|
+
|
775
|
+
```sh
|
776
|
+
$ pulumi import oci:Database/cloudExadataInfrastructureConfigureExascaleManagement:CloudExadataInfrastructureConfigureExascaleManagement test_cloud_exadata_infrastructure_configure_exascale_management "id"
|
777
|
+
```
|
778
|
+
|
779
|
+
:param str resource_name: The name of the resource.
|
780
|
+
:param CloudExadataInfrastructureConfigureExascaleManagementArgs args: The arguments to use to populate this resource's properties.
|
781
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
782
|
+
"""
|
783
|
+
...
|
784
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
785
|
+
resource_args, opts = _utilities.get_resource_args_opts(CloudExadataInfrastructureConfigureExascaleManagementArgs, pulumi.ResourceOptions, *args, **kwargs)
|
786
|
+
if resource_args is not None:
|
787
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
788
|
+
else:
|
789
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
790
|
+
|
791
|
+
def _internal_init(__self__,
|
792
|
+
resource_name: str,
|
793
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
794
|
+
cloud_exadata_infrastructure_id: Optional[pulumi.Input[_builtins.str]] = None,
|
795
|
+
total_storage_in_gbs: Optional[pulumi.Input[_builtins.int]] = None,
|
796
|
+
__props__=None):
|
797
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
798
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
799
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
800
|
+
if opts.id is None:
|
801
|
+
if __props__ is not None:
|
802
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
803
|
+
__props__ = CloudExadataInfrastructureConfigureExascaleManagementArgs.__new__(CloudExadataInfrastructureConfigureExascaleManagementArgs)
|
804
|
+
|
805
|
+
if cloud_exadata_infrastructure_id is None and not opts.urn:
|
806
|
+
raise TypeError("Missing required property 'cloud_exadata_infrastructure_id'")
|
807
|
+
__props__.__dict__["cloud_exadata_infrastructure_id"] = cloud_exadata_infrastructure_id
|
808
|
+
if total_storage_in_gbs is None and not opts.urn:
|
809
|
+
raise TypeError("Missing required property 'total_storage_in_gbs'")
|
810
|
+
__props__.__dict__["total_storage_in_gbs"] = total_storage_in_gbs
|
811
|
+
__props__.__dict__["activated_storage_count"] = None
|
812
|
+
__props__.__dict__["additional_storage_count"] = None
|
813
|
+
__props__.__dict__["availability_domain"] = None
|
814
|
+
__props__.__dict__["available_storage_size_in_gbs"] = None
|
815
|
+
__props__.__dict__["cluster_placement_group_id"] = None
|
816
|
+
__props__.__dict__["compartment_id"] = None
|
817
|
+
__props__.__dict__["compute_count"] = None
|
818
|
+
__props__.__dict__["cpu_count"] = None
|
819
|
+
__props__.__dict__["customer_contacts"] = None
|
820
|
+
__props__.__dict__["data_storage_size_in_tbs"] = None
|
821
|
+
__props__.__dict__["db_node_storage_size_in_gbs"] = None
|
822
|
+
__props__.__dict__["db_server_version"] = None
|
823
|
+
__props__.__dict__["defined_file_system_configurations"] = None
|
824
|
+
__props__.__dict__["defined_tags"] = None
|
825
|
+
__props__.__dict__["display_name"] = None
|
826
|
+
__props__.__dict__["exascale_configs"] = None
|
827
|
+
__props__.__dict__["freeform_tags"] = None
|
828
|
+
__props__.__dict__["is_scheduling_policy_associated"] = None
|
829
|
+
__props__.__dict__["last_maintenance_run_id"] = None
|
830
|
+
__props__.__dict__["lifecycle_details"] = None
|
831
|
+
__props__.__dict__["maintenance_windows"] = None
|
832
|
+
__props__.__dict__["max_cpu_count"] = None
|
833
|
+
__props__.__dict__["max_data_storage_in_tbs"] = None
|
834
|
+
__props__.__dict__["max_db_node_storage_in_gbs"] = None
|
835
|
+
__props__.__dict__["max_memory_in_gbs"] = None
|
836
|
+
__props__.__dict__["memory_size_in_gbs"] = None
|
837
|
+
__props__.__dict__["monthly_db_server_version"] = None
|
838
|
+
__props__.__dict__["monthly_storage_server_version"] = None
|
839
|
+
__props__.__dict__["next_maintenance_run_id"] = None
|
840
|
+
__props__.__dict__["shape"] = None
|
841
|
+
__props__.__dict__["state"] = None
|
842
|
+
__props__.__dict__["storage_count"] = None
|
843
|
+
__props__.__dict__["storage_server_version"] = None
|
844
|
+
__props__.__dict__["subscription_id"] = None
|
845
|
+
__props__.__dict__["system_tags"] = None
|
846
|
+
__props__.__dict__["time_created"] = None
|
847
|
+
__props__.__dict__["total_storage_size_in_gbs"] = None
|
848
|
+
super(CloudExadataInfrastructureConfigureExascaleManagement, __self__).__init__(
|
849
|
+
'oci:Database/cloudExadataInfrastructureConfigureExascaleManagement:CloudExadataInfrastructureConfigureExascaleManagement',
|
850
|
+
resource_name,
|
851
|
+
__props__,
|
852
|
+
opts)
|
853
|
+
|
854
|
+
@staticmethod
|
855
|
+
def get(resource_name: str,
|
856
|
+
id: pulumi.Input[str],
|
857
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
858
|
+
activated_storage_count: Optional[pulumi.Input[_builtins.int]] = None,
|
859
|
+
additional_storage_count: Optional[pulumi.Input[_builtins.int]] = None,
|
860
|
+
availability_domain: Optional[pulumi.Input[_builtins.str]] = None,
|
861
|
+
available_storage_size_in_gbs: Optional[pulumi.Input[_builtins.int]] = None,
|
862
|
+
cloud_exadata_infrastructure_id: Optional[pulumi.Input[_builtins.str]] = None,
|
863
|
+
cluster_placement_group_id: Optional[pulumi.Input[_builtins.str]] = None,
|
864
|
+
compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
|
865
|
+
compute_count: Optional[pulumi.Input[_builtins.int]] = None,
|
866
|
+
cpu_count: Optional[pulumi.Input[_builtins.int]] = None,
|
867
|
+
customer_contacts: Optional[pulumi.Input[Sequence[pulumi.Input[Union['CloudExadataInfrastructureConfigureExascaleManagementCustomerContactArgs', 'CloudExadataInfrastructureConfigureExascaleManagementCustomerContactArgsDict']]]]] = None,
|
868
|
+
data_storage_size_in_tbs: Optional[pulumi.Input[_builtins.float]] = None,
|
869
|
+
db_node_storage_size_in_gbs: Optional[pulumi.Input[_builtins.int]] = None,
|
870
|
+
db_server_version: Optional[pulumi.Input[_builtins.str]] = None,
|
871
|
+
defined_file_system_configurations: Optional[pulumi.Input[Sequence[pulumi.Input[Union['CloudExadataInfrastructureConfigureExascaleManagementDefinedFileSystemConfigurationArgs', 'CloudExadataInfrastructureConfigureExascaleManagementDefinedFileSystemConfigurationArgsDict']]]]] = None,
|
872
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
873
|
+
display_name: Optional[pulumi.Input[_builtins.str]] = None,
|
874
|
+
exascale_configs: Optional[pulumi.Input[Sequence[pulumi.Input[Union['CloudExadataInfrastructureConfigureExascaleManagementExascaleConfigArgs', 'CloudExadataInfrastructureConfigureExascaleManagementExascaleConfigArgsDict']]]]] = None,
|
875
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
876
|
+
is_scheduling_policy_associated: Optional[pulumi.Input[_builtins.bool]] = None,
|
877
|
+
last_maintenance_run_id: Optional[pulumi.Input[_builtins.str]] = None,
|
878
|
+
lifecycle_details: Optional[pulumi.Input[_builtins.str]] = None,
|
879
|
+
maintenance_windows: Optional[pulumi.Input[Sequence[pulumi.Input[Union['CloudExadataInfrastructureConfigureExascaleManagementMaintenanceWindowArgs', 'CloudExadataInfrastructureConfigureExascaleManagementMaintenanceWindowArgsDict']]]]] = None,
|
880
|
+
max_cpu_count: Optional[pulumi.Input[_builtins.int]] = None,
|
881
|
+
max_data_storage_in_tbs: Optional[pulumi.Input[_builtins.float]] = None,
|
882
|
+
max_db_node_storage_in_gbs: Optional[pulumi.Input[_builtins.int]] = None,
|
883
|
+
max_memory_in_gbs: Optional[pulumi.Input[_builtins.int]] = None,
|
884
|
+
memory_size_in_gbs: Optional[pulumi.Input[_builtins.int]] = None,
|
885
|
+
monthly_db_server_version: Optional[pulumi.Input[_builtins.str]] = None,
|
886
|
+
monthly_storage_server_version: Optional[pulumi.Input[_builtins.str]] = None,
|
887
|
+
next_maintenance_run_id: Optional[pulumi.Input[_builtins.str]] = None,
|
888
|
+
shape: Optional[pulumi.Input[_builtins.str]] = None,
|
889
|
+
state: Optional[pulumi.Input[_builtins.str]] = None,
|
890
|
+
storage_count: Optional[pulumi.Input[_builtins.int]] = None,
|
891
|
+
storage_server_version: Optional[pulumi.Input[_builtins.str]] = None,
|
892
|
+
subscription_id: Optional[pulumi.Input[_builtins.str]] = None,
|
893
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
894
|
+
time_created: Optional[pulumi.Input[_builtins.str]] = None,
|
895
|
+
total_storage_in_gbs: Optional[pulumi.Input[_builtins.int]] = None,
|
896
|
+
total_storage_size_in_gbs: Optional[pulumi.Input[_builtins.int]] = None) -> 'CloudExadataInfrastructureConfigureExascaleManagement':
|
897
|
+
"""
|
898
|
+
Get an existing CloudExadataInfrastructureConfigureExascaleManagement resource's state with the given name, id, and optional extra
|
899
|
+
properties used to qualify the lookup.
|
900
|
+
|
901
|
+
:param str resource_name: The unique name of the resulting resource.
|
902
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
903
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
904
|
+
:param pulumi.Input[_builtins.int] activated_storage_count: The requested number of additional storage servers activated for the Exadata infrastructure.
|
905
|
+
:param pulumi.Input[_builtins.int] additional_storage_count: The requested number of additional storage servers for the Exadata infrastructure.
|
906
|
+
:param pulumi.Input[_builtins.str] availability_domain: The name of the availability domain that the cloud Exadata infrastructure resource is located in.
|
907
|
+
:param pulumi.Input[_builtins.int] available_storage_size_in_gbs: The available storage can be allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
|
908
|
+
:param pulumi.Input[_builtins.str] cloud_exadata_infrastructure_id: The cloud Exadata infrastructure [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
909
|
+
:param pulumi.Input[_builtins.str] cluster_placement_group_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cluster placement group of the Exadata Infrastructure.
|
910
|
+
:param pulumi.Input[_builtins.str] compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
911
|
+
:param pulumi.Input[_builtins.int] compute_count: The number of compute servers for the cloud Exadata infrastructure.
|
912
|
+
:param pulumi.Input[_builtins.int] cpu_count: The total number of CPU cores allocated.
|
913
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['CloudExadataInfrastructureConfigureExascaleManagementCustomerContactArgs', 'CloudExadataInfrastructureConfigureExascaleManagementCustomerContactArgsDict']]]] customer_contacts: The list of customer email addresses that receive information from Oracle about the specified Oracle Cloud Infrastructure Database service resource. Oracle uses these email addresses to send notifications about planned and unplanned software maintenance updates, information about system hardware, and other information needed by administrators. Up to 10 email addresses can be added to the customer contacts for a cloud Exadata infrastructure instance.
|
914
|
+
:param pulumi.Input[_builtins.float] data_storage_size_in_tbs: Size, in terabytes, of the DATA disk group.
|
915
|
+
:param pulumi.Input[_builtins.int] db_node_storage_size_in_gbs: The local node storage allocated in GBs.
|
916
|
+
:param pulumi.Input[_builtins.str] db_server_version: The software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
|
917
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['CloudExadataInfrastructureConfigureExascaleManagementDefinedFileSystemConfigurationArgs', 'CloudExadataInfrastructureConfigureExascaleManagementDefinedFileSystemConfigurationArgsDict']]]] defined_file_system_configurations: Details of the file system configuration of the Exadata infrastructure.
|
918
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] defined_tags: 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).
|
919
|
+
:param pulumi.Input[_builtins.str] display_name: The user-friendly name for the cloud Exadata infrastructure resource. The name does not need to be unique.
|
920
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['CloudExadataInfrastructureConfigureExascaleManagementExascaleConfigArgs', 'CloudExadataInfrastructureConfigureExascaleManagementExascaleConfigArgsDict']]]] exascale_configs: The exascale config response details for the Exadata Cloud@Customer infrastructure or cloud Exadata infrastructure . Applies to both Exadata Cloud@Customer instances and Exadata Cloud Service instances.
|
921
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] freeform_tags: 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"}`
|
922
|
+
:param pulumi.Input[_builtins.bool] is_scheduling_policy_associated: If true, the infrastructure is using granular maintenance scheduling preference.
|
923
|
+
:param pulumi.Input[_builtins.str] last_maintenance_run_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the last maintenance run.
|
924
|
+
:param pulumi.Input[_builtins.str] lifecycle_details: Additional information about the current lifecycle state.
|
925
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['CloudExadataInfrastructureConfigureExascaleManagementMaintenanceWindowArgs', 'CloudExadataInfrastructureConfigureExascaleManagementMaintenanceWindowArgsDict']]]] maintenance_windows: The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
|
926
|
+
:param pulumi.Input[_builtins.int] max_cpu_count: The total number of CPU cores available.
|
927
|
+
:param pulumi.Input[_builtins.float] max_data_storage_in_tbs: The total available DATA disk group size.
|
928
|
+
:param pulumi.Input[_builtins.int] max_db_node_storage_in_gbs: The total local node storage available in GBs.
|
929
|
+
:param pulumi.Input[_builtins.int] max_memory_in_gbs: The total memory available in GBs.
|
930
|
+
:param pulumi.Input[_builtins.int] memory_size_in_gbs: The memory allocated in GBs.
|
931
|
+
:param pulumi.Input[_builtins.str] monthly_db_server_version: The monthly software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
|
932
|
+
:param pulumi.Input[_builtins.str] monthly_storage_server_version: The monthly software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
|
933
|
+
:param pulumi.Input[_builtins.str] next_maintenance_run_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the next maintenance run.
|
934
|
+
:param pulumi.Input[_builtins.str] shape: The model name of the cloud Exadata infrastructure resource.
|
935
|
+
:param pulumi.Input[_builtins.str] state: The current lifecycle state of the cloud Exadata infrastructure resource.
|
936
|
+
:param pulumi.Input[_builtins.int] storage_count: The number of storage servers for the cloud Exadata infrastructure.
|
937
|
+
:param pulumi.Input[_builtins.str] storage_server_version: The software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
|
938
|
+
:param pulumi.Input[_builtins.str] subscription_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subscription with which resource needs to be associated with.
|
939
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] 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).
|
940
|
+
:param pulumi.Input[_builtins.str] time_created: The date and time the cloud Exadata infrastructure resource was created.
|
941
|
+
:param pulumi.Input[_builtins.int] total_storage_in_gbs: Storage size needed for Exascale in GBs.
|
942
|
+
|
943
|
+
|
944
|
+
** IMPORTANT **
|
945
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
946
|
+
:param pulumi.Input[_builtins.int] total_storage_size_in_gbs: The total storage allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
|
947
|
+
"""
|
948
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
949
|
+
|
950
|
+
__props__ = _CloudExadataInfrastructureConfigureExascaleManagementState.__new__(_CloudExadataInfrastructureConfigureExascaleManagementState)
|
951
|
+
|
952
|
+
__props__.__dict__["activated_storage_count"] = activated_storage_count
|
953
|
+
__props__.__dict__["additional_storage_count"] = additional_storage_count
|
954
|
+
__props__.__dict__["availability_domain"] = availability_domain
|
955
|
+
__props__.__dict__["available_storage_size_in_gbs"] = available_storage_size_in_gbs
|
956
|
+
__props__.__dict__["cloud_exadata_infrastructure_id"] = cloud_exadata_infrastructure_id
|
957
|
+
__props__.__dict__["cluster_placement_group_id"] = cluster_placement_group_id
|
958
|
+
__props__.__dict__["compartment_id"] = compartment_id
|
959
|
+
__props__.__dict__["compute_count"] = compute_count
|
960
|
+
__props__.__dict__["cpu_count"] = cpu_count
|
961
|
+
__props__.__dict__["customer_contacts"] = customer_contacts
|
962
|
+
__props__.__dict__["data_storage_size_in_tbs"] = data_storage_size_in_tbs
|
963
|
+
__props__.__dict__["db_node_storage_size_in_gbs"] = db_node_storage_size_in_gbs
|
964
|
+
__props__.__dict__["db_server_version"] = db_server_version
|
965
|
+
__props__.__dict__["defined_file_system_configurations"] = defined_file_system_configurations
|
966
|
+
__props__.__dict__["defined_tags"] = defined_tags
|
967
|
+
__props__.__dict__["display_name"] = display_name
|
968
|
+
__props__.__dict__["exascale_configs"] = exascale_configs
|
969
|
+
__props__.__dict__["freeform_tags"] = freeform_tags
|
970
|
+
__props__.__dict__["is_scheduling_policy_associated"] = is_scheduling_policy_associated
|
971
|
+
__props__.__dict__["last_maintenance_run_id"] = last_maintenance_run_id
|
972
|
+
__props__.__dict__["lifecycle_details"] = lifecycle_details
|
973
|
+
__props__.__dict__["maintenance_windows"] = maintenance_windows
|
974
|
+
__props__.__dict__["max_cpu_count"] = max_cpu_count
|
975
|
+
__props__.__dict__["max_data_storage_in_tbs"] = max_data_storage_in_tbs
|
976
|
+
__props__.__dict__["max_db_node_storage_in_gbs"] = max_db_node_storage_in_gbs
|
977
|
+
__props__.__dict__["max_memory_in_gbs"] = max_memory_in_gbs
|
978
|
+
__props__.__dict__["memory_size_in_gbs"] = memory_size_in_gbs
|
979
|
+
__props__.__dict__["monthly_db_server_version"] = monthly_db_server_version
|
980
|
+
__props__.__dict__["monthly_storage_server_version"] = monthly_storage_server_version
|
981
|
+
__props__.__dict__["next_maintenance_run_id"] = next_maintenance_run_id
|
982
|
+
__props__.__dict__["shape"] = shape
|
983
|
+
__props__.__dict__["state"] = state
|
984
|
+
__props__.__dict__["storage_count"] = storage_count
|
985
|
+
__props__.__dict__["storage_server_version"] = storage_server_version
|
986
|
+
__props__.__dict__["subscription_id"] = subscription_id
|
987
|
+
__props__.__dict__["system_tags"] = system_tags
|
988
|
+
__props__.__dict__["time_created"] = time_created
|
989
|
+
__props__.__dict__["total_storage_in_gbs"] = total_storage_in_gbs
|
990
|
+
__props__.__dict__["total_storage_size_in_gbs"] = total_storage_size_in_gbs
|
991
|
+
return CloudExadataInfrastructureConfigureExascaleManagement(resource_name, opts=opts, __props__=__props__)
|
992
|
+
|
993
|
+
@_builtins.property
|
994
|
+
@pulumi.getter(name="activatedStorageCount")
|
995
|
+
def activated_storage_count(self) -> pulumi.Output[_builtins.int]:
|
996
|
+
"""
|
997
|
+
The requested number of additional storage servers activated for the Exadata infrastructure.
|
998
|
+
"""
|
999
|
+
return pulumi.get(self, "activated_storage_count")
|
1000
|
+
|
1001
|
+
@_builtins.property
|
1002
|
+
@pulumi.getter(name="additionalStorageCount")
|
1003
|
+
def additional_storage_count(self) -> pulumi.Output[_builtins.int]:
|
1004
|
+
"""
|
1005
|
+
The requested number of additional storage servers for the Exadata infrastructure.
|
1006
|
+
"""
|
1007
|
+
return pulumi.get(self, "additional_storage_count")
|
1008
|
+
|
1009
|
+
@_builtins.property
|
1010
|
+
@pulumi.getter(name="availabilityDomain")
|
1011
|
+
def availability_domain(self) -> pulumi.Output[_builtins.str]:
|
1012
|
+
"""
|
1013
|
+
The name of the availability domain that the cloud Exadata infrastructure resource is located in.
|
1014
|
+
"""
|
1015
|
+
return pulumi.get(self, "availability_domain")
|
1016
|
+
|
1017
|
+
@_builtins.property
|
1018
|
+
@pulumi.getter(name="availableStorageSizeInGbs")
|
1019
|
+
def available_storage_size_in_gbs(self) -> pulumi.Output[_builtins.int]:
|
1020
|
+
"""
|
1021
|
+
The available storage can be allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
|
1022
|
+
"""
|
1023
|
+
return pulumi.get(self, "available_storage_size_in_gbs")
|
1024
|
+
|
1025
|
+
@_builtins.property
|
1026
|
+
@pulumi.getter(name="cloudExadataInfrastructureId")
|
1027
|
+
def cloud_exadata_infrastructure_id(self) -> pulumi.Output[_builtins.str]:
|
1028
|
+
"""
|
1029
|
+
The cloud Exadata infrastructure [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
1030
|
+
"""
|
1031
|
+
return pulumi.get(self, "cloud_exadata_infrastructure_id")
|
1032
|
+
|
1033
|
+
@_builtins.property
|
1034
|
+
@pulumi.getter(name="clusterPlacementGroupId")
|
1035
|
+
def cluster_placement_group_id(self) -> pulumi.Output[_builtins.str]:
|
1036
|
+
"""
|
1037
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cluster placement group of the Exadata Infrastructure.
|
1038
|
+
"""
|
1039
|
+
return pulumi.get(self, "cluster_placement_group_id")
|
1040
|
+
|
1041
|
+
@_builtins.property
|
1042
|
+
@pulumi.getter(name="compartmentId")
|
1043
|
+
def compartment_id(self) -> pulumi.Output[_builtins.str]:
|
1044
|
+
"""
|
1045
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
1046
|
+
"""
|
1047
|
+
return pulumi.get(self, "compartment_id")
|
1048
|
+
|
1049
|
+
@_builtins.property
|
1050
|
+
@pulumi.getter(name="computeCount")
|
1051
|
+
def compute_count(self) -> pulumi.Output[_builtins.int]:
|
1052
|
+
"""
|
1053
|
+
The number of compute servers for the cloud Exadata infrastructure.
|
1054
|
+
"""
|
1055
|
+
return pulumi.get(self, "compute_count")
|
1056
|
+
|
1057
|
+
@_builtins.property
|
1058
|
+
@pulumi.getter(name="cpuCount")
|
1059
|
+
def cpu_count(self) -> pulumi.Output[_builtins.int]:
|
1060
|
+
"""
|
1061
|
+
The total number of CPU cores allocated.
|
1062
|
+
"""
|
1063
|
+
return pulumi.get(self, "cpu_count")
|
1064
|
+
|
1065
|
+
@_builtins.property
|
1066
|
+
@pulumi.getter(name="customerContacts")
|
1067
|
+
def customer_contacts(self) -> pulumi.Output[Sequence['outputs.CloudExadataInfrastructureConfigureExascaleManagementCustomerContact']]:
|
1068
|
+
"""
|
1069
|
+
The list of customer email addresses that receive information from Oracle about the specified Oracle Cloud Infrastructure Database service resource. Oracle uses these email addresses to send notifications about planned and unplanned software maintenance updates, information about system hardware, and other information needed by administrators. Up to 10 email addresses can be added to the customer contacts for a cloud Exadata infrastructure instance.
|
1070
|
+
"""
|
1071
|
+
return pulumi.get(self, "customer_contacts")
|
1072
|
+
|
1073
|
+
@_builtins.property
|
1074
|
+
@pulumi.getter(name="dataStorageSizeInTbs")
|
1075
|
+
def data_storage_size_in_tbs(self) -> pulumi.Output[_builtins.float]:
|
1076
|
+
"""
|
1077
|
+
Size, in terabytes, of the DATA disk group.
|
1078
|
+
"""
|
1079
|
+
return pulumi.get(self, "data_storage_size_in_tbs")
|
1080
|
+
|
1081
|
+
@_builtins.property
|
1082
|
+
@pulumi.getter(name="dbNodeStorageSizeInGbs")
|
1083
|
+
def db_node_storage_size_in_gbs(self) -> pulumi.Output[_builtins.int]:
|
1084
|
+
"""
|
1085
|
+
The local node storage allocated in GBs.
|
1086
|
+
"""
|
1087
|
+
return pulumi.get(self, "db_node_storage_size_in_gbs")
|
1088
|
+
|
1089
|
+
@_builtins.property
|
1090
|
+
@pulumi.getter(name="dbServerVersion")
|
1091
|
+
def db_server_version(self) -> pulumi.Output[_builtins.str]:
|
1092
|
+
"""
|
1093
|
+
The software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
|
1094
|
+
"""
|
1095
|
+
return pulumi.get(self, "db_server_version")
|
1096
|
+
|
1097
|
+
@_builtins.property
|
1098
|
+
@pulumi.getter(name="definedFileSystemConfigurations")
|
1099
|
+
def defined_file_system_configurations(self) -> pulumi.Output[Sequence['outputs.CloudExadataInfrastructureConfigureExascaleManagementDefinedFileSystemConfiguration']]:
|
1100
|
+
"""
|
1101
|
+
Details of the file system configuration of the Exadata infrastructure.
|
1102
|
+
"""
|
1103
|
+
return pulumi.get(self, "defined_file_system_configurations")
|
1104
|
+
|
1105
|
+
@_builtins.property
|
1106
|
+
@pulumi.getter(name="definedTags")
|
1107
|
+
def defined_tags(self) -> pulumi.Output[Mapping[str, _builtins.str]]:
|
1108
|
+
"""
|
1109
|
+
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).
|
1110
|
+
"""
|
1111
|
+
return pulumi.get(self, "defined_tags")
|
1112
|
+
|
1113
|
+
@_builtins.property
|
1114
|
+
@pulumi.getter(name="displayName")
|
1115
|
+
def display_name(self) -> pulumi.Output[_builtins.str]:
|
1116
|
+
"""
|
1117
|
+
The user-friendly name for the cloud Exadata infrastructure resource. The name does not need to be unique.
|
1118
|
+
"""
|
1119
|
+
return pulumi.get(self, "display_name")
|
1120
|
+
|
1121
|
+
@_builtins.property
|
1122
|
+
@pulumi.getter(name="exascaleConfigs")
|
1123
|
+
def exascale_configs(self) -> pulumi.Output[Sequence['outputs.CloudExadataInfrastructureConfigureExascaleManagementExascaleConfig']]:
|
1124
|
+
"""
|
1125
|
+
The exascale config response details for the Exadata Cloud@Customer infrastructure or cloud Exadata infrastructure . Applies to both Exadata Cloud@Customer instances and Exadata Cloud Service instances.
|
1126
|
+
"""
|
1127
|
+
return pulumi.get(self, "exascale_configs")
|
1128
|
+
|
1129
|
+
@_builtins.property
|
1130
|
+
@pulumi.getter(name="freeformTags")
|
1131
|
+
def freeform_tags(self) -> pulumi.Output[Mapping[str, _builtins.str]]:
|
1132
|
+
"""
|
1133
|
+
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"}`
|
1134
|
+
"""
|
1135
|
+
return pulumi.get(self, "freeform_tags")
|
1136
|
+
|
1137
|
+
@_builtins.property
|
1138
|
+
@pulumi.getter(name="isSchedulingPolicyAssociated")
|
1139
|
+
def is_scheduling_policy_associated(self) -> pulumi.Output[_builtins.bool]:
|
1140
|
+
"""
|
1141
|
+
If true, the infrastructure is using granular maintenance scheduling preference.
|
1142
|
+
"""
|
1143
|
+
return pulumi.get(self, "is_scheduling_policy_associated")
|
1144
|
+
|
1145
|
+
@_builtins.property
|
1146
|
+
@pulumi.getter(name="lastMaintenanceRunId")
|
1147
|
+
def last_maintenance_run_id(self) -> pulumi.Output[_builtins.str]:
|
1148
|
+
"""
|
1149
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the last maintenance run.
|
1150
|
+
"""
|
1151
|
+
return pulumi.get(self, "last_maintenance_run_id")
|
1152
|
+
|
1153
|
+
@_builtins.property
|
1154
|
+
@pulumi.getter(name="lifecycleDetails")
|
1155
|
+
def lifecycle_details(self) -> pulumi.Output[_builtins.str]:
|
1156
|
+
"""
|
1157
|
+
Additional information about the current lifecycle state.
|
1158
|
+
"""
|
1159
|
+
return pulumi.get(self, "lifecycle_details")
|
1160
|
+
|
1161
|
+
@_builtins.property
|
1162
|
+
@pulumi.getter(name="maintenanceWindows")
|
1163
|
+
def maintenance_windows(self) -> pulumi.Output[Sequence['outputs.CloudExadataInfrastructureConfigureExascaleManagementMaintenanceWindow']]:
|
1164
|
+
"""
|
1165
|
+
The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
|
1166
|
+
"""
|
1167
|
+
return pulumi.get(self, "maintenance_windows")
|
1168
|
+
|
1169
|
+
@_builtins.property
|
1170
|
+
@pulumi.getter(name="maxCpuCount")
|
1171
|
+
def max_cpu_count(self) -> pulumi.Output[_builtins.int]:
|
1172
|
+
"""
|
1173
|
+
The total number of CPU cores available.
|
1174
|
+
"""
|
1175
|
+
return pulumi.get(self, "max_cpu_count")
|
1176
|
+
|
1177
|
+
@_builtins.property
|
1178
|
+
@pulumi.getter(name="maxDataStorageInTbs")
|
1179
|
+
def max_data_storage_in_tbs(self) -> pulumi.Output[_builtins.float]:
|
1180
|
+
"""
|
1181
|
+
The total available DATA disk group size.
|
1182
|
+
"""
|
1183
|
+
return pulumi.get(self, "max_data_storage_in_tbs")
|
1184
|
+
|
1185
|
+
@_builtins.property
|
1186
|
+
@pulumi.getter(name="maxDbNodeStorageInGbs")
|
1187
|
+
def max_db_node_storage_in_gbs(self) -> pulumi.Output[_builtins.int]:
|
1188
|
+
"""
|
1189
|
+
The total local node storage available in GBs.
|
1190
|
+
"""
|
1191
|
+
return pulumi.get(self, "max_db_node_storage_in_gbs")
|
1192
|
+
|
1193
|
+
@_builtins.property
|
1194
|
+
@pulumi.getter(name="maxMemoryInGbs")
|
1195
|
+
def max_memory_in_gbs(self) -> pulumi.Output[_builtins.int]:
|
1196
|
+
"""
|
1197
|
+
The total memory available in GBs.
|
1198
|
+
"""
|
1199
|
+
return pulumi.get(self, "max_memory_in_gbs")
|
1200
|
+
|
1201
|
+
@_builtins.property
|
1202
|
+
@pulumi.getter(name="memorySizeInGbs")
|
1203
|
+
def memory_size_in_gbs(self) -> pulumi.Output[_builtins.int]:
|
1204
|
+
"""
|
1205
|
+
The memory allocated in GBs.
|
1206
|
+
"""
|
1207
|
+
return pulumi.get(self, "memory_size_in_gbs")
|
1208
|
+
|
1209
|
+
@_builtins.property
|
1210
|
+
@pulumi.getter(name="monthlyDbServerVersion")
|
1211
|
+
def monthly_db_server_version(self) -> pulumi.Output[_builtins.str]:
|
1212
|
+
"""
|
1213
|
+
The monthly software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
|
1214
|
+
"""
|
1215
|
+
return pulumi.get(self, "monthly_db_server_version")
|
1216
|
+
|
1217
|
+
@_builtins.property
|
1218
|
+
@pulumi.getter(name="monthlyStorageServerVersion")
|
1219
|
+
def monthly_storage_server_version(self) -> pulumi.Output[_builtins.str]:
|
1220
|
+
"""
|
1221
|
+
The monthly software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
|
1222
|
+
"""
|
1223
|
+
return pulumi.get(self, "monthly_storage_server_version")
|
1224
|
+
|
1225
|
+
@_builtins.property
|
1226
|
+
@pulumi.getter(name="nextMaintenanceRunId")
|
1227
|
+
def next_maintenance_run_id(self) -> pulumi.Output[_builtins.str]:
|
1228
|
+
"""
|
1229
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the next maintenance run.
|
1230
|
+
"""
|
1231
|
+
return pulumi.get(self, "next_maintenance_run_id")
|
1232
|
+
|
1233
|
+
@_builtins.property
|
1234
|
+
@pulumi.getter
|
1235
|
+
def shape(self) -> pulumi.Output[_builtins.str]:
|
1236
|
+
"""
|
1237
|
+
The model name of the cloud Exadata infrastructure resource.
|
1238
|
+
"""
|
1239
|
+
return pulumi.get(self, "shape")
|
1240
|
+
|
1241
|
+
@_builtins.property
|
1242
|
+
@pulumi.getter
|
1243
|
+
def state(self) -> pulumi.Output[_builtins.str]:
|
1244
|
+
"""
|
1245
|
+
The current lifecycle state of the cloud Exadata infrastructure resource.
|
1246
|
+
"""
|
1247
|
+
return pulumi.get(self, "state")
|
1248
|
+
|
1249
|
+
@_builtins.property
|
1250
|
+
@pulumi.getter(name="storageCount")
|
1251
|
+
def storage_count(self) -> pulumi.Output[_builtins.int]:
|
1252
|
+
"""
|
1253
|
+
The number of storage servers for the cloud Exadata infrastructure.
|
1254
|
+
"""
|
1255
|
+
return pulumi.get(self, "storage_count")
|
1256
|
+
|
1257
|
+
@_builtins.property
|
1258
|
+
@pulumi.getter(name="storageServerVersion")
|
1259
|
+
def storage_server_version(self) -> pulumi.Output[_builtins.str]:
|
1260
|
+
"""
|
1261
|
+
The software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
|
1262
|
+
"""
|
1263
|
+
return pulumi.get(self, "storage_server_version")
|
1264
|
+
|
1265
|
+
@_builtins.property
|
1266
|
+
@pulumi.getter(name="subscriptionId")
|
1267
|
+
def subscription_id(self) -> pulumi.Output[_builtins.str]:
|
1268
|
+
"""
|
1269
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subscription with which resource needs to be associated with.
|
1270
|
+
"""
|
1271
|
+
return pulumi.get(self, "subscription_id")
|
1272
|
+
|
1273
|
+
@_builtins.property
|
1274
|
+
@pulumi.getter(name="systemTags")
|
1275
|
+
def system_tags(self) -> pulumi.Output[Mapping[str, _builtins.str]]:
|
1276
|
+
"""
|
1277
|
+
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).
|
1278
|
+
"""
|
1279
|
+
return pulumi.get(self, "system_tags")
|
1280
|
+
|
1281
|
+
@_builtins.property
|
1282
|
+
@pulumi.getter(name="timeCreated")
|
1283
|
+
def time_created(self) -> pulumi.Output[_builtins.str]:
|
1284
|
+
"""
|
1285
|
+
The date and time the cloud Exadata infrastructure resource was created.
|
1286
|
+
"""
|
1287
|
+
return pulumi.get(self, "time_created")
|
1288
|
+
|
1289
|
+
@_builtins.property
|
1290
|
+
@pulumi.getter(name="totalStorageInGbs")
|
1291
|
+
def total_storage_in_gbs(self) -> pulumi.Output[_builtins.int]:
|
1292
|
+
"""
|
1293
|
+
Storage size needed for Exascale in GBs.
|
1294
|
+
|
1295
|
+
|
1296
|
+
** IMPORTANT **
|
1297
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
1298
|
+
"""
|
1299
|
+
return pulumi.get(self, "total_storage_in_gbs")
|
1300
|
+
|
1301
|
+
@_builtins.property
|
1302
|
+
@pulumi.getter(name="totalStorageSizeInGbs")
|
1303
|
+
def total_storage_size_in_gbs(self) -> pulumi.Output[_builtins.int]:
|
1304
|
+
"""
|
1305
|
+
The total storage allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
|
1306
|
+
"""
|
1307
|
+
return pulumi.get(self, "total_storage_size_in_gbs")
|
1308
|
+
|