ConnectionsOperations interface
表示 Connections作的介面。
屬性
| get | 按名稱獲取連接,無需填充連接憑證 |
| get |
獲取專案的預設連接 |
| get |
按名稱獲取連接及其連接憑證 |
| list | 列出專案中的所有連接,而不填充連接憑證 |
屬性詳細資料
get
按名稱獲取連接,無需填充連接憑證
get: (name: string, includeCredentials?: boolean, options?: ConnectionsGetOptionalParams) => Promise<Connection>
屬性值
(name: string, includeCredentials?: boolean, options?: ConnectionsGetOptionalParams) => Promise<Connection>
getDefault
獲取專案的預設連接
getDefault: (connectionType: ConnectionType, includeCredentials?: boolean) => Promise<Connection>
屬性值
(connectionType: ConnectionType, includeCredentials?: boolean) => Promise<Connection>
getWithCredentials
按名稱獲取連接及其連接憑證
getWithCredentials: (name: string, options?: ConnectionsGetWithCredentialsOptionalParams) => Promise<Connection>
屬性值
(name: string, options?: ConnectionsGetWithCredentialsOptionalParams) => Promise<Connection>
list
列出專案中的所有連接,而不填充連接憑證
list: (options?: ConnectionsListOptionalParams) => PagedAsyncIterableIterator<Connection, Connection[], PageSettings>
屬性值
(options?: ConnectionsListOptionalParams) => PagedAsyncIterableIterator<Connection, Connection[], PageSettings>