Python API¶
kpops.api ¶
clean ¶
Clean pipeline steps.
PARAMETER | DESCRIPTION |
---|---|
pipeline_path |
Path to pipeline definition yaml file.
TYPE:
|
dotenv |
Paths to dotenv files.
TYPE:
|
config |
Path to the dir containing config.yaml files.
TYPE:
|
steps |
Set of steps (components) to apply the command on.
TYPE:
|
filter_type |
Whether
TYPE:
|
dry_run |
Whether to dry run the command or execute it.
TYPE:
|
environment |
The environment to generate and deploy the pipeline to.
TYPE:
|
verbose |
Enable verbose printing.
TYPE:
|
parallel |
Enable or disable parallel execution of pipeline steps.
TYPE:
|
Source code in kpops/api/__init__.py
deploy ¶
Deploy pipeline steps.
PARAMETER | DESCRIPTION |
---|---|
pipeline_path |
Path to pipeline definition yaml file.
TYPE:
|
dotenv |
Paths to dotenv files.
TYPE:
|
config |
Path to the dir containing config.yaml files.
TYPE:
|
steps |
Set of steps (components) to apply the command on.
TYPE:
|
filter_type |
Whether
TYPE:
|
dry_run |
Whether to dry run the command or execute it.
TYPE:
|
environment |
The environment to generate and deploy the pipeline to.
TYPE:
|
verbose |
Enable verbose printing.
TYPE:
|
parallel |
Enable or disable parallel execution of pipeline steps.
TYPE:
|
Source code in kpops/api/__init__.py
destroy ¶
Destroy pipeline steps.
PARAMETER | DESCRIPTION |
---|---|
pipeline_path |
Path to pipeline definition yaml file.
TYPE:
|
dotenv |
Paths to dotenv files.
TYPE:
|
config |
Path to the dir containing config.yaml files.
TYPE:
|
steps |
Set of steps (components) to apply the command on.
TYPE:
|
filter_type |
Whether
TYPE:
|
dry_run |
Whether to dry run the command or execute it.
TYPE:
|
environment |
The environment to generate and deploy the pipeline to.
TYPE:
|
verbose |
Enable verbose printing.
TYPE:
|
parallel |
Enable or disable parallel execution of pipeline steps.
TYPE:
|
Source code in kpops/api/__init__.py
generate ¶
Generate enriched pipeline representation.
PARAMETER | DESCRIPTION |
---|---|
pipeline_path |
Path to pipeline definition yaml file.
TYPE:
|
dotenv |
Paths to dotenv files.
TYPE:
|
config |
Path to the dir containing config.yaml files.
TYPE:
|
steps |
Set of steps (components) to apply the command on.
TYPE:
|
filter_type |
Whether
TYPE:
|
environment |
The environment to generate and deploy the pipeline to.
TYPE:
|
verbose |
Enable verbose printing.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
Pipeline
|
Generated |
Source code in kpops/api/__init__.py
init ¶
Initiate a default empty project.
PARAMETER | DESCRIPTION |
---|---|
path |
Directory in which the project should be initiated.
TYPE:
|
conf_incl_opt |
Whether to include non-required settings in the generated config file.
|
Source code in kpops/api/__init__.py
manifest ¶
Generate pipeline, return final resource representations for each step.
PARAMETER | DESCRIPTION |
---|---|
pipeline_path |
Path to pipeline definition yaml file.
TYPE:
|
dotenv |
Paths to dotenv files.
TYPE:
|
config |
Path to the dir containing config.yaml files.
TYPE:
|
steps |
Set of steps (components) to apply the command on.
TYPE:
|
filter_type |
Whether
TYPE:
|
environment |
The environment to generate and deploy the pipeline to.
TYPE:
|
verbose |
Enable verbose printing.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
list[Resource]
|
Resources. |
Source code in kpops/api/__init__.py
reset ¶
Reset pipeline steps.
PARAMETER | DESCRIPTION |
---|---|
pipeline_path |
Path to pipeline definition yaml file.
TYPE:
|
dotenv |
Paths to dotenv files.
TYPE:
|
config |
Path to the dir containing config.yaml files.
TYPE:
|
steps |
Set of steps (components) to apply the command on.
TYPE:
|
filter_type |
Whether
TYPE:
|
dry_run |
Whether to dry run the command or execute it.
TYPE:
|
environment |
The environment to generate and deploy the pipeline to.
TYPE:
|
verbose |
Enable verbose printing.
TYPE:
|
parallel |
Enable or disable parallel execution of pipeline steps.
TYPE:
|
Source code in kpops/api/__init__.py
kpops.pipeline.Pipeline ¶
Bases: BaseModel
Pipeline representation.
Source code in kpops/pipeline/__init__.py
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 |
|
build_execution_graph ¶
Source code in kpops/pipeline/__init__.py
filter ¶
Filter pipeline components using a custom predicate.
PARAMETER | DESCRIPTION |
---|---|
predicate |
Filter function, returns boolean value whether the component should be kept or removed
TYPE:
|
Source code in kpops/pipeline/__init__.py
find ¶
Find pipeline components matching a custom predicate.
PARAMETER | DESCRIPTION |
---|---|
predicate |
Filter function, returns boolean value whether the component should be kept or removed
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
Iterator[PipelineComponent]
|
Iterator of components matching the predicate |