omnata-plugin-runtime 0.9.1a211__py3-none-any.whl → 0.9.1a212__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- omnata_plugin_runtime/json_schema.py +13 -0
- {omnata_plugin_runtime-0.9.1a211.dist-info → omnata_plugin_runtime-0.9.1a212.dist-info}/METADATA +1 -1
- {omnata_plugin_runtime-0.9.1a211.dist-info → omnata_plugin_runtime-0.9.1a212.dist-info}/RECORD +5 -5
- {omnata_plugin_runtime-0.9.1a211.dist-info → omnata_plugin_runtime-0.9.1a212.dist-info}/LICENSE +0 -0
- {omnata_plugin_runtime-0.9.1a211.dist-info → omnata_plugin_runtime-0.9.1a212.dist-info}/WHEEL +0 -0
@@ -306,6 +306,19 @@ class FullyQualifiedTable(BaseModel):
|
|
306
306
|
database_name = self.database_name.replace('"', "")
|
307
307
|
return f'"{database_name}"."{schema_name}"."{table_name}"'
|
308
308
|
|
309
|
+
def get_fully_qualified_stage_name(self) -> str:
|
310
|
+
"""
|
311
|
+
Stage name is derived from the table name
|
312
|
+
"""
|
313
|
+
return self.get_fully_qualified_name(table_override=f"{self.table_name}_STAGE")
|
314
|
+
|
315
|
+
def get_fully_qualified_criteria_deletes_table_name(self) -> str:
|
316
|
+
"""
|
317
|
+
Deletes table name is derived from the table name
|
318
|
+
"""
|
319
|
+
return self.get_fully_qualified_name(
|
320
|
+
table_override=f"{self.table_name}_CRITERIA_DELETES"
|
321
|
+
)
|
309
322
|
|
310
323
|
class SnowflakeViewPart(BaseModel):
|
311
324
|
"""
|
{omnata_plugin_runtime-0.9.1a211.dist-info → omnata_plugin_runtime-0.9.1a212.dist-info}/RECORD
RENAMED
@@ -2,12 +2,12 @@ omnata_plugin_runtime/__init__.py,sha256=MS9d1whnfT_B3-ThqZ7l63QeC_8OEKTuaYV5wTw
|
|
2
2
|
omnata_plugin_runtime/api.py,sha256=baGraSMiD4Yvi3ZWrEv_TKh8Ktd1U8riBdOpe9j0Puw,8202
|
3
3
|
omnata_plugin_runtime/configuration.py,sha256=hHWaK72q45cCQ2R7x9vX2tGifvUDabMrVXBZF4XX0TY,41286
|
4
4
|
omnata_plugin_runtime/forms.py,sha256=9YHJ_T17lT-rwyDaUg_0yj_YMPda4DRCw_wrvf8hE0E,19964
|
5
|
-
omnata_plugin_runtime/json_schema.py,sha256=
|
5
|
+
omnata_plugin_runtime/json_schema.py,sha256=Q5lGoRRoM_RKd4LzuH2khLTweqFoskgAr1oLGHczR0Y,25807
|
6
6
|
omnata_plugin_runtime/logging.py,sha256=WBuZt8lF9E5oFWM4KYQbE8dDJ_HctJ1pN3BHwU6rcd0,4461
|
7
7
|
omnata_plugin_runtime/omnata_plugin.py,sha256=IDj8EaWZuEKaTPrWm3wzHvdmW4l2WibCZEj9AnyTHLU,131622
|
8
8
|
omnata_plugin_runtime/plugin_entrypoints.py,sha256=iqGl8_nEEnPGKg3Aem4YLSQ6d5xS3ju5gq8MJbx6sCA,31968
|
9
9
|
omnata_plugin_runtime/rate_limiting.py,sha256=qpr5esU4Ks8hMzuMpSR3gLFdor2ZUXYWCjmsQH_K6lQ,25882
|
10
|
-
omnata_plugin_runtime-0.9.
|
11
|
-
omnata_plugin_runtime-0.9.
|
12
|
-
omnata_plugin_runtime-0.9.
|
13
|
-
omnata_plugin_runtime-0.9.
|
10
|
+
omnata_plugin_runtime-0.9.1a212.dist-info/LICENSE,sha256=rGaMQG3R3F5-JGDp_-rlMKpDIkg5n0SI4kctTk8eZSI,56
|
11
|
+
omnata_plugin_runtime-0.9.1a212.dist-info/METADATA,sha256=VP6QW_sICEcvGfUVtYIbZMu6JjexYIpcbAR5E3_XOXI,2158
|
12
|
+
omnata_plugin_runtime-0.9.1a212.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
13
|
+
omnata_plugin_runtime-0.9.1a212.dist-info/RECORD,,
|
{omnata_plugin_runtime-0.9.1a211.dist-info → omnata_plugin_runtime-0.9.1a212.dist-info}/LICENSE
RENAMED
File without changes
|
{omnata_plugin_runtime-0.9.1a211.dist-info → omnata_plugin_runtime-0.9.1a212.dist-info}/WHEEL
RENAMED
File without changes
|