snowflake.core.pipeΒΆ
Manages Snowflake Pipes.
Example
>>> pipes: PipeCollection = root.databases["mydb"].schemas["myschema"].pipes
>>> mypipe = pipes.create(Pipe("mypipe"))
>>> pipe_iter = pipes.iter(like="my%")
>>> pipe = pipes["mypipe"]
>>> an_existing_pipe = pipes["an_existing_pipe"]
Refer to snowflake.core.Root
to create the root
.
Classes
|
A model object representing the Pipe resource. |
|
Represents the collection operations of the Snowflake Pipe resource. |
|
Represents a reference to a Snowflake pipe. |