pulumi-oci 2.0.0a1719867547__py3-none-any.whl → 2.1.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 +43 -0
- pulumi_oci/database/__init__.py +11 -0
- pulumi_oci/database/_inputs.py +607 -0
- pulumi_oci/database/db_node.py +28 -0
- pulumi_oci/database/exadb_vm_cluster.py +1761 -0
- pulumi_oci/database/exascale_db_storage_vault.py +787 -0
- pulumi_oci/database/get_backups.py +22 -5
- pulumi_oci/database/get_db_node.py +14 -1
- pulumi_oci/database/get_db_nodes.py +2 -2
- pulumi_oci/database/get_exadb_vm_cluster.py +614 -0
- pulumi_oci/database/get_exadb_vm_cluster_update.py +226 -0
- pulumi_oci/database/get_exadb_vm_cluster_update_history_entries.py +153 -0
- pulumi_oci/database/get_exadb_vm_cluster_update_history_entry.py +226 -0
- pulumi_oci/database/get_exadb_vm_cluster_updates.py +173 -0
- pulumi_oci/database/get_exadb_vm_clusters.py +196 -0
- pulumi_oci/database/get_exascale_db_storage_vault.py +301 -0
- pulumi_oci/database/get_exascale_db_storage_vaults.py +176 -0
- pulumi_oci/database/get_gi_version_minor_versions.py +221 -0
- pulumi_oci/database/get_gi_versions.py +22 -5
- pulumi_oci/database/outputs.py +2050 -0
- pulumi_oci/database/pluggable_database.py +7 -7
- pulumi_oci/databasemigration/__init__.py +6 -0
- pulumi_oci/databasemigration/_inputs.py +1577 -0
- pulumi_oci/databasemigration/connection.py +2019 -0
- pulumi_oci/databasemigration/get_connection.py +616 -0
- pulumi_oci/databasemigration/get_connections.py +225 -0
- pulumi_oci/databasemigration/get_job_advisor_report.py +2 -10
- pulumi_oci/databasemigration/get_migration.py +427 -0
- pulumi_oci/databasemigration/get_migration_object_types.py +24 -13
- pulumi_oci/databasemigration/get_migrations.py +407 -0
- pulumi_oci/databasemigration/job.py +16 -20
- pulumi_oci/databasemigration/migration.py +1471 -0
- pulumi_oci/databasemigration/outputs.py +4301 -73
- pulumi_oci/filestorage/_inputs.py +10 -18
- pulumi_oci/filestorage/export.py +28 -7
- pulumi_oci/filestorage/file_system.py +159 -35
- pulumi_oci/filestorage/outputs.py +55 -34
- pulumi_oci/generativeai/_inputs.py +50 -2
- pulumi_oci/generativeai/dedicated_ai_cluster.py +30 -2
- pulumi_oci/generativeai/endpoint.py +2 -2
- pulumi_oci/generativeai/get_dedicated_ai_cluster.py +2 -47
- pulumi_oci/generativeai/get_dedicated_ai_clusters.py +2 -14
- pulumi_oci/generativeai/get_endpoint.py +2 -26
- pulumi_oci/generativeai/get_endpoints.py +2 -8
- pulumi_oci/generativeai/get_model.py +2 -38
- pulumi_oci/generativeai/get_models.py +2 -8
- pulumi_oci/generativeai/model.py +2 -2
- pulumi_oci/generativeai/outputs.py +86 -310
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/resourcescheduler/__init__.py +12 -0
- pulumi_oci/resourcescheduler/_inputs.py +224 -0
- pulumi_oci/resourcescheduler/get_schedule.py +340 -0
- pulumi_oci/resourcescheduler/get_schedules.py +193 -0
- pulumi_oci/resourcescheduler/outputs.py +687 -0
- pulumi_oci/resourcescheduler/schedule.py +977 -0
- {pulumi_oci-2.0.0a1719867547.dist-info → pulumi_oci-2.1.0.dist-info}/METADATA +1 -1
- {pulumi_oci-2.0.0a1719867547.dist-info → pulumi_oci-2.1.0.dist-info}/RECORD +59 -36
- {pulumi_oci-2.0.0a1719867547.dist-info → pulumi_oci-2.1.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.0.0a1719867547.dist-info → pulumi_oci-2.1.0.dist-info}/top_level.txt +0 -0
@@ -23,7 +23,7 @@ class GetBackupsResult:
|
|
23
23
|
"""
|
24
24
|
A collection of values returned by getBackups.
|
25
25
|
"""
|
26
|
-
def __init__(__self__, backups=None, compartment_id=None, database_id=None, filters=None, id=None):
|
26
|
+
def __init__(__self__, backups=None, compartment_id=None, database_id=None, filters=None, id=None, shape_family=None):
|
27
27
|
if backups and not isinstance(backups, list):
|
28
28
|
raise TypeError("Expected argument 'backups' to be a list")
|
29
29
|
pulumi.set(__self__, "backups", backups)
|
@@ -39,6 +39,9 @@ class GetBackupsResult:
|
|
39
39
|
if id and not isinstance(id, str):
|
40
40
|
raise TypeError("Expected argument 'id' to be a str")
|
41
41
|
pulumi.set(__self__, "id", id)
|
42
|
+
if shape_family and not isinstance(shape_family, str):
|
43
|
+
raise TypeError("Expected argument 'shape_family' to be a str")
|
44
|
+
pulumi.set(__self__, "shape_family", shape_family)
|
42
45
|
|
43
46
|
@property
|
44
47
|
@pulumi.getter
|
@@ -77,6 +80,11 @@ class GetBackupsResult:
|
|
77
80
|
"""
|
78
81
|
return pulumi.get(self, "id")
|
79
82
|
|
83
|
+
@property
|
84
|
+
@pulumi.getter(name="shapeFamily")
|
85
|
+
def shape_family(self) -> Optional[str]:
|
86
|
+
return pulumi.get(self, "shape_family")
|
87
|
+
|
80
88
|
|
81
89
|
class AwaitableGetBackupsResult(GetBackupsResult):
|
82
90
|
# pylint: disable=using-constant-test
|
@@ -88,12 +96,14 @@ class AwaitableGetBackupsResult(GetBackupsResult):
|
|
88
96
|
compartment_id=self.compartment_id,
|
89
97
|
database_id=self.database_id,
|
90
98
|
filters=self.filters,
|
91
|
-
id=self.id
|
99
|
+
id=self.id,
|
100
|
+
shape_family=self.shape_family)
|
92
101
|
|
93
102
|
|
94
103
|
def get_backups(compartment_id: Optional[str] = None,
|
95
104
|
database_id: Optional[str] = None,
|
96
105
|
filters: Optional[Sequence[pulumi.InputType['GetBackupsFilterArgs']]] = None,
|
106
|
+
shape_family: Optional[str] = None,
|
97
107
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetBackupsResult:
|
98
108
|
"""
|
99
109
|
This data source provides the list of Backups in Oracle Cloud Infrastructure Database service.
|
@@ -107,17 +117,20 @@ def get_backups(compartment_id: Optional[str] = None,
|
|
107
117
|
import pulumi_oci as oci
|
108
118
|
|
109
119
|
test_backups = oci.Database.get_backups(compartment_id=compartment_id,
|
110
|
-
database_id=test_database["id"]
|
120
|
+
database_id=test_database["id"],
|
121
|
+
shape_family=backup_shape_family)
|
111
122
|
```
|
112
123
|
|
113
124
|
|
114
125
|
:param str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
115
126
|
:param str database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the database.
|
127
|
+
:param str shape_family: If provided, filters the results to the set of database versions which are supported for the given shape family.
|
116
128
|
"""
|
117
129
|
__args__ = dict()
|
118
130
|
__args__['compartmentId'] = compartment_id
|
119
131
|
__args__['databaseId'] = database_id
|
120
132
|
__args__['filters'] = filters
|
133
|
+
__args__['shapeFamily'] = shape_family
|
121
134
|
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
122
135
|
__ret__ = pulumi.runtime.invoke('oci:Database/getBackups:getBackups', __args__, opts=opts, typ=GetBackupsResult).value
|
123
136
|
|
@@ -126,13 +139,15 @@ def get_backups(compartment_id: Optional[str] = None,
|
|
126
139
|
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
127
140
|
database_id=pulumi.get(__ret__, 'database_id'),
|
128
141
|
filters=pulumi.get(__ret__, 'filters'),
|
129
|
-
id=pulumi.get(__ret__, 'id')
|
142
|
+
id=pulumi.get(__ret__, 'id'),
|
143
|
+
shape_family=pulumi.get(__ret__, 'shape_family'))
|
130
144
|
|
131
145
|
|
132
146
|
@_utilities.lift_output_func(get_backups)
|
133
147
|
def get_backups_output(compartment_id: Optional[pulumi.Input[Optional[str]]] = None,
|
134
148
|
database_id: Optional[pulumi.Input[Optional[str]]] = None,
|
135
149
|
filters: Optional[pulumi.Input[Optional[Sequence[pulumi.InputType['GetBackupsFilterArgs']]]]] = None,
|
150
|
+
shape_family: Optional[pulumi.Input[Optional[str]]] = None,
|
136
151
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetBackupsResult]:
|
137
152
|
"""
|
138
153
|
This data source provides the list of Backups in Oracle Cloud Infrastructure Database service.
|
@@ -146,11 +161,13 @@ def get_backups_output(compartment_id: Optional[pulumi.Input[Optional[str]]] = N
|
|
146
161
|
import pulumi_oci as oci
|
147
162
|
|
148
163
|
test_backups = oci.Database.get_backups(compartment_id=compartment_id,
|
149
|
-
database_id=test_database["id"]
|
164
|
+
database_id=test_database["id"],
|
165
|
+
shape_family=backup_shape_family)
|
150
166
|
```
|
151
167
|
|
152
168
|
|
153
169
|
:param str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
154
170
|
:param str database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the database.
|
171
|
+
:param str shape_family: If provided, filters the results to the set of database versions which are supported for the given shape family.
|
155
172
|
"""
|
156
173
|
...
|
@@ -21,7 +21,7 @@ class GetDbNodeResult:
|
|
21
21
|
"""
|
22
22
|
A collection of values returned by getDbNode.
|
23
23
|
"""
|
24
|
-
def __init__(__self__, additional_details=None, backup_ip_id=None, backup_vnic2id=None, backup_vnic_id=None, cpu_core_count=None, db_node_id=None, db_node_storage_size_in_gbs=None, db_server_id=None, db_system_id=None, defined_tags=None, fault_domain=None, freeform_tags=None, host_ip_id=None, hostname=None, id=None, lifecycle_details=None, maintenance_type=None, memory_size_in_gbs=None, software_storage_size_in_gb=None, state=None, time_created=None, time_maintenance_window_end=None, time_maintenance_window_start=None, vnic2id=None, vnic_id=None):
|
24
|
+
def __init__(__self__, additional_details=None, backup_ip_id=None, backup_vnic2id=None, backup_vnic_id=None, cpu_core_count=None, db_node_id=None, db_node_storage_size_in_gbs=None, db_server_id=None, db_system_id=None, defined_tags=None, fault_domain=None, freeform_tags=None, host_ip_id=None, hostname=None, id=None, lifecycle_details=None, maintenance_type=None, memory_size_in_gbs=None, software_storage_size_in_gb=None, state=None, time_created=None, time_maintenance_window_end=None, time_maintenance_window_start=None, total_cpu_core_count=None, vnic2id=None, vnic_id=None):
|
25
25
|
if additional_details and not isinstance(additional_details, str):
|
26
26
|
raise TypeError("Expected argument 'additional_details' to be a str")
|
27
27
|
pulumi.set(__self__, "additional_details", additional_details)
|
@@ -91,6 +91,9 @@ class GetDbNodeResult:
|
|
91
91
|
if time_maintenance_window_start and not isinstance(time_maintenance_window_start, str):
|
92
92
|
raise TypeError("Expected argument 'time_maintenance_window_start' to be a str")
|
93
93
|
pulumi.set(__self__, "time_maintenance_window_start", time_maintenance_window_start)
|
94
|
+
if total_cpu_core_count and not isinstance(total_cpu_core_count, int):
|
95
|
+
raise TypeError("Expected argument 'total_cpu_core_count' to be a int")
|
96
|
+
pulumi.set(__self__, "total_cpu_core_count", total_cpu_core_count)
|
94
97
|
if vnic2id and not isinstance(vnic2id, str):
|
95
98
|
raise TypeError("Expected argument 'vnic2id' to be a str")
|
96
99
|
pulumi.set(__self__, "vnic2id", vnic2id)
|
@@ -280,6 +283,14 @@ class GetDbNodeResult:
|
|
280
283
|
"""
|
281
284
|
return pulumi.get(self, "time_maintenance_window_start")
|
282
285
|
|
286
|
+
@property
|
287
|
+
@pulumi.getter(name="totalCpuCoreCount")
|
288
|
+
def total_cpu_core_count(self) -> int:
|
289
|
+
"""
|
290
|
+
The total number of CPU cores reserved on the Db node.
|
291
|
+
"""
|
292
|
+
return pulumi.get(self, "total_cpu_core_count")
|
293
|
+
|
283
294
|
@property
|
284
295
|
@pulumi.getter
|
285
296
|
def vnic2id(self) -> str:
|
@@ -326,6 +337,7 @@ class AwaitableGetDbNodeResult(GetDbNodeResult):
|
|
326
337
|
time_created=self.time_created,
|
327
338
|
time_maintenance_window_end=self.time_maintenance_window_end,
|
328
339
|
time_maintenance_window_start=self.time_maintenance_window_start,
|
340
|
+
total_cpu_core_count=self.total_cpu_core_count,
|
329
341
|
vnic2id=self.vnic2id,
|
330
342
|
vnic_id=self.vnic_id)
|
331
343
|
|
@@ -378,6 +390,7 @@ def get_db_node(db_node_id: Optional[str] = None,
|
|
378
390
|
time_created=pulumi.get(__ret__, 'time_created'),
|
379
391
|
time_maintenance_window_end=pulumi.get(__ret__, 'time_maintenance_window_end'),
|
380
392
|
time_maintenance_window_start=pulumi.get(__ret__, 'time_maintenance_window_start'),
|
393
|
+
total_cpu_core_count=pulumi.get(__ret__, 'total_cpu_core_count'),
|
381
394
|
vnic2id=pulumi.get(__ret__, 'vnic2id'),
|
382
395
|
vnic_id=pulumi.get(__ret__, 'vnic_id'))
|
383
396
|
|
@@ -131,7 +131,7 @@ def get_db_nodes(compartment_id: Optional[str] = None,
|
|
131
131
|
"""
|
132
132
|
This data source provides the list of Db Nodes in Oracle Cloud Infrastructure Database service.
|
133
133
|
|
134
|
-
Lists the database nodes in the specified
|
134
|
+
Lists the database nodes in the specified compartment. A database node is a server running database software. In addition to the other required parameters, either '--db-system-id' or '--vm-cluster-id' also must be provided, depending on the service being accessed.
|
135
135
|
|
136
136
|
## Example Usage
|
137
137
|
|
@@ -185,7 +185,7 @@ def get_db_nodes_output(compartment_id: Optional[pulumi.Input[str]] = None,
|
|
185
185
|
"""
|
186
186
|
This data source provides the list of Db Nodes in Oracle Cloud Infrastructure Database service.
|
187
187
|
|
188
|
-
Lists the database nodes in the specified
|
188
|
+
Lists the database nodes in the specified compartment. A database node is a server running database software. In addition to the other required parameters, either '--db-system-id' or '--vm-cluster-id' also must be provided, depending on the service being accessed.
|
189
189
|
|
190
190
|
## Example Usage
|
191
191
|
|