代码拉取完成,页面将自动刷新
/*
* Copyright (c) 2023-2024 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* @file
* @kit MDMKit
*/
import type { AsyncCallback } from './@ohos.base';
import type Want from './@ohos.app.ability.Want';
/**
* This module provides the capability to manage the bundles of the enterprise devices.
*
* @namespace bundleManager
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @since 10
*/
declare namespace bundleManager {
/**
* Provides parameters required for installing an application.
*
* @typedef InstallParam
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @StageModelOnly
* @since 12
*/
interface InstallParam {
/**
* Indicates the user id
*
* @type { ?number }
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @StageModelOnly
* @since 12
*/
userId?: number;
/**
* Indicates the install flag, which 0 for first install, 1 for cover install
*
* @type { ?number }
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @StageModelOnly
* @since 12
*/
installFlag?: number;
/**
* Indicates parameters
*
* @type { ?Record<string, string> }
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @stagemodelonly
* @since 19
*/
parameters?: Record<string, string>;
}
/**
* Contains resource descriptor information.
*
* @typedef Resource
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @stagemodelonly
* @since 20
*/
interface Resource {
/**
* Bundle name in hap
*
* @type { string }
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @stagemodelonly
* @since 20
*/
bundleName: string;
/**
* Module name in hap
*
* @type { string }
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @stagemodelonly
* @since 20
*/
moduleName: string;
/**
* Resource id in hap
*
* @type { number }
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @stagemodelonly
* @since 20
*/
id: number;
}
/**
* Obtains configuration information about a bundle
*
* @typedef BundleInfo
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @stagemodelonly
* @since 20
*/
interface BundleInfo {
/**
* Indicates the name of this bundle
*
* @type { string }
* @readonly
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @stagemodelonly
* @since 20
*/
readonly name: string;
/**
* Indicates the bundle vendor
*
* @type { string }
* @readonly
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @stagemodelonly
* @since 20
*/
readonly vendor: string;
/**
* Indicates the version code of the bundle
*
* @type { number }
* @readonly
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @stagemodelonly
* @since 20
*/
readonly versionCode: number;
/**
* Indicates the version name of the bundle
*
* @type { string }
* @readonly
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @stagemodelonly
* @since 20
*/
readonly versionName: string;
/**
* Indicates the minimum version compatible with the bundle
*
* @type { number }
* @readonly
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @stagemodelonly
* @since 20
*/
readonly minCompatibleVersionCode: number;
/**
* Indicates the target version number of the bundle
*
* @type { number }
* @readonly
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @stagemodelonly
* @since 20
*/
readonly targetVersion: number;
/**
* Obtains configuration information about an application
*
* @type { ApplicationInfo }
* @readonly
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @stagemodelonly
* @since 20
*/
readonly appInfo: ApplicationInfo;
/**
* Indicates the SignatureInfo of the bundle
*
* @type { SignatureInfo }
* @readonly
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @stagemodelonly
* @since 20
*/
readonly signatureInfo: SignatureInfo;
/**
* Indicates the hap install time
*
* @type { number }
* @readonly
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @stagemodelonly
* @since 20
*/
readonly installTime: number;
/**
* Indicates the hap update time
*
* @type { number }
* @readonly
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @stagemodelonly
* @since 20
*/
readonly updateTime: number;
/**
* Indicates the appIndex of application, only work in appClone mode
*
* @type { number }
* @readonly
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @stagemodelonly
* @since 20
*/
readonly appIndex: number;
/**
* Indicates the hap first install time
*
* @type { ?number }
* @readonly
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @stagemodelonly
* @since 20
*/
readonly firstInstallTime?: number;
}
/**
* Indicates SignatureInfo
*
* @typedef SignatureInfo
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @stagemodelonly
* @since 20
*/
interface SignatureInfo {
/**
* Indicates the ID of the application to which this bundle belongs
* The application ID uniquely identifies an application. It is determined by the bundle name and signature
*
* @type { string }
* @readonly
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @stagemodelonly
* @since 20
*/
readonly appId: string;
/**
* Indicates the fingerprint of the certificate
*
* @type { string }
* @readonly
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @stagemodelonly
* @since 20
*/
readonly fingerprint: string;
/**
* Globally unique identifier of an application, which is allocated by the cloud.
* AppIdentifier does not change along the application lifecycle, including version updates, certificate changes,
* public and private key changes, and application transfer.
*
* @type { string }
* @readonly
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @stagemodelonly
* @since 20
*/
readonly appIdentifier: string;
/**
* Indicates the certificate
*
* @type { ?string }
* @readonly
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @stagemodelonly
* @since 20
*/
readonly certificate?: string;
}
/**
* Obtains configuration information about an application
*
* @typedef ApplicationInfo
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @stagemodelonly
* @since 20
*/
interface ApplicationInfo {
/**
* Indicates the application name, which is the same as {@code bundleName}
*
* @type { string }
* @readonly
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @stagemodelonly
* @since 20
*/
readonly name: string;
/**
* Description of application
*
* @type { string }
* @readonly
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @stagemodelonly
* @since 20
*/
readonly description: string;
/**
* Indicates the description id of the application
*
* @type { number }
* @readonly
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @stagemodelonly
* @since 20
*/
readonly descriptionId: number;
/**
* Indicates whether or not this application may be instantiated
*
* @type { boolean }
* @readonly
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @stagemodelonly
* @since 20
*/
readonly enabled: boolean;
/**
* Indicates the label of the application
*
* @type { string }
* @readonly
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @stagemodelonly
* @since 20
*/
readonly label: string;
/**
* Indicates the label id of the application
*
* @type { number }
* @readonly
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @stagemodelonly
* @since 20
*/
readonly labelId: number;
/**
* Indicates the icon of the application
*
* @type { string }
* @readonly
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @stagemodelonly
* @since 20
*/
readonly icon: string;
/**
* Indicates the icon id of the application
*
* @type { number }
* @readonly
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @stagemodelonly
* @since 20
*/
readonly iconId: number;
/**
* Process of application, if user do not set it ,the value equal bundleName
*
* @type { string }
* @readonly
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @stagemodelonly
* @since 20
*/
readonly process: string;
/**
* Indicates the application source code path
*
* @type { string }
* @readonly
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @stagemodelonly
* @since 20
*/
readonly codePath: string;
/**
* Indicates whether or not this application may be removable
*
* @type { boolean }
* @readonly
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @stagemodelonly
* @since 20
*/
readonly removable: boolean;
/**
* Indicates the access token of the application
*
* @type { number }
* @readonly
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @stagemodelonly
* @since 20
*/
readonly accessTokenId: number;
/**
* Indicates the uid of the application
*
* @type { number }
* @readonly
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @stagemodelonly
* @since 20
*/
readonly uid: number;
/**
* Indicates icon resource of the application
*
* @type { Resource }
* @readonly
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @stagemodelonly
* @since 20
*/
readonly iconResource: Resource;
/**
* Indicates label resource of the application
*
* @type { Resource }
* @readonly
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @stagemodelonly
* @since 20
*/
readonly labelResource: Resource;
/**
* Indicates description resource of the application
*
* @type { Resource }
* @readonly
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @stagemodelonly
* @since 20
*/
readonly descriptionResource: Resource;
/**
* Indicates the appDistributionType of the application
*
* @type { string }
* @readonly
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @stagemodelonly
* @since 20
*/
readonly appDistributionType: string;
/**
* Indicates the appProvisionType of the application
*
* @type { string }
* @readonly
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @stagemodelonly
* @since 20
*/
readonly appProvisionType: string;
/**
* Indicates whether the application is a system application
*
* @type { boolean }
* @readonly
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @stagemodelonly
* @since 20
*/
readonly systemApp: boolean;
/**
* Indicates whether the application is in debug mode.
*
* @type { boolean }
* @readonly
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @stagemodelonly
* @since 20
*/
readonly debug: boolean;
/**
* Indicates whether the application data is unclearable, that is, whether the application data cannot be cleared.
*
* @type { boolean }
* @readonly
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @stagemodelonly
* @since 20
*/
readonly dataUnclearable: boolean;
/**
* Indicates native library path.
*
* @type { string }
* @readonly
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @stagemodelonly
* @since 20
*/
readonly nativeLibraryPath: string;
/**
* Indicates the index of the bundle
*
* @type { number }
* @readonly
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @stagemodelonly
* @since 20
*/
readonly appIndex: number;
/**
* Indicates sources to install the app
*
* @type { string }
* @readonly
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @stagemodelonly
* @since 20
*/
readonly installSource: string;
/**
* Indicates the release type of the app
*
* @type { string }
* @readonly
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @stagemodelonly
* @since 20
*/
readonly releaseType: string;
}
/**
* Add appid list of bundles that can be installed in the device.
* Only apps with the ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY permission can call this method.
*
* @permission ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY
* @param { Want } admin - admin indicates the enterprise admin extension ability information.
* The admin must have the corresponding permission.
* @param { Array<string> } appIds - ids of the bundle that can be installed. The size of the array after
* setting cannot be greater than 200.
* @param { AsyncCallback<void> } callback - the callback of addAllowedInstallBundles.
* @throws { BusinessError } 9200001 - The application is not an administrator application of the device.
* @throws { BusinessError } 9200002 - The administrator application does not have permission to manage the device.
* @throws { BusinessError } 201 - Permission verification failed. The application does not have the permission required to call the API.
* @throws { BusinessError } 202 - Permission verification failed. A non-system application calls a system API.
* @throws { BusinessError } 401 - Parameter error. Possible causes: 1. Mandatory parameters are left unspecified;
* 2. Incorrect parameter types; 3. Parameter verification failed.
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @systemapi
* @StageModelOnly
* @since 10
*/
function addAllowedInstallBundles(admin: Want, appIds: Array<string>, callback: AsyncCallback<void>): void;
/**
* Add appid list of bundles that can be installed in the device.
* Only apps with the ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY permission can call this method.
*
* @permission ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY
* @param { Want } admin - admin indicates the enterprise admin extension ability information.
* The admin must have the corresponding permission.
* @param { Array<string> } appIds - ids of the bundle that can be installed. The size of the array after
* setting cannot be greater than 200.
* @param { number } userId - userId indicates the user ID.
* @param { AsyncCallback<void> } callback - the callback of addAllowedInstallBundles.
* @throws { BusinessError } 9200001 - The application is not an administrator application of the device.
* @throws { BusinessError } 9200002 - The administrator application does not have permission to manage the device.
* @throws { BusinessError } 201 - Permission verification failed. The application does not have the permission required to call the API.
* @throws { BusinessError } 202 - Permission verification failed. A non-system application calls a system API.
* @throws { BusinessError } 401 - Parameter error. Possible causes: 1. Mandatory parameters are left unspecified;
* 2. Incorrect parameter types; 3. Parameter verification failed.
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @systemapi
* @StageModelOnly
* @since 10
*/
function addAllowedInstallBundles(admin: Want, appIds: Array<string>, userId: number, callback: AsyncCallback<void>): void;
/**
* Add appid list of bundles that can be installed in the device.
* Only apps with the ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY permission can call this method.
*
* @permission ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY
* @param { Want } admin - admin indicates the enterprise admin extension ability information.
* The admin must have the corresponding permission.
* @param { Array<string> } appIds - ids of the bundle that can be installed. The size of the array after
* setting cannot be greater than 200.
* @param { number } [userId] - userId indicates the user ID or do not pass user ID.
* @returns { Promise<void> } the promise returned by the addAllowedInstallBundles.
* @throws { BusinessError } 9200001 - The application is not an administrator application of the device.
* @throws { BusinessError } 9200002 - The administrator application does not have permission to manage the device.
* @throws { BusinessError } 201 - Permission verification failed. The application does not have the permission required to call the API.
* @throws { BusinessError } 202 - Permission verification failed. A non-system application calls a system API.
* @throws { BusinessError } 401 - Parameter error. Possible causes: 1. Mandatory parameters are left unspecified;
* 2. Incorrect parameter types; 3. Parameter verification failed.
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @systemapi
* @StageModelOnly
* @since 10
*/
function addAllowedInstallBundles(admin: Want, appIds: Array<string>, userId?: number): Promise<void>;
/**
* Add appid list of bundles that can be installed in the device.
* Only apps with the ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY permission can call this method.
*
* @permission ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY
* @param { Want } admin - admin indicates the enterprise admin extension ability information.
* The admin must have the corresponding permission.
* @param { Array<string> } appIds - ids of the bundle that can be installed. The size of the array after
* setting cannot be greater than 200.
* @param { number } [accountId] - accountId indicates the account ID or do not pass account ID.
* @throws { BusinessError } 9200001 - The application is not an administrator application of the device.
* @throws { BusinessError } 9200002 - The administrator application does not have permission to manage the device.
* @throws { BusinessError } 201 - Permission verification failed. The application does not have the permission required to call the API.
* @throws { BusinessError } 401 - Parameter error. Possible causes: 1. Mandatory parameters are left unspecified;
* 2. Incorrect parameter types; 3. Parameter verification failed.
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @StageModelOnly
* @since 12
*/
function addAllowedInstallBundlesSync(admin: Want, appIds: Array<string>, accountId?: number): void;
/**
* Remove appid list of bundles that can be installed in the device.
* Only apps with the ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY permission can call this method.
*
* @permission ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY
* @param { Want } admin - admin indicates the enterprise admin extension ability information.
* The admin must have the corresponding permission.
* @param { Array<string> } appIds - ids of the bundle that can be installed. The size of the array after
* setting cannot be greater than 200.
* @param { AsyncCallback<void> } callback - the callback of removeAllowedInstallBundles.
* @throws { BusinessError } 9200001 - The application is not an administrator application of the device.
* @throws { BusinessError } 9200002 - The administrator application does not have permission to manage the device.
* @throws { BusinessError } 201 - Permission verification failed. The application does not have the permission required to call the API.
* @throws { BusinessError } 202 - Permission verification failed. A non-system application calls a system API.
* @throws { BusinessError } 401 - Parameter error. Possible causes: 1. Mandatory parameters are left unspecified;
* 2. Incorrect parameter types; 3. Parameter verification failed.
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @systemapi
* @StageModelOnly
* @since 10
*/
function removeAllowedInstallBundles(admin: Want, appIds: Array<string>, callback: AsyncCallback<void>): void;
/**
* Remove appid list of bundles that can be installed in the device.
* Only apps with the ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY permission can call this method.
*
* @permission ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY
* @param { Want } admin - admin indicates the enterprise admin extension ability information.
* The admin must have the corresponding permission.
* @param { Array<string> } appIds - ids of the bundle that can be installed. The size of the array after
* setting cannot be greater than 200.
* @param { number } userId - userId indicates the user ID.
* @param { AsyncCallback<void> } callback - the callback of removeAllowedInstallBundles.
* @throws { BusinessError } 9200001 - The application is not an administrator application of the device.
* @throws { BusinessError } 9200002 - The administrator application does not have permission to manage the device.
* @throws { BusinessError } 201 - Permission verification failed. The application does not have the permission required to call the API.
* @throws { BusinessError } 202 - Permission verification failed. A non-system application calls a system API.
* @throws { BusinessError } 401 - Parameter error. Possible causes: 1. Mandatory parameters are left unspecified;
* 2. Incorrect parameter types; 3. Parameter verification failed.
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @systemapi
* @StageModelOnly
* @since 10
*/
function removeAllowedInstallBundles(admin: Want, appIds: Array<string>, userId: number, callback: AsyncCallback<void>): void;
/**
* Remove appid list of bundles that can be installed in the device.
* Only apps with the ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY permission can call this method.
*
* @permission ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY
* @param { Want } admin - admin indicates the enterprise admin extension ability information.
* The admin must have the corresponding permission.
* @param { Array<string> } appIds - ids of the bundle that can be installed. The size of the array after
* setting cannot be greater than 200.
* @param { number } [userId] - userId indicates the user ID or do not pass user ID.
* @returns { Promise<void> } the promise returned by the removeAllowedInstallBundles.
* @throws { BusinessError } 9200001 - The application is not an administrator application of the device.
* @throws { BusinessError } 9200002 - The administrator application does not have permission to manage the device.
* @throws { BusinessError } 201 - Permission verification failed. The application does not have the permission required to call the API.
* @throws { BusinessError } 202 - Permission verification failed. A non-system application calls a system API.
* @throws { BusinessError } 401 - Parameter error. Possible causes: 1. Mandatory parameters are left unspecified;
* 2. Incorrect parameter types; 3. Parameter verification failed.
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @systemapi
* @StageModelOnly
* @since 10
*/
function removeAllowedInstallBundles(admin: Want, appIds: Array<string>, userId?: number): Promise<void>;
/**
* Remove appid list of bundles that can be installed in the device.
* Only apps with the ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY permission can call this method.
*
* @permission ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY
* @param { Want } admin - admin indicates the enterprise admin extension ability information.
* The admin must have the corresponding permission.
* @param { Array<string> } appIds - ids of the bundle that can be installed. The size of the array after
* setting cannot be greater than 200.
* @param { number } [accountId] - accountId indicates the account ID or do not pass account ID.
* @throws { BusinessError } 9200001 - The application is not an administrator application of the device.
* @throws { BusinessError } 9200002 - The administrator application does not have permission to manage the device.
* @throws { BusinessError } 201 - Permission verification failed. The application does not have the permission required to call the API.
* @throws { BusinessError } 401 - Parameter error. Possible causes: 1. Mandatory parameters are left unspecified;
* 2. Incorrect parameter types; 3. Parameter verification failed.
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @StageModelOnly
* @since 12
*/
function removeAllowedInstallBundlesSync(admin: Want, appIds: Array<string>, accountId?: number): void;
/**
* Get the appid list of bundles that can be installed in the device.
* Only apps with the ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY permission can call this method.
*
* @permission ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY
* @param { Want } admin - admin indicates the enterprise admin extension ability information.
* The admin must have the corresponding permission.
* @param { AsyncCallback<Array<string>> } callback - the callback that contains the appid list.
* @throws { BusinessError } 9200001 - The application is not an administrator application of the device.
* @throws { BusinessError } 9200002 - The administrator application does not have permission to manage the device.
* @throws { BusinessError } 201 - Permission verification failed. The application does not have the permission required to call the API.
* @throws { BusinessError } 202 - Permission verification failed. A non-system application calls a system API.
* @throws { BusinessError } 401 - Parameter error. Possible causes: 1. Mandatory parameters are left unspecified;
* 2. Incorrect parameter types; 3. Parameter verification failed.
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @systemapi
* @StageModelOnly
* @since 10
*/
function getAllowedInstallBundles(admin: Want, callback: AsyncCallback<Array<string>>): void;
/**
* Get the appid list of bundles that can be installed in the device.
* Only apps with the ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY permission can call this method.
*
* @permission ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY
* @param { Want } admin - admin indicates the enterprise admin extension ability information.
* The admin must have the corresponding permission.
* @param { number } userId - userId indicates the user ID.
* @param { AsyncCallback<Array<string>> } callback - the callback that contains the appid list.
* @throws { BusinessError } 9200001 - The application is not an administrator application of the device.
* @throws { BusinessError } 9200002 - The administrator application does not have permission to manage the device.
* @throws { BusinessError } 201 - Permission verification failed. The application does not have the permission required to call the API.
* @throws { BusinessError } 202 - Permission verification failed. A non-system application calls a system API.
* @throws { BusinessError } 401 - Parameter error. Possible causes: 1. Mandatory parameters are left unspecified;
* 2. Incorrect parameter types; 3. Parameter verification failed.
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @systemapi
* @StageModelOnly
* @since 10
*/
function getAllowedInstallBundles(admin: Want, userId: number, callback: AsyncCallback<Array<string>>): void;
/**
* Get appid list of bundles that can be installed in the device.
* Only apps with the ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY permission can call this method.
*
* @permission ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY
* @param { Want } admin - admin indicates the enterprise admin extension ability information.
* The admin must have the corresponding permission.
* @param { number } [userId] - userId indicates the user ID or do not pass user ID.
* @returns { Promise<Array<string>> } the promise that contains the appid list.
* @throws { BusinessError } 9200001 - The application is not an administrator application of the device.
* @throws { BusinessError } 9200002 - The administrator application does not have permission to manage the device.
* @throws { BusinessError } 201 - Permission verification failed. The application does not have the permission required to call the API.
* @throws { BusinessError } 202 - Permission verification failed. A non-system application calls a system API.
* @throws { BusinessError } 401 - Parameter error. Possible causes: 1. Mandatory parameters are left unspecified;
* 2. Incorrect parameter types; 3. Parameter verification failed.
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @systemapi
* @StageModelOnly
* @since 10
*/
function getAllowedInstallBundles(admin: Want, userId?: number): Promise<Array<string>>;
/**
* Get appid list of bundles that can be installed in the device.
* Only apps with the ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY permission can call this method.
*
* @permission ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY
* @param { Want } admin - admin indicates the enterprise admin extension ability information.
* The admin must have the corresponding permission.
* @param { number } [accountId] - accountId indicates the account ID or do not pass account ID.
* @returns { Array<string> } ids of the bundle that can be installed.
* @throws { BusinessError } 9200001 - The application is not an administrator application of the device.
* @throws { BusinessError } 9200002 - The administrator application does not have permission to manage the device.
* @throws { BusinessError } 201 - Permission verification failed. The application does not have the permission required to call the API.
* @throws { BusinessError } 401 - Parameter error. Possible causes: 1. Mandatory parameters are left unspecified;
* 2. Incorrect parameter types; 3. Parameter verification failed.
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @StageModelOnly
* @since 12
*/
function getAllowedInstallBundlesSync(admin: Want, accountId?: number): Array<string>;
/**
* Add appid list of bundles that can not be installed in the device.
* Only apps with the ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY permission can call this method.
*
* @permission ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY
* @param { Want } admin - admin indicates the enterprise admin extension ability information.
* The admin must have the corresponding permission.
* @param { Array<string> } appIds - ids of the bundle that can not be installed. The size of the array after
* setting cannot be greater than 200.
* @param { AsyncCallback<void> } callback - the callback of addDisallowedInstallBundles.
* @throws { BusinessError } 9200001 - The application is not an administrator application of the device.
* @throws { BusinessError } 9200002 - The administrator application does not have permission to manage the device.
* @throws { BusinessError } 201 - Permission verification failed. The application does not have the permission required to call the API.
* @throws { BusinessError } 202 - Permission verification failed. A non-system application calls a system API.
* @throws { BusinessError } 401 - Parameter error. Possible causes: 1. Mandatory parameters are left unspecified;
* 2. Incorrect parameter types; 3. Parameter verification failed.
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @systemapi
* @StageModelOnly
* @since 10
*/
function addDisallowedInstallBundles(admin: Want, appIds: Array<string>, callback: AsyncCallback<void>): void;
/**
* Add appid list of bundles that can not be installed in the device.
* Only apps with the ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY permission can call this method.
*
* @permission ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY
* @param { Want } admin - admin indicates the enterprise admin extension ability information.
* The admin must have the corresponding permission.
* @param { Array<string> } appIds - ids of the bundle that can not be installed. The size of the array after
* setting cannot be greater than 200.
* @param { number } userId - userId indicates the user ID.
* @param { AsyncCallback<void> } callback - the callback of addDisallowedInstallBundles.
* @throws { BusinessError } 9200001 - The application is not an administrator application of the device.
* @throws { BusinessError } 9200002 - The administrator application does not have permission to manage the device.
* @throws { BusinessError } 201 - Permission verification failed. The application does not have the permission required to call the API.
* @throws { BusinessError } 202 - Permission verification failed. A non-system application calls a system API.
* @throws { BusinessError } 401 - Parameter error. Possible causes: 1. Mandatory parameters are left unspecified;
* 2. Incorrect parameter types; 3. Parameter verification failed.
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @systemapi
* @StageModelOnly
* @since 10
*/
function addDisallowedInstallBundles(admin: Want, appIds: Array<string>, userId: number, callback: AsyncCallback<void>): void;
/**
* Add appid list of bundles that can not be installed in the device.
* Only apps with the ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY permission can call this method.
*
* @permission ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY
* @param { Want } admin - admin indicates the enterprise admin extension ability information.
* The admin must have the corresponding permission.
* @param { Array<string> } appIds - ids of the bundle that can not be installed. The size of the array after
* setting cannot be greater than 200.
* @param { number } [userId] - userId indicates the user ID or do not pass user ID.
* @returns { Promise<void> } the promise returned by the addDisallowedInstallBundles.
* @throws { BusinessError } 9200001 - The application is not an administrator application of the device.
* @throws { BusinessError } 9200002 - The administrator application does not have permission to manage the device.
* @throws { BusinessError } 201 - Permission verification failed. The application does not have the permission required to call the API.
* @throws { BusinessError } 202 - Permission verification failed. A non-system application calls a system API.
* @throws { BusinessError } 401 - Parameter error. Possible causes: 1. Mandatory parameters are left unspecified;
* 2. Incorrect parameter types; 3. Parameter verification failed.
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @systemapi
* @StageModelOnly
* @since 10
*/
function addDisallowedInstallBundles(admin: Want, appIds: Array<string>, userId?: number): Promise<void>;
/**
* Add appid list of bundles that can not be installed in the device.
* Only apps with the ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY permission can call this method.
*
* @permission ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY
* @param { Want } admin - admin indicates the enterprise admin extension ability information.
* The admin must have the corresponding permission.
* @param { Array<string> } appIds - ids of the bundle that can not be installed. The size of the array after
* setting cannot be greater than 200.
* @param { number } [accountId] - accountId indicates the account ID or do not pass account ID.
* @throws { BusinessError } 9200001 - The application is not an administrator application of the device.
* @throws { BusinessError } 9200002 - The administrator application does not have permission to manage the device.
* @throws { BusinessError } 201 - Permission verification failed. The application does not have the permission required to call the API.
* @throws { BusinessError } 401 - Parameter error. Possible causes: 1. Mandatory parameters are left unspecified;
* 2. Incorrect parameter types; 3. Parameter verification failed.
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @StageModelOnly
* @since 12
*/
function addDisallowedInstallBundlesSync(admin: Want, appIds: Array<string>, accountId?: number): void;
/**
* Remove appid list of bundles that can not be installed in the device.
* Only apps with the ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY permission can call this method.
*
* @permission ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY
* @param { Want } admin - admin indicates the enterprise admin extension ability information.
* The admin must have the corresponding permission.
* @param { Array<string> } appIds - ids of the bundle that can not be installed. The size of the array after
* setting cannot be greater than 200.
* @param { AsyncCallback<void> } callback - the callback of removeDisallowedInstallBundles.
* @throws { BusinessError } 9200001 - The application is not an administrator application of the device.
* @throws { BusinessError } 9200002 - The administrator application does not have permission to manage the device.
* @throws { BusinessError } 201 - Permission verification failed. The application does not have the permission required to call the API.
* @throws { BusinessError } 202 - Permission verification failed. A non-system application calls a system API.
* @throws { BusinessError } 401 - Parameter error. Possible causes: 1. Mandatory parameters are left unspecified;
* 2. Incorrect parameter types; 3. Parameter verification failed.
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @systemapi
* @StageModelOnly
* @since 10
*/
function removeDisallowedInstallBundles(admin: Want, appIds: Array<string>, callback: AsyncCallback<void>): void;
/**
* Remove appid list of bundles that can not be installed in the device.
* Only apps with the ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY permission can call this method.
*
* @permission ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY
* @param { Want } admin - admin indicates the enterprise admin extension ability information.
* The admin must have the corresponding permission.
* @param { Array<string> } appIds - ids of the bundle that can not be installed. The size of the array after
* setting cannot be greater than 200.
* @param { number } userId - userId indicates the user ID.
* @param { AsyncCallback<void> } callback - the callback of removeDisallowedInstallBundles.
* @throws { BusinessError } 9200001 - The application is not an administrator application of the device.
* @throws { BusinessError } 9200002 - The administrator application does not have permission to manage the device.
* @throws { BusinessError } 201 - Permission verification failed. The application does not have the permission required to call the API.
* @throws { BusinessError } 202 - Permission verification failed. A non-system application calls a system API.
* @throws { BusinessError } 401 - Parameter error. Possible causes: 1. Mandatory parameters are left unspecified;
* 2. Incorrect parameter types; 3. Parameter verification failed.
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @systemapi
* @StageModelOnly
* @since 10
*/
function removeDisallowedInstallBundles(admin: Want, appIds: Array<string>, userId: number, callback: AsyncCallback<void>): void;
/**
* Remove appid list of bundles that can not be installed in the device.
* Only apps with the ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY permission can call this method.
*
* @permission ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY
* @param { Want } admin - admin indicates the enterprise admin extension ability information.
* The admin must have the corresponding permission.
* @param { Array<string> } appIds - ids of the bundle that can not be installed. The size of the array after
* setting cannot be greater than 200.
* @param { number } [userId] - userId indicates the user ID or do not pass user ID.
* @returns { Promise<void> } the promise returned by the removeDisallowedInstallBundles.
* @throws { BusinessError } 9200001 - The application is not an administrator application of the device.
* @throws { BusinessError } 9200002 - The administrator application does not have permission to manage the device.
* @throws { BusinessError } 201 - Permission verification failed. The application does not have the permission required to call the API.
* @throws { BusinessError } 202 - Permission verification failed. A non-system application calls a system API.
* @throws { BusinessError } 401 - Parameter error. Possible causes: 1. Mandatory parameters are left unspecified;
* 2. Incorrect parameter types; 3. Parameter verification failed.
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @systemapi
* @StageModelOnly
* @since 10
*/
function removeDisallowedInstallBundles(admin: Want, appIds: Array<string>, userId?: number): Promise<void>;
/**
* Remove appid list of bundles that can not be installed in the device.
* Only apps with the ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY permission can call this method.
*
* @permission ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY
* @param { Want } admin - admin indicates the enterprise admin extension ability information.
* The admin must have the corresponding permission.
* @param { Array<string> } appIds - ids of the bundle that can not be installed. The size of the array after
* setting cannot be greater than 200.
* @param { number } [accountId] - accountId indicates the account ID or do not pass account ID.
* @throws { BusinessError } 9200001 - The application is not an administrator application of the device.
* @throws { BusinessError } 9200002 - The administrator application does not have permission to manage the device.
* @throws { BusinessError } 201 - Permission verification failed. The application does not have the permission required to call the API.
* @throws { BusinessError } 401 - Parameter error. Possible causes: 1. Mandatory parameters are left unspecified;
* 2. Incorrect parameter types; 3. Parameter verification failed.
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @StageModelOnly
* @since 12
*/
function removeDisallowedInstallBundlesSync(admin: Want, appIds: Array<string>, accountId?: number): void;
/**
* Get the appid list of bundles that can not be installed in the device.
* Only apps with the ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY permission can call this method.
*
* @permission ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY
* @param { Want } admin - admin indicates the enterprise admin extension ability information.
* The admin must have the corresponding permission.
* @param { AsyncCallback<Array<string>> } callback - the callback that contains the appid list.
* @throws { BusinessError } 9200001 - The application is not an administrator application of the device.
* @throws { BusinessError } 9200002 - The administrator application does not have permission to manage the device.
* @throws { BusinessError } 201 - Permission verification failed. The application does not have the permission required to call the API.
* @throws { BusinessError } 202 - Permission verification failed. A non-system application calls a system API.
* @throws { BusinessError } 401 - Parameter error. Possible causes: 1. Mandatory parameters are left unspecified;
* 2. Incorrect parameter types; 3. Parameter verification failed.
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @systemapi
* @StageModelOnly
* @since 10
*/
function getDisallowedInstallBundles(admin: Want, callback: AsyncCallback<Array<string>>): void;
/**
* Get the appid list of bundles that can not be installed in the device.
* Only apps with the ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY permission can call this method.
*
* @permission ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY
* @param { Want } admin - admin indicates the enterprise admin extension ability information.
* The admin must have the corresponding permission.
* @param { number } userId - userId indicates the user ID.
* @param { AsyncCallback<Array<string>> } callback - the callback that contains the appid list.
* @throws { BusinessError } 9200001 - The application is not an administrator application of the device.
* @throws { BusinessError } 9200002 - The administrator application does not have permission to manage the device.
* @throws { BusinessError } 201 - Permission verification failed. The application does not have the permission required to call the API.
* @throws { BusinessError } 202 - Permission verification failed. A non-system application calls a system API.
* @throws { BusinessError } 401 - Parameter error. Possible causes: 1. Mandatory parameters are left unspecified;
* 2. Incorrect parameter types; 3. Parameter verification failed.
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @systemapi
* @StageModelOnly
* @since 10
*/
function getDisallowedInstallBundles(admin: Want, userId: number, callback: AsyncCallback<Array<string>>): void;
/**
* Get appid list of bundles that can not be installed in the device.
* Only apps with the ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY permission can call this method.
*
* @permission ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY
* @param { Want } admin - admin indicates the enterprise admin extension ability information.
* The admin must have the corresponding permission.
* @param { number } [userId] - userId indicates the user ID or do not pass user ID.
* @returns { Promise<Array<string>> } the promise that contains the appid list.
* @throws { BusinessError } 9200001 - The application is not an administrator application of the device.
* @throws { BusinessError } 9200002 - The administrator application does not have permission to manage the device.
* @throws { BusinessError } 201 - Permission verification failed. The application does not have the permission required to call the API.
* @throws { BusinessError } 202 - Permission verification failed. A non-system application calls a system API.
* @throws { BusinessError } 401 - Parameter error. Possible causes: 1. Mandatory parameters are left unspecified;
* 2. Incorrect parameter types; 3. Parameter verification failed.
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @systemapi
* @StageModelOnly
* @since 10
*/
function getDisallowedInstallBundles(admin: Want, userId?: number): Promise<Array<string>>;
/**
* Get appid list of bundles that can not be installed in the device.
* Only apps with the ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY permission can call this method.
*
* @permission ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY
* @param { Want } admin - admin indicates the enterprise admin extension ability information.
* The admin must have the corresponding permission.
* @param { number } [accountId] - accountId indicates the account ID or do not pass account ID.
* @returns { Array<string> } ids of the bundle that can not be installed.
* @throws { BusinessError } 9200001 - The application is not an administrator application of the device.
* @throws { BusinessError } 9200002 - The administrator application does not have permission to manage the device.
* @throws { BusinessError } 201 - Permission verification failed. The application does not have the permission required to call the API.
* @throws { BusinessError } 401 - Parameter error. Possible causes: 1. Mandatory parameters are left unspecified;
* 2. Incorrect parameter types; 3. Parameter verification failed.
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @StageModelOnly
* @since 12
*/
function getDisallowedInstallBundlesSync(admin: Want, accountId?: number): Array<string>;
/**
* Add appid list of bundles that can not be uninstalled in the device.
* Only apps with the ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY permission can call this method.
*
* @permission ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY
* @param { Want } admin - admin indicates the enterprise admin extension ability information.
* The admin must have the corresponding permission.
* @param { Array<string> } appIds - ids of the bundle that can not be uninstalled. The size of the array after
* setting cannot be greater than 200.
* @param { AsyncCallback<void> } callback - the callback of addDisallowedUninstallBundles.
* @throws { BusinessError } 9200001 - The application is not an administrator application of the device.
* @throws { BusinessError } 9200002 - The administrator application does not have permission to manage the device.
* @throws { BusinessError } 201 - Permission verification failed. The application does not have the permission required to call the API.
* @throws { BusinessError } 202 - Permission verification failed. A non-system application calls a system API.
* @throws { BusinessError } 401 - Parameter error. Possible causes: 1. Mandatory parameters are left unspecified;
* 2. Incorrect parameter types; 3. Parameter verification failed.
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @systemapi
* @StageModelOnly
* @since 10
*/
function addDisallowedUninstallBundles(admin: Want, appIds: Array<string>, callback: AsyncCallback<void>): void;
/**
* Add appid list of bundles that can not be uninstalled in the device.
* Only apps with the ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY permission can call this method.
*
* @permission ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY
* @param { Want } admin - admin indicates the enterprise admin extension ability information.
* The admin must have the corresponding permission.
* @param { Array<string> } appIds - ids of the bundle that can not be uninstalled. The size of the array after
* setting cannot be greater than 200.
* @param { number } userId - userId indicates the user ID.
* @param { AsyncCallback<void> } callback - the callback of addDisallowedUninstallBundles.
* @throws { BusinessError } 9200001 - The application is not an administrator application of the device.
* @throws { BusinessError } 9200002 - The administrator application does not have permission to manage the device.
* @throws { BusinessError } 201 - Permission verification failed. The application does not have the permission required to call the API.
* @throws { BusinessError } 202 - Permission verification failed. A non-system application calls a system API.
* @throws { BusinessError } 401 - Parameter error. Possible causes: 1. Mandatory parameters are left unspecified;
* 2. Incorrect parameter types; 3. Parameter verification failed.
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @systemapi
* @StageModelOnly
* @since 10
*/
function addDisallowedUninstallBundles(admin: Want, appIds: Array<string>, userId: number, callback: AsyncCallback<void>): void;
/**
* Add appid list of bundles that can not be uninstalled in the device.
* Only apps with the ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY permission can call this method.
*
* @permission ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY
* @param { Want } admin - admin indicates the enterprise admin extension ability information.
* The admin must have the corresponding permission.
* @param { Array<string> } appIds - ids of the bundle that can not be uninstalled. The size of the array after
* setting cannot be greater than 200.
* @param { number } [userId] - userId indicates the user ID or do not pass user ID.
* @returns { Promise<void> } the promise returned by the addDisallowedUninstallBundles.
* @throws { BusinessError } 9200001 - The application is not an administrator application of the device.
* @throws { BusinessError } 9200002 - The administrator application does not have permission to manage the device.
* @throws { BusinessError } 201 - Permission verification failed. The application does not have the permission required to call the API.
* @throws { BusinessError } 202 - Permission verification failed. A non-system application calls a system API.
* @throws { BusinessError } 401 - Parameter error. Possible causes: 1. Mandatory parameters are left unspecified;
* 2. Incorrect parameter types; 3. Parameter verification failed.
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @systemapi
* @StageModelOnly
* @since 10
*/
function addDisallowedUninstallBundles(admin: Want, appIds: Array<string>, userId?: number): Promise<void>;
/**
* Add appid list of bundles that can not be uninstalled in the device.
* Only apps with the ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY permission can call this method.
*
* @permission ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY
* @param { Want } admin - admin indicates the enterprise admin extension ability information.
* The admin must have the corresponding permission.
* @param { Array<string> } appIds - ids of the bundle that can not be uninstalled. The size of the array after
* setting cannot be greater than 200.
* @param { number } [accountId] - accountId indicates the account ID or do not pass account ID.
* @throws { BusinessError } 9200001 - The application is not an administrator application of the device.
* @throws { BusinessError } 9200002 - The administrator application does not have permission to manage the device.
* @throws { BusinessError } 201 - Permission verification failed. The application does not have the permission required to call the API.
* @throws { BusinessError } 401 - Parameter error. Possible causes: 1. Mandatory parameters are left unspecified;
* 2. Incorrect parameter types; 3. Parameter verification failed.
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @StageModelOnly
* @since 12
*/
function addDisallowedUninstallBundlesSync(admin: Want, appIds: Array<string>, accountId?: number): void;
/**
* Remove appid list of bundles that can not be uninstalled in the device.
* Only apps with the ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY permission can call this method.
*
* @permission ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY
* @param { Want } admin - admin indicates the enterprise admin extension ability information.
* The admin must have the corresponding permission.
* @param { Array<string> } appIds - ids of the bundle that can not be uninstalled. The size of the array after
* setting cannot be greater than 200.
* @param { AsyncCallback<void> } callback - the callback of removeDisallowedUninstallBundles.
* @throws { BusinessError } 9200001 - The application is not an administrator application of the device.
* @throws { BusinessError } 9200002 - The administrator application does not have permission to manage the device.
* @throws { BusinessError } 201 - Permission verification failed. The application does not have the permission required to call the API.
* @throws { BusinessError } 202 - Permission verification failed. A non-system application calls a system API.
* @throws { BusinessError } 401 - Parameter error. Possible causes: 1. Mandatory parameters are left unspecified;
* 2. Incorrect parameter types; 3. Parameter verification failed.
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @systemapi
* @StageModelOnly
* @since 10
*/
function removeDisallowedUninstallBundles(admin: Want, appIds: Array<string>, callback: AsyncCallback<void>): void;
/**
* Remove appid list of bundles that can not be uninstalled in the device.
* Only apps with the ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY permission can call this method.
*
* @permission ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY
* @param { Want } admin - admin indicates the enterprise admin extension ability information.
* The admin must have the corresponding permission.
* @param { Array<string> } appIds - ids of the bundle that can not be uninstalled. The size of the array after
* setting cannot be greater than 200.
* @param { number } userId - userId indicates the user ID.
* @param { AsyncCallback<void> } callback - the callback of removeDisallowedUninstallBundles.
* @throws { BusinessError } 9200001 - The application is not an administrator application of the device.
* @throws { BusinessError } 9200002 - The administrator application does not have permission to manage the device.
* @throws { BusinessError } 201 - Permission verification failed. The application does not have the permission required to call the API.
* @throws { BusinessError } 202 - Permission verification failed. A non-system application calls a system API.
* @throws { BusinessError } 401 - Parameter error. Possible causes: 1. Mandatory parameters are left unspecified;
* 2. Incorrect parameter types; 3. Parameter verification failed.
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @systemapi
* @StageModelOnly
* @since 10
*/
function removeDisallowedUninstallBundles(admin: Want, appIds: Array<string>, userId: number, callback: AsyncCallback<void>): void;
/**
* Remove appid list of bundles that can not be uninstalled in the device.
* Only apps with the ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY permission can call this method.
*
* @permission ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY
* @param { Want } admin - admin indicates the enterprise admin extension ability information.
* The admin must have the corresponding permission.
* @param { Array<string> } appIds - ids of the bundle that can not be uninstalled. The size of the array after
* setting cannot be greater than 200.
* @param { number } [userId] - userId indicates the user ID or do not pass user ID.
* @returns { Promise<void> } the promise returned by the removeDisallowedUninstallBundles.
* @throws { BusinessError } 9200001 - The application is not an administrator application of the device.
* @throws { BusinessError } 9200002 - The administrator application does not have permission to manage the device.
* @throws { BusinessError } 201 - Permission verification failed. The application does not have the permission required to call the API.
* @throws { BusinessError } 202 - Permission verification failed. A non-system application calls a system API.
* @throws { BusinessError } 401 - Parameter error. Possible causes: 1. Mandatory parameters are left unspecified;
* 2. Incorrect parameter types; 3. Parameter verification failed.
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @systemapi
* @StageModelOnly
* @since 10
*/
function removeDisallowedUninstallBundles(admin: Want, appIds: Array<string>, userId?: number): Promise<void>;
/**
* Remove appid list of bundles that can not be uninstalled in the device.
* Only apps with the ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY permission can call this method.
*
* @permission ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY
* @param { Want } admin - admin indicates the enterprise admin extension ability information.
* The admin must have the corresponding permission.
* @param { Array<string> } appIds - ids of the bundle that can not be uninstalled. The size of the array after
* setting cannot be greater than 200.
* @param { number } [accountId] - accountId indicates the account ID or do not pass account ID.
* @throws { BusinessError } 9200001 - The application is not an administrator application of the device.
* @throws { BusinessError } 9200002 - The administrator application does not have permission to manage the device.
* @throws { BusinessError } 201 - Permission verification failed. The application does not have the permission required to call the API.
* @throws { BusinessError } 401 - Parameter error. Possible causes: 1. Mandatory parameters are left unspecified;
* 2. Incorrect parameter types; 3. Parameter verification failed.
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @StageModelOnly
* @since 12
*/
function removeDisallowedUninstallBundlesSync(admin: Want, appIds: Array<string>, accountId?: number): void;
/**
* Get the appid list of bundles that can not be uninstalled in the device.
* Only apps with the ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY permission can call this method.
*
* @permission ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY
* @param { Want } admin - admin indicates the enterprise admin extension ability information.
* The admin must have the corresponding permission.
* @param { AsyncCallback<Array<string>> } callback - the callback that contains the appid list.
* @throws { BusinessError } 9200001 - The application is not an administrator application of the device.
* @throws { BusinessError } 9200002 - The administrator application does not have permission to manage the device.
* @throws { BusinessError } 201 - Permission verification failed. The application does not have the permission required to call the API.
* @throws { BusinessError } 202 - Permission verification failed. A non-system application calls a system API.
* @throws { BusinessError } 401 - Parameter error. Possible causes: 1. Mandatory parameters are left unspecified;
* 2. Incorrect parameter types; 3. Parameter verification failed.
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @systemapi
* @StageModelOnly
* @since 10
*/
function getDisallowedUninstallBundles(admin: Want, callback: AsyncCallback<Array<string>>): void;
/**
* Get the appid list of bundles that can not be uninstalled in the device.
* Only apps with the ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY permission can call this method.
*
* @permission ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY
* @param { Want } admin - admin indicates the enterprise admin extension ability information.
* The admin must have the corresponding permission.
* @param { number } userId - userId indicates the user ID.
* @param { AsyncCallback<Array<string>> } callback - the callback that contains the appid list.
* @throws { BusinessError } 9200001 - The application is not an administrator application of the device.
* @throws { BusinessError } 9200002 - The administrator application does not have permission to manage the device.
* @throws { BusinessError } 201 - Permission verification failed. The application does not have the permission required to call the API.
* @throws { BusinessError } 202 - Permission verification failed. A non-system application calls a system API.
* @throws { BusinessError } 401 - Parameter error. Possible causes: 1. Mandatory parameters are left unspecified;
* 2. Incorrect parameter types; 3. Parameter verification failed.
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @systemapi
* @StageModelOnly
* @since 10
*/
function getDisallowedUninstallBundles(admin: Want, userId: number, callback: AsyncCallback<Array<string>>): void;
/**
* Get appid list of bundles that can not be uninstalled in the device.
* Only apps with the ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY permission can call this method.
*
* @permission ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY
* @param { Want } admin - admin indicates the enterprise admin extension ability information.
* The admin must have the corresponding permission.
* @param { number } [userId] - userId indicates the user ID or do not pass user ID.
* @returns { Promise<Array<string>> } the promise that contains the appid list.
* @throws { BusinessError } 9200001 - The application is not an administrator application of the device.
* @throws { BusinessError } 9200002 - The administrator application does not have permission to manage the device.
* @throws { BusinessError } 201 - Permission verification failed. The application does not have the permission required to call the API.
* @throws { BusinessError } 202 - Permission verification failed. A non-system application calls a system API.
* @throws { BusinessError } 401 - Parameter error. Possible causes: 1. Mandatory parameters are left unspecified;
* 2. Incorrect parameter types; 3. Parameter verification failed.
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @systemapi
* @StageModelOnly
* @since 10
*/
function getDisallowedUninstallBundles(admin: Want, userId?: number): Promise<Array<string>>;
/**
* Get appid list of bundles that can not be uninstalled in the device.
* Only apps with the ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY permission can call this method.
*
* @permission ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY
* @param { Want } admin - admin indicates the enterprise admin extension ability information.
* The admin must have the corresponding permission.
* @param { number } [accountId] - accountId indicates the account ID or do not pass account ID.
* @returns { Array<string> } ids of the bundle that can not be uninstalled.
* @throws { BusinessError } 9200001 - The application is not an administrator application of the device.
* @throws { BusinessError } 9200002 - The administrator application does not have permission to manage the device.
* @throws { BusinessError } 201 - Permission verification failed. The application does not have the permission required to call the API.
* @throws { BusinessError } 401 - Parameter error. Possible causes: 1. Mandatory parameters are left unspecified;
* 2. Incorrect parameter types; 3. Parameter verification failed.
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @StageModelOnly
* @since 12
*/
function getDisallowedUninstallBundlesSync(admin: Want, accountId?: number): Array<string>;
/**
* Uninstall an application.
*
* @permission ohos.permission.ENTERPRISE_INSTALL_BUNDLE
* @param { Want } admin - admin indicates the enterprise admin extension ability information.
* The admin must have the corresponding permission.
* @param { string } bundleName - indicates the bundle name of the application to be uninstalled.
* @param { AsyncCallback<void> } callback - the callback of uninstalling application result.
* @throws { BusinessError } 9200001 - The application is not an administrator application of the device.
* @throws { BusinessError } 9200002 - The administrator application does not have permission to manage the device.
* @throws { BusinessError } 201 - Permission verification failed. The application does not have the permission required to call the API.
* @throws { BusinessError } 202 - Permission verification failed. A non-system application calls a system API.
* @throws { BusinessError } 401 - Parameter error. Possible causes: 1. Mandatory parameters are left unspecified;
* 2. Incorrect parameter types; 3. Parameter verification failed.
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @systemapi
* @StageModelOnly
* @since 10
*/
function uninstall(admin: Want, bundleName: string, callback: AsyncCallback<void>): void;
/**
* Uninstall an application.
*
* @permission ohos.permission.ENTERPRISE_INSTALL_BUNDLE
* @param { Want } admin - admin indicates the enterprise admin extension ability information.
* The admin must have the corresponding permission.
* @param { string } bundleName - Indicates the bundle name of the application to be uninstalled.
* @param { number } userId - userId indicates the user ID or do not pass user ID.
* @param { AsyncCallback<void> } callback - the callback of uninstalling application result.
* @throws { BusinessError } 9200001 - The application is not an administrator application of the device.
* @throws { BusinessError } 9200002 - The administrator application does not have permission to manage the device.
* @throws { BusinessError } 201 - Permission verification failed. The application does not have the permission required to call the API.
* @throws { BusinessError } 202 - Permission verification failed. A non-system application calls a system API.
* @throws { BusinessError } 401 - Parameter error. Possible causes: 1. Mandatory parameters are left unspecified;
* 2. Incorrect parameter types; 3. Parameter verification failed.
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @systemapi
* @StageModelOnly
* @since 10
*/
function uninstall(admin: Want, bundleName: string, userId: number, callback: AsyncCallback<void>): void;
/**
* Uninstall an application.
*
* @permission ohos.permission.ENTERPRISE_INSTALL_BUNDLE
* @param { Want } admin - admin indicates the enterprise admin extension ability information.
* The admin must have the corresponding permission.
* @param { string } bundleName - Indicates the bundle name of the application to be uninstalled.
* @param { boolean } isKeepData - isKeepData indicates whether keep the data.
* @param { AsyncCallback<void> } callback - the callback of uninstalling application result.
* @throws { BusinessError } 9200001 - The application is not an administrator application of the device.
* @throws { BusinessError } 9200002 - The administrator application does not have permission to manage the device.
* @throws { BusinessError } 201 - Permission verification failed. The application does not have the permission required to call the API.
* @throws { BusinessError } 202 - Permission verification failed. A non-system application calls a system API.
* @throws { BusinessError } 401 - Parameter error. Possible causes: 1. Mandatory parameters are left unspecified;
* 2. Incorrect parameter types; 3. Parameter verification failed.
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @systemapi
* @StageModelOnly
* @since 10
*/
function uninstall(admin: Want, bundleName: string, isKeepData: boolean, callback: AsyncCallback<void>): void;
/**
* Uninstall an application.
*
* @permission ohos.permission.ENTERPRISE_INSTALL_BUNDLE
* @param { Want } admin - admin indicates the enterprise admin extension ability information.
* The admin must have the corresponding permission.
* @param { string } bundleName - indicates the bundle name of the application to be uninstalled.
* @param { number } userId - userId indicates the user ID or do not pass user ID.
* @param { boolean } isKeepData - isKeepData indicates whether keep the data.
* @param { AsyncCallback<void> } callback - the callback of uninstalling application result.
* @throws { BusinessError } 9200001 - The application is not an administrator application of the device.
* @throws { BusinessError } 9200002 - The administrator application does not have permission to manage the device.
* @throws { BusinessError } 201 - Permission verification failed. The application does not have the permission required to call the API.
* @throws { BusinessError } 202 - Permission verification failed. A non-system application calls a system API.
* @throws { BusinessError } 401 - Parameter error. Possible causes: 1. Mandatory parameters are left unspecified;
* 2. Incorrect parameter types; 3. Parameter verification failed.
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @systemapi
* @StageModelOnly
* @since 10
*/
function uninstall(admin: Want, bundleName: string, userId: number, isKeepData: boolean, callback: AsyncCallback<void>): void;
/**
* Uninstall an application.
*
* @permission ohos.permission.ENTERPRISE_INSTALL_BUNDLE
* @param { Want } admin - admin indicates the enterprise admin extension ability information.
* The admin must have the corresponding permission.
* @param { string } bundleName - indicates the bundle name of the application to be uninstalled.
* @param { number } [userId] - userId indicates the user ID or do not pass user ID.
* @param { boolean } [isKeepData] - isKeepData indicates whether keep the data.
* @returns { Promise<void> } the promise of uninstalling application result.
* @throws { BusinessError } 9200001 - The application is not an administrator application of the device.
* @throws { BusinessError } 9200002 - The administrator application does not have permission to manage the device.
* @throws { BusinessError } 201 - Permission verification failed. The application does not have the permission required to call the API.
* @throws { BusinessError } 401 - Parameter error. Possible causes: 1. Mandatory parameters are left unspecified;
* 2. Incorrect parameter types; 3. Parameter verification failed.
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @StageModelOnly
* @since 12
*/
function uninstall(admin: Want, bundleName: string, userId?: number, isKeepData?: boolean): Promise<void>;
/**
* Install an application.
*
* @permission ohos.permission.ENTERPRISE_INSTALL_BUNDLE
* @param { Want } admin - admin indicates the enterprise admin extension ability information.
* The admin must have the corresponding permission.
* @param { Array<string> } hapFilePaths - indicates the path of the application to be installed.
* @param { AsyncCallback<void> } callback - the callback of installing application result.
* @throws { BusinessError } 9200001 - The application is not an administrator application of the device.
* @throws { BusinessError } 9200002 - The administrator application does not have permission to manage the device.
* @throws { BusinessError } 9201002 - Failed to install the application.
* @throws { BusinessError } 201 - Permission verification failed. The application does not have the permission required to call the API.
* @throws { BusinessError } 202 - Permission verification failed. A non-system application calls a system API.
* @throws { BusinessError } 401 - Parameter error. Possible causes: 1. Mandatory parameters are left unspecified;
* 2. Incorrect parameter types; 3. Parameter verification failed.
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @systemapi
* @StageModelOnly
* @since 10
*/
function install(admin: Want, hapFilePaths: Array<string>, callback: AsyncCallback<void>): void;
/**
* Install an application.
*
* @permission ohos.permission.ENTERPRISE_INSTALL_BUNDLE
* @param { Want } admin - admin indicates the enterprise admin extension ability information.
* The admin must have the corresponding permission.
* @param { Array<string> } hapFilePaths - indicates the path of the application to be installed.
* @param { InstallParam } installParam - installParam indicates the installation parameters.
* It may contain two fields: userId and installFlag.
* The flag can only be one of correct flags.
* @param { AsyncCallback<void> } callback - the callback of installing application result.
* @throws { BusinessError } 9200001 - The application is not an administrator application of the device.
* @throws { BusinessError } 9200002 - The administrator application does not have permission to manage the device.
* @throws { BusinessError } 9201002 - Failed to install the application.
* @throws { BusinessError } 201 - Permission verification failed. The application does not have the permission required to call the API.
* @throws { BusinessError } 202 - Permission verification failed. A non-system application calls a system API.
* @throws { BusinessError } 401 - Parameter error. Possible causes: 1. Mandatory parameters are left unspecified;
* 2. Incorrect parameter types; 3. Parameter verification failed.
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @systemapi
* @StageModelOnly
* @since 10
*/
function install(admin: Want, hapFilePaths: Array<string>, installParam: InstallParam, callback: AsyncCallback<void>): void;
/**
* Install an application.
*
* @permission ohos.permission.ENTERPRISE_INSTALL_BUNDLE
* @param { Want } admin - admin indicates the enterprise admin extension ability information.
* The admin must have the corresponding permission.
* @param { Array<string> } hapFilePaths - indicates the path of the application to be installed.
* @param { InstallParam } [installParam] - installParam indicates the installation parameters.
* It may contain two fields: userId and installFlag.
* The flag can only be one of correct flags.
* @returns { Promise<void> } the promise of installing application result.
* @throws { BusinessError } 9200001 - The application is not an administrator application of the device.
* @throws { BusinessError } 9200002 - The administrator application does not have permission to manage the device.
* @throws { BusinessError } 9201002 - Failed to install the application.
* @throws { BusinessError } 201 - Permission verification failed. The application does not have the permission required to call the API.
* @throws { BusinessError } 401 - Parameter error. Possible causes: 1. Mandatory parameters are left unspecified;
* 2. Incorrect parameter types; 3. Parameter verification failed.
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @StageModelOnly
* @since 12
*/
function install(admin: Want, hapFilePaths: Array<string>, installParam?: InstallParam): Promise<void>;
/**
* Get the list of install bundles in the device.
*
* @permission ohos.permission.ENTERPRISE_GET_ALL_BUNDLE_INFO
* @param { Want } admin - admin indicates the enterprise admin extension ability information.
* The admin must have the corresponding permission.
* @param { number } accountId - accountId indicates the local ID of the OS account.
* @returns { Promise<Array<BundleInfo>> } The result of getting the bundle info.
* @throws { BusinessError } 9200001 - The application is not an administrator application of the device.
* @throws { BusinessError } 9200002 - The administrator application does not have permission to manage the device.
* @throws { BusinessError } 201 - Permission verification failed. The application does not have the permission required to call the API.
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @stagemodelonly
* @since 20
*/
function getInstalledBundleList(admin: Want, accountId: number): Promise<Array<BundleInfo>>;
/**
* Add the list of app distribution types can be installed in the device.
*
* @permission ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY
* @param { Want } admin - admin indicates the enterprise admin extension ability information.
* The admin must have the corresponding permission.
* @param { Array<AppDistributionType> } appDistributionTypes - appdistribution types id.
* @throws { BusinessError } 9200001 - The application is not an administrator application of the device.
* @throws { BusinessError } 9200002 - The administrator application does not have permission to manage the device.
* @throws { BusinessError } 9200012 - Parameter verification failed.
* @throws { BusinessError } 201 - Permission verification failed. The application does not have the permission required to call the API.
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @stagemodelonly
* @since 20
*/
function addInstallationAllowedAppDistributionTypes(admin: Want, appDistributionTypes: Array<AppDistributionType>): void;
/**
* Remove the list of app distribution types can be installed in the device.
*
* @permission ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY
* @param { Want } admin - admin indicates the enterprise admin extension ability information.
* The admin must have the corresponding permission.
* @param { Array<AppDistributionType> } appDistributionTypes - appdistribution types id.
* @throws { BusinessError } 9200001 - The application is not an administrator application of the device.
* @throws { BusinessError } 9200002 - The administrator application does not have permission to manage the device.
* @throws { BusinessError } 9200012 - Parameter verification failed.
* @throws { BusinessError } 201 - Permission verification failed. The application does not have the permission required to call the API.
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @stagemodelonly
* @since 20
*/
function removeInstallationAllowedAppDistributionTypes(admin: Want, appDistributionTypes: Array<AppDistributionType>): void;
/**
* Get the list of app distribution types can be installed in the device.
*
* @permission ohos.permission.ENTERPRISE_SET_BUNDLE_INSTALL_POLICY
* @param { Want } admin - admin indicates the enterprise admin extension ability information.
* The admin must have the corresponding permission.
* @returns { Array<AppDistributionType> } the result of app distribution types can be installed in the device.
* @throws { BusinessError } 9200001 - The application is not an administrator application of the device.
* @throws { BusinessError } 9200002 - The administrator application does not have permission to manage the device.
* @throws { BusinessError } 201 - Permission verification failed. The application does not have the permission required to call the API.
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @stagemodelonly
* @since 20
*/
function getInstallationAllowedAppDistributionTypes(admin: Want): Array<AppDistributionType>;
/**
* App distribution type.
*
* @enum { number }
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @stagemodelonly
* @since 20
*/
enum AppDistributionType {
/**
* App distribution type of app gallery
*
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @stagemodelonly
* @since 20
*/
APP_GALLERY = 1,
/**
* App distribution type of enterprise
*
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @stagemodelonly
* @since 20
*/
ENTERPRISE = 2,
/**
* App distribution type of enterprise normal
*
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @stagemodelonly
* @since 20
*/
ENTERPRISE_NORMAL = 3,
/**
* App distribution type of enterprise MDM
*
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @stagemodelonly
* @since 20
*/
ENTERPRISE_MDM = 4,
/**
* App distribution type of enterprise internal testing
*
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @stagemodelonly
* @since 20
*/
INTERNALTESTING = 5,
/**
* App distribution type of enterprise crowd testing
*
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @stagemodelonly
* @since 20
*/
CROWDTESTING = 6,
}
}
export default bundleManager;
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。