pulumi-oci 2.1.0a1719905039__py3-none-any.whl → 2.1.0a1720054142__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 (59) hide show
  1. pulumi_oci/__init__.py +43 -0
  2. pulumi_oci/database/__init__.py +11 -0
  3. pulumi_oci/database/_inputs.py +607 -0
  4. pulumi_oci/database/db_node.py +28 -0
  5. pulumi_oci/database/exadb_vm_cluster.py +1761 -0
  6. pulumi_oci/database/exascale_db_storage_vault.py +787 -0
  7. pulumi_oci/database/get_backups.py +22 -5
  8. pulumi_oci/database/get_db_node.py +14 -1
  9. pulumi_oci/database/get_db_nodes.py +2 -2
  10. pulumi_oci/database/get_exadb_vm_cluster.py +614 -0
  11. pulumi_oci/database/get_exadb_vm_cluster_update.py +226 -0
  12. pulumi_oci/database/get_exadb_vm_cluster_update_history_entries.py +153 -0
  13. pulumi_oci/database/get_exadb_vm_cluster_update_history_entry.py +226 -0
  14. pulumi_oci/database/get_exadb_vm_cluster_updates.py +173 -0
  15. pulumi_oci/database/get_exadb_vm_clusters.py +196 -0
  16. pulumi_oci/database/get_exascale_db_storage_vault.py +301 -0
  17. pulumi_oci/database/get_exascale_db_storage_vaults.py +176 -0
  18. pulumi_oci/database/get_gi_version_minor_versions.py +221 -0
  19. pulumi_oci/database/get_gi_versions.py +22 -5
  20. pulumi_oci/database/outputs.py +2050 -0
  21. pulumi_oci/database/pluggable_database.py +7 -7
  22. pulumi_oci/databasemigration/__init__.py +6 -0
  23. pulumi_oci/databasemigration/_inputs.py +1577 -0
  24. pulumi_oci/databasemigration/connection.py +2019 -0
  25. pulumi_oci/databasemigration/get_connection.py +616 -0
  26. pulumi_oci/databasemigration/get_connections.py +225 -0
  27. pulumi_oci/databasemigration/get_job_advisor_report.py +2 -10
  28. pulumi_oci/databasemigration/get_migration.py +427 -0
  29. pulumi_oci/databasemigration/get_migration_object_types.py +24 -13
  30. pulumi_oci/databasemigration/get_migrations.py +407 -0
  31. pulumi_oci/databasemigration/job.py +16 -20
  32. pulumi_oci/databasemigration/migration.py +1471 -0
  33. pulumi_oci/databasemigration/outputs.py +4301 -73
  34. pulumi_oci/filestorage/_inputs.py +10 -18
  35. pulumi_oci/filestorage/export.py +28 -7
  36. pulumi_oci/filestorage/file_system.py +159 -35
  37. pulumi_oci/filestorage/outputs.py +55 -34
  38. pulumi_oci/generativeai/_inputs.py +50 -2
  39. pulumi_oci/generativeai/dedicated_ai_cluster.py +30 -2
  40. pulumi_oci/generativeai/endpoint.py +2 -2
  41. pulumi_oci/generativeai/get_dedicated_ai_cluster.py +2 -47
  42. pulumi_oci/generativeai/get_dedicated_ai_clusters.py +2 -14
  43. pulumi_oci/generativeai/get_endpoint.py +2 -26
  44. pulumi_oci/generativeai/get_endpoints.py +2 -8
  45. pulumi_oci/generativeai/get_model.py +2 -38
  46. pulumi_oci/generativeai/get_models.py +2 -8
  47. pulumi_oci/generativeai/model.py +2 -2
  48. pulumi_oci/generativeai/outputs.py +86 -310
  49. pulumi_oci/pulumi-plugin.json +1 -1
  50. pulumi_oci/resourcescheduler/__init__.py +12 -0
  51. pulumi_oci/resourcescheduler/_inputs.py +224 -0
  52. pulumi_oci/resourcescheduler/get_schedule.py +340 -0
  53. pulumi_oci/resourcescheduler/get_schedules.py +193 -0
  54. pulumi_oci/resourcescheduler/outputs.py +687 -0
  55. pulumi_oci/resourcescheduler/schedule.py +977 -0
  56. {pulumi_oci-2.1.0a1719905039.dist-info → pulumi_oci-2.1.0a1720054142.dist-info}/METADATA +1 -1
  57. {pulumi_oci-2.1.0a1719905039.dist-info → pulumi_oci-2.1.0a1720054142.dist-info}/RECORD +59 -36
  58. {pulumi_oci-2.1.0a1719905039.dist-info → pulumi_oci-2.1.0a1720054142.dist-info}/WHEEL +0 -0
  59. {pulumi_oci-2.1.0a1719905039.dist-info → pulumi_oci-2.1.0a1720054142.dist-info}/top_level.txt +0 -0
