pulumi-oci 2.8.0a1724220787__py3-none-any.whl → 2.8.0a1724316519__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.
Files changed (33) hide show
  1. pulumi_oci/analytics/_inputs.py +4 -4
  2. pulumi_oci/analytics/analytics_instance.py +199 -25
  3. pulumi_oci/analytics/get_analytics_instance.py +51 -2
  4. pulumi_oci/analytics/get_analytics_instances.py +1 -1
  5. pulumi_oci/analytics/outputs.py +52 -12
  6. pulumi_oci/database/get_maintenance_run.py +14 -1
  7. pulumi_oci/database/maintenance_run.py +56 -7
  8. pulumi_oci/database/outputs.py +33 -0
  9. pulumi_oci/disasterrecovery/_inputs.py +66 -2
  10. pulumi_oci/disasterrecovery/dr_protection_group.py +8 -0
  11. pulumi_oci/disasterrecovery/get_dr_plan_executions.py +24 -0
  12. pulumi_oci/disasterrecovery/outputs.py +150 -10
  13. pulumi_oci/integration/get_integration_instance.py +25 -2
  14. pulumi_oci/integration/integration_instance.py +88 -0
  15. pulumi_oci/integration/outputs.py +24 -6
  16. pulumi_oci/mysql/_inputs.py +202 -2
  17. pulumi_oci/mysql/get_mysql_backup.py +1 -1
  18. pulumi_oci/mysql/get_mysql_db_system.py +15 -2
  19. pulumi_oci/mysql/mysql_backup.py +4 -4
  20. pulumi_oci/mysql/mysql_db_system.py +55 -0
  21. pulumi_oci/mysql/outputs.py +503 -10
  22. pulumi_oci/pulumi-plugin.json +1 -1
  23. pulumi_oci/redis/__init__.py +1 -0
  24. pulumi_oci/redis/_inputs.py +40 -0
  25. pulumi_oci/redis/get_redis_cluster.py +47 -21
  26. pulumi_oci/redis/get_redis_cluster_nodes.py +156 -0
  27. pulumi_oci/redis/get_redis_clusters.py +8 -8
  28. pulumi_oci/redis/outputs.py +160 -28
  29. pulumi_oci/redis/redis_cluster.py +177 -79
  30. {pulumi_oci-2.8.0a1724220787.dist-info → pulumi_oci-2.8.0a1724316519.dist-info}/METADATA +1 -1
  31. {pulumi_oci-2.8.0a1724220787.dist-info → pulumi_oci-2.8.0a1724316519.dist-info}/RECORD +33 -32
  32. {pulumi_oci-2.8.0a1724220787.dist-info → pulumi_oci-2.8.0a1724316519.dist-info}/WHEEL +0 -0
  33. {pulumi_oci-2.8.0a1724220787.dist-info → pulumi_oci-2.8.0a1724316519.dist-info}/top_level.txt +0 -0
