@hcl-software/dxclient 221.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +62 -0
- package/README.txt +3143 -0
- package/bin/dxclient +3 -0
- package/dist/LICENSE +62 -0
- package/dist/configuration/config.json +52 -0
- package/dist/configuration/versionConfigMap.json +34 -0
- package/dist/package.json +149 -0
- package/dist/packages/admintasks/package-lock.json +21843 -0
- package/dist/packages/admintasks/package.json +56 -0
- package/dist/packages/admintasks/src/commands/createCredentialVault.d.ts +5 -0
- package/dist/packages/admintasks/src/commands/createCredentialVault.js +100 -0
- package/dist/packages/admintasks/src/commands/createCredentialVault.js.map +1 -0
- package/dist/packages/admintasks/src/commands/createSyndicationRelation.d.ts +4 -0
- package/dist/packages/admintasks/src/commands/createSyndicationRelation.js +70 -0
- package/dist/packages/admintasks/src/commands/createSyndicationRelation.js.map +1 -0
- package/dist/packages/admintasks/src/commands/createVirtualPortal.d.ts +4 -0
- package/dist/packages/admintasks/src/commands/createVirtualPortal.js +63 -0
- package/dist/packages/admintasks/src/commands/createVirtualPortal.js.map +1 -0
- package/dist/packages/admintasks/src/commands/differentialReport.d.ts +6 -0
- package/dist/packages/admintasks/src/commands/differentialReport.js +149 -0
- package/dist/packages/admintasks/src/commands/differentialReport.js.map +1 -0
- package/dist/packages/admintasks/src/commands/exportVirtualPortal.d.ts +4 -0
- package/dist/packages/admintasks/src/commands/exportVirtualPortal.js +66 -0
- package/dist/packages/admintasks/src/commands/exportVirtualPortal.js.map +1 -0
- package/dist/packages/admintasks/src/commands/exportWCMLibrary.d.ts +4 -0
- package/dist/packages/admintasks/src/commands/exportWCMLibrary.js +141 -0
- package/dist/packages/admintasks/src/commands/exportWCMLibrary.js.map +1 -0
- package/dist/packages/admintasks/src/commands/importVirtualPortal.d.ts +4 -0
- package/dist/packages/admintasks/src/commands/importVirtualPortal.js +67 -0
- package/dist/packages/admintasks/src/commands/importVirtualPortal.js.map +1 -0
- package/dist/packages/admintasks/src/commands/importWCMLibrary.d.ts +4 -0
- package/dist/packages/admintasks/src/commands/importWCMLibrary.js +112 -0
- package/dist/packages/admintasks/src/commands/importWCMLibrary.js.map +1 -0
- package/dist/packages/admintasks/src/commands/listVirtualPortals.d.ts +4 -0
- package/dist/packages/admintasks/src/commands/listVirtualPortals.js +57 -0
- package/dist/packages/admintasks/src/commands/listVirtualPortals.js.map +1 -0
- package/dist/packages/admintasks/src/commands/pznRulesExport.d.ts +4 -0
- package/dist/packages/admintasks/src/commands/pznRulesExport.js +85 -0
- package/dist/packages/admintasks/src/commands/pznRulesExport.js.map +1 -0
- package/dist/packages/admintasks/src/commands/pznRulesImport.d.ts +4 -0
- package/dist/packages/admintasks/src/commands/pznRulesImport.js +130 -0
- package/dist/packages/admintasks/src/commands/pznRulesImport.js.map +1 -0
- package/dist/packages/admintasks/src/commands/resEnvProviderActions.d.ts +4 -0
- package/dist/packages/admintasks/src/commands/resEnvProviderActions.js +179 -0
- package/dist/packages/admintasks/src/commands/resEnvProviderActions.js.map +1 -0
- package/dist/packages/admintasks/src/commands/restartCorePods.d.ts +4 -0
- package/dist/packages/admintasks/src/commands/restartCorePods.js +45 -0
- package/dist/packages/admintasks/src/commands/restartCorePods.js.map +1 -0
- package/dist/packages/admintasks/src/commands/restartDXCore.d.ts +4 -0
- package/dist/packages/admintasks/src/commands/restartDXCore.js +68 -0
- package/dist/packages/admintasks/src/commands/restartDXCore.js.map +1 -0
- package/dist/packages/admintasks/src/errors/CommandLineMessages_en.json +62 -0
- package/dist/packages/admintasks/src/messages/messages_en.json +34 -0
- package/dist/packages/admintasks/src/services/createSyndicationRelationServices.d.ts +4 -0
- package/dist/packages/admintasks/src/services/createSyndicationRelationServices.js +53 -0
- package/dist/packages/admintasks/src/services/createSyndicationRelationServices.js.map +1 -0
- package/dist/packages/admintasks/src/services/differentialReportService.d.ts +5 -0
- package/dist/packages/admintasks/src/services/differentialReportService.js +59 -0
- package/dist/packages/admintasks/src/services/differentialReportService.js.map +1 -0
- package/dist/packages/admintasks/src/services/resEnvProviderService.d.ts +9 -0
- package/dist/packages/admintasks/src/services/resEnvProviderService.js +238 -0
- package/dist/packages/admintasks/src/services/resEnvProviderService.js.map +1 -0
- package/dist/packages/admintasks/src/services/restartCorePodsService.d.ts +4 -0
- package/dist/packages/admintasks/src/services/restartCorePodsService.js +45 -0
- package/dist/packages/admintasks/src/services/restartCorePodsService.js.map +1 -0
- package/dist/packages/admintasks/src/services/restartDXCoreService.d.ts +4 -0
- package/dist/packages/admintasks/src/services/restartDXCoreService.js +82 -0
- package/dist/packages/admintasks/src/services/restartDXCoreService.js.map +1 -0
- package/dist/packages/admintasks/src/services/virtualPortalServices.d.ts +33 -0
- package/dist/packages/admintasks/src/services/virtualPortalServices.js +169 -0
- package/dist/packages/admintasks/src/services/virtualPortalServices.js.map +1 -0
- package/dist/packages/admintasks/src/utils/createCredentialVault.xml +14 -0
- package/dist/packages/admintasks/src/utils/differential-report-utils.d.ts +11 -0
- package/dist/packages/admintasks/src/utils/differential-report-utils.js +1564 -0
- package/dist/packages/admintasks/src/utils/differential-report-utils.js.map +1 -0
- package/dist/packages/admintasks/src/utils/differential-report-utils.ts +1651 -0
- package/dist/packages/admintasks/src/utils/reportAttributes.properties +179 -0
- package/dist/packages/dam/package-lock.json +14605 -0
- package/dist/packages/dam/package.json +57 -0
- package/dist/packages/dam/src/commands/createSecrets.d.ts +4 -0
- package/dist/packages/dam/src/commands/createSecrets.js +61 -0
- package/dist/packages/dam/src/commands/createSecrets.js.map +1 -0
- package/dist/packages/dam/src/commands/deleteDAMStagingMismatch.d.ts +7 -0
- package/dist/packages/dam/src/commands/deleteDAMStagingMismatch.js +50 -0
- package/dist/packages/dam/src/commands/deleteDAMStagingMismatch.js.map +1 -0
- package/dist/packages/dam/src/commands/deleteSchema.d.ts +4 -0
- package/dist/packages/dam/src/commands/deleteSchema.js +80 -0
- package/dist/packages/dam/src/commands/deleteSchema.js.map +1 -0
- package/dist/packages/dam/src/commands/exportAssets.d.ts +5 -0
- package/dist/packages/dam/src/commands/exportAssets.js +106 -0
- package/dist/packages/dam/src/commands/exportAssets.js.map +1 -0
- package/dist/packages/dam/src/commands/findDAMStagingMismatch.d.ts +7 -0
- package/dist/packages/dam/src/commands/findDAMStagingMismatch.js +53 -0
- package/dist/packages/dam/src/commands/findDAMStagingMismatch.js.map +1 -0
- package/dist/packages/dam/src/commands/importAssets.d.ts +4 -0
- package/dist/packages/dam/src/commands/importAssets.js +78 -0
- package/dist/packages/dam/src/commands/importAssets.js.map +1 -0
- package/dist/packages/dam/src/commands/listSchema.d.ts +4 -0
- package/dist/packages/dam/src/commands/listSchema.js +44 -0
- package/dist/packages/dam/src/commands/listSchema.js.map +1 -0
- package/dist/packages/dam/src/commands/stagingMismatchReport.d.ts +15 -0
- package/dist/packages/dam/src/commands/stagingMismatchReport.js +168 -0
- package/dist/packages/dam/src/commands/stagingMismatchReport.js.map +1 -0
- package/dist/packages/dam/src/commands/stagingResync.d.ts +7 -0
- package/dist/packages/dam/src/commands/stagingResync.js +53 -0
- package/dist/packages/dam/src/commands/stagingResync.js.map +1 -0
- package/dist/packages/dam/src/commands/subscriberDeRegistration.d.ts +4 -0
- package/dist/packages/dam/src/commands/subscriberDeRegistration.js +45 -0
- package/dist/packages/dam/src/commands/subscriberDeRegistration.js.map +1 -0
- package/dist/packages/dam/src/commands/subscriberDetails.d.ts +9 -0
- package/dist/packages/dam/src/commands/subscriberDetails.js +50 -0
- package/dist/packages/dam/src/commands/subscriberDetails.js.map +1 -0
- package/dist/packages/dam/src/commands/subscriberRegistration.d.ts +9 -0
- package/dist/packages/dam/src/commands/subscriberRegistration.js +62 -0
- package/dist/packages/dam/src/commands/subscriberRegistration.js.map +1 -0
- package/dist/packages/dam/src/commands/triggerDAMStaging.d.ts +4 -0
- package/dist/packages/dam/src/commands/triggerDAMStaging.js +45 -0
- package/dist/packages/dam/src/commands/triggerDAMStaging.js.map +1 -0
- package/dist/packages/dam/src/commands/triggerDamReindexing.d.ts +4 -0
- package/dist/packages/dam/src/commands/triggerDamReindexing.js +54 -0
- package/dist/packages/dam/src/commands/triggerDamReindexing.js.map +1 -0
- package/dist/packages/dam/src/commands/updateSecrets.d.ts +4 -0
- package/dist/packages/dam/src/commands/updateSecrets.js +61 -0
- package/dist/packages/dam/src/commands/updateSecrets.js.map +1 -0
- package/dist/packages/dam/src/commands/validateAssets.d.ts +4 -0
- package/dist/packages/dam/src/commands/validateAssets.js +64 -0
- package/dist/packages/dam/src/commands/validateAssets.js.map +1 -0
- package/dist/packages/dam/src/errors/CommandLineMessages_en.json +80 -0
- package/dist/packages/dam/src/export/collection.d.ts +10 -0
- package/dist/packages/dam/src/export/collection.js +291 -0
- package/dist/packages/dam/src/export/collection.js.map +1 -0
- package/dist/packages/dam/src/export/favorite.d.ts +2 -0
- package/dist/packages/dam/src/export/favorite.js +61 -0
- package/dist/packages/dam/src/export/favorite.js.map +1 -0
- package/dist/packages/dam/src/export/media-item.d.ts +6 -0
- package/dist/packages/dam/src/export/media-item.js +193 -0
- package/dist/packages/dam/src/export/media-item.js.map +1 -0
- package/dist/packages/dam/src/export/media-type-group.d.ts +2 -0
- package/dist/packages/dam/src/export/media-type-group.js +43 -0
- package/dist/packages/dam/src/export/media-type-group.js.map +1 -0
- package/dist/packages/dam/src/export/media-type.d.ts +2 -0
- package/dist/packages/dam/src/export/media-type.js +43 -0
- package/dist/packages/dam/src/export/media-type.js.map +1 -0
- package/dist/packages/dam/src/export/renditions.d.ts +8 -0
- package/dist/packages/dam/src/export/renditions.js +255 -0
- package/dist/packages/dam/src/export/renditions.js.map +1 -0
- package/dist/packages/dam/src/import/collection.d.ts +5 -0
- package/dist/packages/dam/src/import/collection.js +148 -0
- package/dist/packages/dam/src/import/collection.js.map +1 -0
- package/dist/packages/dam/src/import/favorite.d.ts +2 -0
- package/dist/packages/dam/src/import/favorite.js +65 -0
- package/dist/packages/dam/src/import/favorite.js.map +1 -0
- package/dist/packages/dam/src/import/media-items.d.ts +5 -0
- package/dist/packages/dam/src/import/media-items.js +182 -0
- package/dist/packages/dam/src/import/media-items.js.map +1 -0
- package/dist/packages/dam/src/import/media-type-group.d.ts +2 -0
- package/dist/packages/dam/src/import/media-type-group.js +68 -0
- package/dist/packages/dam/src/import/media-type-group.js.map +1 -0
- package/dist/packages/dam/src/import/media-type.d.ts +2 -0
- package/dist/packages/dam/src/import/media-type.js +71 -0
- package/dist/packages/dam/src/import/media-type.js.map +1 -0
- package/dist/packages/dam/src/import/permission.d.ts +5 -0
- package/dist/packages/dam/src/import/permission.js +96 -0
- package/dist/packages/dam/src/import/permission.js.map +1 -0
- package/dist/packages/dam/src/import/renditions.d.ts +9 -0
- package/dist/packages/dam/src/import/renditions.js +326 -0
- package/dist/packages/dam/src/import/renditions.js.map +1 -0
- package/dist/packages/dam/src/messages/messages_en.json +19 -0
- package/dist/packages/dam/src/services/authService.d.ts +5 -0
- package/dist/packages/dam/src/services/authService.js +55 -0
- package/dist/packages/dam/src/services/authService.js.map +1 -0
- package/dist/packages/dam/src/services/stagingService.d.ts +37 -0
- package/dist/packages/dam/src/services/stagingService.js +440 -0
- package/dist/packages/dam/src/services/stagingService.js.map +1 -0
- package/dist/packages/dam/src/services/tokenCache.d.ts +8 -0
- package/dist/packages/dam/src/services/tokenCache.js +68 -0
- package/dist/packages/dam/src/services/tokenCache.js.map +1 -0
- package/dist/packages/dam/src/utils/constants.d.ts +70 -0
- package/dist/packages/dam/src/utils/constants.js +76 -0
- package/dist/packages/dam/src/utils/constants.js.map +1 -0
- package/dist/packages/dam/src/utils/interfaces/collection.d.ts +46 -0
- package/dist/packages/dam/src/utils/interfaces/collection.js +3 -0
- package/dist/packages/dam/src/utils/interfaces/collection.js.map +1 -0
- package/dist/packages/dam/src/utils/interfaces/favorite-request.d.ts +6 -0
- package/dist/packages/dam/src/utils/interfaces/favorite-request.js +3 -0
- package/dist/packages/dam/src/utils/interfaces/favorite-request.js.map +1 -0
- package/dist/packages/dam/src/utils/interfaces/media-request.d.ts +54 -0
- package/dist/packages/dam/src/utils/interfaces/media-request.js +3 -0
- package/dist/packages/dam/src/utils/interfaces/media-request.js.map +1 -0
- package/dist/packages/dam/src/utils/interfaces/media-type-group.d.ts +8 -0
- package/dist/packages/dam/src/utils/interfaces/media-type-group.js +3 -0
- package/dist/packages/dam/src/utils/interfaces/media-type-group.js.map +1 -0
- package/dist/packages/dam/src/utils/interfaces/media-type.d.ts +11 -0
- package/dist/packages/dam/src/utils/interfaces/media-type.js +3 -0
- package/dist/packages/dam/src/utils/interfaces/media-type.js.map +1 -0
- package/dist/packages/dam/src/utils/interfaces/media.d.ts +118 -0
- package/dist/packages/dam/src/utils/interfaces/media.js +3 -0
- package/dist/packages/dam/src/utils/interfaces/media.js.map +1 -0
- package/dist/packages/dam/src/utils/service.d.ts +8 -0
- package/dist/packages/dam/src/utils/service.js +126 -0
- package/dist/packages/dam/src/utils/service.js.map +1 -0
- package/dist/packages/dam/src/validation/collection-list-validate.d.ts +2 -0
- package/dist/packages/dam/src/validation/collection-list-validate.js +81 -0
- package/dist/packages/dam/src/validation/collection-list-validate.js.map +1 -0
- package/dist/packages/dam/src/validation/media-list-validate.d.ts +2 -0
- package/dist/packages/dam/src/validation/media-list-validate.js +91 -0
- package/dist/packages/dam/src/validation/media-list-validate.js.map +1 -0
- package/dist/packages/dam/src/validation/media-type-group-validate.d.ts +1 -0
- package/dist/packages/dam/src/validation/media-type-group-validate.js +28 -0
- package/dist/packages/dam/src/validation/media-type-group-validate.js.map +1 -0
- package/dist/packages/dam/src/validation/media-type-validate.d.ts +1 -0
- package/dist/packages/dam/src/validation/media-type-validate.js +28 -0
- package/dist/packages/dam/src/validation/media-type-validate.js.map +1 -0
- package/dist/packages/dam/src/validation/root-validate.d.ts +1 -0
- package/dist/packages/dam/src/validation/root-validate.js +42 -0
- package/dist/packages/dam/src/validation/root-validate.js.map +1 -0
- package/dist/packages/dam/src/validation/validate.rendition.d.ts +1 -0
- package/dist/packages/dam/src/validation/validate.rendition.js +69 -0
- package/dist/packages/dam/src/validation/validate.rendition.js.map +1 -0
- package/dist/packages/dam/src/validation/validate.versions.d.ts +1 -0
- package/dist/packages/dam/src/validation/validate.versions.js +67 -0
- package/dist/packages/dam/src/validation/validate.versions.js.map +1 -0
- package/dist/packages/deployportlet/package-lock.json +20575 -0
- package/dist/packages/deployportlet/package.json +51 -0
- package/dist/packages/deployportlet/src/commands/deployPortlet.d.ts +4 -0
- package/dist/packages/deployportlet/src/commands/deployPortlet.js +99 -0
- package/dist/packages/deployportlet/src/commands/deployPortlet.js.map +1 -0
- package/dist/packages/deployportlet/src/commands/undeployPortlet.d.ts +4 -0
- package/dist/packages/deployportlet/src/commands/undeployPortlet.js +118 -0
- package/dist/packages/deployportlet/src/commands/undeployPortlet.js.map +1 -0
- package/dist/packages/deployportlet/src/commands/xmlaccess.d.ts +4 -0
- package/dist/packages/deployportlet/src/commands/xmlaccess.js +37 -0
- package/dist/packages/deployportlet/src/commands/xmlaccess.js.map +1 -0
- package/dist/packages/deployportlet/src/errors/CommandLineMessages_en.json +5 -0
- package/dist/packages/deployportlet/src/messages/messages_en.json +10 -0
- package/dist/packages/deployportlet/src/services/undeployPortletServices.d.ts +4 -0
- package/dist/packages/deployportlet/src/services/undeployPortletServices.js +92 -0
- package/dist/packages/deployportlet/src/services/undeployPortletServices.js.map +1 -0
- package/dist/packages/deployscriptapplication/package-lock.json +20758 -0
- package/dist/packages/deployscriptapplication/package.json +48 -0
- package/dist/packages/deployscriptapplication/src/commands/list.js +109 -0
- package/dist/packages/deployscriptapplication/src/commands/pull.d.ts +6 -0
- package/dist/packages/deployscriptapplication/src/commands/pull.js +195 -0
- package/dist/packages/deployscriptapplication/src/commands/pull.js.map +1 -0
- package/dist/packages/deployscriptapplication/src/commands/push.d.ts +9 -0
- package/dist/packages/deployscriptapplication/src/commands/push.js +282 -0
- package/dist/packages/deployscriptapplication/src/commands/push.js.map +1 -0
- package/dist/packages/deployscriptapplication/src/commands/restoreScriptApplication.d.ts +5 -0
- package/dist/packages/deployscriptapplication/src/commands/restoreScriptApplication.js +125 -0
- package/dist/packages/deployscriptapplication/src/commands/restoreScriptApplication.js.map +1 -0
- package/dist/packages/deployscriptapplication/src/commands/undeployScriptApplication.d.ts +5 -0
- package/dist/packages/deployscriptapplication/src/commands/undeployScriptApplication.js +162 -0
- package/dist/packages/deployscriptapplication/src/commands/undeployScriptApplication.js.map +1 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_ar.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_ca.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_cs.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_da.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_de.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_el.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_en.json +129 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_en.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_es.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_fi.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_fr.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_hr.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_hu.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_it.properties +212 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_iw.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_ja.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_kk.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_ko.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_nl.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_no.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_pl.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_pt.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_pt_BR.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_ro.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_ru.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_sk.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_sl.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_sv.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_th.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_tr.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_uk.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_zh.properties +210 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_zh_TW.properties +211 -0
- package/dist/packages/deployscriptapplication/src/messages/messages.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_ar.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_ca.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_cs.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_da.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_de.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_el.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_en.json +61 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_en.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_es.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_fi.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_fr.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_hr.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_hu.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_it.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_iw.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_ja.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_kk.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_ko.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_nl.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_no.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_pl.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_pt.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_pt_BR.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_ro.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_ru.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_sk.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_sl.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_sv.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_th.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_tr.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_uk.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_zh.properties +67 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_zh_TW.properties +67 -0
- package/dist/packages/deployscriptapplication/src/util/constants.d.ts +74 -0
- package/dist/packages/deployscriptapplication/src/util/constants.js +98 -0
- package/dist/packages/deployscriptapplication/src/util/constants.js.map +1 -0
- package/dist/packages/deployscriptapplication/src/util/generic.d.ts +2 -0
- package/dist/packages/deployscriptapplication/src/util/generic.js +29 -0
- package/dist/packages/deployscriptapplication/src/util/generic.js.map +1 -0
- package/dist/packages/deploytheme/package-lock.json +21204 -0
- package/dist/packages/deploytheme/package.json +56 -0
- package/dist/packages/deploytheme/src/commands/deployApplication.d.ts +4 -0
- package/dist/packages/deploytheme/src/commands/deployApplication.js +115 -0
- package/dist/packages/deploytheme/src/commands/deployApplication.js.map +1 -0
- package/dist/packages/deploytheme/src/commands/deployTheme.d.ts +7 -0
- package/dist/packages/deploytheme/src/commands/deployTheme.js +286 -0
- package/dist/packages/deploytheme/src/commands/deployTheme.js.map +1 -0
- package/dist/packages/deploytheme/src/commands/undeployApplication.d.ts +4 -0
- package/dist/packages/deploytheme/src/commands/undeployApplication.js +46 -0
- package/dist/packages/deploytheme/src/commands/undeployApplication.js.map +1 -0
- package/dist/packages/deploytheme/src/commands/undeployTheme.d.ts +10 -0
- package/dist/packages/deploytheme/src/commands/undeployTheme.js +288 -0
- package/dist/packages/deploytheme/src/commands/undeployTheme.js.map +1 -0
- package/dist/packages/deploytheme/src/errors/CommandLineMessages_en.json +28 -0
- package/dist/packages/deploytheme/src/messages/messages_en.json +30 -0
- package/dist/packages/deploytheme/src/services/themeServices.d.ts +15 -0
- package/dist/packages/deploytheme/src/services/themeServices.js +413 -0
- package/dist/packages/deploytheme/src/services/themeServices.js.map +1 -0
- package/dist/packages/deploytheme/src/utils/Export.xml +28 -0
- package/dist/packages/livesync/package-lock.json +9737 -0
- package/dist/packages/livesync/package.json +49 -0
- package/dist/packages/livesync/src/commands/pullTheme.d.ts +5 -0
- package/dist/packages/livesync/src/commands/pullTheme.js +104 -0
- package/dist/packages/livesync/src/commands/pullTheme.js.map +1 -0
- package/dist/packages/livesync/src/commands/pullWcmDesignLibrary.d.ts +18 -0
- package/dist/packages/livesync/src/commands/pullWcmDesignLibrary.js +193 -0
- package/dist/packages/livesync/src/commands/pullWcmDesignLibrary.js.map +1 -0
- package/dist/packages/livesync/src/commands/pushTheme.d.ts +12 -0
- package/dist/packages/livesync/src/commands/pushTheme.js +233 -0
- package/dist/packages/livesync/src/commands/pushTheme.js.map +1 -0
- package/dist/packages/livesync/src/commands/pushWcmDesignLibrary.d.ts +4 -0
- package/dist/packages/livesync/src/commands/pushWcmDesignLibrary.js +23 -0
- package/dist/packages/livesync/src/commands/pushWcmDesignLibrary.js.map +1 -0
- package/dist/packages/livesync/src/errors/CommandLineMessages_en.json +52 -0
- package/dist/packages/livesync/src/messages/messages_en.json +33 -0
- package/dist/packages/livesync/src/services/EventsQueue.d.ts +12 -0
- package/dist/packages/livesync/src/services/EventsQueue.js +66 -0
- package/dist/packages/livesync/src/services/EventsQueue.js.map +1 -0
- package/dist/packages/livesync/src/services/foldersWcmServices.d.ts +7 -0
- package/dist/packages/livesync/src/services/foldersWcmServices.js +120 -0
- package/dist/packages/livesync/src/services/foldersWcmServices.js.map +1 -0
- package/dist/packages/livesync/src/services/htmlComponentWcmServices.d.ts +6 -0
- package/dist/packages/livesync/src/services/htmlComponentWcmServices.js +108 -0
- package/dist/packages/livesync/src/services/htmlComponentWcmServices.js.map +1 -0
- package/dist/packages/livesync/src/services/initialSyncServices.d.ts +3 -0
- package/dist/packages/livesync/src/services/initialSyncServices.js +94 -0
- package/dist/packages/livesync/src/services/initialSyncServices.js.map +1 -0
- package/dist/packages/livesync/src/services/livesyncUtils.d.ts +2 -0
- package/dist/packages/livesync/src/services/livesyncUtils.js +59 -0
- package/dist/packages/livesync/src/services/livesyncUtils.js.map +1 -0
- package/dist/packages/livesync/src/services/metadataServices.d.ts +16 -0
- package/dist/packages/livesync/src/services/metadataServices.js +117 -0
- package/dist/packages/livesync/src/services/metadataServices.js.map +1 -0
- package/dist/packages/livesync/src/services/ongoingSyncServices.d.ts +10 -0
- package/dist/packages/livesync/src/services/ongoingSyncServices.js +266 -0
- package/dist/packages/livesync/src/services/ongoingSyncServices.js.map +1 -0
- package/dist/packages/livesync/src/services/wcmRestV2Services.d.ts +5 -0
- package/dist/packages/livesync/src/services/wcmRestV2Services.js +92 -0
- package/dist/packages/livesync/src/services/wcmRestV2Services.js.map +1 -0
- package/dist/packages/livesync/src/types/EventHandler.type.d.ts +5 -0
- package/dist/packages/livesync/src/types/EventHandler.type.js +3 -0
- package/dist/packages/livesync/src/types/EventHandler.type.js.map +1 -0
- package/dist/packages/livesync/src/types/EventQueueItem.type.d.ts +7 -0
- package/dist/packages/livesync/src/types/EventQueueItem.type.js +3 -0
- package/dist/packages/livesync/src/types/EventQueueItem.type.js.map +1 -0
- package/dist/packages/livesync/src/types/OngoingSyncHooks.type.d.ts +4 -0
- package/dist/packages/livesync/src/types/OngoingSyncHooks.type.js +3 -0
- package/dist/packages/livesync/src/types/OngoingSyncHooks.type.js.map +1 -0
- package/dist/packages/livesync/src/types/WcmRestApiV2.type.d.ts +99 -0
- package/dist/packages/livesync/src/types/WcmRestApiV2.type.js +3 -0
- package/dist/packages/livesync/src/types/WcmRestApiV2.type.js.map +1 -0
- package/dist/packages/livesync/src/types/index.d.ts +4 -0
- package/dist/packages/livesync/src/types/index.js +17 -0
- package/dist/packages/livesync/src/types/index.js.map +1 -0
- package/dist/packages/mls_exim/package-lock.json +13855 -0
- package/dist/packages/mls_exim/package.json +51 -0
- package/dist/packages/mls_exim/src/errors/CommandLineMessages_en.json +19 -0
- package/dist/packages/mls_exim/src/export/mlsExport.d.ts +7 -0
- package/dist/packages/mls_exim/src/export/mlsExport.js +292 -0
- package/dist/packages/mls_exim/src/export/mlsExport.js.map +1 -0
- package/dist/packages/mls_exim/src/export/mlsExport.ts +371 -0
- package/dist/packages/mls_exim/src/import/mlsImport.d.ts +8 -0
- package/dist/packages/mls_exim/src/import/mlsImport.js +104 -0
- package/dist/packages/mls_exim/src/import/mlsImport.js.map +1 -0
- package/dist/packages/mls_exim/src/import/mlsImport.ts +138 -0
- package/dist/packages/mls_exim/src/messages/messages_en.json +14 -0
- package/dist/packages/mls_exim/src/utils/interfaces/export.d.ts +133 -0
- package/dist/packages/mls_exim/src/utils/interfaces/export.js +3 -0
- package/dist/packages/mls_exim/src/utils/interfaces/export.js.map +1 -0
- package/dist/packages/mls_exim/src/utils/interfaces/export.ts +165 -0
- package/dist/packages/mls_exim/src/utils/interfaces/import.d.ts +52 -0
- package/dist/packages/mls_exim/src/utils/interfaces/import.js +3 -0
- package/dist/packages/mls_exim/src/utils/interfaces/import.js.map +1 -0
- package/dist/packages/mls_exim/src/utils/interfaces/import.ts +76 -0
- package/dist/packages/sharedlibrary/package-lock.json +20575 -0
- package/dist/packages/sharedlibrary/package.json +51 -0
- package/dist/packages/sharedlibrary/src/commands/delete.d.ts +4 -0
- package/dist/packages/sharedlibrary/src/commands/delete.js +64 -0
- package/dist/packages/sharedlibrary/src/commands/delete.js.map +1 -0
- package/dist/packages/sharedlibrary/src/commands/upload.d.ts +4 -0
- package/dist/packages/sharedlibrary/src/commands/upload.js +105 -0
- package/dist/packages/sharedlibrary/src/commands/upload.js.map +1 -0
- package/dist/packages/sharedlibrary/src/errors/CommandLineMessages_en.json +10 -0
- package/dist/packages/sharedlibrary/src/messages/messages_en.json +7 -0
- package/dist/packages/sharedlibrary/src/services/sharedLibraryServices.d.ts +5 -0
- package/dist/packages/sharedlibrary/src/services/sharedLibraryServices.js +100 -0
- package/dist/packages/sharedlibrary/src/services/sharedLibraryServices.js.map +1 -0
- package/dist/packages/syndication/package-lock.json +20575 -0
- package/dist/packages/syndication/package.json +51 -0
- package/dist/packages/syndication/src/commands/subscriber.d.ts +4 -0
- package/dist/packages/syndication/src/commands/subscriber.js +62 -0
- package/dist/packages/syndication/src/commands/subscriber.js.map +1 -0
- package/dist/packages/syndication/src/commands/syndicationReport.d.ts +2 -0
- package/dist/packages/syndication/src/commands/syndicationReport.js +99 -0
- package/dist/packages/syndication/src/commands/syndicationReport.js.map +1 -0
- package/dist/packages/syndication/src/commands/syndicator.d.ts +4 -0
- package/dist/packages/syndication/src/commands/syndicator.js +62 -0
- package/dist/packages/syndication/src/commands/syndicator.js.map +1 -0
- package/dist/packages/syndication/src/commands/syndicatorFailedItem.d.ts +4 -0
- package/dist/packages/syndication/src/commands/syndicatorFailedItem.js +104 -0
- package/dist/packages/syndication/src/commands/syndicatorFailedItem.js.map +1 -0
- package/dist/packages/syndication/src/errors/CommandLineMessages_en.json +12 -0
- package/dist/packages/syndication/src/messages/messages_en.json +9 -0
- package/dist/packages/syndication/src/services/syndicationService.d.ts +108 -0
- package/dist/packages/syndication/src/services/syndicationService.js +167 -0
- package/dist/packages/syndication/src/services/syndicationService.js.map +1 -0
- package/dist/src/errors/CommandLineMessages_en.json +53 -0
- package/dist/src/index.d.ts +1 -0
- package/dist/src/index.js +2207 -0
- package/dist/src/index.js.map +1 -0
- package/dist/src/services/apiServices.d.ts +32 -0
- package/dist/src/services/apiServices.js +932 -0
- package/dist/src/services/apiServices.js.map +1 -0
- package/dist/src/services/filesServices.d.ts +9 -0
- package/dist/src/services/filesServices.js +134 -0
- package/dist/src/services/filesServices.js.map +1 -0
- package/dist/src/services/requestService.d.ts +4 -0
- package/dist/src/services/requestService.js +55 -0
- package/dist/src/services/requestService.js.map +1 -0
- package/dist/src/utils/commands.d.ts +2 -0
- package/dist/src/utils/commands.js +13 -0
- package/dist/src/utils/commands.js.map +1 -0
- package/dist/src/utils/constants.d.ts +389 -0
- package/dist/src/utils/constants.js +464 -0
- package/dist/src/utils/constants.js.map +1 -0
- package/dist/src/utils/interfaces.d.ts +19 -0
- package/dist/src/utils/interfaces.js +3 -0
- package/dist/src/utils/interfaces.js.map +1 -0
- package/dist/src/utils/logger.d.ts +3 -0
- package/dist/src/utils/logger.js +126 -0
- package/dist/src/utils/logger.js.map +1 -0
- package/dist/src/utils/utils.d.ts +31 -0
- package/dist/src/utils/utils.js +791 -0
- package/dist/src/utils/utils.js.map +1 -0
- package/dist/src/utils/validateOptions.d.ts +4 -0
- package/dist/src/utils/validateOptions.js +730 -0
- package/dist/src/utils/validateOptions.js.map +1 -0
- package/package.json +149 -0
|
@@ -0,0 +1,179 @@
|
|
|
1
|
+
##########################################################################################
|
|
2
|
+
#
|
|
3
|
+
# Copyright International Business Machines Corp. 2014, 2020.
|
|
4
|
+
#
|
|
5
|
+
# See the NOTICE file distributed with this work for additional information
|
|
6
|
+
# regarding copyright ownership. Licensed under the Apache License,
|
|
7
|
+
# Version 2.0 (the "License"); you may not use this file except in compliance
|
|
8
|
+
# with the License. You may obtain a copy of the License at
|
|
9
|
+
#
|
|
10
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
+
#
|
|
12
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
13
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
|
+
# See the License for the specific language governing permissions and
|
|
16
|
+
# limitations under the License.
|
|
17
|
+
#
|
|
18
|
+
##########################################################################################
|
|
19
|
+
# Author: Dennis Riddlemoser
|
|
20
|
+
#######################################################################################
|
|
21
|
+
# Properties in thiis file define attributes reported in each sub report.
|
|
22
|
+
# If this file is modified, be sure to merge any changes from new releases of this tool
|
|
23
|
+
# or new reports requiring new properties may cause the tool to fail to generate the
|
|
24
|
+
# reports. This file is implicitly loaded and loaded last. This ensures new property
|
|
25
|
+
# values oveeride existing values in legacy ConfigReport.properties files.
|
|
26
|
+
#######################################################################################
|
|
27
|
+
|
|
28
|
+
jvmReportSrv:attributes=debugMode,verboseModeClass,verboseModeGarbageCollection,disableJIT,maximumHeapSize,verboseModeJNI,bootClasspath,\
|
|
29
|
+
hprofArguments,runHProf,initialHeapSize,classpath,debugArgs,internalClassAccessMode
|
|
30
|
+
processDefinitionReportSrv:attributes=terminateCommandArgs,executableTargetKind,executableArguments,startCommandArgs,workingDirectory,\
|
|
31
|
+
stopCommandArgs,executableTarget
|
|
32
|
+
processExecutionReportSrv:attributes=processPriority,umask,runInProcessGroup,runAsGroup,runAsUser
|
|
33
|
+
processMonitoringPolicyReportSrv:attributes=autoRestart,nodeRestartState,pingInterval,pingTimeout,maximumStartupAttempts
|
|
34
|
+
traceServiceReportSrv:attributes=traceOutputType,traceFormat,memoryBufferSize,enable,startupTraceSpecification
|
|
35
|
+
traceLogSrv:attributes=fileName,rolloverSize,maxNumberOfBackupFiles
|
|
36
|
+
httpAccessLogServiceReportSrv:attributes=errorLogLevel,frcaLogFormat,enableFRCALogging,enable,enableErrorLogging,accessLogFormat,enableAccessLogging
|
|
37
|
+
orbServiceReportSrv:attributes=requestTimeout,useServerThreadPool,commTraceEnabled,requestRetriesDelay,connectionCacheMaximum,connectionCacheMinimum,\
|
|
38
|
+
enable,requestRetriesCount,noLocalCopies,forceTunnel,locateRequestTimeout
|
|
39
|
+
webContainerReportSrv:attributes=sessionAffinityTimeout,allowAsyncRequestDispatching,maximumResponseStoreSize,disablePooling,asyncIncludeTimeout,\
|
|
40
|
+
maximumPercentageExpiredEntries,enableServletCaching,defaultVirtualHostName
|
|
41
|
+
threadPoolManagerSrv:attributes=enable
|
|
42
|
+
threadPoolSrv:attributes=name,isGrowable,inactivityTimeout,minimumSize,maximumSize
|
|
43
|
+
sessionManagerReportSrv:attributes=enableCookies,sessionPersistenceMode,enableSSLTracking,accessSessionOnTimeout,enable,\
|
|
44
|
+
enableUrlRewriting,enableProtocolSwitchRewriting,allowSerializedSessionAccess,maxWaitTime,enableSecurityIntegration
|
|
45
|
+
sessionManagerTuningParmsReportSrv:attributes=maxInMemorySessionCount,scheduleInvalidation,writeContents,writeFrequency,writeInterval,allowOverflow,\
|
|
46
|
+
invalidationTimeout,usingMultiRowSchema
|
|
47
|
+
sessionInvalidationScheduleReportSrv:attributes=firstHour,secondHour
|
|
48
|
+
sessionDBPersistenceReportSrv:attributes=db2RowSize,datasourceJNDIName,tableSpaceName,userId
|
|
49
|
+
defaultCookieSettingsSrv:attributes=path,secure,domain,name,maximumAge
|
|
50
|
+
dynamicCacheReportSrv:attributes=diskCachePerformanceLevel,flushToDiskOnStop,diskCacheCleanupFrequency,enableTagLevelCaching,replicationType,\
|
|
51
|
+
enableDiskOffload,cacheSize,enableCacheReplication,enable,diskCacheSizeInGB,cacheProvider,diskCacheSizeInEntries, \
|
|
52
|
+
hashSize,memoryCacheSizeInMB,pushFrequency,defaultPriority,diskCacheEntrySizeInMB
|
|
53
|
+
pmiServiceReportSrv:attributes=initialSpecLevel,statisticSet,enable,synchronizedUpdate
|
|
54
|
+
sipContainerReportSrv:attributes=maxAppSessions,maxResponseTime,statAveragePeriod,dnsServerNames,maxMessageRate,maxDispatchQueueSize,statUpdateRange
|
|
55
|
+
sipStackReportSrv:attributes=hideMessageBody,outboundConnectionTimeout,MTU,inviteAutoReply100
|
|
56
|
+
sipTimersReportSrv:attributes=timerT1,timerT2,timerT4,timerA,timerB,timerD,timerE,timerF,timerG,timerH,timerI,timerJ,timerK
|
|
57
|
+
portletContainerReportSrv:attributes=enablePortletCaching,maxProcessEventCount
|
|
58
|
+
reportTransportChannelServiceSrv:attributes=enable
|
|
59
|
+
reportTransportChannelChainSrv:attributes=addressExcludeList,addressIncludeList,discriminationWeight,enableFRCA,enableLogging, \
|
|
60
|
+
endPointName,hostNameExcludeList,hostNameIncludeList,inactivityTimeout,keepAlive,\
|
|
61
|
+
maxFieldSize,maxHeaders,maxOpenConnections,maxRequestMessageBodySize,maximumPersistentRequests,\
|
|
62
|
+
name,persistentTimeout,readTimeout,useChannelAccessLoggingSettings,useChannelErrorLoggingSettings,\
|
|
63
|
+
useChannelFRCALoggingSettings,writeBufferSize,writeTimeout
|
|
64
|
+
fileTransferServiceReportSrv:attributes=retryWaitTime,enable,retriesCount
|
|
65
|
+
fileSynchServiceReportSrv:attributes=autoSynchEnabled,synchOnServerStartup,enable,exclusions,synchInterval
|
|
66
|
+
traceLogSrv:attributes=fileName,rolloverSize,maxNumberOfBackupFiles
|
|
67
|
+
ejbContainerSrv:attributes=inactivePoolCleanupInterval,passivationDirectory,enableSFSBFailover
|
|
68
|
+
ejBTimerSrv:attributes=datasourceJNDIName,numAlarmThreads,pollInterval,tablePrefix
|
|
69
|
+
messageListenerServiceSrv:attributes=mqJMSPoolingTimeout,mqJMSPoolingThreshold,maxMDBListenerRetries,enable,mdbListenerRecoveryInterval
|
|
70
|
+
ejbCacheSrv:attributes=cacheSize,cleanupInterval
|
|
71
|
+
transactionServiceReportSrv:attributes=enableProtocolSecurity,clientInactivityTimeout,LPSHeuristicCompletion,httpsProxyPrefix,heuristicRetryWait\
|
|
72
|
+
WSTransactionSpecificationLevel,enableLoggingForHeuristicReporting,enableFileLocking,enable,heuristicRetryLimit\
|
|
73
|
+
totalTranLifetimeTimeout,waitForCommitOutcome,wstxURLPrefixSpecified,acceptHeuristicHazard,\
|
|
74
|
+
maximumTransactionTimeout,asyncResponseTimeout,propogatedOrBMTTranLifetimeTimeout
|
|
75
|
+
applicationServerReportSrv:attributes=applicationClassLoaderPolicy,classloaders,applicationClassLoadingMode
|
|
76
|
+
httpPluginReportSrv:attributes=MaxConnections,Role,ServerIOTimeout,WaitForContinue,ConnectTimeout,ExtendedHandshake
|
|
77
|
+
|
|
78
|
+
dataSourceRsc:attributes=logMissingTransactionContext,description,manageCachedHandles,diagnoseConnectionUsage,\
|
|
79
|
+
jndiName,statementCacheSize,authMechanismPreference,datasourceHelperClassname,category,name
|
|
80
|
+
providerReportRsc:attributes=xa,providerType,description,nativepath,isolatedClassLoader,implementationClassName,name,classpath
|
|
81
|
+
resourceAdapterRsc:attributes=name,jaasLoginConfiguration,nativepath,description,singleton,threadPoolAlias,\
|
|
82
|
+
classpath,isEnableHASupport,isolatedClassLoader,hACapability,archivePath,
|
|
83
|
+
connectionPoolRsc:attributes=numberOfFreePoolPartitions,freePoolDistributionTableSize,numberOfSharedPoolPartitions,testConnection,\
|
|
84
|
+
reapTime,agedTimeout,stuckTime,numberOfUnsharedPoolPartitions,surgeCreationInterval,purgePolicy,connectionTimeout,\
|
|
85
|
+
surgeThreshold,minConnections,testConnectionInterval,stuckTimerTime,maxConnections,unusedTimeout,stuckThreshold
|
|
86
|
+
connectorRsc:attributes=specVersion,description,displayName,version,vendorName,eisType
|
|
87
|
+
jdbcProviderRsc:attributes=xa,providerTyp,name,description,classpath,nativepath,isolatedClassLoader,implementationClassName
|
|
88
|
+
objectCacheRsc:attributes=name,diskCachePerformanceLevel,flushToDiskOnStop,diskCacheCleanupFrequency,disableDependencyId,\
|
|
89
|
+
description,category,replicationType,enableDiskOffload,jndiName,cacheSize,enableCacheReplication,\
|
|
90
|
+
diskCacheSizeInGB,diskCacheSizeInEntries,hashSize,memoryCacheSizeInMB,pushFrequency,useListenerContext,\
|
|
91
|
+
defaultPriority,diskCacheEntrySizeInMB=0
|
|
92
|
+
servletCacheRsc:attributes=name,diskCachePerformanceLevel,flushToDiskOnStop,diskCacheCleanupFrequency,category,replicationType,\
|
|
93
|
+
enableDiskOffload,jndiName,cacheSize,enableCacheReplication=false,diskCacheSizeInGB,diskCacheSizeInEntries,\
|
|
94
|
+
hashSize,memoryCacheSizeInMB,pushFrequency,useListenerContext,defaultPriority,diskCacheEntrySizeInMB
|
|
95
|
+
cacheProviderRsc:attributes=description,nativepath,isolatedClassLoader,name,referenceables,classpath
|
|
96
|
+
diskCacheCustomPerformanceSettingsRsc:attributes=maxBufferedCacheIdsPerMetaEntry,maxBufferedDependencyIds,maxBufferedTemplates
|
|
97
|
+
diskCacheEvictionPolicyRsc:attributes=highThreshold,lowThreshold,algorithm
|
|
98
|
+
securityRsc:attributes=issuePermissionWarning,dynamicallyUpdateSSLConfig,appEnabled,allowAllPermissionForApplication,enforceJava2Security,\
|
|
99
|
+
enableJava2SecRuntimeFiltering,enforceFineGrainedJCASecurity,cacheTimeout,enabled,useDomainQualifiedUserNames,\
|
|
100
|
+
useLocalSecurityServer,allowBasicAuth
|
|
101
|
+
sslConfigRsc:attributes=type,alias
|
|
102
|
+
sslConfig1Rsc:attributes=enabledCiphers,securityLevel,keyFileFormat,trustFileFormat,sslProtocol,enableCryptoHardwareSupport,jsseProvider,\
|
|
103
|
+
clientAuthenticationSupported,clientAuthentication
|
|
104
|
+
keyStoreRsc:attributes=useForAcceleration,description,location,readOnly,slot,provider,type,usage,hostList,additionalKeyStoreAttrs,fileBased,\
|
|
105
|
+
initializeAtStartup,createStashFileForCMS,name
|
|
106
|
+
keyManagerRsc:attributes=additionalKeyManagerAttrs,provider,Property,keyManagerClass,name,algorithm
|
|
107
|
+
trustManagerRsc:attributes=provider,trustManagerClass,Property,name,algorithm
|
|
108
|
+
certExpMonitorRsc:attributes=daysBeforeNotification,deleteOld,isEnabled,name,autoReplace
|
|
109
|
+
notificationRsc:attributes=sendSecure,emailList,logToSystemOut,sendEmail,emailFormat,name
|
|
110
|
+
scheduleRsc:attributes=minute,nextStartDate,frequency,name,dayOfWeek,hour=21
|
|
111
|
+
csiv2Rsc:attributes=stateful,sessionGCInterval,sessionGCIdleTime
|
|
112
|
+
csiv2idAssertRsc:attributes=supportedTypes,useClaim,trustedServers
|
|
113
|
+
csiv2idAssertQOPRsc:attributes=enable
|
|
114
|
+
csiv2MessageRsc:attributes=authenticationLayerRetryCount,useClaim,supportedAuthMechList,supportedAuthTargets,isStateful
|
|
115
|
+
csiv2MessageQOPRsc:attributes=enableOutOfSequenceDetection,enableReplayDetection,establishTrustInClient
|
|
116
|
+
csiv2TransportRsc:attributes=useClaim
|
|
117
|
+
csiv2TransportSrvSAuthRsc:attributes=external,sslConfig,sslEnabled
|
|
118
|
+
csiv2TransportQOPRsc:attributes=enableProtection,integrity,confidentiality,establishTrustInClient
|
|
119
|
+
sibRsc:attributes=usePermittedChains,nominatedBootstrapMembers,permittedChains,bootstrapMemberPolicy,configurationReloadEnabled, \
|
|
120
|
+
securityGroupCacheTimeout,highMessageThreshold,discardMsgsAfterQueueDeletion,busMembers,foreignBus,name,\
|
|
121
|
+
useServerIdForMediations,secure,uuid
|
|
122
|
+
rscEnvProviderRsc:attributes=description,nativepath,isolatedClassLoader,SearchPropertiesService,referenceables,classpath
|
|
123
|
+
rscEnvEntryRsc:attributes=jndiName
|
|
124
|
+
referencableRsc:attributes=factoryClassname,classname
|
|
125
|
+
jmsProviderRsc:attributes=externalInitialContextFactory,name,isolatedClassLoader,nativepath,supportsASF,classpath,externalProviderURL
|
|
126
|
+
genericJMSConnectionFactoryRsc:attributes=name,logMissingTransactionContext,manageCachedHandles,jndiName,authMechanismPreference,type,\
|
|
127
|
+
diagnoseConnectionUsage,externalJNDIName,XAEnabled
|
|
128
|
+
mappingModuleRsc:attributes=mappingConfigAlias,authDataAlias
|
|
129
|
+
genericJMSDestinationRsc:attributes=name,jndiName,type,externalJNDIName
|
|
130
|
+
j2cActivationSpecRsc:attributes=authenticationAlias,name,destinationJndiName,jndiName,description
|
|
131
|
+
activationSpecRsc:attributes=activationSpecClass
|
|
132
|
+
jaasAuthDataRsc:attributes=alias,userId,description
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
pmiModuleReport.statProviders=DCSStats.Group,Destinations,GC,Mediations,MessageStoreStats.cache,MessageStoreStats.datastore,MessageStoreStats.expiry, \
|
|
136
|
+
MessageStoreStats.filestore,MessageStoreStats.group,MessageStoreStats.transactions,Monitor,Queues,SipContainerModule, \
|
|
137
|
+
Thread,Thread_Pool,Topicspaces,alarmManagerModule,beanModule,cacheModule,cacheModule.disk,cacheModule.objectCache, \
|
|
138
|
+
cacheModule.template,connectionPoolModule,hamanagerModule,j2cModule,jvmRuntimeModule,objectPoolModule,orbPerfModule, \
|
|
139
|
+
orbPerfModule.interceptors,pmi,portletAppModule,schedulerModule,servletSessionsModule,systemModule,threadPoolModule, \
|
|
140
|
+
transactionModule,webAppModule,webServicesModule,wlmModule,wlmModule.client,wlmModule.server,wsgwModule
|
|
141
|
+
pmiModuleReport.statGroup=StatGroup.Clients,StatGroup.ClientsDetailed,StatGroup.ClientsStandard,StatGroup.Communications,StatGroup.MessagingEngines,\
|
|
142
|
+
StatGroup.MessagingEnginesDetailed,StatGroup.MessagingEnginesStandard,StatGroup.SIBMessagingEngines,StatGroup.SIBService, \
|
|
143
|
+
StatGroup.WMQClientLinks,StatGroup.WMQClientLinksStandard,StatGroup.WMQLinks,StatGroup.WMQLinksStandard
|
|
144
|
+
|
|
145
|
+
applicationDeployment:attributes=expandSynchronously,asyncRequestDispatchType,autoLink,startOnDistribute,warClassLoaderPolicy,recycleOnUpdate,zeroEarCopy, \
|
|
146
|
+
allowDispatchRemoteInclude,zeroBinaryCopy,standaloneModule,enableClientModule,appContextIDForSecurity,filePermission, \
|
|
147
|
+
binariesURL,backgroundApplication,allowServiceRemoteInclude,reloadEnabled,useMetadataFromBinaries,reloadInterval, \
|
|
148
|
+
createMBeansForResources,enableDistribution,startingWeight
|
|
149
|
+
applicationClassloader:attributes=mode,libraries
|
|
150
|
+
applicationModules:attributes=containsEJBContent,uri,classloaderMode,startingWeight
|
|
151
|
+
urlProviderRsc:attributes=classpath,nativepath,isolatedClassLoader # next are always 'usued': streamHandlerClassName,protocol
|
|
152
|
+
urlRsc:attributes=description,jndiName,spec
|
|
153
|
+
j2cConnectionFactoryRsc:attributes=jndiName,description,diagnoseConnectionUsage,logMissingTransactionContext,manageCachedHandles,authMechanismPreference
|
|
154
|
+
j2cConnectionFactoryConDefRsc:attributes=connectionInterface
|
|
155
|
+
j2cAdminObjectRsc:attributes=jndiName
|
|
156
|
+
adminObjectRsc:attributes=adminObjectInterface
|
|
157
|
+
mqConnectionFactoryRsc:attributes=authMechanismPreference,brokerCCSubQ,brokerControlQueue,brokerPubQueue,brokerSubQueue,brokerVersion,CCSID,channel,\
|
|
158
|
+
clientReconnectOptions,clientReconnectTimeout,cloneSupport,compressHeaders,compressPayload,description,diagnoseConnectionUsage,\
|
|
159
|
+
directAuth,failIfQuiesce,host,inheritRRSContext,jndiName,logMissingTransactionContext,manageCachedHandles,maxBatchSize,\
|
|
160
|
+
msgRetention,msgSelection,multicast,pollingInterval,port,properties,proxyPort,publishAckInterval,pubSubCleanup,\
|
|
161
|
+
pubSubCleanupInterval,qmgrType,queueManager,replyWithRFH2,rescanInterval,sparseSubscriptions,sslResetCount,sslType,\
|
|
162
|
+
statRefreshInterval,substore,tempModel,transportType,useConnectionPooling,wildcardFormat,XAEnabled
|
|
163
|
+
mqQueueConnectionFactoryRsc:attributes=authMechanismPreference,CCSID,channel,clientReconnectOptions,clientReconnectTimeout,compressHeaders,compressPayload,description, \
|
|
164
|
+
diagnoseConnectionUsage,failIfQuiesce,host,inheritRRSContext,jndiName,logMissingTransactionContext,manageCachedHandles, \
|
|
165
|
+
maxBatchSize,msgRetention,pollingInterval,port,qmgrType,queueManager,replyWithRFH2,rescanInterval,sslResetCount, \
|
|
166
|
+
sslType,tempModel,transportType,useConnectionPooling,XAEnabled
|
|
167
|
+
mqTopicConnectionFactoryRsc:attributes=authMechanismPreference,brokerCCSubQ,brokerControlQueue,brokerPubQueue,brokerSubQueue,brokerVersion,CCSID,channel,\
|
|
168
|
+
clientReconnectOptions,clientReconnectTimeout,cloneSupport,compressHeaders,compressPayload,diagnoseConnectionUsage,\
|
|
169
|
+
directAuth,failIfQuiesce,host,inheritRRSContext,jndiName,logMissingTransactionContext,manageCachedHandles,maxBatchSize,\
|
|
170
|
+
msgSelection,multicast,pollingInterval,port,properties,proxyPort,publishAckInterval,pubSubCleanup,pubSubCleanupInterval,\
|
|
171
|
+
qmgrType,queueManager,rescanInterval,sparseSubscriptions,sslResetCount,sslType,statRefreshInterval,substore,transportType,\
|
|
172
|
+
useConnectionPooling,wildcardFormat,XAEnabled
|
|
173
|
+
mqQueueRsc:attributes=baseQueueManagerName,baseQueueName,CCSID,decimalEncoding,description,expiry,floatingPointEncoding,integerEncoding,jndiName,messageBody, \
|
|
174
|
+
mqmdMessageContext,mqmdReadEnabled,mqmdWriteEnabled,password,persistence,priority,queueManagerHost,queueManagerPort,readAhead, \
|
|
175
|
+
readAheadClose,receiveCCSID,receiveConvert,replyToStyle,sendAsync,serverConnectionChannelName,specifiedExpiry,specifiedPriority, \
|
|
176
|
+
targetClient,useNativeEncoding,userName
|
|
177
|
+
mqTopicRsc:attributes=baseTopicName,brokerVersion,CCSID,decimalEncoding,expiry,floatingPointEncoding,integerEncoding,jndiName,messageBody,mqmdMessageContext,\
|
|
178
|
+
mqmdReadEnabled,mqmdWriteEnabled,multicast,persistence,priority,readAhead,readAheadClose,receiveCCSID,receiveConvert,replyToStyle,\
|
|
179
|
+
sendAsync,specifiedExpiry,specifiedPriority,targetClient,useNativeEncoding,wildcardFormat
|