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.
Files changed (97) hide show
  1. pulumi_oci/__init__.py +24 -19
  2. pulumi_oci/containerengine/_inputs.py +341 -0
  3. pulumi_oci/containerengine/cluster.py +64 -0
  4. pulumi_oci/containerengine/get_cluster.py +12 -1
  5. pulumi_oci/containerengine/outputs.py +582 -0
  6. pulumi_oci/core/_inputs.py +373 -37
  7. pulumi_oci/core/boot_volume.py +90 -5
  8. pulumi_oci/core/get_block_volume_replica.py +15 -1
  9. pulumi_oci/core/get_boot_volume.py +15 -4
  10. pulumi_oci/core/get_boot_volume_replica.py +15 -1
  11. pulumi_oci/core/get_instance.py +1 -1
  12. pulumi_oci/core/get_virtual_circuit.py +18 -4
  13. pulumi_oci/core/get_volume.py +18 -4
  14. pulumi_oci/core/instance.py +7 -7
  15. pulumi_oci/core/instance_configuration.py +4 -0
  16. pulumi_oci/core/outputs.py +738 -53
  17. pulumi_oci/core/virtual_circuit.py +30 -2
  18. pulumi_oci/core/volume.py +110 -12
  19. pulumi_oci/core/volume_backup_policy_assignment.py +68 -19
  20. pulumi_oci/core/volume_group.py +56 -5
  21. pulumi_oci/database/_inputs.py +642 -0
  22. pulumi_oci/database/autonomous_container_database.py +14 -14
  23. pulumi_oci/database/autonomous_database.py +75 -0
  24. pulumi_oci/database/get_autonomous_container_database.py +3 -3
  25. pulumi_oci/database/get_autonomous_database.py +29 -1
  26. pulumi_oci/database/get_autonomous_databases.py +22 -28
  27. pulumi_oci/database/outputs.py +1669 -86
  28. pulumi_oci/datasafe/__init__.py +1 -0
  29. pulumi_oci/datasafe/generate_on_prem_connector_configuration.py +271 -0
  30. pulumi_oci/datascience/_inputs.py +353 -0
  31. pulumi_oci/datascience/get_model.py +85 -1
  32. pulumi_oci/datascience/get_models.py +5 -0
  33. pulumi_oci/datascience/model.py +206 -66
  34. pulumi_oci/datascience/outputs.py +759 -0
  35. pulumi_oci/desktops/_inputs.py +175 -13
  36. pulumi_oci/desktops/desktop_pool.py +67 -0
  37. pulumi_oci/desktops/get_desktop_pool.py +16 -1
  38. pulumi_oci/desktops/outputs.py +339 -18
  39. pulumi_oci/dns/__init__.py +2 -0
  40. pulumi_oci/dns/_inputs.py +1157 -12
  41. pulumi_oci/dns/action_create_zone_from_zone_file.py +42 -2
  42. pulumi_oci/dns/get_records.py +45 -13
  43. pulumi_oci/dns/get_resolver.py +8 -6
  44. pulumi_oci/dns/get_resolver_endpoint.py +8 -6
  45. pulumi_oci/dns/get_resolver_endpoints.py +2 -2
  46. pulumi_oci/dns/get_resolvers.py +12 -12
  47. pulumi_oci/dns/get_rrset.py +16 -16
  48. pulumi_oci/dns/get_rrsets.py +12 -10
  49. pulumi_oci/dns/get_view.py +8 -4
  50. pulumi_oci/dns/get_views.py +12 -12
  51. pulumi_oci/dns/get_zones.py +33 -13
  52. pulumi_oci/dns/outputs.py +1388 -79
  53. pulumi_oci/dns/record.py +12 -12
  54. pulumi_oci/dns/resolver.py +7 -7
  55. pulumi_oci/dns/resolver_endpoint.py +2 -2
  56. pulumi_oci/dns/rrset.py +50 -41
  57. pulumi_oci/dns/zone.py +176 -17
  58. pulumi_oci/dns/zone_promote_dnssec_key_version.py +328 -0
  59. pulumi_oci/dns/zone_stage_dnssec_key_version.py +318 -0
  60. pulumi_oci/filestorage/_inputs.py +651 -0
  61. pulumi_oci/filestorage/export.py +96 -3
  62. pulumi_oci/filestorage/file_system.py +93 -0
  63. pulumi_oci/filestorage/filesystem_snapshot_policy.py +93 -0
  64. pulumi_oci/filestorage/get_filesystem_snapshot_policy.py +26 -1
  65. pulumi_oci/filestorage/get_outbound_connector.py +26 -1
  66. pulumi_oci/filestorage/get_replication.py +27 -1
  67. pulumi_oci/filestorage/get_snapshot.py +27 -1
  68. pulumi_oci/filestorage/mount_target.py +108 -0
  69. pulumi_oci/filestorage/outbound_connector.py +93 -0
  70. pulumi_oci/filestorage/outputs.py +1218 -2
  71. pulumi_oci/filestorage/replication.py +95 -0
  72. pulumi_oci/filestorage/snapshot.py +97 -2
  73. pulumi_oci/goldengate/__init__.py +1 -0
  74. pulumi_oci/goldengate/_inputs.py +165 -0
  75. pulumi_oci/goldengate/connection.py +49 -35
  76. pulumi_oci/goldengate/database_registration.py +7 -7
  77. pulumi_oci/goldengate/deployment.py +79 -4
  78. pulumi_oci/goldengate/get_deployment.py +30 -2
  79. pulumi_oci/goldengate/get_deployment_environments.py +144 -0
  80. pulumi_oci/goldengate/outputs.py +409 -2
  81. pulumi_oci/networkloadbalancer/get_network_load_balancer.py +15 -1
  82. pulumi_oci/networkloadbalancer/network_load_balancer.py +47 -0
  83. pulumi_oci/networkloadbalancer/outputs.py +11 -0
  84. pulumi_oci/pulumi-plugin.json +1 -1
  85. {pulumi_oci-2.13.0a1729198151.dist-info → pulumi_oci-2.14.0.dist-info}/METADATA +1 -1
  86. {pulumi_oci-2.13.0a1729198151.dist-info → pulumi_oci-2.14.0.dist-info}/RECORD +88 -93
  87. {pulumi_oci-2.13.0a1729198151.dist-info → pulumi_oci-2.14.0.dist-info}/WHEEL +1 -1
  88. pulumi_oci/globallydistributeddatabase/__init__.py +0 -15
  89. pulumi_oci/globallydistributeddatabase/_inputs.py +0 -1289
  90. pulumi_oci/globallydistributeddatabase/get_private_endpoint.py +0 -323
  91. pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +0 -191
  92. pulumi_oci/globallydistributeddatabase/get_sharded_database.py +0 -660
  93. pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +0 -191
  94. pulumi_oci/globallydistributeddatabase/outputs.py +0 -2063
  95. pulumi_oci/globallydistributeddatabase/private_endpoint.py +0 -747
  96. pulumi_oci/globallydistributeddatabase/sharded_database.py +0 -1821
  97. {pulumi_oci-2.13.0a1729198151.dist-info → pulumi_oci-2.14.0.dist-info}/top_level.txt +0 -0