@@ -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 (OLPU count, number of users, ...etc...). This parameter affects the number of CPUs, amount of memory or other resources allocated to the instance.
27
+ :param pulumi.Input[str] capacity_type: The capacity model to use. Accepted values are: OLPU_COUNT, USER_COUNT
28
+ :param pulumi.Input[int] capacity_value: (Updatable) The capacity value selected, either the number of OCPUs (OLPU_COUNT) or the number of users (USER_COUNT). This parameter affects the number of OCPUs, amount of memory, and 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. Accepted values are: OLPU_COUNT, USER_COUNT
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 (OLPU count, number of users, ...etc...). This parameter affects the number of CPUs, amount of memory or other resources allocated to the instance.
49
+ (Updatable) The capacity value selected, either the number of OCPUs (OLPU_COUNT) or the number of users (USER_COUNT). This parameter affects the number of OCPUs, amount of memory, and other resources allocated to the instance.
50
50
  """
51
51
  return pulumi.get(self, "capacity_value")
52
52
 
@@ -19,12 +19,15 @@ 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],
23
22
  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,
26
27
  email_notification: Optional[pulumi.Input[str]] = None,
28
+ feature_bundle: Optional[pulumi.Input[str]] = None,
27
29
  freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
30
+ idcs_access_token: Optional[pulumi.Input[str]] = None,
28
31
  kms_key_id: Optional[pulumi.Input[str]] = None,
29
32
  name: Optional[pulumi.Input[str]] = None,
30
33
  network_endpoint_details: Optional[pulumi.Input['AnalyticsInstanceNetworkEndpointDetailsArgs']] = None,
@@ -34,13 +37,16 @@ class AnalyticsInstanceArgs:
34
37
  :param pulumi.Input['AnalyticsInstanceCapacityArgs'] capacity: Service instance capacity metadata (e.g.: OLPU count, number of users, ...etc...).
35
38
  :param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment.
36
39
  :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.
38
40
  :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.
39
42
  :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"}`
40
43
  :param pulumi.Input[str] description: (Updatable) Optional description.
44
+ :param pulumi.Input[str] domain_id: domain id for which the user is authorized.
41
45
  :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.
42
47
  :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"}`
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.
48
+ :param pulumi.Input[str] idcs_access_token: IDCS access token identifying a stripe and service administrator user.
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.
44
50
  :param pulumi.Input[str] name: The name of the Analytics instance. This name must be unique in the tenancy and cannot be changed.
45
51
  :param pulumi.Input['AnalyticsInstanceNetworkEndpointDetailsArgs'] network_endpoint_details: Base representation of a network endpoint.
46
52
  :param pulumi.Input[str] state: (Updatable) The target state for the Analytics Instance. Could be set to `ACTIVE` or `INACTIVE`.
@@ -52,16 +58,23 @@ class AnalyticsInstanceArgs:
52
58
  pulumi.set(__self__, "capacity", capacity)
53
59
  pulumi.set(__self__, "compartment_id", compartment_id)
54
60
  pulumi.set(__self__, "feature_set", feature_set)
55
- pulumi.set(__self__, "idcs_access_token", idcs_access_token)
56
61
  pulumi.set(__self__, "license_type", license_type)
62
+ if admin_user is not None:
63
+ pulumi.set(__self__, "admin_user", admin_user)
57
64
  if defined_tags is not None:
58
65
  pulumi.set(__self__, "defined_tags", defined_tags)
59
66
  if description is not None:
60
67
  pulumi.set(__self__, "description", description)
68
+ if domain_id is not None:
69
+ pulumi.set(__self__, "domain_id", domain_id)
61
70
  if email_notification is not None:
62
71
  pulumi.set(__self__, "email_notification", email_notification)
72
+ if feature_bundle is not None:
73
+ pulumi.set(__self__, "feature_bundle", feature_bundle)
63
74
  if freeform_tags is not None:
64
75
  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)
65
78
  if kms_key_id is not None:
66
79
  pulumi.set(__self__, "kms_key_id", kms_key_id)
67
80
  if name is not None:
@@ -107,18 +120,6 @@ class AnalyticsInstanceArgs:
107
120
  def feature_set(self, value: pulumi.Input[str]):
108
121
  pulumi.set(self, "feature_set", value)
109
122
 
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
-
122
123
  @property
123
124
  @pulumi.getter(name="licenseType")
124
125
  def license_type(self) -> pulumi.Input[str]:
@@ -131,6 +132,18 @@ class AnalyticsInstanceArgs:
131
132
  def license_type(self, value: pulumi.Input[str]):
132
133
  pulumi.set(self, "license_type", value)
133
134
 
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
+
134
147
  @property
135
148
  @pulumi.getter(name="definedTags")
136
149
  def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
@@ -155,6 +168,18 @@ class AnalyticsInstanceArgs:
155
168
  def description(self, value: Optional[pulumi.Input[str]]):
156
169
  pulumi.set(self, "description", value)
157
170
 
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
+
158
183
  @property
159
184
  @pulumi.getter(name="emailNotification")
160
185
  def email_notification(self) -> Optional[pulumi.Input[str]]:
@@ -167,6 +192,18 @@ class AnalyticsInstanceArgs:
167
192
  def email_notification(self, value: Optional[pulumi.Input[str]]):
168
193
  pulumi.set(self, "email_notification", value)
169
194
 
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
+
170
207
  @property
171
208
  @pulumi.getter(name="freeformTags")
172
209
  def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
@@ -179,11 +216,23 @@ class AnalyticsInstanceArgs:
179
216
  def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
180
217
  pulumi.set(self, "freeform_tags", value)
181
218
 
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
+
182
231
  @property
183
232
  @pulumi.getter(name="kmsKeyId")
184
233
  def kms_key_id(self) -> Optional[pulumi.Input[str]]:
185
234
  """
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.
235
+ 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.
187
236
  """
188
237
  return pulumi.get(self, "kms_key_id")
189
238
 
@@ -235,11 +284,14 @@ class AnalyticsInstanceArgs:
235
284
  @pulumi.input_type
236
285
  class _AnalyticsInstanceState:
237
286
  def __init__(__self__, *,
287
+ admin_user: Optional[pulumi.Input[str]] = None,
238
288
  capacity: Optional[pulumi.Input['AnalyticsInstanceCapacityArgs']] = None,
239
289
  compartment_id: Optional[pulumi.Input[str]] = None,
240
290
  defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
241
291
  description: Optional[pulumi.Input[str]] = None,
292
+ domain_id: Optional[pulumi.Input[str]] = None,
242
293
  email_notification: Optional[pulumi.Input[str]] = None,
294
+ feature_bundle: Optional[pulumi.Input[str]] = None,
243
295
  feature_set: Optional[pulumi.Input[str]] = None,
244
296
  freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
245
297
  idcs_access_token: Optional[pulumi.Input[str]] = None,
@@ -249,19 +301,23 @@ class _AnalyticsInstanceState:
249
301
  network_endpoint_details: Optional[pulumi.Input['AnalyticsInstanceNetworkEndpointDetailsArgs']] = None,
250
302
  service_url: Optional[pulumi.Input[str]] = None,
251
303
  state: Optional[pulumi.Input[str]] = None,
304
+ system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
252
305
  time_created: Optional[pulumi.Input[str]] = None,
253
306
  time_updated: Optional[pulumi.Input[str]] = None):
254
307
  """
