Metastore interface
メタストアを表すインターフェイス。
メソッド
| delete(string, Metastore |
Syms でファイルを削除する |
| get |
データベースの状態を取得します。 |
| register(string, Metastore |
Syms にファイルを登録する |
| update(string, Metastore |
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
オプション パラメーター。
戻り値
Promise<MetastoreRequestSuccessResponse>
register(string, MetastoreRegisterObject, MetastoreRegisterOptionalParams)
Syms にファイルを登録する
function register(id: string, registerBody: MetastoreRegisterObject, options?: MetastoreRegisterOptionalParams): Promise<MetastoreRegistrationResponse>
パラメーター
- id
-
string
作成するデータベースの名前。 名前には英数字のみを含めることができるので、24 文字以下にする必要があります
- registerBody
- MetastoreRegisterObject
登録要求の本文
- options
- MetastoreRegisterOptionalParams
オプション パラメーター。
戻り値
Promise<MetastoreRegistrationResponse>
update(string, MetastoreUpdateObject, MetastoreUpdateOptionalParams)
Syms でファイルを更新する
function update(id: string, updateBody: MetastoreUpdateObject, options?: MetastoreUpdateOptionalParams): Promise<MetastoreUpdationResponse>
パラメーター
- id
-
string
更新するデータベースの名前
- updateBody
- MetastoreUpdateObject
更新要求の本文
- options
- MetastoreUpdateOptionalParams
オプション パラメーター。
戻り値
Promise<MetastoreUpdationResponse>