pulumi-oci 2.8.0__py3-none-any.whl → 2.8.0a1724220787__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/analytics/_inputs.py +4 -4
- pulumi_oci/analytics/analytics_instance.py +25 -199
- pulumi_oci/analytics/get_analytics_instance.py +2 -51
- pulumi_oci/analytics/get_analytics_instances.py +1 -1
- pulumi_oci/analytics/outputs.py +12 -52
- pulumi_oci/database/get_maintenance_run.py +1 -14
- pulumi_oci/database/maintenance_run.py +7 -56
- pulumi_oci/database/outputs.py +0 -33
- pulumi_oci/disasterrecovery/_inputs.py +2 -66
- pulumi_oci/disasterrecovery/dr_protection_group.py +0 -8
- pulumi_oci/disasterrecovery/get_dr_plan_executions.py +0 -24
- pulumi_oci/disasterrecovery/outputs.py +10 -150
- pulumi_oci/integration/get_integration_instance.py +2 -25
- pulumi_oci/integration/integration_instance.py +0 -88
- pulumi_oci/integration/outputs.py +6 -24
- pulumi_oci/mysql/_inputs.py +2 -202
- pulumi_oci/mysql/get_mysql_backup.py +1 -1
- pulumi_oci/mysql/get_mysql_db_system.py +2 -15
- pulumi_oci/mysql/mysql_backup.py +4 -4
- pulumi_oci/mysql/mysql_db_system.py +0 -55
- pulumi_oci/mysql/outputs.py +10 -503
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/redis/__init__.py +0 -1
- pulumi_oci/redis/_inputs.py +0 -40
- pulumi_oci/redis/get_redis_cluster.py +21 -47
- pulumi_oci/redis/get_redis_clusters.py +8 -8
- pulumi_oci/redis/outputs.py +28 -160
- pulumi_oci/redis/redis_cluster.py +79 -177
- {pulumi_oci-2.8.0.dist-info → pulumi_oci-2.8.0a1724220787.dist-info}/METADATA +1 -1
- {pulumi_oci-2.8.0.dist-info → pulumi_oci-2.8.0a1724220787.dist-info}/RECORD +32 -33
- pulumi_oci/redis/get_redis_cluster_nodes.py +0 -156
- {pulumi_oci-2.8.0.dist-info → pulumi_oci-2.8.0a1724220787.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.8.0.dist-info → pulumi_oci-2.8.0a1724220787.dist-info}/top_level.txt +0 -0
pulumi_oci/analytics/_inputs.py
CHANGED
@@ -24,8 +24,8 @@ class AnalyticsInstanceCapacityArgs:
|
|
24
24
|
capacity_type: pulumi.Input[str],
|
25
25
|
capacity_value: pulumi.Input[int]):
|
26
26
|
"""
|
27
|
-
:param pulumi.Input[str] capacity_type: The capacity model to use.
|
28
|
-
:param pulumi.Input[int] capacity_value: (Updatable) The capacity value selected
|
27
|
+
:param pulumi.Input[str] capacity_type: The capacity model to use.
|
28
|
+
:param pulumi.Input[int] capacity_value: (Updatable) The capacity value selected (OLPU count, number of users, ...etc...). This parameter affects the number of CPUs, amount of memory or other resources allocated to the instance.
|
29
29
|
"""
|
30
30
|
pulumi.set(__self__, "capacity_type", capacity_type)
|
31
31
|
pulumi.set(__self__, "capacity_value", capacity_value)
|
@@ -34,7 +34,7 @@ class AnalyticsInstanceCapacityArgs:
|
|
34
34
|
@pulumi.getter(name="capacityType")
|
35
35
|
def capacity_type(self) -> pulumi.Input[str]:
|
36
36
|
"""
|
37
|
-
The capacity model to use.
|
37
|
+
The capacity model to use.
|
38
38
|
"""
|
39
39
|
return pulumi.get(self, "capacity_type")
|
40
40
|
|
@@ -46,7 +46,7 @@ class AnalyticsInstanceCapacityArgs:
|
|
46
46
|
@pulumi.getter(name="capacityValue")
|
47
47
|
def capacity_value(self) -> pulumi.Input[int]:
|
48
48
|
"""
|
49
|
-
(Updatable) The capacity value selected
|
49
|
+
(Updatable) The capacity value selected (OLPU count, number of users, ...etc...). This parameter affects the number of CPUs, amount of memory or other resources allocated to the instance.
|
50
50
|
"""
|
51
51
|
return pulumi.get(self, "capacity_value")
|
52
52
|
|
@@ -19,15 +19,12 @@ class AnalyticsInstanceArgs:
|
|
19
19
|
capacity: pulumi.Input['AnalyticsInstanceCapacityArgs'],
|
20
20
|
compartment_id: pulumi.Input[str],
|
21
21
|
feature_set: pulumi.Input[str],
|
22
|
+
idcs_access_token: pulumi.Input[str],
|
22
23
|
license_type: pulumi.Input[str],
|
23
|
-
admin_user: Optional[pulumi.Input[str]] = None,
|
24
24
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
25
25
|
description: Optional[pulumi.Input[str]] = None,
|
26
|
-
domain_id: Optional[pulumi.Input[str]] = None,
|
27
26
|
email_notification: Optional[pulumi.Input[str]] = None,
|
28
|
-
feature_bundle: Optional[pulumi.Input[str]] = None,
|
29
27
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
30
|
-
idcs_access_token: Optional[pulumi.Input[str]] = None,
|
31
28
|
kms_key_id: Optional[pulumi.Input[str]] = None,
|
32
29
|
name: Optional[pulumi.Input[str]] = None,
|
33
30
|
network_endpoint_details: Optional[pulumi.Input['AnalyticsInstanceNetworkEndpointDetailsArgs']] = None,
|
@@ -37,16 +34,13 @@ class AnalyticsInstanceArgs:
|
|
37
34
|
:param pulumi.Input['AnalyticsInstanceCapacityArgs'] capacity: Service instance capacity metadata (e.g.: OLPU count, number of users, ...etc...).
|
38
35
|
:param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment.
|
39
36
|
:param pulumi.Input[str] feature_set: Analytics feature set.
|
37
|
+
:param pulumi.Input[str] idcs_access_token: IDCS access token identifying a stripe and service administrator user.
|
40
38
|
:param pulumi.Input[str] license_type: (Updatable) The license used for the service.
|
41
|
-
:param pulumi.Input[str] admin_user: user name of the authorized user.
|
42
39
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
43
40
|
:param pulumi.Input[str] description: (Updatable) Optional description.
|
44
|
-
:param pulumi.Input[str] domain_id: domain id for which the user is authorized.
|
45
41
|
:param pulumi.Input[str] email_notification: (Updatable) Email address receiving notifications.
|
46
|
-
:param pulumi.Input[str] feature_bundle: The feature set of an Analytics instance.
|
47
42
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
48
|
-
:param pulumi.Input[str]
|
49
|
-
:param pulumi.Input[str] kms_key_id: OCID of the Oracle Cloud Infrastructure Vault Key encrypting the customer data stored in this Analytics instance. A null value indicates Oracle managed default encryption.
|
43
|
+
:param pulumi.Input[str] kms_key_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure Vault Key encrypting the customer data stored in this Analytics instance. Omitting this value or specifying an empty string (i.e. "") indicates to use Oracle managed default encryption.
|
50
44
|
:param pulumi.Input[str] name: The name of the Analytics instance. This name must be unique in the tenancy and cannot be changed.
|
51
45
|
:param pulumi.Input['AnalyticsInstanceNetworkEndpointDetailsArgs'] network_endpoint_details: Base representation of a network endpoint.
|
52
46
|
:param pulumi.Input[str] state: (Updatable) The target state for the Analytics Instance. Could be set to `ACTIVE` or `INACTIVE`.
|
@@ -58,23 +52,16 @@ class AnalyticsInstanceArgs:
|
|
58
52
|
pulumi.set(__self__, "capacity", capacity)
|
59
53
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
60
54
|
pulumi.set(__self__, "feature_set", feature_set)
|
55
|
+
pulumi.set(__self__, "idcs_access_token", idcs_access_token)
|
61
56
|
pulumi.set(__self__, "license_type", license_type)
|
62
|
-
if admin_user is not None:
|
63
|
-
pulumi.set(__self__, "admin_user", admin_user)
|
64
57
|
if defined_tags is not None:
|
65
58
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
66
59
|
if description is not None:
|
67
60
|
pulumi.set(__self__, "description", description)
|
68
|
-
if domain_id is not None:
|
69
|
-
pulumi.set(__self__, "domain_id", domain_id)
|
70
61
|
if email_notification is not None:
|
71
62
|
pulumi.set(__self__, "email_notification", email_notification)
|
72
|
-
if feature_bundle is not None:
|
73
|
-
pulumi.set(__self__, "feature_bundle", feature_bundle)
|
74
63
|
if freeform_tags is not None:
|
75
64
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
76
|
-
if idcs_access_token is not None:
|
77
|
-
pulumi.set(__self__, "idcs_access_token", idcs_access_token)
|
78
65
|
if kms_key_id is not None:
|
79
66
|
pulumi.set(__self__, "kms_key_id", kms_key_id)
|
80
67
|
if name is not None:
|
@@ -120,6 +107,18 @@ class AnalyticsInstanceArgs:
|
|
120
107
|
def feature_set(self, value: pulumi.Input[str]):
|
121
108
|
pulumi.set(self, "feature_set", value)
|
122
109
|
|
110
|
+
@property
|
111
|
+
@pulumi.getter(name="idcsAccessToken")
|
112
|
+
def idcs_access_token(self) -> pulumi.Input[str]:
|
113
|
+
"""
|
114
|
+
IDCS access token identifying a stripe and service administrator user.
|
115
|
+
"""
|
116
|
+
return pulumi.get(self, "idcs_access_token")
|
117
|
+
|
118
|
+
@idcs_access_token.setter
|
119
|
+
def idcs_access_token(self, value: pulumi.Input[str]):
|
120
|
+
pulumi.set(self, "idcs_access_token", value)
|
121
|
+
|
123
122
|
@property
|
124
123
|
@pulumi.getter(name="licenseType")
|
125
124
|
def license_type(self) -> pulumi.Input[str]:
|
@@ -132,18 +131,6 @@ class AnalyticsInstanceArgs:
|
|
132
131
|
def license_type(self, value: pulumi.Input[str]):
|
133
132
|
pulumi.set(self, "license_type", value)
|
134
133
|
|
135
|
-
@property
|
136
|
-
@pulumi.getter(name="adminUser")
|
137
|
-
def admin_user(self) -> Optional[pulumi.Input[str]]:
|
138
|
-
"""
|
139
|
-
user name of the authorized user.
|
140
|
-
"""
|
141
|
-
return pulumi.get(self, "admin_user")
|
142
|
-
|
143
|
-
@admin_user.setter
|
144
|
-
def admin_user(self, value: Optional[pulumi.Input[str]]):
|
145
|
-
pulumi.set(self, "admin_user", value)
|
146
|
-
|
147
134
|
@property
|
148
135
|
@pulumi.getter(name="definedTags")
|
149
136
|
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
@@ -168,18 +155,6 @@ class AnalyticsInstanceArgs:
|
|
168
155
|
def description(self, value: Optional[pulumi.Input[str]]):
|
169
156
|
pulumi.set(self, "description", value)
|
170
157
|
|
171
|
-
@property
|
172
|
-
@pulumi.getter(name="domainId")
|
173
|
-
def domain_id(self) -> Optional[pulumi.Input[str]]:
|
174
|
-
"""
|
175
|
-
domain id for which the user is authorized.
|
176
|
-
"""
|
177
|
-
return pulumi.get(self, "domain_id")
|
178
|
-
|
179
|
-
@domain_id.setter
|
180
|
-
def domain_id(self, value: Optional[pulumi.Input[str]]):
|
181
|
-
pulumi.set(self, "domain_id", value)
|
182
|
-
|
183
158
|
@property
|
184
159
|
@pulumi.getter(name="emailNotification")
|
185
160
|
def email_notification(self) -> Optional[pulumi.Input[str]]:
|
@@ -192,18 +167,6 @@ class AnalyticsInstanceArgs:
|
|
192
167
|
def email_notification(self, value: Optional[pulumi.Input[str]]):
|
193
168
|
pulumi.set(self, "email_notification", value)
|
194
169
|
|
195
|
-
@property
|
196
|
-
@pulumi.getter(name="featureBundle")
|
197
|
-
def feature_bundle(self) -> Optional[pulumi.Input[str]]:
|
198
|
-
"""
|
199
|
-
The feature set of an Analytics instance.
|
200
|
-
"""
|
201
|
-
return pulumi.get(self, "feature_bundle")
|
202
|
-
|
203
|
-
@feature_bundle.setter
|
204
|
-
def feature_bundle(self, value: Optional[pulumi.Input[str]]):
|
205
|
-
pulumi.set(self, "feature_bundle", value)
|
206
|
-
|
207
170
|
@property
|
208
171
|
@pulumi.getter(name="freeformTags")
|
209
172
|
def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
@@ -216,23 +179,11 @@ class AnalyticsInstanceArgs:
|
|
216
179
|
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
217
180
|
pulumi.set(self, "freeform_tags", value)
|
218
181
|
|
219
|
-
@property
|
220
|
-
@pulumi.getter(name="idcsAccessToken")
|
221
|
-
def idcs_access_token(self) -> Optional[pulumi.Input[str]]:
|
222
|
-
"""
|
223
|
-
IDCS access token identifying a stripe and service administrator user.
|
224
|
-
"""
|
225
|
-
return pulumi.get(self, "idcs_access_token")
|
226
|
-
|
227
|
-
@idcs_access_token.setter
|
228
|
-
def idcs_access_token(self, value: Optional[pulumi.Input[str]]):
|
229
|
-
pulumi.set(self, "idcs_access_token", value)
|
230
|
-
|
231
182
|
@property
|
232
183
|
@pulumi.getter(name="kmsKeyId")
|
233
184
|
def kms_key_id(self) -> Optional[pulumi.Input[str]]:
|
234
185
|
"""
|
235
|
-
OCID of the Oracle Cloud Infrastructure Vault Key encrypting the customer data stored in this Analytics instance.
|
186
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure Vault Key encrypting the customer data stored in this Analytics instance. Omitting this value or specifying an empty string (i.e. "") indicates to use Oracle managed default encryption.
|
236
187
|
"""
|
237
188
|
return pulumi.get(self, "kms_key_id")
|
238
189
|
|
@@ -284,14 +235,11 @@ class AnalyticsInstanceArgs:
|
|
284
235
|
@pulumi.input_type
|
285
236
|
class _AnalyticsInstanceState:
|
286
237
|
def __init__(__self__, *,
|
287
|
-
admin_user: Optional[pulumi.Input[str]] = None,
|
288
238
|
capacity: Optional[pulumi.Input['AnalyticsInstanceCapacityArgs']] = None,
|
289
239
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
290
240
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
291
241
|
description: Optional[pulumi.Input[str]] = None,
|
292
|
-
domain_id: Optional[pulumi.Input[str]] = None,
|
293
242
|
email_notification: Optional[pulumi.Input[str]] = None,
|
294
|
-
feature_bundle: Optional[pulumi.Input[str]] = None,
|
295
243
|
feature_set: Optional[pulumi.Input[str]] = None,
|
296
244
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
297
245
|
idcs_access_token: Optional[pulumi.Input[str]] = None,
|
@@ -301,23 +249,19 @@ class _AnalyticsInstanceState:
|
|
301
249
|
network_endpoint_details: Optional[pulumi.Input['AnalyticsInstanceNetworkEndpointDetailsArgs']] = None,
|
302
250
|
service_url: Optional[pulumi.Input[str]] = None,
|
303
251
|
state: Optional[pulumi.Input[str]] = None,
|
304
|
-
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
305
252
|
time_created: Optional[pulumi.Input[str]] = None,
|
306
253
|
time_updated: Optional[pulumi.Input[str]] = None):
|
307
254
|
"""
|
308
255
|
Input properties used for looking up and filtering AnalyticsInstance resources.
|
309
|
-
:param pulumi.Input[str] admin_user: user name of the authorized user.
|
310
256
|
:param pulumi.Input['AnalyticsInstanceCapacityArgs'] capacity: Service instance capacity metadata (e.g.: OLPU count, number of users, ...etc...).
|
311
257
|
:param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment.
|
312
258
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
313
259
|
:param pulumi.Input[str] description: (Updatable) Optional description.
|
314
|
-
:param pulumi.Input[str] domain_id: domain id for which the user is authorized.
|
315
260
|
:param pulumi.Input[str] email_notification: (Updatable) Email address receiving notifications.
|
316
|
-
:param pulumi.Input[str] feature_bundle: The feature set of an Analytics instance.
|
317
261
|
:param pulumi.Input[str] feature_set: Analytics feature set.
|
318
262
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
319
263
|
:param pulumi.Input[str] idcs_access_token: IDCS access token identifying a stripe and service administrator user.
|
320
|
-
:param pulumi.Input[str] kms_key_id: OCID of the Oracle Cloud Infrastructure Vault Key encrypting the customer data stored in this Analytics instance.
|
264
|
+
:param pulumi.Input[str] kms_key_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure Vault Key encrypting the customer data stored in this Analytics instance. Omitting this value or specifying an empty string (i.e. "") indicates to use Oracle managed default encryption.
|
321
265
|
:param pulumi.Input[str] license_type: (Updatable) The license used for the service.
|
322
266
|
:param pulumi.Input[str] name: The name of the Analytics instance. This name must be unique in the tenancy and cannot be changed.
|
323
267
|
:param pulumi.Input['AnalyticsInstanceNetworkEndpointDetailsArgs'] network_endpoint_details: Base representation of a network endpoint.
|
@@ -327,12 +271,9 @@ class _AnalyticsInstanceState:
|
|
327
271
|
|
328
272
|
** IMPORTANT **
|
329
273
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
330
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: System tags for this resource. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.key": "value"}`
|
331
274
|
:param pulumi.Input[str] time_created: The date and time the instance was created, in the format defined by RFC3339. Example: `2016-08-25T21:10:29.600Z`
|
332
275
|
:param pulumi.Input[str] time_updated: The date and time the instance was last updated (in the format defined by RFC3339). This timestamp represents updates made through this API. External events do not influence it.
|
333
276
|
"""
|
334
|
-
if admin_user is not None:
|
335
|
-
pulumi.set(__self__, "admin_user", admin_user)
|
336
277
|
if capacity is not None:
|
337
278
|
pulumi.set(__self__, "capacity", capacity)
|
338
279
|
if compartment_id is not None:
|
@@ -341,12 +282,8 @@ class _AnalyticsInstanceState:
|
|
341
282
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
342
283
|
if description is not None:
|
343
284
|
pulumi.set(__self__, "description", description)
|
344
|
-
if domain_id is not None:
|
345
|
-
pulumi.set(__self__, "domain_id", domain_id)
|
346
285
|
if email_notification is not None:
|
347
286
|
pulumi.set(__self__, "email_notification", email_notification)
|
348
|
-
if feature_bundle is not None:
|
349
|
-
pulumi.set(__self__, "feature_bundle", feature_bundle)
|
350
287
|
if feature_set is not None:
|
351
288
|
pulumi.set(__self__, "feature_set", feature_set)
|
352
289
|
if freeform_tags is not None:
|
@@ -365,25 +302,11 @@ class _AnalyticsInstanceState:
|
|
365
302
|
pulumi.set(__self__, "service_url", service_url)
|
366
303
|
if state is not None:
|
367
304
|
pulumi.set(__self__, "state", state)
|
368
|
-
if system_tags is not None:
|
369
|
-
pulumi.set(__self__, "system_tags", system_tags)
|
370
305
|
if time_created is not None:
|
371
306
|
pulumi.set(__self__, "time_created", time_created)
|
372
307
|
if time_updated is not None:
|
373
308
|
pulumi.set(__self__, "time_updated", time_updated)
|
374
309
|
|
375
|
-
@property
|
376
|
-
@pulumi.getter(name="adminUser")
|
377
|
-
def admin_user(self) -> Optional[pulumi.Input[str]]:
|
378
|
-
"""
|
379
|
-
user name of the authorized user.
|
380
|
-
"""
|
381
|
-
return pulumi.get(self, "admin_user")
|
382
|
-
|
383
|
-
@admin_user.setter
|
384
|
-
def admin_user(self, value: Optional[pulumi.Input[str]]):
|
385
|
-
pulumi.set(self, "admin_user", value)
|
386
|
-
|
387
310
|
@property
|
388
311
|
@pulumi.getter
|
389
312
|
def capacity(self) -> Optional[pulumi.Input['AnalyticsInstanceCapacityArgs']]:
|
@@ -432,18 +355,6 @@ class _AnalyticsInstanceState:
|
|
432
355
|
def description(self, value: Optional[pulumi.Input[str]]):
|
433
356
|
pulumi.set(self, "description", value)
|
434
357
|
|
435
|
-
@property
|
436
|
-
@pulumi.getter(name="domainId")
|
437
|
-
def domain_id(self) -> Optional[pulumi.Input[str]]:
|
438
|
-
"""
|
439
|
-
domain id for which the user is authorized.
|
440
|
-
"""
|
441
|
-
return pulumi.get(self, "domain_id")
|
442
|
-
|
443
|
-
@domain_id.setter
|
444
|
-
def domain_id(self, value: Optional[pulumi.Input[str]]):
|
445
|
-
pulumi.set(self, "domain_id", value)
|
446
|
-
|
447
358
|
@property
|
448
359
|
@pulumi.getter(name="emailNotification")
|
449
360
|
def email_notification(self) -> Optional[pulumi.Input[str]]:
|
@@ -456,18 +367,6 @@ class _AnalyticsInstanceState:
|
|
456
367
|
def email_notification(self, value: Optional[pulumi.Input[str]]):
|
457
368
|
pulumi.set(self, "email_notification", value)
|
458
369
|
|
459
|
-
@property
|
460
|
-
@pulumi.getter(name="featureBundle")
|
461
|
-
def feature_bundle(self) -> Optional[pulumi.Input[str]]:
|
462
|
-
"""
|
463
|
-
The feature set of an Analytics instance.
|
464
|
-
"""
|
465
|
-
return pulumi.get(self, "feature_bundle")
|
466
|
-
|
467
|
-
@feature_bundle.setter
|
468
|
-
def feature_bundle(self, value: Optional[pulumi.Input[str]]):
|
469
|
-
pulumi.set(self, "feature_bundle", value)
|
470
|
-
|
471
370
|
@property
|
472
371
|
@pulumi.getter(name="featureSet")
|
473
372
|
def feature_set(self) -> Optional[pulumi.Input[str]]:
|
@@ -508,7 +407,7 @@ class _AnalyticsInstanceState:
|
|
508
407
|
@pulumi.getter(name="kmsKeyId")
|
509
408
|
def kms_key_id(self) -> Optional[pulumi.Input[str]]:
|
510
409
|
"""
|
511
|
-
OCID of the Oracle Cloud Infrastructure Vault Key encrypting the customer data stored in this Analytics instance.
|
410
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure Vault Key encrypting the customer data stored in this Analytics instance. Omitting this value or specifying an empty string (i.e. "") indicates to use Oracle managed default encryption.
|
512
411
|
"""
|
513
412
|
return pulumi.get(self, "kms_key_id")
|
514
413
|
|
@@ -580,18 +479,6 @@ class _AnalyticsInstanceState:
|
|
580
479
|
def state(self, value: Optional[pulumi.Input[str]]):
|
581
480
|
pulumi.set(self, "state", value)
|
582
481
|
|
583
|
-
@property
|
584
|
-
@pulumi.getter(name="systemTags")
|
585
|
-
def system_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
586
|
-
"""
|
587
|
-
System tags for this resource. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.key": "value"}`
|
588
|
-
"""
|
589
|
-
return pulumi.get(self, "system_tags")
|
590
|
-
|
591
|
-
@system_tags.setter
|
592
|
-
def system_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
593
|
-
pulumi.set(self, "system_tags", value)
|
594
|
-
|
595
482
|
@property
|
596
483
|
@pulumi.getter(name="timeCreated")
|
597
484
|
def time_created(self) -> Optional[pulumi.Input[str]]:
|
@@ -622,14 +509,11 @@ class AnalyticsInstance(pulumi.CustomResource):
|
|
622
509
|
def __init__(__self__,
|
623
510
|
resource_name: str,
|
624
511
|
opts: Optional[pulumi.ResourceOptions] = None,
|
625
|
-
admin_user: Optional[pulumi.Input[str]] = None,
|
626
512
|
capacity: Optional[pulumi.Input[Union['AnalyticsInstanceCapacityArgs', 'AnalyticsInstanceCapacityArgsDict']]] = None,
|
627
513
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
628
514
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
629
515
|
description: Optional[pulumi.Input[str]] = None,
|
630
|
-
domain_id: Optional[pulumi.Input[str]] = None,
|
631
516
|
email_notification: Optional[pulumi.Input[str]] = None,
|
632
|
-
feature_bundle: Optional[pulumi.Input[str]] = None,
|
633
517
|
feature_set: Optional[pulumi.Input[str]] = None,
|
634
518
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
635
519
|
idcs_access_token: Optional[pulumi.Input[str]] = None,
|
@@ -661,14 +545,11 @@ class AnalyticsInstance(pulumi.CustomResource):
|
|
661
545
|
idcs_access_token=analytics_instance_idcs_access_token,
|
662
546
|
license_type=analytics_instance_license_type,
|
663
547
|
name=analytics_instance_name,
|
664
|
-
admin_user=analytics_instance_admin_user,
|
665
548
|
defined_tags={
|
666
549
|
"Operations.CostCenter": "42",
|
667
550
|
},
|
668
551
|
description=analytics_instance_description,
|
669
|
-
domain_id=test_domain["id"],
|
670
552
|
email_notification=analytics_instance_email_notification,
|
671
|
-
feature_bundle=analytics_instance_feature_bundle,
|
672
553
|
freeform_tags={
|
673
554
|
"Department": "Finance",
|
674
555
|
},
|
@@ -697,18 +578,15 @@ class AnalyticsInstance(pulumi.CustomResource):
|
|
697
578
|
|
698
579
|
:param str resource_name: The name of the resource.
|
699
580
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
700
|
-
:param pulumi.Input[str] admin_user: user name of the authorized user.
|
701
581
|
:param pulumi.Input[Union['AnalyticsInstanceCapacityArgs', 'AnalyticsInstanceCapacityArgsDict']] capacity: Service instance capacity metadata (e.g.: OLPU count, number of users, ...etc...).
|
702
582
|
:param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment.
|
703
583
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
704
584
|
:param pulumi.Input[str] description: (Updatable) Optional description.
|
705
|
-
:param pulumi.Input[str] domain_id: domain id for which the user is authorized.
|
706
585
|
:param pulumi.Input[str] email_notification: (Updatable) Email address receiving notifications.
|
707
|
-
:param pulumi.Input[str] feature_bundle: The feature set of an Analytics instance.
|
708
586
|
:param pulumi.Input[str] feature_set: Analytics feature set.
|
709
587
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
710
588
|
:param pulumi.Input[str] idcs_access_token: IDCS access token identifying a stripe and service administrator user.
|
711
|
-
:param pulumi.Input[str] kms_key_id: OCID of the Oracle Cloud Infrastructure Vault Key encrypting the customer data stored in this Analytics instance.
|
589
|
+
:param pulumi.Input[str] kms_key_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure Vault Key encrypting the customer data stored in this Analytics instance. Omitting this value or specifying an empty string (i.e. "") indicates to use Oracle managed default encryption.
|
712
590
|
:param pulumi.Input[str] license_type: (Updatable) The license used for the service.
|
713
591
|
:param pulumi.Input[str] name: The name of the Analytics instance. This name must be unique in the tenancy and cannot be changed.
|
714
592
|
:param pulumi.Input[Union['AnalyticsInstanceNetworkEndpointDetailsArgs', 'AnalyticsInstanceNetworkEndpointDetailsArgsDict']] network_endpoint_details: Base representation of a network endpoint.
|
@@ -746,14 +624,11 @@ class AnalyticsInstance(pulumi.CustomResource):
|
|
746
624
|
idcs_access_token=analytics_instance_idcs_access_token,
|
747
625
|
license_type=analytics_instance_license_type,
|
748
626
|
name=analytics_instance_name,
|
749
|
-
admin_user=analytics_instance_admin_user,
|
750
627
|
defined_tags={
|
751
628
|
"Operations.CostCenter": "42",
|
752
629
|
},
|
753
630
|
description=analytics_instance_description,
|
754
|
-
domain_id=test_domain["id"],
|
755
631
|
email_notification=analytics_instance_email_notification,
|
756
|
-
feature_bundle=analytics_instance_feature_bundle,
|
757
632
|
freeform_tags={
|
758
633
|
"Department": "Finance",
|
759
634
|
},
|
@@ -795,14 +670,11 @@ class AnalyticsInstance(pulumi.CustomResource):
|
|
795
670
|
def _internal_init(__self__,
|
796
671
|
resource_name: str,
|
797
672
|
opts: Optional[pulumi.ResourceOptions] = None,
|
798
|
-
admin_user: Optional[pulumi.Input[str]] = None,
|
799
673
|
capacity: Optional[pulumi.Input[Union['AnalyticsInstanceCapacityArgs', 'AnalyticsInstanceCapacityArgsDict']]] = None,
|
800
674
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
801
675
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
802
676
|
description: Optional[pulumi.Input[str]] = None,
|
803
|
-
domain_id: Optional[pulumi.Input[str]] = None,
|
804
677
|
email_notification: Optional[pulumi.Input[str]] = None,
|
805
|
-
feature_bundle: Optional[pulumi.Input[str]] = None,
|
806
678
|
feature_set: Optional[pulumi.Input[str]] = None,
|
807
679
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
808
680
|
idcs_access_token: Optional[pulumi.Input[str]] = None,
|
@@ -820,7 +692,6 @@ class AnalyticsInstance(pulumi.CustomResource):
|
|
820
692
|
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
821
693
|
__props__ = AnalyticsInstanceArgs.__new__(AnalyticsInstanceArgs)
|
822
694
|
|
823
|
-
__props__.__dict__["admin_user"] = admin_user
|
824
695
|
if capacity is None and not opts.urn:
|
825
696
|
raise TypeError("Missing required property 'capacity'")
|
826
697
|
__props__.__dict__["capacity"] = capacity
|
@@ -829,13 +700,13 @@ class AnalyticsInstance(pulumi.CustomResource):
|
|
829
700
|
__props__.__dict__["compartment_id"] = compartment_id
|
830
701
|
__props__.__dict__["defined_tags"] = defined_tags
|
831
702
|
__props__.__dict__["description"] = description
|
832
|
-
__props__.__dict__["domain_id"] = domain_id
|
833
703
|
__props__.__dict__["email_notification"] = email_notification
|
834
|
-
__props__.__dict__["feature_bundle"] = feature_bundle
|
835
704
|
if feature_set is None and not opts.urn:
|
836
705
|
raise TypeError("Missing required property 'feature_set'")
|
837
706
|
__props__.__dict__["feature_set"] = feature_set
|
838
707
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
708
|
+
if idcs_access_token is None and not opts.urn:
|
709
|
+
raise TypeError("Missing required property 'idcs_access_token'")
|
839
710
|
__props__.__dict__["idcs_access_token"] = None if idcs_access_token is None else pulumi.Output.secret(idcs_access_token)
|
840
711
|
__props__.__dict__["kms_key_id"] = kms_key_id
|
841
712
|
if license_type is None and not opts.urn:
|
@@ -845,7 +716,6 @@ class AnalyticsInstance(pulumi.CustomResource):
|
|
845
716
|
__props__.__dict__["network_endpoint_details"] = network_endpoint_details
|
846
717
|
__props__.__dict__["state"] = state
|
847
718
|
__props__.__dict__["service_url"] = None
|
848
|
-
__props__.__dict__["system_tags"] = None
|
849
719
|
__props__.__dict__["time_created"] = None
|
850
720
|
__props__.__dict__["time_updated"] = None
|
851
721
|
secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["idcsAccessToken"])
|
@@ -860,14 +730,11 @@ class AnalyticsInstance(pulumi.CustomResource):
|
|
860
730
|
def get(resource_name: str,
|
861
731
|
id: pulumi.Input[str],
|
862
732
|
opts: Optional[pulumi.ResourceOptions] = None,
|
863
|
-
admin_user: Optional[pulumi.Input[str]] = None,
|
864
733
|
capacity: Optional[pulumi.Input[Union['AnalyticsInstanceCapacityArgs', 'AnalyticsInstanceCapacityArgsDict']]] = None,
|
865
734
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
866
735
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
867
736
|
description: Optional[pulumi.Input[str]] = None,
|
868
|
-
domain_id: Optional[pulumi.Input[str]] = None,
|
869
737
|
email_notification: Optional[pulumi.Input[str]] = None,
|
870
|
-
feature_bundle: Optional[pulumi.Input[str]] = None,
|
871
738
|
feature_set: Optional[pulumi.Input[str]] = None,
|
872
739
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
873
740
|
idcs_access_token: Optional[pulumi.Input[str]] = None,
|
@@ -877,7 +744,6 @@ class AnalyticsInstance(pulumi.CustomResource):
|
|
877
744
|
network_endpoint_details: Optional[pulumi.Input[Union['AnalyticsInstanceNetworkEndpointDetailsArgs', 'AnalyticsInstanceNetworkEndpointDetailsArgsDict']]] = None,
|
878
745
|
service_url: Optional[pulumi.Input[str]] = None,
|
879
746
|
state: Optional[pulumi.Input[str]] = None,
|
880
|
-
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
881
747
|
time_created: Optional[pulumi.Input[str]] = None,
|
882
748
|
time_updated: Optional[pulumi.Input[str]] = None) -> 'AnalyticsInstance':
|
883
749
|
"""
|
@@ -887,18 +753,15 @@ class AnalyticsInstance(pulumi.CustomResource):
|
|
887
753
|
:param str resource_name: The unique name of the resulting resource.
|
888
754
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
889
755
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
890
|
-
:param pulumi.Input[str] admin_user: user name of the authorized user.
|
891
756
|
:param pulumi.Input[Union['AnalyticsInstanceCapacityArgs', 'AnalyticsInstanceCapacityArgsDict']] capacity: Service instance capacity metadata (e.g.: OLPU count, number of users, ...etc...).
|
892
757
|
:param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment.
|
893
758
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
894
759
|
:param pulumi.Input[str] description: (Updatable) Optional description.
|
895
|
-
:param pulumi.Input[str] domain_id: domain id for which the user is authorized.
|
896
760
|
:param pulumi.Input[str] email_notification: (Updatable) Email address receiving notifications.
|
897
|
-
:param pulumi.Input[str] feature_bundle: The feature set of an Analytics instance.
|
898
761
|
:param pulumi.Input[str] feature_set: Analytics feature set.
|
899
762
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
900
763
|
:param pulumi.Input[str] idcs_access_token: IDCS access token identifying a stripe and service administrator user.
|
901
|
-
:param pulumi.Input[str] kms_key_id: OCID of the Oracle Cloud Infrastructure Vault Key encrypting the customer data stored in this Analytics instance.
|
764
|
+
:param pulumi.Input[str] kms_key_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure Vault Key encrypting the customer data stored in this Analytics instance. Omitting this value or specifying an empty string (i.e. "") indicates to use Oracle managed default encryption.
|
902
765
|
:param pulumi.Input[str] license_type: (Updatable) The license used for the service.
|
903
766
|
:param pulumi.Input[str] name: The name of the Analytics instance. This name must be unique in the tenancy and cannot be changed.
|
904
767
|
:param pulumi.Input[Union['AnalyticsInstanceNetworkEndpointDetailsArgs', 'AnalyticsInstanceNetworkEndpointDetailsArgsDict']] network_endpoint_details: Base representation of a network endpoint.
|
@@ -908,7 +771,6 @@ class AnalyticsInstance(pulumi.CustomResource):
|
|
908
771
|
|
909
772
|
** IMPORTANT **
|
910
773
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
911
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: System tags for this resource. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.key": "value"}`
|
912
774
|
:param pulumi.Input[str] time_created: The date and time the instance was created, in the format defined by RFC3339. Example: `2016-08-25T21:10:29.600Z`
|
913
775
|
:param pulumi.Input[str] time_updated: The date and time the instance was last updated (in the format defined by RFC3339). This timestamp represents updates made through this API. External events do not influence it.
|
914
776
|
"""
|
@@ -916,14 +778,11 @@ class AnalyticsInstance(pulumi.CustomResource):
|
|
916
778
|
|
917
779
|
__props__ = _AnalyticsInstanceState.__new__(_AnalyticsInstanceState)
|
918
780
|
|
919
|
-
__props__.__dict__["admin_user"] = admin_user
|
920
781
|
__props__.__dict__["capacity"] = capacity
|
921
782
|
__props__.__dict__["compartment_id"] = compartment_id
|
922
783
|
__props__.__dict__["defined_tags"] = defined_tags
|
923
784
|
__props__.__dict__["description"] = description
|
924
|
-
__props__.__dict__["domain_id"] = domain_id
|
925
785
|
__props__.__dict__["email_notification"] = email_notification
|
926
|
-
__props__.__dict__["feature_bundle"] = feature_bundle
|
927
786
|
__props__.__dict__["feature_set"] = feature_set
|
928
787
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
929
788
|
__props__.__dict__["idcs_access_token"] = idcs_access_token
|
@@ -933,19 +792,10 @@ class AnalyticsInstance(pulumi.CustomResource):
|
|
933
792
|
__props__.__dict__["network_endpoint_details"] = network_endpoint_details
|
934
793
|
__props__.__dict__["service_url"] = service_url
|
935
794
|
__props__.__dict__["state"] = state
|
936
|
-
__props__.__dict__["system_tags"] = system_tags
|
937
795
|
__props__.__dict__["time_created"] = time_created
|
938
796
|
__props__.__dict__["time_updated"] = time_updated
|
939
797
|
return AnalyticsInstance(resource_name, opts=opts, __props__=__props__)
|
940
798
|
|
941
|
-
@property
|
942
|
-
@pulumi.getter(name="adminUser")
|
943
|
-
def admin_user(self) -> pulumi.Output[str]:
|
944
|
-
"""
|
945
|
-
user name of the authorized user.
|
946
|
-
"""
|
947
|
-
return pulumi.get(self, "admin_user")
|
948
|
-
|
949
799
|
@property
|
950
800
|
@pulumi.getter
|
951
801
|
def capacity(self) -> pulumi.Output['outputs.AnalyticsInstanceCapacity']:
|
@@ -978,14 +828,6 @@ class AnalyticsInstance(pulumi.CustomResource):
|
|
978
828
|
"""
|
979
829
|
return pulumi.get(self, "description")
|
980
830
|
|
981
|
-
@property
|
982
|
-
@pulumi.getter(name="domainId")
|
983
|
-
def domain_id(self) -> pulumi.Output[str]:
|
984
|
-
"""
|
985
|
-
domain id for which the user is authorized.
|
986
|
-
"""
|
987
|
-
return pulumi.get(self, "domain_id")
|
988
|
-
|
989
831
|
@property
|
990
832
|
@pulumi.getter(name="emailNotification")
|
991
833
|
def email_notification(self) -> pulumi.Output[str]:
|
@@ -994,14 +836,6 @@ class AnalyticsInstance(pulumi.CustomResource):
|
|
994
836
|
"""
|
995
837
|
return pulumi.get(self, "email_notification")
|
996
838
|
|
997
|
-
@property
|
998
|
-
@pulumi.getter(name="featureBundle")
|
999
|
-
def feature_bundle(self) -> pulumi.Output[str]:
|
1000
|
-
"""
|
1001
|
-
The feature set of an Analytics instance.
|
1002
|
-
"""
|
1003
|
-
return pulumi.get(self, "feature_bundle")
|
1004
|
-
|
1005
839
|
@property
|
1006
840
|
@pulumi.getter(name="featureSet")
|
1007
841
|
def feature_set(self) -> pulumi.Output[str]:
|
@@ -1020,7 +854,7 @@ class AnalyticsInstance(pulumi.CustomResource):
|
|
1020
854
|
|
1021
855
|
@property
|
1022
856
|
@pulumi.getter(name="idcsAccessToken")
|
1023
|
-
def idcs_access_token(self) -> pulumi.Output[
|
857
|
+
def idcs_access_token(self) -> pulumi.Output[str]:
|
1024
858
|
"""
|
1025
859
|
IDCS access token identifying a stripe and service administrator user.
|
1026
860
|
"""
|
@@ -1030,7 +864,7 @@ class AnalyticsInstance(pulumi.CustomResource):
|
|
1030
864
|
@pulumi.getter(name="kmsKeyId")
|
1031
865
|
def kms_key_id(self) -> pulumi.Output[Optional[str]]:
|
1032
866
|
"""
|
1033
|
-
OCID of the Oracle Cloud Infrastructure Vault Key encrypting the customer data stored in this Analytics instance.
|
867
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure Vault Key encrypting the customer data stored in this Analytics instance. Omitting this value or specifying an empty string (i.e. "") indicates to use Oracle managed default encryption.
|
1034
868
|
"""
|
1035
869
|
return pulumi.get(self, "kms_key_id")
|
1036
870
|
|
@@ -1078,14 +912,6 @@ class AnalyticsInstance(pulumi.CustomResource):
|
|
1078
912
|
"""
|
1079
913
|
return pulumi.get(self, "state")
|
1080
914
|
|
1081
|
-
@property
|
1082
|
-
@pulumi.getter(name="systemTags")
|
1083
|
-
def system_tags(self) -> pulumi.Output[Mapping[str, str]]:
|
1084
|
-
"""
|
1085
|
-
System tags for this resource. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.key": "value"}`
|
1086
|
-
"""
|
1087
|
-
return pulumi.get(self, "system_tags")
|
1088
|
-
|
1089
915
|
@property
|
1090
916
|
@pulumi.getter(name="timeCreated")
|
1091
917
|
def time_created(self) -> pulumi.Output[str]:
|