@@ -26,6 +26,7 @@ from .database_security_config import *
26
26
  from .database_security_config_management import *
27
27
  from .discovery_jobs_result import *
28
28
  from .discovery_mod import *
29
+ from .generate_on_prem_connector_configuration import *
29
30
  from .get_alert import *
30
31
  from .get_alert_analytic import *
31
32
  from .get_alert_policies import *
@@ -0,0 +1,271 @@
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 sys
8
+ import pulumi
9
+ import pulumi.runtime
10
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
15
+ from .. import _utilities
16
+
17
+ __all__ = ['GenerateOnPremConnectorConfigurationArgs', 'GenerateOnPremConnectorConfiguration']
18
+
19
+ @pulumi.input_type
20
+ class GenerateOnPremConnectorConfigurationArgs:
21
+ def __init__(__self__, *,
22
+ on_prem_connector_id: pulumi.Input[str],
23
+ password: pulumi.Input[str]):
24
+ """
25
+ The set of arguments for constructing a GenerateOnPremConnectorConfiguration resource.
26
+ :param pulumi.Input[str] on_prem_connector_id: The OCID of the on-premises connector.
27
+ :param pulumi.Input[str] password: The password to encrypt the keys inside the wallet included as part of the configuration. The password must be between 12 and 30 characters long and must contain atleast 1 uppercase, 1 lowercase, 1 numeric, and 1 special character.
28
+
29
+
30
+ ** IMPORTANT **
31
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
32
+ """
33
+ pulumi.set(__self__, "on_prem_connector_id", on_prem_connector_id)
34
+ pulumi.set(__self__, "password", password)
35
+
36
+ @property
37
+ @pulumi.getter(name="onPremConnectorId")
38
+ def on_prem_connector_id(self) -> pulumi.Input[str]:
39
+ """
40
+ The OCID of the on-premises connector.
41
+ """
42
+ return pulumi.get(self, "on_prem_connector_id")
43
+
44
+ @on_prem_connector_id.setter
45
+ def on_prem_connector_id(self, value: pulumi.Input[str]):
46
+ pulumi.set(self, "on_prem_connector_id", value)
47
+
48
+ @property
49
+ @pulumi.getter
50
+ def password(self) -> pulumi.Input[str]:
51
+ """
52
+ The password to encrypt the keys inside the wallet included as part of the configuration. The password must be between 12 and 30 characters long and must contain atleast 1 uppercase, 1 lowercase, 1 numeric, and 1 special character.
53
+
54
+
55
+ ** IMPORTANT **
56
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
57
+ """
58
+ return pulumi.get(self, "password")
59
+
60
+ @password.setter
61
+ def password(self, value: pulumi.Input[str]):
62
+ pulumi.set(self, "password", value)
63
+
64
+
65
+ @pulumi.input_type
66
+ class _GenerateOnPremConnectorConfigurationState:
67
+ def __init__(__self__, *,
68
+ on_prem_connector_id: Optional[pulumi.Input[str]] = None,
69
+ password: Optional[pulumi.Input[str]] = None):
70
+ """
71
+ Input properties used for looking up and filtering GenerateOnPremConnectorConfiguration resources.
72
+ :param pulumi.Input[str] on_prem_connector_id: The OCID of the on-premises connector.
73
+ :param pulumi.Input[str] password: The password to encrypt the keys inside the wallet included as part of the configuration. The password must be between 12 and 30 characters long and must contain atleast 1 uppercase, 1 lowercase, 1 numeric, and 1 special character.
74
+
75
+
76
+ ** IMPORTANT **
77
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
78
+ """
79
+ if on_prem_connector_id is not None:
80
+ pulumi.set(__self__, "on_prem_connector_id", on_prem_connector_id)
81
+ if password is not None:
82
+ pulumi.set(__self__, "password", password)
83
+
84
+ @property
85
+ @pulumi.getter(name="onPremConnectorId")
86
+ def on_prem_connector_id(self) -> Optional[pulumi.Input[str]]:
87
+ """
88
+ The OCID of the on-premises connector.
89
+ """
90
+ return pulumi.get(self, "on_prem_connector_id")
91
+
92
+ @on_prem_connector_id.setter
93
+ def on_prem_connector_id(self, value: Optional[pulumi.Input[str]]):
94
+ pulumi.set(self, "on_prem_connector_id", value)
95
+
96
+ @property
97
+ @pulumi.getter
98
+ def password(self) -> Optional[pulumi.Input[str]]:
99
+ """
100
+ The password to encrypt the keys inside the wallet included as part of the configuration. The password must be between 12 and 30 characters long and must contain atleast 1 uppercase, 1 lowercase, 1 numeric, and 1 special character.
101
+
102
+
103
+ ** IMPORTANT **
104
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
105
+ """
106
+ return pulumi.get(self, "password")
107
+
108
+ @password.setter
109
+ def password(self, value: Optional[pulumi.Input[str]]):
110
+ pulumi.set(self, "password", value)
111
+
112
+
113
+ class GenerateOnPremConnectorConfiguration(pulumi.CustomResource):
114
+ @overload
115
+ def __init__(__self__,
116
+ resource_name: str,
117
+ opts: Optional[pulumi.ResourceOptions] = None,
118
+ on_prem_connector_id: Optional[pulumi.Input[str]] = None,
119
+ password: Optional[pulumi.Input[str]] = None,
120
+ __props__=None):
121
+ """
122
+ This resource provides the Generate On Prem Connector Configuration resource in Oracle Cloud Infrastructure Data Safe service.
123
+
124
+ Creates and downloads the configuration of the specified on-premises connector.
125
+
126
+ ## Example Usage
127
+
128
+ ```python
129
+ import pulumi
130
+ import pulumi_oci as oci
131
+
132
+ test_generate_on_prem_connector_configuration = oci.data_safe.GenerateOnPremConnectorConfiguration("test_generate_on_prem_connector_configuration",
133
+ on_prem_connector_id=test_on_prem_connector["id"],
134
+ password=generate_on_prem_connector_configuration_password)
135
+ ```
136
+
137
+ ## Import
138
+
139
+ GenerateOnPremConnectorConfiguration can be imported using the `id`, e.g.
140
+
141
+ ```sh
142
+ $ pulumi import oci:DataSafe/generateOnPremConnectorConfiguration:GenerateOnPremConnectorConfiguration test_generate_on_prem_connector_configuration "id"
143
+ ```
144
+
145
+ :param str resource_name: The name of the resource.
146
+ :param pulumi.ResourceOptions opts: Options for the resource.
147
+ :param pulumi.Input[str] on_prem_connector_id: The OCID of the on-premises connector.
148
+ :param pulumi.Input[str] password: The password to encrypt the keys inside the wallet included as part of the configuration. The password must be between 12 and 30 characters long and must contain atleast 1 uppercase, 1 lowercase, 1 numeric, and 1 special character.
149
+
150
+
151
+ ** IMPORTANT **
152
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
153
+ """
154
+ ...
155
+ @overload
156
+ def __init__(__self__,
157
+ resource_name: str,
158
+ args: GenerateOnPremConnectorConfigurationArgs,
159
+ opts: Optional[pulumi.ResourceOptions] = None):
160
+ """
161
+ This resource provides the Generate On Prem Connector Configuration resource in Oracle Cloud Infrastructure Data Safe service.
162
+
163
+ Creates and downloads the configuration of the specified on-premises connector.
164
+
165
+ ## Example Usage
166
+
167
+ ```python
168
+ import pulumi
169
+ import pulumi_oci as oci
170
+
171
+ test_generate_on_prem_connector_configuration = oci.data_safe.GenerateOnPremConnectorConfiguration("test_generate_on_prem_connector_configuration",
172
+ on_prem_connector_id=test_on_prem_connector["id"],
173
+ password=generate_on_prem_connector_configuration_password)
174
+ ```
175
+
176
+ ## Import
177
+
178
+ GenerateOnPremConnectorConfiguration can be imported using the `id`, e.g.
179
+
180
+ ```sh
181
+ $ pulumi import oci:DataSafe/generateOnPremConnectorConfiguration:GenerateOnPremConnectorConfiguration test_generate_on_prem_connector_configuration "id"
182
+ ```
183
+
184
+ :param str resource_name: The name of the resource.
185
+ :param GenerateOnPremConnectorConfigurationArgs args: The arguments to use to populate this resource's properties.
186
+ :param pulumi.ResourceOptions opts: Options for the resource.
187
+ """
188
+ ...
189
+ def __init__(__self__, resource_name: str, *args, **kwargs):
190
+ resource_args, opts = _utilities.get_resource_args_opts(GenerateOnPremConnectorConfigurationArgs, pulumi.ResourceOptions, *args, **kwargs)
191
+ if resource_args is not None:
192
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
193
+ else:
194
+ __self__._internal_init(resource_name, *args, **kwargs)
195
+
196
+ def _internal_init(__self__,
197
+ resource_name: str,
198
+ opts: Optional[pulumi.ResourceOptions] = None,
199
+ on_prem_connector_id: Optional[pulumi.Input[str]] = None,
200
+ password: Optional[pulumi.Input[str]] = None,
201
+ __props__=None):
202
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
203
+ if not isinstance(opts, pulumi.ResourceOptions):
204
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
205
+ if opts.id is None:
206
+ if __props__ is not None:
207
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
208
+ __props__ = GenerateOnPremConnectorConfigurationArgs.__new__(GenerateOnPremConnectorConfigurationArgs)
209
+
210
+ if on_prem_connector_id is None and not opts.urn:
211
+ raise TypeError("Missing required property 'on_prem_connector_id'")
212
+ __props__.__dict__["on_prem_connector_id"] = on_prem_connector_id
213
+ if password is None and not opts.urn:
214
+ raise TypeError("Missing required property 'password'")
215
+ __props__.__dict__["password"] = None if password is None else pulumi.Output.secret(password)
216
+ secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["password"])
217
+ opts = pulumi.ResourceOptions.merge(opts, secret_opts)
218
+ super(GenerateOnPremConnectorConfiguration, __self__).__init__(
219
+ 'oci:DataSafe/generateOnPremConnectorConfiguration:GenerateOnPremConnectorConfiguration',
220
+ resource_name,
221
+ __props__,
222
+ opts)
223
+
224
+ @staticmethod
225
+ def get(resource_name: str,
226
+ id: pulumi.Input[str],
227
+ opts: Optional[pulumi.ResourceOptions] = None,
228
+ on_prem_connector_id: Optional[pulumi.Input[str]] = None,
229
+ password: Optional[pulumi.Input[str]] = None) -> 'GenerateOnPremConnectorConfiguration':
230
+ """
231
+ Get an existing GenerateOnPremConnectorConfiguration resource's state with the given name, id, and optional extra
232
+ properties used to qualify the lookup.
233
+
234
+ :param str resource_name: The unique name of the resulting resource.
235
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
236
+ :param pulumi.ResourceOptions opts: Options for the resource.
237
+ :param pulumi.Input[str] on_prem_connector_id: The OCID of the on-premises connector.
238
+ :param pulumi.Input[str] password: The password to encrypt the keys inside the wallet included as part of the configuration. The password must be between 12 and 30 characters long and must contain atleast 1 uppercase, 1 lowercase, 1 numeric, and 1 special character.
239
+
240
+
241
+ ** IMPORTANT **
242
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
243
+ """
244
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
245
+
246
+ __props__ = _GenerateOnPremConnectorConfigurationState.__new__(_GenerateOnPremConnectorConfigurationState)
247
+
248
+ __props__.__dict__["on_prem_connector_id"] = on_prem_connector_id
249
+ __props__.__dict__["password"] = password
250
+ return GenerateOnPremConnectorConfiguration(resource_name, opts=opts, __props__=__props__)
251
+
252
+ @property
253
+ @pulumi.getter(name="onPremConnectorId")
254
+ def on_prem_connector_id(self) -> pulumi.Output[str]:
255
+ """
256
+ The OCID of the on-premises connector.
257
+ """
258
+ return pulumi.get(self, "on_prem_connector_id")
259
+
260
+ @property
261
+ @pulumi.getter
262
+ def password(self) -> pulumi.Output[str]:
263
+ """
264
+ The password to encrypt the keys inside the wallet included as part of the configuration. The password must be between 12 and 30 characters long and must contain atleast 1 uppercase, 1 lowercase, 1 numeric, and 1 special character.
265
+
266
+
267
+ ** IMPORTANT **
268
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
269
+ """
270
+ return pulumi.get(self, "password")
271
+
@@ -41,6 +41,10 @@ __all__ = [
41
41
  'JobRunJobStorageMountConfigurationDetailsListArgsDict',
42
42
  'JobRunLogDetailArgs',
43
43
  'JobRunLogDetailArgsDict',
44
+ 'ModelBackupOperationDetailArgs',
45
+ 'ModelBackupOperationDetailArgsDict',
46
+ 'ModelBackupSettingArgs',
47
+ 'ModelBackupSettingArgsDict',
44
48
  'ModelCustomMetadataListArgs',
45
49
  'ModelCustomMetadataListArgsDict',
46
50
  'ModelDefinedMetadataListArgs',
@@ -73,6 +77,10 @@ __all__ = [
73
77
  'ModelDeploymentModelDeploymentConfigurationDetailsModelConfigurationDetailsScalingPolicyAutoScalingPolicyRuleScaleOutConfigurationArgsDict',
74
78
  'ModelDeploymentModelDeploymentSystemDataArgs',
75
79
  'ModelDeploymentModelDeploymentSystemDataArgsDict',
80
+ 'ModelRetentionOperationDetailArgs',
81
+ 'ModelRetentionOperationDetailArgsDict',
82
+ 'ModelRetentionSettingArgs',
83
+ 'ModelRetentionSettingArgsDict',
76
84
  'NotebookSessionNotebookSessionConfigDetailsArgs',
77
85
  'NotebookSessionNotebookSessionConfigDetailsArgsDict',
78
86
  'NotebookSessionNotebookSessionConfigDetailsNotebookSessionShapeConfigDetailsArgs',
@@ -1502,6 +1510,148 @@ class JobRunLogDetailArgs:
1502
1510
  pulumi.set(self, "log_id", value)
1503
1511
 
1504
1512
 
1513
+ if not MYPY:
1514
+ class ModelBackupOperationDetailArgsDict(TypedDict):
1515
+ backup_state: NotRequired[pulumi.Input[str]]
1516
+ """
1517
+ The backup status of the model.
1518
+ """
1519
+ backup_state_details: NotRequired[pulumi.Input[str]]
1520
+ """
1521
+ The backup execution status details of the model.
1522
+ """
1523
+ time_last_backup: NotRequired[pulumi.Input[str]]
1524
+ """
1525
+ The last backup execution time of the model.
1526
+ """
1527
+ elif False:
1528
+ ModelBackupOperationDetailArgsDict: TypeAlias = Mapping[str, Any]
1529
+
1530
+ @pulumi.input_type
1531
+ class ModelBackupOperationDetailArgs:
1532
+ def __init__(__self__, *,
1533
+ backup_state: Optional[pulumi.Input[str]] = None,
1534
+ backup_state_details: Optional[pulumi.Input[str]] = None,
1535
+ time_last_backup: Optional[pulumi.Input[str]] = None):
1536
+ """
1537
+ :param pulumi.Input[str] backup_state: The backup status of the model.
1538
+ :param pulumi.Input[str] backup_state_details: The backup execution status details of the model.
1539
+ :param pulumi.Input[str] time_last_backup: The last backup execution time of the model.
1540
+ """
1541
+ if backup_state is not None:
1542
+ pulumi.set(__self__, "backup_state", backup_state)
1543
+ if backup_state_details is not None:
1544
+ pulumi.set(__self__, "backup_state_details", backup_state_details)
1545
+ if time_last_backup is not None:
1546
+ pulumi.set(__self__, "time_last_backup", time_last_backup)
1547
+
1548
+ @property
1549
+ @pulumi.getter(name="backupState")
1550
+ def backup_state(self) -> Optional[pulumi.Input[str]]:
1551
+ """
1552
+ The backup status of the model.
1553
+ """
1554
+ return pulumi.get(self, "backup_state")
1555
+
1556
+ @backup_state.setter
1557
+ def backup_state(self, value: Optional[pulumi.Input[str]]):
1558
+ pulumi.set(self, "backup_state", value)
1559
+
1560
+ @property
1561
+ @pulumi.getter(name="backupStateDetails")
1562
+ def backup_state_details(self) -> Optional[pulumi.Input[str]]:
1563
+ """
1564
+ The backup execution status details of the model.
1565
+ """
1566
+ return pulumi.get(self, "backup_state_details")
1567
+
1568
+ @backup_state_details.setter
1569
+ def backup_state_details(self, value: Optional[pulumi.Input[str]]):
1570
+ pulumi.set(self, "backup_state_details", value)
1571
+
1572
+ @property
1573
+ @pulumi.getter(name="timeLastBackup")
1574
+ def time_last_backup(self) -> Optional[pulumi.Input[str]]:
1575
+ """
1576
+ The last backup execution time of the model.
1577
+ """
1578
+ return pulumi.get(self, "time_last_backup")
1579
+
1580
+ @time_last_backup.setter
1581
+ def time_last_backup(self, value: Optional[pulumi.Input[str]]):
1582
+ pulumi.set(self, "time_last_backup", value)
1583
+
1584
+
1585
+ if not MYPY:
1586
+ class ModelBackupSettingArgsDict(TypedDict):
1587
+ backup_region: pulumi.Input[str]
1588
+ """
1589
+ (Updatable) Oracle Cloud Infrastructure backup region for the model.
1590
+ """
1591
+ is_backup_enabled: pulumi.Input[bool]
1592
+ """
1593
+ (Updatable) Boolean flag representing whether backup needs to be enabled/disabled for the model.
1594
+ """
1595
+ customer_notification_type: NotRequired[pulumi.Input[str]]
1596
+ """
1597
+ (Updatable) Customer notification on backup success/failure events.
1598
+ """
1599
+ elif False:
1600
+ ModelBackupSettingArgsDict: TypeAlias = Mapping[str, Any]
1601
+
1602
+ @pulumi.input_type
1603
+ class ModelBackupSettingArgs:
1604
+ def __init__(__self__, *,
1605
+ backup_region: pulumi.Input[str],
1606
+ is_backup_enabled: pulumi.Input[bool],
1607
+ customer_notification_type: Optional[pulumi.Input[str]] = None):
1608
+ """
1609
+ :param pulumi.Input[str] backup_region: (Updatable) Oracle Cloud Infrastructure backup region for the model.
1610
+ :param pulumi.Input[bool] is_backup_enabled: (Updatable) Boolean flag representing whether backup needs to be enabled/disabled for the model.
1611
+ :param pulumi.Input[str] customer_notification_type: (Updatable) Customer notification on backup success/failure events.
1612
+ """
1613
+ pulumi.set(__self__, "backup_region", backup_region)
1614
+ pulumi.set(__self__, "is_backup_enabled", is_backup_enabled)
1615
+ if customer_notification_type is not None:
1616
+ pulumi.set(__self__, "customer_notification_type", customer_notification_type)
1617
+
1618
+ @property
1619
+ @pulumi.getter(name="backupRegion")
1620
+ def backup_region(self) -> pulumi.Input[str]:
1621
+ """
1622
+ (Updatable) Oracle Cloud Infrastructure backup region for the model.
1623
+ """
1624
+ return pulumi.get(self, "backup_region")
1625
+
1626
+ @backup_region.setter
1627
+ def backup_region(self, value: pulumi.Input[str]):
1628
+ pulumi.set(self, "backup_region", value)
1629
+
1630
+ @property
1631
+ @pulumi.getter(name="isBackupEnabled")
1632
+ def is_backup_enabled(self) -> pulumi.Input[bool]:
1633
+ """
1634
+ (Updatable) Boolean flag representing whether backup needs to be enabled/disabled for the model.
1635
+ """
1636
+ return pulumi.get(self, "is_backup_enabled")
1637
+
1638
+ @is_backup_enabled.setter
1639
+ def is_backup_enabled(self, value: pulumi.Input[bool]):
1640
+ pulumi.set(self, "is_backup_enabled", value)
1641
+
1642
+ @property
1643
+ @pulumi.getter(name="customerNotificationType")
1644
+ def customer_notification_type(self) -> Optional[pulumi.Input[str]]:
1645
+ """
1646
+ (Updatable) Customer notification on backup success/failure events.
1647
+ """
1648
+ return pulumi.get(self, "customer_notification_type")
1649
+
1650
+ @customer_notification_type.setter
1651
+ def customer_notification_type(self, value: Optional[pulumi.Input[str]]):
1652
+ pulumi.set(self, "customer_notification_type", value)
1653
+
1654
+
1505
1655
  if not MYPY:
1506
1656
  class ModelCustomMetadataListArgsDict(TypedDict):
1507
1657
  category: NotRequired[pulumi.Input[str]]
@@ -3035,6 +3185,209 @@ class ModelDeploymentModelDeploymentSystemDataArgs:
3035
3185
  pulumi.set(self, "system_infra_type", value)
3036
3186
 
3037
3187
 
3188
+ if not MYPY:
3189
+ class ModelRetentionOperationDetailArgsDict(TypedDict):
3190
+ archive_state: NotRequired[pulumi.Input[str]]
3191
+ """
3192
+ The archival status of model.
3193
+ """
3194
+ archive_state_details: NotRequired[pulumi.Input[str]]
3195
+ """
3196
+ The archival state details of the model.
3197
+ """
3198
+ delete_state: NotRequired[pulumi.Input[str]]
3199
+ """
3200
+ The deletion status of the archived model.
3201
+ """
3202
+ delete_state_details: NotRequired[pulumi.Input[str]]
3203
+ """
3204
+ The deletion status details of the archived model.
3205
+ """
3206
+ time_archival_scheduled: NotRequired[pulumi.Input[str]]
3207
+ """
3208
+ The estimated archival time of the model based on the provided retention setting.
3209
+ """
3210
+ time_deletion_scheduled: NotRequired[pulumi.Input[str]]
3211
+ """
3212
+ The estimated deletion time of the model based on the provided retention setting.
3213
+ """
3214
+ elif False:
3215
+ ModelRetentionOperationDetailArgsDict: TypeAlias = Mapping[str, Any]
3216
+
3217
+ @pulumi.input_type
3218
+ class ModelRetentionOperationDetailArgs:
3219
+ def __init__(__self__, *,
3220
+ archive_state: Optional[pulumi.Input[str]] = None,
3221
+ archive_state_details: Optional[pulumi.Input[str]] = None,
3222
+ delete_state: Optional[pulumi.Input[str]] = None,
3223
+ delete_state_details: Optional[pulumi.Input[str]] = None,
3224
+ time_archival_scheduled: Optional[pulumi.Input[str]] = None,
3225
+ time_deletion_scheduled: Optional[pulumi.Input[str]] = None):
3226
+ """
3227
+ :param pulumi.Input[str] archive_state: The archival status of model.
3228
+ :param pulumi.Input[str] archive_state_details: The archival state details of the model.
3229
+ :param pulumi.Input[str] delete_state: The deletion status of the archived model.
3230
+ :param pulumi.Input[str] delete_state_details: The deletion status details of the archived model.
3231
+ :param pulumi.Input[str] time_archival_scheduled: The estimated archival time of the model based on the provided retention setting.
3232
+ :param pulumi.Input[str] time_deletion_scheduled: The estimated deletion time of the model based on the provided retention setting.
3233
+ """
3234
+ if archive_state is not None:
3235
+ pulumi.set(__self__, "archive_state", archive_state)
3236
+ if archive_state_details is not None:
3237
+ pulumi.set(__self__, "archive_state_details", archive_state_details)
3238
+ if delete_state is not None:
3239
+ pulumi.set(__self__, "delete_state", delete_state)
3240
+ if delete_state_details is not None:
3241
+ pulumi.set(__self__, "delete_state_details", delete_state_details)
3242
+ if time_archival_scheduled is not None:
3243
+ pulumi.set(__self__, "time_archival_scheduled", time_archival_scheduled)
3244
+ if time_deletion_scheduled is not None:
3245
+ pulumi.set(__self__, "time_deletion_scheduled", time_deletion_scheduled)
3246
+
3247
+ @property
3248
+ @pulumi.getter(name="archiveState")
3249
+ def archive_state(self) -> Optional[pulumi.Input[str]]:
3250
+ """
3251
+ The archival status of model.
3252
+ """
3253
+ return pulumi.get(self, "archive_state")
3254
+
3255
+ @archive_state.setter
3256
+ def archive_state(self, value: Optional[pulumi.Input[str]]):
3257
+ pulumi.set(self, "archive_state", value)
3258
+
3259
+ @property
3260
+ @pulumi.getter(name="archiveStateDetails")
3261
+ def archive_state_details(self) -> Optional[pulumi.Input[str]]:
3262
+ """
3263
+ The archival state details of the model.
3264
+ """
3265
+ return pulumi.get(self, "archive_state_details")
3266
+
3267
+ @archive_state_details.setter
3268
+ def archive_state_details(self, value: Optional[pulumi.Input[str]]):
3269
+ pulumi.set(self, "archive_state_details", value)
3270
+
3271
+ @property
3272
+ @pulumi.getter(name="deleteState")
3273
+ def delete_state(self) -> Optional[pulumi.Input[str]]:
3274
+ """
3275
+ The deletion status of the archived model.
3276
+ """
3277
+ return pulumi.get(self, "delete_state")
3278
+
3279
+ @delete_state.setter
3280
+ def delete_state(self, value: Optional[pulumi.Input[str]]):
3281
+ pulumi.set(self, "delete_state", value)
3282
+
3283
+ @property
3284
+ @pulumi.getter(name="deleteStateDetails")
3285
+ def delete_state_details(self) -> Optional[pulumi.Input[str]]:
3286
+ """
3287
+ The deletion status details of the archived model.
3288
+ """
3289
+ return pulumi.get(self, "delete_state_details")
3290
+
3291
+ @delete_state_details.setter
3292
+ def delete_state_details(self, value: Optional[pulumi.Input[str]]):
3293
+ pulumi.set(self, "delete_state_details", value)
3294
+
3295
+ @property
3296
+ @pulumi.getter(name="timeArchivalScheduled")
3297
+ def time_archival_scheduled(self) -> Optional[pulumi.Input[str]]:
3298
+ """
3299
+ The estimated archival time of the model based on the provided retention setting.
3300
+ """
3301
+ return pulumi.get(self, "time_archival_scheduled")
3302
+
3303
+ @time_archival_scheduled.setter
3304
+ def time_archival_scheduled(self, value: Optional[pulumi.Input[str]]):
3305
+ pulumi.set(self, "time_archival_scheduled", value)
3306
+
3307
+ @property
3308
+ @pulumi.getter(name="timeDeletionScheduled")
3309
+ def time_deletion_scheduled(self) -> Optional[pulumi.Input[str]]:
3310
+ """
3311
+ The estimated deletion time of the model based on the provided retention setting.
3312
+ """
3313
+ return pulumi.get(self, "time_deletion_scheduled")
3314
+
3315
+ @time_deletion_scheduled.setter
3316
+ def time_deletion_scheduled(self, value: Optional[pulumi.Input[str]]):
3317
+ pulumi.set(self, "time_deletion_scheduled", value)
3318
+
3319
+
3320
+ if not MYPY:
3321
+ class ModelRetentionSettingArgsDict(TypedDict):
3322
+ archive_after_days: pulumi.Input[int]
3323
+ """
3324
+ (Updatable) Number of days after which the model will be archived.
3325
+ """
3326
+ customer_notification_type: NotRequired[pulumi.Input[str]]
3327
+ """
3328
+ (Updatable) Customer notification options on success/failure of archival, deletion events.
3329
+ """
3330
+ delete_after_days: NotRequired[pulumi.Input[int]]
3331
+ """
3332
+ (Updatable) Number of days after which the archived model will be deleted.
3333
+ """
3334
+ elif False:
3335
+ ModelRetentionSettingArgsDict: TypeAlias = Mapping[str, Any]
3336
+
3337
+ @pulumi.input_type
3338
+ class ModelRetentionSettingArgs:
3339
+ def __init__(__self__, *,
3340
+ archive_after_days: pulumi.Input[int],
3341
+ customer_notification_type: Optional[pulumi.Input[str]] = None,
3342
+ delete_after_days: Optional[pulumi.Input[int]] = None):
3343
+ """
3344
+ :param pulumi.Input[int] archive_after_days: (Updatable) Number of days after which the model will be archived.
3345
+ :param pulumi.Input[str] customer_notification_type: (Updatable) Customer notification options on success/failure of archival, deletion events.
3346
+ :param pulumi.Input[int] delete_after_days: (Updatable) Number of days after which the archived model will be deleted.
3347
+ """
3348
+ pulumi.set(__self__, "archive_after_days", archive_after_days)
3349
+ if customer_notification_type is not None:
3350
+ pulumi.set(__self__, "customer_notification_type", customer_notification_type)
3351
+ if delete_after_days is not None:
3352
+ pulumi.set(__self__, "delete_after_days", delete_after_days)
3353
+
3354
+ @property
3355
+ @pulumi.getter(name="archiveAfterDays")
3356
+ def archive_after_days(self) -> pulumi.Input[int]:
3357
+ """
3358
+ (Updatable) Number of days after which the model will be archived.
3359
+ """
3360
+ return pulumi.get(self, "archive_after_days")
3361
+
3362
+ @archive_after_days.setter
3363
+ def archive_after_days(self, value: pulumi.Input[int]):
3364
+ pulumi.set(self, "archive_after_days", value)
3365
+
3366
+ @property
3367
+ @pulumi.getter(name="customerNotificationType")
3368
+ def customer_notification_type(self) -> Optional[pulumi.Input[str]]:
3369
+ """
3370
+ (Updatable) Customer notification options on success/failure of archival, deletion events.
3371
+ """
3372
+ return pulumi.get(self, "customer_notification_type")
3373
+
3374
+ @customer_notification_type.setter
3375
+ def customer_notification_type(self, value: Optional[pulumi.Input[str]]):
3376
+ pulumi.set(self, "customer_notification_type", value)
3377
+
3378
+ @property
3379
+ @pulumi.getter(name="deleteAfterDays")
3380
+ def delete_after_days(self) -> Optional[pulumi.Input[int]]:
3381
+ """
3382
+ (Updatable) Number of days after which the archived model will be deleted.
3383
+ """
3384
+ return pulumi.get(self, "delete_after_days")
3385
+
3386
+ @delete_after_days.setter
3387
+ def delete_after_days(self, value: Optional[pulumi.Input[int]]):
3388
+ pulumi.set(self, "delete_after_days", value)
3389
+
3390
+
3038
3391
  if not MYPY:
3039
3392
  class NotebookSessionNotebookSessionConfigDetailsArgsDict(TypedDict):
3040
3393
  shape: pulumi.Input[str]