@@ -46,9 +46,6 @@ class GetDedicatedAiClustersResult:
46
46
  @property
47
47
  @pulumi.getter(name="compartmentId")
48
48
  def compartment_id(self) -> str:
49
- """
50
- The compartment OCID to create the dedicated AI cluster in.
51
- """
52
49
  return pulumi.get(self, "compartment_id")
53
50
 
54
51
  @property
@@ -62,9 +59,6 @@ class GetDedicatedAiClustersResult:
62
59
  @property
63
60
  @pulumi.getter(name="displayName")
64
61
  def display_name(self) -> Optional[str]:
65
- """
66
- A user-friendly name. Does not have to be unique, and it's changeable.
67
- """
68
62
  return pulumi.get(self, "display_name")
69
63
 
70
64
  @property
@@ -75,17 +69,11 @@ class GetDedicatedAiClustersResult:
75
69
  @property
76
70
  @pulumi.getter
77
71
  def id(self) -> Optional[str]:
78
- """
79
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the dedicated AI cluster.
80
- """
81
72
  return pulumi.get(self, "id")
82
73
 
83
74
  @property
84
75
  @pulumi.getter
85
76
  def state(self) -> Optional[str]:
86
- """
87
- The current state of the dedicated AI cluster.
88
- """
89
77
  return pulumi.get(self, "state")
90
78
 
91
79
 
