pulumi-oci 1.20.0a1705991859__py3-none-any.whl → 1.21.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 +51 -0
- pulumi_oci/core/get_boot_volume_attachments.py +36 -2
- pulumi_oci/database/autonomous_database.py +49 -0
- pulumi_oci/database/autonomous_database_wallet.py +18 -0
- pulumi_oci/database/get_autonomous_database.py +14 -1
- pulumi_oci/database/get_managed_preferred_credential.py +19 -1
- pulumi_oci/database/outputs.py +21 -0
- pulumi_oci/database/vm_cluster_network.py +20 -7
- pulumi_oci/databasemanagement/__init__.py +3 -0
- pulumi_oci/databasemanagement/_inputs.py +863 -48
- pulumi_oci/databasemanagement/get_external_asm_configuration.py +22 -5
- pulumi_oci/databasemanagement/get_external_asm_disk_groups.py +22 -5
- pulumi_oci/databasemanagement/get_external_asm_users.py +22 -5
- pulumi_oci/databasemanagement/get_external_listener_services.py +22 -5
- pulumi_oci/databasemanagement/get_managed_database_cursor_cache_statements.py +18 -1
- pulumi_oci/databasemanagement/get_managed_database_sql_plan_baseline.py +20 -3
- pulumi_oci/databasemanagement/get_managed_database_sql_plan_baseline_configuration.py +20 -3
- pulumi_oci/databasemanagement/get_managed_database_sql_plan_baseline_jobs.py +20 -3
- pulumi_oci/databasemanagement/get_managed_database_sql_plan_baselines.py +46 -37
- pulumi_oci/databasemanagement/get_managed_database_sql_tuning_advisor_tasks.py +18 -1
- pulumi_oci/databasemanagement/get_managed_database_sql_tuning_advisor_tasks_execution_plan_stats_comparison.py +20 -3
- pulumi_oci/databasemanagement/get_managed_database_sql_tuning_advisor_tasks_findings.py +18 -1
- pulumi_oci/databasemanagement/get_managed_database_sql_tuning_advisor_tasks_recommendations.py +20 -3
- pulumi_oci/databasemanagement/get_managed_database_sql_tuning_advisor_tasks_sql_execution_plan.py +20 -3
- pulumi_oci/databasemanagement/get_managed_database_sql_tuning_advisor_tasks_summary_report.py +18 -1
- pulumi_oci/databasemanagement/get_managed_database_sql_tuning_sets.py +18 -1
- pulumi_oci/databasemanagement/get_managed_database_user.py +20 -3
- pulumi_oci/databasemanagement/get_managed_database_user_consumer_group_privileges.py +20 -3
- pulumi_oci/databasemanagement/get_managed_database_user_data_access_containers.py +20 -3
- pulumi_oci/databasemanagement/get_managed_database_user_object_privileges.py +20 -3
- pulumi_oci/databasemanagement/get_managed_database_user_proxied_for_users.py +20 -3
- pulumi_oci/databasemanagement/get_managed_database_user_roles.py +20 -3
- pulumi_oci/databasemanagement/get_managed_database_users.py +20 -3
- pulumi_oci/databasemanagement/get_managed_databases_database_parameters.py +18 -1
- pulumi_oci/databasemanagement/get_managed_databases_user_proxy_users.py +20 -3
- pulumi_oci/databasemanagement/get_managed_databases_user_system_privileges.py +20 -3
- pulumi_oci/databasemanagement/get_named_credential.py +249 -0
- pulumi_oci/databasemanagement/get_named_credentials.py +216 -0
- pulumi_oci/databasemanagement/managed_databases_change_database_parameter.py +99 -37
- pulumi_oci/databasemanagement/managed_databases_reset_database_parameter.py +91 -29
- pulumi_oci/databasemanagement/named_credential.py +635 -0
- pulumi_oci/databasemanagement/outputs.py +1896 -157
- pulumi_oci/dataintegration/__init__.py +3 -0
- pulumi_oci/dataintegration/_inputs.py +798 -0
- pulumi_oci/dataintegration/get_workspace_application_patch.py +391 -0
- pulumi_oci/dataintegration/get_workspace_application_patches.py +207 -0
- pulumi_oci/dataintegration/get_workspace_import_request.py +14 -1
- pulumi_oci/dataintegration/outputs.py +2844 -739
- pulumi_oci/dataintegration/workspace_application_patch.py +1026 -0
- pulumi_oci/dataintegration/workspace_import_request.py +49 -0
- pulumi_oci/generativeai/__init__.py +18 -0
- pulumi_oci/generativeai/_inputs.py +534 -0
- pulumi_oci/generativeai/dedicated_ai_cluster.py +808 -0
- pulumi_oci/generativeai/endpoint.py +717 -0
- pulumi_oci/generativeai/get_dedicated_ai_cluster.py +288 -0
- pulumi_oci/generativeai/get_dedicated_ai_clusters.py +183 -0
- pulumi_oci/generativeai/get_endpoint.py +275 -0
- pulumi_oci/generativeai/get_endpoints.py +183 -0
- pulumi_oci/generativeai/get_model.py +353 -0
- pulumi_oci/generativeai/get_models.py +220 -0
- pulumi_oci/generativeai/model.py +858 -0
- pulumi_oci/generativeai/outputs.py +1721 -0
- pulumi_oci/loadbalancer/_inputs.py +12 -0
- pulumi_oci/loadbalancer/outputs.py +12 -0
- pulumi_oci/marketplace/get_publication.py +14 -1
- pulumi_oci/marketplace/outputs.py +11 -0
- pulumi_oci/marketplace/publication.py +28 -0
- pulumi_oci/ospgateway/_inputs.py +16 -0
- pulumi_oci/ospgateway/outputs.py +94 -19
- pulumi_oci/stackmonitoring/__init__.py +3 -0
- pulumi_oci/stackmonitoring/_inputs.py +143 -0
- pulumi_oci/stackmonitoring/get_process_set.py +236 -0
- pulumi_oci/stackmonitoring/get_process_sets.py +156 -0
- pulumi_oci/stackmonitoring/outputs.py +422 -0
- pulumi_oci/stackmonitoring/process_set.py +548 -0
- {pulumi_oci-1.20.0a1705991859.dist-info → pulumi_oci-1.21.0.dist-info}/METADATA +1 -1
- {pulumi_oci-1.20.0a1705991859.dist-info → pulumi_oci-1.21.0.dist-info}/RECORD +79 -58
- {pulumi_oci-1.20.0a1705991859.dist-info → pulumi_oci-1.21.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.20.0a1705991859.dist-info → pulumi_oci-1.21.0.dist-info}/top_level.txt +0 -0
@@ -19,6 +19,7 @@ class WorkspaceImportRequestArgs:
|
|
19
19
|
bucket: pulumi.Input[str],
|
20
20
|
file_name: pulumi.Input[str],
|
21
21
|
workspace_id: pulumi.Input[str],
|
22
|
+
are_data_asset_references_included: Optional[pulumi.Input[bool]] = None,
|
22
23
|
import_conflict_resolution: Optional[pulumi.Input['WorkspaceImportRequestImportConflictResolutionArgs']] = None,
|
23
24
|
object_key_for_import: Optional[pulumi.Input[str]] = None,
|
24
25
|
object_storage_region: Optional[pulumi.Input[str]] = None,
|
@@ -32,6 +33,7 @@ class WorkspaceImportRequestArgs:
|
|
32
33
|
|
33
34
|
** IMPORTANT **
|
34
35
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
36
|
+
:param pulumi.Input[bool] are_data_asset_references_included: This field controls if the data asset references will be included during import.
|
35
37
|
:param pulumi.Input['WorkspaceImportRequestImportConflictResolutionArgs'] import_conflict_resolution: Import Objects Conflict resolution.
|
36
38
|
:param pulumi.Input[str] object_key_for_import: Key of the object inside which all the objects will be imported
|
37
39
|
:param pulumi.Input[str] object_storage_region: Region of the object storage (if using object storage of different region)
|
@@ -40,6 +42,8 @@ class WorkspaceImportRequestArgs:
|
|
40
42
|
pulumi.set(__self__, "bucket", bucket)
|
41
43
|
pulumi.set(__self__, "file_name", file_name)
|
42
44
|
pulumi.set(__self__, "workspace_id", workspace_id)
|
45
|
+
if are_data_asset_references_included is not None:
|
46
|
+
pulumi.set(__self__, "are_data_asset_references_included", are_data_asset_references_included)
|
43
47
|
if import_conflict_resolution is not None:
|
44
48
|
pulumi.set(__self__, "import_conflict_resolution", import_conflict_resolution)
|
45
49
|
if object_key_for_import is not None:
|
@@ -89,6 +93,18 @@ class WorkspaceImportRequestArgs:
|
|
89
93
|
def workspace_id(self, value: pulumi.Input[str]):
|
90
94
|
pulumi.set(self, "workspace_id", value)
|
91
95
|
|
96
|
+
@property
|
97
|
+
@pulumi.getter(name="areDataAssetReferencesIncluded")
|
98
|
+
def are_data_asset_references_included(self) -> Optional[pulumi.Input[bool]]:
|
99
|
+
"""
|
100
|
+
This field controls if the data asset references will be included during import.
|
101
|
+
"""
|
102
|
+
return pulumi.get(self, "are_data_asset_references_included")
|
103
|
+
|
104
|
+
@are_data_asset_references_included.setter
|
105
|
+
def are_data_asset_references_included(self, value: Optional[pulumi.Input[bool]]):
|
106
|
+
pulumi.set(self, "are_data_asset_references_included", value)
|
107
|
+
|
92
108
|
@property
|
93
109
|
@pulumi.getter(name="importConflictResolution")
|
94
110
|
def import_conflict_resolution(self) -> Optional[pulumi.Input['WorkspaceImportRequestImportConflictResolutionArgs']]:
|
@@ -141,6 +157,7 @@ class WorkspaceImportRequestArgs:
|
|
141
157
|
@pulumi.input_type
|
142
158
|
class _WorkspaceImportRequestState:
|
143
159
|
def __init__(__self__, *,
|
160
|
+
are_data_asset_references_included: Optional[pulumi.Input[bool]] = None,
|
144
161
|
bucket: Optional[pulumi.Input[str]] = None,
|
145
162
|
created_by: Optional[pulumi.Input[str]] = None,
|
146
163
|
error_messages: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
@@ -159,6 +176,7 @@ class _WorkspaceImportRequestState:
|
|
159
176
|
workspace_id: Optional[pulumi.Input[str]] = None):
|
160
177
|
"""
|
161
178
|
Input properties used for looking up and filtering WorkspaceImportRequest resources.
|
179
|
+
:param pulumi.Input[bool] are_data_asset_references_included: This field controls if the data asset references will be included during import.
|
162
180
|
:param pulumi.Input[str] bucket: Name of the Object Storage bucket where the object will be imported from.
|
163
181
|
:param pulumi.Input[str] created_by: Name of the user who initiated import request.
|
164
182
|
:param pulumi.Input[Mapping[str, Any]] error_messages: Contains key of the error
|
@@ -180,6 +198,8 @@ class _WorkspaceImportRequestState:
|
|
180
198
|
** IMPORTANT **
|
181
199
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
182
200
|
"""
|
201
|
+
if are_data_asset_references_included is not None:
|
202
|
+
pulumi.set(__self__, "are_data_asset_references_included", are_data_asset_references_included)
|
183
203
|
if bucket is not None:
|
184
204
|
pulumi.set(__self__, "bucket", bucket)
|
185
205
|
if created_by is not None:
|
@@ -213,6 +233,18 @@ class _WorkspaceImportRequestState:
|
|
213
233
|
if workspace_id is not None:
|
214
234
|
pulumi.set(__self__, "workspace_id", workspace_id)
|
215
235
|
|
236
|
+
@property
|
237
|
+
@pulumi.getter(name="areDataAssetReferencesIncluded")
|
238
|
+
def are_data_asset_references_included(self) -> Optional[pulumi.Input[bool]]:
|
239
|
+
"""
|
240
|
+
This field controls if the data asset references will be included during import.
|
241
|
+
"""
|
242
|
+
return pulumi.get(self, "are_data_asset_references_included")
|
243
|
+
|
244
|
+
@are_data_asset_references_included.setter
|
245
|
+
def are_data_asset_references_included(self, value: Optional[pulumi.Input[bool]]):
|
246
|
+
pulumi.set(self, "are_data_asset_references_included", value)
|
247
|
+
|
216
248
|
@property
|
217
249
|
@pulumi.getter
|
218
250
|
def bucket(self) -> Optional[pulumi.Input[str]]:
|
@@ -415,6 +447,7 @@ class WorkspaceImportRequest(pulumi.CustomResource):
|
|
415
447
|
def __init__(__self__,
|
416
448
|
resource_name: str,
|
417
449
|
opts: Optional[pulumi.ResourceOptions] = None,
|
450
|
+
are_data_asset_references_included: Optional[pulumi.Input[bool]] = None,
|
418
451
|
bucket: Optional[pulumi.Input[str]] = None,
|
419
452
|
file_name: Optional[pulumi.Input[str]] = None,
|
420
453
|
import_conflict_resolution: Optional[pulumi.Input[pulumi.InputType['WorkspaceImportRequestImportConflictResolutionArgs']]] = None,
|
@@ -438,6 +471,7 @@ class WorkspaceImportRequest(pulumi.CustomResource):
|
|
438
471
|
bucket=var["workspace_import_request_bucket"],
|
439
472
|
file_name=var["workspace_import_request_file_name"],
|
440
473
|
workspace_id=oci_dataintegration_workspace["test_workspace"]["id"],
|
474
|
+
are_data_asset_references_included=var["workspace_import_request_are_data_asset_references_included"],
|
441
475
|
import_conflict_resolution=oci.data_integration.WorkspaceImportRequestImportConflictResolutionArgs(
|
442
476
|
import_conflict_resolution_type=var["workspace_import_request_import_conflict_resolution_import_conflict_resolution_type"],
|
443
477
|
duplicate_prefix=var["workspace_import_request_import_conflict_resolution_duplicate_prefix"],
|
@@ -458,6 +492,7 @@ class WorkspaceImportRequest(pulumi.CustomResource):
|
|
458
492
|
|
459
493
|
:param str resource_name: The name of the resource.
|
460
494
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
495
|
+
:param pulumi.Input[bool] are_data_asset_references_included: This field controls if the data asset references will be included during import.
|
461
496
|
:param pulumi.Input[str] bucket: Name of the Object Storage bucket where the object will be imported from.
|
462
497
|
:param pulumi.Input[str] file_name: Name of the zip file to be imported.
|
463
498
|
:param pulumi.Input[pulumi.InputType['WorkspaceImportRequestImportConflictResolutionArgs']] import_conflict_resolution: Import Objects Conflict resolution.
|
@@ -491,6 +526,7 @@ class WorkspaceImportRequest(pulumi.CustomResource):
|
|
491
526
|
bucket=var["workspace_import_request_bucket"],
|
492
527
|
file_name=var["workspace_import_request_file_name"],
|
493
528
|
workspace_id=oci_dataintegration_workspace["test_workspace"]["id"],
|
529
|
+
are_data_asset_references_included=var["workspace_import_request_are_data_asset_references_included"],
|
494
530
|
import_conflict_resolution=oci.data_integration.WorkspaceImportRequestImportConflictResolutionArgs(
|
495
531
|
import_conflict_resolution_type=var["workspace_import_request_import_conflict_resolution_import_conflict_resolution_type"],
|
496
532
|
duplicate_prefix=var["workspace_import_request_import_conflict_resolution_duplicate_prefix"],
|
@@ -524,6 +560,7 @@ class WorkspaceImportRequest(pulumi.CustomResource):
|
|
524
560
|
def _internal_init(__self__,
|
525
561
|
resource_name: str,
|
526
562
|
opts: Optional[pulumi.ResourceOptions] = None,
|
563
|
+
are_data_asset_references_included: Optional[pulumi.Input[bool]] = None,
|
527
564
|
bucket: Optional[pulumi.Input[str]] = None,
|
528
565
|
file_name: Optional[pulumi.Input[str]] = None,
|
529
566
|
import_conflict_resolution: Optional[pulumi.Input[pulumi.InputType['WorkspaceImportRequestImportConflictResolutionArgs']]] = None,
|
@@ -540,6 +577,7 @@ class WorkspaceImportRequest(pulumi.CustomResource):
|
|
540
577
|
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
541
578
|
__props__ = WorkspaceImportRequestArgs.__new__(WorkspaceImportRequestArgs)
|
542
579
|
|
580
|
+
__props__.__dict__["are_data_asset_references_included"] = are_data_asset_references_included
|
543
581
|
if bucket is None and not opts.urn:
|
544
582
|
raise TypeError("Missing required property 'bucket'")
|
545
583
|
__props__.__dict__["bucket"] = bucket
|
@@ -572,6 +610,7 @@ class WorkspaceImportRequest(pulumi.CustomResource):
|
|
572
610
|
def get(resource_name: str,
|
573
611
|
id: pulumi.Input[str],
|
574
612
|
opts: Optional[pulumi.ResourceOptions] = None,
|
613
|
+
are_data_asset_references_included: Optional[pulumi.Input[bool]] = None,
|
575
614
|
bucket: Optional[pulumi.Input[str]] = None,
|
576
615
|
created_by: Optional[pulumi.Input[str]] = None,
|
577
616
|
error_messages: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
@@ -595,6 +634,7 @@ class WorkspaceImportRequest(pulumi.CustomResource):
|
|
595
634
|
:param str resource_name: The unique name of the resulting resource.
|
596
635
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
597
636
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
637
|
+
:param pulumi.Input[bool] are_data_asset_references_included: This field controls if the data asset references will be included during import.
|
598
638
|
:param pulumi.Input[str] bucket: Name of the Object Storage bucket where the object will be imported from.
|
599
639
|
:param pulumi.Input[str] created_by: Name of the user who initiated import request.
|
600
640
|
:param pulumi.Input[Mapping[str, Any]] error_messages: Contains key of the error
|
@@ -620,6 +660,7 @@ class WorkspaceImportRequest(pulumi.CustomResource):
|
|
620
660
|
|
621
661
|
__props__ = _WorkspaceImportRequestState.__new__(_WorkspaceImportRequestState)
|
622
662
|
|
663
|
+
__props__.__dict__["are_data_asset_references_included"] = are_data_asset_references_included
|
623
664
|
__props__.__dict__["bucket"] = bucket
|
624
665
|
__props__.__dict__["created_by"] = created_by
|
625
666
|
__props__.__dict__["error_messages"] = error_messages
|
@@ -638,6 +679,14 @@ class WorkspaceImportRequest(pulumi.CustomResource):
|
|
638
679
|
__props__.__dict__["workspace_id"] = workspace_id
|
639
680
|
return WorkspaceImportRequest(resource_name, opts=opts, __props__=__props__)
|
640
681
|
|
682
|
+
@property
|
683
|
+
@pulumi.getter(name="areDataAssetReferencesIncluded")
|
684
|
+
def are_data_asset_references_included(self) -> pulumi.Output[bool]:
|
685
|
+
"""
|
686
|
+
This field controls if the data asset references will be included during import.
|
687
|
+
"""
|
688
|
+
return pulumi.get(self, "are_data_asset_references_included")
|
689
|
+
|
641
690
|
@property
|
642
691
|
@pulumi.getter
|
643
692
|
def bucket(self) -> pulumi.Output[str]:
|
@@ -0,0 +1,18 @@
|
|
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 .dedicated_ai_cluster import *
|
9
|
+
from .endpoint import *
|
10
|
+
from .get_dedicated_ai_cluster import *
|
11
|
+
from .get_dedicated_ai_clusters import *
|
12
|
+
from .get_endpoint import *
|
13
|
+
from .get_endpoints import *
|
14
|
+
from .get_model import *
|
15
|
+
from .get_models import *
|
16
|
+
from .model import *
|
17
|
+
from ._inputs import *
|
18
|
+
from . import outputs
|