pulumi-oci 2.20.0__py3-none-any.whl → 2.20.0a1734157400__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 +0 -16
- pulumi_oci/bigdataservice/__init__.py +0 -4
- pulumi_oci/bigdataservice/_inputs.py +6 -672
- pulumi_oci/bigdataservice/bds_instance.py +7 -169
- pulumi_oci/bigdataservice/bds_instance_api_key.py +3 -66
- pulumi_oci/bigdataservice/bds_instance_patch_action.py +0 -4
- pulumi_oci/bigdataservice/get_bds_instance.py +1 -48
- pulumi_oci/bigdataservice/get_bds_instance_api_key.py +1 -17
- pulumi_oci/bigdataservice/get_bds_instance_api_keys.py +0 -3
- pulumi_oci/bigdataservice/outputs.py +98 -1466
- pulumi_oci/blockchain/get_blockchain_platform.py +1 -1
- pulumi_oci/blockchain/outputs.py +2 -2
- pulumi_oci/core/outputs.py +0 -4
- pulumi_oci/database/autonomous_database.py +0 -47
- pulumi_oci/database/exadb_vm_cluster.py +0 -104
- pulumi_oci/database/get_autonomous_database.py +1 -15
- pulumi_oci/database/outputs.py +0 -22
- pulumi_oci/datascience/_inputs.py +12 -32
- pulumi_oci/datascience/get_job_run.py +3 -3
- pulumi_oci/datascience/get_job_runs.py +2 -2
- pulumi_oci/datascience/job_run.py +7 -7
- pulumi_oci/datascience/model_deployment.py +0 -2
- pulumi_oci/datascience/outputs.py +26 -62
- pulumi_oci/generativeai/dedicated_ai_cluster.py +0 -21
- pulumi_oci/goldengate/__init__.py +0 -7
- pulumi_oci/goldengate/_inputs.py +0 -665
- pulumi_oci/goldengate/connection.py +7 -7
- pulumi_oci/goldengate/get_trail_files.py +2 -4
- pulumi_oci/goldengate/get_trail_sequences.py +2 -4
- pulumi_oci/goldengate/outputs.py +0 -1500
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/stackmonitoring/_inputs.py +14 -94
- pulumi_oci/stackmonitoring/get_metric_extensions.py +3 -22
- pulumi_oci/stackmonitoring/metric_extension.py +0 -8
- pulumi_oci/stackmonitoring/outputs.py +24 -166
- {pulumi_oci-2.20.0.dist-info → pulumi_oci-2.20.0a1734157400.dist-info}/METADATA +3 -3
- {pulumi_oci-2.20.0.dist-info → pulumi_oci-2.20.0a1734157400.dist-info}/RECORD +39 -50
- pulumi_oci/bigdataservice/bds_instance_identity_configuration.py +0 -859
- pulumi_oci/bigdataservice/get_bds_cluster_versions.py +0 -123
- pulumi_oci/bigdataservice/get_bds_instance_identity_configuration.py +0 -322
- pulumi_oci/bigdataservice/get_bds_instance_identity_configurations.py +0 -207
- pulumi_oci/goldengate/get_pipeline.py +0 -408
- pulumi_oci/goldengate/get_pipeline_running_processes.py +0 -144
- pulumi_oci/goldengate/get_pipeline_schema_tables.py +0 -207
- pulumi_oci/goldengate/get_pipeline_schemas.py +0 -163
- pulumi_oci/goldengate/get_pipelines.py +0 -213
- pulumi_oci/goldengate/get_recipes.py +0 -188
- pulumi_oci/goldengate/pipeline.py +0 -928
- {pulumi_oci-2.20.0.dist-info → pulumi_oci-2.20.0a1734157400.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.20.0.dist-info → pulumi_oci-2.20.0a1734157400.dist-info}/top_level.txt +0 -0
@@ -23,14 +23,11 @@ class BdsInstanceApiKeyArgs:
|
|
23
23
|
key_alias: pulumi.Input[str],
|
24
24
|
passphrase: pulumi.Input[str],
|
25
25
|
user_id: pulumi.Input[str],
|
26
|
-
default_region: Optional[pulumi.Input[str]] = None
|
27
|
-
domain_ocid: Optional[pulumi.Input[str]] = None):
|
26
|
+
default_region: Optional[pulumi.Input[str]] = None):
|
28
27
|
"""
|
29
28
|
The set of arguments for constructing a BdsInstanceApiKey resource.
|
30
29
|
:param pulumi.Input[str] bds_instance_id: The OCID of the cluster.
|
31
|
-
<<<<<<< ours
|
32
30
|
:param pulumi.Input[str] key_alias: User friendly identifier used to uniquely differentiate between different API keys associated with this Big Data Service cluster. Only ASCII alphanumeric characters with no spaces allowed.
|
33
|
-
>>>>>>> theirs
|
34
31
|
:param pulumi.Input[str] passphrase: Base64 passphrase used to secure the private key which will be created on user behalf.
|
35
32
|
:param pulumi.Input[str] user_id: The OCID of the user for whom this new generated API key pair will be created.
|
36
33
|
|
@@ -38,7 +35,6 @@ class BdsInstanceApiKeyArgs:
|
|
38
35
|
** IMPORTANT **
|
39
36
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
40
37
|
:param pulumi.Input[str] default_region: The name of the region to establish the Object Storage endpoint. See https://docs.oracle.com/en-us/iaas/api/#/en/identity/20160918/Region/ for additional information.
|
41
|
-
:param pulumi.Input[str] domain_ocid: Identity domain OCID , where user is present. For default domain , this field will be optional.
|
42
38
|
"""
|
43
39
|
pulumi.set(__self__, "bds_instance_id", bds_instance_id)
|
44
40
|
pulumi.set(__self__, "key_alias", key_alias)
|
@@ -46,15 +42,12 @@ class BdsInstanceApiKeyArgs:
|
|
46
42
|
pulumi.set(__self__, "user_id", user_id)
|
47
43
|
if default_region is not None:
|
48
44
|
pulumi.set(__self__, "default_region", default_region)
|
49
|
-
if domain_ocid is not None:
|
50
|
-
pulumi.set(__self__, "domain_ocid", domain_ocid)
|
51
45
|
|
52
46
|
@property
|
53
47
|
@pulumi.getter(name="bdsInstanceId")
|
54
48
|
def bds_instance_id(self) -> pulumi.Input[str]:
|
55
49
|
"""
|
56
50
|
The OCID of the cluster.
|
57
|
-
<<<<<<< ours
|
58
51
|
"""
|
59
52
|
return pulumi.get(self, "bds_instance_id")
|
60
53
|
|
@@ -67,7 +60,6 @@ class BdsInstanceApiKeyArgs:
|
|
67
60
|
def key_alias(self) -> pulumi.Input[str]:
|
68
61
|
"""
|
69
62
|
User friendly identifier used to uniquely differentiate between different API keys associated with this Big Data Service cluster. Only ASCII alphanumeric characters with no spaces allowed.
|
70
|
-
>>>>>>> theirs
|
71
63
|
"""
|
72
64
|
return pulumi.get(self, "key_alias")
|
73
65
|
|
@@ -115,25 +107,12 @@ class BdsInstanceApiKeyArgs:
|
|
115
107
|
def default_region(self, value: Optional[pulumi.Input[str]]):
|
116
108
|
pulumi.set(self, "default_region", value)
|
117
109
|
|
118
|
-
@property
|
119
|
-
@pulumi.getter(name="domainOcid")
|
120
|
-
def domain_ocid(self) -> Optional[pulumi.Input[str]]:
|
121
|
-
"""
|
122
|
-
Identity domain OCID , where user is present. For default domain , this field will be optional.
|
123
|
-
"""
|
124
|
-
return pulumi.get(self, "domain_ocid")
|
125
|
-
|
126
|
-
@domain_ocid.setter
|
127
|
-
def domain_ocid(self, value: Optional[pulumi.Input[str]]):
|
128
|
-
pulumi.set(self, "domain_ocid", value)
|
129
|
-
|
130
110
|
|
131
111
|
@pulumi.input_type
|
132
112
|
class _BdsInstanceApiKeyState:
|
133
113
|
def __init__(__self__, *,
|
134
114
|
bds_instance_id: Optional[pulumi.Input[str]] = None,
|
135
115
|
default_region: Optional[pulumi.Input[str]] = None,
|
136
|
-
domain_ocid: Optional[pulumi.Input[str]] = None,
|
137
116
|
fingerprint: Optional[pulumi.Input[str]] = None,
|
138
117
|
key_alias: Optional[pulumi.Input[str]] = None,
|
139
118
|
passphrase: Optional[pulumi.Input[str]] = None,
|
@@ -145,12 +124,9 @@ class _BdsInstanceApiKeyState:
|
|
145
124
|
"""
|
146
125
|
Input properties used for looking up and filtering BdsInstanceApiKey resources.
|
147
126
|
:param pulumi.Input[str] bds_instance_id: The OCID of the cluster.
|
148
|
-
<<<<<<< ours
|
149
127
|
:param pulumi.Input[str] default_region: The name of the region to establish the Object Storage endpoint. See https://docs.oracle.com/en-us/iaas/api/#/en/identity/20160918/Region/ for additional information.
|
150
|
-
:param pulumi.Input[str] domain_ocid: Identity domain OCID , where user is present. For default domain , this field will be optional.
|
151
128
|
:param pulumi.Input[str] fingerprint: The fingerprint that corresponds to the public API key requested.
|
152
129
|
:param pulumi.Input[str] key_alias: User friendly identifier used to uniquely differentiate between different API keys associated with this Big Data Service cluster. Only ASCII alphanumeric characters with no spaces allowed.
|
153
|
-
>>>>>>> theirs
|
154
130
|
:param pulumi.Input[str] passphrase: Base64 passphrase used to secure the private key which will be created on user behalf.
|
155
131
|
:param pulumi.Input[str] pemfilepath: The full path and file name of the private key used for authentication. This location will be automatically selected on the BDS local file system.
|
156
132
|
:param pulumi.Input[str] state: The current status of the API key.
|
@@ -166,8 +142,6 @@ class _BdsInstanceApiKeyState:
|
|
166
142
|
pulumi.set(__self__, "bds_instance_id", bds_instance_id)
|
167
143
|
if default_region is not None:
|
168
144
|
pulumi.set(__self__, "default_region", default_region)
|
169
|
-
if domain_ocid is not None:
|
170
|
-
pulumi.set(__self__, "domain_ocid", domain_ocid)
|
171
145
|
if fingerprint is not None:
|
172
146
|
pulumi.set(__self__, "fingerprint", fingerprint)
|
173
147
|
if key_alias is not None:
|
@@ -190,7 +164,6 @@ class _BdsInstanceApiKeyState:
|
|
190
164
|
def bds_instance_id(self) -> Optional[pulumi.Input[str]]:
|
191
165
|
"""
|
192
166
|
The OCID of the cluster.
|
193
|
-
<<<<<<< ours
|
194
167
|
"""
|
195
168
|
return pulumi.get(self, "bds_instance_id")
|
196
169
|
|
@@ -210,18 +183,6 @@ class _BdsInstanceApiKeyState:
|
|
210
183
|
def default_region(self, value: Optional[pulumi.Input[str]]):
|
211
184
|
pulumi.set(self, "default_region", value)
|
212
185
|
|
213
|
-
@property
|
214
|
-
@pulumi.getter(name="domainOcid")
|
215
|
-
def domain_ocid(self) -> Optional[pulumi.Input[str]]:
|
216
|
-
"""
|
217
|
-
Identity domain OCID , where user is present. For default domain , this field will be optional.
|
218
|
-
"""
|
219
|
-
return pulumi.get(self, "domain_ocid")
|
220
|
-
|
221
|
-
@domain_ocid.setter
|
222
|
-
def domain_ocid(self, value: Optional[pulumi.Input[str]]):
|
223
|
-
pulumi.set(self, "domain_ocid", value)
|
224
|
-
|
225
186
|
@property
|
226
187
|
@pulumi.getter
|
227
188
|
def fingerprint(self) -> Optional[pulumi.Input[str]]:
|
@@ -239,7 +200,6 @@ class _BdsInstanceApiKeyState:
|
|
239
200
|
def key_alias(self) -> Optional[pulumi.Input[str]]:
|
240
201
|
"""
|
241
202
|
User friendly identifier used to uniquely differentiate between different API keys associated with this Big Data Service cluster. Only ASCII alphanumeric characters with no spaces allowed.
|
242
|
-
>>>>>>> theirs
|
243
203
|
"""
|
244
204
|
return pulumi.get(self, "key_alias")
|
245
205
|
|
@@ -331,7 +291,6 @@ class BdsInstanceApiKey(pulumi.CustomResource):
|
|
331
291
|
opts: Optional[pulumi.ResourceOptions] = None,
|
332
292
|
bds_instance_id: Optional[pulumi.Input[str]] = None,
|
333
293
|
default_region: Optional[pulumi.Input[str]] = None,
|
334
|
-
domain_ocid: Optional[pulumi.Input[str]] = None,
|
335
294
|
key_alias: Optional[pulumi.Input[str]] = None,
|
336
295
|
passphrase: Optional[pulumi.Input[str]] = None,
|
337
296
|
user_id: Optional[pulumi.Input[str]] = None,
|
@@ -352,8 +311,7 @@ class BdsInstanceApiKey(pulumi.CustomResource):
|
|
352
311
|
key_alias=bds_instance_api_key_key_alias,
|
353
312
|
passphrase=bds_instance_api_key_passphrase,
|
354
313
|
user_id=test_user["id"],
|
355
|
-
default_region=bds_instance_api_key_default_region
|
356
|
-
domain_ocid=bds_instance_api_key_domain_ocid)
|
314
|
+
default_region=bds_instance_api_key_default_region)
|
357
315
|
```
|
358
316
|
|
359
317
|
## Import
|
@@ -367,11 +325,8 @@ class BdsInstanceApiKey(pulumi.CustomResource):
|
|
367
325
|
:param str resource_name: The name of the resource.
|
368
326
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
369
327
|
:param pulumi.Input[str] bds_instance_id: The OCID of the cluster.
|
370
|
-
<<<<<<< ours
|
371
328
|
:param pulumi.Input[str] default_region: The name of the region to establish the Object Storage endpoint. See https://docs.oracle.com/en-us/iaas/api/#/en/identity/20160918/Region/ for additional information.
|
372
|
-
:param pulumi.Input[str] domain_ocid: Identity domain OCID , where user is present. For default domain , this field will be optional.
|
373
329
|
:param pulumi.Input[str] key_alias: User friendly identifier used to uniquely differentiate between different API keys associated with this Big Data Service cluster. Only ASCII alphanumeric characters with no spaces allowed.
|
374
|
-
>>>>>>> theirs
|
375
330
|
:param pulumi.Input[str] passphrase: Base64 passphrase used to secure the private key which will be created on user behalf.
|
376
331
|
:param pulumi.Input[str] user_id: The OCID of the user for whom this new generated API key pair will be created.
|
377
332
|
|
@@ -401,8 +356,7 @@ class BdsInstanceApiKey(pulumi.CustomResource):
|
|
401
356
|
key_alias=bds_instance_api_key_key_alias,
|
402
357
|
passphrase=bds_instance_api_key_passphrase,
|
403
358
|
user_id=test_user["id"],
|
404
|
-
default_region=bds_instance_api_key_default_region
|
405
|
-
domain_ocid=bds_instance_api_key_domain_ocid)
|
359
|
+
default_region=bds_instance_api_key_default_region)
|
406
360
|
```
|
407
361
|
|
408
362
|
## Import
|
@@ -430,7 +384,6 @@ class BdsInstanceApiKey(pulumi.CustomResource):
|
|
430
384
|
opts: Optional[pulumi.ResourceOptions] = None,
|
431
385
|
bds_instance_id: Optional[pulumi.Input[str]] = None,
|
432
386
|
default_region: Optional[pulumi.Input[str]] = None,
|
433
|
-
domain_ocid: Optional[pulumi.Input[str]] = None,
|
434
387
|
key_alias: Optional[pulumi.Input[str]] = None,
|
435
388
|
passphrase: Optional[pulumi.Input[str]] = None,
|
436
389
|
user_id: Optional[pulumi.Input[str]] = None,
|
@@ -447,7 +400,6 @@ class BdsInstanceApiKey(pulumi.CustomResource):
|
|
447
400
|
raise TypeError("Missing required property 'bds_instance_id'")
|
448
401
|
__props__.__dict__["bds_instance_id"] = bds_instance_id
|
449
402
|
__props__.__dict__["default_region"] = default_region
|
450
|
-
__props__.__dict__["domain_ocid"] = domain_ocid
|
451
403
|
if key_alias is None and not opts.urn:
|
452
404
|
raise TypeError("Missing required property 'key_alias'")
|
453
405
|
__props__.__dict__["key_alias"] = key_alias
|
@@ -476,7 +428,6 @@ class BdsInstanceApiKey(pulumi.CustomResource):
|
|
476
428
|
opts: Optional[pulumi.ResourceOptions] = None,
|
477
429
|
bds_instance_id: Optional[pulumi.Input[str]] = None,
|
478
430
|
default_region: Optional[pulumi.Input[str]] = None,
|
479
|
-
domain_ocid: Optional[pulumi.Input[str]] = None,
|
480
431
|
fingerprint: Optional[pulumi.Input[str]] = None,
|
481
432
|
key_alias: Optional[pulumi.Input[str]] = None,
|
482
433
|
passphrase: Optional[pulumi.Input[str]] = None,
|
@@ -493,12 +444,9 @@ class BdsInstanceApiKey(pulumi.CustomResource):
|
|
493
444
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
494
445
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
495
446
|
:param pulumi.Input[str] bds_instance_id: The OCID of the cluster.
|
496
|
-
<<<<<<< ours
|
497
447
|
:param pulumi.Input[str] default_region: The name of the region to establish the Object Storage endpoint. See https://docs.oracle.com/en-us/iaas/api/#/en/identity/20160918/Region/ for additional information.
|
498
|
-
:param pulumi.Input[str] domain_ocid: Identity domain OCID , where user is present. For default domain , this field will be optional.
|
499
448
|
:param pulumi.Input[str] fingerprint: The fingerprint that corresponds to the public API key requested.
|
500
449
|
:param pulumi.Input[str] key_alias: User friendly identifier used to uniquely differentiate between different API keys associated with this Big Data Service cluster. Only ASCII alphanumeric characters with no spaces allowed.
|
501
|
-
>>>>>>> theirs
|
502
450
|
:param pulumi.Input[str] passphrase: Base64 passphrase used to secure the private key which will be created on user behalf.
|
503
451
|
:param pulumi.Input[str] pemfilepath: The full path and file name of the private key used for authentication. This location will be automatically selected on the BDS local file system.
|
504
452
|
:param pulumi.Input[str] state: The current status of the API key.
|
@@ -516,7 +464,6 @@ class BdsInstanceApiKey(pulumi.CustomResource):
|
|
516
464
|
|
517
465
|
__props__.__dict__["bds_instance_id"] = bds_instance_id
|
518
466
|
__props__.__dict__["default_region"] = default_region
|
519
|
-
__props__.__dict__["domain_ocid"] = domain_ocid
|
520
467
|
__props__.__dict__["fingerprint"] = fingerprint
|
521
468
|
__props__.__dict__["key_alias"] = key_alias
|
522
469
|
__props__.__dict__["passphrase"] = passphrase
|
@@ -532,7 +479,6 @@ class BdsInstanceApiKey(pulumi.CustomResource):
|
|
532
479
|
def bds_instance_id(self) -> pulumi.Output[str]:
|
533
480
|
"""
|
534
481
|
The OCID of the cluster.
|
535
|
-
<<<<<<< ours
|
536
482
|
"""
|
537
483
|
return pulumi.get(self, "bds_instance_id")
|
538
484
|
|
@@ -544,14 +490,6 @@ class BdsInstanceApiKey(pulumi.CustomResource):
|
|
544
490
|
"""
|
545
491
|
return pulumi.get(self, "default_region")
|
546
492
|
|
547
|
-
@property
|
548
|
-
@pulumi.getter(name="domainOcid")
|
549
|
-
def domain_ocid(self) -> pulumi.Output[str]:
|
550
|
-
"""
|
551
|
-
Identity domain OCID , where user is present. For default domain , this field will be optional.
|
552
|
-
"""
|
553
|
-
return pulumi.get(self, "domain_ocid")
|
554
|
-
|
555
493
|
@property
|
556
494
|
@pulumi.getter
|
557
495
|
def fingerprint(self) -> pulumi.Output[str]:
|
@@ -565,7 +503,6 @@ class BdsInstanceApiKey(pulumi.CustomResource):
|
|
565
503
|
def key_alias(self) -> pulumi.Output[str]:
|
566
504
|
"""
|
567
505
|
User friendly identifier used to uniquely differentiate between different API keys associated with this Big Data Service cluster. Only ASCII alphanumeric characters with no spaces allowed.
|
568
|
-
>>>>>>> theirs
|
569
506
|
"""
|
570
507
|
return pulumi.get(self, "key_alias")
|
571
508
|
|
@@ -203,8 +203,6 @@ class BdsInstancePatchAction(pulumi.CustomResource):
|
|
203
203
|
patching_config={
|
204
204
|
"patching_config_strategy": bds_instance_patch_action_patching_config_patching_config_strategy,
|
205
205
|
"batch_size": bds_instance_patch_action_patching_config_batch_size,
|
206
|
-
"tolerance_threshold_per_batch": bds_instance_patch_action_patching_config_tolerance_threshold_per_batch,
|
207
|
-
"tolerance_threshold_per_domain": bds_instance_patch_action_patching_config_tolerance_threshold_per_domain,
|
208
206
|
"wait_time_between_batch_in_seconds": bds_instance_patch_action_patching_config_wait_time_between_batch_in_seconds,
|
209
207
|
"wait_time_between_domain_in_seconds": bds_instance_patch_action_patching_config_wait_time_between_domain_in_seconds,
|
210
208
|
})
|
@@ -249,8 +247,6 @@ class BdsInstancePatchAction(pulumi.CustomResource):
|
|
249
247
|
patching_config={
|
250
248
|
"patching_config_strategy": bds_instance_patch_action_patching_config_patching_config_strategy,
|
251
249
|
"batch_size": bds_instance_patch_action_patching_config_batch_size,
|
252
|
-
"tolerance_threshold_per_batch": bds_instance_patch_action_patching_config_tolerance_threshold_per_batch,
|
253
|
-
"tolerance_threshold_per_domain": bds_instance_patch_action_patching_config_tolerance_threshold_per_domain,
|
254
250
|
"wait_time_between_batch_in_seconds": bds_instance_patch_action_patching_config_wait_time_between_batch_in_seconds,
|
255
251
|
"wait_time_between_domain_in_seconds": bds_instance_patch_action_patching_config_wait_time_between_domain_in_seconds,
|
256
252
|
})
|
@@ -27,10 +27,7 @@ class GetBdsInstanceResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getBdsInstance.
|
29
29
|
"""
|
30
|
-
def __init__(__self__,
|
31
|
-
if bds_cluster_version_summaries and not isinstance(bds_cluster_version_summaries, list):
|
32
|
-
raise TypeError("Expected argument 'bds_cluster_version_summaries' to be a list")
|
33
|
-
pulumi.set(__self__, "bds_cluster_version_summaries", bds_cluster_version_summaries)
|
30
|
+
def __init__(__self__, bds_instance_id=None, bootstrap_script_url=None, cloud_sql_details=None, cluster_admin_password=None, cluster_details=None, cluster_profile=None, cluster_public_key=None, cluster_version=None, compartment_id=None, compute_only_worker_nodes=None, created_by=None, defined_tags=None, display_name=None, edge_nodes=None, freeform_tags=None, id=None, ignore_existing_nodes_shapes=None, is_cloud_sql_configured=None, is_force_stop_jobs=None, is_high_availability=None, is_kafka_configured=None, is_secure=None, kafka_broker_nodes=None, kerberos_realm_name=None, kms_key_id=None, master_nodes=None, network_configs=None, nodes=None, number_of_nodes=None, number_of_nodes_requiring_maintenance_reboot=None, os_patch_version=None, state=None, time_created=None, time_updated=None, util_nodes=None, worker_nodes=None):
|
34
31
|
if bds_instance_id and not isinstance(bds_instance_id, str):
|
35
32
|
raise TypeError("Expected argument 'bds_instance_id' to be a str")
|
36
33
|
pulumi.set(__self__, "bds_instance_id", bds_instance_id)
|
@@ -85,9 +82,6 @@ class GetBdsInstanceResult:
|
|
85
82
|
if is_cloud_sql_configured and not isinstance(is_cloud_sql_configured, bool):
|
86
83
|
raise TypeError("Expected argument 'is_cloud_sql_configured' to be a bool")
|
87
84
|
pulumi.set(__self__, "is_cloud_sql_configured", is_cloud_sql_configured)
|
88
|
-
if is_force_remove_enabled and not isinstance(is_force_remove_enabled, bool):
|
89
|
-
raise TypeError("Expected argument 'is_force_remove_enabled' to be a bool")
|
90
|
-
pulumi.set(__self__, "is_force_remove_enabled", is_force_remove_enabled)
|
91
85
|
if is_force_stop_jobs and not isinstance(is_force_stop_jobs, bool):
|
92
86
|
raise TypeError("Expected argument 'is_force_stop_jobs' to be a bool")
|
93
87
|
pulumi.set(__self__, "is_force_stop_jobs", is_force_stop_jobs)
|
@@ -127,12 +121,6 @@ class GetBdsInstanceResult:
|
|
127
121
|
if os_patch_version and not isinstance(os_patch_version, str):
|
128
122
|
raise TypeError("Expected argument 'os_patch_version' to be a str")
|
129
123
|
pulumi.set(__self__, "os_patch_version", os_patch_version)
|
130
|
-
if remove_node and not isinstance(remove_node, str):
|
131
|
-
raise TypeError("Expected argument 'remove_node' to be a str")
|
132
|
-
pulumi.set(__self__, "remove_node", remove_node)
|
133
|
-
if start_cluster_shape_configs and not isinstance(start_cluster_shape_configs, list):
|
134
|
-
raise TypeError("Expected argument 'start_cluster_shape_configs' to be a list")
|
135
|
-
pulumi.set(__self__, "start_cluster_shape_configs", start_cluster_shape_configs)
|
136
124
|
if state and not isinstance(state, str):
|
137
125
|
raise TypeError("Expected argument 'state' to be a str")
|
138
126
|
pulumi.set(__self__, "state", state)
|
@@ -149,14 +137,6 @@ class GetBdsInstanceResult:
|
|
149
137
|
raise TypeError("Expected argument 'worker_nodes' to be a list")
|
150
138
|
pulumi.set(__self__, "worker_nodes", worker_nodes)
|
151
139
|
|
152
|
-
@property
|
153
|
-
@pulumi.getter(name="bdsClusterVersionSummaries")
|
154
|
-
def bds_cluster_version_summaries(self) -> Sequence['outputs.GetBdsInstanceBdsClusterVersionSummaryResult']:
|
155
|
-
"""
|
156
|
-
Cluster version details including bds and odh version information.
|
157
|
-
"""
|
158
|
-
return pulumi.get(self, "bds_cluster_version_summaries")
|
159
|
-
|
160
140
|
@property
|
161
141
|
@pulumi.getter(name="bdsInstanceId")
|
162
142
|
def bds_instance_id(self) -> str:
|
@@ -283,11 +263,6 @@ class GetBdsInstanceResult:
|
|
283
263
|
"""
|
284
264
|
return pulumi.get(self, "is_cloud_sql_configured")
|
285
265
|
|
286
|
-
@property
|
287
|
-
@pulumi.getter(name="isForceRemoveEnabled")
|
288
|
-
def is_force_remove_enabled(self) -> bool:
|
289
|
-
return pulumi.get(self, "is_force_remove_enabled")
|
290
|
-
|
291
266
|
@property
|
292
267
|
@pulumi.getter(name="isForceStopJobs")
|
293
268
|
def is_force_stop_jobs(self) -> bool:
|
@@ -377,16 +352,6 @@ class GetBdsInstanceResult:
|
|
377
352
|
def os_patch_version(self) -> str:
|
378
353
|
return pulumi.get(self, "os_patch_version")
|
379
354
|
|
380
|
-
@property
|
381
|
-
@pulumi.getter(name="removeNode")
|
382
|
-
def remove_node(self) -> str:
|
383
|
-
return pulumi.get(self, "remove_node")
|
384
|
-
|
385
|
-
@property
|
386
|
-
@pulumi.getter(name="startClusterShapeConfigs")
|
387
|
-
def start_cluster_shape_configs(self) -> Sequence['outputs.GetBdsInstanceStartClusterShapeConfigResult']:
|
388
|
-
return pulumi.get(self, "start_cluster_shape_configs")
|
389
|
-
|
390
355
|
@property
|
391
356
|
@pulumi.getter
|
392
357
|
def state(self) -> str:
|
@@ -428,7 +393,6 @@ class AwaitableGetBdsInstanceResult(GetBdsInstanceResult):
|
|
428
393
|
if False:
|
429
394
|
yield self
|
430
395
|
return GetBdsInstanceResult(
|
431
|
-
bds_cluster_version_summaries=self.bds_cluster_version_summaries,
|
432
396
|
bds_instance_id=self.bds_instance_id,
|
433
397
|
bootstrap_script_url=self.bootstrap_script_url,
|
434
398
|
cloud_sql_details=self.cloud_sql_details,
|
@@ -447,7 +411,6 @@ class AwaitableGetBdsInstanceResult(GetBdsInstanceResult):
|
|
447
411
|
id=self.id,
|
448
412
|
ignore_existing_nodes_shapes=self.ignore_existing_nodes_shapes,
|
449
413
|
is_cloud_sql_configured=self.is_cloud_sql_configured,
|
450
|
-
is_force_remove_enabled=self.is_force_remove_enabled,
|
451
414
|
is_force_stop_jobs=self.is_force_stop_jobs,
|
452
415
|
is_high_availability=self.is_high_availability,
|
453
416
|
is_kafka_configured=self.is_kafka_configured,
|
@@ -461,8 +424,6 @@ class AwaitableGetBdsInstanceResult(GetBdsInstanceResult):
|
|
461
424
|
number_of_nodes=self.number_of_nodes,
|
462
425
|
number_of_nodes_requiring_maintenance_reboot=self.number_of_nodes_requiring_maintenance_reboot,
|
463
426
|
os_patch_version=self.os_patch_version,
|
464
|
-
remove_node=self.remove_node,
|
465
|
-
start_cluster_shape_configs=self.start_cluster_shape_configs,
|
466
427
|
state=self.state,
|
467
428
|
time_created=self.time_created,
|
468
429
|
time_updated=self.time_updated,
|
@@ -495,7 +456,6 @@ def get_bds_instance(bds_instance_id: Optional[str] = None,
|
|
495
456
|
__ret__ = pulumi.runtime.invoke('oci:BigDataService/getBdsInstance:getBdsInstance', __args__, opts=opts, typ=GetBdsInstanceResult).value
|
496
457
|
|
497
458
|
return AwaitableGetBdsInstanceResult(
|
498
|
-
bds_cluster_version_summaries=pulumi.get(__ret__, 'bds_cluster_version_summaries'),
|
499
459
|
bds_instance_id=pulumi.get(__ret__, 'bds_instance_id'),
|
500
460
|
bootstrap_script_url=pulumi.get(__ret__, 'bootstrap_script_url'),
|
501
461
|
cloud_sql_details=pulumi.get(__ret__, 'cloud_sql_details'),
|
@@ -514,7 +474,6 @@ def get_bds_instance(bds_instance_id: Optional[str] = None,
|
|
514
474
|
id=pulumi.get(__ret__, 'id'),
|
515
475
|
ignore_existing_nodes_shapes=pulumi.get(__ret__, 'ignore_existing_nodes_shapes'),
|
516
476
|
is_cloud_sql_configured=pulumi.get(__ret__, 'is_cloud_sql_configured'),
|
517
|
-
is_force_remove_enabled=pulumi.get(__ret__, 'is_force_remove_enabled'),
|
518
477
|
is_force_stop_jobs=pulumi.get(__ret__, 'is_force_stop_jobs'),
|
519
478
|
is_high_availability=pulumi.get(__ret__, 'is_high_availability'),
|
520
479
|
is_kafka_configured=pulumi.get(__ret__, 'is_kafka_configured'),
|
@@ -528,8 +487,6 @@ def get_bds_instance(bds_instance_id: Optional[str] = None,
|
|
528
487
|
number_of_nodes=pulumi.get(__ret__, 'number_of_nodes'),
|
529
488
|
number_of_nodes_requiring_maintenance_reboot=pulumi.get(__ret__, 'number_of_nodes_requiring_maintenance_reboot'),
|
530
489
|
os_patch_version=pulumi.get(__ret__, 'os_patch_version'),
|
531
|
-
remove_node=pulumi.get(__ret__, 'remove_node'),
|
532
|
-
start_cluster_shape_configs=pulumi.get(__ret__, 'start_cluster_shape_configs'),
|
533
490
|
state=pulumi.get(__ret__, 'state'),
|
534
491
|
time_created=pulumi.get(__ret__, 'time_created'),
|
535
492
|
time_updated=pulumi.get(__ret__, 'time_updated'),
|
@@ -559,7 +516,6 @@ def get_bds_instance_output(bds_instance_id: Optional[pulumi.Input[str]] = None,
|
|
559
516
|
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
560
517
|
__ret__ = pulumi.runtime.invoke_output('oci:BigDataService/getBdsInstance:getBdsInstance', __args__, opts=opts, typ=GetBdsInstanceResult)
|
561
518
|
return __ret__.apply(lambda __response__: GetBdsInstanceResult(
|
562
|
-
bds_cluster_version_summaries=pulumi.get(__response__, 'bds_cluster_version_summaries'),
|
563
519
|
bds_instance_id=pulumi.get(__response__, 'bds_instance_id'),
|
564
520
|
bootstrap_script_url=pulumi.get(__response__, 'bootstrap_script_url'),
|
565
521
|
cloud_sql_details=pulumi.get(__response__, 'cloud_sql_details'),
|
@@ -578,7 +534,6 @@ def get_bds_instance_output(bds_instance_id: Optional[pulumi.Input[str]] = None,
|
|
578
534
|
id=pulumi.get(__response__, 'id'),
|
579
535
|
ignore_existing_nodes_shapes=pulumi.get(__response__, 'ignore_existing_nodes_shapes'),
|
580
536
|
is_cloud_sql_configured=pulumi.get(__response__, 'is_cloud_sql_configured'),
|
581
|
-
is_force_remove_enabled=pulumi.get(__response__, 'is_force_remove_enabled'),
|
582
537
|
is_force_stop_jobs=pulumi.get(__response__, 'is_force_stop_jobs'),
|
583
538
|
is_high_availability=pulumi.get(__response__, 'is_high_availability'),
|
584
539
|
is_kafka_configured=pulumi.get(__response__, 'is_kafka_configured'),
|
@@ -592,8 +547,6 @@ def get_bds_instance_output(bds_instance_id: Optional[pulumi.Input[str]] = None,
|
|
592
547
|
number_of_nodes=pulumi.get(__response__, 'number_of_nodes'),
|
593
548
|
number_of_nodes_requiring_maintenance_reboot=pulumi.get(__response__, 'number_of_nodes_requiring_maintenance_reboot'),
|
594
549
|
os_patch_version=pulumi.get(__response__, 'os_patch_version'),
|
595
|
-
remove_node=pulumi.get(__response__, 'remove_node'),
|
596
|
-
start_cluster_shape_configs=pulumi.get(__response__, 'start_cluster_shape_configs'),
|
597
550
|
state=pulumi.get(__response__, 'state'),
|
598
551
|
time_created=pulumi.get(__response__, 'time_created'),
|
599
552
|
time_updated=pulumi.get(__response__, 'time_updated'),
|
@@ -26,7 +26,7 @@ class GetBdsInstanceApiKeyResult:
|
|
26
26
|
"""
|
27
27
|
A collection of values returned by getBdsInstanceApiKey.
|
28
28
|
"""
|
29
|
-
def __init__(__self__, api_key_id=None, bds_instance_id=None, default_region=None,
|
29
|
+
def __init__(__self__, api_key_id=None, bds_instance_id=None, default_region=None, fingerprint=None, id=None, key_alias=None, passphrase=None, pemfilepath=None, state=None, tenant_id=None, time_created=None, user_id=None):
|
30
30
|
if api_key_id and not isinstance(api_key_id, str):
|
31
31
|
raise TypeError("Expected argument 'api_key_id' to be a str")
|
32
32
|
pulumi.set(__self__, "api_key_id", api_key_id)
|
@@ -36,9 +36,6 @@ class GetBdsInstanceApiKeyResult:
|
|
36
36
|
if default_region and not isinstance(default_region, str):
|
37
37
|
raise TypeError("Expected argument 'default_region' to be a str")
|
38
38
|
pulumi.set(__self__, "default_region", default_region)
|
39
|
-
if domain_ocid and not isinstance(domain_ocid, str):
|
40
|
-
raise TypeError("Expected argument 'domain_ocid' to be a str")
|
41
|
-
pulumi.set(__self__, "domain_ocid", domain_ocid)
|
42
39
|
if fingerprint and not isinstance(fingerprint, str):
|
43
40
|
raise TypeError("Expected argument 'fingerprint' to be a str")
|
44
41
|
pulumi.set(__self__, "fingerprint", fingerprint)
|
@@ -82,19 +79,9 @@ class GetBdsInstanceApiKeyResult:
|
|
82
79
|
def default_region(self) -> str:
|
83
80
|
"""
|
84
81
|
The name of the region to establish the Object Storage endpoint which was set as part of key creation operation. If no region was provided this will be set to be the same region where the cluster lives. Example us-phoenix-1 .
|
85
|
-
>>>>>>> theirs
|
86
82
|
"""
|
87
83
|
return pulumi.get(self, "default_region")
|
88
84
|
|
89
|
-
@property
|
90
|
-
@pulumi.getter(name="domainOcid")
|
91
|
-
def domain_ocid(self) -> str:
|
92
|
-
"""
|
93
|
-
Identity domain OCID ,where user is present. For default domain ,this field will be optional.
|
94
|
-
=======
|
95
|
-
"""
|
96
|
-
return pulumi.get(self, "domain_ocid")
|
97
|
-
|
98
85
|
@property
|
99
86
|
@pulumi.getter
|
100
87
|
def fingerprint(self) -> str:
|
@@ -174,7 +161,6 @@ class AwaitableGetBdsInstanceApiKeyResult(GetBdsInstanceApiKeyResult):
|
|
174
161
|
api_key_id=self.api_key_id,
|
175
162
|
bds_instance_id=self.bds_instance_id,
|
176
163
|
default_region=self.default_region,
|
177
|
-
domain_ocid=self.domain_ocid,
|
178
164
|
fingerprint=self.fingerprint,
|
179
165
|
id=self.id,
|
180
166
|
key_alias=self.key_alias,
|
@@ -218,7 +204,6 @@ def get_bds_instance_api_key(api_key_id: Optional[str] = None,
|
|
218
204
|
api_key_id=pulumi.get(__ret__, 'api_key_id'),
|
219
205
|
bds_instance_id=pulumi.get(__ret__, 'bds_instance_id'),
|
220
206
|
default_region=pulumi.get(__ret__, 'default_region'),
|
221
|
-
domain_ocid=pulumi.get(__ret__, 'domain_ocid'),
|
222
207
|
fingerprint=pulumi.get(__ret__, 'fingerprint'),
|
223
208
|
id=pulumi.get(__ret__, 'id'),
|
224
209
|
key_alias=pulumi.get(__ret__, 'key_alias'),
|
@@ -259,7 +244,6 @@ def get_bds_instance_api_key_output(api_key_id: Optional[pulumi.Input[str]] = No
|
|
259
244
|
api_key_id=pulumi.get(__response__, 'api_key_id'),
|
260
245
|
bds_instance_id=pulumi.get(__response__, 'bds_instance_id'),
|
261
246
|
default_region=pulumi.get(__response__, 'default_region'),
|
262
|
-
domain_ocid=pulumi.get(__response__, 'domain_ocid'),
|
263
247
|
fingerprint=pulumi.get(__response__, 'fingerprint'),
|
264
248
|
id=pulumi.get(__response__, 'id'),
|
265
249
|
key_alias=pulumi.get(__response__, 'key_alias'),
|
@@ -54,9 +54,6 @@ class GetBdsInstanceApiKeysResult:
|
|
54
54
|
@property
|
55
55
|
@pulumi.getter(name="bdsApiKeys")
|
56
56
|
def bds_api_keys(self) -> Sequence['outputs.GetBdsInstanceApiKeysBdsApiKeyResult']:
|
57
|
-
"""
|
58
|
-
The list of bds_api_keys.
|
59
|
-
"""
|
60
57
|
return pulumi.get(self, "bds_api_keys")
|
61
58
|
|
62
59
|
@property
|