@@ -110,7 +98,7 @@ def get_dedicated_ai_clusters(compartment_id: Optional[str] = None,
110
98
  state: Optional[str] = None,
111
99
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDedicatedAiClustersResult:
112
100
  """
113
- This data source provides the list of Dedicated Ai Clusters in Oracle Cloud Infrastructure Generative Ai service.
101
+ This data source provides the list of Dedicated Ai Clusters in Oracle Cloud Infrastructure Generative AI service.
114
102
 
115
103
  Lists the dedicated AI clusters in a specific compartment.
116
104
 
@@ -158,7 +146,7 @@ def get_dedicated_ai_clusters_output(compartment_id: Optional[pulumi.Input[str]]
158
146
  state: Optional[pulumi.Input[Optional[str]]] = None,
159
147
  opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetDedicatedAiClustersResult]:
160
148
  """
161
- This data source provides the list of Dedicated Ai Clusters in Oracle Cloud Infrastructure Generative Ai service.
149
+ This data source provides the list of Dedicated Ai Clusters in Oracle Cloud Infrastructure Generative AI service.
162
150
 
163
151
  Lists the dedicated AI clusters in a specific compartment.
164
152
 
@@ -72,25 +72,16 @@ class GetEndpointResult:
72
72
  @property
73
73
  @pulumi.getter(name="compartmentId")
74
74
  def compartment_id(self) -> str:
75
- """
76
- The compartment OCID to create the endpoint in.
77
- """
78
75
  return pulumi.get(self, "compartment_id")
79
76
 
80
77
  @property
81
78
  @pulumi.getter(name="contentModerationConfigs")
82
79
  def content_moderation_configs(self) -> Sequence['outputs.GetEndpointContentModerationConfigResult']:
83
- """
84
- The configuration details, whether to add the content moderation feature to the model. Content moderation removes toxic and biased content from responses. It's recommended to use content moderation.
85
- """
86
80
  return pulumi.get(self, "content_moderation_configs")
87
81
 
88
82
  @property
89
83
  @pulumi.getter(name="dedicatedAiClusterId")
90
84
  def dedicated_ai_cluster_id(self) -> str:
91
- """
92
- The OCID of the dedicated AI cluster on which the model will be deployed to.
93
- """
94
85
  return pulumi.get(self, "dedicated_ai_cluster_id")
95
86
 
96
87
  @property
@@ -104,17 +95,11 @@ class GetEndpointResult:
104
95
  @property
105
96
  @pulumi.getter
106
97
  def description(self) -> str:
107
- """
108
- An optional description of the endpoint.
109
- """
110
98
  return pulumi.get(self, "description")
111
99
 
112
100
  @property
113
101
  @pulumi.getter(name="displayName")
114
102
  def display_name(self) -> str:
115
- """
116
- A user-friendly name. Does not have to be unique, and it's changeable.
117
- """
118
103
  return pulumi.get(self, "display_name")
119
104
 
120
105
  @property
@@ -125,9 +110,6 @@ class GetEndpointResult:
125
110
  @property
126
111
  @pulumi.getter(name="freeformTags")
127
112
  def freeform_tags(self) -> Mapping[str, Any]:
128
- """
129
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
130
- """
131
113
  return pulumi.get(self, "freeform_tags")
132
114
 
133
115
  @property
@@ -141,9 +123,6 @@ class GetEndpointResult:
141
123
  @property
142
124
  @pulumi.getter(name="lifecycleDetails")
143
125
  def lifecycle_details(self) -> str:
144
- """
145
- A message describing the current state of the endpoint in more detail that can provide actionable information.
146
- """
147
126
  return pulumi.get(self, "lifecycle_details")
148
127
 
149
128
  @property
@@ -165,9 +144,6 @@ class GetEndpointResult:
165
144
  @property
166
145
  @pulumi.getter(name="systemTags")
167
146
  def system_tags(self) -> Mapping[str, Any]:
168
- """
169
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
170
- """
171
147
  return pulumi.get(self, "system_tags")
172
148
 
173
149
  @property
@@ -213,7 +189,7 @@ class AwaitableGetEndpointResult(GetEndpointResult):
213
189
  def get_endpoint(endpoint_id: Optional[str] = None,
214
190
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetEndpointResult:
215
191
  """
216
- This data source provides details about a specific Endpoint resource in Oracle Cloud Infrastructure Generative Ai service.
192
+ This data source provides details about a specific Endpoint resource in Oracle Cloud Infrastructure Generative AI service.
217
193
 
218
194
  Gets information about an endpoint.
219
195
 
@@ -256,7 +232,7 @@ def get_endpoint(endpoint_id: Optional[str] = None,
256
232
  def get_endpoint_output(endpoint_id: Optional[pulumi.Input[str]] = None,
257
233
  opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetEndpointResult]:
258
234
  """
259
- This data source provides details about a specific Endpoint resource in Oracle Cloud Infrastructure Generative Ai service.
235
+ This data source provides details about a specific Endpoint resource in Oracle Cloud Infrastructure Generative AI service.
260
236
 
261
237
  Gets information about an endpoint.
262
238
 
@@ -46,17 +46,11 @@ class GetEndpointsResult:
46
46
  @property
47
47
  @pulumi.getter(name="compartmentId")
48
48
  def compartment_id(self) -> str:
49
- """
50
- The compartment OCID to create the endpoint in.
51
- """
52
49
  return pulumi.get(self, "compartment_id")
53
50
 
54
51
  @property
55
52
  @pulumi.getter(name="displayName")
56
53
  def display_name(self) -> Optional[str]:
57
- """
58
- A user-friendly name. Does not have to be unique, and it's changeable.
59
- """
60
54
  return pulumi.get(self, "display_name")
61
55
 
62
56
  @property
@@ -110,7 +104,7 @@ def get_endpoints(compartment_id: Optional[str] = None,
110
104
  state: Optional[str] = None,
111
105
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetEndpointsResult:
112
106
  """
113
- This data source provides the list of Endpoints in Oracle Cloud Infrastructure Generative Ai service.
107
+ This data source provides the list of Endpoints in Oracle Cloud Infrastructure Generative AI service.
114
108
 
115
109
  Lists the endpoints of a specific compartment.
116
110
 
@@ -158,7 +152,7 @@ def get_endpoints_output(compartment_id: Optional[pulumi.Input[str]] = None,
158
152
  state: Optional[pulumi.Input[Optional[str]]] = None,
159
153
  opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetEndpointsResult]:
160
154
  """
161
- This data source provides the list of Endpoints in Oracle Cloud Infrastructure Generative Ai service.
155
+ This data source provides the list of Endpoints in Oracle Cloud Infrastructure Generative AI service.
162
156
 
163
157
  Lists the endpoints of a specific compartment.
164
158
 
@@ -90,9 +90,6 @@ class GetModelResult:
90
90
  @property
91
91
  @pulumi.getter(name="baseModelId")
92
92
  def base_model_id(self) -> str:
93
- """
94
- The OCID of the base model that's used for fine-tuning. For pretrained models, the value is null.
95
- """
96
93
  return pulumi.get(self, "base_model_id")
97
94
 
98
95
  @property
@@ -122,33 +119,21 @@ class GetModelResult:
122
119
  @property
123
120
  @pulumi.getter
124
121
  def description(self) -> str:
125
- """
126
- An optional description of the model.
127
- """
128
122
  return pulumi.get(self, "description")
129
123
 
130
124
  @property
131
125
  @pulumi.getter(name="displayName")
132
126
  def display_name(self) -> str:
133
- """
134
- A user-friendly name.
135
- """
136
127
  return pulumi.get(self, "display_name")
137
128
 
138
129
  @property
139
130
  @pulumi.getter(name="fineTuneDetails")
140
131
  def fine_tune_details(self) -> Sequence['outputs.GetModelFineTuneDetailResult']:
141
- """
142
- Details about fine-tuning a custom model.
143
- """
144
132
  return pulumi.get(self, "fine_tune_details")
145
133
 
146
134
  @property
147
135
  @pulumi.getter(name="freeformTags")
148
136
  def freeform_tags(self) -> Mapping[str, Any]:
149
- """
150
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
151
- """
152
137
  return pulumi.get(self, "freeform_tags")
153
138
 
154
139
  @property
@@ -162,17 +147,11 @@ class GetModelResult:
162
147
  @property
163
148
  @pulumi.getter(name="isLongTermSupported")
164
149
  def is_long_term_supported(self) -> bool:
165
- """
166
- Whether a model is supported long-term. Only applicable to base models.
167
- """
168
150
  return pulumi.get(self, "is_long_term_supported")
169
151
 
170
152
  @property
171
153
  @pulumi.getter(name="lifecycleDetails")
172
154
  def lifecycle_details(self) -> str:
173
- """
174
- A message describing the current state of the model in more detail that can provide actionable information.
175
- """
176
155
  return pulumi.get(self, "lifecycle_details")
177
156
 
178
157
  @property
@@ -183,9 +162,6 @@ class GetModelResult:
183
162
  @property
184
163
  @pulumi.getter(name="modelMetrics")
185
164
  def model_metrics(self) -> Sequence['outputs.GetModelModelMetricResult']:
186
- """
187
- Model metrics during the creation of a new model.
188
- """
189
165
  return pulumi.get(self, "model_metrics")
190
166
 
191
167
  @property
@@ -199,17 +175,11 @@ class GetModelResult:
199
175
  @property
200
176
  @pulumi.getter(name="systemTags")
201
177
  def system_tags(self) -> Mapping[str, Any]:
202
- """
203
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
204
- """
205
178
  return pulumi.get(self, "system_tags")
206
179
 
207
180
  @property
208
181
  @pulumi.getter(name="timeCreated")
209
182
  def time_created(self) -> str:
210
- """
211
- The date and time that the model was created in the format of an RFC3339 datetime string.
212
- """
213
183
  return pulumi.get(self, "time_created")
214
184
 
215
185
  @property
@@ -223,9 +193,6 @@ class GetModelResult:
223
193
  @property
224
194
  @pulumi.getter(name="timeUpdated")
225
195
  def time_updated(self) -> str:
226
- """
227
- The date and time that the model was updated in the format of an RFC3339 datetime string.
228
- """
229
196
  return pulumi.get(self, "time_updated")
230
197
 
231
198
  @property
@@ -239,9 +206,6 @@ class GetModelResult:
239
206
  @property
240
207
  @pulumi.getter
241
208
  def vendor(self) -> str:
242
- """
243
- The provider of the base model.
244
- """
245
209
  return pulumi.get(self, "vendor")
246
210
 
247
211
  @property
@@ -285,7 +249,7 @@ class AwaitableGetModelResult(GetModelResult):
285
249
  def get_model(model_id: Optional[str] = None,
286
250
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetModelResult:
287
251
  """
288
- This data source provides details about a specific Model resource in Oracle Cloud Infrastructure Generative Ai service.
252
+ This data source provides details about a specific Model resource in Oracle Cloud Infrastructure Generative AI service.
289
253
 
290
254
  Gets information about a custom model.
291
255
 
@@ -334,7 +298,7 @@ def get_model(model_id: Optional[str] = None,
334
298
  def get_model_output(model_id: Optional[pulumi.Input[str]] = None,
335
299
  opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetModelResult]:
336
300
  """
337
- This data source provides details about a specific Model resource in Oracle Cloud Infrastructure Generative Ai service.
301
+ This data source provides details about a specific Model resource in Oracle Cloud Infrastructure Generative AI service.
338
302
 
339
303
  Gets information about a custom model.
340
304
 
@@ -65,9 +65,6 @@ class GetModelsResult:
65
65
  @property
66
66
  @pulumi.getter(name="displayName")
67
67
  def display_name(self) -> Optional[str]:
68
- """
69
- A user-friendly name.
70
- """
71
68
  return pulumi.get(self, "display_name")
72
69
 
73
70
  @property
@@ -102,9 +99,6 @@ class GetModelsResult:
102
99
  @property
103
100
  @pulumi.getter
104
101
  def vendor(self) -> Optional[str]:
105
- """
106
- The provider of the base model.
107
- """
108
102
  return pulumi.get(self, "vendor")
109
103
 
110
104
 
@@ -133,7 +127,7 @@ def get_models(capabilities: Optional[Sequence[str]] = None,
133
127
  vendor: Optional[str] = None,
134
128
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetModelsResult:
135
129
  """
136
- This data source provides the list of Models in Oracle Cloud Infrastructure Generative Ai service.
130
+ This data source provides the list of Models in Oracle Cloud Infrastructure Generative AI service.
137
131
 
138
132
  Lists the models in a specific compartment. Includes pretrained base models and fine-tuned custom models.
139
133
 
@@ -191,7 +185,7 @@ def get_models_output(capabilities: Optional[pulumi.Input[Optional[Sequence[str]
191
185
  vendor: Optional[pulumi.Input[Optional[str]]] = None,
192
186
  opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetModelsResult]:
193
187
  """
194
- This data source provides the list of Models in Oracle Cloud Infrastructure Generative Ai service.
188
+ This data source provides the list of Models in Oracle Cloud Infrastructure Generative AI service.
195
189
 
196
190
  Lists the models in a specific compartment. Includes pretrained base models and fine-tuned custom models.
197
191
 
@@ -506,7 +506,7 @@ class Model(pulumi.CustomResource):
506
506
  version: Optional[pulumi.Input[str]] = None,
507
507
  __props__=None):
508
508
  """
509
- This resource provides the Model resource in Oracle Cloud Infrastructure Generative Ai service.
509
+ This resource provides the Model resource in Oracle Cloud Infrastructure Generative AI service.
510
510
 
511
511
  Creates a custom model by fine-tuning a base model with your own dataset. You can create a new custom models or create a new version of existing custom model..
512
512
 
@@ -543,7 +543,7 @@ class Model(pulumi.CustomResource):
543
543
  args: ModelArgs,
544
544
  opts: Optional[pulumi.ResourceOptions] = None):
545
545
  """
546
- This resource provides the Model resource in Oracle Cloud Infrastructure Generative Ai service.
546
+ This resource provides the Model resource in Oracle Cloud Infrastructure Generative AI service.
547
547
 
548
548
  Creates a custom model by fine-tuning a base model with your own dataset. You can create a new custom models or create a new version of existing custom model..
549
549