255
308
  Input properties used for looking up and filtering AnalyticsInstance resources.
309
+ :param pulumi.Input[str] admin_user: user name of the authorized user.
256
310
  :param pulumi.Input['AnalyticsInstanceCapacityArgs'] capacity: Service instance capacity metadata (e.g.: OLPU count, number of users, ...etc...).
257
311
  :param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment.
258
312
  :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"}`
259
313
  :param pulumi.Input[str] description: (Updatable) Optional description.
314
+ :param pulumi.Input[str] domain_id: domain id for which the user is authorized.
260
315
  :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.
261
317
  :param pulumi.Input[str] feature_set: Analytics feature set.
262
318
  :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"}`
263
319
  :param pulumi.Input[str] idcs_access_token: IDCS access token identifying a stripe and service administrator user.
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.
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. A null value indicates Oracle managed default encryption.
265
321
  :param pulumi.Input[str] license_type: (Updatable) The license used for the service.
266
322
  :param pulumi.Input[str] name: The name of the Analytics instance. This name must be unique in the tenancy and cannot be changed.
267
323
  :param pulumi.Input['AnalyticsInstanceNetworkEndpointDetailsArgs'] network_endpoint_details: Base representation of a network endpoint.
@@ -271,9 +327,12 @@ class _AnalyticsInstanceState:
271
327
 
272
328
  ** IMPORTANT **
273
329
  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"}`
