Skip to content

Commit

Permalink
Mark list sub as deprecated/internal usage (#1704)
Browse files Browse the repository at this point in the history
  • Loading branch information
nturinski authored Mar 8, 2024
1 parent ba5691a commit d11ca95
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions utils/hostapi.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,13 +61,6 @@ export interface AzureHostExtensionApi {
*/
registerActivity(activity: Activity): Promise<void>;

/**
*
* @param filter Whether to filter the list returned, according to the list returned
* by `getTenantFilters()` and `getSubscriptionFilters()`.
*/
getSubscriptions: (filter: boolean) => Promise<AzureSubscription[]>;

//#region Deprecated things that will be removed soon

/**
Expand All @@ -86,6 +79,13 @@ export interface AzureHostExtensionApi {
registerLocalResourceProvider(id: string, provider: LocalResourceProvider): vscode.Disposable;

//#endregion

/**
* @deprecated For internal usage only
* @param filter Whether to filter the list returned, according to the list returned
* by `getTenantFilters()` and `getSubscriptionFilters()`.
*/
getSubscriptions: (filter: boolean) => Promise<AzureSubscription[]>;
}

export interface AppResourceFilter {
Expand Down

0 comments on commit d11ca95

Please sign in to comment.