mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-08-15 12:37:18 +00:00
27 lines
872 B
Python
27 lines
872 B
Python
# generated by datamodel-codegen:
|
|
# filename: schema/api/services/createDatabaseService.json
|
|
# timestamp: 2021-10-12T00:34:28+00:00
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import Optional
|
|
|
|
from pydantic import BaseModel, Field, constr
|
|
|
|
from ...entity.services import databaseService
|
|
from ...type import jdbcConnection, schedule
|
|
|
|
|
|
class CreateDatabaseServiceEntityRequest(BaseModel):
|
|
name: constr(min_length=1, max_length=64) = Field(
|
|
..., description='Name that identifies the this entity instance uniquely'
|
|
)
|
|
description: Optional[str] = Field(
|
|
None, description='Description of Database entity.'
|
|
)
|
|
serviceType: databaseService.DatabaseServiceType
|
|
jdbc: jdbcConnection.JdbcInfo
|
|
ingestionSchedule: Optional[schedule.Schedule] = Field(
|
|
None, description='Schedule for running metadata ingestion jobs'
|
|
)
|