274
331
  :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`
275
332
  :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.
276
333
  """
334
+ if admin_user is not None:
335
+ pulumi.set(__self__, "admin_user", admin_user)
277
336
  if capacity is not None:
278
337
  pulumi.set(__self__, "capacity", capacity)
279
338
  if compartment_id is not None:
@@ -282,8 +341,12 @@ class _AnalyticsInstanceState:
282
341
  pulumi.set(__self__, "defined_tags", defined_tags)
283
342
  if description is not None:
284
343
  pulumi.set(__self__, "description", description)
344
+ if domain_id is not None:
345
+ pulumi.set(__self__, "domain_id", domain_id)
285
346
  if email_notification is not None:
286
347
  pulumi.set(__self__, "email_notification", email_notification)
348
+ if feature_bundle is not None:
349
+ pulumi.set(__self__, "feature_bundle", feature_bundle)
287
350
  if feature_set is not None:
288
351
  pulumi.set(__self__, "feature_set", feature_set)
289
352
  if freeform_tags is not None:
@@ -302,11 +365,25 @@ class _AnalyticsInstanceState:
302
365
  pulumi.set(__self__, "service_url", service_url)
303
366
  if state is not None:
304
367
  pulumi.set(__self__, "state", state)
368
+ if system_tags is not None:
369
+ pulumi.set(__self__, "system_tags", system_tags)
305
370
  if time_created is not None:
306
371
  pulumi.set(__self__, "time_created", time_created)
307
372
  if time_updated is not None:
308
373
  pulumi.set(__self__, "time_updated", time_updated)
309
374
 
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
+
310
387
  @property
311
388
  @pulumi.getter
312
389
  def capacity(self) -> Optional[pulumi.Input['AnalyticsInstanceCapacityArgs']]:
@@ -355,6 +432,18 @@ class _AnalyticsInstanceState:
355
432
  def description(self, value: Optional[pulumi.Input[str]]):
356
433
  pulumi.set(self, "description", value)
357
434
 
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
+
358
447
  @property
359
448
  @pulumi.getter(name="emailNotification")
360
449
  def email_notification(self) -> Optional[pulumi.Input[str]]:
@@ -367,6 +456,18 @@ class _AnalyticsInstanceState:
367
456
  def email_notification(self, value: Optional[pulumi.Input[str]]):
368
457
  pulumi.set(self, "email_notification", value)
369
458
 
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
+
370
471
  @property
371
472
  @pulumi.getter(name="featureSet")
372
473
  def feature_set(self) -> Optional[pulumi.Input[str]]:
@@ -407,7 +508,7 @@ class _AnalyticsInstanceState:
407
508
  @pulumi.getter(name="kmsKeyId")
408
509
  def kms_key_id(self) -> Optional[pulumi.Input[str]]:
409
510
  """
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.
511
+ 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.
411
512
  """
412
513
  return pulumi.get(self, "kms_key_id")
413
514
 
@@ -479,6 +580,18 @@ class _AnalyticsInstanceState:
479
580
  def state(self, value: Optional[pulumi.Input[str]]):
480
581
  pulumi.set(self, "state", value)
481
582
 
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
+
482
595
  @property
483
596
  @pulumi.getter(name="timeCreated")
484
597
  def time_created(self) -> Optional[pulumi.Input[str]]:
@@ -509,11 +622,14 @@ class AnalyticsInstance(pulumi.CustomResource):
509
622
  def __init__(__self__,
510
623
  resource_name: str,
511
624
  opts: Optional[pulumi.ResourceOptions] = None,
625
+ admin_user: Optional[pulumi.Input[str]] = None,
512
626
  capacity: Optional[pulumi.Input[Union['AnalyticsInstanceCapacityArgs', 'AnalyticsInstanceCapacityArgsDict']]] = None,
513
627
  compartment_id: Optional[pulumi.Input[str]] = None,
514
628
  defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
515
629
  description: Optional[pulumi.Input[str]] = None,
630
+ domain_id: Optional[pulumi.Input[str]] = None,
516
631
  email_notification: Optional[pulumi.Input[str]] = None,
632
+ feature_bundle: Optional[pulumi.Input[str]] = None,
517
633
  feature_set: Optional[pulumi.Input[str]] = None,
518
634
  freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
519
635
  idcs_access_token: Optional[pulumi.Input[str]] = None,
@@ -545,11 +661,14 @@ class AnalyticsInstance(pulumi.CustomResource):
545
661
  idcs_access_token=analytics_instance_idcs_access_token,
546
662
  license_type=analytics_instance_license_type,
547
663
  name=analytics_instance_name,
664
+ admin_user=analytics_instance_admin_user,
548
665
  defined_tags={
549
666
  "Operations.CostCenter": "42",
550
667
  },
551
668
  description=analytics_instance_description,
669
+ domain_id=test_domain["id"],
552
670
  email_notification=analytics_instance_email_notification,
671
+ feature_bundle=analytics_instance_feature_bundle,
553
672
  freeform_tags={
554
673
  "Department": "Finance",
555
674
  },
@@ -578,15 +697,18 @@ class AnalyticsInstance(pulumi.CustomResource):
578
697
 
579
698
  :param str resource_name: The name of the resource.
580
699
  :param pulumi.ResourceOptions opts: Options for the resource.
700
+ :param pulumi.Input[str] admin_user: user name of the authorized user.
581
701
  :param pulumi.Input[Union['AnalyticsInstanceCapacityArgs', 'AnalyticsInstanceCapacityArgsDict']] capacity: Service instance capacity metadata (e.g.: OLPU count, number of users, ...etc...).
582
702
  :param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment.
583
703
  :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"}`
