pulumi-oci 2.16.0a1731363948__py3-none-any.whl → 2.16.0a1731504509__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 +19 -0
- pulumi_oci/database/autonomous_database.py +47 -0
- pulumi_oci/database/cloud_autonomous_vm_cluster.py +105 -0
- pulumi_oci/database/cloud_vm_cluster.py +49 -0
- pulumi_oci/database/data_guard_association.py +49 -0
- pulumi_oci/database/db_system.py +47 -0
- pulumi_oci/database/exadb_vm_cluster.py +68 -7
- pulumi_oci/database/get_autonomous_database.py +15 -1
- pulumi_oci/database/get_cloud_autonomous_vm_cluster.py +43 -1
- pulumi_oci/database/get_cloud_vm_cluster.py +15 -1
- pulumi_oci/database/get_data_guard_association.py +12 -1
- pulumi_oci/database/get_exadb_vm_cluster.py +16 -2
- pulumi_oci/database/outputs.py +97 -2
- pulumi_oci/dataflow/get_sql_endpoint.py +1 -15
- pulumi_oci/dataflow/outputs.py +0 -11
- pulumi_oci/dataflow/sql_endpoint.py +88 -85
- pulumi_oci/globallydistributeddatabase/__init__.py +15 -0
- pulumi_oci/globallydistributeddatabase/_inputs.py +1289 -0
- pulumi_oci/globallydistributeddatabase/get_private_endpoint.py +348 -0
- pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +191 -0
- pulumi_oci/globallydistributeddatabase/get_sharded_database.py +746 -0
- pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +191 -0
- pulumi_oci/globallydistributeddatabase/outputs.py +2114 -0
- pulumi_oci/globallydistributeddatabase/private_endpoint.py +822 -0
- pulumi_oci/globallydistributeddatabase/sharded_database.py +2157 -0
- pulumi_oci/identity/__init__.py +2 -0
- pulumi_oci/identity/_inputs.py +55 -6
- pulumi_oci/identity/domains_condition.py +9 -2
- pulumi_oci/identity/domains_policy.py +9 -2
- pulumi_oci/identity/domains_rule.py +9 -2
- pulumi_oci/identity/get_domains_condition.py +2 -2
- pulumi_oci/identity/get_domains_conditions.py +2 -2
- pulumi_oci/identity/get_domains_oci_console_sign_on_policy_consent.py +503 -0
- pulumi_oci/identity/get_domains_oci_console_sign_on_policy_consents.py +338 -0
- pulumi_oci/identity/get_domains_policies.py +2 -2
- pulumi_oci/identity/get_domains_policy.py +2 -2
- pulumi_oci/identity/get_domains_rule.py +2 -2
- pulumi_oci/identity/get_domains_rules.py +2 -2
- pulumi_oci/identity/outputs.py +917 -4
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-2.16.0a1731363948.dist-info → pulumi_oci-2.16.0a1731504509.dist-info}/METADATA +1 -1
- {pulumi_oci-2.16.0a1731363948.dist-info → pulumi_oci-2.16.0a1731504509.dist-info}/RECORD +44 -33
- {pulumi_oci-2.16.0a1731363948.dist-info → pulumi_oci-2.16.0a1731504509.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.16.0a1731363948.dist-info → pulumi_oci-2.16.0a1731504509.dist-info}/top_level.txt +0 -0
@@ -35,24 +35,30 @@ class SqlEndpointArgs:
|
|
35
35
|
driver_shape_config: Optional[pulumi.Input['SqlEndpointDriverShapeConfigArgs']] = None,
|
36
36
|
executor_shape_config: Optional[pulumi.Input['SqlEndpointExecutorShapeConfigArgs']] = None,
|
37
37
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
38
|
-
spark_advanced_configurations: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None
|
38
|
+
spark_advanced_configurations: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
39
|
+
state: Optional[pulumi.Input[str]] = None):
|
39
40
|
"""
|
40
41
|
The set of arguments for constructing a SqlEndpoint resource.
|
41
42
|
:param pulumi.Input[str] compartment_id: (Updatable) The identifier of the compartment used with the SQL Endpoint.
|
42
|
-
:param pulumi.Input[str] display_name: The SQL Endpoint name, which can be changed.
|
43
|
+
:param pulumi.Input[str] display_name: (Updatable) The SQL Endpoint name, which can be changed.
|
43
44
|
:param pulumi.Input[str] driver_shape: The shape of the SQL Endpoint driver instance.
|
44
45
|
:param pulumi.Input[str] executor_shape: The shape of the SQL Endpoint worker instance.
|
45
|
-
:param pulumi.Input[int] max_executor_count: The maximum number of executors.
|
46
|
+
:param pulumi.Input[int] max_executor_count: (Updatable) The maximum number of executors.
|
46
47
|
:param pulumi.Input[str] metastore_id: Metastore OCID
|
47
|
-
:param pulumi.Input[int] min_executor_count: The minimum number of executors.
|
48
|
+
:param pulumi.Input[int] min_executor_count: (Updatable) The minimum number of executors.
|
48
49
|
:param pulumi.Input['SqlEndpointNetworkConfigurationArgs'] network_configuration: The network configuration of a SQL Endpoint.
|
49
50
|
:param pulumi.Input[str] sql_endpoint_version: The version of the SQL Endpoint.
|
50
51
|
: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"}`
|
51
|
-
:param pulumi.Input[str] description: The description of CreateSQLEndpointDetails.
|
52
|
+
:param pulumi.Input[str] description: (Updatable) The description of CreateSQLEndpointDetails.
|
52
53
|
:param pulumi.Input['SqlEndpointDriverShapeConfigArgs'] driver_shape_config: This is used to configure the shape of the driver or executor if a flexible shape is used.
|
53
54
|
:param pulumi.Input['SqlEndpointExecutorShapeConfigArgs'] executor_shape_config: This is used to configure the shape of the driver or executor if a flexible shape is used.
|
54
55
|
: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"}`
|
55
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] spark_advanced_configurations: The Spark configuration passed to the running process. See https://spark.apache.org/docs/latest/configuration.html#available-properties. Example: { "spark.app.name" : "My App Name", "spark.shuffle.io.maxRetries" : "4" } Note: Not all Spark properties are permitted to be set. Attempting to set a property that is not allowed to be overwritten will cause a 400 status to be returned.
|
56
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] spark_advanced_configurations: (Updatable) The Spark configuration passed to the running process. See https://spark.apache.org/docs/latest/configuration.html#available-properties. Example: { "spark.app.name" : "My App Name", "spark.shuffle.io.maxRetries" : "4" } Note: Not all Spark properties are permitted to be set. Attempting to set a property that is not allowed to be overwritten will cause a 400 status to be returned.
|
57
|
+
:param pulumi.Input[str] state: (Updatable) The target state for the Sql Endpoint. Could be set to `ACTIVE` or `INACTIVE`.
|
58
|
+
|
59
|
+
|
60
|
+
** IMPORTANT **
|
61
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
56
62
|
"""
|
57
63
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
58
64
|
pulumi.set(__self__, "display_name", display_name)
|
@@ -75,6 +81,8 @@ class SqlEndpointArgs:
|
|
75
81
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
76
82
|
if spark_advanced_configurations is not None:
|
77
83
|
pulumi.set(__self__, "spark_advanced_configurations", spark_advanced_configurations)
|
84
|
+
if state is not None:
|
85
|
+
pulumi.set(__self__, "state", state)
|
78
86
|
|
79
87
|
@property
|
80
88
|
@pulumi.getter(name="compartmentId")
|
@@ -92,7 +100,7 @@ class SqlEndpointArgs:
|
|
92
100
|
@pulumi.getter(name="displayName")
|
93
101
|
def display_name(self) -> pulumi.Input[str]:
|
94
102
|
"""
|
95
|
-
The SQL Endpoint name, which can be changed.
|
103
|
+
(Updatable) The SQL Endpoint name, which can be changed.
|
96
104
|
"""
|
97
105
|
return pulumi.get(self, "display_name")
|
98
106
|
|
@@ -128,7 +136,7 @@ class SqlEndpointArgs:
|
|
128
136
|
@pulumi.getter(name="maxExecutorCount")
|
129
137
|
def max_executor_count(self) -> pulumi.Input[int]:
|
130
138
|
"""
|
131
|
-
The maximum number of executors.
|
139
|
+
(Updatable) The maximum number of executors.
|
132
140
|
"""
|
133
141
|
return pulumi.get(self, "max_executor_count")
|
134
142
|
|
@@ -152,7 +160,7 @@ class SqlEndpointArgs:
|
|
152
160
|
@pulumi.getter(name="minExecutorCount")
|
153
161
|
def min_executor_count(self) -> pulumi.Input[int]:
|
154
162
|
"""
|
155
|
-
The minimum number of executors.
|
163
|
+
(Updatable) The minimum number of executors.
|
156
164
|
"""
|
157
165
|
return pulumi.get(self, "min_executor_count")
|
158
166
|
|
@@ -200,7 +208,7 @@ class SqlEndpointArgs:
|
|
200
208
|
@pulumi.getter
|
201
209
|
def description(self) -> Optional[pulumi.Input[str]]:
|
202
210
|
"""
|
203
|
-
The description of CreateSQLEndpointDetails.
|
211
|
+
(Updatable) The description of CreateSQLEndpointDetails.
|
204
212
|
"""
|
205
213
|
return pulumi.get(self, "description")
|
206
214
|
|
@@ -248,7 +256,7 @@ class SqlEndpointArgs:
|
|
248
256
|
@pulumi.getter(name="sparkAdvancedConfigurations")
|
249
257
|
def spark_advanced_configurations(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
250
258
|
"""
|
251
|
-
The Spark configuration passed to the running process. See https://spark.apache.org/docs/latest/configuration.html#available-properties. Example: { "spark.app.name" : "My App Name", "spark.shuffle.io.maxRetries" : "4" } Note: Not all Spark properties are permitted to be set. Attempting to set a property that is not allowed to be overwritten will cause a 400 status to be returned.
|
259
|
+
(Updatable) The Spark configuration passed to the running process. See https://spark.apache.org/docs/latest/configuration.html#available-properties. Example: { "spark.app.name" : "My App Name", "spark.shuffle.io.maxRetries" : "4" } Note: Not all Spark properties are permitted to be set. Attempting to set a property that is not allowed to be overwritten will cause a 400 status to be returned.
|
252
260
|
"""
|
253
261
|
return pulumi.get(self, "spark_advanced_configurations")
|
254
262
|
|
@@ -256,6 +264,22 @@ class SqlEndpointArgs:
|
|
256
264
|
def spark_advanced_configurations(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
257
265
|
pulumi.set(self, "spark_advanced_configurations", value)
|
258
266
|
|
267
|
+
@property
|
268
|
+
@pulumi.getter
|
269
|
+
def state(self) -> Optional[pulumi.Input[str]]:
|
270
|
+
"""
|
271
|
+
(Updatable) The target state for the Sql Endpoint. Could be set to `ACTIVE` or `INACTIVE`.
|
272
|
+
|
273
|
+
|
274
|
+
** IMPORTANT **
|
275
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
276
|
+
"""
|
277
|
+
return pulumi.get(self, "state")
|
278
|
+
|
279
|
+
@state.setter
|
280
|
+
def state(self, value: Optional[pulumi.Input[str]]):
|
281
|
+
pulumi.set(self, "state", value)
|
282
|
+
|
259
283
|
|
260
284
|
@pulumi.input_type
|
261
285
|
class _SqlEndpointState:
|
@@ -271,7 +295,6 @@ class _SqlEndpointState:
|
|
271
295
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
272
296
|
jdbc_endpoint_url: Optional[pulumi.Input[str]] = None,
|
273
297
|
lake_id: Optional[pulumi.Input[str]] = None,
|
274
|
-
last_accepted_request_token: Optional[pulumi.Input[str]] = None,
|
275
298
|
max_executor_count: Optional[pulumi.Input[int]] = None,
|
276
299
|
metastore_id: Optional[pulumi.Input[str]] = None,
|
277
300
|
min_executor_count: Optional[pulumi.Input[int]] = None,
|
@@ -288,8 +311,8 @@ class _SqlEndpointState:
|
|
288
311
|
Input properties used for looking up and filtering SqlEndpoint resources.
|
289
312
|
:param pulumi.Input[str] compartment_id: (Updatable) The identifier of the compartment used with the SQL Endpoint.
|
290
313
|
: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"}`
|
291
|
-
:param pulumi.Input[str] description: The description of CreateSQLEndpointDetails.
|
292
|
-
:param pulumi.Input[str] display_name: The SQL Endpoint name, which can be changed.
|
314
|
+
:param pulumi.Input[str] description: (Updatable) The description of CreateSQLEndpointDetails.
|
315
|
+
:param pulumi.Input[str] display_name: (Updatable) The SQL Endpoint name, which can be changed.
|
293
316
|
:param pulumi.Input[str] driver_shape: The shape of the SQL Endpoint driver instance.
|
294
317
|
:param pulumi.Input['SqlEndpointDriverShapeConfigArgs'] driver_shape_config: This is used to configure the shape of the driver or executor if a flexible shape is used.
|
295
318
|
:param pulumi.Input[str] executor_shape: The shape of the SQL Endpoint worker instance.
|
@@ -297,23 +320,22 @@ class _SqlEndpointState:
|
|
297
320
|
: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"}`
|
298
321
|
:param pulumi.Input[str] jdbc_endpoint_url: The JDBC URL field. For example, jdbc:spark://{serviceFQDN}:443/default;SparkServerType=DFI
|
299
322
|
:param pulumi.Input[str] lake_id: Oracle Cloud Infrastructure lake OCID
|
300
|
-
:param pulumi.Input[
|
301
|
-
:param pulumi.Input[int] max_executor_count: The maximum number of executors.
|
323
|
+
:param pulumi.Input[int] max_executor_count: (Updatable) The maximum number of executors.
|
302
324
|
:param pulumi.Input[str] metastore_id: Metastore OCID
|
303
|
-
:param pulumi.Input[int] min_executor_count: The minimum number of executors.
|
325
|
+
:param pulumi.Input[int] min_executor_count: (Updatable) The minimum number of executors.
|
304
326
|
:param pulumi.Input['SqlEndpointNetworkConfigurationArgs'] network_configuration: The network configuration of a SQL Endpoint.
|
305
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] spark_advanced_configurations: The Spark configuration passed to the running process. See https://spark.apache.org/docs/latest/configuration.html#available-properties. Example: { "spark.app.name" : "My App Name", "spark.shuffle.io.maxRetries" : "4" } Note: Not all Spark properties are permitted to be set. Attempting to set a property that is not allowed to be overwritten will cause a 400 status to be returned.
|
327
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] spark_advanced_configurations: (Updatable) The Spark configuration passed to the running process. See https://spark.apache.org/docs/latest/configuration.html#available-properties. Example: { "spark.app.name" : "My App Name", "spark.shuffle.io.maxRetries" : "4" } Note: Not all Spark properties are permitted to be set. Attempting to set a property that is not allowed to be overwritten will cause a 400 status to be returned.
|
306
328
|
:param pulumi.Input[str] sql_endpoint_version: The version of the SQL Endpoint.
|
307
|
-
:param pulumi.Input[str] state: The
|
329
|
+
:param pulumi.Input[str] state: (Updatable) The target state for the Sql Endpoint. Could be set to `ACTIVE` or `INACTIVE`.
|
330
|
+
|
331
|
+
|
332
|
+
** IMPORTANT **
|
333
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
308
334
|
:param pulumi.Input[str] state_message: A message describing the reason why the resource is in it's current state. Helps bubble up errors in state changes. For example, it can be used to provide actionable information for a resource in the Failed state.
|
309
335
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: The system tags associated with this resource, if any. The system tags are set by Oracle cloud infrastructure services. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{orcl-cloud: {free-tier-retain: true}}`
|
310
336
|
:param pulumi.Input[str] time_created: The time the Sql Endpoint was created. An RFC3339 formatted datetime string.
|
311
337
|
:param pulumi.Input[str] time_updated: The time the Sql Endpoint was updated. An RFC3339 formatted datetime string.
|
312
338
|
:param pulumi.Input[str] warehouse_bucket_uri: The warehouse bucket URI. It is a Oracle Cloud Infrastructure Object Storage bucket URI as defined here https://docs.oracle.com/en/cloud/paas/atp-cloud/atpud/object-storage-uris.html
|
313
|
-
|
314
|
-
|
315
|
-
** IMPORTANT **
|
316
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
317
339
|
"""
|
318
340
|
if compartment_id is not None:
|
319
341
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
@@ -337,8 +359,6 @@ class _SqlEndpointState:
|
|
337
359
|
pulumi.set(__self__, "jdbc_endpoint_url", jdbc_endpoint_url)
|
338
360
|
if lake_id is not None:
|
339
361
|
pulumi.set(__self__, "lake_id", lake_id)
|
340
|
-
if last_accepted_request_token is not None:
|
341
|
-
pulumi.set(__self__, "last_accepted_request_token", last_accepted_request_token)
|
342
362
|
if max_executor_count is not None:
|
343
363
|
pulumi.set(__self__, "max_executor_count", max_executor_count)
|
344
364
|
if metastore_id is not None:
|
@@ -392,7 +412,7 @@ class _SqlEndpointState:
|
|
392
412
|
@pulumi.getter
|
393
413
|
def description(self) -> Optional[pulumi.Input[str]]:
|
394
414
|
"""
|
395
|
-
The description of CreateSQLEndpointDetails.
|
415
|
+
(Updatable) The description of CreateSQLEndpointDetails.
|
396
416
|
"""
|
397
417
|
return pulumi.get(self, "description")
|
398
418
|
|
@@ -404,7 +424,7 @@ class _SqlEndpointState:
|
|
404
424
|
@pulumi.getter(name="displayName")
|
405
425
|
def display_name(self) -> Optional[pulumi.Input[str]]:
|
406
426
|
"""
|
407
|
-
The SQL Endpoint name, which can be changed.
|
427
|
+
(Updatable) The SQL Endpoint name, which can be changed.
|
408
428
|
"""
|
409
429
|
return pulumi.get(self, "display_name")
|
410
430
|
|
@@ -496,23 +516,11 @@ class _SqlEndpointState:
|
|
496
516
|
def lake_id(self, value: Optional[pulumi.Input[str]]):
|
497
517
|
pulumi.set(self, "lake_id", value)
|
498
518
|
|
499
|
-
@property
|
500
|
-
@pulumi.getter(name="lastAcceptedRequestToken")
|
501
|
-
def last_accepted_request_token(self) -> Optional[pulumi.Input[str]]:
|
502
|
-
"""
|
503
|
-
This token is used by Splat, and indicates that the service accepts the request, and that the request is currently being processed.
|
504
|
-
"""
|
505
|
-
return pulumi.get(self, "last_accepted_request_token")
|
506
|
-
|
507
|
-
@last_accepted_request_token.setter
|
508
|
-
def last_accepted_request_token(self, value: Optional[pulumi.Input[str]]):
|
509
|
-
pulumi.set(self, "last_accepted_request_token", value)
|
510
|
-
|
511
519
|
@property
|
512
520
|
@pulumi.getter(name="maxExecutorCount")
|
513
521
|
def max_executor_count(self) -> Optional[pulumi.Input[int]]:
|
514
522
|
"""
|
515
|
-
The maximum number of executors.
|
523
|
+
(Updatable) The maximum number of executors.
|
516
524
|
"""
|
517
525
|
return pulumi.get(self, "max_executor_count")
|
518
526
|
|
@@ -536,7 +544,7 @@ class _SqlEndpointState:
|
|
536
544
|
@pulumi.getter(name="minExecutorCount")
|
537
545
|
def min_executor_count(self) -> Optional[pulumi.Input[int]]:
|
538
546
|
"""
|
539
|
-
The minimum number of executors.
|
547
|
+
(Updatable) The minimum number of executors.
|
540
548
|
"""
|
541
549
|
return pulumi.get(self, "min_executor_count")
|
542
550
|
|
@@ -560,7 +568,7 @@ class _SqlEndpointState:
|
|
560
568
|
@pulumi.getter(name="sparkAdvancedConfigurations")
|
561
569
|
def spark_advanced_configurations(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
562
570
|
"""
|
563
|
-
The Spark configuration passed to the running process. See https://spark.apache.org/docs/latest/configuration.html#available-properties. Example: { "spark.app.name" : "My App Name", "spark.shuffle.io.maxRetries" : "4" } Note: Not all Spark properties are permitted to be set. Attempting to set a property that is not allowed to be overwritten will cause a 400 status to be returned.
|
571
|
+
(Updatable) The Spark configuration passed to the running process. See https://spark.apache.org/docs/latest/configuration.html#available-properties. Example: { "spark.app.name" : "My App Name", "spark.shuffle.io.maxRetries" : "4" } Note: Not all Spark properties are permitted to be set. Attempting to set a property that is not allowed to be overwritten will cause a 400 status to be returned.
|
564
572
|
"""
|
565
573
|
return pulumi.get(self, "spark_advanced_configurations")
|
566
574
|
|
@@ -584,7 +592,11 @@ class _SqlEndpointState:
|
|
584
592
|
@pulumi.getter
|
585
593
|
def state(self) -> Optional[pulumi.Input[str]]:
|
586
594
|
"""
|
587
|
-
The
|
595
|
+
(Updatable) The target state for the Sql Endpoint. Could be set to `ACTIVE` or `INACTIVE`.
|
596
|
+
|
597
|
+
|
598
|
+
** IMPORTANT **
|
599
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
588
600
|
"""
|
589
601
|
return pulumi.get(self, "state")
|
590
602
|
|
@@ -645,10 +657,6 @@ class _SqlEndpointState:
|
|
645
657
|
def warehouse_bucket_uri(self) -> Optional[pulumi.Input[str]]:
|
646
658
|
"""
|
647
659
|
The warehouse bucket URI. It is a Oracle Cloud Infrastructure Object Storage bucket URI as defined here https://docs.oracle.com/en/cloud/paas/atp-cloud/atpud/object-storage-uris.html
|
648
|
-
|
649
|
-
|
650
|
-
** IMPORTANT **
|
651
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
652
660
|
"""
|
653
661
|
return pulumi.get(self, "warehouse_bucket_uri")
|
654
662
|
|
@@ -677,6 +685,7 @@ class SqlEndpoint(pulumi.CustomResource):
|
|
677
685
|
network_configuration: Optional[pulumi.Input[Union['SqlEndpointNetworkConfigurationArgs', 'SqlEndpointNetworkConfigurationArgsDict']]] = None,
|
678
686
|
spark_advanced_configurations: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
679
687
|
sql_endpoint_version: Optional[pulumi.Input[str]] = None,
|
688
|
+
state: Optional[pulumi.Input[str]] = None,
|
680
689
|
__props__=None):
|
681
690
|
"""
|
682
691
|
This resource provides the Sql Endpoint resource in Oracle Cloud Infrastructure Data Flow service.
|
@@ -698,19 +707,24 @@ class SqlEndpoint(pulumi.CustomResource):
|
|
698
707
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
699
708
|
:param pulumi.Input[str] compartment_id: (Updatable) The identifier of the compartment used with the SQL Endpoint.
|
700
709
|
: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"}`
|
701
|
-
:param pulumi.Input[str] description: The description of CreateSQLEndpointDetails.
|
702
|
-
:param pulumi.Input[str] display_name: The SQL Endpoint name, which can be changed.
|
710
|
+
:param pulumi.Input[str] description: (Updatable) The description of CreateSQLEndpointDetails.
|
711
|
+
:param pulumi.Input[str] display_name: (Updatable) The SQL Endpoint name, which can be changed.
|
703
712
|
:param pulumi.Input[str] driver_shape: The shape of the SQL Endpoint driver instance.
|
704
713
|
:param pulumi.Input[Union['SqlEndpointDriverShapeConfigArgs', 'SqlEndpointDriverShapeConfigArgsDict']] driver_shape_config: This is used to configure the shape of the driver or executor if a flexible shape is used.
|
705
714
|
:param pulumi.Input[str] executor_shape: The shape of the SQL Endpoint worker instance.
|
706
715
|
:param pulumi.Input[Union['SqlEndpointExecutorShapeConfigArgs', 'SqlEndpointExecutorShapeConfigArgsDict']] executor_shape_config: This is used to configure the shape of the driver or executor if a flexible shape is used.
|
707
716
|
: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"}`
|
708
|
-
:param pulumi.Input[int] max_executor_count: The maximum number of executors.
|
717
|
+
:param pulumi.Input[int] max_executor_count: (Updatable) The maximum number of executors.
|
709
718
|
:param pulumi.Input[str] metastore_id: Metastore OCID
|
710
|
-
:param pulumi.Input[int] min_executor_count: The minimum number of executors.
|
719
|
+
:param pulumi.Input[int] min_executor_count: (Updatable) The minimum number of executors.
|
711
720
|
:param pulumi.Input[Union['SqlEndpointNetworkConfigurationArgs', 'SqlEndpointNetworkConfigurationArgsDict']] network_configuration: The network configuration of a SQL Endpoint.
|
712
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] spark_advanced_configurations: The Spark configuration passed to the running process. See https://spark.apache.org/docs/latest/configuration.html#available-properties. Example: { "spark.app.name" : "My App Name", "spark.shuffle.io.maxRetries" : "4" } Note: Not all Spark properties are permitted to be set. Attempting to set a property that is not allowed to be overwritten will cause a 400 status to be returned.
|
721
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] spark_advanced_configurations: (Updatable) The Spark configuration passed to the running process. See https://spark.apache.org/docs/latest/configuration.html#available-properties. Example: { "spark.app.name" : "My App Name", "spark.shuffle.io.maxRetries" : "4" } Note: Not all Spark properties are permitted to be set. Attempting to set a property that is not allowed to be overwritten will cause a 400 status to be returned.
|
713
722
|
:param pulumi.Input[str] sql_endpoint_version: The version of the SQL Endpoint.
|
723
|
+
:param pulumi.Input[str] state: (Updatable) The target state for the Sql Endpoint. Could be set to `ACTIVE` or `INACTIVE`.
|
724
|
+
|
725
|
+
|
726
|
+
** IMPORTANT **
|
727
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
714
728
|
"""
|
715
729
|
...
|
716
730
|
@overload
|
@@ -764,6 +778,7 @@ class SqlEndpoint(pulumi.CustomResource):
|
|
764
778
|
network_configuration: Optional[pulumi.Input[Union['SqlEndpointNetworkConfigurationArgs', 'SqlEndpointNetworkConfigurationArgsDict']]] = None,
|
765
779
|
spark_advanced_configurations: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
766
780
|
sql_endpoint_version: Optional[pulumi.Input[str]] = None,
|
781
|
+
state: Optional[pulumi.Input[str]] = None,
|
767
782
|
__props__=None):
|
768
783
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
769
784
|
if not isinstance(opts, pulumi.ResourceOptions):
|
@@ -806,10 +821,9 @@ class SqlEndpoint(pulumi.CustomResource):
|
|
806
821
|
if sql_endpoint_version is None and not opts.urn:
|
807
822
|
raise TypeError("Missing required property 'sql_endpoint_version'")
|
808
823
|
__props__.__dict__["sql_endpoint_version"] = sql_endpoint_version
|
824
|
+
__props__.__dict__["state"] = state
|
809
825
|
__props__.__dict__["jdbc_endpoint_url"] = None
|
810
826
|
__props__.__dict__["lake_id"] = None
|
811
|
-
__props__.__dict__["last_accepted_request_token"] = None
|
812
|
-
__props__.__dict__["state"] = None
|
813
827
|
__props__.__dict__["state_message"] = None
|
814
828
|
__props__.__dict__["system_tags"] = None
|
815
829
|
__props__.__dict__["time_created"] = None
|
@@ -836,7 +850,6 @@ class SqlEndpoint(pulumi.CustomResource):
|
|
836
850
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
837
851
|
jdbc_endpoint_url: Optional[pulumi.Input[str]] = None,
|
838
852
|
lake_id: Optional[pulumi.Input[str]] = None,
|
839
|
-
last_accepted_request_token: Optional[pulumi.Input[str]] = None,
|
840
853
|
max_executor_count: Optional[pulumi.Input[int]] = None,
|
841
854
|
metastore_id: Optional[pulumi.Input[str]] = None,
|
842
855
|
min_executor_count: Optional[pulumi.Input[int]] = None,
|
@@ -858,8 +871,8 @@ class SqlEndpoint(pulumi.CustomResource):
|
|
858
871
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
859
872
|
:param pulumi.Input[str] compartment_id: (Updatable) The identifier of the compartment used with the SQL Endpoint.
|
860
873
|
: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"}`
|
861
|
-
:param pulumi.Input[str] description: The description of CreateSQLEndpointDetails.
|
862
|
-
:param pulumi.Input[str] display_name: The SQL Endpoint name, which can be changed.
|
874
|
+
:param pulumi.Input[str] description: (Updatable) The description of CreateSQLEndpointDetails.
|
875
|
+
:param pulumi.Input[str] display_name: (Updatable) The SQL Endpoint name, which can be changed.
|
863
876
|
:param pulumi.Input[str] driver_shape: The shape of the SQL Endpoint driver instance.
|
864
877
|
:param pulumi.Input[Union['SqlEndpointDriverShapeConfigArgs', 'SqlEndpointDriverShapeConfigArgsDict']] driver_shape_config: This is used to configure the shape of the driver or executor if a flexible shape is used.
|
865
878
|
:param pulumi.Input[str] executor_shape: The shape of the SQL Endpoint worker instance.
|
@@ -867,23 +880,22 @@ class SqlEndpoint(pulumi.CustomResource):
|
|
867
880
|
: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"}`
|
868
881
|
:param pulumi.Input[str] jdbc_endpoint_url: The JDBC URL field. For example, jdbc:spark://{serviceFQDN}:443/default;SparkServerType=DFI
|
869
882
|
:param pulumi.Input[str] lake_id: Oracle Cloud Infrastructure lake OCID
|
870
|
-
:param pulumi.Input[
|
871
|
-
:param pulumi.Input[int] max_executor_count: The maximum number of executors.
|
883
|
+
:param pulumi.Input[int] max_executor_count: (Updatable) The maximum number of executors.
|
872
884
|
:param pulumi.Input[str] metastore_id: Metastore OCID
|
873
|
-
:param pulumi.Input[int] min_executor_count: The minimum number of executors.
|
885
|
+
:param pulumi.Input[int] min_executor_count: (Updatable) The minimum number of executors.
|
874
886
|
:param pulumi.Input[Union['SqlEndpointNetworkConfigurationArgs', 'SqlEndpointNetworkConfigurationArgsDict']] network_configuration: The network configuration of a SQL Endpoint.
|
875
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] spark_advanced_configurations: The Spark configuration passed to the running process. See https://spark.apache.org/docs/latest/configuration.html#available-properties. Example: { "spark.app.name" : "My App Name", "spark.shuffle.io.maxRetries" : "4" } Note: Not all Spark properties are permitted to be set. Attempting to set a property that is not allowed to be overwritten will cause a 400 status to be returned.
|
887
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] spark_advanced_configurations: (Updatable) The Spark configuration passed to the running process. See https://spark.apache.org/docs/latest/configuration.html#available-properties. Example: { "spark.app.name" : "My App Name", "spark.shuffle.io.maxRetries" : "4" } Note: Not all Spark properties are permitted to be set. Attempting to set a property that is not allowed to be overwritten will cause a 400 status to be returned.
|
876
888
|
:param pulumi.Input[str] sql_endpoint_version: The version of the SQL Endpoint.
|
877
|
-
:param pulumi.Input[str] state: The
|
889
|
+
:param pulumi.Input[str] state: (Updatable) The target state for the Sql Endpoint. Could be set to `ACTIVE` or `INACTIVE`.
|
890
|
+
|
891
|
+
|
892
|
+
** IMPORTANT **
|
893
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
878
894
|
:param pulumi.Input[str] state_message: A message describing the reason why the resource is in it's current state. Helps bubble up errors in state changes. For example, it can be used to provide actionable information for a resource in the Failed state.
|
879
895
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: The system tags associated with this resource, if any. The system tags are set by Oracle cloud infrastructure services. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{orcl-cloud: {free-tier-retain: true}}`
|
880
896
|
:param pulumi.Input[str] time_created: The time the Sql Endpoint was created. An RFC3339 formatted datetime string.
|
881
897
|
:param pulumi.Input[str] time_updated: The time the Sql Endpoint was updated. An RFC3339 formatted datetime string.
|
882
898
|
:param pulumi.Input[str] warehouse_bucket_uri: The warehouse bucket URI. It is a Oracle Cloud Infrastructure Object Storage bucket URI as defined here https://docs.oracle.com/en/cloud/paas/atp-cloud/atpud/object-storage-uris.html
|
883
|
-
|
884
|
-
|
885
|
-
** IMPORTANT **
|
886
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
887
899
|
"""
|
888
900
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
889
901
|
|
@@ -900,7 +912,6 @@ class SqlEndpoint(pulumi.CustomResource):
|
|
900
912
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
901
913
|
__props__.__dict__["jdbc_endpoint_url"] = jdbc_endpoint_url
|
902
914
|
__props__.__dict__["lake_id"] = lake_id
|
903
|
-
__props__.__dict__["last_accepted_request_token"] = last_accepted_request_token
|
904
915
|
__props__.__dict__["max_executor_count"] = max_executor_count
|
905
916
|
__props__.__dict__["metastore_id"] = metastore_id
|
906
917
|
__props__.__dict__["min_executor_count"] = min_executor_count
|
@@ -935,7 +946,7 @@ class SqlEndpoint(pulumi.CustomResource):
|
|
935
946
|
@pulumi.getter
|
936
947
|
def description(self) -> pulumi.Output[str]:
|
937
948
|
"""
|
938
|
-
The description of CreateSQLEndpointDetails.
|
949
|
+
(Updatable) The description of CreateSQLEndpointDetails.
|
939
950
|
"""
|
940
951
|
return pulumi.get(self, "description")
|
941
952
|
|
@@ -943,7 +954,7 @@ class SqlEndpoint(pulumi.CustomResource):
|
|
943
954
|
@pulumi.getter(name="displayName")
|
944
955
|
def display_name(self) -> pulumi.Output[str]:
|
945
956
|
"""
|
946
|
-
The SQL Endpoint name, which can be changed.
|
957
|
+
(Updatable) The SQL Endpoint name, which can be changed.
|
947
958
|
"""
|
948
959
|
return pulumi.get(self, "display_name")
|
949
960
|
|
@@ -1003,19 +1014,11 @@ class SqlEndpoint(pulumi.CustomResource):
|
|
1003
1014
|
"""
|
1004
1015
|
return pulumi.get(self, "lake_id")
|
1005
1016
|
|
1006
|
-
@property
|
1007
|
-
@pulumi.getter(name="lastAcceptedRequestToken")
|
1008
|
-
def last_accepted_request_token(self) -> pulumi.Output[str]:
|
1009
|
-
"""
|
1010
|
-
This token is used by Splat, and indicates that the service accepts the request, and that the request is currently being processed.
|
1011
|
-
"""
|
1012
|
-
return pulumi.get(self, "last_accepted_request_token")
|
1013
|
-
|
1014
1017
|
@property
|
1015
1018
|
@pulumi.getter(name="maxExecutorCount")
|
1016
1019
|
def max_executor_count(self) -> pulumi.Output[int]:
|
1017
1020
|
"""
|
1018
|
-
The maximum number of executors.
|
1021
|
+
(Updatable) The maximum number of executors.
|
1019
1022
|
"""
|
1020
1023
|
return pulumi.get(self, "max_executor_count")
|
1021
1024
|
|
@@ -1031,7 +1034,7 @@ class SqlEndpoint(pulumi.CustomResource):
|
|
1031
1034
|
@pulumi.getter(name="minExecutorCount")
|
1032
1035
|
def min_executor_count(self) -> pulumi.Output[int]:
|
1033
1036
|
"""
|
1034
|
-
The minimum number of executors.
|
1037
|
+
(Updatable) The minimum number of executors.
|
1035
1038
|
"""
|
1036
1039
|
return pulumi.get(self, "min_executor_count")
|
1037
1040
|
|
@@ -1047,7 +1050,7 @@ class SqlEndpoint(pulumi.CustomResource):
|
|
1047
1050
|
@pulumi.getter(name="sparkAdvancedConfigurations")
|
1048
1051
|
def spark_advanced_configurations(self) -> pulumi.Output[Mapping[str, str]]:
|
1049
1052
|
"""
|
1050
|
-
The Spark configuration passed to the running process. See https://spark.apache.org/docs/latest/configuration.html#available-properties. Example: { "spark.app.name" : "My App Name", "spark.shuffle.io.maxRetries" : "4" } Note: Not all Spark properties are permitted to be set. Attempting to set a property that is not allowed to be overwritten will cause a 400 status to be returned.
|
1053
|
+
(Updatable) The Spark configuration passed to the running process. See https://spark.apache.org/docs/latest/configuration.html#available-properties. Example: { "spark.app.name" : "My App Name", "spark.shuffle.io.maxRetries" : "4" } Note: Not all Spark properties are permitted to be set. Attempting to set a property that is not allowed to be overwritten will cause a 400 status to be returned.
|
1051
1054
|
"""
|
1052
1055
|
return pulumi.get(self, "spark_advanced_configurations")
|
1053
1056
|
|
@@ -1063,7 +1066,11 @@ class SqlEndpoint(pulumi.CustomResource):
|
|
1063
1066
|
@pulumi.getter
|
1064
1067
|
def state(self) -> pulumi.Output[str]:
|
1065
1068
|
"""
|
1066
|
-
The
|
1069
|
+
(Updatable) The target state for the Sql Endpoint. Could be set to `ACTIVE` or `INACTIVE`.
|
1070
|
+
|
1071
|
+
|
1072
|
+
** IMPORTANT **
|
1073
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
1067
1074
|
"""
|
1068
1075
|
return pulumi.get(self, "state")
|
1069
1076
|
|
@@ -1104,10 +1111,6 @@ class SqlEndpoint(pulumi.CustomResource):
|
|
1104
1111
|
def warehouse_bucket_uri(self) -> pulumi.Output[str]:
|
1105
1112
|
"""
|
1106
1113
|
The warehouse bucket URI. It is a Oracle Cloud Infrastructure Object Storage bucket URI as defined here https://docs.oracle.com/en/cloud/paas/atp-cloud/atpud/object-storage-uris.html
|
1107
|
-
|
1108
|
-
|
1109
|
-
** IMPORTANT **
|
1110
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
1111
1114
|
"""
|
1112
1115
|
return pulumi.get(self, "warehouse_bucket_uri")
|
1113
1116
|
|
@@ -0,0 +1,15 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
from .. import _utilities
|
6
|
+
import typing
|
7
|
+
# Export this package's modules as members:
|
8
|
+
from .get_private_endpoint import *
|
9
|
+
from .get_private_endpoints import *
|
10
|
+
from .get_sharded_database import *
|
11
|
+
from .get_sharded_databases import *
|
12
|
+
from .private_endpoint import *
|
13
|
+
from .sharded_database import *
|
14
|
+
from ._inputs import *
|
15
|
+
from . import outputs
|