pulumi-oci 2.8.0a1724220787__py3-none-any.whl → 2.9.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_oci/__init__.py +86 -38
- pulumi_oci/analytics/_inputs.py +4 -4
- pulumi_oci/analytics/analytics_instance.py +199 -25
- pulumi_oci/analytics/get_analytics_instance.py +51 -2
- pulumi_oci/analytics/get_analytics_instances.py +1 -1
- pulumi_oci/analytics/outputs.py +52 -12
- pulumi_oci/announcementsservice/__init__.py +1 -0
- pulumi_oci/announcementsservice/_inputs.py +46 -6
- pulumi_oci/announcementsservice/announcement_subscription.py +14 -14
- pulumi_oci/announcementsservice/get_announcement_subscription.py +2 -2
- pulumi_oci/announcementsservice/get_services.py +173 -0
- pulumi_oci/announcementsservice/outputs.py +195 -18
- pulumi_oci/bigdataservice/_inputs.py +1 -49
- pulumi_oci/bigdataservice/bds_instance.py +0 -128
- pulumi_oci/bigdataservice/get_bds_instance.py +1 -31
- pulumi_oci/bigdataservice/outputs.py +3 -132
- pulumi_oci/database/_inputs.py +32 -0
- pulumi_oci/database/autonomous_database.py +28 -0
- pulumi_oci/database/data_guard_association.py +49 -0
- pulumi_oci/database/get_autonomous_database.py +14 -1
- pulumi_oci/database/get_autonomous_databases.py +32 -95
- pulumi_oci/database/get_data_guard_association.py +11 -1
- pulumi_oci/database/get_maintenance_run.py +14 -1
- pulumi_oci/database/maintenance_run.py +56 -7
- pulumi_oci/database/outputs.py +196 -42
- pulumi_oci/databasemanagement/__init__.py +1 -0
- pulumi_oci/databasemanagement/_inputs.py +873 -10
- pulumi_oci/databasemanagement/autonomous_database_autonomous_database_dbm_features_management.py +275 -0
- pulumi_oci/databasemanagement/database_dbm_features_management.py +37 -3
- pulumi_oci/databasemanagement/db_management_private_endpoint.py +49 -0
- pulumi_oci/databasemanagement/get_db_management_private_endpoint.py +14 -1
- pulumi_oci/databasemanagement/get_db_management_private_endpoints.py +21 -1
- pulumi_oci/databasemanagement/get_managed_database.py +47 -3
- pulumi_oci/databasemanagement/managed_database.py +56 -0
- pulumi_oci/databasemanagement/outputs.py +3331 -1397
- pulumi_oci/databasemanagement/pluggabledatabase_pluggable_database_dbm_features_management.py +35 -1
- pulumi_oci/datasafe/__init__.py +6 -0
- pulumi_oci/datasafe/_inputs.py +18 -0
- pulumi_oci/datasafe/database_security_config_management.py +244 -2
- pulumi_oci/datasafe/masking_policy_health_report_management.py +453 -0
- pulumi_oci/datasafe/masking_report_management.py +693 -0
- pulumi_oci/datasafe/outputs.py +18 -0
- pulumi_oci/datasafe/security_policy_deployment_management.py +180 -2
- pulumi_oci/datasafe/security_policy_management.py +172 -2
- pulumi_oci/datasafe/set_security_assessment_baseline_management.py +304 -0
- pulumi_oci/datasafe/set_user_assessment_baseline_management.py +304 -0
- pulumi_oci/datasafe/sql_firewall_policy_management.py +354 -2
- pulumi_oci/datasafe/unset_security_assessment_baseline_management.py +264 -0
- pulumi_oci/datasafe/unset_user_assessment_baseline_management.py +264 -0
- pulumi_oci/delegateaccesscontrol/__init__.py +24 -0
- pulumi_oci/delegateaccesscontrol/_inputs.py +306 -0
- pulumi_oci/delegateaccesscontrol/delegation_control.py +1082 -0
- pulumi_oci/{globallydistributeddatabase/private_endpoint.py → delegateaccesscontrol/delegation_subscription.py} +162 -267
- pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request.py +535 -0
- pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request_audit_log_report.py +174 -0
- pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request_histories.py +133 -0
- pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_requests.py +250 -0
- pulumi_oci/delegateaccesscontrol/get_delegation_control.py +378 -0
- pulumi_oci/delegateaccesscontrol/get_delegation_control_resources.py +133 -0
- pulumi_oci/delegateaccesscontrol/get_delegation_controls.py +213 -0
- pulumi_oci/{globallydistributeddatabase/get_private_endpoint.py → delegateaccesscontrol/get_delegation_subscription.py} +66 -105
- pulumi_oci/delegateaccesscontrol/get_delegation_subscriptions.py +176 -0
- pulumi_oci/delegateaccesscontrol/get_service_provider.py +274 -0
- pulumi_oci/delegateaccesscontrol/get_service_provider_action.py +210 -0
- pulumi_oci/delegateaccesscontrol/get_service_provider_actions.py +210 -0
- pulumi_oci/delegateaccesscontrol/get_service_providers.py +213 -0
- pulumi_oci/delegateaccesscontrol/outputs.py +1679 -0
- pulumi_oci/{fleetsoftwareupdate → desktops}/__init__.py +7 -6
- pulumi_oci/desktops/_inputs.py +483 -0
- pulumi_oci/desktops/desktop_pool.py +1348 -0
- pulumi_oci/desktops/get_desktop.py +223 -0
- pulumi_oci/desktops/get_desktop_pool.py +418 -0
- pulumi_oci/desktops/get_desktop_pool_desktops.py +208 -0
- pulumi_oci/desktops/get_desktop_pool_volumes.py +214 -0
- pulumi_oci/desktops/get_desktop_pools.py +203 -0
- pulumi_oci/desktops/get_desktops.py +214 -0
- pulumi_oci/desktops/outputs.py +1738 -0
- pulumi_oci/disasterrecovery/_inputs.py +66 -2
- pulumi_oci/disasterrecovery/dr_protection_group.py +8 -0
- pulumi_oci/disasterrecovery/get_dr_plan_executions.py +24 -0
- pulumi_oci/disasterrecovery/outputs.py +150 -10
- pulumi_oci/filestorage/mount_target.py +143 -38
- pulumi_oci/filestorage/outputs.py +44 -0
- pulumi_oci/identity/domains_group.py +34 -0
- pulumi_oci/identity/domains_user.py +34 -0
- pulumi_oci/identity/get_domains_group.py +11 -1
- pulumi_oci/identity/get_domains_user.py +11 -1
- pulumi_oci/identity/outputs.py +14 -0
- pulumi_oci/integration/get_integration_instance.py +25 -2
- pulumi_oci/integration/integration_instance.py +88 -0
- pulumi_oci/integration/outputs.py +24 -6
- pulumi_oci/kms/_inputs.py +10 -10
- pulumi_oci/kms/get_vault.py +14 -1
- pulumi_oci/kms/outputs.py +41 -30
- pulumi_oci/kms/vault.py +28 -0
- pulumi_oci/loadbalancer/load_balancer.py +224 -0
- pulumi_oci/loadbalancer/outputs.py +22 -0
- pulumi_oci/mysql/_inputs.py +225 -2
- pulumi_oci/mysql/get_mysql_backup.py +1 -1
- pulumi_oci/mysql/get_mysql_db_system.py +27 -1
- pulumi_oci/mysql/mysql_backup.py +4 -4
- pulumi_oci/mysql/mysql_db_system.py +108 -0
- pulumi_oci/mysql/outputs.py +569 -8
- pulumi_oci/ocvp/get_cluster.py +2 -2
- pulumi_oci/ocvp/get_exsi_hosts.py +2 -2
- pulumi_oci/ocvp/get_supported_vmware_software_versions.py +22 -5
- pulumi_oci/ocvp/outputs.py +2 -2
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/recoverymod/_inputs.py +0 -8
- pulumi_oci/recoverymod/get_protected_database.py +14 -1
- pulumi_oci/recoverymod/get_protection_policy.py +14 -1
- pulumi_oci/recoverymod/outputs.py +22 -8
- pulumi_oci/recoverymod/protected_database.py +80 -3
- pulumi_oci/recoverymod/protection_policy.py +49 -0
- pulumi_oci/redis/__init__.py +1 -0
- pulumi_oci/redis/_inputs.py +40 -0
- pulumi_oci/redis/get_redis_cluster.py +47 -21
- pulumi_oci/redis/get_redis_cluster_nodes.py +156 -0
- pulumi_oci/redis/get_redis_clusters.py +8 -8
- pulumi_oci/redis/outputs.py +160 -28
- pulumi_oci/redis/redis_cluster.py +177 -79
- pulumi_oci/waf/_inputs.py +29 -16
- pulumi_oci/waf/outputs.py +33 -10
- {pulumi_oci-2.8.0a1724220787.dist-info → pulumi_oci-2.9.0.dist-info}/METADATA +1 -1
- {pulumi_oci-2.8.0a1724220787.dist-info → pulumi_oci-2.9.0.dist-info}/RECORD +127 -108
- {pulumi_oci-2.8.0a1724220787.dist-info → pulumi_oci-2.9.0.dist-info}/WHEEL +1 -1
- pulumi_oci/fleetsoftwareupdate/_inputs.py +0 -553
- pulumi_oci/fleetsoftwareupdate/fsu_collection.py +0 -514
- pulumi_oci/fleetsoftwareupdate/fsu_cycle.py +0 -812
- pulumi_oci/fleetsoftwareupdate/get_fsu_collection.py +0 -225
- pulumi_oci/fleetsoftwareupdate/get_fsu_collections.py +0 -141
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py +0 -325
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycles.py +0 -167
- pulumi_oci/fleetsoftwareupdate/outputs.py +0 -1481
- pulumi_oci/globallydistributeddatabase/__init__.py +0 -15
- pulumi_oci/globallydistributeddatabase/_inputs.py +0 -1003
- pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +0 -176
- pulumi_oci/globallydistributeddatabase/get_sharded_database.py +0 -610
- pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +0 -176
- pulumi_oci/globallydistributeddatabase/outputs.py +0 -2058
- pulumi_oci/globallydistributeddatabase/sharded_database.py +0 -1816
- {pulumi_oci-2.8.0a1724220787.dist-info → pulumi_oci-2.9.0.dist-info}/top_level.txt +0 -0
@@ -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]
|
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
|
-
|
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:
|
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
|
-
|
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:
|
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:
|
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
|
-
|
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]:
|