pulumi-oci 1.33.0a1713903118__py3-none-any.whl → 1.34.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 +51 -0
- pulumi_oci/clusterplacementgroups/__init__.py +12 -0
- pulumi_oci/clusterplacementgroups/_inputs.py +159 -0
- pulumi_oci/clusterplacementgroups/cluster_placement_group.py +843 -0
- pulumi_oci/clusterplacementgroups/get_cluster_placement_group.py +298 -0
- pulumi_oci/clusterplacementgroups/get_cluster_placement_groups.py +217 -0
- pulumi_oci/clusterplacementgroups/outputs.py +485 -0
- pulumi_oci/config/__init__.pyi +2 -2
- pulumi_oci/config/vars.py +2 -2
- pulumi_oci/core/_inputs.py +116 -28
- pulumi_oci/core/boot_volume.py +49 -0
- pulumi_oci/core/compute_capacity_reservation.py +2 -0
- pulumi_oci/core/compute_cluster.py +2 -4
- pulumi_oci/core/drg_route_distribution.py +7 -7
- pulumi_oci/core/get_boot_volume.py +14 -1
- pulumi_oci/core/get_cnv_dns_resolver_association.py +2 -2
- pulumi_oci/core/get_instance.py +14 -1
- pulumi_oci/core/get_subnet.py +2 -2
- pulumi_oci/core/get_vcn.py +2 -2
- pulumi_oci/core/get_volume.py +14 -1
- pulumi_oci/core/get_volumes.py +21 -1
- pulumi_oci/core/instance.py +51 -4
- pulumi_oci/core/instance_configuration.py +8 -0
- pulumi_oci/core/outputs.py +302 -45
- pulumi_oci/core/volume.py +49 -0
- pulumi_oci/core/volume_attachment.py +28 -0
- pulumi_oci/core/volume_group.py +49 -0
- pulumi_oci/database/db_home.py +47 -0
- pulumi_oci/database/get_db_home.py +14 -1
- pulumi_oci/database/outputs.py +11 -0
- pulumi_oci/databasemanagement/__init__.py +5 -0
- pulumi_oci/databasemanagement/_inputs.py +1207 -2
- pulumi_oci/databasemanagement/database_dbm_features_management.py +275 -0
- pulumi_oci/databasemanagement/db_management_private_endpoint.py +28 -0
- pulumi_oci/databasemanagement/external_asm.py +28 -0
- pulumi_oci/databasemanagement/external_asm_instance.py +28 -0
- pulumi_oci/databasemanagement/external_cluster.py +28 -0
- pulumi_oci/databasemanagement/external_cluster_instance.py +28 -0
- pulumi_oci/databasemanagement/external_db_home.py +28 -0
- pulumi_oci/databasemanagement/external_db_node.py +28 -0
- pulumi_oci/databasemanagement/external_db_system.py +28 -0
- pulumi_oci/databasemanagement/external_db_system_connector.py +28 -0
- pulumi_oci/databasemanagement/external_db_system_discovery.py +28 -0
- pulumi_oci/databasemanagement/external_exadata_infrastructure.py +28 -0
- pulumi_oci/databasemanagement/external_exadata_storage_connector.py +28 -0
- pulumi_oci/databasemanagement/external_exadata_storage_grid.py +28 -0
- pulumi_oci/databasemanagement/external_exadata_storage_server.py +28 -0
- pulumi_oci/databasemanagement/external_listener.py +28 -0
- pulumi_oci/databasemanagement/externalcontainerdatabase_external_container_dbm_features_management.py +275 -0
- pulumi_oci/databasemanagement/externalnoncontainerdatabase_external_non_container_dbm_features_management.py +275 -0
- pulumi_oci/databasemanagement/externalpluggabledatabase_external_pluggable_dbm_features_management.py +275 -0
- pulumi_oci/databasemanagement/get_db_management_private_endpoint.py +14 -1
- pulumi_oci/databasemanagement/get_external_asm.py +14 -1
- pulumi_oci/databasemanagement/get_external_asm_instance.py +14 -1
- pulumi_oci/databasemanagement/get_external_cluster.py +14 -1
- pulumi_oci/databasemanagement/get_external_cluster_instance.py +14 -1
- pulumi_oci/databasemanagement/get_external_databases.py +18 -1
- pulumi_oci/databasemanagement/get_external_db_home.py +14 -1
- pulumi_oci/databasemanagement/get_external_db_node.py +14 -1
- pulumi_oci/databasemanagement/get_external_db_system.py +14 -1
- pulumi_oci/databasemanagement/get_external_db_system_connector.py +14 -1
- pulumi_oci/databasemanagement/get_external_db_system_discovery.py +14 -1
- pulumi_oci/databasemanagement/get_external_exadata_infrastructure.py +14 -1
- pulumi_oci/databasemanagement/get_external_exadata_storage_connector.py +14 -1
- pulumi_oci/databasemanagement/get_external_exadata_storage_grid.py +14 -1
- pulumi_oci/databasemanagement/get_external_exadata_storage_server.py +14 -1
- pulumi_oci/databasemanagement/get_external_listener.py +14 -1
- pulumi_oci/databasemanagement/get_managed_database_group.py +14 -1
- pulumi_oci/databasemanagement/get_managed_my_sql_database.py +6 -6
- pulumi_oci/databasemanagement/get_named_credential.py +14 -1
- pulumi_oci/databasemanagement/managed_database.py +28 -0
- pulumi_oci/databasemanagement/managed_database_group.py +28 -0
- pulumi_oci/databasemanagement/named_credential.py +28 -0
- pulumi_oci/databasemanagement/outputs.py +1723 -214
- pulumi_oci/databasemanagement/pluggabledatabase_pluggable_database_dbm_features_management.py +275 -0
- pulumi_oci/databasemigration/_inputs.py +20 -0
- pulumi_oci/databasemigration/connection.py +13 -0
- pulumi_oci/databasemigration/get_connection.py +3 -0
- pulumi_oci/databasemigration/get_migration.py +3 -0
- pulumi_oci/databasemigration/migration.py +13 -0
- pulumi_oci/databasemigration/outputs.py +68 -0
- pulumi_oci/datasafe/__init__.py +3 -0
- pulumi_oci/datasafe/_inputs.py +80 -0
- pulumi_oci/datasafe/get_masking_policy.py +11 -1
- pulumi_oci/datasafe/get_masking_policy_health_report.py +235 -0
- pulumi_oci/datasafe/get_masking_policy_health_report_logs.py +153 -0
- pulumi_oci/datasafe/get_masking_policy_health_reports.py +267 -0
- pulumi_oci/datasafe/masking_policy.py +75 -28
- pulumi_oci/datasafe/outputs.py +287 -0
- pulumi_oci/networkloadbalancer/backend_set.py +49 -0
- pulumi_oci/networkloadbalancer/get_backend_set.py +14 -1
- pulumi_oci/networkloadbalancer/network_load_balancers_backend_sets_unified.py +49 -0
- pulumi_oci/networkloadbalancer/outputs.py +11 -0
- pulumi_oci/provider.py +8 -8
- pulumi_oci/recoverymod/_inputs.py +16 -0
- pulumi_oci/recoverymod/get_protected_database.py +25 -5
- pulumi_oci/recoverymod/get_protection_policies.py +1 -7
- pulumi_oci/recoverymod/get_protection_policy.py +15 -8
- pulumi_oci/recoverymod/get_recovery_service_subnet.py +32 -9
- pulumi_oci/recoverymod/get_recovery_service_subnets.py +3 -21
- pulumi_oci/recoverymod/outputs.py +96 -24
- pulumi_oci/recoverymod/protected_database.py +95 -16
- pulumi_oci/recoverymod/protection_policy.py +121 -54
- pulumi_oci/recoverymod/recovery_service_subnet.py +143 -55
- {pulumi_oci-1.33.0a1713903118.dist-info → pulumi_oci-1.34.0.dist-info}/METADATA +1 -1
- {pulumi_oci-1.33.0a1713903118.dist-info → pulumi_oci-1.34.0.dist-info}/RECORD +108 -94
- {pulumi_oci-1.33.0a1713903118.dist-info → pulumi_oci-1.34.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.33.0a1713903118.dist-info → pulumi_oci-1.34.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,275 @@
|
|
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__ = ['DatabaseDbmFeaturesManagementArgs', 'DatabaseDbmFeaturesManagement']
|
15
|
+
|
16
|
+
@pulumi.input_type
|
17
|
+
class DatabaseDbmFeaturesManagementArgs:
|
18
|
+
def __init__(__self__, *,
|
19
|
+
database_id: pulumi.Input[str],
|
20
|
+
enable_database_dbm_feature: pulumi.Input[bool],
|
21
|
+
feature_details: Optional[pulumi.Input['DatabaseDbmFeaturesManagementFeatureDetailsArgs']] = None):
|
22
|
+
"""
|
23
|
+
The set of arguments for constructing a DatabaseDbmFeaturesManagement resource.
|
24
|
+
:param pulumi.Input[str] database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Database.
|
25
|
+
:param pulumi.Input[bool] enable_database_dbm_feature: (Updatable) A required field when set to `true` calls enable action and when set to `false` calls disable action.
|
26
|
+
|
27
|
+
|
28
|
+
** IMPORTANT **
|
29
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
30
|
+
:param pulumi.Input['DatabaseDbmFeaturesManagementFeatureDetailsArgs'] feature_details: The details required to enable the specified Database Management feature.
|
31
|
+
"""
|
32
|
+
pulumi.set(__self__, "database_id", database_id)
|
33
|
+
pulumi.set(__self__, "enable_database_dbm_feature", enable_database_dbm_feature)
|
34
|
+
if feature_details is not None:
|
35
|
+
pulumi.set(__self__, "feature_details", feature_details)
|
36
|
+
|
37
|
+
@property
|
38
|
+
@pulumi.getter(name="databaseId")
|
39
|
+
def database_id(self) -> pulumi.Input[str]:
|
40
|
+
"""
|
41
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Database.
|
42
|
+
"""
|
43
|
+
return pulumi.get(self, "database_id")
|
44
|
+
|
45
|
+
@database_id.setter
|
46
|
+
def database_id(self, value: pulumi.Input[str]):
|
47
|
+
pulumi.set(self, "database_id", value)
|
48
|
+
|
49
|
+
@property
|
50
|
+
@pulumi.getter(name="enableDatabaseDbmFeature")
|
51
|
+
def enable_database_dbm_feature(self) -> pulumi.Input[bool]:
|
52
|
+
"""
|
53
|
+
(Updatable) A required field when set to `true` calls enable action and when set to `false` calls disable action.
|
54
|
+
|
55
|
+
|
56
|
+
** IMPORTANT **
|
57
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
58
|
+
"""
|
59
|
+
return pulumi.get(self, "enable_database_dbm_feature")
|
60
|
+
|
61
|
+
@enable_database_dbm_feature.setter
|
62
|
+
def enable_database_dbm_feature(self, value: pulumi.Input[bool]):
|
63
|
+
pulumi.set(self, "enable_database_dbm_feature", value)
|
64
|
+
|
65
|
+
@property
|
66
|
+
@pulumi.getter(name="featureDetails")
|
67
|
+
def feature_details(self) -> Optional[pulumi.Input['DatabaseDbmFeaturesManagementFeatureDetailsArgs']]:
|
68
|
+
"""
|
69
|
+
The details required to enable the specified Database Management feature.
|
70
|
+
"""
|
71
|
+
return pulumi.get(self, "feature_details")
|
72
|
+
|
73
|
+
@feature_details.setter
|
74
|
+
def feature_details(self, value: Optional[pulumi.Input['DatabaseDbmFeaturesManagementFeatureDetailsArgs']]):
|
75
|
+
pulumi.set(self, "feature_details", value)
|
76
|
+
|
77
|
+
|
78
|
+
@pulumi.input_type
|
79
|
+
class _DatabaseDbmFeaturesManagementState:
|
80
|
+
def __init__(__self__, *,
|
81
|
+
database_id: Optional[pulumi.Input[str]] = None,
|
82
|
+
enable_database_dbm_feature: Optional[pulumi.Input[bool]] = None,
|
83
|
+
feature_details: Optional[pulumi.Input['DatabaseDbmFeaturesManagementFeatureDetailsArgs']] = None):
|
84
|
+
"""
|
85
|
+
Input properties used for looking up and filtering DatabaseDbmFeaturesManagement resources.
|
86
|
+
:param pulumi.Input[str] database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Database.
|
87
|
+
:param pulumi.Input[bool] enable_database_dbm_feature: (Updatable) A required field when set to `true` calls enable action and when set to `false` calls disable action.
|
88
|
+
|
89
|
+
|
90
|
+
** IMPORTANT **
|
91
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
92
|
+
:param pulumi.Input['DatabaseDbmFeaturesManagementFeatureDetailsArgs'] feature_details: The details required to enable the specified Database Management feature.
|
93
|
+
"""
|
94
|
+
if database_id is not None:
|
95
|
+
pulumi.set(__self__, "database_id", database_id)
|
96
|
+
if enable_database_dbm_feature is not None:
|
97
|
+
pulumi.set(__self__, "enable_database_dbm_feature", enable_database_dbm_feature)
|
98
|
+
if feature_details is not None:
|
99
|
+
pulumi.set(__self__, "feature_details", feature_details)
|
100
|
+
|
101
|
+
@property
|
102
|
+
@pulumi.getter(name="databaseId")
|
103
|
+
def database_id(self) -> Optional[pulumi.Input[str]]:
|
104
|
+
"""
|
105
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Database.
|
106
|
+
"""
|
107
|
+
return pulumi.get(self, "database_id")
|
108
|
+
|
109
|
+
@database_id.setter
|
110
|
+
def database_id(self, value: Optional[pulumi.Input[str]]):
|
111
|
+
pulumi.set(self, "database_id", value)
|
112
|
+
|
113
|
+
@property
|
114
|
+
@pulumi.getter(name="enableDatabaseDbmFeature")
|
115
|
+
def enable_database_dbm_feature(self) -> Optional[pulumi.Input[bool]]:
|
116
|
+
"""
|
117
|
+
(Updatable) A required field when set to `true` calls enable action and when set to `false` calls disable action.
|
118
|
+
|
119
|
+
|
120
|
+
** IMPORTANT **
|
121
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
122
|
+
"""
|
123
|
+
return pulumi.get(self, "enable_database_dbm_feature")
|
124
|
+
|
125
|
+
@enable_database_dbm_feature.setter
|
126
|
+
def enable_database_dbm_feature(self, value: Optional[pulumi.Input[bool]]):
|
127
|
+
pulumi.set(self, "enable_database_dbm_feature", value)
|
128
|
+
|
129
|
+
@property
|
130
|
+
@pulumi.getter(name="featureDetails")
|
131
|
+
def feature_details(self) -> Optional[pulumi.Input['DatabaseDbmFeaturesManagementFeatureDetailsArgs']]:
|
132
|
+
"""
|
133
|
+
The details required to enable the specified Database Management feature.
|
134
|
+
"""
|
135
|
+
return pulumi.get(self, "feature_details")
|
136
|
+
|
137
|
+
@feature_details.setter
|
138
|
+
def feature_details(self, value: Optional[pulumi.Input['DatabaseDbmFeaturesManagementFeatureDetailsArgs']]):
|
139
|
+
pulumi.set(self, "feature_details", value)
|
140
|
+
|
141
|
+
|
142
|
+
class DatabaseDbmFeaturesManagement(pulumi.CustomResource):
|
143
|
+
@overload
|
144
|
+
def __init__(__self__,
|
145
|
+
resource_name: str,
|
146
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
147
|
+
database_id: Optional[pulumi.Input[str]] = None,
|
148
|
+
enable_database_dbm_feature: Optional[pulumi.Input[bool]] = None,
|
149
|
+
feature_details: Optional[pulumi.Input[pulumi.InputType['DatabaseDbmFeaturesManagementFeatureDetailsArgs']]] = None,
|
150
|
+
__props__=None):
|
151
|
+
"""
|
152
|
+
This resource provides the Database Dbm Features Management resource in Oracle Cloud Infrastructure Database Management service.
|
153
|
+
|
154
|
+
Enables a Database Management feature for the specified cloud database.
|
155
|
+
|
156
|
+
:param str resource_name: The name of the resource.
|
157
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
158
|
+
:param pulumi.Input[str] database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Database.
|
159
|
+
:param pulumi.Input[bool] enable_database_dbm_feature: (Updatable) A required field when set to `true` calls enable action and when set to `false` calls disable action.
|
160
|
+
|
161
|
+
|
162
|
+
** IMPORTANT **
|
163
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
164
|
+
:param pulumi.Input[pulumi.InputType['DatabaseDbmFeaturesManagementFeatureDetailsArgs']] feature_details: The details required to enable the specified Database Management feature.
|
165
|
+
"""
|
166
|
+
...
|
167
|
+
@overload
|
168
|
+
def __init__(__self__,
|
169
|
+
resource_name: str,
|
170
|
+
args: DatabaseDbmFeaturesManagementArgs,
|
171
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
172
|
+
"""
|
173
|
+
This resource provides the Database Dbm Features Management resource in Oracle Cloud Infrastructure Database Management service.
|
174
|
+
|
175
|
+
Enables a Database Management feature for the specified cloud database.
|
176
|
+
|
177
|
+
:param str resource_name: The name of the resource.
|
178
|
+
:param DatabaseDbmFeaturesManagementArgs args: The arguments to use to populate this resource's properties.
|
179
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
180
|
+
"""
|
181
|
+
...
|
182
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
183
|
+
resource_args, opts = _utilities.get_resource_args_opts(DatabaseDbmFeaturesManagementArgs, pulumi.ResourceOptions, *args, **kwargs)
|
184
|
+
if resource_args is not None:
|
185
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
186
|
+
else:
|
187
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
188
|
+
|
189
|
+
def _internal_init(__self__,
|
190
|
+
resource_name: str,
|
191
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
192
|
+
database_id: Optional[pulumi.Input[str]] = None,
|
193
|
+
enable_database_dbm_feature: Optional[pulumi.Input[bool]] = None,
|
194
|
+
feature_details: Optional[pulumi.Input[pulumi.InputType['DatabaseDbmFeaturesManagementFeatureDetailsArgs']]] = None,
|
195
|
+
__props__=None):
|
196
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
197
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
198
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
199
|
+
if opts.id is None:
|
200
|
+
if __props__ is not None:
|
201
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
202
|
+
__props__ = DatabaseDbmFeaturesManagementArgs.__new__(DatabaseDbmFeaturesManagementArgs)
|
203
|
+
|
204
|
+
if database_id is None and not opts.urn:
|
205
|
+
raise TypeError("Missing required property 'database_id'")
|
206
|
+
__props__.__dict__["database_id"] = database_id
|
207
|
+
if enable_database_dbm_feature is None and not opts.urn:
|
208
|
+
raise TypeError("Missing required property 'enable_database_dbm_feature'")
|
209
|
+
__props__.__dict__["enable_database_dbm_feature"] = enable_database_dbm_feature
|
210
|
+
__props__.__dict__["feature_details"] = feature_details
|
211
|
+
super(DatabaseDbmFeaturesManagement, __self__).__init__(
|
212
|
+
'oci:DatabaseManagement/databaseDbmFeaturesManagement:DatabaseDbmFeaturesManagement',
|
213
|
+
resource_name,
|
214
|
+
__props__,
|
215
|
+
opts)
|
216
|
+
|
217
|
+
@staticmethod
|
218
|
+
def get(resource_name: str,
|
219
|
+
id: pulumi.Input[str],
|
220
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
221
|
+
database_id: Optional[pulumi.Input[str]] = None,
|
222
|
+
enable_database_dbm_feature: Optional[pulumi.Input[bool]] = None,
|
223
|
+
feature_details: Optional[pulumi.Input[pulumi.InputType['DatabaseDbmFeaturesManagementFeatureDetailsArgs']]] = None) -> 'DatabaseDbmFeaturesManagement':
|
224
|
+
"""
|
225
|
+
Get an existing DatabaseDbmFeaturesManagement resource's state with the given name, id, and optional extra
|
226
|
+
properties used to qualify the lookup.
|
227
|
+
|
228
|
+
:param str resource_name: The unique name of the resulting resource.
|
229
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
230
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
231
|
+
:param pulumi.Input[str] database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Database.
|
232
|
+
:param pulumi.Input[bool] enable_database_dbm_feature: (Updatable) A required field when set to `true` calls enable action and when set to `false` calls disable action.
|
233
|
+
|
234
|
+
|
235
|
+
** IMPORTANT **
|
236
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
237
|
+
:param pulumi.Input[pulumi.InputType['DatabaseDbmFeaturesManagementFeatureDetailsArgs']] feature_details: The details required to enable the specified Database Management feature.
|
238
|
+
"""
|
239
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
240
|
+
|
241
|
+
__props__ = _DatabaseDbmFeaturesManagementState.__new__(_DatabaseDbmFeaturesManagementState)
|
242
|
+
|
243
|
+
__props__.__dict__["database_id"] = database_id
|
244
|
+
__props__.__dict__["enable_database_dbm_feature"] = enable_database_dbm_feature
|
245
|
+
__props__.__dict__["feature_details"] = feature_details
|
246
|
+
return DatabaseDbmFeaturesManagement(resource_name, opts=opts, __props__=__props__)
|
247
|
+
|
248
|
+
@property
|
249
|
+
@pulumi.getter(name="databaseId")
|
250
|
+
def database_id(self) -> pulumi.Output[str]:
|
251
|
+
"""
|
252
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Database.
|
253
|
+
"""
|
254
|
+
return pulumi.get(self, "database_id")
|
255
|
+
|
256
|
+
@property
|
257
|
+
@pulumi.getter(name="enableDatabaseDbmFeature")
|
258
|
+
def enable_database_dbm_feature(self) -> pulumi.Output[bool]:
|
259
|
+
"""
|
260
|
+
(Updatable) A required field when set to `true` calls enable action and when set to `false` calls disable action.
|
261
|
+
|
262
|
+
|
263
|
+
** IMPORTANT **
|
264
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
265
|
+
"""
|
266
|
+
return pulumi.get(self, "enable_database_dbm_feature")
|
267
|
+
|
268
|
+
@property
|
269
|
+
@pulumi.getter(name="featureDetails")
|
270
|
+
def feature_details(self) -> pulumi.Output[Optional['outputs.DatabaseDbmFeaturesManagementFeatureDetails']]:
|
271
|
+
"""
|
272
|
+
The details required to enable the specified Database Management feature.
|
273
|
+
"""
|
274
|
+
return pulumi.get(self, "feature_details")
|
275
|
+
|
@@ -166,6 +166,7 @@ class _DbManagementPrivateEndpointState:
|
|
166
166
|
private_ip: Optional[pulumi.Input[str]] = None,
|
167
167
|
state: Optional[pulumi.Input[str]] = None,
|
168
168
|
subnet_id: Optional[pulumi.Input[str]] = None,
|
169
|
+
system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
169
170
|
time_created: Optional[pulumi.Input[str]] = None,
|
170
171
|
vcn_id: Optional[pulumi.Input[str]] = None):
|
171
172
|
"""
|
@@ -184,6 +185,7 @@ class _DbManagementPrivateEndpointState:
|
|
184
185
|
|
185
186
|
** IMPORTANT **
|
186
187
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
188
|
+
: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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
187
189
|
:param pulumi.Input[str] time_created: The date and time the Database Managament private endpoint was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
188
190
|
:param pulumi.Input[str] vcn_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VCN.
|
189
191
|
"""
|
@@ -207,6 +209,8 @@ class _DbManagementPrivateEndpointState:
|
|
207
209
|
pulumi.set(__self__, "state", state)
|
208
210
|
if subnet_id is not None:
|
209
211
|
pulumi.set(__self__, "subnet_id", subnet_id)
|
212
|
+
if system_tags is not None:
|
213
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
210
214
|
if time_created is not None:
|
211
215
|
pulumi.set(__self__, "time_created", time_created)
|
212
216
|
if vcn_id is not None:
|
@@ -336,6 +340,18 @@ class _DbManagementPrivateEndpointState:
|
|
336
340
|
def subnet_id(self, value: Optional[pulumi.Input[str]]):
|
337
341
|
pulumi.set(self, "subnet_id", value)
|
338
342
|
|
343
|
+
@property
|
344
|
+
@pulumi.getter(name="systemTags")
|
345
|
+
def system_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
|
346
|
+
"""
|
347
|
+
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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
348
|
+
"""
|
349
|
+
return pulumi.get(self, "system_tags")
|
350
|
+
|
351
|
+
@system_tags.setter
|
352
|
+
def system_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
|
353
|
+
pulumi.set(self, "system_tags", value)
|
354
|
+
|
339
355
|
@property
|
340
356
|
@pulumi.getter(name="timeCreated")
|
341
357
|
def time_created(self) -> Optional[pulumi.Input[str]]:
|
@@ -510,6 +526,7 @@ class DbManagementPrivateEndpoint(pulumi.CustomResource):
|
|
510
526
|
__props__.__dict__["subnet_id"] = subnet_id
|
511
527
|
__props__.__dict__["private_ip"] = None
|
512
528
|
__props__.__dict__["state"] = None
|
529
|
+
__props__.__dict__["system_tags"] = None
|
513
530
|
__props__.__dict__["time_created"] = None
|
514
531
|
__props__.__dict__["vcn_id"] = None
|
515
532
|
super(DbManagementPrivateEndpoint, __self__).__init__(
|
@@ -532,6 +549,7 @@ class DbManagementPrivateEndpoint(pulumi.CustomResource):
|
|
532
549
|
private_ip: Optional[pulumi.Input[str]] = None,
|
533
550
|
state: Optional[pulumi.Input[str]] = None,
|
534
551
|
subnet_id: Optional[pulumi.Input[str]] = None,
|
552
|
+
system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
535
553
|
time_created: Optional[pulumi.Input[str]] = None,
|
536
554
|
vcn_id: Optional[pulumi.Input[str]] = None) -> 'DbManagementPrivateEndpoint':
|
537
555
|
"""
|
@@ -555,6 +573,7 @@ class DbManagementPrivateEndpoint(pulumi.CustomResource):
|
|
555
573
|
|
556
574
|
** IMPORTANT **
|
557
575
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
576
|
+
: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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
558
577
|
:param pulumi.Input[str] time_created: The date and time the Database Managament private endpoint was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
559
578
|
:param pulumi.Input[str] vcn_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VCN.
|
560
579
|
"""
|
@@ -572,6 +591,7 @@ class DbManagementPrivateEndpoint(pulumi.CustomResource):
|
|
572
591
|
__props__.__dict__["private_ip"] = private_ip
|
573
592
|
__props__.__dict__["state"] = state
|
574
593
|
__props__.__dict__["subnet_id"] = subnet_id
|
594
|
+
__props__.__dict__["system_tags"] = system_tags
|
575
595
|
__props__.__dict__["time_created"] = time_created
|
576
596
|
__props__.__dict__["vcn_id"] = vcn_id
|
577
597
|
return DbManagementPrivateEndpoint(resource_name, opts=opts, __props__=__props__)
|
@@ -660,6 +680,14 @@ class DbManagementPrivateEndpoint(pulumi.CustomResource):
|
|
660
680
|
"""
|
661
681
|
return pulumi.get(self, "subnet_id")
|
662
682
|
|
683
|
+
@property
|
684
|
+
@pulumi.getter(name="systemTags")
|
685
|
+
def system_tags(self) -> pulumi.Output[Mapping[str, Any]]:
|
686
|
+
"""
|
687
|
+
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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
688
|
+
"""
|
689
|
+
return pulumi.get(self, "system_tags")
|
690
|
+
|
663
691
|
@property
|
664
692
|
@pulumi.getter(name="timeCreated")
|
665
693
|
def time_created(self) -> pulumi.Output[str]:
|
@@ -110,6 +110,7 @@ class _ExternalAsmState:
|
|
110
110
|
lifecycle_details: Optional[pulumi.Input[str]] = None,
|
111
111
|
serviced_databases: Optional[pulumi.Input[Sequence[pulumi.Input['ExternalAsmServicedDatabaseArgs']]]] = None,
|
112
112
|
state: Optional[pulumi.Input[str]] = None,
|
113
|
+
system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
113
114
|
time_created: Optional[pulumi.Input[str]] = None,
|
114
115
|
time_updated: Optional[pulumi.Input[str]] = None,
|
115
116
|
version: Optional[pulumi.Input[str]] = None):
|
@@ -134,6 +135,7 @@ class _ExternalAsmState:
|
|
134
135
|
:param pulumi.Input[str] lifecycle_details: Additional information about the current lifecycle state.
|
135
136
|
:param pulumi.Input[Sequence[pulumi.Input['ExternalAsmServicedDatabaseArgs']]] serviced_databases: The list of databases that are serviced by the ASM.
|
136
137
|
:param pulumi.Input[str] state: The current lifecycle state of the external ASM.
|
138
|
+
: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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
137
139
|
:param pulumi.Input[str] time_created: The date and time the external ASM was created.
|
138
140
|
:param pulumi.Input[str] time_updated: The date and time the external ASM was last updated.
|
139
141
|
:param pulumi.Input[str] version: The ASM version.
|
@@ -168,6 +170,8 @@ class _ExternalAsmState:
|
|
168
170
|
pulumi.set(__self__, "serviced_databases", serviced_databases)
|
169
171
|
if state is not None:
|
170
172
|
pulumi.set(__self__, "state", state)
|
173
|
+
if system_tags is not None:
|
174
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
171
175
|
if time_created is not None:
|
172
176
|
pulumi.set(__self__, "time_created", time_created)
|
173
177
|
if time_updated is not None:
|
@@ -359,6 +363,18 @@ class _ExternalAsmState:
|
|
359
363
|
def state(self, value: Optional[pulumi.Input[str]]):
|
360
364
|
pulumi.set(self, "state", value)
|
361
365
|
|
366
|
+
@property
|
367
|
+
@pulumi.getter(name="systemTags")
|
368
|
+
def system_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
|
369
|
+
"""
|
370
|
+
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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
371
|
+
"""
|
372
|
+
return pulumi.get(self, "system_tags")
|
373
|
+
|
374
|
+
@system_tags.setter
|
375
|
+
def system_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
|
376
|
+
pulumi.set(self, "system_tags", value)
|
377
|
+
|
362
378
|
@property
|
363
379
|
@pulumi.getter(name="timeCreated")
|
364
380
|
def time_created(self) -> Optional[pulumi.Input[str]]:
|
@@ -494,6 +510,7 @@ class ExternalAsm(pulumi.CustomResource):
|
|
494
510
|
__props__.__dict__["lifecycle_details"] = None
|
495
511
|
__props__.__dict__["serviced_databases"] = None
|
496
512
|
__props__.__dict__["state"] = None
|
513
|
+
__props__.__dict__["system_tags"] = None
|
497
514
|
__props__.__dict__["time_created"] = None
|
498
515
|
__props__.__dict__["time_updated"] = None
|
499
516
|
__props__.__dict__["version"] = None
|
@@ -522,6 +539,7 @@ class ExternalAsm(pulumi.CustomResource):
|
|
522
539
|
lifecycle_details: Optional[pulumi.Input[str]] = None,
|
523
540
|
serviced_databases: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ExternalAsmServicedDatabaseArgs']]]]] = None,
|
524
541
|
state: Optional[pulumi.Input[str]] = None,
|
542
|
+
system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
525
543
|
time_created: Optional[pulumi.Input[str]] = None,
|
526
544
|
time_updated: Optional[pulumi.Input[str]] = None,
|
527
545
|
version: Optional[pulumi.Input[str]] = None) -> 'ExternalAsm':
|
@@ -551,6 +569,7 @@ class ExternalAsm(pulumi.CustomResource):
|
|
551
569
|
:param pulumi.Input[str] lifecycle_details: Additional information about the current lifecycle state.
|
552
570
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ExternalAsmServicedDatabaseArgs']]]] serviced_databases: The list of databases that are serviced by the ASM.
|
553
571
|
:param pulumi.Input[str] state: The current lifecycle state of the external ASM.
|
572
|
+
: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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
554
573
|
:param pulumi.Input[str] time_created: The date and time the external ASM was created.
|
555
574
|
:param pulumi.Input[str] time_updated: The date and time the external ASM was last updated.
|
556
575
|
:param pulumi.Input[str] version: The ASM version.
|
@@ -574,6 +593,7 @@ class ExternalAsm(pulumi.CustomResource):
|
|
574
593
|
__props__.__dict__["lifecycle_details"] = lifecycle_details
|
575
594
|
__props__.__dict__["serviced_databases"] = serviced_databases
|
576
595
|
__props__.__dict__["state"] = state
|
596
|
+
__props__.__dict__["system_tags"] = system_tags
|
577
597
|
__props__.__dict__["time_created"] = time_created
|
578
598
|
__props__.__dict__["time_updated"] = time_updated
|
579
599
|
__props__.__dict__["version"] = version
|
@@ -703,6 +723,14 @@ class ExternalAsm(pulumi.CustomResource):
|
|
703
723
|
"""
|
704
724
|
return pulumi.get(self, "state")
|
705
725
|
|
726
|
+
@property
|
727
|
+
@pulumi.getter(name="systemTags")
|
728
|
+
def system_tags(self) -> pulumi.Output[Mapping[str, Any]]:
|
729
|
+
"""
|
730
|
+
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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
731
|
+
"""
|
732
|
+
return pulumi.get(self, "system_tags")
|
733
|
+
|
706
734
|
@property
|
707
735
|
@pulumi.getter(name="timeCreated")
|
708
736
|
def time_created(self) -> pulumi.Output[str]:
|
@@ -90,6 +90,7 @@ class _ExternalAsmInstanceState:
|
|
90
90
|
host_name: Optional[pulumi.Input[str]] = None,
|
91
91
|
lifecycle_details: Optional[pulumi.Input[str]] = None,
|
92
92
|
state: Optional[pulumi.Input[str]] = None,
|
93
|
+
system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
93
94
|
time_created: Optional[pulumi.Input[str]] = None,
|
94
95
|
time_updated: Optional[pulumi.Input[str]] = None):
|
95
96
|
"""
|
@@ -111,6 +112,7 @@ class _ExternalAsmInstanceState:
|
|
111
112
|
:param pulumi.Input[str] host_name: The name of the host on which the ASM instance is running.
|
112
113
|
:param pulumi.Input[str] lifecycle_details: Additional information about the current lifecycle state.
|
113
114
|
:param pulumi.Input[str] state: The current lifecycle state of the external ASM instance.
|
115
|
+
: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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
114
116
|
:param pulumi.Input[str] time_created: The date and time the external ASM instance was created.
|
115
117
|
:param pulumi.Input[str] time_updated: The date and time the external ASM instance was last updated.
|
116
118
|
"""
|
@@ -140,6 +142,8 @@ class _ExternalAsmInstanceState:
|
|
140
142
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
141
143
|
if state is not None:
|
142
144
|
pulumi.set(__self__, "state", state)
|
145
|
+
if system_tags is not None:
|
146
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
143
147
|
if time_created is not None:
|
144
148
|
pulumi.set(__self__, "time_created", time_created)
|
145
149
|
if time_updated is not None:
|
@@ -305,6 +309,18 @@ class _ExternalAsmInstanceState:
|
|
305
309
|
def state(self, value: Optional[pulumi.Input[str]]):
|
306
310
|
pulumi.set(self, "state", value)
|
307
311
|
|
312
|
+
@property
|
313
|
+
@pulumi.getter(name="systemTags")
|
314
|
+
def system_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
|
315
|
+
"""
|
316
|
+
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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
317
|
+
"""
|
318
|
+
return pulumi.get(self, "system_tags")
|
319
|
+
|
320
|
+
@system_tags.setter
|
321
|
+
def system_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
|
322
|
+
pulumi.set(self, "system_tags", value)
|
323
|
+
|
308
324
|
@property
|
309
325
|
@pulumi.getter(name="timeCreated")
|
310
326
|
def time_created(self) -> Optional[pulumi.Input[str]]:
|
@@ -423,6 +439,7 @@ class ExternalAsmInstance(pulumi.CustomResource):
|
|
423
439
|
__props__.__dict__["host_name"] = None
|
424
440
|
__props__.__dict__["lifecycle_details"] = None
|
425
441
|
__props__.__dict__["state"] = None
|
442
|
+
__props__.__dict__["system_tags"] = None
|
426
443
|
__props__.__dict__["time_created"] = None
|
427
444
|
__props__.__dict__["time_updated"] = None
|
428
445
|
super(ExternalAsmInstance, __self__).__init__(
|
@@ -448,6 +465,7 @@ class ExternalAsmInstance(pulumi.CustomResource):
|
|
448
465
|
host_name: Optional[pulumi.Input[str]] = None,
|
449
466
|
lifecycle_details: Optional[pulumi.Input[str]] = None,
|
450
467
|
state: Optional[pulumi.Input[str]] = None,
|
468
|
+
system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
451
469
|
time_created: Optional[pulumi.Input[str]] = None,
|
452
470
|
time_updated: Optional[pulumi.Input[str]] = None) -> 'ExternalAsmInstance':
|
453
471
|
"""
|
@@ -474,6 +492,7 @@ class ExternalAsmInstance(pulumi.CustomResource):
|
|
474
492
|
:param pulumi.Input[str] host_name: The name of the host on which the ASM instance is running.
|
475
493
|
:param pulumi.Input[str] lifecycle_details: Additional information about the current lifecycle state.
|
476
494
|
:param pulumi.Input[str] state: The current lifecycle state of the external ASM instance.
|
495
|
+
: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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
477
496
|
:param pulumi.Input[str] time_created: The date and time the external ASM instance was created.
|
478
497
|
:param pulumi.Input[str] time_updated: The date and time the external ASM instance was last updated.
|
479
498
|
"""
|
@@ -494,6 +513,7 @@ class ExternalAsmInstance(pulumi.CustomResource):
|
|
494
513
|
__props__.__dict__["host_name"] = host_name
|
495
514
|
__props__.__dict__["lifecycle_details"] = lifecycle_details
|
496
515
|
__props__.__dict__["state"] = state
|
516
|
+
__props__.__dict__["system_tags"] = system_tags
|
497
517
|
__props__.__dict__["time_created"] = time_created
|
498
518
|
__props__.__dict__["time_updated"] = time_updated
|
499
519
|
return ExternalAsmInstance(resource_name, opts=opts, __props__=__props__)
|
@@ -606,6 +626,14 @@ class ExternalAsmInstance(pulumi.CustomResource):
|
|
606
626
|
"""
|
607
627
|
return pulumi.get(self, "state")
|
608
628
|
|
629
|
+
@property
|
630
|
+
@pulumi.getter(name="systemTags")
|
631
|
+
def system_tags(self) -> pulumi.Output[Mapping[str, Any]]:
|
632
|
+
"""
|
633
|
+
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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
634
|
+
"""
|
635
|
+
return pulumi.get(self, "system_tags")
|
636
|
+
|
609
637
|
@property
|
610
638
|
@pulumi.getter(name="timeCreated")
|
611
639
|
def time_created(self) -> pulumi.Output[str]:
|
@@ -111,6 +111,7 @@ class _ExternalClusterState:
|
|
111
111
|
ocr_file_location: Optional[pulumi.Input[str]] = None,
|
112
112
|
scan_configurations: Optional[pulumi.Input[Sequence[pulumi.Input['ExternalClusterScanConfigurationArgs']]]] = None,
|
113
113
|
state: Optional[pulumi.Input[str]] = None,
|
114
|
+
system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
114
115
|
time_created: Optional[pulumi.Input[str]] = None,
|
115
116
|
time_updated: Optional[pulumi.Input[str]] = None,
|
116
117
|
version: Optional[pulumi.Input[str]] = None,
|
@@ -137,6 +138,7 @@ class _ExternalClusterState:
|
|
137
138
|
:param pulumi.Input[str] ocr_file_location: The location of the Oracle Cluster Registry (OCR).
|
138
139
|
:param pulumi.Input[Sequence[pulumi.Input['ExternalClusterScanConfigurationArgs']]] scan_configurations: The list of Single Client Access Name (SCAN) configurations of the external cluster.
|
139
140
|
:param pulumi.Input[str] state: The current lifecycle state of the external cluster.
|
141
|
+
: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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
140
142
|
:param pulumi.Input[str] time_created: The date and time the external cluster was created.
|
141
143
|
:param pulumi.Input[str] time_updated: The date and time the external cluster was last updated.
|
142
144
|
:param pulumi.Input[str] version: The cluster version.
|
@@ -174,6 +176,8 @@ class _ExternalClusterState:
|
|
174
176
|
pulumi.set(__self__, "scan_configurations", scan_configurations)
|
175
177
|
if state is not None:
|
176
178
|
pulumi.set(__self__, "state", state)
|
179
|
+
if system_tags is not None:
|
180
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
177
181
|
if time_created is not None:
|
178
182
|
pulumi.set(__self__, "time_created", time_created)
|
179
183
|
if time_updated is not None:
|
@@ -379,6 +383,18 @@ class _ExternalClusterState:
|
|
379
383
|
def state(self, value: Optional[pulumi.Input[str]]):
|
380
384
|
pulumi.set(self, "state", value)
|
381
385
|
|
386
|
+
@property
|
387
|
+
@pulumi.getter(name="systemTags")
|
388
|
+
def system_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
|
389
|
+
"""
|
390
|
+
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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
391
|
+
"""
|
392
|
+
return pulumi.get(self, "system_tags")
|
393
|
+
|
394
|
+
@system_tags.setter
|
395
|
+
def system_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
|
396
|
+
pulumi.set(self, "system_tags", value)
|
397
|
+
|
382
398
|
@property
|
383
399
|
@pulumi.getter(name="timeCreated")
|
384
400
|
def time_created(self) -> Optional[pulumi.Input[str]]:
|
@@ -527,6 +543,7 @@ class ExternalCluster(pulumi.CustomResource):
|
|
527
543
|
__props__.__dict__["ocr_file_location"] = None
|
528
544
|
__props__.__dict__["scan_configurations"] = None
|
529
545
|
__props__.__dict__["state"] = None
|
546
|
+
__props__.__dict__["system_tags"] = None
|
530
547
|
__props__.__dict__["time_created"] = None
|
531
548
|
__props__.__dict__["time_updated"] = None
|
532
549
|
__props__.__dict__["version"] = None
|
@@ -557,6 +574,7 @@ class ExternalCluster(pulumi.CustomResource):
|
|
557
574
|
ocr_file_location: Optional[pulumi.Input[str]] = None,
|
558
575
|
scan_configurations: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ExternalClusterScanConfigurationArgs']]]]] = None,
|
559
576
|
state: Optional[pulumi.Input[str]] = None,
|
577
|
+
system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
560
578
|
time_created: Optional[pulumi.Input[str]] = None,
|
561
579
|
time_updated: Optional[pulumi.Input[str]] = None,
|
562
580
|
version: Optional[pulumi.Input[str]] = None,
|
@@ -588,6 +606,7 @@ class ExternalCluster(pulumi.CustomResource):
|
|
588
606
|
:param pulumi.Input[str] ocr_file_location: The location of the Oracle Cluster Registry (OCR).
|
589
607
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ExternalClusterScanConfigurationArgs']]]] scan_configurations: The list of Single Client Access Name (SCAN) configurations of the external cluster.
|
590
608
|
:param pulumi.Input[str] state: The current lifecycle state of the external cluster.
|
609
|
+
: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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
591
610
|
:param pulumi.Input[str] time_created: The date and time the external cluster was created.
|
592
611
|
:param pulumi.Input[str] time_updated: The date and time the external cluster was last updated.
|
593
612
|
:param pulumi.Input[str] version: The cluster version.
|
@@ -613,6 +632,7 @@ class ExternalCluster(pulumi.CustomResource):
|
|
613
632
|
__props__.__dict__["ocr_file_location"] = ocr_file_location
|
614
633
|
__props__.__dict__["scan_configurations"] = scan_configurations
|
615
634
|
__props__.__dict__["state"] = state
|
635
|
+
__props__.__dict__["system_tags"] = system_tags
|
616
636
|
__props__.__dict__["time_created"] = time_created
|
617
637
|
__props__.__dict__["time_updated"] = time_updated
|
618
638
|
__props__.__dict__["version"] = version
|
@@ -751,6 +771,14 @@ class ExternalCluster(pulumi.CustomResource):
|
|
751
771
|
"""
|
752
772
|
return pulumi.get(self, "state")
|
753
773
|
|
774
|
+
@property
|
775
|
+
@pulumi.getter(name="systemTags")
|
776
|
+
def system_tags(self) -> pulumi.Output[Mapping[str, Any]]:
|
777
|
+
"""
|
778
|
+
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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
779
|
+
"""
|
780
|
+
return pulumi.get(self, "system_tags")
|
781
|
+
|
754
782
|
@property
|
755
783
|
@pulumi.getter(name="timeCreated")
|
756
784
|
def time_created(self) -> pulumi.Output[str]:
|