584
704
  :param pulumi.Input[str] description: (Updatable) Optional description.
705
+ :param pulumi.Input[str] domain_id: domain id for which the user is authorized.
585
706
  :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.
586
708
  :param pulumi.Input[str] feature_set: Analytics feature set.
587
709
  :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"}`
588
710
  :param pulumi.Input[str] idcs_access_token: IDCS access token identifying a stripe and service administrator user.
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.
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. A null value indicates Oracle managed default encryption.
590
712
  :param pulumi.Input[str] license_type: (Updatable) The license used for the service.
591
713
  :param pulumi.Input[str] name: The name of the Analytics instance. This name must be unique in the tenancy and cannot be changed.
592
714
  :param pulumi.Input[Union['AnalyticsInstanceNetworkEndpointDetailsArgs', 'AnalyticsInstanceNetworkEndpointDetailsArgsDict']] network_endpoint_details: Base representation of a network endpoint.
@@ -624,11 +746,14 @@ class AnalyticsInstance(pulumi.CustomResource):
624
746
  idcs_access_token=analytics_instance_idcs_access_token,
625
747
  license_type=analytics_instance_license_type,
626
748
  name=analytics_instance_name,
749
+ admin_user=analytics_instance_admin_user,
627
750
  defined_tags={
628
751
  "Operations.CostCenter": "42",
629
752
  },
630
753
  description=analytics_instance_description,
754
+ domain_id=test_domain["id"],
631
755
  email_notification=analytics_instance_email_notification,
756
+ feature_bundle=analytics_instance_feature_bundle,
632
757
  freeform_tags={
633
758
  "Department": "Finance",
634
759
  },
@@ -670,11 +795,14 @@ class AnalyticsInstance(pulumi.CustomResource):
670
795
  def _internal_init(__self__,
671
796
  resource_name: str,
672
797
  opts: Optional[pulumi.ResourceOptions] = None,
798
+ admin_user: Optional[pulumi.Input[str]] = None,
673
799
  capacity: Optional[pulumi.Input[Union['AnalyticsInstanceCapacityArgs', 'AnalyticsInstanceCapacityArgsDict']]] = None,
674
800
  compartment_id: Optional[pulumi.Input[str]] = None,
675
801
  defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
676
802
  description: Optional[pulumi.Input[str]] = None,
803
+ domain_id: Optional[pulumi.Input[str]] = None,
677
804
  email_notification: Optional[pulumi.Input[str]] = None,
805
+ feature_bundle: Optional[pulumi.Input[str]] = None,
678
806
  feature_set: Optional[pulumi.Input[str]] = None,
679
807
  freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
680
808
  idcs_access_token: Optional[pulumi.Input[str]] = None,
@@ -692,6 +820,7 @@ class AnalyticsInstance(pulumi.CustomResource):
692
820
  raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
693
821
  __props__ = AnalyticsInstanceArgs.__new__(AnalyticsInstanceArgs)
694
822
 
823
+ __props__.__dict__["admin_user"] = admin_user
695
824
  if capacity is None and not opts.urn:
696
825
  raise TypeError("Missing required property 'capacity'")
697
826
  __props__.__dict__["capacity"] = capacity
@@ -700,13 +829,13 @@ class AnalyticsInstance(pulumi.CustomResource):
700
829
  __props__.__dict__["compartment_id"] = compartment_id
701
830
  __props__.__dict__["defined_tags"] = defined_tags
702
831
  __props__.__dict__["description"] = description
832
+ __props__.__dict__["domain_id"] = domain_id
703
833
  __props__.__dict__["email_notification"] = email_notification
834
+ __props__.__dict__["feature_bundle"] = feature_bundle
704
835
  if feature_set is None and not opts.urn:
705
836
  raise TypeError("Missing required property 'feature_set'")
706
837
  __props__.__dict__["feature_set"] = feature_set
707
838
  __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'")
710
839
  __props__.__dict__["idcs_access_token"] = None if idcs_access_token is None else pulumi.Output.secret(idcs_access_token)
711
840
  __props__.__dict__["kms_key_id"] = kms_key_id
712
841
  if license_type is None and not opts.urn:
@@ -716,6 +845,7 @@ class AnalyticsInstance(pulumi.CustomResource):
716
845
  __props__.__dict__["network_endpoint_details"] = network_endpoint_details
717
846
  __props__.__dict__["state"] = state
718
847
  __props__.__dict__["service_url"] = None
848
+ __props__.__dict__["system_tags"] = None
719
849
  __props__.__dict__["time_created"] = None
720
850
  __props__.__dict__["time_updated"] = None
721
851
  secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["idcsAccessToken"])
