pulumi-oci 2.1.0a1719958917__py3-none-any.whl → 2.2.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 +1633 -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 +440 -0
- pulumi_oci/databasemigration/get_migration_object_types.py +24 -13
- pulumi_oci/databasemigration/get_migrations.py +420 -0
- pulumi_oci/databasemigration/job.py +16 -20
- pulumi_oci/databasemigration/migration.py +1528 -0
- pulumi_oci/databasemigration/outputs.py +4447 -76
- 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/meteringcomputation/_inputs.py +32 -0
- pulumi_oci/meteringcomputation/outputs.py +29 -1
- 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.1.0a1719958917.dist-info → pulumi_oci-2.2.0.dist-info}/METADATA +1 -1
- {pulumi_oci-2.1.0a1719958917.dist-info → pulumi_oci-2.2.0.dist-info}/RECORD +61 -38
- {pulumi_oci-2.1.0a1719958917.dist-info → pulumi_oci-2.2.0.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.1.0a1719958917.dist-info → pulumi_oci-2.2.0.dist-info}/top_level.txt +0 -0
@@ -1792,6 +1792,8 @@ class UsageGroupByTagArgs:
|
|
1792
1792
|
class UsageItemArgs:
|
1793
1793
|
def __init__(__self__, *,
|
1794
1794
|
ad: Optional[pulumi.Input[str]] = None,
|
1795
|
+
attributed_cost: Optional[pulumi.Input[str]] = None,
|
1796
|
+
attributed_usage: Optional[pulumi.Input[str]] = None,
|
1795
1797
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
1796
1798
|
compartment_name: Optional[pulumi.Input[str]] = None,
|
1797
1799
|
compartment_path: Optional[pulumi.Input[str]] = None,
|
@@ -1822,6 +1824,8 @@ class UsageItemArgs:
|
|
1822
1824
|
weight: Optional[pulumi.Input[float]] = None):
|
1823
1825
|
"""
|
1824
1826
|
:param pulumi.Input[str] ad: The availability domain of the usage.
|
1827
|
+
:param pulumi.Input[str] attributed_cost: The attributed cost with a max value of 9999999999.999999999999 and a minimum value of 0.
|
1828
|
+
:param pulumi.Input[str] attributed_usage: The attributed usage with a max value of 9999999999.999999999999 and a minimum value of 0.
|
1825
1829
|
:param pulumi.Input[str] compartment_id: The compartment OCID.
|
1826
1830
|
:param pulumi.Input[str] compartment_name: The compartment name.
|
1827
1831
|
:param pulumi.Input[str] compartment_path: The compartment path, starting from root.
|
@@ -1857,6 +1861,10 @@ class UsageItemArgs:
|
|
1857
1861
|
"""
|
1858
1862
|
if ad is not None:
|
1859
1863
|
pulumi.set(__self__, "ad", ad)
|
1864
|
+
if attributed_cost is not None:
|
1865
|
+
pulumi.set(__self__, "attributed_cost", attributed_cost)
|
1866
|
+
if attributed_usage is not None:
|
1867
|
+
pulumi.set(__self__, "attributed_usage", attributed_usage)
|
1860
1868
|
if compartment_id is not None:
|
1861
1869
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
1862
1870
|
if compartment_name is not None:
|
@@ -1926,6 +1934,30 @@ class UsageItemArgs:
|
|
1926
1934
|
def ad(self, value: Optional[pulumi.Input[str]]):
|
1927
1935
|
pulumi.set(self, "ad", value)
|
1928
1936
|
|
1937
|
+
@property
|
1938
|
+
@pulumi.getter(name="attributedCost")
|
1939
|
+
def attributed_cost(self) -> Optional[pulumi.Input[str]]:
|
1940
|
+
"""
|
1941
|
+
The attributed cost with a max value of 9999999999.999999999999 and a minimum value of 0.
|
1942
|
+
"""
|
1943
|
+
return pulumi.get(self, "attributed_cost")
|
1944
|
+
|
1945
|
+
@attributed_cost.setter
|
1946
|
+
def attributed_cost(self, value: Optional[pulumi.Input[str]]):
|
1947
|
+
pulumi.set(self, "attributed_cost", value)
|
1948
|
+
|
1949
|
+
@property
|
1950
|
+
@pulumi.getter(name="attributedUsage")
|
1951
|
+
def attributed_usage(self) -> Optional[pulumi.Input[str]]:
|
1952
|
+
"""
|
1953
|
+
The attributed usage with a max value of 9999999999.999999999999 and a minimum value of 0.
|
1954
|
+
"""
|
1955
|
+
return pulumi.get(self, "attributed_usage")
|
1956
|
+
|
1957
|
+
@attributed_usage.setter
|
1958
|
+
def attributed_usage(self, value: Optional[pulumi.Input[str]]):
|
1959
|
+
pulumi.set(self, "attributed_usage", value)
|
1960
|
+
|
1929
1961
|
@property
|
1930
1962
|
@pulumi.getter(name="compartmentId")
|
1931
1963
|
def compartment_id(self) -> Optional[pulumi.Input[str]]:
|
@@ -1755,7 +1755,11 @@ class UsageItem(dict):
|
|
1755
1755
|
@staticmethod
|
1756
1756
|
def __key_warning(key: str):
|
1757
1757
|
suggest = None
|
1758
|
-
if key == "
|
1758
|
+
if key == "attributedCost":
|
1759
|
+
suggest = "attributed_cost"
|
1760
|
+
elif key == "attributedUsage":
|
1761
|
+
suggest = "attributed_usage"
|
1762
|
+
elif key == "compartmentId":
|
1759
1763
|
suggest = "compartment_id"
|
1760
1764
|
elif key == "compartmentName":
|
1761
1765
|
suggest = "compartment_name"
|
@@ -1805,6 +1809,8 @@ class UsageItem(dict):
|
|
1805
1809
|
|
1806
1810
|
def __init__(__self__, *,
|
1807
1811
|
ad: Optional[str] = None,
|
1812
|
+
attributed_cost: Optional[str] = None,
|
1813
|
+
attributed_usage: Optional[str] = None,
|
1808
1814
|
compartment_id: Optional[str] = None,
|
1809
1815
|
compartment_name: Optional[str] = None,
|
1810
1816
|
compartment_path: Optional[str] = None,
|
@@ -1835,6 +1841,8 @@ class UsageItem(dict):
|
|
1835
1841
|
weight: Optional[float] = None):
|
1836
1842
|
"""
|
1837
1843
|
:param str ad: The availability domain of the usage.
|
1844
|
+
:param str attributed_cost: The attributed cost with a max value of 9999999999.999999999999 and a minimum value of 0.
|
1845
|
+
:param str attributed_usage: The attributed usage with a max value of 9999999999.999999999999 and a minimum value of 0.
|
1838
1846
|
:param str compartment_id: The compartment OCID.
|
1839
1847
|
:param str compartment_name: The compartment name.
|
1840
1848
|
:param str compartment_path: The compartment path, starting from root.
|
@@ -1870,6 +1878,10 @@ class UsageItem(dict):
|
|
1870
1878
|
"""
|
1871
1879
|
if ad is not None:
|
1872
1880
|
pulumi.set(__self__, "ad", ad)
|
1881
|
+
if attributed_cost is not None:
|
1882
|
+
pulumi.set(__self__, "attributed_cost", attributed_cost)
|
1883
|
+
if attributed_usage is not None:
|
1884
|
+
pulumi.set(__self__, "attributed_usage", attributed_usage)
|
1873
1885
|
if compartment_id is not None:
|
1874
1886
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
1875
1887
|
if compartment_name is not None:
|
@@ -1935,6 +1947,22 @@ class UsageItem(dict):
|
|
1935
1947
|
"""
|
1936
1948
|
return pulumi.get(self, "ad")
|
1937
1949
|
|
1950
|
+
@property
|
1951
|
+
@pulumi.getter(name="attributedCost")
|
1952
|
+
def attributed_cost(self) -> Optional[str]:
|
1953
|
+
"""
|
1954
|
+
The attributed cost with a max value of 9999999999.999999999999 and a minimum value of 0.
|
1955
|
+
"""
|
1956
|
+
return pulumi.get(self, "attributed_cost")
|
1957
|
+
|
1958
|
+
@property
|
1959
|
+
@pulumi.getter(name="attributedUsage")
|
1960
|
+
def attributed_usage(self) -> Optional[str]:
|
1961
|
+
"""
|
1962
|
+
The attributed usage with a max value of 9999999999.999999999999 and a minimum value of 0.
|
1963
|
+
"""
|
1964
|
+
return pulumi.get(self, "attributed_usage")
|
1965
|
+
|
1938
1966
|
@property
|
1939
1967
|
@pulumi.getter(name="compartmentId")
|
1940
1968
|
def compartment_id(self) -> Optional[str]:
|
pulumi_oci/pulumi-plugin.json
CHANGED
@@ -0,0 +1,12 @@
|
|
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_schedule import *
|
9
|
+
from .get_schedules import *
|
10
|
+
from .schedule import *
|
11
|
+
from ._inputs import *
|
12
|
+
from . import outputs
|
@@ -0,0 +1,224 @@
|
|
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
|
+
import copy
|
6
|
+
import warnings
|
7
|
+
import pulumi
|
8
|
+
import pulumi.runtime
|
9
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
10
|
+
from .. import _utilities
|
11
|
+
|
12
|
+
__all__ = [
|
13
|
+
'ScheduleResourceArgs',
|
14
|
+
'ScheduleResourceFilterArgs',
|
15
|
+
'ScheduleResourceFilterValueArgs',
|
16
|
+
'GetSchedulesFilterArgs',
|
17
|
+
]
|
18
|
+
|
19
|
+
@pulumi.input_type
|
20
|
+
class ScheduleResourceArgs:
|
21
|
+
def __init__(__self__, *,
|
22
|
+
id: pulumi.Input[str],
|
23
|
+
metadata: Optional[pulumi.Input[Mapping[str, Any]]] = None):
|
24
|
+
"""
|
25
|
+
:param pulumi.Input[str] id: (Updatable) This is the resource OCID.
|
26
|
+
:param pulumi.Input[Mapping[str, Any]] metadata: (Updatable) This is additional information that helps to identity the resource for the schedule.
|
27
|
+
|
28
|
+
{ "id": "<OCID_of_bucket>" "metadata": { "namespaceName": "sampleNamespace", "bucketName": "sampleBucket" } }
|
29
|
+
"""
|
30
|
+
pulumi.set(__self__, "id", id)
|
31
|
+
if metadata is not None:
|
32
|
+
pulumi.set(__self__, "metadata", metadata)
|
33
|
+
|
34
|
+
@property
|
35
|
+
@pulumi.getter
|
36
|
+
def id(self) -> pulumi.Input[str]:
|
37
|
+
"""
|
38
|
+
(Updatable) This is the resource OCID.
|
39
|
+
"""
|
40
|
+
return pulumi.get(self, "id")
|
41
|
+
|
42
|
+
@id.setter
|
43
|
+
def id(self, value: pulumi.Input[str]):
|
44
|
+
pulumi.set(self, "id", value)
|
45
|
+
|
46
|
+
@property
|
47
|
+
@pulumi.getter
|
48
|
+
def metadata(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
|
49
|
+
"""
|
50
|
+
(Updatable) This is additional information that helps to identity the resource for the schedule.
|
51
|
+
|
52
|
+
{ "id": "<OCID_of_bucket>" "metadata": { "namespaceName": "sampleNamespace", "bucketName": "sampleBucket" } }
|
53
|
+
"""
|
54
|
+
return pulumi.get(self, "metadata")
|
55
|
+
|
56
|
+
@metadata.setter
|
57
|
+
def metadata(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
|
58
|
+
pulumi.set(self, "metadata", value)
|
59
|
+
|
60
|
+
|
61
|
+
@pulumi.input_type
|
62
|
+
class ScheduleResourceFilterArgs:
|
63
|
+
def __init__(__self__, *,
|
64
|
+
attribute: pulumi.Input[str],
|
65
|
+
condition: Optional[pulumi.Input[str]] = None,
|
66
|
+
should_include_child_compartments: Optional[pulumi.Input[bool]] = None,
|
67
|
+
values: Optional[pulumi.Input[Sequence[pulumi.Input['ScheduleResourceFilterValueArgs']]]] = None):
|
68
|
+
"""
|
69
|
+
:param pulumi.Input[str] attribute: (Updatable) This is the resource attribute on which the threshold is defined.
|
70
|
+
:param pulumi.Input[str] condition: (Updatable) This is the condition for the filter in comparison to its creation time.
|
71
|
+
:param pulumi.Input[bool] should_include_child_compartments: (Updatable) This sets whether to include child compartments.
|
72
|
+
:param pulumi.Input[Sequence[pulumi.Input['ScheduleResourceFilterValueArgs']]] values: (Updatable) This is a collection of resource lifecycle state values.
|
73
|
+
"""
|
74
|
+
pulumi.set(__self__, "attribute", attribute)
|
75
|
+
if condition is not None:
|
76
|
+
pulumi.set(__self__, "condition", condition)
|
77
|
+
if should_include_child_compartments is not None:
|
78
|
+
pulumi.set(__self__, "should_include_child_compartments", should_include_child_compartments)
|
79
|
+
if values is not None:
|
80
|
+
pulumi.set(__self__, "values", values)
|
81
|
+
|
82
|
+
@property
|
83
|
+
@pulumi.getter
|
84
|
+
def attribute(self) -> pulumi.Input[str]:
|
85
|
+
"""
|
86
|
+
(Updatable) This is the resource attribute on which the threshold is defined.
|
87
|
+
"""
|
88
|
+
return pulumi.get(self, "attribute")
|
89
|
+
|
90
|
+
@attribute.setter
|
91
|
+
def attribute(self, value: pulumi.Input[str]):
|
92
|
+
pulumi.set(self, "attribute", value)
|
93
|
+
|
94
|
+
@property
|
95
|
+
@pulumi.getter
|
96
|
+
def condition(self) -> Optional[pulumi.Input[str]]:
|
97
|
+
"""
|
98
|
+
(Updatable) This is the condition for the filter in comparison to its creation time.
|
99
|
+
"""
|
100
|
+
return pulumi.get(self, "condition")
|
101
|
+
|
102
|
+
@condition.setter
|
103
|
+
def condition(self, value: Optional[pulumi.Input[str]]):
|
104
|
+
pulumi.set(self, "condition", value)
|
105
|
+
|
106
|
+
@property
|
107
|
+
@pulumi.getter(name="shouldIncludeChildCompartments")
|
108
|
+
def should_include_child_compartments(self) -> Optional[pulumi.Input[bool]]:
|
109
|
+
"""
|
110
|
+
(Updatable) This sets whether to include child compartments.
|
111
|
+
"""
|
112
|
+
return pulumi.get(self, "should_include_child_compartments")
|
113
|
+
|
114
|
+
@should_include_child_compartments.setter
|
115
|
+
def should_include_child_compartments(self, value: Optional[pulumi.Input[bool]]):
|
116
|
+
pulumi.set(self, "should_include_child_compartments", value)
|
117
|
+
|
118
|
+
@property
|
119
|
+
@pulumi.getter
|
120
|
+
def values(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ScheduleResourceFilterValueArgs']]]]:
|
121
|
+
"""
|
122
|
+
(Updatable) This is a collection of resource lifecycle state values.
|
123
|
+
"""
|
124
|
+
return pulumi.get(self, "values")
|
125
|
+
|
126
|
+
@values.setter
|
127
|
+
def values(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ScheduleResourceFilterValueArgs']]]]):
|
128
|
+
pulumi.set(self, "values", value)
|
129
|
+
|
130
|
+
|
131
|
+
@pulumi.input_type
|
132
|
+
class ScheduleResourceFilterValueArgs:
|
133
|
+
def __init__(__self__, *,
|
134
|
+
namespace: Optional[pulumi.Input[str]] = None,
|
135
|
+
tag_key: Optional[pulumi.Input[str]] = None,
|
136
|
+
value: Optional[pulumi.Input[str]] = None):
|
137
|
+
"""
|
138
|
+
:param pulumi.Input[str] namespace: (Updatable) This is the namespace of the defined tag.
|
139
|
+
:param pulumi.Input[str] tag_key: (Updatable) This is the key of the defined tag.
|
140
|
+
:param pulumi.Input[str] value: (Updatable) This is the value of the defined tag.
|
141
|
+
"""
|
142
|
+
if namespace is not None:
|
143
|
+
pulumi.set(__self__, "namespace", namespace)
|
144
|
+
if tag_key is not None:
|
145
|
+
pulumi.set(__self__, "tag_key", tag_key)
|
146
|
+
if value is not None:
|
147
|
+
pulumi.set(__self__, "value", value)
|
148
|
+
|
149
|
+
@property
|
150
|
+
@pulumi.getter
|
151
|
+
def namespace(self) -> Optional[pulumi.Input[str]]:
|
152
|
+
"""
|
153
|
+
(Updatable) This is the namespace of the defined tag.
|
154
|
+
"""
|
155
|
+
return pulumi.get(self, "namespace")
|
156
|
+
|
157
|
+
@namespace.setter
|
158
|
+
def namespace(self, value: Optional[pulumi.Input[str]]):
|
159
|
+
pulumi.set(self, "namespace", value)
|
160
|
+
|
161
|
+
@property
|
162
|
+
@pulumi.getter(name="tagKey")
|
163
|
+
def tag_key(self) -> Optional[pulumi.Input[str]]:
|
164
|
+
"""
|
165
|
+
(Updatable) This is the key of the defined tag.
|
166
|
+
"""
|
167
|
+
return pulumi.get(self, "tag_key")
|
168
|
+
|
169
|
+
@tag_key.setter
|
170
|
+
def tag_key(self, value: Optional[pulumi.Input[str]]):
|
171
|
+
pulumi.set(self, "tag_key", value)
|
172
|
+
|
173
|
+
@property
|
174
|
+
@pulumi.getter
|
175
|
+
def value(self) -> Optional[pulumi.Input[str]]:
|
176
|
+
"""
|
177
|
+
(Updatable) This is the value of the defined tag.
|
178
|
+
"""
|
179
|
+
return pulumi.get(self, "value")
|
180
|
+
|
181
|
+
@value.setter
|
182
|
+
def value(self, value: Optional[pulumi.Input[str]]):
|
183
|
+
pulumi.set(self, "value", value)
|
184
|
+
|
185
|
+
|
186
|
+
@pulumi.input_type
|
187
|
+
class GetSchedulesFilterArgs:
|
188
|
+
def __init__(__self__, *,
|
189
|
+
name: str,
|
190
|
+
values: Sequence[str],
|
191
|
+
regex: Optional[bool] = None):
|
192
|
+
pulumi.set(__self__, "name", name)
|
193
|
+
pulumi.set(__self__, "values", values)
|
194
|
+
if regex is not None:
|
195
|
+
pulumi.set(__self__, "regex", regex)
|
196
|
+
|
197
|
+
@property
|
198
|
+
@pulumi.getter
|
199
|
+
def name(self) -> str:
|
200
|
+
return pulumi.get(self, "name")
|
201
|
+
|
202
|
+
@name.setter
|
203
|
+
def name(self, value: str):
|
204
|
+
pulumi.set(self, "name", value)
|
205
|
+
|
206
|
+
@property
|
207
|
+
@pulumi.getter
|
208
|
+
def values(self) -> Sequence[str]:
|
209
|
+
return pulumi.get(self, "values")
|
210
|
+
|
211
|
+
@values.setter
|
212
|
+
def values(self, value: Sequence[str]):
|
213
|
+
pulumi.set(self, "values", value)
|
214
|
+
|
215
|
+
@property
|
216
|
+
@pulumi.getter
|
217
|
+
def regex(self) -> Optional[bool]:
|
218
|
+
return pulumi.get(self, "regex")
|
219
|
+
|
220
|
+
@regex.setter
|
221
|
+
def regex(self, value: Optional[bool]):
|
222
|
+
pulumi.set(self, "regex", value)
|
223
|
+
|
224
|
+
|