pulumi-oci 2.14.0a1730182164__py3-none-any.whl → 2.15.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/containerengine/addon.py +54 -7
- pulumi_oci/containerengine/get_addon.py +12 -1
- pulumi_oci/containerengine/outputs.py +9 -1
- pulumi_oci/core/_inputs.py +74 -0
- pulumi_oci/core/get_instance.py +1 -1
- pulumi_oci/core/get_virtual_circuit.py +18 -4
- pulumi_oci/core/instance.py +7 -7
- pulumi_oci/core/instance_pool.py +7 -7
- pulumi_oci/core/outputs.py +165 -7
- pulumi_oci/core/virtual_circuit.py +30 -2
- pulumi_oci/database/_inputs.py +642 -0
- pulumi_oci/database/autonomous_container_database.py +14 -14
- pulumi_oci/database/autonomous_database.py +75 -0
- pulumi_oci/database/get_autonomous_container_database.py +3 -3
- pulumi_oci/database/get_autonomous_database.py +29 -1
- pulumi_oci/database/get_autonomous_databases.py +22 -28
- pulumi_oci/database/outputs.py +1669 -86
- pulumi_oci/datasafe/__init__.py +2 -0
- pulumi_oci/datasafe/_inputs.py +49 -0
- pulumi_oci/datasafe/get_database_security_config.py +307 -0
- pulumi_oci/datasafe/get_database_security_configs.py +342 -0
- pulumi_oci/datasafe/outputs.py +325 -0
- pulumi_oci/datascience/_inputs.py +353 -0
- pulumi_oci/datascience/get_model.py +113 -4
- pulumi_oci/datascience/get_models.py +30 -5
- pulumi_oci/datascience/model.py +346 -5
- pulumi_oci/datascience/outputs.py +778 -1
- pulumi_oci/filestorage/_inputs.py +651 -0
- pulumi_oci/filestorage/export.py +96 -3
- pulumi_oci/filestorage/file_system.py +93 -0
- pulumi_oci/filestorage/filesystem_snapshot_policy.py +93 -0
- pulumi_oci/filestorage/get_filesystem_snapshot_policy.py +26 -1
- pulumi_oci/filestorage/get_outbound_connector.py +26 -1
- pulumi_oci/filestorage/get_replication.py +27 -1
- pulumi_oci/filestorage/get_snapshot.py +27 -1
- pulumi_oci/filestorage/mount_target.py +108 -0
- pulumi_oci/filestorage/outbound_connector.py +93 -0
- pulumi_oci/filestorage/outputs.py +1218 -2
- pulumi_oci/filestorage/replication.py +95 -0
- pulumi_oci/filestorage/snapshot.py +97 -2
- pulumi_oci/identity/domains_auth_token.py +68 -0
- pulumi_oci/identity/domains_customer_secret_key.py +56 -0
- pulumi_oci/identity/domains_oauth2client_credential.py +64 -0
- pulumi_oci/identity/domains_smtp_credential.py +60 -0
- pulumi_oci/identity/get_domains_auth_token.py +15 -1
- pulumi_oci/identity/get_domains_customer_secret_key.py +15 -1
- pulumi_oci/identity/get_domains_oauth2client_credential.py +15 -1
- pulumi_oci/identity/get_domains_smtp_credential.py +15 -1
- pulumi_oci/identity/outputs.py +44 -0
- pulumi_oci/loadbalancer/listener.py +7 -7
- pulumi_oci/networkloadbalancer/get_backend_set.py +1 -1
- pulumi_oci/networkloadbalancer/get_listener.py +15 -1
- pulumi_oci/networkloadbalancer/get_network_load_balancer.py +15 -1
- pulumi_oci/networkloadbalancer/listener.py +49 -0
- pulumi_oci/networkloadbalancer/network_load_balancer.py +47 -0
- pulumi_oci/networkloadbalancer/outputs.py +24 -2
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/resourcescheduler/_inputs.py +24 -21
- pulumi_oci/resourcescheduler/get_schedules.py +6 -6
- pulumi_oci/resourcescheduler/outputs.py +18 -16
- pulumi_oci/resourcescheduler/schedule.py +14 -88
- {pulumi_oci-2.14.0a1730182164.dist-info → pulumi_oci-2.15.0.dist-info}/METADATA +1 -1
- {pulumi_oci-2.14.0a1730182164.dist-info → pulumi_oci-2.15.0.dist-info}/RECORD +65 -63
- {pulumi_oci-2.14.0a1730182164.dist-info → pulumi_oci-2.15.0.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.14.0a1730182164.dist-info → pulumi_oci-2.15.0.dist-info}/top_level.txt +0 -0
@@ -28,7 +28,7 @@ class GetModelsResult:
|
|
28
28
|
"""
|
29
29
|
A collection of values returned by getModels.
|
30
30
|
"""
|
31
|
-
def __init__(__self__, compartment_id=None, created_by=None, display_name=None, filters=None, id=None, model_version_set_name=None, models=None, project_id=None, state=None, version_label=None):
|
31
|
+
def __init__(__self__, compartment_id=None, created_by=None, display_name=None, filters=None, id=None, model_version_set_id=None, model_version_set_name=None, models=None, project_id=None, state=None, version_label=None):
|
32
32
|
if compartment_id and not isinstance(compartment_id, str):
|
33
33
|
raise TypeError("Expected argument 'compartment_id' to be a str")
|
34
34
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
@@ -44,6 +44,9 @@ class GetModelsResult:
|
|
44
44
|
if id and not isinstance(id, str):
|
45
45
|
raise TypeError("Expected argument 'id' to be a str")
|
46
46
|
pulumi.set(__self__, "id", id)
|
47
|
+
if model_version_set_id and not isinstance(model_version_set_id, str):
|
48
|
+
raise TypeError("Expected argument 'model_version_set_id' to be a str")
|
49
|
+
pulumi.set(__self__, "model_version_set_id", model_version_set_id)
|
47
50
|
if model_version_set_name and not isinstance(model_version_set_name, str):
|
48
51
|
raise TypeError("Expected argument 'model_version_set_name' to be a str")
|
49
52
|
pulumi.set(__self__, "model_version_set_name", model_version_set_name)
|
@@ -97,9 +100,20 @@ class GetModelsResult:
|
|
97
100
|
"""
|
98
101
|
return pulumi.get(self, "id")
|
99
102
|
|
103
|
+
@property
|
104
|
+
@pulumi.getter(name="modelVersionSetId")
|
105
|
+
def model_version_set_id(self) -> Optional[str]:
|
106
|
+
"""
|
107
|
+
The OCID of the model version set that the model is associated to.
|
108
|
+
"""
|
109
|
+
return pulumi.get(self, "model_version_set_id")
|
110
|
+
|
100
111
|
@property
|
101
112
|
@pulumi.getter(name="modelVersionSetName")
|
102
|
-
def model_version_set_name(self) -> str:
|
113
|
+
def model_version_set_name(self) -> Optional[str]:
|
114
|
+
"""
|
115
|
+
The name of the model version set that the model is associated to.
|
116
|
+
"""
|
103
117
|
return pulumi.get(self, "model_version_set_name")
|
104
118
|
|
105
119
|
@property
|
@@ -128,7 +142,7 @@ class GetModelsResult:
|
|
128
142
|
|
129
143
|
@property
|
130
144
|
@pulumi.getter(name="versionLabel")
|
131
|
-
def version_label(self) -> str:
|
145
|
+
def version_label(self) -> Optional[str]:
|
132
146
|
return pulumi.get(self, "version_label")
|
133
147
|
|
134
148
|
|
@@ -143,6 +157,7 @@ class AwaitableGetModelsResult(GetModelsResult):
|
|
143
157
|
display_name=self.display_name,
|
144
158
|
filters=self.filters,
|
145
159
|
id=self.id,
|
160
|
+
model_version_set_id=self.model_version_set_id,
|
146
161
|
model_version_set_name=self.model_version_set_name,
|
147
162
|
models=self.models,
|
148
163
|
project_id=self.project_id,
|
@@ -155,6 +170,7 @@ def get_models(compartment_id: Optional[str] = None,
|
|
155
170
|
display_name: Optional[str] = None,
|
156
171
|
filters: Optional[Sequence[Union['GetModelsFilterArgs', 'GetModelsFilterArgsDict']]] = None,
|
157
172
|
id: Optional[str] = None,
|
173
|
+
model_version_set_id: Optional[str] = None,
|
158
174
|
model_version_set_name: Optional[str] = None,
|
159
175
|
project_id: Optional[str] = None,
|
160
176
|
state: Optional[str] = None,
|
@@ -185,6 +201,8 @@ def get_models(compartment_id: Optional[str] = None,
|
|
185
201
|
:param str created_by: <b>Filter</b> results by the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the user who created the resource.
|
186
202
|
:param str display_name: <b>Filter</b> results by its user-friendly name.
|
187
203
|
:param str id: <b>Filter</b> results by [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). Must be an OCID of the correct type for the resource type.
|
204
|
+
:param str model_version_set_id: The OCID of the model version set that the model is associated to.
|
205
|
+
:param str model_version_set_name: The name of the model version set that the model is associated to.
|
188
206
|
:param str project_id: <b>Filter</b> results by the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the project.
|
189
207
|
:param str state: <b>Filter</b> results by the specified lifecycle state. Must be a valid state for the resource type.
|
190
208
|
"""
|
@@ -194,6 +212,7 @@ def get_models(compartment_id: Optional[str] = None,
|
|
194
212
|
__args__['displayName'] = display_name
|
195
213
|
__args__['filters'] = filters
|
196
214
|
__args__['id'] = id
|
215
|
+
__args__['modelVersionSetId'] = model_version_set_id
|
197
216
|
__args__['modelVersionSetName'] = model_version_set_name
|
198
217
|
__args__['projectId'] = project_id
|
199
218
|
__args__['state'] = state
|
@@ -207,6 +226,7 @@ def get_models(compartment_id: Optional[str] = None,
|
|
207
226
|
display_name=pulumi.get(__ret__, 'display_name'),
|
208
227
|
filters=pulumi.get(__ret__, 'filters'),
|
209
228
|
id=pulumi.get(__ret__, 'id'),
|
229
|
+
model_version_set_id=pulumi.get(__ret__, 'model_version_set_id'),
|
210
230
|
model_version_set_name=pulumi.get(__ret__, 'model_version_set_name'),
|
211
231
|
models=pulumi.get(__ret__, 'models'),
|
212
232
|
project_id=pulumi.get(__ret__, 'project_id'),
|
@@ -217,10 +237,11 @@ def get_models_output(compartment_id: Optional[pulumi.Input[str]] = None,
|
|
217
237
|
display_name: Optional[pulumi.Input[Optional[str]]] = None,
|
218
238
|
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetModelsFilterArgs', 'GetModelsFilterArgsDict']]]]] = None,
|
219
239
|
id: Optional[pulumi.Input[Optional[str]]] = None,
|
220
|
-
|
240
|
+
model_version_set_id: Optional[pulumi.Input[Optional[str]]] = None,
|
241
|
+
model_version_set_name: Optional[pulumi.Input[Optional[str]]] = None,
|
221
242
|
project_id: Optional[pulumi.Input[Optional[str]]] = None,
|
222
243
|
state: Optional[pulumi.Input[Optional[str]]] = None,
|
223
|
-
version_label: Optional[pulumi.Input[str]] = None,
|
244
|
+
version_label: Optional[pulumi.Input[Optional[str]]] = None,
|
224
245
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetModelsResult]:
|
225
246
|
"""
|
226
247
|
This data source provides the list of Models in Oracle Cloud Infrastructure Data Science service.
|
@@ -247,6 +268,8 @@ def get_models_output(compartment_id: Optional[pulumi.Input[str]] = None,
|
|
247
268
|
:param str created_by: <b>Filter</b> results by the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the user who created the resource.
|
248
269
|
:param str display_name: <b>Filter</b> results by its user-friendly name.
|
249
270
|
:param str id: <b>Filter</b> results by [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). Must be an OCID of the correct type for the resource type.
|
271
|
+
:param str model_version_set_id: The OCID of the model version set that the model is associated to.
|
272
|
+
:param str model_version_set_name: The name of the model version set that the model is associated to.
|
250
273
|
:param str project_id: <b>Filter</b> results by the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the project.
|
251
274
|
:param str state: <b>Filter</b> results by the specified lifecycle state. Must be a valid state for the resource type.
|
252
275
|
"""
|
@@ -256,6 +279,7 @@ def get_models_output(compartment_id: Optional[pulumi.Input[str]] = None,
|
|
256
279
|
__args__['displayName'] = display_name
|
257
280
|
__args__['filters'] = filters
|
258
281
|
__args__['id'] = id
|
282
|
+
__args__['modelVersionSetId'] = model_version_set_id
|
259
283
|
__args__['modelVersionSetName'] = model_version_set_name
|
260
284
|
__args__['projectId'] = project_id
|
261
285
|
__args__['state'] = state
|
@@ -268,6 +292,7 @@ def get_models_output(compartment_id: Optional[pulumi.Input[str]] = None,
|
|
268
292
|
display_name=pulumi.get(__response__, 'display_name'),
|
269
293
|
filters=pulumi.get(__response__, 'filters'),
|
270
294
|
id=pulumi.get(__response__, 'id'),
|
295
|
+
model_version_set_id=pulumi.get(__response__, 'model_version_set_id'),
|
271
296
|
model_version_set_name=pulumi.get(__response__, 'model_version_set_name'),
|
272
297
|
models=pulumi.get(__response__, 'models'),
|
273
298
|
project_id=pulumi.get(__response__, 'project_id'),
|