@@ -730,11 +860,14 @@ class AnalyticsInstance(pulumi.CustomResource):
730
860
  def get(resource_name: str,
731
861
  id: pulumi.Input[str],
732
862
  opts: Optional[pulumi.ResourceOptions] = None,
863
+ admin_user: Optional[pulumi.Input[str]] = None,
733
864
  capacity: Optional[pulumi.Input[Union['AnalyticsInstanceCapacityArgs', 'AnalyticsInstanceCapacityArgsDict']]] = None,
734
865
  compartment_id: Optional[pulumi.Input[str]] = None,
735
866
  defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
736
867
  description: Optional[pulumi.Input[str]] = None,
868
+ domain_id: Optional[pulumi.Input[str]] = None,
737
869
  email_notification: Optional[pulumi.Input[str]] = None,
870
+ feature_bundle: Optional[pulumi.Input[str]] = None,
738
871
  feature_set: Optional[pulumi.Input[str]] = None,
739
872
  freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
740
873
  idcs_access_token: Optional[pulumi.Input[str]] = None,
@@ -744,6 +877,7 @@ class AnalyticsInstance(pulumi.CustomResource):
744
877
  network_endpoint_details: Optional[pulumi.Input[Union['AnalyticsInstanceNetworkEndpointDetailsArgs', 'AnalyticsInstanceNetworkEndpointDetailsArgsDict']]] = None,
745
878
  service_url: Optional[pulumi.Input[str]] = None,
746
879
  state: Optional[pulumi.Input[str]] = None,
880
+ system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
747
881
  time_created: Optional[pulumi.Input[str]] = None,
748
882
  time_updated: Optional[pulumi.Input[str]] = None) -> 'AnalyticsInstance':
749
883
  """
@@ -753,15 +887,18 @@ class AnalyticsInstance(pulumi.CustomResource):
753
887
  :param str resource_name: The unique name of the resulting resource.
754
888
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
755
889
  :param pulumi.ResourceOptions opts: Options for the resource.
890
+ :param pulumi.Input[str] admin_user: user name of the authorized user.
756
891
  :param pulumi.Input[Union['AnalyticsInstanceCapacityArgs', 'AnalyticsInstanceCapacityArgsDict']] capacity: Service instance capacity metadata (e.g.: OLPU count, number of users, ...etc...).
757
892
  :param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment.
758
893
  :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"}`
759
894
  :param pulumi.Input[str] description: (Updatable) Optional description.
895
+ :param pulumi.Input[str] domain_id: domain id for which the user is authorized.
760
896
  :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.
761
898
  :param pulumi.Input[str] feature_set: Analytics feature set.
762
899
  :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"}`
763
900
  :param pulumi.Input[str] idcs_access_token: IDCS access token identifying a stripe and service administrator user.
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.
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. A null value indicates Oracle managed default encryption.
765
902
  :param pulumi.Input[str] license_type: (Updatable) The license used for the service.
766
903
  :param pulumi.Input[str] name: The name of the Analytics instance. This name must be unique in the tenancy and cannot be changed.
767
904
  :param pulumi.Input[Union['AnalyticsInstanceNetworkEndpointDetailsArgs', 'AnalyticsInstanceNetworkEndpointDetailsArgsDict']] network_endpoint_details: Base representation of a network endpoint.
@@ -771,6 +908,7 @@ class AnalyticsInstance(pulumi.CustomResource):
771
908
 
772
909
  ** IMPORTANT **
773
910
  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"}`
774
912
  :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`
775
913
  :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.
776
914
  """
