pulumi-oci 2.13.0a1729198151__py3-none-any.whl → 2.14.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 +24 -19
- pulumi_oci/containerengine/_inputs.py +341 -0
- pulumi_oci/containerengine/cluster.py +64 -0
- pulumi_oci/containerengine/get_cluster.py +12 -1
- pulumi_oci/containerengine/outputs.py +582 -0
- pulumi_oci/core/_inputs.py +373 -37
- pulumi_oci/core/boot_volume.py +90 -5
- pulumi_oci/core/get_block_volume_replica.py +15 -1
- pulumi_oci/core/get_boot_volume.py +15 -4
- pulumi_oci/core/get_boot_volume_replica.py +15 -1
- pulumi_oci/core/get_instance.py +1 -1
- pulumi_oci/core/get_virtual_circuit.py +18 -4
- pulumi_oci/core/get_volume.py +18 -4
- pulumi_oci/core/instance.py +7 -7
- pulumi_oci/core/instance_configuration.py +4 -0
- pulumi_oci/core/outputs.py +738 -53
- pulumi_oci/core/virtual_circuit.py +30 -2
- pulumi_oci/core/volume.py +110 -12
- pulumi_oci/core/volume_backup_policy_assignment.py +68 -19
- pulumi_oci/core/volume_group.py +56 -5
- 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 +1 -0
- pulumi_oci/datasafe/generate_on_prem_connector_configuration.py +271 -0
- pulumi_oci/datascience/_inputs.py +353 -0
- pulumi_oci/datascience/get_model.py +85 -1
- pulumi_oci/datascience/get_models.py +5 -0
- pulumi_oci/datascience/model.py +206 -66
- pulumi_oci/datascience/outputs.py +759 -0
- pulumi_oci/desktops/_inputs.py +175 -13
- pulumi_oci/desktops/desktop_pool.py +67 -0
- pulumi_oci/desktops/get_desktop_pool.py +16 -1
- pulumi_oci/desktops/outputs.py +339 -18
- pulumi_oci/dns/__init__.py +2 -0
- pulumi_oci/dns/_inputs.py +1157 -12
- pulumi_oci/dns/action_create_zone_from_zone_file.py +42 -2
- pulumi_oci/dns/get_records.py +45 -13
- pulumi_oci/dns/get_resolver.py +8 -6
- pulumi_oci/dns/get_resolver_endpoint.py +8 -6
- pulumi_oci/dns/get_resolver_endpoints.py +2 -2
- pulumi_oci/dns/get_resolvers.py +12 -12
- pulumi_oci/dns/get_rrset.py +16 -16
- pulumi_oci/dns/get_rrsets.py +12 -10
- pulumi_oci/dns/get_view.py +8 -4
- pulumi_oci/dns/get_views.py +12 -12
- pulumi_oci/dns/get_zones.py +33 -13
- pulumi_oci/dns/outputs.py +1388 -79
- pulumi_oci/dns/record.py +12 -12
- pulumi_oci/dns/resolver.py +7 -7
- pulumi_oci/dns/resolver_endpoint.py +2 -2
- pulumi_oci/dns/rrset.py +50 -41
- pulumi_oci/dns/zone.py +176 -17
- pulumi_oci/dns/zone_promote_dnssec_key_version.py +328 -0
- pulumi_oci/dns/zone_stage_dnssec_key_version.py +318 -0
- 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/goldengate/__init__.py +1 -0
- pulumi_oci/goldengate/_inputs.py +165 -0
- pulumi_oci/goldengate/connection.py +49 -35
- pulumi_oci/goldengate/database_registration.py +7 -7
- pulumi_oci/goldengate/deployment.py +79 -4
- pulumi_oci/goldengate/get_deployment.py +30 -2
- pulumi_oci/goldengate/get_deployment_environments.py +144 -0
- pulumi_oci/goldengate/outputs.py +409 -2
- pulumi_oci/networkloadbalancer/get_network_load_balancer.py +15 -1
- pulumi_oci/networkloadbalancer/network_load_balancer.py +47 -0
- pulumi_oci/networkloadbalancer/outputs.py +11 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-2.13.0a1729198151.dist-info → pulumi_oci-2.14.0.dist-info}/METADATA +1 -1
- {pulumi_oci-2.13.0a1729198151.dist-info → pulumi_oci-2.14.0.dist-info}/RECORD +88 -93
- {pulumi_oci-2.13.0a1729198151.dist-info → pulumi_oci-2.14.0.dist-info}/WHEEL +1 -1
- pulumi_oci/globallydistributeddatabase/__init__.py +0 -15
- pulumi_oci/globallydistributeddatabase/_inputs.py +0 -1289
- pulumi_oci/globallydistributeddatabase/get_private_endpoint.py +0 -323
- pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +0 -191
- pulumi_oci/globallydistributeddatabase/get_sharded_database.py +0 -660
- pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +0 -191
- pulumi_oci/globallydistributeddatabase/outputs.py +0 -2063
- pulumi_oci/globallydistributeddatabase/private_endpoint.py +0 -747
- pulumi_oci/globallydistributeddatabase/sharded_database.py +0 -1821
- {pulumi_oci-2.13.0a1729198151.dist-info → pulumi_oci-2.14.0.dist-info}/top_level.txt +0 -0
@@ -27,7 +27,7 @@ class GetModelResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getModel.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, artifact_content_disposition=None, artifact_content_length=None, artifact_content_md5=None, artifact_last_modified=None, compartment_id=None, created_by=None, custom_metadata_lists=None, defined_metadata_lists=None, defined_tags=None, description=None, display_name=None, empty_model=None, freeform_tags=None, id=None, input_schema=None, model_artifact=None, model_id=None, output_schema=None, project_id=None, state=None, time_created=None):
|
30
|
+
def __init__(__self__, artifact_content_disposition=None, artifact_content_length=None, artifact_content_md5=None, artifact_last_modified=None, backup_operation_details=None, backup_settings=None, compartment_id=None, created_by=None, custom_metadata_lists=None, defined_metadata_lists=None, defined_tags=None, description=None, display_name=None, empty_model=None, freeform_tags=None, id=None, input_schema=None, lifecycle_details=None, model_artifact=None, model_id=None, model_version_set_name=None, output_schema=None, project_id=None, retention_operation_details=None, retention_settings=None, state=None, time_created=None):
|
31
31
|
if artifact_content_disposition and not isinstance(artifact_content_disposition, str):
|
32
32
|
raise TypeError("Expected argument 'artifact_content_disposition' to be a str")
|
33
33
|
pulumi.set(__self__, "artifact_content_disposition", artifact_content_disposition)
|
@@ -40,6 +40,12 @@ class GetModelResult:
|
|
40
40
|
if artifact_last_modified and not isinstance(artifact_last_modified, str):
|
41
41
|
raise TypeError("Expected argument 'artifact_last_modified' to be a str")
|
42
42
|
pulumi.set(__self__, "artifact_last_modified", artifact_last_modified)
|
43
|
+
if backup_operation_details and not isinstance(backup_operation_details, list):
|
44
|
+
raise TypeError("Expected argument 'backup_operation_details' to be a list")
|
45
|
+
pulumi.set(__self__, "backup_operation_details", backup_operation_details)
|
46
|
+
if backup_settings and not isinstance(backup_settings, list):
|
47
|
+
raise TypeError("Expected argument 'backup_settings' to be a list")
|
48
|
+
pulumi.set(__self__, "backup_settings", backup_settings)
|
43
49
|
if compartment_id and not isinstance(compartment_id, str):
|
44
50
|
raise TypeError("Expected argument 'compartment_id' to be a str")
|
45
51
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
@@ -73,18 +79,30 @@ class GetModelResult:
|
|
73
79
|
if input_schema and not isinstance(input_schema, str):
|
74
80
|
raise TypeError("Expected argument 'input_schema' to be a str")
|
75
81
|
pulumi.set(__self__, "input_schema", input_schema)
|
82
|
+
if lifecycle_details and not isinstance(lifecycle_details, str):
|
83
|
+
raise TypeError("Expected argument 'lifecycle_details' to be a str")
|
84
|
+
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
76
85
|
if model_artifact and not isinstance(model_artifact, str):
|
77
86
|
raise TypeError("Expected argument 'model_artifact' to be a str")
|
78
87
|
pulumi.set(__self__, "model_artifact", model_artifact)
|
79
88
|
if model_id and not isinstance(model_id, str):
|
80
89
|
raise TypeError("Expected argument 'model_id' to be a str")
|
81
90
|
pulumi.set(__self__, "model_id", model_id)
|
91
|
+
if model_version_set_name and not isinstance(model_version_set_name, str):
|
92
|
+
raise TypeError("Expected argument 'model_version_set_name' to be a str")
|
93
|
+
pulumi.set(__self__, "model_version_set_name", model_version_set_name)
|
82
94
|
if output_schema and not isinstance(output_schema, str):
|
83
95
|
raise TypeError("Expected argument 'output_schema' to be a str")
|
84
96
|
pulumi.set(__self__, "output_schema", output_schema)
|
85
97
|
if project_id and not isinstance(project_id, str):
|
86
98
|
raise TypeError("Expected argument 'project_id' to be a str")
|
87
99
|
pulumi.set(__self__, "project_id", project_id)
|
100
|
+
if retention_operation_details and not isinstance(retention_operation_details, list):
|
101
|
+
raise TypeError("Expected argument 'retention_operation_details' to be a list")
|
102
|
+
pulumi.set(__self__, "retention_operation_details", retention_operation_details)
|
103
|
+
if retention_settings and not isinstance(retention_settings, list):
|
104
|
+
raise TypeError("Expected argument 'retention_settings' to be a list")
|
105
|
+
pulumi.set(__self__, "retention_settings", retention_settings)
|
88
106
|
if state and not isinstance(state, str):
|
89
107
|
raise TypeError("Expected argument 'state' to be a str")
|
90
108
|
pulumi.set(__self__, "state", state)
|
@@ -112,6 +130,22 @@ class GetModelResult:
|
|
112
130
|
def artifact_last_modified(self) -> str:
|
113
131
|
return pulumi.get(self, "artifact_last_modified")
|
114
132
|
|
133
|
+
@property
|
134
|
+
@pulumi.getter(name="backupOperationDetails")
|
135
|
+
def backup_operation_details(self) -> Sequence['outputs.GetModelBackupOperationDetailResult']:
|
136
|
+
"""
|
137
|
+
Backup operation details of the model.
|
138
|
+
"""
|
139
|
+
return pulumi.get(self, "backup_operation_details")
|
140
|
+
|
141
|
+
@property
|
142
|
+
@pulumi.getter(name="backupSettings")
|
143
|
+
def backup_settings(self) -> Sequence['outputs.GetModelBackupSettingResult']:
|
144
|
+
"""
|
145
|
+
Back up setting details of the model.
|
146
|
+
"""
|
147
|
+
return pulumi.get(self, "backup_settings")
|
148
|
+
|
115
149
|
@property
|
116
150
|
@pulumi.getter(name="compartmentId")
|
117
151
|
def compartment_id(self) -> str:
|
@@ -197,6 +231,14 @@ class GetModelResult:
|
|
197
231
|
"""
|
198
232
|
return pulumi.get(self, "input_schema")
|
199
233
|
|
234
|
+
@property
|
235
|
+
@pulumi.getter(name="lifecycleDetails")
|
236
|
+
def lifecycle_details(self) -> str:
|
237
|
+
"""
|
238
|
+
Details about the lifecycle state of the model.
|
239
|
+
"""
|
240
|
+
return pulumi.get(self, "lifecycle_details")
|
241
|
+
|
200
242
|
@property
|
201
243
|
@pulumi.getter(name="modelArtifact")
|
202
244
|
def model_artifact(self) -> str:
|
@@ -207,6 +249,14 @@ class GetModelResult:
|
|
207
249
|
def model_id(self) -> str:
|
208
250
|
return pulumi.get(self, "model_id")
|
209
251
|
|
252
|
+
@property
|
253
|
+
@pulumi.getter(name="modelVersionSetName")
|
254
|
+
def model_version_set_name(self) -> str:
|
255
|
+
"""
|
256
|
+
The name of the model version set that the model is associated to.
|
257
|
+
"""
|
258
|
+
return pulumi.get(self, "model_version_set_name")
|
259
|
+
|
210
260
|
@property
|
211
261
|
@pulumi.getter(name="outputSchema")
|
212
262
|
def output_schema(self) -> str:
|
@@ -223,6 +273,22 @@ class GetModelResult:
|
|
223
273
|
"""
|
224
274
|
return pulumi.get(self, "project_id")
|
225
275
|
|
276
|
+
@property
|
277
|
+
@pulumi.getter(name="retentionOperationDetails")
|
278
|
+
def retention_operation_details(self) -> Sequence['outputs.GetModelRetentionOperationDetailResult']:
|
279
|
+
"""
|
280
|
+
Retention operation details for the model.
|
281
|
+
"""
|
282
|
+
return pulumi.get(self, "retention_operation_details")
|
283
|
+
|
284
|
+
@property
|
285
|
+
@pulumi.getter(name="retentionSettings")
|
286
|
+
def retention_settings(self) -> Sequence['outputs.GetModelRetentionSettingResult']:
|
287
|
+
"""
|
288
|
+
Retention setting details of the model.
|
289
|
+
"""
|
290
|
+
return pulumi.get(self, "retention_settings")
|
291
|
+
|
226
292
|
@property
|
227
293
|
@pulumi.getter
|
228
294
|
def state(self) -> str:
|
@@ -250,6 +316,8 @@ class AwaitableGetModelResult(GetModelResult):
|
|
250
316
|
artifact_content_length=self.artifact_content_length,
|
251
317
|
artifact_content_md5=self.artifact_content_md5,
|
252
318
|
artifact_last_modified=self.artifact_last_modified,
|
319
|
+
backup_operation_details=self.backup_operation_details,
|
320
|
+
backup_settings=self.backup_settings,
|
253
321
|
compartment_id=self.compartment_id,
|
254
322
|
created_by=self.created_by,
|
255
323
|
custom_metadata_lists=self.custom_metadata_lists,
|
@@ -261,10 +329,14 @@ class AwaitableGetModelResult(GetModelResult):
|
|
261
329
|
freeform_tags=self.freeform_tags,
|
262
330
|
id=self.id,
|
263
331
|
input_schema=self.input_schema,
|
332
|
+
lifecycle_details=self.lifecycle_details,
|
264
333
|
model_artifact=self.model_artifact,
|
265
334
|
model_id=self.model_id,
|
335
|
+
model_version_set_name=self.model_version_set_name,
|
266
336
|
output_schema=self.output_schema,
|
267
337
|
project_id=self.project_id,
|
338
|
+
retention_operation_details=self.retention_operation_details,
|
339
|
+
retention_settings=self.retention_settings,
|
268
340
|
state=self.state,
|
269
341
|
time_created=self.time_created)
|
270
342
|
|
@@ -298,6 +370,8 @@ def get_model(model_id: Optional[str] = None,
|
|
298
370
|
artifact_content_length=pulumi.get(__ret__, 'artifact_content_length'),
|
299
371
|
artifact_content_md5=pulumi.get(__ret__, 'artifact_content_md5'),
|
300
372
|
artifact_last_modified=pulumi.get(__ret__, 'artifact_last_modified'),
|
373
|
+
backup_operation_details=pulumi.get(__ret__, 'backup_operation_details'),
|
374
|
+
backup_settings=pulumi.get(__ret__, 'backup_settings'),
|
301
375
|
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
302
376
|
created_by=pulumi.get(__ret__, 'created_by'),
|
303
377
|
custom_metadata_lists=pulumi.get(__ret__, 'custom_metadata_lists'),
|
@@ -309,10 +383,14 @@ def get_model(model_id: Optional[str] = None,
|
|
309
383
|
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
310
384
|
id=pulumi.get(__ret__, 'id'),
|
311
385
|
input_schema=pulumi.get(__ret__, 'input_schema'),
|
386
|
+
lifecycle_details=pulumi.get(__ret__, 'lifecycle_details'),
|
312
387
|
model_artifact=pulumi.get(__ret__, 'model_artifact'),
|
313
388
|
model_id=pulumi.get(__ret__, 'model_id'),
|
389
|
+
model_version_set_name=pulumi.get(__ret__, 'model_version_set_name'),
|
314
390
|
output_schema=pulumi.get(__ret__, 'output_schema'),
|
315
391
|
project_id=pulumi.get(__ret__, 'project_id'),
|
392
|
+
retention_operation_details=pulumi.get(__ret__, 'retention_operation_details'),
|
393
|
+
retention_settings=pulumi.get(__ret__, 'retention_settings'),
|
316
394
|
state=pulumi.get(__ret__, 'state'),
|
317
395
|
time_created=pulumi.get(__ret__, 'time_created'))
|
318
396
|
def get_model_output(model_id: Optional[pulumi.Input[str]] = None,
|
@@ -343,6 +421,8 @@ def get_model_output(model_id: Optional[pulumi.Input[str]] = None,
|
|
343
421
|
artifact_content_length=pulumi.get(__response__, 'artifact_content_length'),
|
344
422
|
artifact_content_md5=pulumi.get(__response__, 'artifact_content_md5'),
|
345
423
|
artifact_last_modified=pulumi.get(__response__, 'artifact_last_modified'),
|
424
|
+
backup_operation_details=pulumi.get(__response__, 'backup_operation_details'),
|
425
|
+
backup_settings=pulumi.get(__response__, 'backup_settings'),
|
346
426
|
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
347
427
|
created_by=pulumi.get(__response__, 'created_by'),
|
348
428
|
custom_metadata_lists=pulumi.get(__response__, 'custom_metadata_lists'),
|
@@ -354,9 +434,13 @@ def get_model_output(model_id: Optional[pulumi.Input[str]] = None,
|
|
354
434
|
freeform_tags=pulumi.get(__response__, 'freeform_tags'),
|
355
435
|
id=pulumi.get(__response__, 'id'),
|
356
436
|
input_schema=pulumi.get(__response__, 'input_schema'),
|
437
|
+
lifecycle_details=pulumi.get(__response__, 'lifecycle_details'),
|
357
438
|
model_artifact=pulumi.get(__response__, 'model_artifact'),
|
358
439
|
model_id=pulumi.get(__response__, 'model_id'),
|
440
|
+
model_version_set_name=pulumi.get(__response__, 'model_version_set_name'),
|
359
441
|
output_schema=pulumi.get(__response__, 'output_schema'),
|
360
442
|
project_id=pulumi.get(__response__, 'project_id'),
|
443
|
+
retention_operation_details=pulumi.get(__response__, 'retention_operation_details'),
|
444
|
+
retention_settings=pulumi.get(__response__, 'retention_settings'),
|
361
445
|
state=pulumi.get(__response__, 'state'),
|
362
446
|
time_created=pulumi.get(__response__, 'time_created')))
|
@@ -100,6 +100,9 @@ class GetModelsResult:
|
|
100
100
|
@property
|
101
101
|
@pulumi.getter(name="modelVersionSetName")
|
102
102
|
def model_version_set_name(self) -> str:
|
103
|
+
"""
|
104
|
+
The name of the model version set that the model is associated to.
|
105
|
+
"""
|
103
106
|
return pulumi.get(self, "model_version_set_name")
|
104
107
|
|
105
108
|
@property
|
@@ -185,6 +188,7 @@ def get_models(compartment_id: Optional[str] = None,
|
|
185
188
|
: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
189
|
:param str display_name: <b>Filter</b> results by its user-friendly name.
|
187
190
|
: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.
|
191
|
+
:param str model_version_set_name: The name of the model version set that the model is associated to.
|
188
192
|
: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
193
|
:param str state: <b>Filter</b> results by the specified lifecycle state. Must be a valid state for the resource type.
|
190
194
|
"""
|
@@ -247,6 +251,7 @@ def get_models_output(compartment_id: Optional[pulumi.Input[str]] = None,
|
|
247
251
|
: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
252
|
:param str display_name: <b>Filter</b> results by its user-friendly name.
|
249
253
|
: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.
|
254
|
+
:param str model_version_set_name: The name of the model version set that the model is associated to.
|
250
255
|
: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
256
|
:param str state: <b>Filter</b> results by the specified lifecycle state. Must be a valid state for the resource type.
|
252
257
|
"""
|