Sriharsha Chintalapani 58460f3f2b
Fix #1034: workflow/bot operations API (#1053)
* [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
2021-11-09 20:56:45 -08:00

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'
)