@@ -778,11 +916,14 @@ class AnalyticsInstance(pulumi.CustomResource):
778
916
 
779
917
  __props__ = _AnalyticsInstanceState.__new__(_AnalyticsInstanceState)
780
918
 
919
+ __props__.__dict__["admin_user"] = admin_user
781
920
  __props__.__dict__["capacity"] = capacity
782
921
  __props__.__dict__["compartment_id"] = compartment_id
783
922
  __props__.__dict__["defined_tags"] = defined_tags
784
923
  __props__.__dict__["description"] = description
924
+ __props__.__dict__["domain_id"] = domain_id
785
925
  __props__.__dict__["email_notification"] = email_notification
926
+ __props__.__dict__["feature_bundle"] = feature_bundle
786
927
  __props__.__dict__["feature_set"] = feature_set
787
928
  __props__.__dict__["freeform_tags"] = freeform_tags
788
929
  __props__.__dict__["idcs_access_token"] = idcs_access_token
@@ -792,10 +933,19 @@ class AnalyticsInstance(pulumi.CustomResource):
792
933
  __props__.__dict__["network_endpoint_details"] = network_endpoint_details
793
934
  __props__.__dict__["service_url"] = service_url
794
935
  __props__.__dict__["state"] = state
936
+ __props__.__dict__["system_tags"] = system_tags
795
937
  __props__.__dict__["time_created"] = time_created
796
938
  __props__.__dict__["time_updated"] = time_updated
797
939
  return AnalyticsInstance(resource_name, opts=opts, __props__=__props__)
798
940
 
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
+
799
949
  @property
800
950
  @pulumi.getter
801
951
  def capacity(self) -> pulumi.Output['outputs.AnalyticsInstanceCapacity']:
@@ -828,6 +978,14 @@ class AnalyticsInstance(pulumi.CustomResource):
828
978
  """
829
979
  return pulumi.get(self, "description")
830
980
 
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
+
831
989
  @property
832
990
  @pulumi.getter(name="emailNotification")
833
991
  def email_notification(self) -> pulumi.Output[str]:
@@ -836,6 +994,14 @@ class AnalyticsInstance(pulumi.CustomResource):
836
994
  """
837
995
  return pulumi.get(self, "email_notification")
838
996
 
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
+
839
1005
  @property
840
1006
  @pulumi.getter(name="featureSet")
841
1007
  def feature_set(self) -> pulumi.Output[str]:
@@ -854,7 +1020,7 @@ class AnalyticsInstance(pulumi.CustomResource):
854
1020
 
855
1021
  @property
856
1022
  @pulumi.getter(name="idcsAccessToken")
857
- def idcs_access_token(self) -> pulumi.Output[str]:
1023
+ def idcs_access_token(self) -> pulumi.Output[Optional[str]]:
858
1024
  """
859
1025
  IDCS access token identifying a stripe and service administrator user.
860
1026
  """
@@ -864,7 +1030,7 @@ class AnalyticsInstance(pulumi.CustomResource):
864
1030
  @pulumi.getter(name="kmsKeyId")
865
1031
  def kms_key_id(self) -> pulumi.Output[Optional[str]]:
866
1032
  """
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.
1033
+ 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.
868
1034
  """
869
1035
  return pulumi.get(self, "kms_key_id")
870
1036
 
@@ -912,6 +1078,14 @@ class AnalyticsInstance(pulumi.CustomResource):
912
1078
  """
913
1079
  return pulumi.get(self, "state")
914
1080
 
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
+
915
1089
  @property
916
1090
  @pulumi.getter(name="timeCreated")
917
1091
  def time_created(self) -> pulumi.Output[str]: