organization_pipeline_run_step module#

class edgeimpulse_api.models.organization_pipeline_run_step.OrganizationPipelineRunStep(
*,
name: StrictStr,
transformationJob: OrganizationCreateProject | None = None,
filter: StrictStr | None = None,
uploadType: StrictStr | None = None,
projectId: StrictInt | None = None,
newProjectName: StrictStr | None = None,
projectApiKey: StrictStr | None = None,
projectHmacKey: StrictStr | None = None,
transformationBlockId: StrictInt | None = None,
builtinTransformationBlock: Dict[str, Any] | None = None,
category: StrictStr | None = None,
outputDatasetName: StrictStr | None = None,
outputDatasetBucketId: StrictInt | None = None,
outputDatasetBucketPath: StrictStr | None = None,
label: StrictStr | None = None,
extraCliArguments: StrictStr | None = None,
parameters: Dict[str, StrictStr] | None = None,
)[source]#

Bases: BaseModel

class Config[source]#

Bases: object

allow_population_by_field_name = True#
validate_assignment = False#
builtin_transformation_block: Dict[str, Any] | None#
category: StrictStr | None#
classmethod category_validate_enum(v)[source]#
extra_cli_arguments: StrictStr | None#
filter: StrictStr | None#
classmethod from_dict(
obj: dict,
) OrganizationPipelineRunStep[source]#

Create an instance of OrganizationPipelineRunStep from a dict

classmethod from_json(
json_str: str,
) OrganizationPipelineRunStep[source]#

Create an instance of OrganizationPipelineRunStep from a JSON string

label: StrictStr | None#
name: StrictStr#
new_project_name: StrictStr | None#
output_dataset_bucket_id: StrictInt | None#
output_dataset_bucket_path: StrictStr | None#
output_dataset_name: StrictStr | None#
parameters: Dict[str, StrictStr] | None#
project_api_key: StrictStr | None#
project_hmac_key: StrictStr | None#
project_id: StrictInt | None#
to_dict()[source]#

Returns the dictionary representation of the model using alias

to_json() str[source]#

Returns the JSON representation of the model using alias

to_str() str[source]#

Returns the string representation of the model using alias

transformation_block_id: StrictInt | None#
transformation_job: OrganizationCreateProject | None#
upload_type: StrictStr | None#
classmethod upload_type_validate_enum(v)[source]#