Metastore interface

Metastore를 나타내는 인터페이스입니다.

메서드

delete(string, MetastoreDeleteOptionalParams)

Syms에서 파일 제거

getDatabaseOperations(string, MetastoreGetDatabaseOperationsOptionalParams)

데이터베이스의 상태를 가져옵니다.

register(string, MetastoreRegisterObject, MetastoreRegisterOptionalParams)

Syms에 파일 등록

update(string, MetastoreUpdateObject, MetastoreUpdateOptionalParams)

Syms에서 파일 업데이트

메서드 세부 정보

delete(string, MetastoreDeleteOptionalParams)

Syms에서 파일 제거

function delete(id: string, options?: MetastoreDeleteOptionalParams): Promise<void>

매개 변수

id

string

options
MetastoreDeleteOptionalParams

옵션 매개 변수입니다.

반환

Promise<void>

getDatabaseOperations(string, MetastoreGetDatabaseOperationsOptionalParams)

데이터베이스의 상태를 가져옵니다.

function getDatabaseOperations(id: string, options?: MetastoreGetDatabaseOperationsOptionalParams): Promise<MetastoreRequestSuccessResponse>

매개 변수

id

string

options
MetastoreGetDatabaseOperationsOptionalParams

옵션 매개 변수입니다.

반환

register(string, MetastoreRegisterObject, MetastoreRegisterOptionalParams)

Syms에 파일 등록

function register(id: string, registerBody: MetastoreRegisterObject, options?: MetastoreRegisterOptionalParams): Promise<MetastoreRegistrationResponse>

매개 변수

id

string

만들 데이터베이스의 이름입니다. 이름은 영숫자 문자만 포함할 수 있으며 24자를 초과하면 안 됩니다.

registerBody
MetastoreRegisterObject

레지스터 요청의 본문

options
MetastoreRegisterOptionalParams

옵션 매개 변수입니다.

반환

update(string, MetastoreUpdateObject, MetastoreUpdateOptionalParams)

Syms에서 파일 업데이트

function update(id: string, updateBody: MetastoreUpdateObject, options?: MetastoreUpdateOptionalParams): Promise<MetastoreUpdationResponse>

매개 변수

id

string

업데이트할 데이터베이스의 이름

updateBody
MetastoreUpdateObject

업데이트 요청의 본문

options
MetastoreUpdateOptionalParams

옵션 매개 변수입니다.

반환