mirror of
https://github.com/kforney/pentest-distro-builder.git
synced 2024-11-25 09:45:25 -07:00
27 lines
1.4 KiB
JavaScript
27 lines
1.4 KiB
JavaScript
|
"use strict";
|
||
|
/*---------------------------------------------------------------------------------------------
|
||
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
* Licensed under the MIT License. See LICENSE.md in the project root for license information.
|
||
|
*--------------------------------------------------------------------------------------------*/
|
||
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||
|
//AsyncPool Constants
|
||
|
exports.MAX_CONCURRENT_REQUESTS = 8;
|
||
|
exports.MAX_CONCURRENT_SUBSCRIPTON_REQUESTS = 5;
|
||
|
// Consider downloading multiple pages (images, tags, etc)
|
||
|
exports.PAGE_SIZE = 100;
|
||
|
var keytarConstants;
|
||
|
(function (keytarConstants) {
|
||
|
keytarConstants.serviceId = 'vscode-docker';
|
||
|
keytarConstants.dockerHubTokenKey = 'dockerhub.token';
|
||
|
keytarConstants.dockerHubUserNameKey = 'dockerhub.username';
|
||
|
keytarConstants.dockerHubPasswordKey = 'dockerhub.password';
|
||
|
})(keytarConstants = exports.keytarConstants || (exports.keytarConstants = {}));
|
||
|
var configurationKeys;
|
||
|
(function (configurationKeys) {
|
||
|
configurationKeys.defaultRegistryPath = "defaultRegistryPath";
|
||
|
})(configurationKeys = exports.configurationKeys || (exports.configurationKeys = {}));
|
||
|
//Credentials Constants
|
||
|
exports.NULL_GUID = '00000000-0000-0000-0000-000000000000';
|
||
|
//Azure Container Registries
|
||
|
exports.skus = ["Standard", "Basic", "Premium"];
|
||
|
//# sourceMappingURL=constants.js.map
|