pulumi-oci 2.20.0a1734503093__py3-none-any.whl → 2.21.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 +16 -0
- pulumi_oci/bigdataservice/__init__.py +4 -0
- pulumi_oci/bigdataservice/_inputs.py +672 -6
- pulumi_oci/bigdataservice/bds_instance.py +169 -7
- pulumi_oci/bigdataservice/bds_instance_api_key.py +66 -3
- pulumi_oci/bigdataservice/bds_instance_identity_configuration.py +859 -0
- pulumi_oci/bigdataservice/bds_instance_patch_action.py +4 -0
- pulumi_oci/bigdataservice/get_bds_cluster_versions.py +123 -0
- pulumi_oci/bigdataservice/get_bds_instance.py +48 -1
- pulumi_oci/bigdataservice/get_bds_instance_api_key.py +17 -1
- pulumi_oci/bigdataservice/get_bds_instance_api_keys.py +3 -0
- pulumi_oci/bigdataservice/get_bds_instance_identity_configuration.py +322 -0
- pulumi_oci/bigdataservice/get_bds_instance_identity_configurations.py +207 -0
- pulumi_oci/bigdataservice/outputs.py +1466 -98
- pulumi_oci/blockchain/get_blockchain_platform.py +1 -1
- pulumi_oci/blockchain/outputs.py +2 -2
- pulumi_oci/core/_inputs.py +271 -21
- pulumi_oci/core/get_instance.py +15 -1
- pulumi_oci/core/get_ipv6.py +15 -1
- pulumi_oci/core/get_private_ip.py +12 -1
- pulumi_oci/core/get_virtual_circuit.py +1 -1
- pulumi_oci/core/get_vnic.py +12 -1
- pulumi_oci/core/instance.py +47 -0
- pulumi_oci/core/instance_configuration.py +16 -0
- pulumi_oci/core/ipv6.py +52 -3
- pulumi_oci/core/outputs.py +566 -52
- pulumi_oci/core/private_ip.py +49 -0
- pulumi_oci/core/virtual_circuit.py +4 -4
- pulumi_oci/database/autonomous_database.py +47 -0
- pulumi_oci/database/exadb_vm_cluster.py +104 -0
- pulumi_oci/database/get_autonomous_database.py +15 -1
- pulumi_oci/database/outputs.py +22 -0
- pulumi_oci/datascience/_inputs.py +32 -12
- pulumi_oci/datascience/get_job_run.py +3 -3
- pulumi_oci/datascience/get_job_runs.py +2 -2
- pulumi_oci/datascience/job_run.py +7 -7
- pulumi_oci/datascience/model_deployment.py +2 -0
- pulumi_oci/datascience/outputs.py +62 -26
- pulumi_oci/generativeai/dedicated_ai_cluster.py +21 -0
- pulumi_oci/goldengate/__init__.py +7 -0
- pulumi_oci/goldengate/_inputs.py +665 -0
- pulumi_oci/goldengate/connection.py +7 -7
- pulumi_oci/goldengate/get_pipeline.py +408 -0
- pulumi_oci/goldengate/get_pipeline_running_processes.py +144 -0
- pulumi_oci/goldengate/get_pipeline_schema_tables.py +207 -0
- pulumi_oci/goldengate/get_pipeline_schemas.py +163 -0
- pulumi_oci/goldengate/get_pipelines.py +213 -0
- pulumi_oci/goldengate/get_recipes.py +188 -0
- pulumi_oci/goldengate/get_trail_files.py +4 -2
- pulumi_oci/goldengate/get_trail_sequences.py +4 -2
- pulumi_oci/goldengate/outputs.py +1500 -0
- pulumi_oci/goldengate/pipeline.py +928 -0
- pulumi_oci/opensearch/_inputs.py +312 -0
- pulumi_oci/opensearch/cluster.py +289 -104
- pulumi_oci/opensearch/get_opensearch_cluster.py +84 -2
- pulumi_oci/opensearch/get_opensearch_clusters.py +1 -1
- pulumi_oci/opensearch/outputs.py +678 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/stackmonitoring/_inputs.py +94 -14
- pulumi_oci/stackmonitoring/get_metric_extensions.py +22 -3
- pulumi_oci/stackmonitoring/metric_extension.py +8 -0
- pulumi_oci/stackmonitoring/outputs.py +166 -24
- {pulumi_oci-2.20.0a1734503093.dist-info → pulumi_oci-2.21.0.dist-info}/METADATA +10 -4
- {pulumi_oci-2.20.0a1734503093.dist-info → pulumi_oci-2.21.0.dist-info}/RECORD +66 -55
- {pulumi_oci-2.20.0a1734503093.dist-info → pulumi_oci-2.21.0.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.20.0a1734503093.dist-info → pulumi_oci-2.21.0.dist-info}/top_level.txt +0 -0
pulumi_oci/opensearch/_inputs.py
CHANGED
@@ -15,6 +15,14 @@ else:
|
|
15
15
|
from .. import _utilities
|
16
16
|
|
17
17
|
__all__ = [
|
18
|
+
'ClusterMaintenanceDetailsArgs',
|
19
|
+
'ClusterMaintenanceDetailsArgsDict',
|
20
|
+
'ClusterOutboundClusterConfigArgs',
|
21
|
+
'ClusterOutboundClusterConfigArgsDict',
|
22
|
+
'ClusterOutboundClusterConfigOutboundClusterArgs',
|
23
|
+
'ClusterOutboundClusterConfigOutboundClusterArgsDict',
|
24
|
+
'ClusterReverseConnectionEndpointArgs',
|
25
|
+
'ClusterReverseConnectionEndpointArgsDict',
|
18
26
|
'GetOpensearchClustersFilterArgs',
|
19
27
|
'GetOpensearchClustersFilterArgsDict',
|
20
28
|
'GetOpensearchVersionsFilterArgs',
|
@@ -23,6 +31,310 @@ __all__ = [
|
|
23
31
|
|
24
32
|
MYPY = False
|
25
33
|
|
34
|
+
if not MYPY:
|
35
|
+
class ClusterMaintenanceDetailsArgsDict(TypedDict):
|
36
|
+
end_time: NotRequired[pulumi.Input[str]]
|
37
|
+
"""
|
38
|
+
End time of the maintenance activity
|
39
|
+
"""
|
40
|
+
notification_email_ids: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
41
|
+
"""
|
42
|
+
(Updatable) The Email IDs given by the customer to get notified about maintenance activities
|
43
|
+
"""
|
44
|
+
start_time: NotRequired[pulumi.Input[str]]
|
45
|
+
"""
|
46
|
+
Start time of the maintenance activity
|
47
|
+
"""
|
48
|
+
state: NotRequired[pulumi.Input[str]]
|
49
|
+
"""
|
50
|
+
The current state of the cluster.
|
51
|
+
"""
|
52
|
+
elif False:
|
53
|
+
ClusterMaintenanceDetailsArgsDict: TypeAlias = Mapping[str, Any]
|
54
|
+
|
55
|
+
@pulumi.input_type
|
56
|
+
class ClusterMaintenanceDetailsArgs:
|
57
|
+
def __init__(__self__, *,
|
58
|
+
end_time: Optional[pulumi.Input[str]] = None,
|
59
|
+
notification_email_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
60
|
+
start_time: Optional[pulumi.Input[str]] = None,
|
61
|
+
state: Optional[pulumi.Input[str]] = None):
|
62
|
+
"""
|
63
|
+
:param pulumi.Input[str] end_time: End time of the maintenance activity
|
64
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] notification_email_ids: (Updatable) The Email IDs given by the customer to get notified about maintenance activities
|
65
|
+
:param pulumi.Input[str] start_time: Start time of the maintenance activity
|
66
|
+
:param pulumi.Input[str] state: The current state of the cluster.
|
67
|
+
"""
|
68
|
+
if end_time is not None:
|
69
|
+
pulumi.set(__self__, "end_time", end_time)
|
70
|
+
if notification_email_ids is not None:
|
71
|
+
pulumi.set(__self__, "notification_email_ids", notification_email_ids)
|
72
|
+
if start_time is not None:
|
73
|
+
pulumi.set(__self__, "start_time", start_time)
|
74
|
+
if state is not None:
|
75
|
+
pulumi.set(__self__, "state", state)
|
76
|
+
|
77
|
+
@property
|
78
|
+
@pulumi.getter(name="endTime")
|
79
|
+
def end_time(self) -> Optional[pulumi.Input[str]]:
|
80
|
+
"""
|
81
|
+
End time of the maintenance activity
|
82
|
+
"""
|
83
|
+
return pulumi.get(self, "end_time")
|
84
|
+
|
85
|
+
@end_time.setter
|
86
|
+
def end_time(self, value: Optional[pulumi.Input[str]]):
|
87
|
+
pulumi.set(self, "end_time", value)
|
88
|
+
|
89
|
+
@property
|
90
|
+
@pulumi.getter(name="notificationEmailIds")
|
91
|
+
def notification_email_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
92
|
+
"""
|
93
|
+
(Updatable) The Email IDs given by the customer to get notified about maintenance activities
|
94
|
+
"""
|
95
|
+
return pulumi.get(self, "notification_email_ids")
|
96
|
+
|
97
|
+
@notification_email_ids.setter
|
98
|
+
def notification_email_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
99
|
+
pulumi.set(self, "notification_email_ids", value)
|
100
|
+
|
101
|
+
@property
|
102
|
+
@pulumi.getter(name="startTime")
|
103
|
+
def start_time(self) -> Optional[pulumi.Input[str]]:
|
104
|
+
"""
|
105
|
+
Start time of the maintenance activity
|
106
|
+
"""
|
107
|
+
return pulumi.get(self, "start_time")
|
108
|
+
|
109
|
+
@start_time.setter
|
110
|
+
def start_time(self, value: Optional[pulumi.Input[str]]):
|
111
|
+
pulumi.set(self, "start_time", value)
|
112
|
+
|
113
|
+
@property
|
114
|
+
@pulumi.getter
|
115
|
+
def state(self) -> Optional[pulumi.Input[str]]:
|
116
|
+
"""
|
117
|
+
The current state of the cluster.
|
118
|
+
"""
|
119
|
+
return pulumi.get(self, "state")
|
120
|
+
|
121
|
+
@state.setter
|
122
|
+
def state(self, value: Optional[pulumi.Input[str]]):
|
123
|
+
pulumi.set(self, "state", value)
|
124
|
+
|
125
|
+
|
126
|
+
if not MYPY:
|
127
|
+
class ClusterOutboundClusterConfigArgsDict(TypedDict):
|
128
|
+
is_enabled: pulumi.Input[bool]
|
129
|
+
"""
|
130
|
+
(Updatable) Flag to indicate whether outbound cluster configuration is enabled
|
131
|
+
"""
|
132
|
+
outbound_clusters: pulumi.Input[Sequence[pulumi.Input['ClusterOutboundClusterConfigOutboundClusterArgsDict']]]
|
133
|
+
"""
|
134
|
+
(Updatable) List of outbound clusters to be connected to the inbound cluster
|
135
|
+
"""
|
136
|
+
elif False:
|
137
|
+
ClusterOutboundClusterConfigArgsDict: TypeAlias = Mapping[str, Any]
|
138
|
+
|
139
|
+
@pulumi.input_type
|
140
|
+
class ClusterOutboundClusterConfigArgs:
|
141
|
+
def __init__(__self__, *,
|
142
|
+
is_enabled: pulumi.Input[bool],
|
143
|
+
outbound_clusters: pulumi.Input[Sequence[pulumi.Input['ClusterOutboundClusterConfigOutboundClusterArgs']]]):
|
144
|
+
"""
|
145
|
+
:param pulumi.Input[bool] is_enabled: (Updatable) Flag to indicate whether outbound cluster configuration is enabled
|
146
|
+
:param pulumi.Input[Sequence[pulumi.Input['ClusterOutboundClusterConfigOutboundClusterArgs']]] outbound_clusters: (Updatable) List of outbound clusters to be connected to the inbound cluster
|
147
|
+
"""
|
148
|
+
pulumi.set(__self__, "is_enabled", is_enabled)
|
149
|
+
pulumi.set(__self__, "outbound_clusters", outbound_clusters)
|
150
|
+
|
151
|
+
@property
|
152
|
+
@pulumi.getter(name="isEnabled")
|
153
|
+
def is_enabled(self) -> pulumi.Input[bool]:
|
154
|
+
"""
|
155
|
+
(Updatable) Flag to indicate whether outbound cluster configuration is enabled
|
156
|
+
"""
|
157
|
+
return pulumi.get(self, "is_enabled")
|
158
|
+
|
159
|
+
@is_enabled.setter
|
160
|
+
def is_enabled(self, value: pulumi.Input[bool]):
|
161
|
+
pulumi.set(self, "is_enabled", value)
|
162
|
+
|
163
|
+
@property
|
164
|
+
@pulumi.getter(name="outboundClusters")
|
165
|
+
def outbound_clusters(self) -> pulumi.Input[Sequence[pulumi.Input['ClusterOutboundClusterConfigOutboundClusterArgs']]]:
|
166
|
+
"""
|
167
|
+
(Updatable) List of outbound clusters to be connected to the inbound cluster
|
168
|
+
"""
|
169
|
+
return pulumi.get(self, "outbound_clusters")
|
170
|
+
|
171
|
+
@outbound_clusters.setter
|
172
|
+
def outbound_clusters(self, value: pulumi.Input[Sequence[pulumi.Input['ClusterOutboundClusterConfigOutboundClusterArgs']]]):
|
173
|
+
pulumi.set(self, "outbound_clusters", value)
|
174
|
+
|
175
|
+
|
176
|
+
if not MYPY:
|
177
|
+
class ClusterOutboundClusterConfigOutboundClusterArgsDict(TypedDict):
|
178
|
+
display_name: pulumi.Input[str]
|
179
|
+
"""
|
180
|
+
(Updatable) Name of the Outbound cluster. Avoid entering confidential information.
|
181
|
+
"""
|
182
|
+
seed_cluster_id: pulumi.Input[str]
|
183
|
+
"""
|
184
|
+
(Updatable) OCID of the Outbound cluster
|
185
|
+
"""
|
186
|
+
is_skip_unavailable: NotRequired[pulumi.Input[bool]]
|
187
|
+
"""
|
188
|
+
(Updatable) Flag to indicate whether to skip the Outbound cluster during cross cluster search, if it is unavailable
|
189
|
+
"""
|
190
|
+
mode: NotRequired[pulumi.Input[str]]
|
191
|
+
"""
|
192
|
+
(Updatable) Mode for the cross cluster connection
|
193
|
+
"""
|
194
|
+
ping_schedule: NotRequired[pulumi.Input[str]]
|
195
|
+
"""
|
196
|
+
(Updatable) Sets the time interval between regular application-level ping messages that are sent to try and keep outbound cluster connections alive. If set to -1, application-level ping messages to this outbound cluster are not sent. If unset, application-level ping messages are sent according to the global transport.ping_schedule setting, which defaults to -1 meaning that pings are not sent.
|
197
|
+
"""
|
198
|
+
elif False:
|
199
|
+
ClusterOutboundClusterConfigOutboundClusterArgsDict: TypeAlias = Mapping[str, Any]
|
200
|
+
|
201
|
+
@pulumi.input_type
|
202
|
+
class ClusterOutboundClusterConfigOutboundClusterArgs:
|
203
|
+
def __init__(__self__, *,
|
204
|
+
display_name: pulumi.Input[str],
|
205
|
+
seed_cluster_id: pulumi.Input[str],
|
206
|
+
is_skip_unavailable: Optional[pulumi.Input[bool]] = None,
|
207
|
+
mode: Optional[pulumi.Input[str]] = None,
|
208
|
+
ping_schedule: Optional[pulumi.Input[str]] = None):
|
209
|
+
"""
|
210
|
+
:param pulumi.Input[str] display_name: (Updatable) Name of the Outbound cluster. Avoid entering confidential information.
|
211
|
+
:param pulumi.Input[str] seed_cluster_id: (Updatable) OCID of the Outbound cluster
|
212
|
+
:param pulumi.Input[bool] is_skip_unavailable: (Updatable) Flag to indicate whether to skip the Outbound cluster during cross cluster search, if it is unavailable
|
213
|
+
:param pulumi.Input[str] mode: (Updatable) Mode for the cross cluster connection
|
214
|
+
:param pulumi.Input[str] ping_schedule: (Updatable) Sets the time interval between regular application-level ping messages that are sent to try and keep outbound cluster connections alive. If set to -1, application-level ping messages to this outbound cluster are not sent. If unset, application-level ping messages are sent according to the global transport.ping_schedule setting, which defaults to -1 meaning that pings are not sent.
|
215
|
+
"""
|
216
|
+
pulumi.set(__self__, "display_name", display_name)
|
217
|
+
pulumi.set(__self__, "seed_cluster_id", seed_cluster_id)
|
218
|
+
if is_skip_unavailable is not None:
|
219
|
+
pulumi.set(__self__, "is_skip_unavailable", is_skip_unavailable)
|
220
|
+
if mode is not None:
|
221
|
+
pulumi.set(__self__, "mode", mode)
|
222
|
+
if ping_schedule is not None:
|
223
|
+
pulumi.set(__self__, "ping_schedule", ping_schedule)
|
224
|
+
|
225
|
+
@property
|
226
|
+
@pulumi.getter(name="displayName")
|
227
|
+
def display_name(self) -> pulumi.Input[str]:
|
228
|
+
"""
|
229
|
+
(Updatable) Name of the Outbound cluster. Avoid entering confidential information.
|
230
|
+
"""
|
231
|
+
return pulumi.get(self, "display_name")
|
232
|
+
|
233
|
+
@display_name.setter
|
234
|
+
def display_name(self, value: pulumi.Input[str]):
|
235
|
+
pulumi.set(self, "display_name", value)
|
236
|
+
|
237
|
+
@property
|
238
|
+
@pulumi.getter(name="seedClusterId")
|
239
|
+
def seed_cluster_id(self) -> pulumi.Input[str]:
|
240
|
+
"""
|
241
|
+
(Updatable) OCID of the Outbound cluster
|
242
|
+
"""
|
243
|
+
return pulumi.get(self, "seed_cluster_id")
|
244
|
+
|
245
|
+
@seed_cluster_id.setter
|
246
|
+
def seed_cluster_id(self, value: pulumi.Input[str]):
|
247
|
+
pulumi.set(self, "seed_cluster_id", value)
|
248
|
+
|
249
|
+
@property
|
250
|
+
@pulumi.getter(name="isSkipUnavailable")
|
251
|
+
def is_skip_unavailable(self) -> Optional[pulumi.Input[bool]]:
|
252
|
+
"""
|
253
|
+
(Updatable) Flag to indicate whether to skip the Outbound cluster during cross cluster search, if it is unavailable
|
254
|
+
"""
|
255
|
+
return pulumi.get(self, "is_skip_unavailable")
|
256
|
+
|
257
|
+
@is_skip_unavailable.setter
|
258
|
+
def is_skip_unavailable(self, value: Optional[pulumi.Input[bool]]):
|
259
|
+
pulumi.set(self, "is_skip_unavailable", value)
|
260
|
+
|
261
|
+
@property
|
262
|
+
@pulumi.getter
|
263
|
+
def mode(self) -> Optional[pulumi.Input[str]]:
|
264
|
+
"""
|
265
|
+
(Updatable) Mode for the cross cluster connection
|
266
|
+
"""
|
267
|
+
return pulumi.get(self, "mode")
|
268
|
+
|
269
|
+
@mode.setter
|
270
|
+
def mode(self, value: Optional[pulumi.Input[str]]):
|
271
|
+
pulumi.set(self, "mode", value)
|
272
|
+
|
273
|
+
@property
|
274
|
+
@pulumi.getter(name="pingSchedule")
|
275
|
+
def ping_schedule(self) -> Optional[pulumi.Input[str]]:
|
276
|
+
"""
|
277
|
+
(Updatable) Sets the time interval between regular application-level ping messages that are sent to try and keep outbound cluster connections alive. If set to -1, application-level ping messages to this outbound cluster are not sent. If unset, application-level ping messages are sent according to the global transport.ping_schedule setting, which defaults to -1 meaning that pings are not sent.
|
278
|
+
"""
|
279
|
+
return pulumi.get(self, "ping_schedule")
|
280
|
+
|
281
|
+
@ping_schedule.setter
|
282
|
+
def ping_schedule(self, value: Optional[pulumi.Input[str]]):
|
283
|
+
pulumi.set(self, "ping_schedule", value)
|
284
|
+
|
285
|
+
|
286
|
+
if not MYPY:
|
287
|
+
class ClusterReverseConnectionEndpointArgsDict(TypedDict):
|
288
|
+
customer_ip: NotRequired[pulumi.Input[str]]
|
289
|
+
"""
|
290
|
+
The IP addresses of the endpoint in customer VCN
|
291
|
+
"""
|
292
|
+
nat_ip: NotRequired[pulumi.Input[str]]
|
293
|
+
"""
|
294
|
+
The NAT IP addresses of the endpoint in service VCN
|
295
|
+
"""
|
296
|
+
elif False:
|
297
|
+
ClusterReverseConnectionEndpointArgsDict: TypeAlias = Mapping[str, Any]
|
298
|
+
|
299
|
+
@pulumi.input_type
|
300
|
+
class ClusterReverseConnectionEndpointArgs:
|
301
|
+
def __init__(__self__, *,
|
302
|
+
customer_ip: Optional[pulumi.Input[str]] = None,
|
303
|
+
nat_ip: Optional[pulumi.Input[str]] = None):
|
304
|
+
"""
|
305
|
+
:param pulumi.Input[str] customer_ip: The IP addresses of the endpoint in customer VCN
|
306
|
+
:param pulumi.Input[str] nat_ip: The NAT IP addresses of the endpoint in service VCN
|
307
|
+
"""
|
308
|
+
if customer_ip is not None:
|
309
|
+
pulumi.set(__self__, "customer_ip", customer_ip)
|
310
|
+
if nat_ip is not None:
|
311
|
+
pulumi.set(__self__, "nat_ip", nat_ip)
|
312
|
+
|
313
|
+
@property
|
314
|
+
@pulumi.getter(name="customerIp")
|
315
|
+
def customer_ip(self) -> Optional[pulumi.Input[str]]:
|
316
|
+
"""
|
317
|
+
The IP addresses of the endpoint in customer VCN
|
318
|
+
"""
|
319
|
+
return pulumi.get(self, "customer_ip")
|
320
|
+
|
321
|
+
@customer_ip.setter
|
322
|
+
def customer_ip(self, value: Optional[pulumi.Input[str]]):
|
323
|
+
pulumi.set(self, "customer_ip", value)
|
324
|
+
|
325
|
+
@property
|
326
|
+
@pulumi.getter(name="natIp")
|
327
|
+
def nat_ip(self) -> Optional[pulumi.Input[str]]:
|
328
|
+
"""
|
329
|
+
The NAT IP addresses of the endpoint in service VCN
|
330
|
+
"""
|
331
|
+
return pulumi.get(self, "nat_ip")
|
332
|
+
|
333
|
+
@nat_ip.setter
|
334
|
+
def nat_ip(self, value: Optional[pulumi.Input[str]]):
|
335
|
+
pulumi.set(self, "nat_ip", value)
|
336
|
+
|
337
|
+
|
26
338
|
if not MYPY:
|
27
339
|
class GetOpensearchClustersFilterArgsDict(TypedDict):
|
28
340
|
name: str
|