pulumi-oci 2.5.0a1722062014__py3-none-any.whl → 2.5.0a1722606028__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 +59 -32
- pulumi_oci/bigdataservice/bds_instance.py +47 -0
- pulumi_oci/bigdataservice/get_bds_instance.py +11 -1
- pulumi_oci/bigdataservice/outputs.py +7 -0
- pulumi_oci/core/__init__.py +3 -0
- pulumi_oci/core/_inputs.py +40 -0
- pulumi_oci/core/get_instance_maintenance_event.py +414 -0
- pulumi_oci/core/get_instance_maintenance_events.py +250 -0
- pulumi_oci/core/instance_maintenance_event.py +1022 -0
- pulumi_oci/core/outputs.py +314 -0
- pulumi_oci/database/autonomous_database.py +28 -0
- pulumi_oci/database/get_autonomous_database.py +14 -1
- pulumi_oci/database/outputs.py +22 -0
- pulumi_oci/databasemigration/_inputs.py +184 -0
- pulumi_oci/databasemigration/job.py +99 -24
- pulumi_oci/databasemigration/outputs.py +171 -0
- pulumi_oci/datasafe/__init__.py +2 -4
- pulumi_oci/datasafe/_inputs.py +55 -0
- pulumi_oci/datasafe/alert.py +56 -0
- pulumi_oci/datasafe/alert_policy.py +745 -0
- pulumi_oci/datasafe/alert_policy_rule.py +446 -0
- pulumi_oci/datasafe/get_alert.py +27 -1
- pulumi_oci/datasafe/get_alert_policy.py +26 -2
- pulumi_oci/datasafe/get_alert_policy_rule.py +94 -18
- pulumi_oci/datasafe/get_report.py +14 -1
- pulumi_oci/datasafe/get_report_definition.py +14 -1
- pulumi_oci/datasafe/get_target_alert_policy_association.py +15 -2
- pulumi_oci/datasafe/outputs.py +231 -27
- pulumi_oci/datasafe/report.py +28 -0
- pulumi_oci/datasafe/report_definition.py +28 -0
- pulumi_oci/datasafe/target_alert_policy_association.py +28 -0
- pulumi_oci/fleetsoftwareupdate/__init__.py +15 -0
- pulumi_oci/fleetsoftwareupdate/_inputs.py +553 -0
- pulumi_oci/fleetsoftwareupdate/fsu_collection.py +514 -0
- pulumi_oci/fleetsoftwareupdate/fsu_cycle.py +812 -0
- pulumi_oci/fleetsoftwareupdate/get_fsu_collection.py +225 -0
- pulumi_oci/fleetsoftwareupdate/get_fsu_collections.py +141 -0
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py +325 -0
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycles.py +167 -0
- pulumi_oci/fleetsoftwareupdate/outputs.py +1481 -0
- pulumi_oci/generativeai/get_dedicated_ai_cluster.py +3 -0
- pulumi_oci/generativeai/get_dedicated_ai_clusters.py +3 -0
- pulumi_oci/generativeai/get_endpoint.py +6 -9
- pulumi_oci/generativeai/get_endpoints.py +3 -3
- pulumi_oci/generativeai/get_model.py +36 -6
- pulumi_oci/generativeai/get_models.py +6 -0
- pulumi_oci/generativeai/outputs.py +228 -16
- pulumi_oci/identity/__init__.py +3 -0
- pulumi_oci/identity/_inputs.py +1029 -0
- pulumi_oci/identity/domains_social_identity_provider.py +4628 -0
- pulumi_oci/identity/get_domains_social_identity_provider.py +664 -0
- pulumi_oci/identity/get_domains_social_identity_providers.py +276 -0
- pulumi_oci/identity/outputs.py +19544 -17378
- pulumi_oci/networkfirewall/__init__.py +3 -0
- pulumi_oci/networkfirewall/_inputs.py +150 -0
- pulumi_oci/networkfirewall/get_network_firewall_policy_tunnel_inspection_rule.py +227 -0
- pulumi_oci/networkfirewall/get_network_firewall_policy_tunnel_inspection_rules.py +167 -0
- pulumi_oci/networkfirewall/network_firewall_policy_tunnel_inspection_rule.py +605 -0
- pulumi_oci/networkfirewall/outputs.py +457 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/redis/get_redis_cluster.py +1 -1
- pulumi_oci/redis/outputs.py +2 -2
- pulumi_oci/redis/redis_cluster.py +7 -7
- pulumi_oci/stackmonitoring/_inputs.py +2 -2
- pulumi_oci/stackmonitoring/baselineable_metric.py +76 -28
- pulumi_oci/stackmonitoring/get_baselineable_metric.py +14 -1
- pulumi_oci/stackmonitoring/get_baselineable_metrics.py +45 -5
- pulumi_oci/stackmonitoring/outputs.py +19 -8
- {pulumi_oci-2.5.0a1722062014.dist-info → pulumi_oci-2.5.0a1722606028.dist-info}/METADATA +1 -1
- {pulumi_oci-2.5.0a1722062014.dist-info → pulumi_oci-2.5.0a1722606028.dist-info}/RECORD +72 -56
- {pulumi_oci-2.5.0a1722062014.dist-info → pulumi_oci-2.5.0a1722606028.dist-info}/WHEEL +1 -1
- pulumi_oci/datasafe/masking_policy_health_report_management.py +0 -453
- pulumi_oci/datasafe/masking_report_management.py +0 -693
- pulumi_oci/datasafe/set_security_assessment_baseline_management.py +0 -304
- pulumi_oci/datasafe/set_user_assessment_baseline_management.py +0 -304
- {pulumi_oci-2.5.0a1722062014.dist-info → pulumi_oci-2.5.0a1722606028.dist-info}/top_level.txt +0 -0
@@ -110,6 +110,9 @@ class GetDedicatedAiClusterResult:
|
|
110
110
|
@property
|
111
111
|
@pulumi.getter
|
112
112
|
def id(self) -> str:
|
113
|
+
"""
|
114
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the dedicated AI cluster.
|
115
|
+
"""
|
113
116
|
return pulumi.get(self, "id")
|
114
117
|
|
115
118
|
@property
|
@@ -69,6 +69,9 @@ class GetDedicatedAiClustersResult:
|
|
69
69
|
@property
|
70
70
|
@pulumi.getter
|
71
71
|
def id(self) -> Optional[str]:
|
72
|
+
"""
|
73
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the dedicated AI cluster.
|
74
|
+
"""
|
72
75
|
return pulumi.get(self, "id")
|
73
76
|
|
74
77
|
@property
|
@@ -87,19 +87,22 @@ class GetEndpointResult:
|
|
87
87
|
@property
|
88
88
|
@pulumi.getter(name="definedTags")
|
89
89
|
def defined_tags(self) -> Mapping[str, Any]:
|
90
|
-
"""
|
91
|
-
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
92
|
-
"""
|
93
90
|
return pulumi.get(self, "defined_tags")
|
94
91
|
|
95
92
|
@property
|
96
93
|
@pulumi.getter
|
97
94
|
def description(self) -> str:
|
95
|
+
"""
|
96
|
+
An optional description of the endpoint.
|
97
|
+
"""
|
98
98
|
return pulumi.get(self, "description")
|
99
99
|
|
100
100
|
@property
|
101
101
|
@pulumi.getter(name="displayName")
|
102
102
|
def display_name(self) -> str:
|
103
|
+
"""
|
104
|
+
A user-friendly name. Does not have to be unique, and it's changeable.
|
105
|
+
"""
|
103
106
|
return pulumi.get(self, "display_name")
|
104
107
|
|
105
108
|
@property
|
@@ -115,9 +118,6 @@ class GetEndpointResult:
|
|
115
118
|
@property
|
116
119
|
@pulumi.getter
|
117
120
|
def id(self) -> str:
|
118
|
-
"""
|
119
|
-
An OCID that uniquely identifies this endpoint resource.
|
120
|
-
"""
|
121
121
|
return pulumi.get(self, "id")
|
122
122
|
|
123
123
|
@property
|
@@ -149,9 +149,6 @@ class GetEndpointResult:
|
|
149
149
|
@property
|
150
150
|
@pulumi.getter(name="timeCreated")
|
151
151
|
def time_created(self) -> str:
|
152
|
-
"""
|
153
|
-
The date and time that the endpoint was created in the format of an RFC3339 datetime string.
|
154
|
-
"""
|
155
152
|
return pulumi.get(self, "time_created")
|
156
153
|
|
157
154
|
@property
|
@@ -51,6 +51,9 @@ class GetEndpointsResult:
|
|
51
51
|
@property
|
52
52
|
@pulumi.getter(name="displayName")
|
53
53
|
def display_name(self) -> Optional[str]:
|
54
|
+
"""
|
55
|
+
A user-friendly name. Does not have to be unique, and it's changeable.
|
56
|
+
"""
|
54
57
|
return pulumi.get(self, "display_name")
|
55
58
|
|
56
59
|
@property
|
@@ -69,9 +72,6 @@ class GetEndpointsResult:
|
|
69
72
|
@property
|
70
73
|
@pulumi.getter
|
71
74
|
def id(self) -> Optional[str]:
|
72
|
-
"""
|
73
|
-
An OCID that uniquely identifies this endpoint resource.
|
74
|
-
"""
|
75
75
|
return pulumi.get(self, "id")
|
76
76
|
|
77
77
|
@property
|
@@ -90,6 +90,9 @@ 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
|
+
"""
|
93
96
|
return pulumi.get(self, "base_model_id")
|
94
97
|
|
95
98
|
@property
|
@@ -111,29 +114,38 @@ class GetModelResult:
|
|
111
114
|
@property
|
112
115
|
@pulumi.getter(name="definedTags")
|
113
116
|
def defined_tags(self) -> Mapping[str, Any]:
|
114
|
-
"""
|
115
|
-
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
116
|
-
"""
|
117
117
|
return pulumi.get(self, "defined_tags")
|
118
118
|
|
119
119
|
@property
|
120
120
|
@pulumi.getter
|
121
121
|
def description(self) -> str:
|
122
|
+
"""
|
123
|
+
An optional description of the model.
|
124
|
+
"""
|
122
125
|
return pulumi.get(self, "description")
|
123
126
|
|
124
127
|
@property
|
125
128
|
@pulumi.getter(name="displayName")
|
126
129
|
def display_name(self) -> str:
|
130
|
+
"""
|
131
|
+
A user-friendly name.
|
132
|
+
"""
|
127
133
|
return pulumi.get(self, "display_name")
|
128
134
|
|
129
135
|
@property
|
130
136
|
@pulumi.getter(name="fineTuneDetails")
|
131
137
|
def fine_tune_details(self) -> Sequence['outputs.GetModelFineTuneDetailResult']:
|
138
|
+
"""
|
139
|
+
Details about fine-tuning a custom model.
|
140
|
+
"""
|
132
141
|
return pulumi.get(self, "fine_tune_details")
|
133
142
|
|
134
143
|
@property
|
135
144
|
@pulumi.getter(name="freeformTags")
|
136
145
|
def freeform_tags(self) -> Mapping[str, Any]:
|
146
|
+
"""
|
147
|
+
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"}`
|
148
|
+
"""
|
137
149
|
return pulumi.get(self, "freeform_tags")
|
138
150
|
|
139
151
|
@property
|
@@ -147,11 +159,17 @@ class GetModelResult:
|
|
147
159
|
@property
|
148
160
|
@pulumi.getter(name="isLongTermSupported")
|
149
161
|
def is_long_term_supported(self) -> bool:
|
162
|
+
"""
|
163
|
+
Whether a model is supported long-term. Only applicable to base models.
|
164
|
+
"""
|
150
165
|
return pulumi.get(self, "is_long_term_supported")
|
151
166
|
|
152
167
|
@property
|
153
168
|
@pulumi.getter(name="lifecycleDetails")
|
154
169
|
def lifecycle_details(self) -> str:
|
170
|
+
"""
|
171
|
+
A message describing the current state of the model in more detail that can provide actionable information.
|
172
|
+
"""
|
155
173
|
return pulumi.get(self, "lifecycle_details")
|
156
174
|
|
157
175
|
@property
|
@@ -162,6 +180,9 @@ class GetModelResult:
|
|
162
180
|
@property
|
163
181
|
@pulumi.getter(name="modelMetrics")
|
164
182
|
def model_metrics(self) -> Sequence['outputs.GetModelModelMetricResult']:
|
183
|
+
"""
|
184
|
+
Model metrics during the creation of a new model.
|
185
|
+
"""
|
165
186
|
return pulumi.get(self, "model_metrics")
|
166
187
|
|
167
188
|
@property
|
@@ -175,11 +196,17 @@ class GetModelResult:
|
|
175
196
|
@property
|
176
197
|
@pulumi.getter(name="systemTags")
|
177
198
|
def system_tags(self) -> Mapping[str, Any]:
|
199
|
+
"""
|
200
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
201
|
+
"""
|
178
202
|
return pulumi.get(self, "system_tags")
|
179
203
|
|
180
204
|
@property
|
181
205
|
@pulumi.getter(name="timeCreated")
|
182
206
|
def time_created(self) -> str:
|
207
|
+
"""
|
208
|
+
The date and time that the model was created in the format of an RFC3339 datetime string.
|
209
|
+
"""
|
183
210
|
return pulumi.get(self, "time_created")
|
184
211
|
|
185
212
|
@property
|
@@ -193,19 +220,22 @@ class GetModelResult:
|
|
193
220
|
@property
|
194
221
|
@pulumi.getter(name="timeUpdated")
|
195
222
|
def time_updated(self) -> str:
|
223
|
+
"""
|
224
|
+
The date and time that the model was updated in the format of an RFC3339 datetime string.
|
225
|
+
"""
|
196
226
|
return pulumi.get(self, "time_updated")
|
197
227
|
|
198
228
|
@property
|
199
229
|
@pulumi.getter
|
200
230
|
def type(self) -> str:
|
201
|
-
"""
|
202
|
-
The model type indicating whether this is a pretrained/base model or a custom/fine-tuned model.
|
203
|
-
"""
|
204
231
|
return pulumi.get(self, "type")
|
205
232
|
|
206
233
|
@property
|
207
234
|
@pulumi.getter
|
208
235
|
def vendor(self) -> str:
|
236
|
+
"""
|
237
|
+
The provider of the base model.
|
238
|
+
"""
|
209
239
|
return pulumi.get(self, "vendor")
|
210
240
|
|
211
241
|
@property
|
@@ -65,6 +65,9 @@ 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
|
+
"""
|
68
71
|
return pulumi.get(self, "display_name")
|
69
72
|
|
70
73
|
@property
|
@@ -99,6 +102,9 @@ class GetModelsResult:
|
|
99
102
|
@property
|
100
103
|
@pulumi.getter
|
101
104
|
def vendor(self) -> Optional[str]:
|
105
|
+
"""
|
106
|
+
The provider of the base model.
|
107
|
+
"""
|
102
108
|
return pulumi.get(self, "vendor")
|
103
109
|
|
104
110
|
|