pulumi-oci 2.3.0__py3-none-any.whl → 2.3.0a1721198962__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 +11 -0
- pulumi_oci/_utilities.py +4 -3
- pulumi_oci/cloudmigrations/_inputs.py +0 -8
- pulumi_oci/cloudmigrations/outputs.py +0 -8
- pulumi_oci/core/_inputs.py +0 -4
- pulumi_oci/core/outputs.py +0 -4
- pulumi_oci/database/_inputs.py +0 -26
- pulumi_oci/database/outputs.py +0 -26
- pulumi_oci/dataintegration/_inputs.py +0 -4
- pulumi_oci/dataintegration/outputs.py +0 -4
- pulumi_oci/emwarehouse/__init__.py +15 -0
- pulumi_oci/emwarehouse/_inputs.py +94 -0
- pulumi_oci/emwarehouse/em_warehouse.py +721 -0
- pulumi_oci/emwarehouse/get_em_warehouse.py +300 -0
- pulumi_oci/emwarehouse/get_em_warehouses.py +203 -0
- pulumi_oci/emwarehouse/get_etl_run.py +159 -0
- pulumi_oci/emwarehouse/get_etl_runs.py +173 -0
- pulumi_oci/emwarehouse/get_resource_usage.py +171 -0
- pulumi_oci/emwarehouse/outputs.py +616 -0
- pulumi_oci/managementagent/_inputs.py +0 -44
- pulumi_oci/managementagent/outputs.py +0 -44
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-2.3.0.dist-info → pulumi_oci-2.3.0a1721198962.dist-info}/METADATA +1 -1
- {pulumi_oci-2.3.0.dist-info → pulumi_oci-2.3.0a1721198962.dist-info}/RECORD +26 -17
- {pulumi_oci-2.3.0.dist-info → pulumi_oci-2.3.0a1721198962.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.3.0.dist-info → pulumi_oci-2.3.0a1721198962.dist-info}/top_level.txt +0 -0
@@ -46,16 +46,9 @@ class ManagementAgentDataSourceListArgs:
|
|
46
46
|
type: Optional[pulumi.Input[str]] = None,
|
47
47
|
url: Optional[pulumi.Input[str]] = None):
|
48
48
|
"""
|
49
|
-
:param pulumi.Input[str] name: Name of the property
|
50
|
-
:param pulumi.Input[int] read_data_limit: Number in kilobytes. The limit on the data being sent, not to exceed the agent's fixed limit of 400 (KB).
|
51
|
-
:param pulumi.Input[int] read_timeout: Number in milliseconds. The timeout for reading the response from the Prometheus Exporter's endpoint.
|
52
|
-
:param pulumi.Input[str] resource_group: Oracle Cloud Infrastructure monitoring resource group to assign the metric to.
|
53
|
-
:param pulumi.Input[int] schedule_mins: Number in minutes. The scraping occurs at the specified interval.
|
54
49
|
:param pulumi.Input[str] state: The current state of managementAgent
|
55
50
|
:param pulumi.Input[str] time_created: The time the Management Agent was created. An RFC3339 formatted datetime string
|
56
51
|
:param pulumi.Input[str] time_updated: The time the Management Agent was last updated. An RFC3339 formatted datetime string
|
57
|
-
:param pulumi.Input[str] type: The type of the DataSource.
|
58
|
-
:param pulumi.Input[str] url: The url through which the Prometheus Exporter publishes its metrics. (http only)
|
59
52
|
"""
|
60
53
|
if allow_metrics is not None:
|
61
54
|
pulumi.set(__self__, "allow_metrics", allow_metrics)
|
@@ -151,9 +144,6 @@ class ManagementAgentDataSourceListArgs:
|
|
151
144
|
@property
|
152
145
|
@pulumi.getter
|
153
146
|
def name(self) -> Optional[pulumi.Input[str]]:
|
154
|
-
"""
|
155
|
-
Name of the property
|
156
|
-
"""
|
157
147
|
return pulumi.get(self, "name")
|
158
148
|
|
159
149
|
@name.setter
|
@@ -181,9 +171,6 @@ class ManagementAgentDataSourceListArgs:
|
|
181
171
|
@property
|
182
172
|
@pulumi.getter(name="readDataLimit")
|
183
173
|
def read_data_limit(self) -> Optional[pulumi.Input[int]]:
|
184
|
-
"""
|
185
|
-
Number in kilobytes. The limit on the data being sent, not to exceed the agent's fixed limit of 400 (KB).
|
186
|
-
"""
|
187
174
|
return pulumi.get(self, "read_data_limit")
|
188
175
|
|
189
176
|
@read_data_limit.setter
|
@@ -193,9 +180,6 @@ class ManagementAgentDataSourceListArgs:
|
|
193
180
|
@property
|
194
181
|
@pulumi.getter(name="readTimeout")
|
195
182
|
def read_timeout(self) -> Optional[pulumi.Input[int]]:
|
196
|
-
"""
|
197
|
-
Number in milliseconds. The timeout for reading the response from the Prometheus Exporter's endpoint.
|
198
|
-
"""
|
199
183
|
return pulumi.get(self, "read_timeout")
|
200
184
|
|
201
185
|
@read_timeout.setter
|
@@ -205,9 +189,6 @@ class ManagementAgentDataSourceListArgs:
|
|
205
189
|
@property
|
206
190
|
@pulumi.getter(name="resourceGroup")
|
207
191
|
def resource_group(self) -> Optional[pulumi.Input[str]]:
|
208
|
-
"""
|
209
|
-
Oracle Cloud Infrastructure monitoring resource group to assign the metric to.
|
210
|
-
"""
|
211
192
|
return pulumi.get(self, "resource_group")
|
212
193
|
|
213
194
|
@resource_group.setter
|
@@ -217,9 +198,6 @@ class ManagementAgentDataSourceListArgs:
|
|
217
198
|
@property
|
218
199
|
@pulumi.getter(name="scheduleMins")
|
219
200
|
def schedule_mins(self) -> Optional[pulumi.Input[int]]:
|
220
|
-
"""
|
221
|
-
Number in minutes. The scraping occurs at the specified interval.
|
222
|
-
"""
|
223
201
|
return pulumi.get(self, "schedule_mins")
|
224
202
|
|
225
203
|
@schedule_mins.setter
|
@@ -265,9 +243,6 @@ class ManagementAgentDataSourceListArgs:
|
|
265
243
|
@property
|
266
244
|
@pulumi.getter
|
267
245
|
def type(self) -> Optional[pulumi.Input[str]]:
|
268
|
-
"""
|
269
|
-
The type of the DataSource.
|
270
|
-
"""
|
271
246
|
return pulumi.get(self, "type")
|
272
247
|
|
273
248
|
@type.setter
|
@@ -277,9 +252,6 @@ class ManagementAgentDataSourceListArgs:
|
|
277
252
|
@property
|
278
253
|
@pulumi.getter
|
279
254
|
def url(self) -> Optional[pulumi.Input[str]]:
|
280
|
-
"""
|
281
|
-
The url through which the Prometheus Exporter publishes its metrics. (http only)
|
282
|
-
"""
|
283
255
|
return pulumi.get(self, "url")
|
284
256
|
|
285
257
|
@url.setter
|
@@ -292,9 +264,6 @@ class ManagementAgentDataSourceListMetricDimensionArgs:
|
|
292
264
|
def __init__(__self__, *,
|
293
265
|
name: Optional[pulumi.Input[str]] = None,
|
294
266
|
value: Optional[pulumi.Input[str]] = None):
|
295
|
-
"""
|
296
|
-
:param pulumi.Input[str] name: Name of the property
|
297
|
-
"""
|
298
267
|
if name is not None:
|
299
268
|
pulumi.set(__self__, "name", name)
|
300
269
|
if value is not None:
|
@@ -303,9 +272,6 @@ class ManagementAgentDataSourceListMetricDimensionArgs:
|
|
303
272
|
@property
|
304
273
|
@pulumi.getter
|
305
274
|
def name(self) -> Optional[pulumi.Input[str]]:
|
306
|
-
"""
|
307
|
-
Name of the property
|
308
|
-
"""
|
309
275
|
return pulumi.get(self, "name")
|
310
276
|
|
311
277
|
@name.setter
|
@@ -366,10 +332,6 @@ class ManagementAgentDataSourceSummaryListArgs:
|
|
366
332
|
key: Optional[pulumi.Input[str]] = None,
|
367
333
|
name: Optional[pulumi.Input[str]] = None,
|
368
334
|
type: Optional[pulumi.Input[str]] = None):
|
369
|
-
"""
|
370
|
-
:param pulumi.Input[str] name: Name of the property
|
371
|
-
:param pulumi.Input[str] type: The type of the DataSource.
|
372
|
-
"""
|
373
335
|
if is_daemon_set is not None:
|
374
336
|
pulumi.set(__self__, "is_daemon_set", is_daemon_set)
|
375
337
|
if key is not None:
|
@@ -400,9 +362,6 @@ class ManagementAgentDataSourceSummaryListArgs:
|
|
400
362
|
@property
|
401
363
|
@pulumi.getter
|
402
364
|
def name(self) -> Optional[pulumi.Input[str]]:
|
403
|
-
"""
|
404
|
-
Name of the property
|
405
|
-
"""
|
406
365
|
return pulumi.get(self, "name")
|
407
366
|
|
408
367
|
@name.setter
|
@@ -412,9 +371,6 @@ class ManagementAgentDataSourceSummaryListArgs:
|
|
412
371
|
@property
|
413
372
|
@pulumi.getter
|
414
373
|
def type(self) -> Optional[pulumi.Input[str]]:
|
415
|
-
"""
|
416
|
-
The type of the DataSource.
|
417
|
-
"""
|
418
374
|
return pulumi.get(self, "type")
|
419
375
|
|
420
376
|
@type.setter
|
@@ -108,16 +108,9 @@ class ManagementAgentDataSourceList(dict):
|
|
108
108
|
type: Optional[str] = None,
|
109
109
|
url: Optional[str] = None):
|
110
110
|
"""
|
111
|
-
:param str name: Name of the property
|
112
|
-
:param int read_data_limit: Number in kilobytes. The limit on the data being sent, not to exceed the agent's fixed limit of 400 (KB).
|
113
|
-
:param int read_timeout: Number in milliseconds. The timeout for reading the response from the Prometheus Exporter's endpoint.
|
114
|
-
:param str resource_group: Oracle Cloud Infrastructure monitoring resource group to assign the metric to.
|
115
|
-
:param int schedule_mins: Number in minutes. The scraping occurs at the specified interval.
|
116
111
|
:param str state: The current state of managementAgent
|
117
112
|
:param str time_created: The time the Management Agent was created. An RFC3339 formatted datetime string
|
118
113
|
:param str time_updated: The time the Management Agent was last updated. An RFC3339 formatted datetime string
|
119
|
-
:param str type: The type of the DataSource.
|
120
|
-
:param str url: The url through which the Prometheus Exporter publishes its metrics. (http only)
|
121
114
|
"""
|
122
115
|
if allow_metrics is not None:
|
123
116
|
pulumi.set(__self__, "allow_metrics", allow_metrics)
|
@@ -189,9 +182,6 @@ class ManagementAgentDataSourceList(dict):
|
|
189
182
|
@property
|
190
183
|
@pulumi.getter
|
191
184
|
def name(self) -> Optional[str]:
|
192
|
-
"""
|
193
|
-
Name of the property
|
194
|
-
"""
|
195
185
|
return pulumi.get(self, "name")
|
196
186
|
|
197
187
|
@property
|
@@ -207,33 +197,21 @@ class ManagementAgentDataSourceList(dict):
|
|
207
197
|
@property
|
208
198
|
@pulumi.getter(name="readDataLimit")
|
209
199
|
def read_data_limit(self) -> Optional[int]:
|
210
|
-
"""
|
211
|
-
Number in kilobytes. The limit on the data being sent, not to exceed the agent's fixed limit of 400 (KB).
|
212
|
-
"""
|
213
200
|
return pulumi.get(self, "read_data_limit")
|
214
201
|
|
215
202
|
@property
|
216
203
|
@pulumi.getter(name="readTimeout")
|
217
204
|
def read_timeout(self) -> Optional[int]:
|
218
|
-
"""
|
219
|
-
Number in milliseconds. The timeout for reading the response from the Prometheus Exporter's endpoint.
|
220
|
-
"""
|
221
205
|
return pulumi.get(self, "read_timeout")
|
222
206
|
|
223
207
|
@property
|
224
208
|
@pulumi.getter(name="resourceGroup")
|
225
209
|
def resource_group(self) -> Optional[str]:
|
226
|
-
"""
|
227
|
-
Oracle Cloud Infrastructure monitoring resource group to assign the metric to.
|
228
|
-
"""
|
229
210
|
return pulumi.get(self, "resource_group")
|
230
211
|
|
231
212
|
@property
|
232
213
|
@pulumi.getter(name="scheduleMins")
|
233
214
|
def schedule_mins(self) -> Optional[int]:
|
234
|
-
"""
|
235
|
-
Number in minutes. The scraping occurs at the specified interval.
|
236
|
-
"""
|
237
215
|
return pulumi.get(self, "schedule_mins")
|
238
216
|
|
239
217
|
@property
|
@@ -263,17 +241,11 @@ class ManagementAgentDataSourceList(dict):
|
|
263
241
|
@property
|
264
242
|
@pulumi.getter
|
265
243
|
def type(self) -> Optional[str]:
|
266
|
-
"""
|
267
|
-
The type of the DataSource.
|
268
|
-
"""
|
269
244
|
return pulumi.get(self, "type")
|
270
245
|
|
271
246
|
@property
|
272
247
|
@pulumi.getter
|
273
248
|
def url(self) -> Optional[str]:
|
274
|
-
"""
|
275
|
-
The url through which the Prometheus Exporter publishes its metrics. (http only)
|
276
|
-
"""
|
277
249
|
return pulumi.get(self, "url")
|
278
250
|
|
279
251
|
|
@@ -282,9 +254,6 @@ class ManagementAgentDataSourceListMetricDimension(dict):
|
|
282
254
|
def __init__(__self__, *,
|
283
255
|
name: Optional[str] = None,
|
284
256
|
value: Optional[str] = None):
|
285
|
-
"""
|
286
|
-
:param str name: Name of the property
|
287
|
-
"""
|
288
257
|
if name is not None:
|
289
258
|
pulumi.set(__self__, "name", name)
|
290
259
|
if value is not None:
|
@@ -293,9 +262,6 @@ class ManagementAgentDataSourceListMetricDimension(dict):
|
|
293
262
|
@property
|
294
263
|
@pulumi.getter
|
295
264
|
def name(self) -> Optional[str]:
|
296
|
-
"""
|
297
|
-
Name of the property
|
298
|
-
"""
|
299
265
|
return pulumi.get(self, "name")
|
300
266
|
|
301
267
|
@property
|
@@ -357,10 +323,6 @@ class ManagementAgentDataSourceSummaryList(dict):
|
|
357
323
|
key: Optional[str] = None,
|
358
324
|
name: Optional[str] = None,
|
359
325
|
type: Optional[str] = None):
|
360
|
-
"""
|
361
|
-
:param str name: Name of the property
|
362
|
-
:param str type: The type of the DataSource.
|
363
|
-
"""
|
364
326
|
if is_daemon_set is not None:
|
365
327
|
pulumi.set(__self__, "is_daemon_set", is_daemon_set)
|
366
328
|
if key is not None:
|
@@ -383,17 +345,11 @@ class ManagementAgentDataSourceSummaryList(dict):
|
|
383
345
|
@property
|
384
346
|
@pulumi.getter
|
385
347
|
def name(self) -> Optional[str]:
|
386
|
-
"""
|
387
|
-
Name of the property
|
388
|
-
"""
|
389
348
|
return pulumi.get(self, "name")
|
390
349
|
|
391
350
|
@property
|
392
351
|
@pulumi.getter
|
393
352
|
def type(self) -> Optional[str]:
|
394
|
-
"""
|
395
|
-
The type of the DataSource.
|
396
|
-
"""
|
397
353
|
return pulumi.get(self, "type")
|
398
354
|
|
399
355
|
|
pulumi_oci/pulumi-plugin.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
|
-
pulumi_oci/__init__.py,sha256=
|
2
|
-
pulumi_oci/_utilities.py,sha256=
|
1
|
+
pulumi_oci/__init__.py,sha256=oAqbCE91YRvgOikY3JwWxLsfZUf2CToyI6p0x0H8j2s,160193
|
2
|
+
pulumi_oci/_utilities.py,sha256=zozFZPZGnJJ7MjOYHQPdH-l-EHcRcX5lh5TVi22oTCw,10446
|
3
3
|
pulumi_oci/provider.py,sha256=9MXW-Zeh5jJ_T7w9PgSlFcu0s4_tylBZIVYdFLmo_fU,23922
|
4
|
-
pulumi_oci/pulumi-plugin.json,sha256=
|
4
|
+
pulumi_oci/pulumi-plugin.json,sha256=cDy5ljkDUgVmvVrmcbDExn7ILkwSOlGsYwOQmLItbi8,79
|
5
5
|
pulumi_oci/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
6
6
|
pulumi_oci/adm/__init__.py,sha256=pxPlS_-eNzVJqBq2i1MCMmmLGhFhW-ATfiH6YEb71xI,1049
|
7
7
|
pulumi_oci/adm/_inputs.py,sha256=nMRnDJd64H5GAJ9ybIPjR9fsDdJFyCdHYBir_ADSrT4,53283
|
@@ -352,7 +352,7 @@ pulumi_oci/cloudguard/security_zone.py,sha256=2zsTsrhPlaNXDNUHnXYg4tALTGsqNkATho
|
|
352
352
|
pulumi_oci/cloudguard/target.py,sha256=8EXZFmyiiYiMGPiDgKlP5sdY1pll3PM02epdaGC_JF8,46206
|
353
353
|
pulumi_oci/cloudguard/wlp_agent.py,sha256=w6iD6q5aMxBhQRz48X7E4hkQnaoZh3fNRbxjMWFHN_k,31203
|
354
354
|
pulumi_oci/cloudmigrations/__init__.py,sha256=VtJaXOMY-724krUfRmk89RwqOH0Gra5Roukj0tD0R2U,910
|
355
|
-
pulumi_oci/cloudmigrations/_inputs.py,sha256=
|
355
|
+
pulumi_oci/cloudmigrations/_inputs.py,sha256=2O7W0mRfEVo6T24mtcgc23Hbr5vvJeqUpYt0cVizI_0,239588
|
356
356
|
pulumi_oci/cloudmigrations/get_migration.py,sha256=TLnaqEerG1v5Ad1MldLijNAirypYyaoado6gfuXxlK0,9750
|
357
357
|
pulumi_oci/cloudmigrations/get_migration_asset.py,sha256=8L2LbCcOoeg6hAomTxkl37npO00ku2x-ShIcN35An_Q,15155
|
358
358
|
pulumi_oci/cloudmigrations/get_migration_assets.py,sha256=RAueKu9_kKqLwAZ7Zte50BZJJwxlnLDfsYfhRRYKi7w,7951
|
@@ -368,7 +368,7 @@ pulumi_oci/cloudmigrations/get_target_assets.py,sha256=akFS6kK-KFXHQDA7acCLTLUia
|
|
368
368
|
pulumi_oci/cloudmigrations/migration.py,sha256=GMdV9bFkSJSmfYtzSvHHOlECYJWCLuSlCsApmAL5bDg,27897
|
369
369
|
pulumi_oci/cloudmigrations/migration_asset.py,sha256=aOu--wZx7xAJThGtxC_8TpDl9TWfGPCJldYVV7beEsA,38878
|
370
370
|
pulumi_oci/cloudmigrations/migration_plan.py,sha256=Ar2cIZVdJ5aX9hjf5PlJQvmgHX30hPpaYkeCdJayvCM,35733
|
371
|
-
pulumi_oci/cloudmigrations/outputs.py,sha256=
|
371
|
+
pulumi_oci/cloudmigrations/outputs.py,sha256=zWH6bGZG6yQ3v5dDB6Fyc4k9tNLH1DPeI01j7TFdats,589793
|
372
372
|
pulumi_oci/cloudmigrations/replication_schedule.py,sha256=yu5o0xSvu3u58Fy3Rfs_DPguBQtPMIFSAw70dcT7St8,27578
|
373
373
|
pulumi_oci/cloudmigrations/target_asset.py,sha256=C5thrxVCht1swtldA5AlyHxqdst4HbpCoxIQG18YUh8,49832
|
374
374
|
pulumi_oci/clusterplacementgroups/__init__.py,sha256=b_2kfthDePE5hJoeZ8QIfutFKk9ClL5W4RFf3kOztFs,440
|
@@ -433,7 +433,7 @@ pulumi_oci/containerinstances/get_container_instance_shapes.py,sha256=RWotHRCbVW
|
|
433
433
|
pulumi_oci/containerinstances/get_container_instances.py,sha256=2pS0FViyGoOrqVg-foeYDm4C7lX7WhqlMaUeeGtRlL4,8619
|
434
434
|
pulumi_oci/containerinstances/outputs.py,sha256=K1Kf3-8xpQM9OcZOnQQG972UwHvbtboWNqYnib8J0hw,99442
|
435
435
|
pulumi_oci/core/__init__.py,sha256=TH2tLXoqxil4LmAM1OAg7Z4M4Tvrv9GsG-UG3h3UTbw,8591
|
436
|
-
pulumi_oci/core/_inputs.py,sha256=
|
436
|
+
pulumi_oci/core/_inputs.py,sha256=cvfGrZpRA02kSi2VQ9l7qtILdlbkiZCcErBGnmcDhSY,864665
|
437
437
|
pulumi_oci/core/app_catalog_listing_resource_version_agreement.py,sha256=kd8-X0DLdG80KR4Re1Bzs3YzRfhRCraKfwNBJy6KJss,14448
|
438
438
|
pulumi_oci/core/app_catalog_subscription.py,sha256=0p4-GPnr_1F2G_si0_4tQMpEpmWadv-zhAoUKEVPdPw,29086
|
439
439
|
pulumi_oci/core/boot_volume.py,sha256=EFyQnerU3N19HSvC6uqFBjpRPWFQw7H4VIpdxhBnV28,64633
|
@@ -628,7 +628,7 @@ pulumi_oci/core/local_peering_gateway.py,sha256=kSPyvBRh4rgkugRBDTSuv5jTCmdgG7dF
|
|
628
628
|
pulumi_oci/core/nat_gateway.py,sha256=7FIymW5Rq6w7C0T74OLWb9D4KqP_vzwXnEIbNWGdsGI,35795
|
629
629
|
pulumi_oci/core/network_security_group.py,sha256=a21EveqIOiR-5WtrggBFPmYa8eBTqRGnvJs3IWm4q3g,25204
|
630
630
|
pulumi_oci/core/network_security_group_security_rule.py,sha256=f9Y8fQDwI7BBMu9oOzm2uQyPWb0jI2u_dqZJZwcLy8Y,54224
|
631
|
-
pulumi_oci/core/outputs.py,sha256=
|
631
|
+
pulumi_oci/core/outputs.py,sha256=c-4VwXzH9UgrlCT8q1EVha_72CDhQMtbb1S9uZF0qng,2382588
|
632
632
|
pulumi_oci/core/private_ip.py,sha256=jZNtIz8hDmlMu93cmBLs8Qu4HzbzDAoPKvlT3Z0TKI0,42259
|
633
633
|
pulumi_oci/core/public_ip.py,sha256=0zoJbHGH5idavrf1l47kpdE9GM45asIVRo1e60HC1BI,48657
|
634
634
|
pulumi_oci/core/public_ip_pool.py,sha256=LIVV7ooE-khuPJOWOCL6v1_o7zj94Evgze3tt2Qs8ao,23581
|
@@ -654,7 +654,7 @@ pulumi_oci/core/volume_group.py,sha256=RCXp6lwfCcQMZTAnXA5UM1km9IAaO7xms0GjBaaWQ
|
|
654
654
|
pulumi_oci/core/volume_group_backup.py,sha256=TaESViXt6JzduODOxkqrAV7h1lFo9udAkM26QIECb6c,44014
|
655
655
|
pulumi_oci/core/vtap.py,sha256=NmBB3HrIWcnFfGOf9FeWtIU1fEWpgM5I4S4pTOxVz54,62263
|
656
656
|
pulumi_oci/database/__init__.py,sha256=TbvsgFRkvTw9PdDU7h0BQI888lpmOooIdL9UuMQ5waA,9241
|
657
|
-
pulumi_oci/database/_inputs.py,sha256=
|
657
|
+
pulumi_oci/database/_inputs.py,sha256=7V33AHBs6ehkg_Tj734aRwLJrowc8POYBISjhmWCgKI,696253
|
658
658
|
pulumi_oci/database/application_vip.py,sha256=wFPa33DBZ-_ZzawwFeIyt4o47oh67WRJEYBbvRF0CCg,28983
|
659
659
|
pulumi_oci/database/autonomous_container_database.py,sha256=8KBRkXFQ3H2jSqiNl8bFB4SKp4qakiaiU5hXtylcGq8,161652
|
660
660
|
pulumi_oci/database/autonomous_container_database_dataguard_association.py,sha256=HHFxeeHKgSEMhCYdk_Pj7f1yf-o2QUTp4lmjFHCTGpY,75309
|
@@ -844,7 +844,7 @@ pulumi_oci/database/get_vm_clusters.py,sha256=aRT1n3DsQbZP6zUflQUu_U0ozwdVN5o6Mj
|
|
844
844
|
pulumi_oci/database/key_store.py,sha256=oN3pJ2ttFWOBm3nOciCLPV6PsyhMVcdY4DbvDvwV8iE,25402
|
845
845
|
pulumi_oci/database/maintenance_run.py,sha256=cyDRkOk_5KcUT3DoGuNxz1Ca0cJbdzrFNNhxfRatP_8,58494
|
846
846
|
pulumi_oci/database/oneoff_patch.py,sha256=vI2EkITWfZEhCTvYQSUJgswX6f9ZdA3sgC59ZGYwRhc,38416
|
847
|
-
pulumi_oci/database/outputs.py,sha256=
|
847
|
+
pulumi_oci/database/outputs.py,sha256=mCVQLneuTGkt6g8TVVXlaNh1QFjgdiFf8qwNP7ZlOSE,2230737
|
848
848
|
pulumi_oci/database/pluggable_database.py,sha256=9i6bFxXmdrlho26xBkBhznyyefvO9xwMhq_naWDd1_Q,72949
|
849
849
|
pulumi_oci/database/pluggable_database_managements_management.py,sha256=cYRG-2zkTBknBJjEjC97B8_XhM2C63jZL92QUS9U6m8,52153
|
850
850
|
pulumi_oci/database/pluggable_databases_local_clone.py,sha256=0NGYmSvbHSKW9TwDrNeOCOGH91SU7Ji5PDf-c70IBsQ,50354
|
@@ -1052,7 +1052,7 @@ pulumi_oci/dataflow/private_endpoint.py,sha256=9vkBMocvIS8HBvsQlVoYVcBhOK7c_qZUL
|
|
1052
1052
|
pulumi_oci/dataflow/run_statement.py,sha256=2V-3LYZ42IYBVPsjxNgISjyM9rv_rXXOVmGTDD0IKzA,16386
|
1053
1053
|
pulumi_oci/dataflow/sql_endpoint.py,sha256=Zp8UIlX2E6GVQp8wRCnwGH4bFhxD00v3w4ekebWe4ho,59793
|
1054
1054
|
pulumi_oci/dataintegration/__init__.py,sha256=2H-D_UY8QH4dHOjznmx3CPkiTg4aqtJKeuaKcN7Ypu8,1536
|
1055
|
-
pulumi_oci/dataintegration/_inputs.py,sha256=
|
1055
|
+
pulumi_oci/dataintegration/_inputs.py,sha256=4XY4Yq6rHzkTBxBed1ThkwY4hp66neogImgwJwJV2LY,419211
|
1056
1056
|
pulumi_oci/dataintegration/get_workspace.py,sha256=uYr4xlwUqJnc2AyJDzmpDWA73cNORu4-pYYAaqIrTM0,16949
|
1057
1057
|
pulumi_oci/dataintegration/get_workspace_application.py,sha256=RS6UF7uec1y7nZhnUK_INTyT4cZ9mPXgu43BUtoUFvg,19135
|
1058
1058
|
pulumi_oci/dataintegration/get_workspace_application_patch.py,sha256=khRpP3eyL2sEAmySwZP0bvDumm2-_DkcyPIezQCM86Y,16870
|
@@ -1073,7 +1073,7 @@ pulumi_oci/dataintegration/get_workspace_projects.py,sha256=qOMBnYNiR8RiKj621ziP
|
|
1073
1073
|
pulumi_oci/dataintegration/get_workspace_task.py,sha256=8ExB_MqcqYvLvrAAa-5LtDQ3OazOE1guGqn1rLNU6kY,20265
|
1074
1074
|
pulumi_oci/dataintegration/get_workspace_tasks.py,sha256=HbrGDQYnQRuzQqzUiaHIwjLBEh-aU_mYFUfwXQ5VpJw,11130
|
1075
1075
|
pulumi_oci/dataintegration/get_workspaces.py,sha256=pKPVrjpDIaEvdC2EFEuvEOycxu5RVe3XMKKAdfiq9Wc,7366
|
1076
|
-
pulumi_oci/dataintegration/outputs.py,sha256=
|
1076
|
+
pulumi_oci/dataintegration/outputs.py,sha256=z3MjXitd9v8SGGo21j76gQ_eZfiJX9LyDHRRSdvkuUA,1046888
|
1077
1077
|
pulumi_oci/dataintegration/workspace.py,sha256=T7HtXfqFj8OmAUpyX80JiifXvJuNCftJhG6w15XV4DM,58022
|
1078
1078
|
pulumi_oci/dataintegration/workspace_application.py,sha256=yGzubNHR4iK1XqwIF8fMTjw4pURTFpx7edd_8xQctT8,61707
|
1079
1079
|
pulumi_oci/dataintegration/workspace_application_patch.py,sha256=ErH6171o1AmHsgh2sjHPWNRnxGtVtJS3b4qj073BwYA,49201
|
@@ -1423,6 +1423,15 @@ pulumi_oci/email/get_suppressions.py,sha256=RxgPtx58BlaO-v2iWZE8JMYwmowRrZ9_lptR
|
|
1423
1423
|
pulumi_oci/email/outputs.py,sha256=PzZdrnzt5kQ0128jXxW6taZa_P-JqvCFLrAIujkeWy8,42324
|
1424
1424
|
pulumi_oci/email/sender.py,sha256=eaPmXIuS_HrpmIopu1NB2bc1LjPSrWrAp9oFC_9fFHY,25236
|
1425
1425
|
pulumi_oci/email/suppression.py,sha256=OvK4mvuIbEfB4ZtB66eD0LkVy4ANjH2MOOWFz6qbllw,22146
|
1426
|
+
pulumi_oci/emwarehouse/__init__.py,sha256=bMIo2Xeb_bFH4EH3MQjDXjtK9RVjUmkp8pXJamFthwY,496
|
1427
|
+
pulumi_oci/emwarehouse/_inputs.py,sha256=JBNTCaZqdxb-XqHbQhkhNEVBIkJTUox3_gNKXe6N_NA,2414
|
1428
|
+
pulumi_oci/emwarehouse/em_warehouse.py,sha256=IfU7P_WlR_NDrAekH8PxSLOAFv7vCtr47EVYAu4twc4,32743
|
1429
|
+
pulumi_oci/emwarehouse/get_em_warehouse.py,sha256=8EiDzB4neUvWkWwpAUq3Ufpxsy_RmmEufla6N2rW4yA,12383
|
1430
|
+
pulumi_oci/emwarehouse/get_em_warehouses.py,sha256=3F2zGp59YMLpWOF5nS76p1QgkqQjtGRhhCJq0o2x-YU,8565
|
1431
|
+
pulumi_oci/emwarehouse/get_etl_run.py,sha256=rtDH2EK9w5QQNKKayv7gn3ITsbQDd66ENTGV9NpHYnk,5795
|
1432
|
+
pulumi_oci/emwarehouse/get_etl_runs.py,sha256=6LZihTlIXFohir510LgvYxUNFOQAOyU8OZiYF_pxKD0,6712
|
1433
|
+
pulumi_oci/emwarehouse/get_resource_usage.py,sha256=AGaN35j8yQ9SLAlvRNIzXY7kwfrbmYKsYWNJI2J9t-w,6437
|
1434
|
+
pulumi_oci/emwarehouse/outputs.py,sha256=WBYQfLow1m4n5HF-HrnSXFFw4LUU5wvtIYNDmlQI-9I,22403
|
1426
1435
|
pulumi_oci/events/__init__.py,sha256=s5WifgDAfiU0eAvulJ-z_3vdbDeRHphEqpEnfC6mvhQ,383
|
1427
1436
|
pulumi_oci/events/_inputs.py,sha256=Ah4nwf3HfBHuaocZ6_-QSIvISt45VSPfVfCYK4Gw1U8,9139
|
1428
1437
|
pulumi_oci/events/get_rule.py,sha256=O1dfRkJK_FUKembRNlKQXYgq9YH19xBobpSFc6hChQE,10101
|
@@ -1968,7 +1977,7 @@ pulumi_oci/logging/log_saved_search.py,sha256=hEIxiSTAwU1Qvd_-Ax0fLsd_zrUx9dWWIN
|
|
1968
1977
|
pulumi_oci/logging/outputs.py,sha256=z5Ui3s7yFCqqoOSfRR5twMbrxrlCLwvjmjRj9QN8Hb4,282600
|
1969
1978
|
pulumi_oci/logging/unified_agent_configuration.py,sha256=clUdesJWYIDzKuaj4qkS11HzoJ9fZVRvgQJVv0aKA6E,32138
|
1970
1979
|
pulumi_oci/managementagent/__init__.py,sha256=bpFmeztqSBwuPQZDXXW0deLSXXdocRC6M6YH1JRvpc4,998
|
1971
|
-
pulumi_oci/managementagent/_inputs.py,sha256=
|
1980
|
+
pulumi_oci/managementagent/_inputs.py,sha256=LpioS4bKmMNZIL6BKY31tBFTEmsoffhimh-xykT0o1s,26593
|
1972
1981
|
pulumi_oci/managementagent/get_management_agent.py,sha256=BaYqb1C9hhXH8PnAlWNRO-88lq614zrBrullMcnSitc,20507
|
1973
1982
|
pulumi_oci/managementagent/get_management_agent_available_histories.py,sha256=1mBfTXC1ssZdGlnkvNCg75q7MSUK-kU5IOQHA28v1iI,9952
|
1974
1983
|
pulumi_oci/managementagent/get_management_agent_count.py,sha256=bJSN983dE6VIYAr8frD7YLudHHa-U9GHCsYyzoXaQy0,7991
|
@@ -1984,7 +1993,7 @@ pulumi_oci/managementagent/get_management_agents.py,sha256=AyzuJUXjh0kDUZdJbqD9H
|
|
1984
1993
|
pulumi_oci/managementagent/management_agent.py,sha256=VHj1lqvHnIIgn0DS2qGe_2dcBdvnfybro_JBDM0TVKQ,46694
|
1985
1994
|
pulumi_oci/managementagent/management_agent_data_source.py,sha256=aLa2rDA0MGYQAzrtaUs5GCKkFwGldw8-MO5uHI9ZqLE,49967
|
1986
1995
|
pulumi_oci/managementagent/management_agent_install_key.py,sha256=UHjbja03w0OXt-NTM1MWzFEW5y_Cf2Q9Zm222xz6R38,26818
|
1987
|
-
pulumi_oci/managementagent/outputs.py,sha256=
|
1996
|
+
pulumi_oci/managementagent/outputs.py,sha256=Fpxa5jDAzPAKnG7kvdz-1-YRIAsbVq-lLMyxg5oPrXU,90090
|
1988
1997
|
pulumi_oci/managementdashboard/__init__.py,sha256=Ohu8GPc8iwS8GcB2YP3XDMI1V5g1yxIDlCOFPh7rZqg,361
|
1989
1998
|
pulumi_oci/managementdashboard/get_management_dashboards_export.py,sha256=fYnQDHOoPr13DkwvqgMuAuOOUnv0eATQ1S5Kt_5XZI4,5938
|
1990
1999
|
pulumi_oci/managementdashboard/management_dashboards_import.py,sha256=-3XTlN_3E6OME2Fr4ocuB9R9P9HukMD_N2XLY6aGLM0,12455
|
@@ -2752,7 +2761,7 @@ pulumi_oci/waf/get_web_app_firewall_policies.py,sha256=2EXX-nZiSRnou_ywPuVnvH9CT
|
|
2752
2761
|
pulumi_oci/waf/get_web_app_firewall_policy.py,sha256=iXFu2wfolxLPGoRpC9PvrbsMvIURoaPHkg6WVLdoEd8,14234
|
2753
2762
|
pulumi_oci/waf/network_address_list.py,sha256=Burm-luOi53fUUOZVqwfKueKEDWQw8789Ir0mUblOiE,33054
|
2754
2763
|
pulumi_oci/waf/outputs.py,sha256=IibDb-778q6fJDgC9y7kgFTv6CEz8lMNaSd1c3Su9uc,227138
|
2755
|
-
pulumi_oci-2.3.
|
2756
|
-
pulumi_oci-2.3.
|
2757
|
-
pulumi_oci-2.3.
|
2758
|
-
pulumi_oci-2.3.
|
2764
|
+
pulumi_oci-2.3.0a1721198962.dist-info/METADATA,sha256=A1UN-nOY9ixitoecLQuMDEI7jn2oKGkcLvQPvWLr07k,3901
|
2765
|
+
pulumi_oci-2.3.0a1721198962.dist-info/WHEEL,sha256=Z4pYXqR_rTB7OWNDYFOm1qRk0RX6GFP2o8LgvP453Hk,91
|
2766
|
+
pulumi_oci-2.3.0a1721198962.dist-info/top_level.txt,sha256=0k-nWr_IdDNVF3qcT4ALORmmu1SNCLxWZfHDMN7TWsg,11
|
2767
|
+
pulumi_oci-2.3.0a1721198962.dist-info/RECORD,,
|
File without changes
|