mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-08-16 13:07:06 +00:00

* [WIP] workflow/bot operations API * workflow/bot operations API * workflow/bot operations API- Fix tests * workflow/bot operations API- Fix styling issues * workflow/bot operations API- Fix styling issues * workflow/bot operations API- Add list runs api * workflow/bot operations API - Fix styling issues; address reviews * workflow/bot operations API - Fix styling issues; address reviews * workflow/bot operations API - Fix styling issues; address reviews
30 lines
984 B
Python
30 lines
984 B
Python
# generated by datamodel-codegen:
|
|
# filename: schema/api/data/createLocation.json
|
|
# timestamp: 2021-11-09T23:02:30+00:00
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import List, Optional
|
|
|
|
from pydantic import BaseModel, Field
|
|
|
|
from ...entity.data import location
|
|
from ...type import entityReference, tagLabel
|
|
|
|
|
|
class CreateLocationEntityRequest(BaseModel):
|
|
name: str = Field(..., description='Name that identifies this Location.')
|
|
description: Optional[str] = Field(
|
|
None, description='Description of the location instance.'
|
|
)
|
|
locationType: Optional[location.LocationType] = None
|
|
tags: Optional[List[tagLabel.TagLabel]] = Field(
|
|
None, description='Tags for this chart'
|
|
)
|
|
owner: Optional[entityReference.EntityReference] = Field(
|
|
None, description='Owner of this Location'
|
|
)
|
|
service: entityReference.EntityReference = Field(
|
|
..., description='Link to the pipeline service where this location is used'
|
|
)
|