├── .editorconfig ├── .eslintrc.cjs ├── .github ├── ISSUE_TEMPLATE │ ├── bug.yml │ ├── feature.yml │ └── question.yml ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── auto-pr.yml │ ├── issue-check-inactive.yml │ ├── issue-close-require.yml │ ├── issue-comment.yml │ ├── issue-inactive-alert.yml │ ├── issue-open.yml │ ├── issue-recent-alert.yml │ └── sync2gitee.yml ├── .gitignore ├── .idea └── icon.png ├── .mvn └── wrapper │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── .vscode ├── extensions.json └── settings.json ├── .yarn ├── plugins │ └── @yarnpkg │ │ ├── plugin-interactive-tools.cjs │ │ ├── plugin-typescript.cjs │ │ └── plugin-workspace-tools.cjs └── releases │ └── yarn-3.5.1.cjs ├── .yarnrc.yml ├── LICENSE ├── README.md ├── SECURITY.md ├── demo ├── DEMO-TEMPLATE │ ├── .gitignore │ ├── DEMO-TEMPLATE.yml │ ├── backend │ │ ├── .gitignore │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── fit2cloud │ │ │ │ │ ├── ModuleApplication.java │ │ │ │ │ ├── constants │ │ │ │ │ ├── ErrorCodeConstants.java │ │ │ │ │ ├── JobConstants.java │ │ │ │ │ ├── MenuConstants.java │ │ │ │ │ └── PermissionConstants.java │ │ │ │ │ ├── controller │ │ │ │ │ ├── DemoController.java │ │ │ │ │ └── request │ │ │ │ │ │ └── DemoRequest.java │ │ │ │ │ ├── dto │ │ │ │ │ └── DemoObject.java │ │ │ │ │ ├── quartz │ │ │ │ │ └── DemoJob.java │ │ │ │ │ └── service │ │ │ │ │ ├── IDemoService.java │ │ │ │ │ └── impl │ │ │ │ │ └── DemoServiceImpl.java │ │ │ └── resources │ │ │ │ ├── application.yml │ │ │ │ ├── db │ │ │ │ └── migration │ │ │ │ │ └── V1__init.sql │ │ │ │ ├── i18n │ │ │ │ ├── messages.properties │ │ │ │ ├── messages_en_US.properties │ │ │ │ ├── messages_zh_CN.properties │ │ │ │ └── messages_zh_TW.properties │ │ │ │ └── logback-spring.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── fit2cloud │ │ │ └── MyBatisPlusGenerator.java │ ├── frontend │ │ ├── .eslintrc.cjs │ │ ├── .gitignore │ │ ├── .vscode │ │ │ ├── extensions.json │ │ │ └── settings.json │ │ ├── env.d.ts │ │ ├── env │ │ │ ├── .env │ │ │ ├── .env.development │ │ │ └── .env.production │ │ ├── index.html │ │ ├── package.json │ │ ├── pom.xml │ │ ├── public │ │ │ └── favicon.ico │ │ ├── src │ │ │ ├── App.vue │ │ │ ├── api │ │ │ │ └── demo │ │ │ │ │ ├── index.ts │ │ │ │ │ └── type.ts │ │ │ ├── locales │ │ │ │ └── lang │ │ │ │ │ ├── en.ts │ │ │ │ │ ├── zh-cn.ts │ │ │ │ │ └── zh-tw.ts │ │ │ ├── main.ts │ │ │ ├── styles │ │ │ │ └── common │ │ │ │ │ ├── mixins.scss │ │ │ │ │ └── variables.scss │ │ │ └── views │ │ │ │ └── demo │ │ │ │ ├── index.vue │ │ │ │ └── list.vue │ │ ├── tsconfig.config.json │ │ ├── tsconfig.json │ │ └── vite.config.ts │ └── pom.xml ├── pom.xml └── src │ └── test │ └── java │ └── CreateModuleUtil.java ├── doc ├── cloudexplorer │ ├── VERSION │ ├── apps │ │ ├── core │ │ │ └── run-core.sh │ │ └── extra │ │ │ └── modules │ ├── conf │ │ ├── cloudexplorer.properties │ │ └── redisson.yml │ └── logs │ │ └── ce-logs-dir └── 开发指南.md ├── framework ├── eureka │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── fit2cloud │ │ │ └── eureka │ │ │ └── EurekaApplication.java │ │ └── resources │ │ ├── application.yml │ │ └── logback-spring.xml ├── gateway │ ├── .gitignore │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── fit2cloud │ │ │ │ └── gateway │ │ │ │ ├── GatewayApplication.java │ │ │ │ ├── config │ │ │ │ ├── CustomGlobalFilter.java │ │ │ │ ├── GatewaySwaggerConfig.java │ │ │ │ ├── LoginLogAspect.java │ │ │ │ ├── ResourceWebPropertiesConfig.java │ │ │ │ ├── RoutesConfig.java │ │ │ │ ├── ServiceConfig.java │ │ │ │ ├── TwtTokenAuthFilter.java │ │ │ │ └── WebFluxSecurityConfig.java │ │ │ │ ├── controller │ │ │ │ ├── LoginController.java │ │ │ │ └── error │ │ │ │ │ ├── GlobalErrorAttributes.java │ │ │ │ │ └── GlobalErrorWebExceptionHandler.java │ │ │ │ └── utils │ │ │ │ └── WriteMessageUtil.java │ │ └── resources │ │ │ ├── application.yml │ │ │ └── logback-spring.xml │ │ └── test │ │ └── java │ │ └── Test.java ├── management-center │ ├── .gitignore │ ├── backend │ │ ├── .gitignore │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── fit2cloud │ │ │ │ │ ├── ManagementApplication.java │ │ │ │ │ ├── config │ │ │ │ │ ├── ModuleManageConfig.java │ │ │ │ │ └── RSAConfig.java │ │ │ │ │ ├── constants │ │ │ │ │ ├── ErrorCodeConstants.java │ │ │ │ │ ├── JobConstants.java │ │ │ │ │ ├── MenuConstants.java │ │ │ │ │ ├── PermissionConstants.java │ │ │ │ │ └── UserConstants.java │ │ │ │ │ ├── controller │ │ │ │ │ ├── CloudAccountController.java │ │ │ │ │ ├── LicenceController.java │ │ │ │ │ ├── LogController.java │ │ │ │ │ ├── ModuleManageController.java │ │ │ │ │ ├── OrganizationController.java │ │ │ │ │ ├── RecycleBinParamsController.java │ │ │ │ │ ├── RoleController.java │ │ │ │ │ ├── UserController.java │ │ │ │ │ ├── WorkspaceController.java │ │ │ │ │ ├── request │ │ │ │ │ │ ├── OrganizationBatchRequest.java │ │ │ │ │ │ ├── OrganizationRequest.java │ │ │ │ │ │ ├── PageOrganizationRequest.java │ │ │ │ │ │ ├── cloud_account │ │ │ │ │ │ │ ├── AddCloudAccountRequest.java │ │ │ │ │ │ │ ├── CloudAccountRequest.java │ │ │ │ │ │ │ ├── SyncRecordRequest.java │ │ │ │ │ │ │ ├── UpdateAccountNameRequest.java │ │ │ │ │ │ │ ├── UpdateCloudAccountRequest.java │ │ │ │ │ │ │ └── UpdateJobsRequest.java │ │ │ │ │ │ ├── es │ │ │ │ │ │ │ ├── PageOperatedLogRequest.java │ │ │ │ │ │ │ └── PageSystemLogRequest.java │ │ │ │ │ │ ├── role │ │ │ │ │ │ │ ├── CreateRoleRequest.java │ │ │ │ │ │ │ └── UpdateRoleRequest.java │ │ │ │ │ │ ├── user │ │ │ │ │ │ │ ├── CreateUserRequest.java │ │ │ │ │ │ │ ├── PageUserRequest.java │ │ │ │ │ │ │ ├── RemoveUserRoleRequest.java │ │ │ │ │ │ │ ├── UpdateUserRequest.java │ │ │ │ │ │ │ ├── UserBatchAddRoleObjectV2.java │ │ │ │ │ │ │ ├── UserBatchAddRoleObjectV3.java │ │ │ │ │ │ │ ├── UserBatchAddRoleRequest.java │ │ │ │ │ │ │ ├── UserBatchAddRoleRequestV2.java │ │ │ │ │ │ │ └── UserBatchAddRoleRequestV3.java │ │ │ │ │ │ └── workspace │ │ │ │ │ │ │ ├── PageWorkspaceRequest.java │ │ │ │ │ │ │ ├── WorkspaceBatchCreateRequest.java │ │ │ │ │ │ │ └── WorkspaceRequest.java │ │ │ │ │ └── response │ │ │ │ │ │ └── cloud_account │ │ │ │ │ │ ├── CloudAccountJobDetailsResponse.java │ │ │ │ │ │ ├── CloudAccountResponse.java │ │ │ │ │ │ └── PlatformResponse.java │ │ │ │ │ ├── dao │ │ │ │ │ ├── entity │ │ │ │ │ │ ├── CloudAccount.java │ │ │ │ │ │ ├── ExtraModule.java │ │ │ │ │ │ ├── ExtraModules.java │ │ │ │ │ │ ├── UserNotificationSetting.java │ │ │ │ │ │ └── Workspace.java │ │ │ │ │ └── mapper │ │ │ │ │ │ ├── CloudAccountMapper.java │ │ │ │ │ │ ├── CloudAccountMapper.xml │ │ │ │ │ │ ├── OrganizationMapper.java │ │ │ │ │ │ ├── OrganizationMapper.xml │ │ │ │ │ │ ├── RoleMapper.java │ │ │ │ │ │ ├── RoleMapper.xml │ │ │ │ │ │ ├── RolePermissionMapper.java │ │ │ │ │ │ ├── RolePermissionMapper.xml │ │ │ │ │ │ ├── UserMapper.java │ │ │ │ │ │ ├── UserMapper.xml │ │ │ │ │ │ ├── UserNotificationSettingMapper.java │ │ │ │ │ │ ├── UserNotificationSettingMapper.xml │ │ │ │ │ │ ├── WorkspaceMapper.java │ │ │ │ │ │ └── WorkspaceMapper.xml │ │ │ │ │ ├── dto │ │ │ │ │ ├── OrganizationDTO.java │ │ │ │ │ ├── RoleInfo.java │ │ │ │ │ ├── UserNotifySettingDTO.java │ │ │ │ │ ├── UserOperateDto.java │ │ │ │ │ └── WorkspaceDTO.java │ │ │ │ │ ├── event │ │ │ │ │ └── EventListener.java │ │ │ │ │ ├── quartz │ │ │ │ │ ├── JobTimeOutJob.java │ │ │ │ │ ├── LogCleanJob.java │ │ │ │ │ └── VerificationCloudAccountJob.java │ │ │ │ │ └── service │ │ │ │ │ ├── ICloudAccountService.java │ │ │ │ │ ├── ILogService.java │ │ │ │ │ ├── IModuleManageService.java │ │ │ │ │ ├── IOrganizationService.java │ │ │ │ │ ├── IRolePermissionService.java │ │ │ │ │ ├── IRoleService.java │ │ │ │ │ ├── IUserNotificationSettingService.java │ │ │ │ │ ├── IUserService.java │ │ │ │ │ ├── IWorkspaceService.java │ │ │ │ │ └── impl │ │ │ │ │ ├── CloudAccountServiceImpl.java │ │ │ │ │ ├── LogServiceImpl.java │ │ │ │ │ ├── ModuleManageServiceImpl.java │ │ │ │ │ ├── OrganizationServiceImpl.java │ │ │ │ │ ├── RolePermissionServiceImpl.java │ │ │ │ │ ├── RoleServiceImpl.java │ │ │ │ │ ├── UserNotificationSettingServiceImpl.java │ │ │ │ │ ├── UserServiceImpl.java │ │ │ │ │ └── WorkspaceServiceImpl.java │ │ │ └── resources │ │ │ │ ├── application.yml │ │ │ │ ├── db │ │ │ │ └── migration │ │ │ │ │ ├── V10_0__ddl_create_system_log.sql │ │ │ │ │ ├── V11_0__ddl_create_sync_setting.sql │ │ │ │ │ ├── V12_0__ddl_create_user_notification_setting.sql │ │ │ │ │ ├── V13_0__dml.sql │ │ │ │ │ ├── V14_0__ddl_create_data_convert_version.sql │ │ │ │ │ ├── V15_0__ddl_create_billing_policy.sql │ │ │ │ │ ├── V1__init.sql │ │ │ │ │ ├── V2_0__ddl_create_user.sql │ │ │ │ │ ├── V2_1__dml.sql │ │ │ │ │ ├── V3_0__ddl_create_role.sql │ │ │ │ │ ├── V3_1__dml.sql │ │ │ │ │ ├── V4_0__ddl_create_role_permission.sql │ │ │ │ │ ├── V5_0__ddl_create_user_role.sql │ │ │ │ │ ├── V5_1__dml.sql │ │ │ │ │ ├── V6_0__ddl_create_cloud_account.sql │ │ │ │ │ ├── V7_0__ddl_create_organization.sql │ │ │ │ │ ├── V7_1__ddl_create_workspace.sql │ │ │ │ │ ├── V7_2__ddl_create_organization_workspace.sql │ │ │ │ │ ├── V7_3__ddl_create_organization_function.sql │ │ │ │ │ ├── V7_4__ddl_create_organization_function.sql │ │ │ │ │ ├── V8_0__ddl_create_job_record.sql │ │ │ │ │ ├── V8_1__ddl_create_job_record_resource_mapping.sql │ │ │ │ │ └── V9_0__ddl_create_system_parameter.sql │ │ │ │ ├── i18n │ │ │ │ ├── messages.properties │ │ │ │ ├── messages_en_US.properties │ │ │ │ ├── messages_zh_CN.properties │ │ │ │ └── messages_zh_TW.properties │ │ │ │ └── logback-spring.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── fit2cloud │ │ │ ├── CloudAccountTest.java │ │ │ ├── LogTest.java │ │ │ ├── MyBatisPlusGenerator.java │ │ │ └── SchedulerTest.java │ ├── frontend │ │ ├── .eslintrc.cjs │ │ ├── .gitignore │ │ ├── .vscode │ │ │ ├── extensions.json │ │ │ └── settings.json │ │ ├── env.d.ts │ │ ├── env │ │ │ ├── .env │ │ │ ├── .env.development │ │ │ └── .env.production │ │ ├── index.html │ │ ├── package.json │ │ ├── pom.xml │ │ ├── public │ │ │ └── favicon.ico │ │ ├── src │ │ │ ├── App.vue │ │ │ ├── api │ │ │ │ ├── cloud_account │ │ │ │ │ ├── index.ts │ │ │ │ │ └── type.ts │ │ │ │ ├── module │ │ │ │ │ └── index.ts │ │ │ │ ├── operated_log │ │ │ │ │ ├── index.ts │ │ │ │ │ └── type.ts │ │ │ │ ├── organization │ │ │ │ │ ├── index.ts │ │ │ │ │ └── type.ts │ │ │ │ ├── role │ │ │ │ │ ├── index.ts │ │ │ │ │ └── type.ts │ │ │ │ ├── sys_log │ │ │ │ │ ├── index.ts │ │ │ │ │ └── type.ts │ │ │ │ ├── system_params │ │ │ │ │ ├── index.ts │ │ │ │ │ └── type.ts │ │ │ │ ├── user │ │ │ │ │ ├── index.ts │ │ │ │ │ └── type.ts │ │ │ │ └── workspace │ │ │ │ │ ├── index.ts │ │ │ │ │ └── type.ts │ │ │ ├── componnets │ │ │ │ ├── DetailFormLabel.vue │ │ │ │ ├── DetailFormTitle.vue │ │ │ │ ├── DetailFormValue.vue │ │ │ │ ├── StatusIconConstant.ts │ │ │ │ ├── form_title │ │ │ │ │ └── FormTitle.vue │ │ │ │ └── job │ │ │ │ │ ├── Job.vue │ │ │ │ │ ├── JobModuleItem.vue │ │ │ │ │ ├── SyncJobTabView.vue │ │ │ │ │ ├── job_setting │ │ │ │ │ ├── CronInView.vue │ │ │ │ │ ├── CronIntervalView.vue │ │ │ │ │ └── index.vue │ │ │ │ │ ├── params │ │ │ │ │ ├── BillSettingView.vue │ │ │ │ │ └── RegionSettingView.vue │ │ │ │ │ └── view │ │ │ │ │ ├── CronView.vue │ │ │ │ │ ├── IntervalView.vue │ │ │ │ │ ├── SyncBillSetting.vue │ │ │ │ │ ├── SyncBillSettingView.vue │ │ │ │ │ ├── SyncComplianceSetting.vue │ │ │ │ │ ├── SyncComplianceSettingView.vue │ │ │ │ │ ├── SyncResourceSetting.vue │ │ │ │ │ └── SyncResourceSettingView.vue │ │ │ ├── locales │ │ │ │ └── lang │ │ │ │ │ ├── en.ts │ │ │ │ │ ├── zh-cn.ts │ │ │ │ │ └── zh-tw.ts │ │ │ ├── main.ts │ │ │ ├── styles │ │ │ │ └── common │ │ │ │ │ ├── mixins.scss │ │ │ │ │ └── variables.scss │ │ │ ├── utils │ │ │ │ └── constant.ts │ │ │ └── views │ │ │ │ ├── About │ │ │ │ └── index.vue │ │ │ │ ├── CloudAccount │ │ │ │ ├── SyncAccountDialog.vue │ │ │ │ ├── create.vue │ │ │ │ ├── detail.vue │ │ │ │ ├── edit.vue │ │ │ │ ├── index.vue │ │ │ │ ├── list.vue │ │ │ │ └── syncJob.vue │ │ │ │ ├── Message │ │ │ │ └── index.vue │ │ │ │ ├── ModuleManage │ │ │ │ └── ModuleManagePage.vue │ │ │ │ ├── OperatedLog │ │ │ │ ├── AllOperatedLogList.vue │ │ │ │ ├── ClearLogConfig.vue │ │ │ │ ├── DiskOperatedLogList.vue │ │ │ │ ├── LogDetail.vue │ │ │ │ ├── LoginLogList.vue │ │ │ │ ├── VmOperatedLogList.vue │ │ │ │ ├── index.vue │ │ │ │ └── list.vue │ │ │ │ ├── OrgManage │ │ │ │ ├── create.vue │ │ │ │ ├── index.vue │ │ │ │ ├── list.vue │ │ │ │ ├── manage.vue │ │ │ │ ├── manage │ │ │ │ │ ├── OrgCreateDrawer.vue │ │ │ │ │ ├── OrgEditDrawer.vue │ │ │ │ │ ├── OrgManageTab.vue │ │ │ │ │ ├── UserManageTab.vue │ │ │ │ │ ├── WorkspaceEditOrCreateDrawer.vue │ │ │ │ │ └── WorkspaceManageTab.vue │ │ │ │ └── update.vue │ │ │ │ ├── RoleManage │ │ │ │ ├── RoleInfoTable.vue │ │ │ │ ├── RolePermissionTable.vue │ │ │ │ ├── create.vue │ │ │ │ ├── detail.vue │ │ │ │ ├── index.vue │ │ │ │ ├── list.vue │ │ │ │ └── manage.vue │ │ │ │ ├── SystemLog │ │ │ │ ├── LogDetail.vue │ │ │ │ ├── index.vue │ │ │ │ └── list.vue │ │ │ │ ├── SystemModule │ │ │ │ └── index.vue │ │ │ │ ├── SystemSetting │ │ │ │ ├── ParamsSetting.vue │ │ │ │ └── index.vue │ │ │ │ ├── UserManage │ │ │ │ ├── AddRole.vue │ │ │ │ ├── CreateOrEdit.vue │ │ │ │ ├── EnableUserSwitch.vue │ │ │ │ ├── ModifyPwd.vue │ │ │ │ ├── MsgConfig.vue │ │ │ │ ├── create.vue │ │ │ │ ├── detail.vue │ │ │ │ ├── index.vue │ │ │ │ ├── list.vue │ │ │ │ └── type.ts │ │ │ │ ├── ViewSetting │ │ │ │ └── index.vue │ │ │ │ └── WorkspaceManage │ │ │ │ ├── CloudMapping.vue │ │ │ │ ├── CloudMappingView.vue │ │ │ │ ├── create.vue │ │ │ │ ├── index.vue │ │ │ │ └── list.vue │ │ ├── tsconfig.config.json │ │ ├── tsconfig.json │ │ └── vite.config.ts │ └── pom.xml ├── pom.xml ├── provider │ ├── core │ │ └── pom.xml │ ├── lib │ │ ├── openstack │ │ │ ├── connectors │ │ │ │ ├── README.md │ │ │ │ ├── httpclient │ │ │ │ │ ├── pom.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── all.xml │ │ │ │ │ │ └── main │ │ │ │ │ │ ├── java │ │ │ │ │ │ └── org │ │ │ │ │ │ │ └── openstack4j │ │ │ │ │ │ │ └── connectors │ │ │ │ │ │ │ └── httpclient │ │ │ │ │ │ │ ├── HttpClientConfigInterceptor.java │ │ │ │ │ │ │ ├── HttpClientFactory.java │ │ │ │ │ │ │ ├── HttpCommand.java │ │ │ │ │ │ │ ├── HttpExecutorServiceImpl.java │ │ │ │ │ │ │ └── HttpResponseImpl.java │ │ │ │ │ │ └── resources │ │ │ │ │ │ └── META-INF │ │ │ │ │ │ └── services │ │ │ │ │ │ └── org.openstack4j.core.transport.HttpExecutorService │ │ │ │ └── pom.xml │ │ │ ├── core │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── openstack4j │ │ │ │ │ │ ├── api │ │ │ │ │ │ ├── APIProvider.java │ │ │ │ │ │ ├── Apis.java │ │ │ │ │ │ ├── Builders.java │ │ │ │ │ │ ├── EndpointTokenProvider.java │ │ │ │ │ │ ├── OSClient.java │ │ │ │ │ │ ├── artifact │ │ │ │ │ │ │ ├── ArtifactService.java │ │ │ │ │ │ │ └── ToscaTemplatesArtifactService.java │ │ │ │ │ │ ├── barbican │ │ │ │ │ │ │ ├── BarbicanService.java │ │ │ │ │ │ │ ├── ContainerService.java │ │ │ │ │ │ │ └── SecretService.java │ │ │ │ │ │ ├── client │ │ │ │ │ │ │ ├── CloudProvider.java │ │ │ │ │ │ │ └── IOSClientBuilder.java │ │ │ │ │ │ ├── compute │ │ │ │ │ │ │ ├── ComputeFloatingIPService.java │ │ │ │ │ │ │ ├── ComputeImageService.java │ │ │ │ │ │ │ ├── ComputeSecurityGroupService.java │ │ │ │ │ │ │ ├── ComputeService.java │ │ │ │ │ │ │ ├── FlavorService.java │ │ │ │ │ │ │ ├── HostAggregateService.java │ │ │ │ │ │ │ ├── HostService.java │ │ │ │ │ │ │ ├── KeypairService.java │ │ │ │ │ │ │ ├── QuotaSetService.java │ │ │ │ │ │ │ ├── ServerActionsService.java │ │ │ │ │ │ │ ├── ServerGroupService.java │ │ │ │ │ │ │ ├── ServerService.java │ │ │ │ │ │ │ ├── ServerTagService.java │ │ │ │ │ │ │ └── ext │ │ │ │ │ │ │ │ ├── FloatingIPDNSDomainService.java │ │ │ │ │ │ │ │ ├── FloatingIPDNSEntryService.java │ │ │ │ │ │ │ │ ├── FloatingIPDNSService.java │ │ │ │ │ │ │ │ ├── HypervisorService.java │ │ │ │ │ │ │ │ ├── InstanceActionsService.java │ │ │ │ │ │ │ │ ├── InterfaceService.java │ │ │ │ │ │ │ │ ├── MigrationService.java │ │ │ │ │ │ │ │ ├── ServicesService.java │ │ │ │ │ │ │ │ └── ZoneService.java │ │ │ │ │ │ ├── dns │ │ │ │ │ │ │ └── v2 │ │ │ │ │ │ │ │ ├── DNSService.java │ │ │ │ │ │ │ │ ├── RecordsetService.java │ │ │ │ │ │ │ │ └── ZoneService.java │ │ │ │ │ │ ├── exceptions │ │ │ │ │ │ │ ├── ApiNotFoundException.java │ │ │ │ │ │ │ ├── AuthenticationException.java │ │ │ │ │ │ │ ├── ClientResponseException.java │ │ │ │ │ │ │ ├── ConnectionException.java │ │ │ │ │ │ │ ├── ConnectorNotFoundException.java │ │ │ │ │ │ │ ├── ContainerNotEmptyException.java │ │ │ │ │ │ │ ├── OS4JException.java │ │ │ │ │ │ │ ├── RegionEndpointNotFoundException.java │ │ │ │ │ │ │ ├── ResponseException.java │ │ │ │ │ │ │ ├── ServerResponseException.java │ │ │ │ │ │ │ └── StatusCode.java │ │ │ │ │ │ ├── gbp │ │ │ │ │ │ │ ├── ExternalPolicyService.java │ │ │ │ │ │ │ ├── ExternalSegmentService.java │ │ │ │ │ │ │ ├── GbpService.java │ │ │ │ │ │ │ ├── GroupService.java │ │ │ │ │ │ │ ├── L2policyService.java │ │ │ │ │ │ │ ├── L3policyService.java │ │ │ │ │ │ │ ├── NatPoolService.java │ │ │ │ │ │ │ ├── NetworkPolicyService.java │ │ │ │ │ │ │ ├── PolicyActionService.java │ │ │ │ │ │ │ ├── PolicyClassifierService.java │ │ │ │ │ │ │ ├── PolicyRuleService.java │ │ │ │ │ │ │ ├── PolicyRuleSetService.java │ │ │ │ │ │ │ ├── PolicyTargetService.java │ │ │ │ │ │ │ ├── ServiceProfileService.java │ │ │ │ │ │ │ └── ServicechainService.java │ │ │ │ │ │ ├── heat │ │ │ │ │ │ │ ├── EventsService.java │ │ │ │ │ │ │ ├── HeatService.java │ │ │ │ │ │ │ ├── ResourcesService.java │ │ │ │ │ │ │ ├── SoftwareConfigService.java │ │ │ │ │ │ │ ├── StackService.java │ │ │ │ │ │ │ └── TemplateService.java │ │ │ │ │ │ ├── identity │ │ │ │ │ │ │ ├── EndpointURLResolver.java │ │ │ │ │ │ │ ├── v2 │ │ │ │ │ │ │ │ ├── IdentityService.java │ │ │ │ │ │ │ │ ├── RoleService.java │ │ │ │ │ │ │ │ ├── ServiceManagerService.java │ │ │ │ │ │ │ │ ├── TenantService.java │ │ │ │ │ │ │ │ └── UserService.java │ │ │ │ │ │ │ └── v3 │ │ │ │ │ │ │ │ ├── CredentialService.java │ │ │ │ │ │ │ │ ├── DomainService.java │ │ │ │ │ │ │ │ ├── GroupService.java │ │ │ │ │ │ │ │ ├── IdentityService.java │ │ │ │ │ │ │ │ ├── PolicyService.java │ │ │ │ │ │ │ │ ├── ProjectService.java │ │ │ │ │ │ │ │ ├── RegionService.java │ │ │ │ │ │ │ │ ├── RoleService.java │ │ │ │ │ │ │ │ ├── ServiceEndpointService.java │ │ │ │ │ │ │ │ ├── TokenService.java │ │ │ │ │ │ │ │ └── UserService.java │ │ │ │ │ │ ├── image │ │ │ │ │ │ │ ├── ImageService.java │ │ │ │ │ │ │ └── v2 │ │ │ │ │ │ │ │ ├── ImageService.java │ │ │ │ │ │ │ │ └── TaskService.java │ │ │ │ │ │ ├── magnum │ │ │ │ │ │ │ └── MagnumService.java │ │ │ │ │ │ ├── manila │ │ │ │ │ │ │ ├── QuotaSetService.java │ │ │ │ │ │ │ ├── SchedulerStatsService.java │ │ │ │ │ │ │ ├── SecurityServiceService.java │ │ │ │ │ │ │ ├── ShareInstanceService.java │ │ │ │ │ │ │ ├── ShareNetworkService.java │ │ │ │ │ │ │ ├── ShareServerService.java │ │ │ │ │ │ │ ├── ShareService.java │ │ │ │ │ │ │ ├── ShareSnapshotService.java │ │ │ │ │ │ │ ├── ShareTypeService.java │ │ │ │ │ │ │ └── SharesService.java │ │ │ │ │ │ ├── murano │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ │ ├── AppCatalogService.java │ │ │ │ │ │ │ │ ├── MuranoActionService.java │ │ │ │ │ │ │ │ ├── MuranoApplicationService.java │ │ │ │ │ │ │ │ ├── MuranoDeploymentService.java │ │ │ │ │ │ │ │ ├── MuranoEnvironmentService.java │ │ │ │ │ │ │ │ └── MuranoSessionService.java │ │ │ │ │ │ ├── networking │ │ │ │ │ │ │ ├── AvailabilityZoneService.java │ │ │ │ │ │ │ ├── NetFloatingIPService.java │ │ │ │ │ │ │ ├── NetworkService.java │ │ │ │ │ │ │ ├── NetworkingService.java │ │ │ │ │ │ │ ├── NeutronResourceTagService.java │ │ │ │ │ │ │ ├── PortService.java │ │ │ │ │ │ │ ├── RouterService.java │ │ │ │ │ │ │ ├── SecurityGroupRuleService.java │ │ │ │ │ │ │ ├── SecurityGroupService.java │ │ │ │ │ │ │ ├── SubnetService.java │ │ │ │ │ │ │ ├── TrunkService.java │ │ │ │ │ │ │ └── ext │ │ │ │ │ │ │ │ ├── AgentService.java │ │ │ │ │ │ │ │ ├── FirewallAsService.java │ │ │ │ │ │ │ │ ├── FirewallPolicyService.java │ │ │ │ │ │ │ │ ├── FirewallRuleService.java │ │ │ │ │ │ │ │ ├── FirewallService.java │ │ │ │ │ │ │ │ ├── FlowClassifierService.java │ │ │ │ │ │ │ │ ├── HealthMonitorService.java │ │ │ │ │ │ │ │ ├── HealthMonitorV2Service.java │ │ │ │ │ │ │ │ ├── LbPoolService.java │ │ │ │ │ │ │ │ ├── LbPoolV2Service.java │ │ │ │ │ │ │ │ ├── LbaasV2Service.java │ │ │ │ │ │ │ │ ├── ListenerV2Service.java │ │ │ │ │ │ │ │ ├── LoadBalancerService.java │ │ │ │ │ │ │ │ ├── LoadBalancerV2Service.java │ │ │ │ │ │ │ │ ├── MemberService.java │ │ │ │ │ │ │ │ ├── NetQosPolicyService.java │ │ │ │ │ │ │ │ ├── NetQuotaService.java │ │ │ │ │ │ │ │ ├── NetworkIPAvailabilityService.java │ │ │ │ │ │ │ │ ├── PortChainService.java │ │ │ │ │ │ │ │ ├── PortForwardingService.java │ │ │ │ │ │ │ │ ├── PortPairGroupService.java │ │ │ │ │ │ │ │ ├── PortPairService.java │ │ │ │ │ │ │ │ ├── ServiceFunctionChainService.java │ │ │ │ │ │ │ │ └── VipService.java │ │ │ │ │ │ ├── octavia │ │ │ │ │ │ │ ├── HealthMonitorV2Service.java │ │ │ │ │ │ │ ├── LbPoolV2Service.java │ │ │ │ │ │ │ ├── ListenerV2Service.java │ │ │ │ │ │ │ ├── LoadBalancerV2Service.java │ │ │ │ │ │ │ └── OctaviaService.java │ │ │ │ │ │ ├── placement │ │ │ │ │ │ │ ├── PlacementService.java │ │ │ │ │ │ │ └── ext │ │ │ │ │ │ │ │ └── ResourceProviderService.java │ │ │ │ │ │ ├── sahara │ │ │ │ │ │ │ ├── ClusterService.java │ │ │ │ │ │ │ ├── ClusterTemplateService.java │ │ │ │ │ │ │ ├── DataSourceService.java │ │ │ │ │ │ │ ├── JobBinaryInternalService.java │ │ │ │ │ │ │ ├── JobBinaryService.java │ │ │ │ │ │ │ ├── JobExecutionService.java │ │ │ │ │ │ │ ├── JobService.java │ │ │ │ │ │ │ ├── NodeGroupTemplateService.java │ │ │ │ │ │ │ ├── SaharaImageService.java │ │ │ │ │ │ │ ├── SaharaPluginService.java │ │ │ │ │ │ │ └── SaharaService.java │ │ │ │ │ │ ├── senlin │ │ │ │ │ │ │ ├── SenlinActionService.java │ │ │ │ │ │ │ ├── SenlinBuildInfoService.java │ │ │ │ │ │ │ ├── SenlinClusterPolicyService.java │ │ │ │ │ │ │ ├── SenlinClusterService.java │ │ │ │ │ │ │ ├── SenlinEventService.java │ │ │ │ │ │ │ ├── SenlinNodeService.java │ │ │ │ │ │ │ ├── SenlinPolicyService.java │ │ │ │ │ │ │ ├── SenlinPolicyTypeService.java │ │ │ │ │ │ │ ├── SenlinProfileService.java │ │ │ │ │ │ │ ├── SenlinProfileTypeService.java │ │ │ │ │ │ │ ├── SenlinReceiverService.java │ │ │ │ │ │ │ ├── SenlinService.java │ │ │ │ │ │ │ ├── SenlinVersionService.java │ │ │ │ │ │ │ └── SenlinWebHookService.java │ │ │ │ │ │ ├── storage │ │ │ │ │ │ │ ├── BlockQuotaSetService.java │ │ │ │ │ │ │ ├── BlockStorageService.java │ │ │ │ │ │ │ ├── BlockVolumeBackupService.java │ │ │ │ │ │ │ ├── BlockVolumeService.java │ │ │ │ │ │ │ ├── BlockVolumeSnapshotService.java │ │ │ │ │ │ │ ├── BlockVolumeTransferService.java │ │ │ │ │ │ │ ├── CinderZoneService.java │ │ │ │ │ │ │ ├── ObjectStorageAccountService.java │ │ │ │ │ │ │ ├── ObjectStorageContainerService.java │ │ │ │ │ │ │ ├── ObjectStorageObjectService.java │ │ │ │ │ │ │ ├── ObjectStorageService.java │ │ │ │ │ │ │ ├── SchedulerStatsGetPoolService.java │ │ │ │ │ │ │ └── ext │ │ │ │ │ │ │ │ └── BlockStorageServiceService.java │ │ │ │ │ │ ├── tacker │ │ │ │ │ │ │ ├── TackerService.java │ │ │ │ │ │ │ ├── TackerServiceImpl.java │ │ │ │ │ │ │ ├── VimService.java │ │ │ │ │ │ │ ├── VnfService.java │ │ │ │ │ │ │ └── VnfdService.java │ │ │ │ │ │ ├── telemetry │ │ │ │ │ │ │ ├── AlarmAodhService.java │ │ │ │ │ │ │ ├── AlarmService.java │ │ │ │ │ │ │ ├── CapabilitiesService.java │ │ │ │ │ │ │ ├── EventService.java │ │ │ │ │ │ │ ├── MeterService.java │ │ │ │ │ │ │ ├── ResourceService.java │ │ │ │ │ │ │ ├── SampleService.java │ │ │ │ │ │ │ ├── TelemetryAodhService.java │ │ │ │ │ │ │ └── TelemetryService.java │ │ │ │ │ │ ├── trove │ │ │ │ │ │ │ ├── DatabaseService.java │ │ │ │ │ │ │ ├── DatastoreService.java │ │ │ │ │ │ │ ├── InstanceFlavorService.java │ │ │ │ │ │ │ ├── InstanceService.java │ │ │ │ │ │ │ ├── TroveService.java │ │ │ │ │ │ │ └── UserService.java │ │ │ │ │ │ ├── types │ │ │ │ │ │ │ ├── Facing.java │ │ │ │ │ │ │ └── ServiceType.java │ │ │ │ │ │ └── workflow │ │ │ │ │ │ │ ├── ActionDefinitionService.java │ │ │ │ │ │ │ ├── ActionExecutionService.java │ │ │ │ │ │ │ ├── CronTriggerService.java │ │ │ │ │ │ │ ├── EventTriggerService.java │ │ │ │ │ │ │ ├── TaskExecutionService.java │ │ │ │ │ │ │ ├── ValidationService.java │ │ │ │ │ │ │ ├── WorkbookDefinitionService.java │ │ │ │ │ │ │ ├── WorkflowDefinitionService.java │ │ │ │ │ │ │ ├── WorkflowEnvironmentService.java │ │ │ │ │ │ │ ├── WorkflowExecutionService.java │ │ │ │ │ │ │ └── WorkflowService.java │ │ │ │ │ │ ├── common │ │ │ │ │ │ ├── Buildable.java │ │ │ │ │ │ └── RestService.java │ │ │ │ │ │ ├── core │ │ │ │ │ │ └── transport │ │ │ │ │ │ │ ├── ClientConstants.java │ │ │ │ │ │ │ ├── Config.java │ │ │ │ │ │ │ ├── ExecutionOptions.java │ │ │ │ │ │ │ ├── Handle.java │ │ │ │ │ │ │ ├── HttpEntityHandler.java │ │ │ │ │ │ │ ├── HttpExceptionHandler.java │ │ │ │ │ │ │ ├── HttpExecutorService.java │ │ │ │ │ │ │ ├── HttpMethod.java │ │ │ │ │ │ │ ├── HttpRequest.java │ │ │ │ │ │ │ ├── HttpResponse.java │ │ │ │ │ │ │ ├── ListType.java │ │ │ │ │ │ │ ├── ObjectMapperSingleton.java │ │ │ │ │ │ │ ├── PropagateResponse.java │ │ │ │ │ │ │ ├── ProxyHost.java │ │ │ │ │ │ │ ├── UntrustedSSL.java │ │ │ │ │ │ │ ├── functions │ │ │ │ │ │ │ ├── EndpointURIFromRequestFunction.java │ │ │ │ │ │ │ ├── ParseActionResponseFromJsonMap.java │ │ │ │ │ │ │ └── ResponseToActionResponse.java │ │ │ │ │ │ │ ├── internal │ │ │ │ │ │ │ ├── HttpExecutor.java │ │ │ │ │ │ │ ├── HttpLoggingFilter.java │ │ │ │ │ │ │ └── OSBadBooleanDeserializer.java │ │ │ │ │ │ │ └── propagation │ │ │ │ │ │ │ └── PropagateOnStatus.java │ │ │ │ │ │ ├── model │ │ │ │ │ │ ├── ModelEntity.java │ │ │ │ │ │ ├── ResourceEntity.java │ │ │ │ │ │ ├── artifact │ │ │ │ │ │ │ ├── Artifact.java │ │ │ │ │ │ │ ├── ArtifactType.java │ │ │ │ │ │ │ ├── ArtifactUpdate.java │ │ │ │ │ │ │ ├── Artifacts.java │ │ │ │ │ │ │ ├── Metadata.java │ │ │ │ │ │ │ ├── Template.java │ │ │ │ │ │ │ ├── ToscaTemplatesArtifact.java │ │ │ │ │ │ │ ├── ToscaTemplatesArtifacts.java │ │ │ │ │ │ │ └── builder │ │ │ │ │ │ │ │ ├── ArtifactBuilder.java │ │ │ │ │ │ │ │ ├── ArtifactUpdateBuilder.java │ │ │ │ │ │ │ │ └── ToscaTemplatesArtifactBuilder.java │ │ │ │ │ │ ├── barbican │ │ │ │ │ │ │ ├── Container.java │ │ │ │ │ │ │ ├── ContainerConsumer.java │ │ │ │ │ │ │ ├── ContainerSecret.java │ │ │ │ │ │ │ ├── Secret.java │ │ │ │ │ │ │ └── builder │ │ │ │ │ │ │ │ ├── ContainerCreateBuilder.java │ │ │ │ │ │ │ │ ├── ContainerSecretBuilder.java │ │ │ │ │ │ │ │ └── SecretCreateBuilder.java │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ ├── ActionResponse.java │ │ │ │ │ │ │ ├── BaseFilter.java │ │ │ │ │ │ │ ├── BasicResource.java │ │ │ │ │ │ │ ├── DLPayload.java │ │ │ │ │ │ │ ├── Extension.java │ │ │ │ │ │ │ ├── IdEntity.java │ │ │ │ │ │ │ ├── Identifier.java │ │ │ │ │ │ │ ├── Link.java │ │ │ │ │ │ │ ├── Payload.java │ │ │ │ │ │ │ ├── Payloads.java │ │ │ │ │ │ │ ├── QuotaDetails.java │ │ │ │ │ │ │ ├── Resource.java │ │ │ │ │ │ │ ├── TimeEntity.java │ │ │ │ │ │ │ ├── builder │ │ │ │ │ │ │ │ ├── BasicResourceBuilder.java │ │ │ │ │ │ │ │ ├── LinkBuilder.java │ │ │ │ │ │ │ │ └── ResourceBuilder.java │ │ │ │ │ │ │ ├── functions │ │ │ │ │ │ │ │ ├── IdEntityToString.java │ │ │ │ │ │ │ │ └── RangesToHeaderNameValue.java │ │ │ │ │ │ │ ├── header │ │ │ │ │ │ │ │ ├── HeaderNameValue.java │ │ │ │ │ │ │ │ ├── HeaderOption.java │ │ │ │ │ │ │ │ ├── IfCondition.java │ │ │ │ │ │ │ │ └── Range.java │ │ │ │ │ │ │ ├── payloads │ │ │ │ │ │ │ │ ├── FilePayload.java │ │ │ │ │ │ │ │ ├── InputStreamPayload.java │ │ │ │ │ │ │ │ └── URLPayload.java │ │ │ │ │ │ │ └── resolvers │ │ │ │ │ │ │ │ ├── LatestServiceVersionResolver.java │ │ │ │ │ │ │ │ ├── ServiceVersionResolver.java │ │ │ │ │ │ │ │ └── StableServiceVersionResolver.java │ │ │ │ │ │ ├── compute │ │ │ │ │ │ │ ├── AbsoluteLimit.java │ │ │ │ │ │ │ ├── Action.java │ │ │ │ │ │ │ ├── Address.java │ │ │ │ │ │ │ ├── Addresses.java │ │ │ │ │ │ │ ├── BDMDestType.java │ │ │ │ │ │ │ ├── BDMSourceType.java │ │ │ │ │ │ │ ├── BlockDeviceMappingCreate.java │ │ │ │ │ │ │ ├── ComputeQuotaDetail.java │ │ │ │ │ │ │ ├── Fault.java │ │ │ │ │ │ │ ├── Flavor.java │ │ │ │ │ │ │ ├── FlavorAccess.java │ │ │ │ │ │ │ ├── FloatingIP.java │ │ │ │ │ │ │ ├── HostAggregate.java │ │ │ │ │ │ │ ├── HostResource.java │ │ │ │ │ │ │ ├── HostResourceBody.java │ │ │ │ │ │ │ ├── IPProtocol.java │ │ │ │ │ │ │ ├── Image.java │ │ │ │ │ │ │ ├── InstanceAction.java │ │ │ │ │ │ │ ├── InterfaceAttachment.java │ │ │ │ │ │ │ ├── Keypair.java │ │ │ │ │ │ │ ├── Limits.java │ │ │ │ │ │ │ ├── NetworkCreate.java │ │ │ │ │ │ │ ├── Personality.java │ │ │ │ │ │ │ ├── PortState.java │ │ │ │ │ │ │ ├── QuotaSet.java │ │ │ │ │ │ │ ├── QuotaSetUpdate.java │ │ │ │ │ │ │ ├── RateLimit.java │ │ │ │ │ │ │ ├── RebootType.java │ │ │ │ │ │ │ ├── SecGroupExtension.java │ │ │ │ │ │ │ ├── SecurityGroup.java │ │ │ │ │ │ │ ├── Server.java │ │ │ │ │ │ │ ├── ServerAction.java │ │ │ │ │ │ │ ├── ServerActionEvent.java │ │ │ │ │ │ │ ├── ServerCreate.java │ │ │ │ │ │ │ ├── ServerGroup.java │ │ │ │ │ │ │ ├── ServerPassword.java │ │ │ │ │ │ │ ├── ServerUpdateOptions.java │ │ │ │ │ │ │ ├── SimpleTenantUsage.java │ │ │ │ │ │ │ ├── VNCConsole.java │ │ │ │ │ │ │ ├── VolumeAttachment.java │ │ │ │ │ │ │ ├── actions │ │ │ │ │ │ │ │ ├── BackupOptions.java │ │ │ │ │ │ │ │ ├── BaseActionOptions.java │ │ │ │ │ │ │ │ ├── EvacuateOptions.java │ │ │ │ │ │ │ │ ├── LiveMigrateOptions.java │ │ │ │ │ │ │ │ └── RebuildOptions.java │ │ │ │ │ │ │ ├── builder │ │ │ │ │ │ │ │ ├── BlockDeviceMappingBuilder.java │ │ │ │ │ │ │ │ ├── ComputeBuilders.java │ │ │ │ │ │ │ │ ├── FlavorBuilder.java │ │ │ │ │ │ │ │ ├── FloatingIPBuilder.java │ │ │ │ │ │ │ │ ├── QuotaSetUpdateBuilder.java │ │ │ │ │ │ │ │ ├── SecurityGroupRuleBuilder.java │ │ │ │ │ │ │ │ ├── ServerActionEventBuilder.java │ │ │ │ │ │ │ │ └── ServerCreateBuilder.java │ │ │ │ │ │ │ └── ext │ │ │ │ │ │ │ │ ├── AvailabilityZone.java │ │ │ │ │ │ │ │ ├── DNSEntry.java │ │ │ │ │ │ │ │ ├── DNSRecordType.java │ │ │ │ │ │ │ │ ├── DomainEntry.java │ │ │ │ │ │ │ │ ├── Hypervisor.java │ │ │ │ │ │ │ │ ├── HypervisorStatistics.java │ │ │ │ │ │ │ │ ├── Migration.java │ │ │ │ │ │ │ │ ├── MigrationsFilter.java │ │ │ │ │ │ │ │ └── Service.java │ │ │ │ │ │ ├── dns │ │ │ │ │ │ │ └── v2 │ │ │ │ │ │ │ │ ├── Action.java │ │ │ │ │ │ │ │ ├── Nameserver.java │ │ │ │ │ │ │ │ ├── Recordset.java │ │ │ │ │ │ │ │ ├── Status.java │ │ │ │ │ │ │ │ ├── Zone.java │ │ │ │ │ │ │ │ ├── ZoneType.java │ │ │ │ │ │ │ │ └── builder │ │ │ │ │ │ │ │ ├── DNSV2Builders.java │ │ │ │ │ │ │ │ ├── NameserverBuilder.java │ │ │ │ │ │ │ │ ├── RecordsetBuilder.java │ │ │ │ │ │ │ │ └── ZoneBuilder.java │ │ │ │ │ │ ├── gbp │ │ │ │ │ │ │ ├── Direction.java │ │ │ │ │ │ │ ├── ExternalPolicy.java │ │ │ │ │ │ │ ├── ExternalPolicyCreate.java │ │ │ │ │ │ │ ├── ExternalRoutes.java │ │ │ │ │ │ │ ├── ExternalSegment.java │ │ │ │ │ │ │ ├── IPVersionType.java │ │ │ │ │ │ │ ├── L2Policy.java │ │ │ │ │ │ │ ├── L3Policy.java │ │ │ │ │ │ │ ├── NatPool.java │ │ │ │ │ │ │ ├── NetworkServiceParamType.java │ │ │ │ │ │ │ ├── NetworkServiceParamValue.java │ │ │ │ │ │ │ ├── NetworkServiceParams.java │ │ │ │ │ │ │ ├── NetworkServicePolicy.java │ │ │ │ │ │ │ ├── PolicyAction.java │ │ │ │ │ │ │ ├── PolicyActionUpdate.java │ │ │ │ │ │ │ ├── PolicyClassifier.java │ │ │ │ │ │ │ ├── PolicyClassifierUpdate.java │ │ │ │ │ │ │ ├── PolicyRule.java │ │ │ │ │ │ │ ├── PolicyRuleSet.java │ │ │ │ │ │ │ ├── PolicyTarget.java │ │ │ │ │ │ │ ├── PolicyTargetGroup.java │ │ │ │ │ │ │ ├── PolicyTargetGroupCreate.java │ │ │ │ │ │ │ ├── Protocol.java │ │ │ │ │ │ │ └── builder │ │ │ │ │ │ │ │ ├── ExternalPolicyBuilder.java │ │ │ │ │ │ │ │ ├── ExternalRoutesBuilder.java │ │ │ │ │ │ │ │ ├── ExternalSegmentBuilder.java │ │ │ │ │ │ │ │ ├── L2PolicyBuilder.java │ │ │ │ │ │ │ │ ├── L3PolicyBuilder.java │ │ │ │ │ │ │ │ ├── NatPoolBuilder.java │ │ │ │ │ │ │ │ ├── NetworkServicePolicyBuilder.java │ │ │ │ │ │ │ │ ├── PolicyActionCreateBuilder.java │ │ │ │ │ │ │ │ ├── PolicyActionUpdateBuilder.java │ │ │ │ │ │ │ │ ├── PolicyClassifierBuilder.java │ │ │ │ │ │ │ │ ├── PolicyClassifierUpdateBuilder.java │ │ │ │ │ │ │ │ ├── PolicyRuleBuilder.java │ │ │ │ │ │ │ │ ├── PolicyRuleSetBuilder.java │ │ │ │ │ │ │ │ ├── PolicyTargetBuilder.java │ │ │ │ │ │ │ │ └── PolicyTargetGroupBuilder.java │ │ │ │ │ │ ├── heat │ │ │ │ │ │ │ ├── AdoptStackData.java │ │ │ │ │ │ │ ├── BaseStackCreateUpdate.java │ │ │ │ │ │ │ ├── Event.java │ │ │ │ │ │ │ ├── Resource.java │ │ │ │ │ │ │ ├── ResourceHealth.java │ │ │ │ │ │ │ ├── SoftwareConfig.java │ │ │ │ │ │ │ ├── Stack.java │ │ │ │ │ │ │ ├── StackCreate.java │ │ │ │ │ │ │ ├── StackUpdate.java │ │ │ │ │ │ │ ├── Template.java │ │ │ │ │ │ │ ├── TemplateResponse.java │ │ │ │ │ │ │ └── builder │ │ │ │ │ │ │ │ ├── OrchestrationBuilders.java │ │ │ │ │ │ │ │ ├── ResourceHealthBuilder.java │ │ │ │ │ │ │ │ ├── SoftwareConfigBuilder.java │ │ │ │ │ │ │ │ ├── StackCreateBuilder.java │ │ │ │ │ │ │ │ ├── StackUpdateBuilder.java │ │ │ │ │ │ │ │ └── TemplateBuilder.java │ │ │ │ │ │ ├── identity │ │ │ │ │ │ │ ├── AuthStore.java │ │ │ │ │ │ │ ├── AuthVersion.java │ │ │ │ │ │ │ ├── URLResolverParams.java │ │ │ │ │ │ │ ├── v2 │ │ │ │ │ │ │ │ ├── Access.java │ │ │ │ │ │ │ │ ├── Endpoint.java │ │ │ │ │ │ │ │ ├── Role.java │ │ │ │ │ │ │ │ ├── Service.java │ │ │ │ │ │ │ │ ├── ServiceEndpoint.java │ │ │ │ │ │ │ │ ├── Tenant.java │ │ │ │ │ │ │ │ ├── TenantUser.java │ │ │ │ │ │ │ │ ├── Token.java │ │ │ │ │ │ │ │ ├── TokenV2.java │ │ │ │ │ │ │ │ ├── User.java │ │ │ │ │ │ │ │ └── builder │ │ │ │ │ │ │ │ │ ├── EndpointBuilder.java │ │ │ │ │ │ │ │ │ ├── IdentityV2Builders.java │ │ │ │ │ │ │ │ │ ├── RoleBuilder.java │ │ │ │ │ │ │ │ │ ├── ServiceBuilder.java │ │ │ │ │ │ │ │ │ ├── ServiceEndpointBuilder.java │ │ │ │ │ │ │ │ │ ├── TenantBuilder.java │ │ │ │ │ │ │ │ │ └── UserBuilder.java │ │ │ │ │ │ │ └── v3 │ │ │ │ │ │ │ │ ├── Authentication.java │ │ │ │ │ │ │ │ ├── Credential.java │ │ │ │ │ │ │ │ ├── Domain.java │ │ │ │ │ │ │ │ ├── Endpoint.java │ │ │ │ │ │ │ │ ├── Group.java │ │ │ │ │ │ │ │ ├── Policy.java │ │ │ │ │ │ │ │ ├── Project.java │ │ │ │ │ │ │ │ ├── Region.java │ │ │ │ │ │ │ │ ├── Role.java │ │ │ │ │ │ │ │ ├── RoleAssignment.java │ │ │ │ │ │ │ │ ├── Service.java │ │ │ │ │ │ │ │ ├── Tenant.java │ │ │ │ │ │ │ │ ├── Token.java │ │ │ │ │ │ │ │ ├── User.java │ │ │ │ │ │ │ │ └── builder │ │ │ │ │ │ │ │ ├── CredentialBuilder.java │ │ │ │ │ │ │ │ ├── DomainBuilder.java │ │ │ │ │ │ │ │ ├── EndpointBuilder.java │ │ │ │ │ │ │ │ ├── GroupBuilder.java │ │ │ │ │ │ │ │ ├── IdentityV3Builders.java │ │ │ │ │ │ │ │ ├── PolicyBuilder.java │ │ │ │ │ │ │ │ ├── ProjectBuilder.java │ │ │ │ │ │ │ │ ├── RegionBuilder.java │ │ │ │ │ │ │ │ ├── RoleBuilder.java │ │ │ │ │ │ │ │ ├── ServiceBuilder.java │ │ │ │ │ │ │ │ └── UserBuilder.java │ │ │ │ │ │ ├── image │ │ │ │ │ │ │ ├── CachedImage.java │ │ │ │ │ │ │ ├── ContainerFormat.java │ │ │ │ │ │ │ ├── DiskFormat.java │ │ │ │ │ │ │ ├── Image.java │ │ │ │ │ │ │ ├── ImageMember.java │ │ │ │ │ │ │ ├── StoreType.java │ │ │ │ │ │ │ ├── builder │ │ │ │ │ │ │ │ └── ImageBuilder.java │ │ │ │ │ │ │ └── v2 │ │ │ │ │ │ │ │ ├── CachedImage.java │ │ │ │ │ │ │ │ ├── ContainerFormat.java │ │ │ │ │ │ │ │ ├── DiskFormat.java │ │ │ │ │ │ │ │ ├── Image.java │ │ │ │ │ │ │ │ ├── ImageUpdate.java │ │ │ │ │ │ │ │ ├── Member.java │ │ │ │ │ │ │ │ ├── Task.java │ │ │ │ │ │ │ │ └── builder │ │ │ │ │ │ │ │ ├── ImageBuilder.java │ │ │ │ │ │ │ │ ├── ImageUpdateBuilder.java │ │ │ │ │ │ │ │ └── TaskBuilder.java │ │ │ │ │ │ ├── magnum │ │ │ │ │ │ │ ├── Bay.java │ │ │ │ │ │ │ ├── BayBuilder.java │ │ │ │ │ │ │ ├── Baymodel.java │ │ │ │ │ │ │ ├── BaymodelBuilder.java │ │ │ │ │ │ │ ├── Carequest.java │ │ │ │ │ │ │ ├── CarequestBuilder.java │ │ │ │ │ │ │ ├── Certificate.java │ │ │ │ │ │ │ ├── CertificateBuilder.java │ │ │ │ │ │ │ ├── Cluster.java │ │ │ │ │ │ │ ├── ClusterBuilder.java │ │ │ │ │ │ │ ├── Clustertemplate.java │ │ │ │ │ │ │ ├── ClustertemplateBuilder.java │ │ │ │ │ │ │ ├── Container.java │ │ │ │ │ │ │ ├── ContainerBuilder.java │ │ │ │ │ │ │ ├── Environment.java │ │ │ │ │ │ │ ├── EnvironmentBuilder.java │ │ │ │ │ │ │ ├── Label.java │ │ │ │ │ │ │ ├── LabelBuilder.java │ │ │ │ │ │ │ ├── Mservice.java │ │ │ │ │ │ │ ├── MserviceBuilder.java │ │ │ │ │ │ │ ├── Pod.java │ │ │ │ │ │ │ └── PodBuilder.java │ │ │ │ │ │ ├── manila │ │ │ │ │ │ │ ├── AbsoluteLimit.java │ │ │ │ │ │ │ ├── Access.java │ │ │ │ │ │ │ ├── AvailabilityZone.java │ │ │ │ │ │ │ ├── BackendStoragePool.java │ │ │ │ │ │ │ ├── ExtraSpecs.java │ │ │ │ │ │ │ ├── Limits.java │ │ │ │ │ │ │ ├── QuotaSet.java │ │ │ │ │ │ │ ├── QuotaSetUpdateOptions.java │ │ │ │ │ │ │ ├── RateLimit.java │ │ │ │ │ │ │ ├── SecurityService.java │ │ │ │ │ │ │ ├── SecurityServiceCreate.java │ │ │ │ │ │ │ ├── SecurityServiceUpdateOptions.java │ │ │ │ │ │ │ ├── Service.java │ │ │ │ │ │ │ ├── Share.java │ │ │ │ │ │ │ ├── ShareCreate.java │ │ │ │ │ │ │ ├── ShareInstance.java │ │ │ │ │ │ │ ├── ShareManage.java │ │ │ │ │ │ │ ├── ShareNetwork.java │ │ │ │ │ │ │ ├── ShareNetworkCreate.java │ │ │ │ │ │ │ ├── ShareNetworkUpdateOptions.java │ │ │ │ │ │ │ ├── ShareServer.java │ │ │ │ │ │ │ ├── ShareSnapshot.java │ │ │ │ │ │ │ ├── ShareSnapshotCreate.java │ │ │ │ │ │ │ ├── ShareSnapshotUpdateOptions.java │ │ │ │ │ │ │ ├── ShareType.java │ │ │ │ │ │ │ ├── ShareTypeAccess.java │ │ │ │ │ │ │ ├── ShareTypeCreate.java │ │ │ │ │ │ │ ├── ShareUpdateOptions.java │ │ │ │ │ │ │ ├── actions │ │ │ │ │ │ │ │ └── AccessOptions.java │ │ │ │ │ │ │ └── builder │ │ │ │ │ │ │ │ ├── SecurityServiceCreateBuilder.java │ │ │ │ │ │ │ │ ├── ShareCreateBuilder.java │ │ │ │ │ │ │ │ ├── ShareManageBuilder.java │ │ │ │ │ │ │ │ ├── ShareNetworkCreateBuilder.java │ │ │ │ │ │ │ │ ├── ShareSnapshotCreateBuilder.java │ │ │ │ │ │ │ │ ├── ShareTypeCreateBuilder.java │ │ │ │ │ │ │ │ └── SharedFileSystemBuilders.java │ │ │ │ │ │ ├── murano │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ │ ├── builder │ │ │ │ │ │ │ │ ├── AppCatalogBuilders.java │ │ │ │ │ │ │ │ └── EnvironmentBuilder.java │ │ │ │ │ │ │ │ └── domain │ │ │ │ │ │ │ │ ├── ActionInfo.java │ │ │ │ │ │ │ │ ├── ActionResult.java │ │ │ │ │ │ │ │ ├── AppCatalogSession.java │ │ │ │ │ │ │ │ ├── Application.java │ │ │ │ │ │ │ │ ├── Deployment.java │ │ │ │ │ │ │ │ ├── DeploymentResult.java │ │ │ │ │ │ │ │ ├── Environment.java │ │ │ │ │ │ │ │ ├── EnvironmentDescription.java │ │ │ │ │ │ │ │ ├── Report.java │ │ │ │ │ │ │ │ └── ServiceInfo.java │ │ │ │ │ │ ├── network │ │ │ │ │ │ │ ├── Agent.java │ │ │ │ │ │ │ ├── AllowedAddressPair.java │ │ │ │ │ │ │ ├── AttachInterfaceType.java │ │ │ │ │ │ │ ├── AvailabilityZone.java │ │ │ │ │ │ │ ├── ExternalGateway.java │ │ │ │ │ │ │ ├── ExtraDhcpOptCreate.java │ │ │ │ │ │ │ ├── FloatingIP.java │ │ │ │ │ │ │ ├── HostRoute.java │ │ │ │ │ │ │ ├── IP.java │ │ │ │ │ │ │ ├── IPVersionType.java │ │ │ │ │ │ │ ├── Ipv6AddressMode.java │ │ │ │ │ │ │ ├── Ipv6RaMode.java │ │ │ │ │ │ │ ├── NetFloatingIP.java │ │ │ │ │ │ │ ├── NetQuota.java │ │ │ │ │ │ │ ├── Network.java │ │ │ │ │ │ │ ├── NetworkType.java │ │ │ │ │ │ │ ├── NetworkUpdate.java │ │ │ │ │ │ │ ├── Pool.java │ │ │ │ │ │ │ ├── Port.java │ │ │ │ │ │ │ ├── Resource.java │ │ │ │ │ │ │ ├── Router.java │ │ │ │ │ │ │ ├── RouterInterface.java │ │ │ │ │ │ │ ├── SecurityGroup.java │ │ │ │ │ │ │ ├── SecurityGroupRule.java │ │ │ │ │ │ │ ├── SecurityGroupUpdate.java │ │ │ │ │ │ │ ├── State.java │ │ │ │ │ │ │ ├── Subnet.java │ │ │ │ │ │ │ ├── Trunk.java │ │ │ │ │ │ │ ├── TrunkSubport.java │ │ │ │ │ │ │ ├── builder │ │ │ │ │ │ │ │ ├── AgentBuilder.java │ │ │ │ │ │ │ │ ├── ExtraDhcpOptBuilder.java │ │ │ │ │ │ │ │ ├── NetFloatingIPBuilder.java │ │ │ │ │ │ │ │ ├── NetQuotaBuilder.java │ │ │ │ │ │ │ │ ├── NetSecurityGroupBuilder.java │ │ │ │ │ │ │ │ ├── NetSecurityGroupRuleBuilder.java │ │ │ │ │ │ │ │ ├── NetSecurityGroupUpdateBuilder.java │ │ │ │ │ │ │ │ ├── NetworkBuilder.java │ │ │ │ │ │ │ │ ├── NetworkBuilders.java │ │ │ │ │ │ │ │ ├── NetworkUpdateBuilder.java │ │ │ │ │ │ │ │ ├── PortBuilder.java │ │ │ │ │ │ │ │ ├── RouterBuilder.java │ │ │ │ │ │ │ │ ├── SubnetBuilder.java │ │ │ │ │ │ │ │ ├── TrunkBuilder.java │ │ │ │ │ │ │ │ └── TrunkSubportBuilder.java │ │ │ │ │ │ │ ├── ext │ │ │ │ │ │ │ │ ├── Ethertype.java │ │ │ │ │ │ │ │ ├── Firewall.java │ │ │ │ │ │ │ │ ├── FirewallPolicy.java │ │ │ │ │ │ │ │ ├── FirewallPolicyUpdate.java │ │ │ │ │ │ │ │ ├── FirewallRule.java │ │ │ │ │ │ │ │ ├── FirewallRuleUpdate.java │ │ │ │ │ │ │ │ ├── FirewallUpdate.java │ │ │ │ │ │ │ │ ├── FlowClassifier.java │ │ │ │ │ │ │ │ ├── HealthMonitor.java │ │ │ │ │ │ │ │ ├── HealthMonitorAssociate.java │ │ │ │ │ │ │ │ ├── HealthMonitorType.java │ │ │ │ │ │ │ │ ├── HealthMonitorUpdate.java │ │ │ │ │ │ │ │ ├── HealthMonitorV2.java │ │ │ │ │ │ │ │ ├── HealthMonitorV2Update.java │ │ │ │ │ │ │ │ ├── LbMethod.java │ │ │ │ │ │ │ │ ├── LbOperatingStatus.java │ │ │ │ │ │ │ │ ├── LbPool.java │ │ │ │ │ │ │ │ ├── LbPoolStats.java │ │ │ │ │ │ │ │ ├── LbPoolUpdate.java │ │ │ │ │ │ │ │ ├── LbPoolV2.java │ │ │ │ │ │ │ │ ├── LbPoolV2Update.java │ │ │ │ │ │ │ │ ├── LbProvisioningStatus.java │ │ │ │ │ │ │ │ ├── ListenerProtocol.java │ │ │ │ │ │ │ │ ├── ListenerV2.java │ │ │ │ │ │ │ │ ├── ListenerV2Update.java │ │ │ │ │ │ │ │ ├── LoadBalancerV2.java │ │ │ │ │ │ │ │ ├── LoadBalancerV2Stats.java │ │ │ │ │ │ │ │ ├── LoadBalancerV2StatusTree.java │ │ │ │ │ │ │ │ ├── LoadBalancerV2Update.java │ │ │ │ │ │ │ │ ├── Member.java │ │ │ │ │ │ │ │ ├── MemberUpdate.java │ │ │ │ │ │ │ │ ├── MemberV2.java │ │ │ │ │ │ │ │ ├── MemberV2Update.java │ │ │ │ │ │ │ │ ├── NetQosPolicy.java │ │ │ │ │ │ │ │ ├── NetQosPolicyUpdate.java │ │ │ │ │ │ │ │ ├── NetworkIPAvailability.java │ │ │ │ │ │ │ │ ├── PortChain.java │ │ │ │ │ │ │ │ ├── PortForwarding.java │ │ │ │ │ │ │ │ ├── PortPair.java │ │ │ │ │ │ │ │ ├── PortPairGroup.java │ │ │ │ │ │ │ │ ├── Protocol.java │ │ │ │ │ │ │ │ ├── SessionPersistence.java │ │ │ │ │ │ │ │ ├── SessionPersistenceType.java │ │ │ │ │ │ │ │ ├── SubnetIPAvailability.java │ │ │ │ │ │ │ │ ├── Vip.java │ │ │ │ │ │ │ │ ├── VipUpdate.java │ │ │ │ │ │ │ │ ├── builder │ │ │ │ │ │ │ │ │ ├── FirewallBuilder.java │ │ │ │ │ │ │ │ │ ├── FirewallPolicyBuilder.java │ │ │ │ │ │ │ │ │ ├── FirewallPolicyUpdateBuilder.java │ │ │ │ │ │ │ │ │ ├── FirewallRuleBuilder.java │ │ │ │ │ │ │ │ │ ├── FirewallRuleUpdateBuilder.java │ │ │ │ │ │ │ │ │ ├── FirewallUpdateBuilder.java │ │ │ │ │ │ │ │ │ ├── FlowClassifierBuilder.java │ │ │ │ │ │ │ │ │ ├── HealthMonitorAssociateBuilder.java │ │ │ │ │ │ │ │ │ ├── HealthMonitorBuilder.java │ │ │ │ │ │ │ │ │ ├── HealthMonitorUpdateBuilder.java │ │ │ │ │ │ │ │ │ ├── HealthMonitorV2Builder.java │ │ │ │ │ │ │ │ │ ├── HealthMonitorV2UpdateBuilder.java │ │ │ │ │ │ │ │ │ ├── LbPoolBuilder.java │ │ │ │ │ │ │ │ │ ├── LbPoolUpdateBuilder.java │ │ │ │ │ │ │ │ │ ├── LbPoolV2Builder.java │ │ │ │ │ │ │ │ │ ├── LbPoolV2UpdateBuilder.java │ │ │ │ │ │ │ │ │ ├── ListenerV2Builder.java │ │ │ │ │ │ │ │ │ ├── ListenerV2UpdateBuilder.java │ │ │ │ │ │ │ │ │ ├── LoadBalancerV2Builder.java │ │ │ │ │ │ │ │ │ ├── LoadBalancerV2UpdateBuilder.java │ │ │ │ │ │ │ │ │ ├── MemberBuilder.java │ │ │ │ │ │ │ │ │ ├── MemberUpdateBuilder.java │ │ │ │ │ │ │ │ │ ├── MemberV2Builder.java │ │ │ │ │ │ │ │ │ ├── MemberV2UpdateBuilder.java │ │ │ │ │ │ │ │ │ ├── NetQosPolicyBuilder.java │ │ │ │ │ │ │ │ │ ├── NetQosPolicyUpdateBuilder.java │ │ │ │ │ │ │ │ │ ├── NetworkIPAvailabilityBuilder.java │ │ │ │ │ │ │ │ │ ├── PortChainBuilder.java │ │ │ │ │ │ │ │ │ ├── PortForwardingBuilder.java │ │ │ │ │ │ │ │ │ ├── PortPairBuilder.java │ │ │ │ │ │ │ │ │ ├── PortPairGroupBuilder.java │ │ │ │ │ │ │ │ │ ├── SessionPersistenceBuilder.java │ │ │ │ │ │ │ │ │ ├── SubnetIPAvailabilityBuilder.java │ │ │ │ │ │ │ │ │ ├── VipBuilder.java │ │ │ │ │ │ │ │ │ └── VipUpdateBuilder.java │ │ │ │ │ │ │ │ └── status │ │ │ │ │ │ │ │ │ ├── HealthMonitorV2Status.java │ │ │ │ │ │ │ │ │ ├── LbPoolV2Status.java │ │ │ │ │ │ │ │ │ ├── ListenerV2Status.java │ │ │ │ │ │ │ │ │ ├── LoadBalancerV2Status.java │ │ │ │ │ │ │ │ │ └── MemberV2Status.java │ │ │ │ │ │ │ └── options │ │ │ │ │ │ │ │ └── PortListOptions.java │ │ │ │ │ │ ├── octavia │ │ │ │ │ │ │ ├── HealthMonitorType.java │ │ │ │ │ │ │ ├── HealthMonitorV2.java │ │ │ │ │ │ │ ├── HealthMonitorV2Update.java │ │ │ │ │ │ │ ├── LbMethod.java │ │ │ │ │ │ │ ├── LbOperatingStatus.java │ │ │ │ │ │ │ ├── LbPoolV2.java │ │ │ │ │ │ │ ├── LbPoolV2Update.java │ │ │ │ │ │ │ ├── LbProvisioningStatus.java │ │ │ │ │ │ │ ├── ListenerProtocol.java │ │ │ │ │ │ │ ├── ListenerV2.java │ │ │ │ │ │ │ ├── ListenerV2Update.java │ │ │ │ │ │ │ ├── LoadBalancerV2.java │ │ │ │ │ │ │ ├── LoadBalancerV2Stats.java │ │ │ │ │ │ │ ├── LoadBalancerV2StatusTree.java │ │ │ │ │ │ │ ├── LoadBalancerV2Update.java │ │ │ │ │ │ │ ├── MemberV2.java │ │ │ │ │ │ │ ├── MemberV2Update.java │ │ │ │ │ │ │ ├── Protocol.java │ │ │ │ │ │ │ ├── SessionPersistence.java │ │ │ │ │ │ │ ├── SessionPersistenceType.java │ │ │ │ │ │ │ ├── builder │ │ │ │ │ │ │ │ ├── HealthMonitorV2Builder.java │ │ │ │ │ │ │ │ ├── HealthMonitorV2UpdateBuilder.java │ │ │ │ │ │ │ │ ├── LbPoolV2Builder.java │ │ │ │ │ │ │ │ ├── LbPoolV2UpdateBuilder.java │ │ │ │ │ │ │ │ ├── ListenerV2Builder.java │ │ │ │ │ │ │ │ ├── ListenerV2UpdateBuilder.java │ │ │ │ │ │ │ │ ├── LoadBalancerV2Builder.java │ │ │ │ │ │ │ │ ├── LoadBalancerV2UpdateBuilder.java │ │ │ │ │ │ │ │ ├── MemberV2Builder.java │ │ │ │ │ │ │ │ ├── MemberV2UpdateBuilder.java │ │ │ │ │ │ │ │ └── SessionPersistenceBuilder.java │ │ │ │ │ │ │ └── status │ │ │ │ │ │ │ │ ├── HealthMonitorV2Status.java │ │ │ │ │ │ │ │ ├── LbPoolV2Status.java │ │ │ │ │ │ │ │ ├── ListenerV2Status.java │ │ │ │ │ │ │ │ ├── LoadBalancerV2Status.java │ │ │ │ │ │ │ │ └── MemberV2Status.java │ │ │ │ │ │ ├── placement │ │ │ │ │ │ │ └── ext │ │ │ │ │ │ │ │ ├── ProviderInventoriesBody.java │ │ │ │ │ │ │ │ ├── ProviderUsagesBody.java │ │ │ │ │ │ │ │ ├── ResourceProvider.java │ │ │ │ │ │ │ │ ├── ResourceProviderInventories.java │ │ │ │ │ │ │ │ └── ResourceProviderUsages.java │ │ │ │ │ │ ├── sahara │ │ │ │ │ │ │ ├── Cluster.java │ │ │ │ │ │ │ ├── ClusterTemplate.java │ │ │ │ │ │ │ ├── ConfigInfo.java │ │ │ │ │ │ │ ├── DataSource.java │ │ │ │ │ │ │ ├── DataSourceCredentials.java │ │ │ │ │ │ │ ├── Image.java │ │ │ │ │ │ │ ├── Instance.java │ │ │ │ │ │ │ ├── Job.java │ │ │ │ │ │ │ ├── JobBinary.java │ │ │ │ │ │ │ ├── JobBinaryCredentials.java │ │ │ │ │ │ │ ├── JobBinaryInternal.java │ │ │ │ │ │ │ ├── JobConfig.java │ │ │ │ │ │ │ ├── JobConfigHint.java │ │ │ │ │ │ │ ├── JobConfigHintConfig.java │ │ │ │ │ │ │ ├── JobExecution.java │ │ │ │ │ │ │ ├── JobExecutionAction.java │ │ │ │ │ │ │ ├── JobExecutionInfo.java │ │ │ │ │ │ │ ├── NodeGroup.java │ │ │ │ │ │ │ ├── NodeGroupTemplate.java │ │ │ │ │ │ │ ├── Plugin.java │ │ │ │ │ │ │ ├── ServiceConfig.java │ │ │ │ │ │ │ ├── ServiceInfo.java │ │ │ │ │ │ │ └── builder │ │ │ │ │ │ │ │ ├── ClusterBuilder.java │ │ │ │ │ │ │ │ ├── ClusterTemplateBuilder.java │ │ │ │ │ │ │ │ ├── DataProcessingBuilders.java │ │ │ │ │ │ │ │ ├── DataSourceBuilder.java │ │ │ │ │ │ │ │ ├── JobBinaryBuilder.java │ │ │ │ │ │ │ │ ├── JobBuilder.java │ │ │ │ │ │ │ │ ├── JobConfigBuilder.java │ │ │ │ │ │ │ │ ├── JobExecutionBuilder.java │ │ │ │ │ │ │ │ ├── NodeGroupBuilder.java │ │ │ │ │ │ │ │ ├── NodeGroupTemplateBuilder.java │ │ │ │ │ │ │ │ └── ServiceConfigBuilder.java │ │ │ │ │ │ ├── senlin │ │ │ │ │ │ │ ├── Action.java │ │ │ │ │ │ │ ├── ActionID.java │ │ │ │ │ │ │ ├── BuildInfo.java │ │ │ │ │ │ │ ├── Cluster.java │ │ │ │ │ │ │ ├── ClusterActionCreate.java │ │ │ │ │ │ │ ├── ClusterCreate.java │ │ │ │ │ │ │ ├── ClusterPolicy.java │ │ │ │ │ │ │ ├── ClusterStatus.java │ │ │ │ │ │ │ ├── Event.java │ │ │ │ │ │ │ ├── Node.java │ │ │ │ │ │ │ ├── NodeActionCreate.java │ │ │ │ │ │ │ ├── NodeCreate.java │ │ │ │ │ │ │ ├── Policy.java │ │ │ │ │ │ │ ├── PolicyCreate.java │ │ │ │ │ │ │ ├── PolicyType.java │ │ │ │ │ │ │ ├── Profile.java │ │ │ │ │ │ │ ├── ProfileCreate.java │ │ │ │ │ │ │ ├── ProfileType.java │ │ │ │ │ │ │ ├── Receiver.java │ │ │ │ │ │ │ ├── ReceiverCreate.java │ │ │ │ │ │ │ ├── Version.java │ │ │ │ │ │ │ └── builder │ │ │ │ │ │ │ │ ├── ClusterActionCreateBuilder.java │ │ │ │ │ │ │ │ ├── ClusterCreateBuilder.java │ │ │ │ │ │ │ │ ├── NodeActionCreateBuilder.java │ │ │ │ │ │ │ │ ├── NodeCreateBuilder.java │ │ │ │ │ │ │ │ ├── PolicyCreateBuilder.java │ │ │ │ │ │ │ │ ├── ProfileCreateBuilder.java │ │ │ │ │ │ │ │ └── ReceiverCreateBuilder.java │ │ │ │ │ │ ├── storage │ │ │ │ │ │ │ ├── block │ │ │ │ │ │ │ │ ├── BlockLimits.java │ │ │ │ │ │ │ │ ├── BlockQuotaSet.java │ │ │ │ │ │ │ │ ├── BlockQuotaSetUsage.java │ │ │ │ │ │ │ │ ├── Volume.java │ │ │ │ │ │ │ │ ├── VolumeAttachment.java │ │ │ │ │ │ │ │ ├── VolumeBackup.java │ │ │ │ │ │ │ │ ├── VolumeBackupCreate.java │ │ │ │ │ │ │ │ ├── VolumeBackupRestore.java │ │ │ │ │ │ │ │ ├── VolumeSnapshot.java │ │ │ │ │ │ │ │ ├── VolumeTransfer.java │ │ │ │ │ │ │ │ ├── VolumeType.java │ │ │ │ │ │ │ │ ├── VolumeTypeEncryption.java │ │ │ │ │ │ │ │ ├── VolumeUploadImage.java │ │ │ │ │ │ │ │ ├── builder │ │ │ │ │ │ │ │ │ ├── BlockQuotaSetBuilder.java │ │ │ │ │ │ │ │ │ ├── StorageBuilders.java │ │ │ │ │ │ │ │ │ ├── VolumeBackupCreateBuilder.java │ │ │ │ │ │ │ │ │ ├── VolumeBuilder.java │ │ │ │ │ │ │ │ │ ├── VolumeSnapshotBuilder.java │ │ │ │ │ │ │ │ │ ├── VolumeTypeBuilder.java │ │ │ │ │ │ │ │ │ └── VolumeTypeEncryptionBuilder.java │ │ │ │ │ │ │ │ ├── ext │ │ │ │ │ │ │ │ │ └── Service.java │ │ │ │ │ │ │ │ └── options │ │ │ │ │ │ │ │ │ ├── DownloadOptions.java │ │ │ │ │ │ │ │ │ └── UploadImageData.java │ │ │ │ │ │ │ └── object │ │ │ │ │ │ │ │ ├── SwiftAccount.java │ │ │ │ │ │ │ │ ├── SwiftContainer.java │ │ │ │ │ │ │ │ ├── SwiftHeaders.java │ │ │ │ │ │ │ │ ├── SwiftObject.java │ │ │ │ │ │ │ │ └── options │ │ │ │ │ │ │ │ ├── ContainerListOptions.java │ │ │ │ │ │ │ │ ├── CreateUpdateContainerOptions.java │ │ │ │ │ │ │ │ ├── ObjectDeleteOptions.java │ │ │ │ │ │ │ │ ├── ObjectListOptions.java │ │ │ │ │ │ │ │ ├── ObjectLocation.java │ │ │ │ │ │ │ │ └── ObjectPutOptions.java │ │ │ │ │ │ ├── tacker │ │ │ │ │ │ │ ├── Vim.java │ │ │ │ │ │ │ ├── Vnf.java │ │ │ │ │ │ │ ├── VnfUpdate.java │ │ │ │ │ │ │ ├── Vnfd.java │ │ │ │ │ │ │ └── builder │ │ │ │ │ │ │ │ ├── NfvBuilders.java │ │ │ │ │ │ │ │ ├── VimBuilder.java │ │ │ │ │ │ │ │ ├── VnfBuilder.java │ │ │ │ │ │ │ │ ├── VnfUpdateBuilder.java │ │ │ │ │ │ │ │ └── VnfdBuilder.java │ │ │ │ │ │ ├── telemetry │ │ │ │ │ │ │ ├── Alarm.java │ │ │ │ │ │ │ ├── Capabilities.java │ │ │ │ │ │ │ ├── Event.java │ │ │ │ │ │ │ ├── EventCriteria.java │ │ │ │ │ │ │ ├── Meter.java │ │ │ │ │ │ │ ├── MeterSample.java │ │ │ │ │ │ │ ├── Resource.java │ │ │ │ │ │ │ ├── Sample.java │ │ │ │ │ │ │ ├── SampleCriteria.java │ │ │ │ │ │ │ ├── Statistics.java │ │ │ │ │ │ │ ├── Trait.java │ │ │ │ │ │ │ ├── TraitDescription.java │ │ │ │ │ │ │ └── builder │ │ │ │ │ │ │ │ ├── AlarmBuilder.java │ │ │ │ │ │ │ │ └── TelemetryBuilders.java │ │ │ │ │ │ ├── trove │ │ │ │ │ │ │ ├── DBCharacterSet.java │ │ │ │ │ │ │ ├── DBCollation.java │ │ │ │ │ │ │ ├── Database.java │ │ │ │ │ │ │ ├── DatabaseUser.java │ │ │ │ │ │ │ ├── Datastore.java │ │ │ │ │ │ │ ├── DatastoreVersion.java │ │ │ │ │ │ │ ├── Flavor.java │ │ │ │ │ │ │ ├── Instance.java │ │ │ │ │ │ │ ├── InstanceCreate.java │ │ │ │ │ │ │ └── builder │ │ │ │ │ │ │ │ ├── DBServiceBuilders.java │ │ │ │ │ │ │ │ ├── DatabaseBuilder.java │ │ │ │ │ │ │ │ ├── DatabaseUserBuilder.java │ │ │ │ │ │ │ │ └── InstanceCreateBuilder.java │ │ │ │ │ │ └── workflow │ │ │ │ │ │ │ ├── ActionDefinition.java │ │ │ │ │ │ │ ├── ActionExecution.java │ │ │ │ │ │ │ ├── CronTrigger.java │ │ │ │ │ │ │ ├── Definition.java │ │ │ │ │ │ │ ├── EventTrigger.java │ │ │ │ │ │ │ ├── Execution.java │ │ │ │ │ │ │ ├── Scope.java │ │ │ │ │ │ │ ├── State.java │ │ │ │ │ │ │ ├── TaskExecution.java │ │ │ │ │ │ │ ├── WorkbookDefinition.java │ │ │ │ │ │ │ ├── WorkflowDefinition.java │ │ │ │ │ │ │ ├── WorkflowEnvironment.java │ │ │ │ │ │ │ ├── WorkflowExecution.java │ │ │ │ │ │ │ └── builder │ │ │ │ │ │ │ ├── ActionDefinitionBuilder.java │ │ │ │ │ │ │ ├── ActionExecutionBuilder.java │ │ │ │ │ │ │ ├── CronTriggerBuilder.java │ │ │ │ │ │ │ ├── DefinitionBuilder.java │ │ │ │ │ │ │ ├── EventTriggerBuilder.java │ │ │ │ │ │ │ ├── ExecutionBuilder.java │ │ │ │ │ │ │ ├── TaskExecutionBuilder.java │ │ │ │ │ │ │ ├── WorkbookDefinitionBuilder.java │ │ │ │ │ │ │ ├── WorkflowBuilders.java │ │ │ │ │ │ │ ├── WorkflowDefinitionBuilder.java │ │ │ │ │ │ │ ├── WorkflowEnvironmentBuilder.java │ │ │ │ │ │ │ └── WorkflowExecutionBuilder.java │ │ │ │ │ │ └── openstack │ │ │ │ │ │ ├── OSFactory.java │ │ │ │ │ │ ├── artifact │ │ │ │ │ │ ├── domain │ │ │ │ │ │ │ ├── ArtifactImpl.java │ │ │ │ │ │ │ ├── ArtifactUpdateModel.java │ │ │ │ │ │ │ ├── MetadataImpl.java │ │ │ │ │ │ │ ├── TemplateImpl.java │ │ │ │ │ │ │ ├── ToscaTemplates.java │ │ │ │ │ │ │ └── ToscaTemplatesList.java │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── ArtifactServiceImpl.java │ │ │ │ │ │ │ ├── BaseArtifactServiceImpl.java │ │ │ │ │ │ │ └── ToscaTemplatesArtifactServiceImpl.java │ │ │ │ │ │ ├── barbican │ │ │ │ │ │ ├── domain │ │ │ │ │ │ │ ├── BarbicanContainer.java │ │ │ │ │ │ │ ├── BarbicanContainerConsumer.java │ │ │ │ │ │ │ ├── BarbicanContainerSecret.java │ │ │ │ │ │ │ └── BarbicanSecret.java │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── BarbicanServiceImpl.java │ │ │ │ │ │ │ ├── BaseBarbicanServices.java │ │ │ │ │ │ │ ├── ContainerServiceImpl.java │ │ │ │ │ │ │ └── SecretServiceImpl.java │ │ │ │ │ │ ├── client │ │ │ │ │ │ └── OSClientBuilder.java │ │ │ │ │ │ ├── common │ │ │ │ │ │ ├── Auth.java │ │ │ │ │ │ ├── BasicResourceEntity.java │ │ │ │ │ │ ├── CustomEpochToDateDeserializer.java │ │ │ │ │ │ ├── DLPayloadEntity.java │ │ │ │ │ │ ├── ExtensionValue.java │ │ │ │ │ │ ├── GenericLink.java │ │ │ │ │ │ ├── IdResourceEntity.java │ │ │ │ │ │ ├── ListEntity.java │ │ │ │ │ │ ├── ListResult.java │ │ │ │ │ │ ├── MapEntity.java │ │ │ │ │ │ ├── Metadata.java │ │ │ │ │ │ ├── QuotaDetailsEntity.java │ │ │ │ │ │ ├── TelemetryDateDeserializer.java │ │ │ │ │ │ └── functions │ │ │ │ │ │ │ ├── EnforceVersionToURL.java │ │ │ │ │ │ │ ├── HeaderNameValuesToHeaderMap.java │ │ │ │ │ │ │ ├── OneOrNull.java │ │ │ │ │ │ │ └── RemoveVersionFromURL.java │ │ │ │ │ │ ├── compute │ │ │ │ │ │ ├── builder │ │ │ │ │ │ │ └── NovaBuilders.java │ │ │ │ │ │ ├── domain │ │ │ │ │ │ │ ├── AdminPass.java │ │ │ │ │ │ │ ├── AggregateAddHost.java │ │ │ │ │ │ │ ├── AggregateRemoveHost.java │ │ │ │ │ │ │ ├── ConsoleOutput.java │ │ │ │ │ │ │ ├── ConsoleOutputOptions.java │ │ │ │ │ │ │ ├── ExtraSpecsWrapper.java │ │ │ │ │ │ │ ├── HostAggregateMetadata.java │ │ │ │ │ │ │ ├── MetaDataWrapper.java │ │ │ │ │ │ │ ├── NovaAbsoluteLimit.java │ │ │ │ │ │ │ ├── NovaAddresses.java │ │ │ │ │ │ │ ├── NovaBlockDeviceMappingCreate.java │ │ │ │ │ │ │ ├── NovaComputeQuotaDetail.java │ │ │ │ │ │ │ ├── NovaFault.java │ │ │ │ │ │ │ ├── NovaFlavor.java │ │ │ │ │ │ │ ├── NovaFlavorAccess.java │ │ │ │ │ │ │ ├── NovaFloatingIP.java │ │ │ │ │ │ │ ├── NovaFloatingIPPools.java │ │ │ │ │ │ │ ├── NovaHost.java │ │ │ │ │ │ │ ├── NovaHostAggregate.java │ │ │ │ │ │ │ ├── NovaHostAggregateCreate.java │ │ │ │ │ │ │ ├── NovaHostAggregateUpdate.java │ │ │ │ │ │ │ ├── NovaHostResource.java │ │ │ │ │ │ │ ├── NovaHostResourceBody.java │ │ │ │ │ │ │ ├── NovaImage.java │ │ │ │ │ │ │ ├── NovaInstanceAction.java │ │ │ │ │ │ │ ├── NovaInterfaceAttachment.java │ │ │ │ │ │ │ ├── NovaKeypair.java │ │ │ │ │ │ │ ├── NovaLimits.java │ │ │ │ │ │ │ ├── NovaNetworkCreate.java │ │ │ │ │ │ │ ├── NovaPassword.java │ │ │ │ │ │ │ ├── NovaQuotaSet.java │ │ │ │ │ │ │ ├── NovaQuotaSetUpdate.java │ │ │ │ │ │ │ ├── NovaRateLimit.java │ │ │ │ │ │ │ ├── NovaSecGroupExtension.java │ │ │ │ │ │ │ ├── NovaSecurityGroup.java │ │ │ │ │ │ │ ├── NovaServer.java │ │ │ │ │ │ │ ├── NovaServerCreate.java │ │ │ │ │ │ │ ├── NovaServerCreateWithHintsWrapper.java │ │ │ │ │ │ │ ├── NovaServerGroup.java │ │ │ │ │ │ │ ├── NovaServerTag.java │ │ │ │ │ │ │ ├── NovaServerUpdate.java │ │ │ │ │ │ │ ├── NovaSimpleTenantUsage.java │ │ │ │ │ │ │ ├── NovaVNCConsole.java │ │ │ │ │ │ │ ├── NovaVolumeAttachment.java │ │ │ │ │ │ │ ├── ServerEvent.java │ │ │ │ │ │ │ ├── actions │ │ │ │ │ │ │ │ ├── BackupAction.java │ │ │ │ │ │ │ │ ├── BasicActions.java │ │ │ │ │ │ │ │ ├── CreateSnapshotAction.java │ │ │ │ │ │ │ │ ├── EvacuateAction.java │ │ │ │ │ │ │ │ ├── FloatingIpActions.java │ │ │ │ │ │ │ │ ├── LiveMigrationAction.java │ │ │ │ │ │ │ │ ├── RebuildAction.java │ │ │ │ │ │ │ │ ├── ResetStateAction.java │ │ │ │ │ │ │ │ ├── SecurityGroupActions.java │ │ │ │ │ │ │ │ └── ServerAction.java │ │ │ │ │ │ │ └── ext │ │ │ │ │ │ │ │ ├── ExtAvailabilityZone.java │ │ │ │ │ │ │ │ ├── ExtDNSEntry.java │ │ │ │ │ │ │ │ ├── ExtDomainEntry.java │ │ │ │ │ │ │ │ ├── ExtHypervisor.java │ │ │ │ │ │ │ │ ├── ExtHypervisorStatistics.java │ │ │ │ │ │ │ │ ├── ExtMigration.java │ │ │ │ │ │ │ │ └── ExtService.java │ │ │ │ │ │ ├── functions │ │ │ │ │ │ │ ├── JsonToMessageFunction.java │ │ │ │ │ │ │ ├── ToActionResponseFunction.java │ │ │ │ │ │ │ └── WrapServerIfApplicableFunction.java │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── BaseComputeServices.java │ │ │ │ │ │ │ ├── ComputeFloatingIPServiceImpl.java │ │ │ │ │ │ │ ├── ComputeImageServiceImpl.java │ │ │ │ │ │ │ ├── ComputeSecurityGroupServiceImpl.java │ │ │ │ │ │ │ ├── ComputeServiceImpl.java │ │ │ │ │ │ │ ├── FlavorServiceImpl.java │ │ │ │ │ │ │ ├── HostAggregateServiceImpl.java │ │ │ │ │ │ │ ├── HostServiceImpl.java │ │ │ │ │ │ │ ├── KeypairServiceImpl.java │ │ │ │ │ │ │ ├── NovaServerActionEvent.java │ │ │ │ │ │ │ ├── NovaServerActionsService.java │ │ │ │ │ │ │ ├── QuotaSetServiceImpl.java │ │ │ │ │ │ │ ├── ServerGroupServiceImpl.java │ │ │ │ │ │ │ ├── ServerServiceImpl.java │ │ │ │ │ │ │ ├── ServerTagServiceImpl.java │ │ │ │ │ │ │ ├── ServicesServiceImpl.java │ │ │ │ │ │ │ └── ext │ │ │ │ │ │ │ ├── FloatingIPDNSDomainServiceImpl.java │ │ │ │ │ │ │ ├── FloatingIPDNSEntryServiceImpl.java │ │ │ │ │ │ │ ├── FloatingIPDNSServiceImpl.java │ │ │ │ │ │ │ ├── HypervisorServiceImpl.java │ │ │ │ │ │ │ ├── InstanceActionsServiceImpl.java │ │ │ │ │ │ │ ├── InterfaceServiceImpl.java │ │ │ │ │ │ │ ├── MigrationServiceImpl.java │ │ │ │ │ │ │ └── ZoneServiceImpl.java │ │ │ │ │ │ ├── dns │ │ │ │ │ │ └── v2 │ │ │ │ │ │ │ ├── builder │ │ │ │ │ │ │ └── DesignateV2Builders.java │ │ │ │ │ │ │ ├── domain │ │ │ │ │ │ │ ├── DesignateNameserver.java │ │ │ │ │ │ │ ├── DesignateRecordset.java │ │ │ │ │ │ │ └── DesignateZone.java │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── BaseDNSServices.java │ │ │ │ │ │ │ ├── DNSServiceImpl.java │ │ │ │ │ │ │ ├── RecordsetServiceImpl.java │ │ │ │ │ │ │ └── ZoneServiceImpl.java │ │ │ │ │ │ ├── gbp │ │ │ │ │ │ ├── domain │ │ │ │ │ │ │ ├── GbpExternalPolicy.java │ │ │ │ │ │ │ ├── GbpExternalPolicyCreate.java │ │ │ │ │ │ │ ├── GbpExternalRoutes.java │ │ │ │ │ │ │ ├── GbpExternalSegment.java │ │ │ │ │ │ │ ├── GbpL2Policy.java │ │ │ │ │ │ │ ├── GbpL3Policy.java │ │ │ │ │ │ │ ├── GbpNatPool.java │ │ │ │ │ │ │ ├── GbpNetworkServiceParams.java │ │ │ │ │ │ │ ├── GbpNetworkServicePolicy.java │ │ │ │ │ │ │ ├── GbpPolicyAction.java │ │ │ │ │ │ │ ├── GbpPolicyActionUpdate.java │ │ │ │ │ │ │ ├── GbpPolicyClassifier.java │ │ │ │ │ │ │ ├── GbpPolicyClassifierUpdate.java │ │ │ │ │ │ │ ├── GbpPolicyRule.java │ │ │ │ │ │ │ ├── GbpPolicyRuleSet.java │ │ │ │ │ │ │ ├── GbpPolicyTarget.java │ │ │ │ │ │ │ ├── GbpPolicyTargetGroup.java │ │ │ │ │ │ │ └── GbpPolicyTargetGroupCreate.java │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── ExternalPolicyServiceImpl.java │ │ │ │ │ │ │ ├── ExternalSegmentServiceImpl.java │ │ │ │ │ │ │ ├── GbpServiceImpl.java │ │ │ │ │ │ │ ├── GroupServiceImpl.java │ │ │ │ │ │ │ ├── L2policyServiceImpl.java │ │ │ │ │ │ │ ├── L3policyServiceImpl.java │ │ │ │ │ │ │ ├── NatPoolServiceImpl.java │ │ │ │ │ │ │ ├── NetworkPolicyServiceImpl.java │ │ │ │ │ │ │ ├── PolicyActionServiceImpl.java │ │ │ │ │ │ │ ├── PolicyClassifierServiceImpl.java │ │ │ │ │ │ │ ├── PolicyRuleServiceImpl.java │ │ │ │ │ │ │ ├── PolicyRuleSetServiceImpl.java │ │ │ │ │ │ │ ├── PolicyTargetServiceImpl.java │ │ │ │ │ │ │ ├── ServiceProfileServiceImpl.java │ │ │ │ │ │ │ └── ServicechainServiceImpl.java │ │ │ │ │ │ ├── heat │ │ │ │ │ │ ├── builder │ │ │ │ │ │ │ └── HeatBuilders.java │ │ │ │ │ │ ├── domain │ │ │ │ │ │ │ ├── HeatAdoptStackData.java │ │ │ │ │ │ │ ├── HeatEvent.java │ │ │ │ │ │ │ ├── HeatResource.java │ │ │ │ │ │ │ ├── HeatResourceHealth.java │ │ │ │ │ │ │ ├── HeatSoftwareConfig.java │ │ │ │ │ │ │ ├── HeatStack.java │ │ │ │ │ │ │ ├── HeatStackAdopt.java │ │ │ │ │ │ │ ├── HeatStackCreate.java │ │ │ │ │ │ │ ├── HeatStackUpdate.java │ │ │ │ │ │ │ └── HeatTemplate.java │ │ │ │ │ │ ├── internal │ │ │ │ │ │ │ ├── BaseHeatServices.java │ │ │ │ │ │ │ ├── EventsServiceImpl.java │ │ │ │ │ │ │ ├── HeatServiceImpl.java │ │ │ │ │ │ │ ├── ResourcesServiceImpl.java │ │ │ │ │ │ │ ├── SoftwareConfigServiceImpl.java │ │ │ │ │ │ │ ├── StackServiceImpl.java │ │ │ │ │ │ │ └── TemplateServiceImpl.java │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ ├── Environment.java │ │ │ │ │ │ │ ├── Template.java │ │ │ │ │ │ │ └── TemplateUtils.java │ │ │ │ │ │ ├── identity │ │ │ │ │ │ ├── functions │ │ │ │ │ │ │ └── ServiceFunctions.java │ │ │ │ │ │ ├── internal │ │ │ │ │ │ │ └── DefaultEndpointURLResolver.java │ │ │ │ │ │ ├── v2 │ │ │ │ │ │ │ ├── builder │ │ │ │ │ │ │ │ └── KeystoneV2Builders.java │ │ │ │ │ │ │ ├── domain │ │ │ │ │ │ │ │ ├── Auth.java │ │ │ │ │ │ │ │ ├── Credentials.java │ │ │ │ │ │ │ │ ├── KeystoneAccess.java │ │ │ │ │ │ │ │ ├── KeystoneCreateRole.java │ │ │ │ │ │ │ │ ├── KeystoneEndpoint.java │ │ │ │ │ │ │ │ ├── KeystoneRole.java │ │ │ │ │ │ │ │ ├── KeystoneService.java │ │ │ │ │ │ │ │ ├── KeystoneServiceEndpoint.java │ │ │ │ │ │ │ │ ├── KeystoneTenant.java │ │ │ │ │ │ │ │ ├── KeystoneTenantUser.java │ │ │ │ │ │ │ │ ├── KeystoneToken.java │ │ │ │ │ │ │ │ ├── KeystoneUser.java │ │ │ │ │ │ │ │ ├── RaxApiKeyCredentials.java │ │ │ │ │ │ │ │ └── TokenAuth.java │ │ │ │ │ │ │ ├── functions │ │ │ │ │ │ │ │ └── ServiceToServiceType.java │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ │ ├── IdentityServiceImpl.java │ │ │ │ │ │ │ │ ├── RoleServiceImpl.java │ │ │ │ │ │ │ │ ├── ServiceManagerServiceImpl.java │ │ │ │ │ │ │ │ ├── TenantServiceImpl.java │ │ │ │ │ │ │ │ └── UserServiceImpl.java │ │ │ │ │ │ └── v3 │ │ │ │ │ │ │ ├── builder │ │ │ │ │ │ │ └── KeystoneV3Builders.java │ │ │ │ │ │ │ ├── domain │ │ │ │ │ │ │ ├── Auth.java │ │ │ │ │ │ │ ├── Credentials.java │ │ │ │ │ │ │ ├── KeystoneAuth.java │ │ │ │ │ │ │ ├── KeystoneCredential.java │ │ │ │ │ │ │ ├── KeystoneDomain.java │ │ │ │ │ │ │ ├── KeystoneEndpoint.java │ │ │ │ │ │ │ ├── KeystoneGroup.java │ │ │ │ │ │ │ ├── KeystonePolicy.java │ │ │ │ │ │ │ ├── KeystoneProject.java │ │ │ │ │ │ │ ├── KeystoneRegion.java │ │ │ │ │ │ │ ├── KeystoneRole.java │ │ │ │ │ │ │ ├── KeystoneRoleAssignment.java │ │ │ │ │ │ │ ├── KeystoneService.java │ │ │ │ │ │ │ ├── KeystoneToken.java │ │ │ │ │ │ │ ├── KeystoneUser.java │ │ │ │ │ │ │ └── TokenAuth.java │ │ │ │ │ │ │ ├── functions │ │ │ │ │ │ │ └── ServiceToServiceType.java │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── BaseIdentityServices.java │ │ │ │ │ │ │ ├── CredentialServiceImpl.java │ │ │ │ │ │ │ ├── DomainServiceImpl.java │ │ │ │ │ │ │ ├── GroupServiceImpl.java │ │ │ │ │ │ │ ├── IdentityServiceImpl.java │ │ │ │ │ │ │ ├── PolicyServiceImpl.java │ │ │ │ │ │ │ ├── ProjectServiceImpl.java │ │ │ │ │ │ │ ├── RegionServiceImpl.java │ │ │ │ │ │ │ ├── RoleServiceImpl.java │ │ │ │ │ │ │ ├── ServiceEndpointServiceImpl.java │ │ │ │ │ │ │ ├── TokenServiceImpl.java │ │ │ │ │ │ │ └── UserServiceImpl.java │ │ │ │ │ │ ├── image │ │ │ │ │ │ ├── domain │ │ │ │ │ │ │ ├── CachedGlanceImage.java │ │ │ │ │ │ │ ├── GlanceImage.java │ │ │ │ │ │ │ ├── GlanceImageMember.java │ │ │ │ │ │ │ ├── ImageHeader.java │ │ │ │ │ │ │ └── functions │ │ │ │ │ │ │ │ ├── ImageForUpdateToHeaders.java │ │ │ │ │ │ │ │ └── ImageFromHeadersFunction.java │ │ │ │ │ │ ├── internal │ │ │ │ │ │ │ ├── BaseImageServices.java │ │ │ │ │ │ │ └── ImageServiceImpl.java │ │ │ │ │ │ └── v2 │ │ │ │ │ │ │ ├── domain │ │ │ │ │ │ │ ├── CachedGlanceImage.java │ │ │ │ │ │ │ ├── GlanceImage.java │ │ │ │ │ │ │ ├── GlanceImageUpdate.java │ │ │ │ │ │ │ ├── GlanceMember.java │ │ │ │ │ │ │ ├── GlanceTask.java │ │ │ │ │ │ │ └── PatchOperation.java │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── BaseImageServices.java │ │ │ │ │ │ │ ├── ImageServiceImpl.java │ │ │ │ │ │ │ └── TaskServiceImpl.java │ │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── BaseOpenStackService.java │ │ │ │ │ │ ├── MicroVersion.java │ │ │ │ │ │ ├── MicroVersionedOpenStackService.java │ │ │ │ │ │ ├── OSAuthenticator.java │ │ │ │ │ │ ├── OSClientSession.java │ │ │ │ │ │ └── Parser.java │ │ │ │ │ │ ├── magnum │ │ │ │ │ │ ├── MagnumBay.java │ │ │ │ │ │ ├── MagnumBaymodel.java │ │ │ │ │ │ ├── MagnumCarequest.java │ │ │ │ │ │ ├── MagnumCertificate.java │ │ │ │ │ │ ├── MagnumCluster.java │ │ │ │ │ │ ├── MagnumClustertemplate.java │ │ │ │ │ │ ├── MagnumContainer.java │ │ │ │ │ │ ├── MagnumEnvironment.java │ │ │ │ │ │ ├── MagnumLabel.java │ │ │ │ │ │ ├── MagnumMservice.java │ │ │ │ │ │ ├── MagnumPod.java │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ └── MagnumServiceImpl.java │ │ │ │ │ │ ├── manila │ │ │ │ │ │ ├── builder │ │ │ │ │ │ │ └── ManilaBuilders.java │ │ │ │ │ │ ├── domain │ │ │ │ │ │ │ ├── ManilaAbsoluteLimit.java │ │ │ │ │ │ │ ├── ManilaAccess.java │ │ │ │ │ │ │ ├── ManilaAvailabilityZone.java │ │ │ │ │ │ │ ├── ManilaBackendStoragePool.java │ │ │ │ │ │ │ ├── ManilaLimits.java │ │ │ │ │ │ │ ├── ManilaQuotaSet.java │ │ │ │ │ │ │ ├── ManilaQuotaSetUpdate.java │ │ │ │ │ │ │ ├── ManilaRateLimit.java │ │ │ │ │ │ │ ├── ManilaSecurityService.java │ │ │ │ │ │ │ ├── ManilaSecurityServiceCreate.java │ │ │ │ │ │ │ ├── ManilaSecurityServiceUpdate.java │ │ │ │ │ │ │ ├── ManilaService.java │ │ │ │ │ │ │ ├── ManilaShare.java │ │ │ │ │ │ │ ├── ManilaShareCreate.java │ │ │ │ │ │ │ ├── ManilaShareInstance.java │ │ │ │ │ │ │ ├── ManilaShareManage.java │ │ │ │ │ │ │ ├── ManilaShareNetwork.java │ │ │ │ │ │ │ ├── ManilaShareNetworkCreate.java │ │ │ │ │ │ │ ├── ManilaShareNetworkUpdate.java │ │ │ │ │ │ │ ├── ManilaShareServer.java │ │ │ │ │ │ │ ├── ManilaShareSnapshot.java │ │ │ │ │ │ │ ├── ManilaShareSnapshotCreate.java │ │ │ │ │ │ │ ├── ManilaShareSnapshotUpdate.java │ │ │ │ │ │ │ ├── ManilaShareType.java │ │ │ │ │ │ │ ├── ManilaShareTypeCreate.java │ │ │ │ │ │ │ ├── ManilaShareUpdate.java │ │ │ │ │ │ │ └── actions │ │ │ │ │ │ │ │ ├── GrantAccessAction.java │ │ │ │ │ │ │ │ ├── ResetStateAction.java │ │ │ │ │ │ │ │ ├── RevokeAccessAction.java │ │ │ │ │ │ │ │ ├── SecurityServiceAction.java │ │ │ │ │ │ │ │ ├── ServiceAction.java │ │ │ │ │ │ │ │ ├── ServiceActions.java │ │ │ │ │ │ │ │ ├── ShareAction.java │ │ │ │ │ │ │ │ ├── ShareActions.java │ │ │ │ │ │ │ │ ├── ShareInstanceActions.java │ │ │ │ │ │ │ │ ├── ShareSnapshotAction.java │ │ │ │ │ │ │ │ ├── ShareSnapshotActions.java │ │ │ │ │ │ │ │ ├── ShareTypeAction.java │ │ │ │ │ │ │ │ ├── ShareTypeActions.java │ │ │ │ │ │ │ │ └── SizeAction.java │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── BaseShareServices.java │ │ │ │ │ │ │ ├── QuotaSetServiceImpl.java │ │ │ │ │ │ │ ├── SchedulerStatsServiceImpl.java │ │ │ │ │ │ │ ├── SecurityServiceServiceImpl.java │ │ │ │ │ │ │ ├── ShareInstanceServiceImpl.java │ │ │ │ │ │ │ ├── ShareNetworkServiceImpl.java │ │ │ │ │ │ │ ├── ShareServerServiceImpl.java │ │ │ │ │ │ │ ├── ShareServiceImpl.java │ │ │ │ │ │ │ ├── ShareSnapshotServiceImpl.java │ │ │ │ │ │ │ ├── ShareTypeServiceImpl.java │ │ │ │ │ │ │ └── SharesServiceImpl.java │ │ │ │ │ │ ├── murano │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── builder │ │ │ │ │ │ │ └── MuranoBuilders.java │ │ │ │ │ │ │ ├── domain │ │ │ │ │ │ │ ├── MuranoActionInfo.java │ │ │ │ │ │ │ ├── MuranoActionResult.java │ │ │ │ │ │ │ ├── MuranoApplication.java │ │ │ │ │ │ │ ├── MuranoDeployment.java │ │ │ │ │ │ │ ├── MuranoEnvironment.java │ │ │ │ │ │ │ ├── MuranoReport.java │ │ │ │ │ │ │ ├── MuranoServiceInfo.java │ │ │ │ │ │ │ └── MuranoSession.java │ │ │ │ │ │ │ ├── internal │ │ │ │ │ │ │ ├── BaseMuranoServices.java │ │ │ │ │ │ │ ├── MuranoActionServiceImpl.java │ │ │ │ │ │ │ ├── MuranoApplicationServiceImpl.java │ │ │ │ │ │ │ ├── MuranoDeploymentServiceImpl.java │ │ │ │ │ │ │ ├── MuranoEnvironmentServiceImpl.java │ │ │ │ │ │ │ ├── MuranoService.java │ │ │ │ │ │ │ └── MuranoSessionServiceImpl.java │ │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ └── MuranoApplicationUtils.java │ │ │ │ │ │ ├── networking │ │ │ │ │ │ ├── builder │ │ │ │ │ │ │ └── NeutronBuilders.java │ │ │ │ │ │ ├── domain │ │ │ │ │ │ │ ├── AbstractNeutronTrunk.java │ │ │ │ │ │ │ ├── AddRouterInterfaceAction.java │ │ │ │ │ │ │ ├── NeutronAgent.java │ │ │ │ │ │ │ ├── NeutronAllowedAddressPair.java │ │ │ │ │ │ │ ├── NeutronAvailabilityZone.java │ │ │ │ │ │ │ ├── NeutronExternalGateway.java │ │ │ │ │ │ │ ├── NeutronExtraDhcpOptCreate.java │ │ │ │ │ │ │ ├── NeutronFloatingIP.java │ │ │ │ │ │ │ ├── NeutronHostRoute.java │ │ │ │ │ │ │ ├── NeutronIP.java │ │ │ │ │ │ │ ├── NeutronNetQuota.java │ │ │ │ │ │ │ ├── NeutronNetwork.java │ │ │ │ │ │ │ ├── NeutronNetworkUpdate.java │ │ │ │ │ │ │ ├── NeutronPool.java │ │ │ │ │ │ │ ├── NeutronPort.java │ │ │ │ │ │ │ ├── NeutronPortCreate.java │ │ │ │ │ │ │ ├── NeutronResourceTag.java │ │ │ │ │ │ │ ├── NeutronRouter.java │ │ │ │ │ │ │ ├── NeutronRouterInterface.java │ │ │ │ │ │ │ ├── NeutronSecurityGroup.java │ │ │ │ │ │ │ ├── NeutronSecurityGroupRule.java │ │ │ │ │ │ │ ├── NeutronSecurityGroupUpdate.java │ │ │ │ │ │ │ ├── NeutronSubnet.java │ │ │ │ │ │ │ ├── NeutronSubnetUpdate.java │ │ │ │ │ │ │ ├── NeutronTrunk.java │ │ │ │ │ │ │ ├── NeutronTrunkCreate.java │ │ │ │ │ │ │ ├── NeutronTrunkSubport.java │ │ │ │ │ │ │ ├── NeutronTrunkSubportAddRemove.java │ │ │ │ │ │ │ ├── NeutronTrunkSubportCreate.java │ │ │ │ │ │ │ ├── NeutronTrunkUpdate.java │ │ │ │ │ │ │ └── ext │ │ │ │ │ │ │ │ ├── AbstractNeutronFirewallPolicy.java │ │ │ │ │ │ │ │ ├── FirewallRuleStrategy.java │ │ │ │ │ │ │ │ ├── FloatingIPPortForwarding.java │ │ │ │ │ │ │ │ ├── HttpMethod.java │ │ │ │ │ │ │ │ ├── ListItem.java │ │ │ │ │ │ │ │ ├── LoadBalancerV2StatusTree │ │ │ │ │ │ │ │ ├── NeutronHealthMonitorV2Status.java │ │ │ │ │ │ │ │ ├── NeutronLbPoolV2Status.java │ │ │ │ │ │ │ │ ├── NeutronListenerV2Status.java │ │ │ │ │ │ │ │ ├── NeutronLoadBalancerV2Status.java │ │ │ │ │ │ │ │ ├── NeutronLoadBalancerV2StatusTree.java │ │ │ │ │ │ │ │ ├── NeutronMemberV2Status.java │ │ │ │ │ │ │ │ └── Status.java │ │ │ │ │ │ │ │ ├── NeutronFirewall.java │ │ │ │ │ │ │ │ ├── NeutronFirewallPolicy.java │ │ │ │ │ │ │ │ ├── NeutronFirewallPolicyRule.java │ │ │ │ │ │ │ │ ├── NeutronFirewallPolicyUpdate.java │ │ │ │ │ │ │ │ ├── NeutronFirewallRule.java │ │ │ │ │ │ │ │ ├── NeutronFirewallRuleUpdate.java │ │ │ │ │ │ │ │ ├── NeutronFirewallUpdate.java │ │ │ │ │ │ │ │ ├── NeutronFlowClassifier.java │ │ │ │ │ │ │ │ ├── NeutronHealthMonitor.java │ │ │ │ │ │ │ │ ├── NeutronHealthMonitorAssociate.java │ │ │ │ │ │ │ │ ├── NeutronHealthMonitorUpdate.java │ │ │ │ │ │ │ │ ├── NeutronHealthMonitorV2.java │ │ │ │ │ │ │ │ ├── NeutronHealthMonitorV2Update.java │ │ │ │ │ │ │ │ ├── NeutronLbPool.java │ │ │ │ │ │ │ │ ├── NeutronLbPoolStats.java │ │ │ │ │ │ │ │ ├── NeutronLbPoolUpdate.java │ │ │ │ │ │ │ │ ├── NeutronLbPoolV2.java │ │ │ │ │ │ │ │ ├── NeutronLbPoolV2Update.java │ │ │ │ │ │ │ │ ├── NeutronListenerV2.java │ │ │ │ │ │ │ │ ├── NeutronListenerV2Update.java │ │ │ │ │ │ │ │ ├── NeutronLoadBalancerV2.java │ │ │ │ │ │ │ │ ├── NeutronLoadBalancerV2Stats.java │ │ │ │ │ │ │ │ ├── NeutronLoadBalancerV2Update.java │ │ │ │ │ │ │ │ ├── NeutronMember.java │ │ │ │ │ │ │ │ ├── NeutronMemberUpdate.java │ │ │ │ │ │ │ │ ├── NeutronMemberV2.java │ │ │ │ │ │ │ │ ├── NeutronMemberV2Update.java │ │ │ │ │ │ │ │ ├── NeutronNetQosPolicy.java │ │ │ │ │ │ │ │ ├── NeutronNetworkIPAvailability.java │ │ │ │ │ │ │ │ ├── NeutronPortChain.java │ │ │ │ │ │ │ │ ├── NeutronPortPair.java │ │ │ │ │ │ │ │ ├── NeutronPortPairGroup.java │ │ │ │ │ │ │ │ ├── NeutronSessionPersistence.java │ │ │ │ │ │ │ │ ├── NeutronSubnetIPAvailability.java │ │ │ │ │ │ │ │ ├── NeutronVip.java │ │ │ │ │ │ │ │ └── NeutronVipUpdate.java │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── AvailabilityZoneServiceImpl.java │ │ │ │ │ │ │ ├── BaseNetworkingServices.java │ │ │ │ │ │ │ ├── FloatingIPServiceImpl.java │ │ │ │ │ │ │ ├── NetworkServiceImpl.java │ │ │ │ │ │ │ ├── NetworkingServiceImpl.java │ │ │ │ │ │ │ ├── NeutronResourceTagServiceImpl.java │ │ │ │ │ │ │ ├── PortServiceImpl.java │ │ │ │ │ │ │ ├── RouterServiceImpl.java │ │ │ │ │ │ │ ├── SecurityGroupRuleServiceImpl.java │ │ │ │ │ │ │ ├── SecurityGroupServiceImpl.java │ │ │ │ │ │ │ ├── SubnetServiceImpl.java │ │ │ │ │ │ │ ├── TrunkServiceImpl.java │ │ │ │ │ │ │ └── ext │ │ │ │ │ │ │ ├── AgentServiceImpl.java │ │ │ │ │ │ │ ├── FirewallAsServiceImpl.java │ │ │ │ │ │ │ ├── FirewallPolicyServiceImpl.java │ │ │ │ │ │ │ ├── FirewallRuleServiceImpl.java │ │ │ │ │ │ │ ├── FirewallServiceImpl.java │ │ │ │ │ │ │ ├── FlowClassifierServiceImpl.java │ │ │ │ │ │ │ ├── HealthMonitorServiceImpl.java │ │ │ │ │ │ │ ├── HealthMonitorV2ServiceImpl.java │ │ │ │ │ │ │ ├── LbPoolServiceImpl.java │ │ │ │ │ │ │ ├── LbPoolV2ServiceImpl.java │ │ │ │ │ │ │ ├── LbaasV2ServiceImpl.java │ │ │ │ │ │ │ ├── ListenerV2ServiceImpl.java │ │ │ │ │ │ │ ├── LoadBalancerServiceImpl.java │ │ │ │ │ │ │ ├── LoadBalancerV2ServiceImpl.java │ │ │ │ │ │ │ ├── MemberServiceImpl.java │ │ │ │ │ │ │ ├── NetQosPolicyServiceImpl.java │ │ │ │ │ │ │ ├── NetQuotaServiceImpl.java │ │ │ │ │ │ │ ├── NetworkIPAvailabilityServiceImpl.java │ │ │ │ │ │ │ ├── PortChainServiceImpl.java │ │ │ │ │ │ │ ├── PortForwardingServiceImpl.java │ │ │ │ │ │ │ ├── PortPairGroupServiceImpl.java │ │ │ │ │ │ │ ├── PortPairServiceImpl.java │ │ │ │ │ │ │ ├── ServiceFunctionChainServiceImpl.java │ │ │ │ │ │ │ └── VipServiceImpl.java │ │ │ │ │ │ ├── octavia │ │ │ │ │ │ ├── builder │ │ │ │ │ │ │ └── OctaviaBuilders.java │ │ │ │ │ │ ├── domain │ │ │ │ │ │ │ ├── ListItem.java │ │ │ │ │ │ │ ├── LoadBalancerV2StatusTree │ │ │ │ │ │ │ │ ├── OctaviaHealthMonitorV2Status.java │ │ │ │ │ │ │ │ ├── OctaviaLbPoolV2Status.java │ │ │ │ │ │ │ │ ├── OctaviaListenerV2Status.java │ │ │ │ │ │ │ │ ├── OctaviaLoadBalancerV2Status.java │ │ │ │ │ │ │ │ ├── OctaviaLoadBalancerV2StatusTree.java │ │ │ │ │ │ │ │ ├── OctaviaMemberV2Status.java │ │ │ │ │ │ │ │ └── Status.java │ │ │ │ │ │ │ ├── OctaviaHealthMonitorV2.java │ │ │ │ │ │ │ ├── OctaviaHealthMonitorV2Update.java │ │ │ │ │ │ │ ├── OctaviaLbPoolV2.java │ │ │ │ │ │ │ ├── OctaviaLbPoolV2Update.java │ │ │ │ │ │ │ ├── OctaviaListenerV2.java │ │ │ │ │ │ │ ├── OctaviaListenerV2Update.java │ │ │ │ │ │ │ ├── OctaviaLoadBalancerV2.java │ │ │ │ │ │ │ ├── OctaviaLoadBalancerV2Stats.java │ │ │ │ │ │ │ ├── OctaviaLoadBalancerV2Update.java │ │ │ │ │ │ │ ├── OctaviaMemberV2.java │ │ │ │ │ │ │ ├── OctaviaMemberV2Update.java │ │ │ │ │ │ │ └── OctaviaSessionPersistence.java │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── BaseOctaviaServices.java │ │ │ │ │ │ │ ├── HealthMonitorV2ServiceImpl.java │ │ │ │ │ │ │ ├── LbPoolV2ServiceImpl.java │ │ │ │ │ │ │ ├── ListenerV2ServiceImpl.java │ │ │ │ │ │ │ ├── LoadBalancerV2ServiceImpl.java │ │ │ │ │ │ │ └── OctaviaServiceImpl.java │ │ │ │ │ │ ├── placement │ │ │ │ │ │ ├── domain │ │ │ │ │ │ │ ├── ResourceProviderInventoriesBody.java │ │ │ │ │ │ │ ├── ResourceProviderUsagesBody.java │ │ │ │ │ │ │ └── ext │ │ │ │ │ │ │ │ ├── ExtResourceProvider.java │ │ │ │ │ │ │ │ ├── ExtResourceProviderInventories.java │ │ │ │ │ │ │ │ └── ExtResourceProviderUsages.java │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── BasePlacementServices.java │ │ │ │ │ │ │ ├── PlacementServiceImpl.java │ │ │ │ │ │ │ └── ext │ │ │ │ │ │ │ └── ResourceProviderServiceImpl.java │ │ │ │ │ │ ├── provider │ │ │ │ │ │ └── DefaultAPIProvider.java │ │ │ │ │ │ ├── sahara │ │ │ │ │ │ ├── builder │ │ │ │ │ │ │ └── SaharaBuilders.java │ │ │ │ │ │ ├── domain │ │ │ │ │ │ │ ├── SaharaCluster.java │ │ │ │ │ │ │ ├── SaharaClusterTemplate.java │ │ │ │ │ │ │ ├── SaharaClusterTemplateUnwrapped.java │ │ │ │ │ │ │ ├── SaharaClusterUnwrapped.java │ │ │ │ │ │ │ ├── SaharaConfigInfo.java │ │ │ │ │ │ │ ├── SaharaDataSource.java │ │ │ │ │ │ │ ├── SaharaDataSourceCredentials.java │ │ │ │ │ │ │ ├── SaharaDataSourceUnwrapped.java │ │ │ │ │ │ │ ├── SaharaImage.java │ │ │ │ │ │ │ ├── SaharaInstance.java │ │ │ │ │ │ │ ├── SaharaJob.java │ │ │ │ │ │ │ ├── SaharaJobBinary.java │ │ │ │ │ │ │ ├── SaharaJobBinaryCredentials.java │ │ │ │ │ │ │ ├── SaharaJobBinaryInternal.java │ │ │ │ │ │ │ ├── SaharaJobBinaryUnwrapped.java │ │ │ │ │ │ │ ├── SaharaJobConfig.java │ │ │ │ │ │ │ ├── SaharaJobConfigHint.java │ │ │ │ │ │ │ ├── SaharaJobConfigHintConfig.java │ │ │ │ │ │ │ ├── SaharaJobExecution.java │ │ │ │ │ │ │ ├── SaharaJobExecutionAction.java │ │ │ │ │ │ │ ├── SaharaJobExecutionInfo.java │ │ │ │ │ │ │ ├── SaharaJobExecutionUnwrapped.java │ │ │ │ │ │ │ ├── SaharaJobUnwrapped.java │ │ │ │ │ │ │ ├── SaharaNodeGroup.java │ │ │ │ │ │ │ ├── SaharaNodeGroupTemplate.java │ │ │ │ │ │ │ ├── SaharaNodeGroupTemplateUnwrapped.java │ │ │ │ │ │ │ ├── SaharaPlugin.java │ │ │ │ │ │ │ ├── SaharaServiceConfig.java │ │ │ │ │ │ │ ├── SaharaServiceInfo.java │ │ │ │ │ │ │ └── actions │ │ │ │ │ │ │ │ └── SaharaActions.java │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── BaseSaharaServices.java │ │ │ │ │ │ │ ├── ClusterServiceImpl.java │ │ │ │ │ │ │ ├── ClusterTemplateServiceImpl.java │ │ │ │ │ │ │ ├── DataSourceServiceImpl.java │ │ │ │ │ │ │ ├── JobBinaryInternalServiceImpl.java │ │ │ │ │ │ │ ├── JobBinaryServiceImpl.java │ │ │ │ │ │ │ ├── JobExecutionServiceImpl.java │ │ │ │ │ │ │ ├── JobServiceImpl.java │ │ │ │ │ │ │ ├── NodeGroupTemplateServiceImpl.java │ │ │ │ │ │ │ ├── SaharaImageServiceImpl.java │ │ │ │ │ │ │ ├── SaharaPluginServiceImpl.java │ │ │ │ │ │ │ └── SaharaServiceImpl.java │ │ │ │ │ │ ├── senlin │ │ │ │ │ │ ├── domain │ │ │ │ │ │ │ ├── SenlinAction.java │ │ │ │ │ │ │ ├── SenlinActionID.java │ │ │ │ │ │ │ ├── SenlinBuildInfo.java │ │ │ │ │ │ │ ├── SenlinCluster.java │ │ │ │ │ │ │ ├── SenlinClusterActionCreate.java │ │ │ │ │ │ │ ├── SenlinClusterCreate.java │ │ │ │ │ │ │ ├── SenlinClusterPolicy.java │ │ │ │ │ │ │ ├── SenlinEvent.java │ │ │ │ │ │ │ ├── SenlinNode.java │ │ │ │ │ │ │ ├── SenlinNodeActionCreate.java │ │ │ │ │ │ │ ├── SenlinNodeCreate.java │ │ │ │ │ │ │ ├── SenlinPolicy.java │ │ │ │ │ │ │ ├── SenlinPolicyCreate.java │ │ │ │ │ │ │ ├── SenlinPolicyType.java │ │ │ │ │ │ │ ├── SenlinProfile.java │ │ │ │ │ │ │ ├── SenlinProfileCreate.java │ │ │ │ │ │ │ ├── SenlinProfileType.java │ │ │ │ │ │ │ ├── SenlinReceiver.java │ │ │ │ │ │ │ ├── SenlinReceiverCreate.java │ │ │ │ │ │ │ └── SenlinVersion.java │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── BaseSenlinServices.java │ │ │ │ │ │ │ ├── SenlinActionServiceImpl.java │ │ │ │ │ │ │ ├── SenlinBuildInfoServiceImpl.java │ │ │ │ │ │ │ ├── SenlinClusterPolicyServiceImpl.java │ │ │ │ │ │ │ ├── SenlinClusterServiceImpl.java │ │ │ │ │ │ │ ├── SenlinEventServiceImpl.java │ │ │ │ │ │ │ ├── SenlinNodeServiceImpl.java │ │ │ │ │ │ │ ├── SenlinPolicyServiceImpl.java │ │ │ │ │ │ │ ├── SenlinPolicyTypeServiceImpl.java │ │ │ │ │ │ │ ├── SenlinProfileServiceImpl.java │ │ │ │ │ │ │ ├── SenlinProfileTypeServiceImpl.java │ │ │ │ │ │ │ ├── SenlinReceiverServiceImpl.java │ │ │ │ │ │ │ ├── SenlinServiceImpl.java │ │ │ │ │ │ │ ├── SenlinVersionServiceImpl.java │ │ │ │ │ │ │ └── SenlinWebHookServiceImpl.java │ │ │ │ │ │ ├── storage │ │ │ │ │ │ ├── block │ │ │ │ │ │ │ ├── builder │ │ │ │ │ │ │ │ └── CinderBuilders.java │ │ │ │ │ │ │ ├── domain │ │ │ │ │ │ │ │ ├── AbstractCinderVolumeTypeEncryption.java │ │ │ │ │ │ │ │ ├── AttachAction.java │ │ │ │ │ │ │ │ ├── AvailabilityZone.java │ │ │ │ │ │ │ │ ├── CinderBackendStoragePool.java │ │ │ │ │ │ │ │ ├── CinderBlockLimits.java │ │ │ │ │ │ │ │ ├── CinderBlockQuotaSet.java │ │ │ │ │ │ │ │ ├── CinderBlockQuotaSetUsage.java │ │ │ │ │ │ │ │ ├── CinderUploadImageData.java │ │ │ │ │ │ │ │ ├── CinderVolume.java │ │ │ │ │ │ │ │ ├── CinderVolumeAttachment.java │ │ │ │ │ │ │ │ ├── CinderVolumeBackup.java │ │ │ │ │ │ │ │ ├── CinderVolumeBackupCreate.java │ │ │ │ │ │ │ │ ├── CinderVolumeBackupRestore.java │ │ │ │ │ │ │ │ ├── CinderVolumeMigration.java │ │ │ │ │ │ │ │ ├── CinderVolumeSnapshot.java │ │ │ │ │ │ │ │ ├── CinderVolumeTransfer.java │ │ │ │ │ │ │ │ ├── CinderVolumeTransferAccept.java │ │ │ │ │ │ │ │ ├── CinderVolumeType.java │ │ │ │ │ │ │ │ ├── CinderVolumeTypeEncryption.java │ │ │ │ │ │ │ │ ├── CinderVolumeTypeEncryptionFetch.java │ │ │ │ │ │ │ │ ├── CinderVolumeUploadImage.java │ │ │ │ │ │ │ │ ├── DetachAction.java │ │ │ │ │ │ │ │ ├── ExtAvailabilityZone.java │ │ │ │ │ │ │ │ ├── ExtendAction.java │ │ │ │ │ │ │ │ ├── ForceDeleteAction.java │ │ │ │ │ │ │ │ ├── ForceDetachAction.java │ │ │ │ │ │ │ │ ├── ForceDetachConnector.java │ │ │ │ │ │ │ │ ├── ResetStatusAction.java │ │ │ │ │ │ │ │ ├── SetBootableAction.java │ │ │ │ │ │ │ │ ├── UpdateReadOnlyFlagAction.java │ │ │ │ │ │ │ │ ├── VolumeBackendPool.java │ │ │ │ │ │ │ │ └── ext │ │ │ │ │ │ │ │ │ └── ExtService.java │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ │ ├── BaseBlockStorageServices.java │ │ │ │ │ │ │ │ ├── BlockQuotaSetServiceImpl.java │ │ │ │ │ │ │ │ ├── BlockStorageServiceImpl.java │ │ │ │ │ │ │ │ ├── BlockStorageServiceServiceImpl.java │ │ │ │ │ │ │ │ ├── BlockVolumeBackupServiceImpl.java │ │ │ │ │ │ │ │ ├── BlockVolumeServiceImpl.java │ │ │ │ │ │ │ │ ├── BlockVolumeSnapshotServiceImpl.java │ │ │ │ │ │ │ │ ├── BlockVolumeTransferServiceImpl.java │ │ │ │ │ │ │ │ ├── CinderZoneServiceImpl.java │ │ │ │ │ │ │ │ └── SchedulerStatsGetPoolServiceImpl.java │ │ │ │ │ │ └── object │ │ │ │ │ │ │ ├── domain │ │ │ │ │ │ │ ├── MetaHeaderRequestWrapper.java │ │ │ │ │ │ │ ├── SwiftAccountImpl.java │ │ │ │ │ │ │ ├── SwiftContainerImpl.java │ │ │ │ │ │ │ └── SwiftObjectImpl.java │ │ │ │ │ │ │ ├── functions │ │ │ │ │ │ │ ├── ApplyContainerToObjectFunction.java │ │ │ │ │ │ │ ├── MapWithoutMetaPrefixFunction.java │ │ │ │ │ │ │ ├── MetadataToHeadersFunction.java │ │ │ │ │ │ │ ├── ParseAccountFunction.java │ │ │ │ │ │ │ └── ParseObjectFunction.java │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── BaseObjectStorageService.java │ │ │ │ │ │ │ ├── ObjectStorageAccountServiceImpl.java │ │ │ │ │ │ │ ├── ObjectStorageContainerServiceImpl.java │ │ │ │ │ │ │ ├── ObjectStorageObjectServiceImpl.java │ │ │ │ │ │ │ └── ObjectStorageServiceImpl.java │ │ │ │ │ │ ├── tacker │ │ │ │ │ │ ├── builders │ │ │ │ │ │ │ └── TackerBuilders.java │ │ │ │ │ │ ├── domain │ │ │ │ │ │ │ ├── AuthCredentials.java │ │ │ │ │ │ │ ├── TackerVim.java │ │ │ │ │ │ │ ├── TackerVimStatus.java │ │ │ │ │ │ │ ├── TackerVnf.java │ │ │ │ │ │ │ ├── TackerVnfStatus.java │ │ │ │ │ │ │ ├── TackerVnfUpdate.java │ │ │ │ │ │ │ ├── TackerVnfd.java │ │ │ │ │ │ │ ├── VimPlacementAttribute.java │ │ │ │ │ │ │ ├── VimProject.java │ │ │ │ │ │ │ ├── VnfAttributes.java │ │ │ │ │ │ │ ├── VnfPlacementAttribute.java │ │ │ │ │ │ │ ├── VnfUpdateAttributes.java │ │ │ │ │ │ │ ├── VnfdAttributes.java │ │ │ │ │ │ │ └── VnfdServiceTypes.java │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── BaseTackerServices.java │ │ │ │ │ │ │ ├── VimServiceImpl.java │ │ │ │ │ │ │ ├── VnfServiceImpl.java │ │ │ │ │ │ │ └── VnfdServiceImpl.java │ │ │ │ │ │ ├── telemetry │ │ │ │ │ │ ├── builder │ │ │ │ │ │ │ └── CeilometerBuilders.java │ │ │ │ │ │ ├── domain │ │ │ │ │ │ │ ├── CeiloMeterSample.java │ │ │ │ │ │ │ ├── CeilometerAlarm.java │ │ │ │ │ │ │ ├── CeilometerCapabilities.java │ │ │ │ │ │ │ ├── CeilometerEvent.java │ │ │ │ │ │ │ ├── CeilometerMeter.java │ │ │ │ │ │ │ ├── CeilometerMeterSample.java │ │ │ │ │ │ │ ├── CeilometerResource.java │ │ │ │ │ │ │ ├── CeilometerStatistics.java │ │ │ │ │ │ │ ├── CeilometerTrait.java │ │ │ │ │ │ │ └── CeilometerTraitDescription.java │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── AlarmAodhServiceImpl.java │ │ │ │ │ │ │ ├── AlarmServiceImpl.java │ │ │ │ │ │ │ ├── BaseTelemetryAodhServices.java │ │ │ │ │ │ │ ├── BaseTelemetryServices.java │ │ │ │ │ │ │ ├── CapabilitiesServiceImpl.java │ │ │ │ │ │ │ ├── EventServiceImpl.java │ │ │ │ │ │ │ ├── MeterServiceImpl.java │ │ │ │ │ │ │ ├── ResourceServiceImpl.java │ │ │ │ │ │ │ ├── SampleServiceImpl.java │ │ │ │ │ │ │ ├── TelemetryAodhServiceImpl.java │ │ │ │ │ │ │ └── TelemetryServiceImpl.java │ │ │ │ │ │ ├── trove │ │ │ │ │ │ ├── builder │ │ │ │ │ │ │ └── TroveBuilders.java │ │ │ │ │ │ ├── domain │ │ │ │ │ │ │ ├── TroveDatabase.java │ │ │ │ │ │ │ ├── TroveDatabaseUser.java │ │ │ │ │ │ │ ├── TroveDatastore.java │ │ │ │ │ │ │ ├── TroveDatastoreVersion.java │ │ │ │ │ │ │ ├── TroveInstance.java │ │ │ │ │ │ │ ├── TroveInstanceCreate.java │ │ │ │ │ │ │ └── TroveInstanceFlavor.java │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── BaseTroveServices.java │ │ │ │ │ │ │ ├── DBDatabaseServiceImpl.java │ │ │ │ │ │ │ ├── DBDatastoreServiceImpl.java │ │ │ │ │ │ │ ├── DBFlavorServiceImpl.java │ │ │ │ │ │ │ ├── DBInstanceServiceImpl.java │ │ │ │ │ │ │ ├── DBUserServiceImpl.java │ │ │ │ │ │ │ └── TroveServiceImpl.java │ │ │ │ │ │ └── workflow │ │ │ │ │ │ ├── builder │ │ │ │ │ │ └── MistralBuilders.java │ │ │ │ │ │ ├── domain │ │ │ │ │ │ ├── BaseDefinition.java │ │ │ │ │ │ ├── BaseExecution.java │ │ │ │ │ │ ├── MistralActionDefinition.java │ │ │ │ │ │ ├── MistralActionExecution.java │ │ │ │ │ │ ├── MistralCronTrigger.java │ │ │ │ │ │ ├── MistralTaskExecution.java │ │ │ │ │ │ ├── MistralWorkbookDefinition.java │ │ │ │ │ │ ├── MistralWorkflowDefinition.java │ │ │ │ │ │ ├── MistralWorkflowEnvironment.java │ │ │ │ │ │ └── MistralWorkflowExecution.java │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── ActionDefinitionServiceImpl.java │ │ │ │ │ │ ├── ActionExecutionServiceImpl.java │ │ │ │ │ │ ├── BaseMistralService.java │ │ │ │ │ │ ├── CronTriggerServiceImpl.java │ │ │ │ │ │ ├── TaskExecutionServiceImpl.java │ │ │ │ │ │ ├── WorkbookDefinitionServiceImpl.java │ │ │ │ │ │ ├── WorkflowDefinitionServiceImpl.java │ │ │ │ │ │ ├── WorkflowEnvironmentServiceImpl.java │ │ │ │ │ │ ├── WorkflowExecutionServiceImpl.java │ │ │ │ │ │ └── WorkflowServiceImpl.java │ │ │ │ │ └── resources │ │ │ │ │ └── META-INF │ │ │ │ │ └── services │ │ │ │ │ └── org.openstack4j.api.APIProvider │ │ │ ├── distribution │ │ │ │ ├── pom.xml │ │ │ │ └── settings.xml │ │ │ └── pom.xml │ │ ├── pom.xml │ │ └── vmware │ │ │ ├── vapi-authentication-2.34.0.jar │ │ │ ├── vapi-runtime-2.34.0.jar │ │ │ ├── vapi-samltoken-2.34.0.jar │ │ │ └── vsphereautomation-client-sdk-3.9.0.jar │ └── pom.xml └── sdk │ ├── backend │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── fit2cloud │ │ │ │ ├── autoconfigure │ │ │ │ ├── CePermissionChecker.java │ │ │ │ ├── ChargingConfig.java │ │ │ │ ├── DatabaseConfig.java │ │ │ │ ├── JobSettingConfig.java │ │ │ │ ├── JwtInitConfig.java │ │ │ │ ├── LocaleConfig.java │ │ │ │ ├── MyBatisPlusConfig.java │ │ │ │ ├── PluginsContextHolder.java │ │ │ │ ├── QuartzConfig.java │ │ │ │ ├── RedisConfig.java │ │ │ │ ├── RestTemplateConfig.java │ │ │ │ ├── SecurityConfig.java │ │ │ │ ├── ServerInfo.java │ │ │ │ ├── SwaggerOpenApiConfig.java │ │ │ │ └── ThreadPoolConfig.java │ │ │ │ ├── base │ │ │ │ ├── entity │ │ │ │ │ ├── BillPolicy.java │ │ │ │ │ ├── BillPolicyAccount.java │ │ │ │ │ ├── BillPolicyCloudAccountMapping.java │ │ │ │ │ ├── BillPolicyDetails.java │ │ │ │ │ ├── BillPolicyDetailsAccount.java │ │ │ │ │ ├── CloudAccount.java │ │ │ │ │ ├── DataConvertVersion.java │ │ │ │ │ ├── JobRecord.java │ │ │ │ │ ├── JobRecordResourceMapping.java │ │ │ │ │ ├── Organization.java │ │ │ │ │ ├── RecycleBin.java │ │ │ │ │ ├── ResourceInstance.java │ │ │ │ │ ├── ResourceInstanceState.java │ │ │ │ │ ├── Role.java │ │ │ │ │ ├── RolePermission.java │ │ │ │ │ ├── SystemParameter.java │ │ │ │ │ ├── User.java │ │ │ │ │ ├── UserRole.java │ │ │ │ │ ├── VmCloudDatastore.java │ │ │ │ │ ├── VmCloudDisk.java │ │ │ │ │ ├── VmCloudHost.java │ │ │ │ │ ├── VmCloudImage.java │ │ │ │ │ ├── VmCloudServer.java │ │ │ │ │ ├── VmCloudServerStatusTiming.java │ │ │ │ │ ├── Workspace.java │ │ │ │ │ └── json_entity │ │ │ │ │ │ ├── BillingField.java │ │ │ │ │ │ └── PackagePriceBillingPolicy.java │ │ │ │ ├── handler │ │ │ │ │ ├── BillingFieldArrayTypeHandler.java │ │ │ │ │ ├── CredentialTypeHandler.java │ │ │ │ │ ├── MapTypeHandler.java │ │ │ │ │ └── PackagePriceBillingPolicyTypeHandler.java │ │ │ │ ├── mapper │ │ │ │ │ ├── BaseAccountJobMapper.xml │ │ │ │ │ ├── BaseBillPolicyCloudAccountMappingMapper.java │ │ │ │ │ ├── BaseBillPolicyCloudAccountMappingMapper.xml │ │ │ │ │ ├── BaseBillPolicyDetailsMapper.java │ │ │ │ │ ├── BaseBillPolicyDetailsMapper.xml │ │ │ │ │ ├── BaseBillPolicyMapper.java │ │ │ │ │ ├── BaseBillPolicyMapper.xml │ │ │ │ │ ├── BaseCloudAccountMapper.java │ │ │ │ │ ├── BaseCloudAccountMapper.xml │ │ │ │ │ ├── BaseDataConvertVersionMapper.java │ │ │ │ │ ├── BaseDataConvertVersionMapper.xml │ │ │ │ │ ├── BaseJobRecordMapper.java │ │ │ │ │ ├── BaseJobRecordMapper.xml │ │ │ │ │ ├── BaseJobRecordResourceMappingMapper.java │ │ │ │ │ ├── BaseJobRecordResourceMappingMapper.xml │ │ │ │ │ ├── BaseOrganizationMapper.java │ │ │ │ │ ├── BaseOrganizationMapper.xml │ │ │ │ │ ├── BaseRecycleBinMapper.java │ │ │ │ │ ├── BaseRecycleBinMapper.xml │ │ │ │ │ ├── BaseResourceInstanceMapper.java │ │ │ │ │ ├── BaseResourceInstanceMapper.xml │ │ │ │ │ ├── BaseResourceInstanceStateMapper.java │ │ │ │ │ ├── BaseResourceInstanceStateMapper.xml │ │ │ │ │ ├── BaseRoleMapper.java │ │ │ │ │ ├── BaseRoleMapper.xml │ │ │ │ │ ├── BaseRolePermissionMapper.java │ │ │ │ │ ├── BaseRolePermissionMapper.xml │ │ │ │ │ ├── BaseSystemParameterMapper.java │ │ │ │ │ ├── BaseSystemParameterMapper.xml │ │ │ │ │ ├── BaseUserMapper.java │ │ │ │ │ ├── BaseUserMapper.xml │ │ │ │ │ ├── BaseUserRoleMapper.java │ │ │ │ │ ├── BaseUserRoleMapper.xml │ │ │ │ │ ├── BaseVmCloudDatastoreMapper.java │ │ │ │ │ ├── BaseVmCloudDatastoreMapper.xml │ │ │ │ │ ├── BaseVmCloudDiskMapper.java │ │ │ │ │ ├── BaseVmCloudDiskMapper.xml │ │ │ │ │ ├── BaseVmCloudHostMapper.java │ │ │ │ │ ├── BaseVmCloudHostMapper.xml │ │ │ │ │ ├── BaseVmCloudImageMapper.java │ │ │ │ │ ├── BaseVmCloudImageMapper.xml │ │ │ │ │ ├── BaseVmCloudServerMapper.java │ │ │ │ │ ├── BaseVmCloudServerMapper.xml │ │ │ │ │ ├── BaseVmCloudServerStatusTimingMapper.java │ │ │ │ │ ├── BaseVmCloudServerStatusTimingMapper.xml │ │ │ │ │ ├── BaseWorkspaceMapper.java │ │ │ │ │ └── BaseWorkspaceMapper.xml │ │ │ │ └── service │ │ │ │ │ ├── IBaseBillPolicyCloudAccountMappingService.java │ │ │ │ │ ├── IBaseBillPolicyDetailsService.java │ │ │ │ │ ├── IBaseBillPolicyService.java │ │ │ │ │ ├── IBaseCloudAccountService.java │ │ │ │ │ ├── IBaseDataConvertVersionService.java │ │ │ │ │ ├── IBaseJobRecordResourceMappingService.java │ │ │ │ │ ├── IBaseJobRecordService.java │ │ │ │ │ ├── IBaseOrganizationService.java │ │ │ │ │ ├── IBaseRecycleBinService.java │ │ │ │ │ ├── IBaseResourceInstanceService.java │ │ │ │ │ ├── IBaseResourceInstanceStateService.java │ │ │ │ │ ├── IBaseRolePermissionService.java │ │ │ │ │ ├── IBaseRoleService.java │ │ │ │ │ ├── IBaseSystemParameterService.java │ │ │ │ │ ├── IBaseUserRoleService.java │ │ │ │ │ ├── IBaseUserService.java │ │ │ │ │ ├── IBaseVmCloudDatastoreService.java │ │ │ │ │ ├── IBaseVmCloudDiskService.java │ │ │ │ │ ├── IBaseVmCloudHostService.java │ │ │ │ │ ├── IBaseVmCloudImageService.java │ │ │ │ │ ├── IBaseVmCloudServerService.java │ │ │ │ │ ├── IBaseVmCloudServerStatusTimingService.java │ │ │ │ │ ├── IBaseWorkspaceService.java │ │ │ │ │ └── impl │ │ │ │ │ ├── BaseBillPolicyCloudAccountMappingServiceImpl.java │ │ │ │ │ ├── BaseBillPolicyDetailsServiceImpl.java │ │ │ │ │ ├── BaseBillPolicyServiceImpl.java │ │ │ │ │ ├── BaseCloudAccountServiceImpl.java │ │ │ │ │ ├── BaseDataConvertVersionServiceImpl.java │ │ │ │ │ ├── BaseJobRecordResourceMappingServiceImpl.java │ │ │ │ │ ├── BaseJobRecordServiceImpl.java │ │ │ │ │ ├── BaseOrganizationServiceImpl.java │ │ │ │ │ ├── BaseRecycleBinServiceImpl.java │ │ │ │ │ ├── BaseResourceInstanceServiceImpl.java │ │ │ │ │ ├── BaseResourceInstanceStateServiceImpl.java │ │ │ │ │ ├── BaseRolePermissionServiceImpl.java │ │ │ │ │ ├── BaseRoleServiceImpl.java │ │ │ │ │ ├── BaseSystemParameterServiceImpl.java │ │ │ │ │ ├── BaseUserRoleServiceImpl.java │ │ │ │ │ ├── BaseUserServiceImpl.java │ │ │ │ │ ├── BaseVmCloudDatastoreServiceImpl.java │ │ │ │ │ ├── BaseVmCloudDiskServiceImpl.java │ │ │ │ │ ├── BaseVmCloudHostServiceImpl.java │ │ │ │ │ ├── BaseVmCloudImageServiceImpl.java │ │ │ │ │ ├── BaseVmCloudServerServiceImpl.java │ │ │ │ │ ├── BaseVmCloudServerStatusTimingServiceImpl.java │ │ │ │ │ └── BaseWorkspaceServiceImpl.java │ │ │ │ ├── common │ │ │ │ ├── advice │ │ │ │ │ ├── ResponseResultHandlerAdvice.java │ │ │ │ │ └── annnotaion │ │ │ │ │ │ └── TokenRenewal.java │ │ │ │ ├── charging │ │ │ │ │ ├── constants │ │ │ │ │ │ ├── BillModeConstants.java │ │ │ │ │ │ ├── BillingGranularityConstants.java │ │ │ │ │ │ ├── BillingInstanceStateConstants.java │ │ │ │ │ │ └── UnitPriceConstants.java │ │ │ │ │ ├── entity │ │ │ │ │ │ ├── BillingFieldMeta.java │ │ │ │ │ │ ├── InstanceBill.java │ │ │ │ │ │ ├── InstanceRecord.java │ │ │ │ │ │ ├── InstanceState.java │ │ │ │ │ │ └── UnitPrice.java │ │ │ │ │ ├── generation │ │ │ │ │ │ ├── BillingGeneration.java │ │ │ │ │ │ └── impl │ │ │ │ │ │ │ └── SimpleBillingGeneration.java │ │ │ │ │ ├── instance │ │ │ │ │ │ ├── InstanceRecordMappingHandler.java │ │ │ │ │ │ ├── InstanceStateRecorder.java │ │ │ │ │ │ └── impl │ │ │ │ │ │ │ └── SimpleInstanceStateRecorder.java │ │ │ │ │ ├── policy │ │ │ │ │ │ ├── BillingPolicy.java │ │ │ │ │ │ ├── InstanceStatePolicy.java │ │ │ │ │ │ └── impl │ │ │ │ │ │ │ ├── DiskInstanceStatePolicy.java │ │ │ │ │ │ │ ├── MysqlInstanceStatePolicy.java │ │ │ │ │ │ │ ├── SimpleAccurateBillingPolicy.java │ │ │ │ │ │ │ └── SimpleParticleBillingPolicy.java │ │ │ │ │ └── setting │ │ │ │ │ │ ├── BillSetting.java │ │ │ │ │ │ └── impl │ │ │ │ │ │ └── SimpleBillingSetting.java │ │ │ │ ├── constants │ │ │ │ │ ├── ChargeTypeConstants.java │ │ │ │ │ ├── CloudAccountConstants.java │ │ │ │ │ ├── GlobalErrorCodeConstants.java │ │ │ │ │ ├── IpConstants.java │ │ │ │ │ ├── JobConstants.java │ │ │ │ │ ├── JobStatusConstants.java │ │ │ │ │ ├── JobTypeConstants.java │ │ │ │ │ ├── Language.java │ │ │ │ │ ├── OrganizationConstants.java │ │ │ │ │ ├── ParamConstants.java │ │ │ │ │ ├── RecycleBinStatusConstants.java │ │ │ │ │ ├── RedisConstants.java │ │ │ │ │ ├── ResourceTypeConstants.java │ │ │ │ │ ├── RoleConstants.java │ │ │ │ │ ├── SensitiveFieldConstants.java │ │ │ │ │ ├── SystemUserConstants.java │ │ │ │ │ └── WorkspaceConstants.java │ │ │ │ ├── db_convert │ │ │ │ │ ├── DBConvert.java │ │ │ │ │ └── SpringBeanDBConvertFactory.java │ │ │ │ ├── es │ │ │ │ │ ├── ElasticSearchConfig.java │ │ │ │ │ ├── ElasticsearchProvide.java │ │ │ │ │ └── constants │ │ │ │ │ │ ├── EsErrorCodeConstants.java │ │ │ │ │ │ └── IndexConstants.java │ │ │ │ ├── event │ │ │ │ │ ├── Emit.java │ │ │ │ │ ├── EventListener.java │ │ │ │ │ ├── annotaion │ │ │ │ │ │ ├── Emit.java │ │ │ │ │ │ └── Event.java │ │ │ │ │ ├── aspect │ │ │ │ │ │ └── SimpleAspect.java │ │ │ │ │ └── impl │ │ │ │ │ │ ├── EmitTemplate.java │ │ │ │ │ │ ├── EventListenerTemplate.java │ │ │ │ │ │ └── SimpleElArray.java │ │ │ │ ├── exception │ │ │ │ │ └── Fit2cloudException.java │ │ │ │ ├── form │ │ │ │ │ ├── annotaion │ │ │ │ │ │ ├── Form.java │ │ │ │ │ │ ├── FormConfirmInfo.java │ │ │ │ │ │ ├── FormConfirmInfos.java │ │ │ │ │ │ ├── FormGroupInfo.java │ │ │ │ │ │ ├── FormGroupInfos.java │ │ │ │ │ │ ├── FormStepInfo.java │ │ │ │ │ │ └── FormStepInfos.java │ │ │ │ │ ├── constants │ │ │ │ │ │ └── InputType.java │ │ │ │ │ ├── util │ │ │ │ │ │ └── FormUtil.java │ │ │ │ │ └── vo │ │ │ │ │ │ ├── BaseArrayContainerForm.java │ │ │ │ │ │ ├── BaseContainerForm.java │ │ │ │ │ │ ├── BaseCountContainerForm.java │ │ │ │ │ │ ├── BaseCountTabContainerForm.java │ │ │ │ │ │ ├── ComboboxForm.java │ │ │ │ │ │ ├── DiskConfigForm.java │ │ │ │ │ │ ├── Form.java │ │ │ │ │ │ ├── FormObject.java │ │ │ │ │ │ ├── InputNumberForm.java │ │ │ │ │ │ ├── InputTextForm.java │ │ │ │ │ │ ├── LabelTextForm.java │ │ │ │ │ │ ├── LineInputNumberForm.java │ │ │ │ │ │ ├── MultiSelectForm.java │ │ │ │ │ │ ├── PasswordForm.java │ │ │ │ │ │ ├── RadioForm.java │ │ │ │ │ │ ├── RegexInputForm.java │ │ │ │ │ │ ├── SingleSelectForm.java │ │ │ │ │ │ ├── SwitchForm.java │ │ │ │ │ │ ├── TableCheckboxForm.java │ │ │ │ │ │ ├── TableRadioForm.java │ │ │ │ │ │ ├── aliyun │ │ │ │ │ │ ├── AliyunDiskConfig.java │ │ │ │ │ │ ├── AliyunInstanceType.java │ │ │ │ │ │ ├── AliyunNetConfig.java │ │ │ │ │ │ └── AliyunServerInfoForm.java │ │ │ │ │ │ ├── huawei │ │ │ │ │ │ ├── DiskConfigForm.java │ │ │ │ │ │ ├── HuaweiPasswordInfoForm.java │ │ │ │ │ │ ├── InstanceSpecForm.java │ │ │ │ │ │ ├── NameConfigForm.java │ │ │ │ │ │ ├── NetworkConfigForm.java │ │ │ │ │ │ └── OsConfigForm.java │ │ │ │ │ │ ├── openstack │ │ │ │ │ │ ├── DiskConfigForm.java │ │ │ │ │ │ ├── FlavorForm.java │ │ │ │ │ │ ├── NetworkConfigForm.java │ │ │ │ │ │ ├── SecurityGroupConfigForm.java │ │ │ │ │ │ └── ServerInfoForm.java │ │ │ │ │ │ ├── tencent │ │ │ │ │ │ ├── TencentDiskConfig.java │ │ │ │ │ │ ├── TencentInstanceType.java │ │ │ │ │ │ ├── TencentNetConfig.java │ │ │ │ │ │ └── TencentServerInfoForm.java │ │ │ │ │ │ └── vsphere │ │ │ │ │ │ ├── ClusterForm.java │ │ │ │ │ │ ├── ComputeConfigForm.java │ │ │ │ │ │ ├── DatastoreForm.java │ │ │ │ │ │ ├── DiskConfigForm.java │ │ │ │ │ │ ├── NetworkAdapterForm.java │ │ │ │ │ │ ├── PasswordInfoForm.java │ │ │ │ │ │ ├── ServerInfoForm.java │ │ │ │ │ │ └── TemplateForm.java │ │ │ │ ├── job │ │ │ │ │ ├── actuator │ │ │ │ │ │ ├── JobActuator.java │ │ │ │ │ │ └── abs │ │ │ │ │ │ │ └── SimpleJobActuator.java │ │ │ │ │ ├── context │ │ │ │ │ │ ├── JobContext.java │ │ │ │ │ │ ├── StepContext.java │ │ │ │ │ │ └── impl │ │ │ │ │ │ │ └── SimpleJobContext.java │ │ │ │ │ ├── job │ │ │ │ │ │ ├── Job.java │ │ │ │ │ │ └── SimpleJob.java │ │ │ │ │ ├── result │ │ │ │ │ │ ├── Result.java │ │ │ │ │ │ └── impl │ │ │ │ │ │ │ └── SimpleResult.java │ │ │ │ │ └── step │ │ │ │ │ │ ├── JobStep.java │ │ │ │ │ │ └── impl │ │ │ │ │ │ └── SimpleJobStep.java │ │ │ │ ├── job_record │ │ │ │ │ ├── JobLink.java │ │ │ │ │ ├── JobLinkTypeConstants.java │ │ │ │ │ └── JobRecordParam.java │ │ │ │ ├── log │ │ │ │ │ ├── annotation │ │ │ │ │ │ ├── OperatedLog.java │ │ │ │ │ │ └── OperatedLogFieldConver.java │ │ │ │ │ ├── aspect │ │ │ │ │ │ └── OperatedLogAspect.java │ │ │ │ │ ├── cache │ │ │ │ │ │ ├── BaseCloudAccountCache.java │ │ │ │ │ │ ├── BaseCloudDiskCache.java │ │ │ │ │ │ ├── BaseCloudServerCache.java │ │ │ │ │ │ ├── BaseOrgCache.java │ │ │ │ │ │ ├── BaseRoleCache.java │ │ │ │ │ │ ├── BaseUserCache.java │ │ │ │ │ │ └── BaseWorkspaceCache.java │ │ │ │ │ ├── constants │ │ │ │ │ │ ├── OperatedTypeEnum.java │ │ │ │ │ │ └── ResourceTypeEnum.java │ │ │ │ │ ├── conver │ │ │ │ │ │ ├── ResourceConvert.java │ │ │ │ │ │ └── impl │ │ │ │ │ │ │ ├── CloudResourceConvert.java │ │ │ │ │ │ │ └── DefaultResourceConvert.java │ │ │ │ │ ├── entity │ │ │ │ │ │ ├── OperatedLogVO.java │ │ │ │ │ │ └── SystemLogVO.java │ │ │ │ │ └── utils │ │ │ │ │ │ ├── IpUtil.java │ │ │ │ │ │ ├── LogUtil.java │ │ │ │ │ │ └── SpelUtil.java │ │ │ │ ├── page │ │ │ │ │ └── PageImpl.java │ │ │ │ ├── platform │ │ │ │ │ └── credential │ │ │ │ │ │ ├── Credential.java │ │ │ │ │ │ └── impl │ │ │ │ │ │ ├── AliCredential.java │ │ │ │ │ │ ├── HuaweiCredential.java │ │ │ │ │ │ ├── OpenStackCredential.java │ │ │ │ │ │ ├── ProxmoxCredential.java │ │ │ │ │ │ ├── TencentCredential.java │ │ │ │ │ │ └── VsphereCredential.java │ │ │ │ ├── provider │ │ │ │ │ ├── AbstractBaseCloudProvider.java │ │ │ │ │ ├── IBaseCloudProvider.java │ │ │ │ │ ├── entity │ │ │ │ │ │ ├── ActionInfo.java │ │ │ │ │ │ ├── F2CBalance.java │ │ │ │ │ │ ├── F2CBasePerfMetricMonitorData.java │ │ │ │ │ │ ├── F2CEntityType.java │ │ │ │ │ │ └── F2CPerfMetricMonitorData.java │ │ │ │ │ ├── exception │ │ │ │ │ │ ├── ReTryException.java │ │ │ │ │ │ ├── SkipPageException.java │ │ │ │ │ │ └── UnsupportedRegionException.java │ │ │ │ │ ├── impl │ │ │ │ │ │ ├── aliyun │ │ │ │ │ │ │ ├── AliyunBaseCloudProvider.java │ │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ │ ├── AliyunBaseCloudApi.java │ │ │ │ │ │ │ │ └── AliyunBaseMethodApi.java │ │ │ │ │ │ │ └── entity │ │ │ │ │ │ │ │ ├── credential │ │ │ │ │ │ │ │ └── AliyunBaseCredential.java │ │ │ │ │ │ │ │ └── request │ │ │ │ │ │ │ │ ├── GetAccountBalanceRequest.java │ │ │ │ │ │ │ │ ├── GetBucketsRequest.java │ │ │ │ │ │ │ │ └── GetRegionsRequest.java │ │ │ │ │ │ ├── huawei │ │ │ │ │ │ │ ├── HuaweiBaseCloudProvider.java │ │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ │ ├── HuaweiBaseCloudApi.java │ │ │ │ │ │ │ │ └── HuaweiBaseMethodApi.java │ │ │ │ │ │ │ └── entity │ │ │ │ │ │ │ │ ├── credential │ │ │ │ │ │ │ │ └── HuaweiBaseCredential.java │ │ │ │ │ │ │ │ └── request │ │ │ │ │ │ │ │ ├── GetAccountBalanceRequest.java │ │ │ │ │ │ │ │ ├── GetBucketsRequest.java │ │ │ │ │ │ │ │ └── GetRegionsRequest.java │ │ │ │ │ │ ├── openstack │ │ │ │ │ │ │ ├── OpenStackBaseCloudProvider.java │ │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ │ └── OpenStackBaseMethodApi.java │ │ │ │ │ │ │ ├── entity │ │ │ │ │ │ │ │ ├── Zone.java │ │ │ │ │ │ │ │ └── request │ │ │ │ │ │ │ │ │ ├── BaseRequest.java │ │ │ │ │ │ │ │ │ ├── GetRegionsRequest.java │ │ │ │ │ │ │ │ │ └── OpenStackBaseRequest.java │ │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ │ └── OpenStackBaseUtils.java │ │ │ │ │ │ ├── proxmox │ │ │ │ │ │ │ ├── ProxmoxBaseCloudProvider.java │ │ │ │ │ │ │ └── client │ │ │ │ │ │ │ │ ├── MethodType.java │ │ │ │ │ │ │ │ ├── PveClient.java │ │ │ │ │ │ │ │ ├── PveClientBase.java │ │ │ │ │ │ │ │ ├── ResponseType.java │ │ │ │ │ │ │ │ ├── Result.java │ │ │ │ │ │ │ │ ├── entity │ │ │ │ │ │ │ │ ├── Cluster.java │ │ │ │ │ │ │ │ ├── ClusterNode.java │ │ │ │ │ │ │ │ ├── DataStore.java │ │ │ │ │ │ │ │ ├── Disk.java │ │ │ │ │ │ │ │ ├── Host.java │ │ │ │ │ │ │ │ ├── InstanceId.java │ │ │ │ │ │ │ │ ├── Node.java │ │ │ │ │ │ │ │ ├── NodeStatus.java │ │ │ │ │ │ │ │ ├── ParentClusterNode.java │ │ │ │ │ │ │ │ ├── Qemu.java │ │ │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ │ │ ├── Config.java │ │ │ │ │ │ │ │ │ ├── ConfigBoot.java │ │ │ │ │ │ │ │ │ ├── Description.java │ │ │ │ │ │ │ │ │ ├── Disk.java │ │ │ │ │ │ │ │ │ ├── DiskStatusInfo.java │ │ │ │ │ │ │ │ │ ├── MetaConfig.java │ │ │ │ │ │ │ │ │ ├── NetworkInterface.java │ │ │ │ │ │ │ │ │ └── UnUsed.java │ │ │ │ │ │ │ │ └── constants │ │ │ │ │ │ │ │ │ └── OsType.java │ │ │ │ │ │ │ │ └── serializer │ │ │ │ │ │ │ │ ├── DataStorageFormatSerialize.java │ │ │ │ │ │ │ │ └── InstanceIdSerialize.java │ │ │ │ │ │ ├── tencent │ │ │ │ │ │ │ ├── TencentBaseCloudProvider.java │ │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ │ ├── TencentBaseCloudApi.java │ │ │ │ │ │ │ │ └── TencentBaseMethodApi.java │ │ │ │ │ │ │ └── entity │ │ │ │ │ │ │ │ ├── credential │ │ │ │ │ │ │ │ └── TencentBaseCredential.java │ │ │ │ │ │ │ │ └── request │ │ │ │ │ │ │ │ ├── GetAccountBalanceRequest.java │ │ │ │ │ │ │ │ ├── GetBucketsRequest.java │ │ │ │ │ │ │ │ └── GetRegionsRequest.java │ │ │ │ │ │ └── vsphere │ │ │ │ │ │ │ ├── VsphereBaseCloudProvider.java │ │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ └── VsphereBaseMethodApi.java │ │ │ │ │ │ │ ├── entity │ │ │ │ │ │ │ └── request │ │ │ │ │ │ │ │ ├── BaseRequest.java │ │ │ │ │ │ │ │ ├── GetRegionsRequest.java │ │ │ │ │ │ │ │ └── VsphereBaseRequest.java │ │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ ├── ClsApiClient.java │ │ │ │ │ │ │ ├── SslUtil.java │ │ │ │ │ │ │ ├── TrustAllTrustManager.java │ │ │ │ │ │ │ ├── VapiAuthenticationHelper.java │ │ │ │ │ │ │ └── VsphereClient.java │ │ │ │ │ └── util │ │ │ │ │ │ ├── CommonUtil.java │ │ │ │ │ │ └── PageUtil.java │ │ │ │ ├── query │ │ │ │ │ ├── annotaion │ │ │ │ │ │ └── Query.java │ │ │ │ │ └── convert │ │ │ │ │ │ └── QueryFieldValueConvert.java │ │ │ │ ├── scheduler │ │ │ │ │ ├── SchedulerService.java │ │ │ │ │ ├── constants │ │ │ │ │ │ └── JobErrorCodeConstants.java │ │ │ │ │ ├── entity │ │ │ │ │ │ ├── QuartzJobDetail.java │ │ │ │ │ │ └── SimpleCron.java │ │ │ │ │ ├── handler │ │ │ │ │ │ ├── AsyncJob.java │ │ │ │ │ │ └── ByteTypeHandler.java │ │ │ │ │ ├── impl │ │ │ │ │ │ └── QuartzSchedulerServiceImpl.java │ │ │ │ │ ├── mapper │ │ │ │ │ │ ├── QrtzTriggersMapper.xml │ │ │ │ │ │ └── QuzrtzMapper.java │ │ │ │ │ └── util │ │ │ │ │ │ └── CronUtils.java │ │ │ │ ├── utils │ │ │ │ │ ├── CeGrantedAuthorityListTypeHandler.java │ │ │ │ │ ├── ChargingUtil.java │ │ │ │ │ ├── ClassScanUtil.java │ │ │ │ │ ├── ColumnNameUtil.java │ │ │ │ │ ├── CurrentUserUtils.java │ │ │ │ │ ├── CustomCellWriteHeightConfig.java │ │ │ │ │ ├── CustomCellWriteWidthConfig.java │ │ │ │ │ ├── DateUtil.java │ │ │ │ │ ├── EasyExcelUtils.java │ │ │ │ │ ├── FileUtils.java │ │ │ │ │ ├── IpChecker.java │ │ │ │ │ ├── JsonUtil.java │ │ │ │ │ ├── JwtTokenUtils.java │ │ │ │ │ ├── LocaleUtil.java │ │ │ │ │ ├── MD5Util.java │ │ │ │ │ ├── OrganizationUtil.java │ │ │ │ │ ├── PageUtil.java │ │ │ │ │ ├── QueryUtil.java │ │ │ │ │ ├── RSAUtil.java │ │ │ │ │ ├── SensitiveFieldUtils.java │ │ │ │ │ ├── ServiceUtil.java │ │ │ │ │ └── SpringUtil.java │ │ │ │ └── validator │ │ │ │ │ ├── CustomQueryWrapperValidator.java │ │ │ │ │ ├── CustomValidator.java │ │ │ │ │ ├── ParameterCalibration.java │ │ │ │ │ ├── annnotaion │ │ │ │ │ ├── CustomQueryWrapperValidated.java │ │ │ │ │ └── CustomValidated.java │ │ │ │ │ ├── function │ │ │ │ │ └── ValidatorFunction.java │ │ │ │ │ ├── group │ │ │ │ │ └── ValidationGroup.java │ │ │ │ │ └── handler │ │ │ │ │ ├── ExistHandler.java │ │ │ │ │ └── ExistQueryWrapperValidatedHandler.java │ │ │ │ ├── controller │ │ │ │ ├── BaseBillingPolicyController.java │ │ │ │ ├── BaseCloudAccountController.java │ │ │ │ ├── BaseOrganizationController.java │ │ │ │ ├── BaseRoleController.java │ │ │ │ ├── BaseUserController.java │ │ │ │ ├── BaseWorkspaceController.java │ │ │ │ ├── EventController.java │ │ │ │ ├── IndexController.java │ │ │ │ ├── MenuController.java │ │ │ │ ├── ModuleController.java │ │ │ │ ├── PerfMonitorQueryController.java │ │ │ │ ├── PermissionController.java │ │ │ │ ├── ProviderResourceController.java │ │ │ │ ├── SystemParameterController.java │ │ │ │ ├── editor │ │ │ │ │ ├── CredentialEditor.java │ │ │ │ │ ├── OrderEditor.java │ │ │ │ │ └── advice │ │ │ │ │ │ └── GlobalControllerAdiviceController.java │ │ │ │ ├── error │ │ │ │ │ ├── GlobalErrorAttributes.java │ │ │ │ │ └── GlobalErrorController.java │ │ │ │ └── handler │ │ │ │ │ └── ResultHolder.java │ │ │ │ ├── dto │ │ │ │ ├── CeBaseObject.java │ │ │ │ ├── InitJobRecordDTO.java │ │ │ │ ├── ListInstanceBillRequest.java │ │ │ │ ├── PerfMonitorEchartsDTO.java │ │ │ │ ├── PlatformResponse.java │ │ │ │ ├── UserDto.java │ │ │ │ ├── UserRoleDto.java │ │ │ │ ├── charging │ │ │ │ │ ├── BillingFieldMetaSetting.java │ │ │ │ │ └── ChargingModuleInfo.java │ │ │ │ ├── job │ │ │ │ │ ├── JobModuleInfo.java │ │ │ │ │ └── JobSetting.java │ │ │ │ ├── module │ │ │ │ │ ├── Menu.java │ │ │ │ │ ├── MenuPermission.java │ │ │ │ │ ├── Menus.java │ │ │ │ │ ├── Module.java │ │ │ │ │ └── ModuleInfo.java │ │ │ │ ├── operation │ │ │ │ │ └── VmCloudServerStatusTimingDTO.java │ │ │ │ ├── permission │ │ │ │ │ ├── ModulePermission.java │ │ │ │ │ ├── Permission.java │ │ │ │ │ └── PermissionGroup.java │ │ │ │ └── security │ │ │ │ │ └── SecurityUser.java │ │ │ │ ├── es │ │ │ │ ├── entity │ │ │ │ │ ├── OperatedLog.java │ │ │ │ │ ├── PerfMetricMonitorData.java │ │ │ │ │ └── SystemLog.java │ │ │ │ └── repository │ │ │ │ │ ├── OperatedLogRepository.java │ │ │ │ │ ├── PerfMetricMonitorDataRepository.java │ │ │ │ │ └── SystemLogRepository.java │ │ │ │ ├── quartz │ │ │ │ └── QuartzInstanceIdGenerator.java │ │ │ │ ├── redis │ │ │ │ └── RedisService.java │ │ │ │ ├── request │ │ │ │ ├── LoginRequest.java │ │ │ │ ├── PerfMonitorRequest.java │ │ │ │ ├── cloud_account │ │ │ │ │ ├── CloudAccountJobItem.java │ │ │ │ │ ├── CloudAccountModuleJob.java │ │ │ │ │ └── SyncRequest.java │ │ │ │ ├── pub │ │ │ │ │ ├── OrderRequest.java │ │ │ │ │ ├── PageOrderRequest.java │ │ │ │ │ ├── PageOrderRequestInterface.java │ │ │ │ │ └── PageRequest.java │ │ │ │ ├── role │ │ │ │ │ ├── RolePageRequest.java │ │ │ │ │ └── RoleRequest.java │ │ │ │ └── user │ │ │ │ │ ├── EditUserRequest.java │ │ │ │ │ └── ResetPwdRequest.java │ │ │ │ ├── response │ │ │ │ ├── JobRecordResourceResponse.java │ │ │ │ ├── NodeTree.java │ │ │ │ ├── OrganizationTree.java │ │ │ │ ├── SourceTreeObject.java │ │ │ │ ├── UserInfoResponse.java │ │ │ │ └── cloud_account │ │ │ │ │ ├── AccountJobRecordResponse.java │ │ │ │ │ ├── ResourceCountResponse.java │ │ │ │ │ └── SyncResource.java │ │ │ │ ├── security │ │ │ │ ├── CeGrantedAuthority.java │ │ │ │ ├── CeUsernamePasswordAuthenticationToken.java │ │ │ │ ├── MD5PasswordEncoder.java │ │ │ │ ├── SecurityDSL.java │ │ │ │ ├── UserAuthDetailsService.java │ │ │ │ ├── filter │ │ │ │ │ ├── JwtTokenAuthFilter.java │ │ │ │ │ └── UserLoginFilter.java │ │ │ │ └── permission │ │ │ │ │ ├── CeMethodSecurityExpressionHandler.java │ │ │ │ │ ├── CeMethodSecurityExpressionRoot.java │ │ │ │ │ └── CeSecurityExpressionRoot.java │ │ │ │ └── service │ │ │ │ ├── BasePermissionService.java │ │ │ │ ├── BaseSyncService.java │ │ │ │ ├── CommonService.java │ │ │ │ ├── IResourceCountService.java │ │ │ │ ├── JobRecordCommonService.java │ │ │ │ ├── MenuService.java │ │ │ │ ├── OrganizationCommonService.java │ │ │ │ ├── PerfMonitorService.java │ │ │ │ ├── TokenPoolService.java │ │ │ │ └── WorkspaceCommonService.java │ │ └── resources │ │ │ ├── META-INF │ │ │ ├── spring.factories │ │ │ └── spring │ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ │ ├── commons.properties │ │ │ ├── i18n │ │ │ ├── commons.properties │ │ │ ├── commons_en_US.properties │ │ │ ├── commons_zh_CN.properties │ │ │ └── commons_zh_TW.properties │ │ │ ├── logback-aop.xml │ │ │ ├── quartz │ │ │ └── tables.sql │ │ │ └── template │ │ │ └── entity.java.ftl │ │ └── test │ │ └── java │ │ ├── MyBatisPlusGenerator.java │ │ └── com │ │ └── fit2cloud │ │ ├── BaseTestApplication.java │ │ └── test │ │ └── MyTest.java │ ├── frontend │ ├── .eslintrc.cjs │ ├── .gitignore │ ├── .vscode │ │ ├── extensions.json │ │ └── settings.json │ ├── commons │ │ ├── api │ │ │ ├── base │ │ │ │ └── type.ts │ │ │ ├── bil_view │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── cloud_account │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── compliance-view │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── form_resource_api │ │ │ │ └── index.ts │ │ │ ├── licence │ │ │ │ └── index.ts │ │ │ ├── menu │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── module │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── optimize │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── organization │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── permission │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── resource_optimization │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── resource_spread_view │ │ │ │ └── type.ts │ │ │ ├── role │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── server_analysis │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── system_parameter │ │ │ │ └── index.ts │ │ │ ├── user │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── vm_cloud_server │ │ │ │ └── index.ts │ │ │ └── workspace │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ ├── assets │ │ │ ├── CloudExplorer-Lite-01.svg │ │ │ ├── CloudExplorer-Lite-02.svg │ │ │ ├── cloud-account-add-background.jpg │ │ │ ├── img │ │ │ │ ├── cloud-vendor-icon │ │ │ │ │ ├── aliyun.ico │ │ │ │ │ ├── aliyun.png │ │ │ │ │ ├── aws.ico │ │ │ │ │ ├── aws.png │ │ │ │ │ ├── azure.ico │ │ │ │ │ ├── baiduyun.ico │ │ │ │ │ ├── baiduyun.png │ │ │ │ │ ├── f2c.png │ │ │ │ │ ├── favicon.bmp │ │ │ │ │ ├── fusion.ico │ │ │ │ │ ├── google.ico │ │ │ │ │ ├── icon-vsphere.svg │ │ │ │ │ ├── ksyun.ico │ │ │ │ │ ├── kubernetes.ico │ │ │ │ │ ├── logo-aliyun.svg │ │ │ │ │ ├── logo-aws.svg │ │ │ │ │ ├── logo-huawei.svg │ │ │ │ │ ├── logo-openstack.svg │ │ │ │ │ ├── logo-tencent.svg │ │ │ │ │ ├── logo-vmware.svg │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── minio.ico │ │ │ │ │ ├── nutanix.ico │ │ │ │ │ ├── openshift.ico │ │ │ │ │ ├── openstack.ico │ │ │ │ │ ├── powervc.ico │ │ │ │ │ ├── proxmox.ico │ │ │ │ │ ├── qcloud.ico │ │ │ │ │ ├── qingyun.ico │ │ │ │ │ ├── rancher.ico │ │ │ │ │ ├── sangfor.ico │ │ │ │ │ ├── smartx.ico │ │ │ │ │ ├── ucloud.ico │ │ │ │ │ ├── ucloud.png │ │ │ │ │ ├── vcloud.ico │ │ │ │ │ ├── vmware.ico │ │ │ │ │ ├── vxrail.ico │ │ │ │ │ └── zstack.png │ │ │ │ └── status-icon │ │ │ │ │ ├── IconCloseFilled.vue │ │ │ │ │ ├── IconInfoFilled.vue │ │ │ │ │ ├── IconSucceedFilled.vue │ │ │ │ │ ├── IconTesting.vue │ │ │ │ │ ├── IconWait.vue │ │ │ │ │ └── IconWarningFilled.vue │ │ │ ├── license_header.png │ │ │ ├── login-desc.jpg │ │ │ ├── logo_cloud_colorful.svg │ │ │ ├── logo_cloud_white.svg │ │ │ └── white-logo.png │ │ ├── base-directives │ │ │ ├── hasPermission.ts │ │ │ ├── index.ts │ │ │ ├── number.ts │ │ │ └── resize.ts │ │ ├── base-locales │ │ │ ├── index.ts │ │ │ ├── lang │ │ │ │ ├── en.ts │ │ │ │ ├── zh-cn.ts │ │ │ │ └── zh-tw.ts │ │ │ └── 国际化规范.md │ │ ├── base-theme │ │ │ ├── defaultInferData.ts │ │ │ ├── defaultKeyValueData.ts │ │ │ ├── index.ts │ │ │ ├── setting.ts │ │ │ └── type.ts │ │ ├── bus │ │ │ └── index.ts │ │ ├── business │ │ │ ├── about │ │ │ │ └── AboutView.vue │ │ │ ├── app-layout │ │ │ │ └── index.vue │ │ │ ├── base-layout │ │ │ │ ├── home-page │ │ │ │ │ ├── index.vue │ │ │ │ │ └── items │ │ │ │ │ │ ├── BaseModule.vue │ │ │ │ │ │ ├── BaseModuleType.ts │ │ │ │ │ │ ├── MyResources.vue │ │ │ │ │ │ ├── QuickAccess.vue │ │ │ │ │ │ ├── SecurityInfo.vue │ │ │ │ │ │ ├── ServerStatusView.vue │ │ │ │ │ │ ├── UserInfo.vue │ │ │ │ │ │ ├── bill │ │ │ │ │ │ ├── BillCloudAccountDistribution.vue │ │ │ │ │ │ ├── BillModuleGroup.vue │ │ │ │ │ │ ├── BillOverView.vue │ │ │ │ │ │ └── BillTrend.vue │ │ │ │ │ │ └── operation │ │ │ │ │ │ ├── CloudServerIncreaseTrend.vue │ │ │ │ │ │ └── optimize │ │ │ │ │ │ ├── CreateOrEdit.vue │ │ │ │ │ │ ├── RuleItem.vue │ │ │ │ │ │ ├── ServerList.vue │ │ │ │ │ │ ├── ServerOptimization.vue │ │ │ │ │ │ └── ServerOptimizationCard.vue │ │ │ │ └── index.vue │ │ │ ├── cloud-account │ │ │ │ ├── CloudAccountCredentialForm.vue │ │ │ │ ├── CreateCloudAccount.vue │ │ │ │ └── IconReader.vue │ │ │ ├── error-page │ │ │ │ └── NoPermissions.vue │ │ │ ├── help │ │ │ │ └── index.vue │ │ │ ├── login │ │ │ │ └── index.vue │ │ │ ├── module-down-menu │ │ │ │ └── index.vue │ │ │ ├── notification │ │ │ │ └── index.vue │ │ │ ├── person-setting │ │ │ │ ├── ModifyPassword.vue │ │ │ │ ├── PersonInfo.vue │ │ │ │ ├── RoleTag.vue │ │ │ │ ├── SourceChangeDialog.vue │ │ │ │ ├── Ukey.vue │ │ │ │ ├── UserAvatar.vue │ │ │ │ └── index.vue │ │ │ ├── switch-lang │ │ │ │ └── index.vue │ │ │ └── to-do │ │ │ │ └── index.vue │ │ ├── components │ │ │ ├── breadcrumb │ │ │ │ ├── index.vue │ │ │ │ └── type.ts │ │ │ ├── button-tool-bar │ │ │ │ ├── ButtonToolBar.vue │ │ │ │ └── type.ts │ │ │ ├── ce-drawer │ │ │ │ └── index.vue │ │ │ ├── ce-form │ │ │ │ ├── CeFormItem.vue │ │ │ │ ├── CeFormItemLabel.vue │ │ │ │ ├── index.ts │ │ │ │ ├── index.vue │ │ │ │ ├── items │ │ │ │ │ ├── BaseArrayContainer.vue │ │ │ │ │ ├── BaseCountContainer.vue │ │ │ │ │ ├── BaseCountTabContainer.vue │ │ │ │ │ ├── BaseObjectContainer.vue │ │ │ │ │ ├── Combobox.vue │ │ │ │ │ ├── DiskConfig.vue │ │ │ │ │ ├── IntNumber.vue │ │ │ │ │ ├── LabelText.vue │ │ │ │ │ ├── LabelTextInput.vue │ │ │ │ │ ├── LineNumber.vue │ │ │ │ │ ├── MultiSelect.vue │ │ │ │ │ ├── Number.vue │ │ │ │ │ ├── Password.vue │ │ │ │ │ ├── Radio.vue │ │ │ │ │ ├── RadioRaw.vue │ │ │ │ │ ├── RegexInput.vue │ │ │ │ │ ├── SingleSelect.vue │ │ │ │ │ ├── SwitchBtn.vue │ │ │ │ │ ├── TableCheckbox.vue │ │ │ │ │ ├── TableColumn.vue │ │ │ │ │ ├── TableRadio.vue │ │ │ │ │ ├── Text.vue │ │ │ │ │ ├── aliyun │ │ │ │ │ │ ├── AliyunDiskConfigForm.vue │ │ │ │ │ │ └── AliyunServerInfoForm.vue │ │ │ │ │ ├── huawei │ │ │ │ │ │ ├── HuaweiDiskConfigForm.vue │ │ │ │ │ │ ├── HuaweiNameConfigForm.vue │ │ │ │ │ │ └── HuaweiPasswordInfoForm.vue │ │ │ │ │ ├── openstack │ │ │ │ │ │ ├── OpenStackDiskConfigForm.vue │ │ │ │ │ │ ├── OpenStackFlavorForm.vue │ │ │ │ │ │ ├── OpenStackNetworkConfigForm.vue │ │ │ │ │ │ ├── OpenStackSecurityGroupConfigForm.vue │ │ │ │ │ │ └── OpenStackServerInfoForm.vue │ │ │ │ │ ├── table-items │ │ │ │ │ │ └── ProgressTableItem.vue │ │ │ │ │ ├── tencent │ │ │ │ │ │ ├── TencentDiskConfigForm.vue │ │ │ │ │ │ ├── TencentInstanceTypeForm.vue │ │ │ │ │ │ └── TencentServerInfoForm.vue │ │ │ │ │ └── vsphere │ │ │ │ │ │ ├── VsphereClusterForm.vue │ │ │ │ │ │ ├── VsphereComputeConfigForm.vue │ │ │ │ │ │ ├── VsphereDatastoreForm.vue │ │ │ │ │ │ ├── VsphereDiskConfigForm.vue │ │ │ │ │ │ ├── VsphereNetworkAdapterForm.vue │ │ │ │ │ │ ├── VspherePasswordInfoForm.vue │ │ │ │ │ │ ├── VsphereServerInfoForm.vue │ │ │ │ │ │ └── VsphereTemplateSelectForm.vue │ │ │ │ └── type.ts │ │ │ ├── ce-icon │ │ │ │ └── index.vue │ │ │ ├── ce-radio │ │ │ │ └── index.vue │ │ │ ├── ce-regex-tooltip │ │ │ │ └── index.vue │ │ │ ├── ce-rule-tree │ │ │ │ ├── child_node.vue │ │ │ │ ├── default_component.vue │ │ │ │ ├── default_operate.vue │ │ │ │ ├── index.vue │ │ │ │ ├── leaf_node.vue │ │ │ │ ├── sub_node.vue │ │ │ │ └── type.ts │ │ │ ├── ce-table │ │ │ │ ├── CeFilter.vue │ │ │ │ ├── CeFilterBar.vue │ │ │ │ ├── CeFilterInput.vue │ │ │ │ ├── CeTableColumnSelect.vue │ │ │ │ ├── MoreOptionsButton.vue │ │ │ │ ├── index.vue │ │ │ │ └── type.ts │ │ │ ├── ce-tree │ │ │ │ ├── index.vue │ │ │ │ └── type.ts │ │ │ ├── collapse │ │ │ │ └── index.vue │ │ │ ├── detail-page │ │ │ │ ├── InstanceStatus.vue │ │ │ │ ├── IpArray.vue │ │ │ │ ├── PlatformIcon.vue │ │ │ │ ├── SecurityGroup.vue │ │ │ │ ├── VmLink.vue │ │ │ │ └── index.vue │ │ │ ├── echart │ │ │ │ ├── Charts.vue │ │ │ │ ├── ChartsSpeed.vue │ │ │ │ └── index.ts │ │ │ ├── layout │ │ │ │ ├── app-content │ │ │ │ │ └── index.vue │ │ │ │ ├── aside-menu │ │ │ │ │ ├── SubMenu.vue │ │ │ │ │ └── index.vue │ │ │ │ ├── aside-start-menu │ │ │ │ │ ├── StartMenuItem.vue │ │ │ │ │ └── index.vue │ │ │ │ ├── base-container │ │ │ │ │ └── index.vue │ │ │ │ ├── collect-menu │ │ │ │ │ ├── index.vue │ │ │ │ │ └── type.ts │ │ │ │ ├── layout-auto-height-content │ │ │ │ │ └── index.vue │ │ │ │ ├── layout-container │ │ │ │ │ └── index.vue │ │ │ │ ├── layout-content │ │ │ │ │ └── index.vue │ │ │ │ └── top-bar │ │ │ │ │ └── index.vue │ │ │ ├── platform-icon │ │ │ │ └── index.vue │ │ │ └── table-filter │ │ │ │ ├── OrgTreeFilter.vue │ │ │ │ └── TreeFilter.vue │ │ ├── font │ │ │ ├── demo.css │ │ │ ├── demo_index.html │ │ │ ├── iconfont.css │ │ │ ├── iconfont.js │ │ │ ├── iconfont.json │ │ │ ├── iconfont.ttf │ │ │ ├── iconfont.woff │ │ │ └── iconfont.woff2 │ │ ├── index.ts │ │ ├── request │ │ │ ├── Result.ts │ │ │ └── index.ts │ │ ├── router │ │ │ ├── MicroAppRouterUtil.ts │ │ │ ├── index.ts │ │ │ └── type.ts │ │ ├── stores │ │ │ ├── index.ts │ │ │ └── modules │ │ │ │ ├── home.ts │ │ │ │ ├── module.ts │ │ │ │ ├── permission.ts │ │ │ │ ├── platform.ts │ │ │ │ └── user.ts │ │ ├── styles │ │ │ ├── app.scss │ │ │ ├── drawer.scss │ │ │ ├── element-plus.scss │ │ │ ├── index.scss │ │ │ ├── mixins.scss │ │ │ └── variables │ │ │ │ ├── content.scss │ │ │ │ ├── header.scss │ │ │ │ ├── index.scss │ │ │ │ └── menu.scss │ │ └── utils │ │ │ ├── IpChecker.ts │ │ │ ├── authStorage.ts │ │ │ ├── color.ts │ │ │ ├── commons.ts │ │ │ ├── constants.ts │ │ │ ├── cron.ts │ │ │ ├── currencyFormat.ts │ │ │ ├── decimalFormat.ts │ │ │ ├── echarts │ │ │ └── template │ │ │ │ ├── BarTemplate.ts │ │ │ │ ├── PieTemplate.ts │ │ │ │ └── index.ts │ │ │ ├── percentFormat.ts │ │ │ ├── platform.ts │ │ │ ├── util.ts │ │ │ └── vm_cloud_server │ │ │ └── InstanceStatusUtils.ts │ ├── env.d.ts │ ├── env │ │ ├── .env │ │ ├── .env.development │ │ └── .env.production │ ├── index.html │ ├── package.json │ ├── pom.xml │ ├── public │ │ └── favicon.ico │ ├── src │ │ ├── App.vue │ │ ├── locales │ │ │ └── lang │ │ │ │ ├── en.ts │ │ │ │ ├── zh-cn.ts │ │ │ │ └── zh-tw.ts │ │ ├── main.ts │ │ ├── microapp │ │ │ └── index.ts │ │ └── views │ │ │ ├── MicroAppRouteView │ │ │ └── index.vue │ │ │ └── Test │ │ │ └── index.vue │ ├── tsconfig.config.json │ ├── tsconfig.json │ └── vite.config.ts │ └── pom.xml ├── mvnw ├── mvnw.cmd ├── package.json ├── pom.xml └── services ├── .gitignore ├── finance-management ├── .gitignore ├── backend │ ├── .gitignore │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── fit2cloud │ │ │ │ ├── FinanceManagementApplication.java │ │ │ │ ├── common │ │ │ │ ├── annotaion │ │ │ │ │ └── BillField.java │ │ │ │ ├── cache │ │ │ │ │ ├── CloudAccountCache.java │ │ │ │ │ ├── OrganizationCache.java │ │ │ │ │ └── WorkSpaceCache.java │ │ │ │ ├── child_key │ │ │ │ │ ├── ChildKey.java │ │ │ │ │ └── impl │ │ │ │ │ │ ├── BaseChildKey.java │ │ │ │ │ │ ├── OrgTreeChildKey.java │ │ │ │ │ │ └── TagChildKey.java │ │ │ │ ├── conver │ │ │ │ │ ├── Convert.java │ │ │ │ │ └── impl │ │ │ │ │ │ ├── BillModeConvert.java │ │ │ │ │ │ ├── CloudAccountConvert.java │ │ │ │ │ │ ├── DefaultConvert.java │ │ │ │ │ │ ├── OrganizationConvert.java │ │ │ │ │ │ ├── ProviderConvert.java │ │ │ │ │ │ └── WorkSpaceConvert.java │ │ │ │ └── util │ │ │ │ │ ├── AuthUtil.java │ │ │ │ │ ├── CsvUtil.java │ │ │ │ │ ├── EsFieldUtil.java │ │ │ │ │ ├── EsScriptUtil.java │ │ │ │ │ ├── MappingUtil.java │ │ │ │ │ └── MonthUtil.java │ │ │ │ ├── constants │ │ │ │ ├── AuthorizeTypeConstants.java │ │ │ │ ├── BillAuthorizeConditionTypeConstants.java │ │ │ │ ├── BillFieldConstants.java │ │ │ │ ├── BillingSettingConstants.java │ │ │ │ ├── CalendarConstants.java │ │ │ │ ├── ErrorCodeConstants.java │ │ │ │ ├── EsWriteLockConstants.java │ │ │ │ ├── JobConstants.java │ │ │ │ ├── MenuConstants.java │ │ │ │ └── PermissionConstants.java │ │ │ │ ├── controller │ │ │ │ ├── BillDetailedController.java │ │ │ │ ├── BillRuleController.java │ │ │ │ ├── BillViewController.java │ │ │ │ ├── BillingPolicyController.java │ │ │ │ ├── DimensionSettingController.java │ │ │ │ ├── request │ │ │ │ │ ├── AddBillRuleRequest.java │ │ │ │ │ ├── AddBillingPolicyRequest.java │ │ │ │ │ ├── AuthorizeResourcesRequest.java │ │ │ │ │ ├── BaseViewRequest.java │ │ │ │ │ ├── BillExpensesRequest.java │ │ │ │ │ ├── BillRuleRequest.java │ │ │ │ │ ├── BillViewRequest.java │ │ │ │ │ ├── BillingPolicyRequest.java │ │ │ │ │ ├── CalculateConfigPriceRequest.java │ │ │ │ │ ├── CurrencyRequest.java │ │ │ │ │ ├── HistoryTrendRequest.java │ │ │ │ │ ├── LinkCloudAccountRequest.java │ │ │ │ │ ├── ListCloudAccountByPolicyRequest.java │ │ │ │ │ ├── NotAuthorizeResourcesRequest.java │ │ │ │ │ ├── PageBillDetailedRequest.java │ │ │ │ │ └── UpdateBillRuleRequest.java │ │ │ │ └── response │ │ │ │ │ ├── AuthorizeResourcesResponse.java │ │ │ │ │ ├── BillDetailResponse.java │ │ │ │ │ ├── BillRules.java │ │ │ │ │ ├── BillView.java │ │ │ │ │ ├── BillingPolicyDetailsResponse.java │ │ │ │ │ ├── CloudAccountResponse.java │ │ │ │ │ ├── CurrencyResponse.java │ │ │ │ │ ├── ExpensesResponse.java │ │ │ │ │ └── Trend.java │ │ │ │ ├── dao │ │ │ │ ├── entity │ │ │ │ │ ├── BillCurrency.java │ │ │ │ │ ├── BillDimensionSetting.java │ │ │ │ │ └── BillRule.java │ │ │ │ ├── handler │ │ │ │ │ ├── AuthorizeRuleHandler.java │ │ │ │ │ ├── FilterHandler.java │ │ │ │ │ └── GroupHandler.java │ │ │ │ ├── jentity │ │ │ │ │ ├── BillAuthorizeRule.java │ │ │ │ │ ├── BillAuthorizeRuleCondition.java │ │ │ │ │ ├── Filter.java │ │ │ │ │ └── Group.java │ │ │ │ └── mapper │ │ │ │ │ ├── BillCurrencyMapper.java │ │ │ │ │ ├── BillCurrencyMapper.xml │ │ │ │ │ ├── BillDimensionSettingMapper.java │ │ │ │ │ ├── BillDimensionSettingMapper.xml │ │ │ │ │ ├── BillRuleMapper.java │ │ │ │ │ └── BillRuleMapper.xml │ │ │ │ ├── db_convert │ │ │ │ ├── CloudBillConvert.java │ │ │ │ ├── DBBillDimensionConvert.java │ │ │ │ ├── entity │ │ │ │ │ ├── OldBillDimensionSetting.java │ │ │ │ │ └── json_entity │ │ │ │ │ │ └── OldBillAuthorizeRule.java │ │ │ │ └── handler │ │ │ │ │ └── OldAuthorizeRuleHandler.java │ │ │ │ ├── es │ │ │ │ ├── entity │ │ │ │ │ └── CloudBill.java │ │ │ │ └── repository │ │ │ │ │ └── CloudBillRepository.java │ │ │ │ ├── event │ │ │ │ └── EventListener.java │ │ │ │ ├── job │ │ │ │ └── CloudAccountSubscribe.java │ │ │ │ ├── provider │ │ │ │ ├── AbstractCloudProvider.java │ │ │ │ ├── ICloudProvider.java │ │ │ │ ├── client │ │ │ │ │ └── PrivateLocalCloudClient.java │ │ │ │ ├── constants │ │ │ │ │ ├── BillModeConstants.java │ │ │ │ │ ├── CostFieldConstants.java │ │ │ │ │ ├── CurrencyConstants.java │ │ │ │ │ ├── CurrencyParent.java │ │ │ │ │ └── ProviderConstants.java │ │ │ │ ├── convert │ │ │ │ │ ├── EmptyNumberConvert.java │ │ │ │ │ └── TrimStringConvert.java │ │ │ │ ├── entity │ │ │ │ │ └── Bill.java │ │ │ │ └── impl │ │ │ │ │ ├── aliyun │ │ │ │ │ ├── AliyunCloudProvider.java │ │ │ │ │ ├── api │ │ │ │ │ │ ├── AliBucketApi.java │ │ │ │ │ │ └── AliyunBillApi.java │ │ │ │ │ ├── entity │ │ │ │ │ │ ├── credential │ │ │ │ │ │ │ └── AliyunBillCredential.java │ │ │ │ │ │ ├── csv │ │ │ │ │ │ │ └── AliBillCsvModel.java │ │ │ │ │ │ └── request │ │ │ │ │ │ │ ├── AliBill.java │ │ │ │ │ │ │ ├── ListBucketMonthRequest.java │ │ │ │ │ │ │ └── SyncBillRequest.java │ │ │ │ │ └── uitil │ │ │ │ │ │ └── AliyunMappingUtil.java │ │ │ │ │ ├── huawei │ │ │ │ │ ├── HuaweiCloudProvider.java │ │ │ │ │ ├── api │ │ │ │ │ │ ├── HuaweiBillApi.java │ │ │ │ │ │ └── HuaweiBucketApi.java │ │ │ │ │ ├── entity │ │ │ │ │ │ ├── credential │ │ │ │ │ │ │ └── HuaweiBillCredential.java │ │ │ │ │ │ ├── csv │ │ │ │ │ │ │ └── HuaweiBillCsvModel.java │ │ │ │ │ │ └── request │ │ │ │ │ │ │ ├── HuaweiBill.java │ │ │ │ │ │ │ ├── ListBucketMonthRequest.java │ │ │ │ │ │ │ └── SyncBillRequest.java │ │ │ │ │ └── util │ │ │ │ │ │ └── HuaweiMappingUtil.java │ │ │ │ │ ├── openstack │ │ │ │ │ ├── OpenstackBillProvider.java │ │ │ │ │ └── entity │ │ │ │ │ │ ├── credential │ │ │ │ │ │ └── OpenstackBillCredential.java │ │ │ │ │ │ └── request │ │ │ │ │ │ ├── OpenStackBill.java │ │ │ │ │ │ └── SyncBillRequest.java │ │ │ │ │ ├── proxmox │ │ │ │ │ ├── ProxmoxBillProvider.java │ │ │ │ │ ├── credential │ │ │ │ │ │ └── ProxmoxBillCredential.java │ │ │ │ │ └── request │ │ │ │ │ │ ├── ProxmoxBill.java │ │ │ │ │ │ └── SyncBillRequest.java │ │ │ │ │ ├── tencent │ │ │ │ │ ├── TencentCloudProvider.java │ │ │ │ │ ├── api │ │ │ │ │ │ ├── TencentBillApi.java │ │ │ │ │ │ └── TencentBucketApi.java │ │ │ │ │ ├── entity │ │ │ │ │ │ ├── credential │ │ │ │ │ │ │ └── TencentBillCredential.java │ │ │ │ │ │ ├── csv │ │ │ │ │ │ │ └── TencentCsvModel.java │ │ │ │ │ │ └── request │ │ │ │ │ │ │ ├── ListBucketMonthRequest.java │ │ │ │ │ │ │ ├── SyncBillRequest.java │ │ │ │ │ │ │ └── TencentBill.java │ │ │ │ │ └── util │ │ │ │ │ │ └── TencentMappingUtil.java │ │ │ │ │ └── vsphere │ │ │ │ │ ├── VsphereBillProvider.java │ │ │ │ │ └── entity │ │ │ │ │ ├── credential │ │ │ │ │ └── VsphereBillCredential.java │ │ │ │ │ └── request │ │ │ │ │ ├── SyncBillRequest.java │ │ │ │ │ └── VsphereBill.java │ │ │ │ ├── quartz │ │ │ │ └── CloudAccountSyncJob.java │ │ │ │ └── service │ │ │ │ ├── BillSearchService.java │ │ │ │ ├── BillViewService.java │ │ │ │ ├── IBillCurrencyService.java │ │ │ │ ├── IBillDetailedService.java │ │ │ │ ├── IBillDimensionSettingService.java │ │ │ │ ├── IBillRuleService.java │ │ │ │ ├── IBillingPolicyService.java │ │ │ │ ├── SyncService.java │ │ │ │ └── impl │ │ │ │ ├── BillCurrencyServiceImpl.java │ │ │ │ ├── BillDetailedServiceImpl.java │ │ │ │ ├── BillDimensionSettingServiceImpl.java │ │ │ │ ├── BillRuleServiceImpl.java │ │ │ │ ├── BillSearchServiceImpl.java │ │ │ │ ├── BillViewServiceImpl.java │ │ │ │ ├── BillingPolicyServiceImpl.java │ │ │ │ └── SyncServiceImpl.java │ │ └── resources │ │ │ ├── application.yml │ │ │ ├── db │ │ │ └── migration │ │ │ │ ├── V1__init.sql │ │ │ │ ├── V2_0__ddl_create_bill_rule.sql │ │ │ │ ├── V2_1__dml.sql │ │ │ │ ├── V3_0__ddl_create_bill_dimension_setting.sql │ │ │ │ ├── V3_1__ddl_update_bill_dimension_setting.sql │ │ │ │ └── V4_0__ddl_create_bill_currency.sql │ │ │ ├── i18n │ │ │ ├── messages.properties │ │ │ ├── messages_en_US.properties │ │ │ ├── messages_zh_CN.properties │ │ │ └── messages_zh_TW.properties │ │ │ └── logback-spring.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── fit2cloud │ │ ├── CloudSyncBillTest.java │ │ └── MyBatisPlusGenerator.java ├── finance-management.yml ├── frontend │ ├── .eslintrc.cjs │ ├── .gitignore │ ├── .prettierrc.js │ ├── .vscode │ │ ├── extensions.json │ │ └── settings.json │ ├── env.d.ts │ ├── env │ │ ├── .env │ │ ├── .env.development │ │ └── .env.production │ ├── index.html │ ├── package.json │ ├── pom.xml │ ├── public │ │ └── favicon.ico │ ├── src │ │ ├── App.vue │ │ ├── api │ │ │ ├── bill_detailed │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── bill_rule │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── bill_view │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── billing_policy │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── dimension_setting │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ └── organization │ │ │ │ └── type.ts │ │ ├── components │ │ │ └── bill_rule_group │ │ │ │ ├── Item.vue │ │ │ │ └── index.vue │ │ ├── echarts │ │ │ ├── billPie.ts │ │ │ └── bill_view │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ ├── locales │ │ │ └── lang │ │ │ │ ├── en.ts │ │ │ │ ├── zh-cn.ts │ │ │ │ └── zh-tw.ts │ │ ├── main.ts │ │ ├── styles │ │ │ └── common │ │ │ │ ├── mixins.scss │ │ │ │ └── variables.scss │ │ └── views │ │ │ ├── bill_detailed │ │ │ └── index.vue │ │ │ ├── bill_view │ │ │ ├── components │ │ │ │ ├── CurrencyItem.vue │ │ │ │ ├── CurrencySetting.vue │ │ │ │ ├── TableTrend.vue │ │ │ │ ├── ViewExpensesAggsCard.vue │ │ │ │ ├── ViewPieChart.vue │ │ │ │ ├── ViewTable.vue │ │ │ │ ├── ViewTabs.vue │ │ │ │ └── ViewTrendChart.vue │ │ │ └── index.vue │ │ │ ├── billing_policy │ │ │ ├── components │ │ │ │ ├── AddPolicyIcon.vue │ │ │ │ ├── BillingPackage.vue │ │ │ │ ├── BillingPolicyDetails.vue │ │ │ │ ├── BillingRuleCard.vue │ │ │ │ ├── CloudAccountCheckbox.vue │ │ │ │ ├── CloudAccountView.vue │ │ │ │ ├── EmptyBillingPolicy.vue │ │ │ │ ├── InfoIcon.vue │ │ │ │ ├── LinkCloudAccount.vue │ │ │ │ ├── OperateBillingPolicy.vue │ │ │ │ ├── OperatePackageBilling.vue │ │ │ │ ├── PricePreview.vue │ │ │ │ ├── ReName.vue │ │ │ │ ├── RightContent.vue │ │ │ │ └── ViewBillingPolicy.vue │ │ │ └── index.vue │ │ │ ├── custom_bill │ │ │ └── index.vue │ │ │ └── dimension_setting │ │ │ ├── components │ │ │ └── bill_auth_rule │ │ │ │ ├── AuthRuleItem.vue │ │ │ │ └── index.vue │ │ │ └── index.vue │ ├── tsconfig.config.json │ ├── tsconfig.json │ └── vite.config.ts └── pom.xml ├── operation-analysis ├── .gitignore ├── backend │ ├── .gitignore │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── fit2cloud │ │ │ ├── OperationAnalysisApplication.java │ │ │ ├── constants │ │ │ ├── AnalysisConstants.java │ │ │ ├── DiskTypeConstants.java │ │ │ ├── ErrorCodeConstants.java │ │ │ ├── MenuConstants.java │ │ │ ├── OptimizationConstants.java │ │ │ ├── OptimizationRuleConditionTypeConstants.java │ │ │ ├── PermissionConstants.java │ │ │ ├── ResourcePaymentOptionsEnum.java │ │ │ ├── ResourcePerfMetricEnum.java │ │ │ ├── ResourceTypeConstants.java │ │ │ └── SpecialAttributesConstants.java │ │ │ ├── controller │ │ │ ├── BaseResourceAnalysisController.java │ │ │ ├── CommonAnalysisController.java │ │ │ ├── DiskAnalysisController.java │ │ │ ├── OptimizationStrategyController.java │ │ │ ├── OptimizationStrategyResourceController.java │ │ │ ├── OptimizeAnalysisController.java │ │ │ ├── OptimizeController.java │ │ │ ├── ServerAnalysisController.java │ │ │ ├── request │ │ │ │ ├── CommonRequest.java │ │ │ │ ├── base │ │ │ │ │ └── resource │ │ │ │ │ │ └── analysis │ │ │ │ │ │ ├── ResourceAnalysisRequest.java │ │ │ │ │ │ └── ResourceUsedTrendRequest.java │ │ │ │ ├── datastore │ │ │ │ │ ├── DatastoreRequest.java │ │ │ │ │ └── PageDatastoreRequest.java │ │ │ │ ├── disk │ │ │ │ │ ├── DiskRequest.java │ │ │ │ │ ├── PageDiskRequest.java │ │ │ │ │ └── ResourceAnalysisRequest.java │ │ │ │ ├── host │ │ │ │ │ ├── HostRequest.java │ │ │ │ │ └── PageHostRequest.java │ │ │ │ ├── optimize │ │ │ │ │ ├── CreateOrUpdateOptimizationStrategyRequest.java │ │ │ │ │ ├── OptimizationRequest.java │ │ │ │ │ ├── OptimizationStrategyIgnoreResourceRequest.java │ │ │ │ │ ├── OptimizeBaseRequest.java │ │ │ │ │ ├── PageOptimizationRequest.java │ │ │ │ │ ├── PageOptimizationStrategyRequest.java │ │ │ │ │ ├── PageOptimizeBaseRequest.java │ │ │ │ │ ├── QueryOptimizationStrategyRequest.java │ │ │ │ │ └── strategy │ │ │ │ │ │ ├── BaseStatusRequest.java │ │ │ │ │ │ ├── BaseStatusRequestDeserializer.java │ │ │ │ │ │ ├── ByResourceStatusRequest.java │ │ │ │ │ │ ├── ByResourceUsedRateRequest.java │ │ │ │ │ │ └── OptimizeStrategyBaseRequest.java │ │ │ │ └── server │ │ │ │ │ ├── PageServerRequest.java │ │ │ │ │ ├── ResourceAnalysisRequest.java │ │ │ │ │ └── ServerRequest.java │ │ │ └── response │ │ │ │ ├── BarTreeChartData.java │ │ │ │ ├── ChartData.java │ │ │ │ ├── OptimizationRuleFieldResponse.java │ │ │ │ ├── ResourceAllocatedInfo.java │ │ │ │ └── TreeNode.java │ │ │ ├── dao │ │ │ ├── entity │ │ │ │ ├── OptimizationStrategy.java │ │ │ │ ├── OptimizationStrategyIgnoreResource.java │ │ │ │ ├── OptimizeSuggestStrategy.java │ │ │ │ └── OrgWorkspace.java │ │ │ ├── handler │ │ │ │ └── OptimizationRuleHandler.java │ │ │ └── mapper │ │ │ │ ├── ExtCloudAccountMapper.java │ │ │ │ ├── ExtCloudAccountMapper.xml │ │ │ │ ├── OptimizationStrategyIgnoreResourceMapper.java │ │ │ │ ├── OptimizationStrategyIgnoreResourceMapper.xml │ │ │ │ ├── OptimizationStrategyMapper.java │ │ │ │ ├── OptimizationStrategyMapper.xml │ │ │ │ ├── OptimizeSuggestStrategyMapper.java │ │ │ │ ├── OptimizeSuggestStrategyMapper.xml │ │ │ │ ├── OrgWorkspaceMapper.java │ │ │ │ └── OrgWorkspaceMapper.xml │ │ │ ├── db_convert │ │ │ └── ElasticsearchSettingConvert.java │ │ │ ├── dto │ │ │ ├── AnalysisCloudAccountDTO.java │ │ │ ├── AnalysisDatastoreDTO.java │ │ │ ├── AnalysisDiskDTO.java │ │ │ ├── AnalysisHostDTO.java │ │ │ ├── AnalysisOptimizeDTO.java │ │ │ ├── AnalysisServerDTO.java │ │ │ ├── KeyValue.java │ │ │ ├── OptimizeSuggestDTO.java │ │ │ └── optimization │ │ │ │ ├── MonitoringDataValueDTO.java │ │ │ │ ├── OptimizationRule.java │ │ │ │ ├── OptimizationRuleField.java │ │ │ │ ├── OptimizationRuleFieldCompare.java │ │ │ │ ├── OptimizationRuleFieldCondition.java │ │ │ │ ├── OptimizationRuleFieldType.java │ │ │ │ ├── OptimizationStrategyDTO.java │ │ │ │ ├── ResourceTypeDTO.java │ │ │ │ ├── VmCloudServerDTO.java │ │ │ │ └── VmCloudServerExcelDTO.java │ │ │ ├── factory │ │ │ └── optimize │ │ │ │ ├── IOptimizeStrategy.java │ │ │ │ ├── OptimizeFactory.java │ │ │ │ └── impl │ │ │ │ ├── ByPaymentStrategy.java │ │ │ │ ├── ByRecoveryStrategy.java │ │ │ │ └── ByResourceUsedRateStrategy.java │ │ │ ├── service │ │ │ ├── IBaseResourceAnalysisService.java │ │ │ ├── ICloudServerOptimizationService.java │ │ │ ├── ICommonAnalysisService.java │ │ │ ├── IDiskAnalysisService.java │ │ │ ├── IOptimizationRuleFieldProvider.java │ │ │ ├── IOptimizationStrategyIgnoreResourceService.java │ │ │ ├── IOptimizationStrategyService.java │ │ │ ├── IOptimizeAnalysisService.java │ │ │ ├── IOptimizeService.java │ │ │ ├── IOptimizeSuggestStrategyService.java │ │ │ ├── IPermissionService.java │ │ │ ├── IServerAnalysisService.java │ │ │ └── impl │ │ │ │ ├── BaseResourceAnalysisServiceImpl.java │ │ │ │ ├── CloudServerOptimizationServiceImpl.java │ │ │ │ ├── CommonAnalysisServiceImpl.java │ │ │ │ ├── CurrentUserResourceService.java │ │ │ │ ├── DiskAnalysisServiceImpl.java │ │ │ │ ├── OptimizationRuleFieldProviderImpl.java │ │ │ │ ├── OptimizationStrategyIgnoreResourceServiceImpl.java │ │ │ │ ├── OptimizationStrategyServiceImpl.java │ │ │ │ ├── OptimizeAnalysisServiceImpl.java │ │ │ │ ├── OptimizeServiceImpl.java │ │ │ │ ├── OptimizeSuggestStrategyServiceImpl.java │ │ │ │ ├── PermissionServiceImpl.java │ │ │ │ └── ServerAnalysisServiceImpl.java │ │ │ └── utils │ │ │ ├── OperationUtils.java │ │ │ └── cache │ │ │ └── ElasticSearchVmLatestMonitoringDataSyncCache.java │ │ └── resources │ │ ├── application.yml │ │ ├── db │ │ └── migration │ │ │ ├── V1__init.sql │ │ │ ├── V2_0__ddl_create_op_optimize_suggest_strategy.sql │ │ │ ├── V3_0__ddl_create_optimization_strategy.sql │ │ │ └── V3_1__ddl_create_optimization_strategy_ignore_resource.sql │ │ ├── i18n │ │ ├── messages.properties │ │ ├── messages_en_US.properties │ │ ├── messages_zh_CN.properties │ │ └── messages_zh_TW.properties │ │ └── logback-spring.xml ├── frontend │ ├── .eslintrc.cjs │ ├── .gitignore │ ├── .prettierrc.js │ ├── .vscode │ │ ├── extensions.json │ │ └── settings.json │ ├── env.d.ts │ ├── env │ │ ├── .env │ │ ├── .env.development │ │ └── .env.production │ ├── index.html │ ├── package.json │ ├── pom.xml │ ├── public │ │ └── favicon.ico │ ├── src │ │ ├── App.vue │ │ ├── api │ │ │ ├── common │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── disk_analysis │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── resource_optimization │ │ │ │ └── index.ts │ │ │ ├── resource_spread_view │ │ │ │ └── index.ts │ │ │ ├── server_analysis │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── vm_cloud_datastore │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ └── vm_cloud_host │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ ├── locales │ │ │ └── lang │ │ │ │ ├── en.ts │ │ │ │ ├── zh-cn.ts │ │ │ │ └── zh-tw.ts │ │ ├── main.ts │ │ ├── styles │ │ │ └── common │ │ │ │ ├── mixins.scss │ │ │ │ └── variables.scss │ │ └── views │ │ │ ├── base_resource_analysis │ │ │ ├── alarmList.vue │ │ │ ├── baseView.vue │ │ │ ├── hostList.vue │ │ │ ├── index.vue │ │ │ ├── item │ │ │ │ ├── BaseResourceAllocationRate.vue │ │ │ │ ├── BaseResourceSpread.vue │ │ │ │ ├── BaseResourceUseRate.vue │ │ │ │ ├── BaseResourceUseRateTrend.vue │ │ │ │ ├── HostServerSpread.vue │ │ │ │ └── used_rate_item │ │ │ │ │ └── UsedRate.vue │ │ │ ├── list.vue │ │ │ └── storageList.vue │ │ │ ├── disk_analysis │ │ │ ├── baseView.vue │ │ │ ├── diskList.vue │ │ │ ├── index.vue │ │ │ ├── item │ │ │ │ ├── DiskDoughnutChartGroup.vue │ │ │ │ ├── DiskIncreaseTrend.vue │ │ │ │ ├── DiskOrgWorkspaceSpread.vue │ │ │ │ └── DoughnutChartSpread.vue │ │ │ └── list.vue │ │ │ ├── optimization_strategy │ │ │ ├── index.vue │ │ │ └── list.vue │ │ │ ├── optimize │ │ │ ├── index.vue │ │ │ └── list.vue │ │ │ ├── overview │ │ │ ├── index.vue │ │ │ └── items │ │ │ │ └── resource_detailed │ │ │ │ ├── CountCard.vue │ │ │ │ ├── CountGroup.vue │ │ │ │ ├── CountTable.vue │ │ │ │ ├── CountType.ts │ │ │ │ └── Detailed.vue │ │ │ └── server_analysis │ │ │ ├── baseView.vue │ │ │ ├── index.vue │ │ │ ├── item │ │ │ ├── CloudServerOrgWorkspaceSpread.vue │ │ │ ├── CloudServerResourceUseRateTrend.vue │ │ │ ├── DoughnutChartGroup.vue │ │ │ └── DoughnutChartSpread.vue │ │ │ ├── list.vue │ │ │ └── serverList.vue │ ├── tsconfig.config.json │ ├── tsconfig.json │ └── vite.config.ts ├── operation-analysis.yml └── pom.xml ├── pom.xml ├── security-compliance ├── .gitignore ├── backend │ ├── .gitignore │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── fit2cloud │ │ │ │ ├── SecurityComplianceApplication.java │ │ │ │ ├── constants │ │ │ │ ├── ConditionTypeConstants.java │ │ │ │ ├── ErrorCodeConstants.java │ │ │ │ ├── GroupTypeConstants.java │ │ │ │ ├── JobConstants.java │ │ │ │ ├── MenuConstants.java │ │ │ │ ├── PermissionConstants.java │ │ │ │ ├── ResourceTypeConstants.java │ │ │ │ ├── ScanRuleConstants.java │ │ │ │ └── SyncDimensionConstants.java │ │ │ │ ├── controller │ │ │ │ ├── ComplianceInsuranceStatuteController.java │ │ │ │ ├── ComplianceRuleController.java │ │ │ │ ├── ComplianceRuleGroupController.java │ │ │ │ ├── ComplianceScanController.java │ │ │ │ ├── ComplianceScanResultController.java │ │ │ │ ├── ComplianceViewController.java │ │ │ │ ├── request │ │ │ │ │ ├── compliance_insurance_statute │ │ │ │ │ │ └── ComplianceInsuranceStatuteRequest.java │ │ │ │ │ ├── compliance_scan │ │ │ │ │ │ ├── ComplianceResourceRequest.java │ │ │ │ │ │ ├── ComplianceScanRequest.java │ │ │ │ │ │ └── ComplianceSyncRequest.java │ │ │ │ │ ├── rule │ │ │ │ │ │ ├── ComplianceRuleRequest.java │ │ │ │ │ │ └── PageComplianceRuleRequest.java │ │ │ │ │ ├── rule_group │ │ │ │ │ │ ├── ComplianceRuleGroupRequest.java │ │ │ │ │ │ └── PageComplianceRuleGroupRequest.java │ │ │ │ │ └── view │ │ │ │ │ │ ├── ComplianceCountRequest.java │ │ │ │ │ │ ├── ComplianceGroupRequest.java │ │ │ │ │ │ └── ListRuleGroupRiskDataRequest.java │ │ │ │ └── response │ │ │ │ │ ├── compliance_insurance_statute │ │ │ │ │ └── ComplianceInsuranceStatuteResponse.java │ │ │ │ │ ├── compliance_scan │ │ │ │ │ ├── ComplianceResourceResponse.java │ │ │ │ │ ├── SupportCloudAccountResourceResponse.java │ │ │ │ │ └── SupportPlatformResourceResponse.java │ │ │ │ │ ├── compliance_scan_result │ │ │ │ │ ├── ComplianceScanResultResponse.java │ │ │ │ │ └── ComplianceScanRuleGroupResultResponse.java │ │ │ │ │ ├── rule │ │ │ │ │ ├── ComplianceRuleResponse.java │ │ │ │ │ └── ComplianceRuleSearchFieldResponse.java │ │ │ │ │ ├── rule_group │ │ │ │ │ └── ComplianceRuleGroupResponse.java │ │ │ │ │ └── view │ │ │ │ │ ├── ComplianceRuleGroupCountResponse.java │ │ │ │ │ ├── ComplianceViewCountResponse.java │ │ │ │ │ ├── ComplianceViewGroupResponse.java │ │ │ │ │ └── ComplianceViewRuleCountResponse.java │ │ │ │ ├── dao │ │ │ │ ├── constants │ │ │ │ │ ├── ComplianceStatus.java │ │ │ │ │ ├── ResourceType.java │ │ │ │ │ └── RiskLevel.java │ │ │ │ ├── entity │ │ │ │ │ ├── ComplianceCount.java │ │ │ │ │ ├── ComplianceGroup.java │ │ │ │ │ ├── ComplianceInsuranceStatute.java │ │ │ │ │ ├── ComplianceRule.java │ │ │ │ │ ├── ComplianceRuleCloudAccount.java │ │ │ │ │ ├── ComplianceRuleCount.java │ │ │ │ │ ├── ComplianceRuleGroup.java │ │ │ │ │ ├── ComplianceRuleGroupCount.java │ │ │ │ │ ├── ComplianceRuleInsuranceStatuteMapping.java │ │ │ │ │ ├── ComplianceScanResourceResult.java │ │ │ │ │ └── ComplianceScanResult.java │ │ │ │ ├── handler │ │ │ │ │ ├── ResourceTypeHandler.java │ │ │ │ │ └── RuleHandler.java │ │ │ │ ├── jentity │ │ │ │ │ ├── Rule.java │ │ │ │ │ └── Rules.java │ │ │ │ └── mapper │ │ │ │ │ ├── ComplianceInsuranceStatuteMapper.java │ │ │ │ │ ├── ComplianceInsuranceStatuteMapper.xml │ │ │ │ │ ├── ComplianceRuleGroupMapper.java │ │ │ │ │ ├── ComplianceRuleGroupMapper.xml │ │ │ │ │ ├── ComplianceRuleInsuranceStatuteMappingMapper.java │ │ │ │ │ ├── ComplianceRuleInsuranceStatuteMappingMapper.xml │ │ │ │ │ ├── ComplianceRuleMapper.java │ │ │ │ │ ├── ComplianceRuleMapper.xml │ │ │ │ │ ├── ComplianceScanResourceResultMapper.java │ │ │ │ │ ├── ComplianceScanResourceResultMapper.xml │ │ │ │ │ ├── ComplianceScanResultMapper.java │ │ │ │ │ └── ComplianceScanResultMapper.xml │ │ │ │ ├── es │ │ │ │ ├── entity │ │ │ │ │ └── ResourceInstance.java │ │ │ │ └── repository │ │ │ │ │ └── ResourceInstanceRepository.java │ │ │ │ ├── event │ │ │ │ └── EventListener.java │ │ │ │ ├── job │ │ │ │ └── CloudAccountSubscribe.java │ │ │ │ ├── provider │ │ │ │ ├── AbstractCloudProvider.java │ │ │ │ ├── ICloudProvider.java │ │ │ │ ├── constants │ │ │ │ │ ├── F2CDiskStatus.java │ │ │ │ │ └── F2CInstanceStatus.java │ │ │ │ ├── entity │ │ │ │ │ ├── InstanceFieldCompare.java │ │ │ │ │ ├── InstanceFieldType.java │ │ │ │ │ ├── InstanceSearchField.java │ │ │ │ │ └── response │ │ │ │ │ │ ├── F2CDatastore.java │ │ │ │ │ │ ├── F2CDisk.java │ │ │ │ │ │ ├── F2CHost.java │ │ │ │ │ │ ├── F2CNetwork.java │ │ │ │ │ │ ├── F2CVirtualMachine.java │ │ │ │ │ │ └── VsphereResourcePool.java │ │ │ │ ├── impl │ │ │ │ │ ├── aliyun │ │ │ │ │ │ ├── AliCloudProvider.java │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ ├── AliApi.java │ │ │ │ │ │ │ └── AliInstanceSearchFieldApi.java │ │ │ │ │ │ └── entity │ │ │ │ │ │ │ ├── credential │ │ │ │ │ │ │ └── AliSecurityComplianceCredential.java │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ ├── GetMongodbNetInfoInstanceRequest.java │ │ │ │ │ │ │ ├── GetRdsNetInfoInstanceRequest.java │ │ │ │ │ │ │ ├── GetRedisNetInfoInstanceRequest.java │ │ │ │ │ │ │ ├── GetSecurityGroupRuleInstanceRequest.java │ │ │ │ │ │ │ ├── ListBucketInstanceRequest.java │ │ │ │ │ │ │ ├── ListDiskInstanceRequest.java │ │ │ │ │ │ │ ├── ListEcsInstancesRequest.java │ │ │ │ │ │ │ ├── ListElasticSearchInstanceRequest.java │ │ │ │ │ │ │ ├── ListLoadBalancerInstanceRequest.java │ │ │ │ │ │ │ ├── ListLoginProfileInstanceRequest.java │ │ │ │ │ │ │ ├── ListMongoDBRequest.java │ │ │ │ │ │ │ ├── ListPublicIpInstanceRequest.java │ │ │ │ │ │ │ ├── ListRamInstanceRequest.java │ │ │ │ │ │ │ ├── ListRdsInstanceRequest.java │ │ │ │ │ │ │ ├── ListRedisInstanceRequest.java │ │ │ │ │ │ │ ├── ListSecurityGroupInstanceRequest.java │ │ │ │ │ │ │ └── ListVpcInstanceRequest.java │ │ │ │ │ │ │ └── response │ │ │ │ │ │ │ ├── BucketInstanceResponse.java │ │ │ │ │ │ │ ├── EcsInstanceResponse.java │ │ │ │ │ │ │ ├── MongoDBInstanceResponse.java │ │ │ │ │ │ │ ├── RdsInstanceResponse.java │ │ │ │ │ │ │ ├── RedisInstanceResponse.java │ │ │ │ │ │ │ ├── SecurityGroupsSecurityGroupInstanceResponse.java │ │ │ │ │ │ │ └── VpcInstanceResponse.java │ │ │ │ │ ├── huawei │ │ │ │ │ │ ├── HuaweiCloudProvider.java │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ ├── HuaweiApi.java │ │ │ │ │ │ │ └── HuaweiInstanceSearchFieldApi.java │ │ │ │ │ │ └── entity │ │ │ │ │ │ │ ├── credential │ │ │ │ │ │ │ └── HuaweiSecurityComplianceCredential.java │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ ├── ListBucketInstanceRequest.java │ │ │ │ │ │ │ ├── ListDiskInstanceRequest.java │ │ │ │ │ │ │ ├── ListEcsInstanceRequest.java │ │ │ │ │ │ │ ├── ListElasticSearchInstanceRequest.java │ │ │ │ │ │ │ ├── ListLoadBalancerInstanceRequest.java │ │ │ │ │ │ │ ├── ListLoginProfileInstanceRequest.java │ │ │ │ │ │ │ ├── ListMongodbInstanceRequest.java │ │ │ │ │ │ │ ├── ListPoliciesInstanceRequest.java │ │ │ │ │ │ │ ├── ListPublicIpInstanceRequest.java │ │ │ │ │ │ │ ├── ListRamInstanceRequest.java │ │ │ │ │ │ │ ├── ListRdsInstanceRequest.java │ │ │ │ │ │ │ ├── ListRedisInstanceRequest.java │ │ │ │ │ │ │ ├── ListSecurityGroupInstanceRequest.java │ │ │ │ │ │ │ ├── ListSecurityGroupRuleInstanceRequest.java │ │ │ │ │ │ │ ├── ListVaultInstanceRequest.java │ │ │ │ │ │ │ └── ListVpcInstanceRequest.java │ │ │ │ │ │ │ └── response │ │ │ │ │ │ │ ├── BucketInstanceResponse.java │ │ │ │ │ │ │ └── DiskInstanceResponse.java │ │ │ │ │ ├── openstack │ │ │ │ │ │ ├── OpenstackProvider.java │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ ├── OpenstackApi.java │ │ │ │ │ │ │ └── OpenstackSearchFieldApi.java │ │ │ │ │ │ ├── entity │ │ │ │ │ │ │ ├── credential │ │ │ │ │ │ │ │ └── OpenstackComplianceCredential.java │ │ │ │ │ │ │ └── request │ │ │ │ │ │ │ │ ├── ListEcsInstanceRequest.java │ │ │ │ │ │ │ │ └── ListSecurityGroupInstanceRequest.java │ │ │ │ │ │ └── util │ │ │ │ │ │ │ └── OpenStackUtils.java │ │ │ │ │ ├── proxmox │ │ │ │ │ │ ├── ProxmoxProvider.java │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ ├── ProxmoxApi.java │ │ │ │ │ │ │ └── ProxmoxSearchFieldApi.java │ │ │ │ │ │ ├── entity │ │ │ │ │ │ │ ├── credential │ │ │ │ │ │ │ │ └── ProxmoxComplianceCredential.java │ │ │ │ │ │ │ └── request │ │ │ │ │ │ │ │ └── ProxmoxBaseRequest.java │ │ │ │ │ │ └── util │ │ │ │ │ │ │ └── MappingUtil.java │ │ │ │ │ ├── tencent │ │ │ │ │ │ ├── TencentCloudProvider.java │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ ├── TencentApi.java │ │ │ │ │ │ │ └── TencentInstanceSearchFieldApi.java │ │ │ │ │ │ ├── client │ │ │ │ │ │ │ └── CeCosClient.java │ │ │ │ │ │ ├── entity │ │ │ │ │ │ │ ├── credential │ │ │ │ │ │ │ │ └── TencentSecurityComplianceCredential.java │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ │ ├── GetBucketAclRequest.java │ │ │ │ │ │ │ │ ├── GetBucketEncryptionRequest.java │ │ │ │ │ │ │ │ ├── GetBucketReferRequest.java │ │ │ │ │ │ │ │ ├── GetSecurityGroupRuleInstanceRequest.java │ │ │ │ │ │ │ │ ├── GetUserSafeAuthInstanceRequest.java │ │ │ │ │ │ │ │ ├── ListBucketInstanceRequest.java │ │ │ │ │ │ │ │ ├── ListCvmInstanceRequest.java │ │ │ │ │ │ │ │ ├── ListDiskInstanceRequest.java │ │ │ │ │ │ │ │ ├── ListElasticsearchInstanceRequest.java │ │ │ │ │ │ │ │ ├── ListLoadBalancerInstanceRequest.java │ │ │ │ │ │ │ │ ├── ListMariaDBInstanceRequest.java │ │ │ │ │ │ │ │ ├── ListMongoDBInstanceRequest.java │ │ │ │ │ │ │ │ ├── ListMysqlInstanceRequest.java │ │ │ │ │ │ │ │ ├── ListPostGreSqlInstanceRequest.java │ │ │ │ │ │ │ │ ├── ListPublicIpInstanceRequest.java │ │ │ │ │ │ │ │ ├── ListRedisInstanceRequest.java │ │ │ │ │ │ │ │ ├── ListSecurityGroupInstanceRequest.java │ │ │ │ │ │ │ │ ├── ListSqlServerInstanceRequest.java │ │ │ │ │ │ │ │ ├── ListUsersInstanceRequest.java │ │ │ │ │ │ │ │ └── ListVpcInstanceRequest.java │ │ │ │ │ │ │ └── response │ │ │ │ │ │ │ │ ├── BucketEncryptionResponse.java │ │ │ │ │ │ │ │ ├── BucketInstanceResponse.java │ │ │ │ │ │ │ │ ├── RamInstanceResponse.java │ │ │ │ │ │ │ │ └── SecurityGroupInstanceResponse.java │ │ │ │ │ │ └── parser │ │ │ │ │ │ │ ├── CeAbstractHandler.java │ │ │ │ │ │ │ └── CeXmlResponseSaxParser.java │ │ │ │ │ └── vsphere │ │ │ │ │ │ ├── VsphereProvider.java │ │ │ │ │ │ ├── api │ │ │ │ │ │ ├── VsphereApi.java │ │ │ │ │ │ └── VsphereInstanceSearchApi.java │ │ │ │ │ │ ├── entity │ │ │ │ │ │ ├── credential │ │ │ │ │ │ │ └── VsphereComplianceCredential.java │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ ├── ListDataStoreInstanceRequest.java │ │ │ │ │ │ │ ├── ListEcsInstanceRequest.java │ │ │ │ │ │ │ ├── ListHostInstanceRequest.java │ │ │ │ │ │ │ └── ListResourcePoolRequest.java │ │ │ │ │ │ └── response │ │ │ │ │ │ │ └── F2CVsphereHost.java │ │ │ │ │ │ └── util │ │ │ │ │ │ ├── VsphereUtil.java │ │ │ │ │ │ └── VsphereVmClient.java │ │ │ │ └── util │ │ │ │ │ ├── FieldUtil.java │ │ │ │ │ └── ResourceUtil.java │ │ │ │ ├── quartz │ │ │ │ └── CloudAccountSyncJob.java │ │ │ │ └── service │ │ │ │ ├── IComplianceInsuranceStatuteService.java │ │ │ │ ├── IComplianceRuleGroupService.java │ │ │ │ ├── IComplianceRuleInsuranceStatuteMappingService.java │ │ │ │ ├── IComplianceRuleService.java │ │ │ │ ├── IComplianceScanResourceResultService.java │ │ │ │ ├── IComplianceScanResultService.java │ │ │ │ ├── IComplianceScanService.java │ │ │ │ ├── IComplianceViewService.java │ │ │ │ ├── IJobService.java │ │ │ │ ├── IJobStepService.java │ │ │ │ ├── ISyncService.java │ │ │ │ └── impl │ │ │ │ ├── ComplianceInsuranceStatuteServiceImpl.java │ │ │ │ ├── ComplianceRuleGroupServiceImpl.java │ │ │ │ ├── ComplianceRuleInsuranceStatuteMappingServiceImpl.java │ │ │ │ ├── ComplianceRuleServiceImpl.java │ │ │ │ ├── ComplianceScanResourceResultServiceImpl.java │ │ │ │ ├── ComplianceScanResultServiceImpl.java │ │ │ │ ├── ComplianceScanServiceImpl.java │ │ │ │ ├── IComplianceViewServiceImpl.java │ │ │ │ ├── JobServiceImpl.java │ │ │ │ ├── JobStepServiceImpl.java │ │ │ │ └── SyncServiceImpl.java │ │ └── resources │ │ │ ├── application.yml │ │ │ ├── db │ │ │ └── migration │ │ │ │ ├── V1__init.sql │ │ │ │ ├── V2_0__ddl_create_compliance_insurance_statute.sql │ │ │ │ ├── V2_1__dml.sql │ │ │ │ ├── V3_0__ddl_create_compliance_rule.sql │ │ │ │ ├── V3_1__dml.sql │ │ │ │ ├── V4_0__ddl_create_compliance_rule_insurance_statute_mapping.sql │ │ │ │ ├── V4_1__dml.sql │ │ │ │ ├── V5_0__ddl_create_compliance_rule_group.sql │ │ │ │ ├── V5_1__dml.sql │ │ │ │ ├── V6_0__ddl_create_compliance_scan_resource_result.sql │ │ │ │ └── V7_0__ddl_create_compliance_scan_result.sql │ │ │ ├── i18n │ │ │ ├── messages.properties │ │ │ ├── messages_en_US.properties │ │ │ ├── messages_zh_CN.properties │ │ │ └── messages_zh_TW.properties │ │ │ ├── logback-spring.xml │ │ │ └── painless │ │ │ ├── avg_ge │ │ │ ├── avg_gt │ │ │ ├── avg_le │ │ │ ├── avg_lt │ │ │ ├── contain │ │ │ ├── eq │ │ │ ├── exist │ │ │ ├── ge │ │ │ ├── gt │ │ │ ├── included_in │ │ │ ├── le │ │ │ ├── length_ge │ │ │ ├── length_gt │ │ │ ├── length_le │ │ │ ├── length_lt │ │ │ ├── lt │ │ │ ├── not_contain │ │ │ ├── not_eq │ │ │ ├── not_exist │ │ │ ├── string_contain │ │ │ ├── sum_ge │ │ │ ├── sum_gt │ │ │ ├── sum_le │ │ │ └── sum_lt │ │ └── test │ │ └── java │ │ └── com │ │ └── fit2cloud │ │ ├── MyBatisPlusGenerator.java │ │ └── SyncTest.java ├── frontend │ ├── .eslintrc.cjs │ ├── .gitignore │ ├── .prettierrc.js │ ├── .vscode │ │ ├── extensions.json │ │ └── settings.json │ ├── env.d.ts │ ├── env │ │ ├── .env │ │ ├── .env.development │ │ └── .env.production │ ├── index.html │ ├── package.json │ ├── pom.xml │ ├── public │ │ └── favicon.ico │ ├── src │ │ ├── App.vue │ │ ├── api │ │ │ ├── compliance_insurance_statute │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── compliance_scan │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── compliance_scan_result │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── rule │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── rule_group │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ └── view │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ ├── locales │ │ │ └── lang │ │ │ │ ├── en.ts │ │ │ │ ├── zh-cn.ts │ │ │ │ └── zh-tw.ts │ │ ├── main.ts │ │ ├── styles │ │ │ └── common │ │ │ │ ├── mixins.scss │ │ │ │ └── variables.scss │ │ └── views │ │ │ ├── insurance_statute │ │ │ └── index.vue │ │ │ ├── overview │ │ │ ├── components │ │ │ │ ├── GroupCard.vue │ │ │ │ └── ResourceCountCard.vue │ │ │ └── index.vue │ │ │ ├── rule │ │ │ ├── ComplianceRule.vue │ │ │ ├── ComplianceRuleGroup.vue │ │ │ ├── LeakRule.vue │ │ │ ├── components │ │ │ │ ├── ComplianceRuleSwitch.vue │ │ │ │ ├── CreateComplianceRule.vue │ │ │ │ ├── CreateComplianceRuleGroup.vue │ │ │ │ ├── UpdateComplianceRule.vue │ │ │ │ ├── UpdateComplianceRuleGroup.vue │ │ │ │ ├── compliance_rule_view │ │ │ │ │ ├── Item.vue │ │ │ │ │ └── index.vue │ │ │ │ └── compliance_rules │ │ │ │ │ ├── ComplianceRuleItem.vue │ │ │ │ │ ├── Operate.vue │ │ │ │ │ └── index.vue │ │ │ └── index.vue │ │ │ └── scan │ │ │ ├── complonents │ │ │ ├── compliance_rule │ │ │ │ ├── JobDetailsView.vue │ │ │ │ ├── JobStepLine.vue │ │ │ │ ├── ScanJobStatusIcon.vue │ │ │ │ ├── ScanStatus.vue │ │ │ │ ├── ScanStatusColumn.vue │ │ │ │ └── index.vue │ │ │ ├── compliance_rule_group │ │ │ │ ├── Proportion.vue │ │ │ │ ├── RuleGroupCard.vue │ │ │ │ └── index.vue │ │ │ └── job_scan │ │ │ │ ├── CloudAccountCheckbox.vue │ │ │ │ ├── RuleGroupCheckbox.vue │ │ │ │ └── index.vue │ │ │ ├── details.vue │ │ │ └── index.vue │ ├── tsconfig.config.json │ ├── tsconfig.json │ └── vite.config.ts ├── pom.xml └── security-compliance.yml └── vm-service ├── .gitignore ├── backend ├── .gitignore ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── fit2cloud │ │ │ ├── VmServiceApplication.java │ │ │ ├── charging │ │ │ ├── Charging.java │ │ │ ├── constants │ │ │ │ ├── VmDiskStateConstants.java │ │ │ │ └── VmServerStateConstants.java │ │ │ ├── entity │ │ │ │ └── GlobalVmServerConfigMeta.java │ │ │ └── handler │ │ │ │ ├── VmCloudDiskInstanceRecordMappingHandler.java │ │ │ │ └── VmServerInstanceRecordMappingHandler.java │ │ │ ├── constants │ │ │ ├── ErrorCodeConstants.java │ │ │ ├── JobConstants.java │ │ │ ├── MenuConstants.java │ │ │ └── PermissionConstants.java │ │ │ ├── controller │ │ │ ├── RecycleBinController.java │ │ │ ├── VmCloudDiskController.java │ │ │ ├── VmCloudImageController.java │ │ │ ├── VmCloudServerCatalogController.java │ │ │ ├── VmCloudServerController.java │ │ │ ├── VmJobRecordController.java │ │ │ └── request │ │ │ │ ├── CreateJobRecordRequest.java │ │ │ │ ├── ExecProviderMethodRequest.java │ │ │ │ ├── GrantRequest.java │ │ │ │ ├── RenewInstanceRequest.java │ │ │ │ ├── ResourceState.java │ │ │ │ ├── disk │ │ │ │ ├── AttachVmCloudDiskRequest.java │ │ │ │ ├── BatchAttachVmCloudDiskRequest.java │ │ │ │ ├── CreateVmCloudDiskRequest.java │ │ │ │ ├── EnlargeVmCloudDiskRequest.java │ │ │ │ ├── ListVmRequest.java │ │ │ │ ├── PageVmCloudDiskRequest.java │ │ │ │ └── VmCloudDiskRequest.java │ │ │ │ ├── images │ │ │ │ ├── PageVmCloudImageRequest.java │ │ │ │ └── VmCloudImageRequest.java │ │ │ │ ├── jobrecord │ │ │ │ └── PageJobRecordRequest.java │ │ │ │ ├── recycle_bin │ │ │ │ ├── BatchRecycleRequest.java │ │ │ │ ├── PageRecycleBinRequest.java │ │ │ │ └── RecycleRequest.java │ │ │ │ └── vm │ │ │ │ ├── BatchOperateVmRequest.java │ │ │ │ ├── ChangeServerConfigRequest.java │ │ │ │ ├── CreateServerRequest.java │ │ │ │ ├── PageVmCloudServerRequest.java │ │ │ │ └── VmCloudServerRequest.java │ │ │ ├── dao │ │ │ ├── entity │ │ │ │ └── VmCloudServerStatusTiming.java │ │ │ └── mapper │ │ │ │ ├── JobRecordMapper.java │ │ │ │ ├── JobRecordMapper.xml │ │ │ │ ├── RecycleBinMapper.java │ │ │ │ ├── RecycleBinMapper.xml │ │ │ │ ├── VmCloudDiskMapper.java │ │ │ │ ├── VmCloudDiskMapper.xml │ │ │ │ ├── VmCloudImageMapper.java │ │ │ │ ├── VmCloudImageMapper.xml │ │ │ │ ├── VmCloudServerMapper.java │ │ │ │ ├── VmCloudServerMapper.xml │ │ │ │ ├── VmCloudServerStatusTimingMapper.java │ │ │ │ └── VmCloudServerStatusTimingMapper.xml │ │ │ ├── dto │ │ │ ├── Good.java │ │ │ ├── JobRecordDTO.java │ │ │ ├── RecycleBinDTO.java │ │ │ ├── VmCloudDiskDTO.java │ │ │ ├── VmCloudDiskDownloadDTO.java │ │ │ ├── VmCloudImageDTO.java │ │ │ ├── VmCloudServerDTO.java │ │ │ └── VmCloudServerDownloadDTO.java │ │ │ ├── event │ │ │ └── EventListener.java │ │ │ ├── job │ │ │ └── CloudAccountSubscribe.java │ │ │ ├── provider │ │ │ └── impl │ │ │ │ ├── aliyun │ │ │ │ ├── AliyunCloudProvider.java │ │ │ │ ├── api │ │ │ │ │ └── AliyunSyncCloudApi.java │ │ │ │ ├── constants │ │ │ │ │ ├── AliRenewalStatus.java │ │ │ │ │ ├── AliyunBandwidthType.java │ │ │ │ │ ├── AliyunChargeType.java │ │ │ │ │ ├── AliyunDiskType.java │ │ │ │ │ ├── AliyunLoginType.java │ │ │ │ │ ├── AliyunOSType.java │ │ │ │ │ ├── AliyunOperationType.java │ │ │ │ │ ├── AliyunPerfMetricConstants.java │ │ │ │ │ └── AliyunPeriodOption.java │ │ │ │ ├── entity │ │ │ │ │ ├── AliyunDiskTypeDTO.java │ │ │ │ │ ├── AliyunInstanceType.java │ │ │ │ │ ├── AliyunPriceModuleConfig.java │ │ │ │ │ ├── credential │ │ │ │ │ │ └── AliyunVmCredential.java │ │ │ │ │ └── request │ │ │ │ │ │ ├── AliRenewInstanceExpiresTimeRequest.java │ │ │ │ │ │ ├── AliRenewInstanceRequest.java │ │ │ │ │ │ ├── AliyunAttachDiskRequest.java │ │ │ │ │ │ ├── AliyunBaseRequest.java │ │ │ │ │ │ ├── AliyunConfigUpdateForm.java │ │ │ │ │ │ ├── AliyunCreateDiskForm.java │ │ │ │ │ │ ├── AliyunCreateDiskRequest.java │ │ │ │ │ │ ├── AliyunCreateDisksRequest.java │ │ │ │ │ │ ├── AliyunDeleteDiskRequest.java │ │ │ │ │ │ ├── AliyunDetachDiskRequest.java │ │ │ │ │ │ ├── AliyunGetAvailableResourceRequest.java │ │ │ │ │ │ ├── AliyunGetDiskTypeRequest.java │ │ │ │ │ │ ├── AliyunGetImageRequest.java │ │ │ │ │ │ ├── AliyunGetPriceModuleRequest.java │ │ │ │ │ │ ├── AliyunGetRegionRequest.java │ │ │ │ │ │ ├── AliyunGetSecurityGroupRequest.java │ │ │ │ │ │ ├── AliyunGetVSwitchRequest.java │ │ │ │ │ │ ├── AliyunGetZoneRequest.java │ │ │ │ │ │ ├── AliyunInstanceRequest.java │ │ │ │ │ │ ├── AliyunPriceRequest.java │ │ │ │ │ │ ├── AliyunResizeDiskRequest.java │ │ │ │ │ │ ├── AliyunUpdateConfigRequest.java │ │ │ │ │ │ ├── AliyunVmCreateRequest.java │ │ │ │ │ │ ├── ListDisksRequest.java │ │ │ │ │ │ ├── ListImageRequest.java │ │ │ │ │ │ ├── ListInstanceTypesRequest.java │ │ │ │ │ │ └── ListVirtualMachineRequest.java │ │ │ │ └── util │ │ │ │ │ └── AliyunMappingUtil.java │ │ │ │ ├── huawei │ │ │ │ ├── HuaweiCloudProvider.java │ │ │ │ ├── api │ │ │ │ │ └── HuaweiSyncCloudApi.java │ │ │ │ ├── constants │ │ │ │ │ ├── HuaweiDiskType.java │ │ │ │ │ ├── HuaweiExpirePolicyConstants.java │ │ │ │ │ ├── HuaweiPerfMetricConstants.java │ │ │ │ │ └── HuaweiPeriodOption.java │ │ │ │ ├── entity │ │ │ │ │ ├── DiskConfig.java │ │ │ │ │ ├── F2CHuaweiSecurityGroups.java │ │ │ │ │ ├── F2CHuaweiSubnet.java │ │ │ │ │ ├── F2CHuaweiVpc.java │ │ │ │ │ ├── HuaweiServerNameInfo.java │ │ │ │ │ ├── InstanceSpecConfig.java │ │ │ │ │ ├── InstanceSpecType.java │ │ │ │ │ ├── NetworkConfig.java │ │ │ │ │ ├── NovaAvailabilityZoneDTO.java │ │ │ │ │ ├── OsConfig.java │ │ │ │ │ ├── credential │ │ │ │ │ │ └── HuaweiVmCredential.java │ │ │ │ │ └── request │ │ │ │ │ │ ├── HuaweiAttachDiskRequest.java │ │ │ │ │ │ ├── HuaweiBaseRequest.java │ │ │ │ │ │ ├── HuaweiConfigUpdateForm.java │ │ │ │ │ │ ├── HuaweiCreateDiskForm.java │ │ │ │ │ │ ├── HuaweiCreateDiskRequest.java │ │ │ │ │ │ ├── HuaweiCreateDisksRequest.java │ │ │ │ │ │ ├── HuaweiDeleteDiskRequest.java │ │ │ │ │ │ ├── HuaweiDetachDiskRequest.java │ │ │ │ │ │ ├── HuaweiGetDiskTypeRequest.java │ │ │ │ │ │ ├── HuaweiInstanceRequest.java │ │ │ │ │ │ ├── HuaweiRenewInstanceExpiresTimeRequest.java │ │ │ │ │ │ ├── HuaweiRenewInstanceRequest.java │ │ │ │ │ │ ├── HuaweiResizeDiskRequest.java │ │ │ │ │ │ ├── HuaweiUpdateConfigRequest.java │ │ │ │ │ │ ├── HuaweiVmCreateRequest.java │ │ │ │ │ │ ├── ListDisksRequest.java │ │ │ │ │ │ ├── ListImageRequest.java │ │ │ │ │ │ └── ListVirtualMachineRequest.java │ │ │ │ └── util │ │ │ │ │ └── HuaweiMappingUtil.java │ │ │ │ ├── openstack │ │ │ │ ├── OpenStackCloudProvider.java │ │ │ │ ├── api │ │ │ │ │ └── OpenStackCloudApi.java │ │ │ │ ├── constants │ │ │ │ │ └── OpenstackPeriodOption.java │ │ │ │ ├── entity │ │ │ │ │ ├── CheckStatusResult.java │ │ │ │ │ ├── OpenStackFlavor.java │ │ │ │ │ ├── VolumeType.java │ │ │ │ │ └── request │ │ │ │ │ │ ├── CalculateConfigUpdatePriceRequest.java │ │ │ │ │ │ ├── OpenStackConfigUpdateForm.java │ │ │ │ │ │ ├── OpenStackConfigUpdateRequest.java │ │ │ │ │ │ ├── OpenStackDiskActionRequest.java │ │ │ │ │ │ ├── OpenStackDiskCreateRequest.java │ │ │ │ │ │ ├── OpenStackDiskEnlargeRequest.java │ │ │ │ │ │ ├── OpenStackInstanceActionRequest.java │ │ │ │ │ │ ├── OpenStackServerCreateRequest.java │ │ │ │ │ │ └── OpenstackCalculateConfigPriceRequest.java │ │ │ │ └── util │ │ │ │ │ ├── OpenStackPerfMetricConstants.java │ │ │ │ │ └── OpenStackUtils.java │ │ │ │ ├── proxmox │ │ │ │ ├── ProxmoxCloudProvider.java │ │ │ │ ├── api │ │ │ │ │ ├── ActionApi.java │ │ │ │ │ └── SyncApi.java │ │ │ │ ├── constants │ │ │ │ │ └── ProxmoxPerfMetricConstants.java │ │ │ │ ├── entity │ │ │ │ │ ├── DiskConfig.java │ │ │ │ │ ├── ProxmoxActionBaseRequest.java │ │ │ │ │ ├── constants │ │ │ │ │ │ ├── DiskType.java │ │ │ │ │ │ └── ProxmoxPeriodOption.java │ │ │ │ │ ├── credential │ │ │ │ │ │ └── VmProxmoxCredential.java │ │ │ │ │ └── request │ │ │ │ │ │ ├── AddDiskForm.java │ │ │ │ │ │ ├── AddDiskFormRequest.java │ │ │ │ │ │ ├── BaseRequest.java │ │ │ │ │ │ ├── CalculateConfigUpdatePriceRequest.java │ │ │ │ │ │ ├── ConfigUpdateForm.java │ │ │ │ │ │ ├── ProxmoxBaseRequest.java │ │ │ │ │ │ ├── ProxmoxCalculateConfigPriceRequest.java │ │ │ │ │ │ ├── ProxmoxCreateServerRequest.java │ │ │ │ │ │ ├── ProxmoxNetworkForm.java │ │ │ │ │ │ └── ProxmoxUpdateConfigRequest.java │ │ │ │ └── util │ │ │ │ │ └── MappingUtil.java │ │ │ │ ├── tencent │ │ │ │ ├── TencentCloudProvider.java │ │ │ │ ├── api │ │ │ │ │ └── TencentSyncCloudApi.java │ │ │ │ ├── constants │ │ │ │ │ ├── RenewFlagConstants.java │ │ │ │ │ ├── TencentBandwidthType.java │ │ │ │ │ ├── TencentChargeType.java │ │ │ │ │ ├── TencentDiskType.java │ │ │ │ │ ├── TencentLoginType.java │ │ │ │ │ ├── TencentOSType.java │ │ │ │ │ ├── TencentPerfMetricConstants.java │ │ │ │ │ └── TencentPeriodOption.java │ │ │ │ ├── entity │ │ │ │ │ ├── SecurityGroupDTO.java │ │ │ │ │ ├── TencentDiskTypeDTO.java │ │ │ │ │ ├── TencentInstanceType.java │ │ │ │ │ ├── credential │ │ │ │ │ │ └── TencentVmCredential.java │ │ │ │ │ └── request │ │ │ │ │ │ ├── ListDiskRequest.java │ │ │ │ │ │ ├── ListImageRequest.java │ │ │ │ │ │ ├── ListVirtualMachineRequest.java │ │ │ │ │ │ ├── TencentAttachDiskRequest.java │ │ │ │ │ │ ├── TencentBaseRequest.java │ │ │ │ │ │ ├── TencentConfigUpdateForm.java │ │ │ │ │ │ ├── TencentCreateDiskForm.java │ │ │ │ │ │ ├── TencentCreateDiskRequest.java │ │ │ │ │ │ ├── TencentCreateDisksRequest.java │ │ │ │ │ │ ├── TencentDeleteDiskRequest.java │ │ │ │ │ │ ├── TencentDetachDiskRequest.java │ │ │ │ │ │ ├── TencentGetDiskTypeRequest.java │ │ │ │ │ │ ├── TencentGetImageRequest.java │ │ │ │ │ │ ├── TencentGetInstanceTypeRequest.java │ │ │ │ │ │ ├── TencentGetSubnetRequest.java │ │ │ │ │ │ ├── TencentGetVpcRequest.java │ │ │ │ │ │ ├── TencentInstanceRequest.java │ │ │ │ │ │ ├── TencentRenewInstanceExpiresTimeRequest.java │ │ │ │ │ │ ├── TencentRenewInstanceRequest.java │ │ │ │ │ │ ├── TencentResizeDiskRequest.java │ │ │ │ │ │ ├── TencentUpdateConfigRequest.java │ │ │ │ │ │ └── TencentVmCreateRequest.java │ │ │ │ └── util │ │ │ │ │ └── TencentMappingUtil.java │ │ │ │ └── vsphere │ │ │ │ ├── VsphereCloudProvider.java │ │ │ │ ├── api │ │ │ │ └── VsphereSyncCloudApi.java │ │ │ │ ├── entity │ │ │ │ ├── ConvertToPerfMetricDataVO.java │ │ │ │ ├── DatastoreMor.java │ │ │ │ ├── DiskOpsType.java │ │ │ │ ├── F2CVsphereCluster.java │ │ │ │ ├── F2CVsphereDatastore.java │ │ │ │ ├── F2CVsphereHost.java │ │ │ │ ├── F2CVsphereNetwork.java │ │ │ │ ├── MetricTimeValue.java │ │ │ │ ├── VsphereDatastore.java │ │ │ │ ├── VsphereDisk.java │ │ │ │ ├── VsphereFolder.java │ │ │ │ ├── VsphereHost.java │ │ │ │ ├── VsphereResourcePool.java │ │ │ │ ├── VsphereTemplate.java │ │ │ │ ├── constants │ │ │ │ │ ├── VsphereDiskMode.java │ │ │ │ │ ├── VsphereDiskType.java │ │ │ │ │ └── VspherePeriodOption.java │ │ │ │ └── request │ │ │ │ │ ├── CalculateConfigUpdatePriceRequest.java │ │ │ │ │ ├── VsphereCalculateConfigPriceRequest.java │ │ │ │ │ ├── VsphereConfigUpdateForm.java │ │ │ │ │ ├── VsphereCreateDiskForm.java │ │ │ │ │ ├── VsphereCreateDiskRequest.java │ │ │ │ │ ├── VsphereCreateDisksRequest.java │ │ │ │ │ ├── VsphereDatastoreRequest.java │ │ │ │ │ ├── VsphereDiskRequest.java │ │ │ │ │ ├── VsphereHostRequest.java │ │ │ │ │ ├── VsphereNetworkRequest.java │ │ │ │ │ ├── VsphereResizeDiskRequest.java │ │ │ │ │ ├── VsphereUpdateConfigRequest.java │ │ │ │ │ ├── VsphereVmBaseRequest.java │ │ │ │ │ ├── VsphereVmCreateRequest.java │ │ │ │ │ ├── VsphereVmPowerRequest.java │ │ │ │ │ └── VsphereVmResetPasswordRequest.java │ │ │ │ └── util │ │ │ │ ├── ContentLibaryUtils.java │ │ │ │ ├── ContentLibraryUtil.java │ │ │ │ ├── DiskType.java │ │ │ │ ├── OvfUtil.java │ │ │ │ ├── ResourceConstants.java │ │ │ │ ├── VsphereDiskUtil.java │ │ │ │ ├── VspherePerfMetricConstants.java │ │ │ │ ├── VsphereUtil.java │ │ │ │ └── VsphereVmClient.java │ │ │ ├── quartz │ │ │ └── CloudAccountSyncJob.java │ │ │ ├── service │ │ │ ├── IJobRecordService.java │ │ │ ├── IPermissionService.java │ │ │ ├── IRecycleBinService.java │ │ │ ├── IResourceOperateService.java │ │ │ ├── ISyncProviderService.java │ │ │ ├── IVmCloudDiskService.java │ │ │ ├── IVmCloudImageService.java │ │ │ ├── IVmCloudServerService.java │ │ │ ├── IVmCloudServerStatusTimingService.java │ │ │ └── impl │ │ │ │ ├── JobRecordServiceImpl.java │ │ │ │ ├── PermissionServiceImpl.java │ │ │ │ ├── RecycleBinServiceImpl.java │ │ │ │ ├── ResourceCountImpl.java │ │ │ │ ├── ResourceOperateServiceImpl.java │ │ │ │ ├── SyncProviderServiceImpl.java │ │ │ │ ├── VmCloudDiskServiceImpl.java │ │ │ │ ├── VmCloudImageServiceImpl.java │ │ │ │ ├── VmCloudServerServiceImpl.java │ │ │ │ └── VmCloudServerStatusTimingServiceImpl.java │ │ │ └── utils │ │ │ └── ConvertUtils.java │ └── resources │ │ ├── application.yml │ │ ├── db │ │ └── migration │ │ │ ├── V10_0__ddl_create_vm_cloud_server_status_timing.sql │ │ │ ├── V11_0__ddl_alter_vm_server_disk.sql │ │ │ ├── V12_0__ddl_alter_vm_server.sql │ │ │ ├── V13_0__ddl_alter_vm_server.sql │ │ │ ├── V1__init.sql │ │ │ ├── V2_0__dml.sql │ │ │ ├── V3_0__ddl_create_vm_cloud_server.sql │ │ │ ├── V4_0__ddl_create_vm_cloud_disk.sql │ │ │ ├── V5_0__ddl_create_vm_cloud_host.sql │ │ │ ├── V6_0__ddl_create_vm_cloud_datastore.sql │ │ │ ├── V7_0__ddl_create_vm_cloud_image.sql │ │ │ ├── V8_0__ddl_create_recycle_bin.sql │ │ │ └── V9_0__ddl_alter_datastore_host.sql │ │ ├── i18n │ │ ├── messages.properties │ │ ├── messages_en_US.properties │ │ ├── messages_zh_CN.properties │ │ └── messages_zh_TW.properties │ │ ├── linux_create_user.sh │ │ └── logback-spring.xml │ └── test │ └── java │ └── com │ └── fit2cloud │ └── MyBatisPlusGenerator.java ├── frontend ├── .eslintrc.cjs ├── .gitignore ├── .vscode │ ├── extensions.json │ └── settings.json ├── env.d.ts ├── env │ ├── .env │ ├── .env.development │ └── .env.production ├── index.html ├── package.json ├── pom.xml ├── public │ └── favicon.ico ├── src │ ├── App.vue │ ├── api │ │ ├── catalog │ │ │ ├── index.ts │ │ │ └── type.ts │ │ ├── jobs │ │ │ ├── index.ts │ │ │ └── type.ts │ │ ├── recycle_bin │ │ │ ├── index.ts │ │ │ └── type.ts │ │ ├── vm_cloud_disk │ │ │ ├── index.ts │ │ │ └── type.ts │ │ ├── vm_cloud_image │ │ │ ├── index.ts │ │ │ └── type.ts │ │ └── vm_cloud_server │ │ │ ├── index.ts │ │ │ └── type.ts │ ├── assets │ │ └── img │ │ │ └── huawei.ico │ ├── locales │ │ └── lang │ │ │ ├── en.ts │ │ │ ├── zh-cn.ts │ │ │ └── zh-tw.ts │ ├── main.ts │ ├── styles │ │ ├── common │ │ │ ├── mixins.scss │ │ │ └── variables.scss │ │ └── vm_cloud_server │ │ │ └── server.module.scss │ ├── utils │ │ └── constants.ts │ └── views │ │ ├── jobs │ │ ├── detail.vue │ │ ├── index.vue │ │ └── list.vue │ │ ├── recycle_bin │ │ ├── index.vue │ │ └── list.vue │ │ ├── vm_cloud_disk │ │ ├── BasicInfo.vue │ │ ├── DiskStatusIcon.vue │ │ ├── attach.vue │ │ ├── detail.vue │ │ ├── enlarge.vue │ │ ├── index.vue │ │ ├── info.vue │ │ └── list.vue │ │ ├── vm_cloud_image │ │ ├── ManageInfo.vue │ │ ├── detail.vue │ │ ├── index.vue │ │ └── list.vue │ │ └── vm_cloud_server │ │ ├── AddDisk.vue │ │ ├── ChangeConfig.vue │ │ ├── EnableStatusSwitch.vue │ │ ├── Renew.vue │ │ ├── RenewExpiresTime.vue │ │ ├── RenewPrice.vue │ │ ├── VmServerStatusIcon.vue │ │ ├── create │ │ ├── CeFooterFormItem.vue │ │ ├── CeFormItem.vue │ │ ├── CreateConfirmStep.vue │ │ ├── catalog.vue │ │ └── index.vue │ │ ├── detail.vue │ │ ├── grant.vue │ │ ├── index.vue │ │ ├── info.vue │ │ ├── list.vue │ │ └── monitor.vue ├── tsconfig.config.json ├── tsconfig.json └── vite.config.ts ├── plugins-sdk ├── pom.xml └── src │ └── main │ └── java │ └── com │ └── fit2cloud │ └── vm │ ├── AbstractCloudProvider.java │ ├── ICloudProvider.java │ ├── ICreateServerRequest.java │ ├── PrivateLocalCloudClient.java │ ├── constants │ ├── ActionInfoConstants.java │ ├── DeleteWithInstance.java │ ├── ExpirePolicyConstants.java │ ├── F2CChargeType.java │ ├── F2CDiskStatus.java │ ├── F2CImageStatus.java │ ├── F2CInstanceStatus.java │ └── PriceUnit.java │ └── entity │ ├── F2CDatastore.java │ ├── F2CDisk.java │ ├── F2CHost.java │ ├── F2CImage.java │ ├── F2CNetwork.java │ ├── F2CVirtualMachine.java │ ├── request │ ├── BaseDiskAttachRequest.java │ ├── BaseDiskCreateRequest.java │ ├── BaseDiskRequest.java │ ├── BaseDiskResizeRequest.java │ ├── BaseRequest.java │ ├── GetMetricsRequest.java │ ├── RenewInstanceExpiresTimeRequest.java │ ├── RenewInstancePriceRequest.java │ └── RenewInstanceRequest.java │ └── result │ └── CheckCreateServerResult.java ├── pom.xml └── vm-service.yml /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/.github/ISSUE_TEMPLATE/feature.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/.github/ISSUE_TEMPLATE/question.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/auto-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/.github/workflows/auto-pr.yml -------------------------------------------------------------------------------- /.github/workflows/issue-check-inactive.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/.github/workflows/issue-check-inactive.yml -------------------------------------------------------------------------------- /.github/workflows/issue-close-require.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/.github/workflows/issue-close-require.yml -------------------------------------------------------------------------------- /.github/workflows/issue-comment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/.github/workflows/issue-comment.yml -------------------------------------------------------------------------------- /.github/workflows/issue-inactive-alert.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/.github/workflows/issue-inactive-alert.yml -------------------------------------------------------------------------------- /.github/workflows/issue-open.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/.github/workflows/issue-open.yml -------------------------------------------------------------------------------- /.github/workflows/issue-recent-alert.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/.github/workflows/issue-recent-alert.yml -------------------------------------------------------------------------------- /.github/workflows/sync2gitee.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/.github/workflows/sync2gitee.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/.idea/icon.png -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-typescript.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/.yarn/plugins/@yarnpkg/plugin-typescript.cjs -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs -------------------------------------------------------------------------------- /.yarn/releases/yarn-3.5.1.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/.yarn/releases/yarn-3.5.1.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/SECURITY.md -------------------------------------------------------------------------------- /demo/DEMO-TEMPLATE/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/demo/DEMO-TEMPLATE/.gitignore -------------------------------------------------------------------------------- /demo/DEMO-TEMPLATE/DEMO-TEMPLATE.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/demo/DEMO-TEMPLATE/DEMO-TEMPLATE.yml -------------------------------------------------------------------------------- /demo/DEMO-TEMPLATE/backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/demo/DEMO-TEMPLATE/backend/.gitignore -------------------------------------------------------------------------------- /demo/DEMO-TEMPLATE/backend/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/demo/DEMO-TEMPLATE/backend/pom.xml -------------------------------------------------------------------------------- /demo/DEMO-TEMPLATE/backend/src/main/java/com/fit2cloud/dto/DemoObject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/demo/DEMO-TEMPLATE/backend/src/main/java/com/fit2cloud/dto/DemoObject.java -------------------------------------------------------------------------------- /demo/DEMO-TEMPLATE/backend/src/main/java/com/fit2cloud/quartz/DemoJob.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/demo/DEMO-TEMPLATE/backend/src/main/java/com/fit2cloud/quartz/DemoJob.java -------------------------------------------------------------------------------- /demo/DEMO-TEMPLATE/backend/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/demo/DEMO-TEMPLATE/backend/src/main/resources/application.yml -------------------------------------------------------------------------------- /demo/DEMO-TEMPLATE/backend/src/main/resources/db/migration/V1__init.sql: -------------------------------------------------------------------------------- 1 | select database(); 2 | -------------------------------------------------------------------------------- /demo/DEMO-TEMPLATE/backend/src/main/resources/i18n/messages.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/DEMO-TEMPLATE/backend/src/main/resources/i18n/messages_en_US.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/demo/DEMO-TEMPLATE/backend/src/main/resources/i18n/messages_en_US.properties -------------------------------------------------------------------------------- /demo/DEMO-TEMPLATE/backend/src/main/resources/logback-spring.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/demo/DEMO-TEMPLATE/backend/src/main/resources/logback-spring.xml -------------------------------------------------------------------------------- /demo/DEMO-TEMPLATE/frontend/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/demo/DEMO-TEMPLATE/frontend/.eslintrc.cjs -------------------------------------------------------------------------------- /demo/DEMO-TEMPLATE/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/demo/DEMO-TEMPLATE/frontend/.gitignore -------------------------------------------------------------------------------- /demo/DEMO-TEMPLATE/frontend/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/demo/DEMO-TEMPLATE/frontend/.vscode/extensions.json -------------------------------------------------------------------------------- /demo/DEMO-TEMPLATE/frontend/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/demo/DEMO-TEMPLATE/frontend/.vscode/settings.json -------------------------------------------------------------------------------- /demo/DEMO-TEMPLATE/frontend/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/demo/DEMO-TEMPLATE/frontend/env.d.ts -------------------------------------------------------------------------------- /demo/DEMO-TEMPLATE/frontend/env/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/demo/DEMO-TEMPLATE/frontend/env/.env -------------------------------------------------------------------------------- /demo/DEMO-TEMPLATE/frontend/env/.env.development: -------------------------------------------------------------------------------- 1 | # development 2 | 3 | VITE_APP_TITLE = 测试 CLOUD EXPLORER (dev run) 4 | -------------------------------------------------------------------------------- /demo/DEMO-TEMPLATE/frontend/env/.env.production: -------------------------------------------------------------------------------- 1 | # production 2 | 3 | VITE_APP_TITLE=CloudExplorer 云管理平台 4 | -------------------------------------------------------------------------------- /demo/DEMO-TEMPLATE/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/demo/DEMO-TEMPLATE/frontend/index.html -------------------------------------------------------------------------------- /demo/DEMO-TEMPLATE/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/demo/DEMO-TEMPLATE/frontend/package.json -------------------------------------------------------------------------------- /demo/DEMO-TEMPLATE/frontend/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/demo/DEMO-TEMPLATE/frontend/pom.xml -------------------------------------------------------------------------------- /demo/DEMO-TEMPLATE/frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/demo/DEMO-TEMPLATE/frontend/public/favicon.ico -------------------------------------------------------------------------------- /demo/DEMO-TEMPLATE/frontend/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/demo/DEMO-TEMPLATE/frontend/src/App.vue -------------------------------------------------------------------------------- /demo/DEMO-TEMPLATE/frontend/src/api/demo/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/demo/DEMO-TEMPLATE/frontend/src/api/demo/index.ts -------------------------------------------------------------------------------- /demo/DEMO-TEMPLATE/frontend/src/api/demo/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/demo/DEMO-TEMPLATE/frontend/src/api/demo/type.ts -------------------------------------------------------------------------------- /demo/DEMO-TEMPLATE/frontend/src/locales/lang/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/demo/DEMO-TEMPLATE/frontend/src/locales/lang/en.ts -------------------------------------------------------------------------------- /demo/DEMO-TEMPLATE/frontend/src/locales/lang/zh-cn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/demo/DEMO-TEMPLATE/frontend/src/locales/lang/zh-cn.ts -------------------------------------------------------------------------------- /demo/DEMO-TEMPLATE/frontend/src/locales/lang/zh-tw.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/demo/DEMO-TEMPLATE/frontend/src/locales/lang/zh-tw.ts -------------------------------------------------------------------------------- /demo/DEMO-TEMPLATE/frontend/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/demo/DEMO-TEMPLATE/frontend/src/main.ts -------------------------------------------------------------------------------- /demo/DEMO-TEMPLATE/frontend/src/styles/common/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/demo/DEMO-TEMPLATE/frontend/src/styles/common/mixins.scss -------------------------------------------------------------------------------- /demo/DEMO-TEMPLATE/frontend/src/styles/common/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/demo/DEMO-TEMPLATE/frontend/src/styles/common/variables.scss -------------------------------------------------------------------------------- /demo/DEMO-TEMPLATE/frontend/src/views/demo/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/demo/DEMO-TEMPLATE/frontend/src/views/demo/index.vue -------------------------------------------------------------------------------- /demo/DEMO-TEMPLATE/frontend/src/views/demo/list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/demo/DEMO-TEMPLATE/frontend/src/views/demo/list.vue -------------------------------------------------------------------------------- /demo/DEMO-TEMPLATE/frontend/tsconfig.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/demo/DEMO-TEMPLATE/frontend/tsconfig.config.json -------------------------------------------------------------------------------- /demo/DEMO-TEMPLATE/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/demo/DEMO-TEMPLATE/frontend/tsconfig.json -------------------------------------------------------------------------------- /demo/DEMO-TEMPLATE/frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/demo/DEMO-TEMPLATE/frontend/vite.config.ts -------------------------------------------------------------------------------- /demo/DEMO-TEMPLATE/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/demo/DEMO-TEMPLATE/pom.xml -------------------------------------------------------------------------------- /demo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/demo/pom.xml -------------------------------------------------------------------------------- /demo/src/test/java/CreateModuleUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/demo/src/test/java/CreateModuleUtil.java -------------------------------------------------------------------------------- /doc/cloudexplorer/VERSION: -------------------------------------------------------------------------------- 1 | main 2 | -------------------------------------------------------------------------------- /doc/cloudexplorer/apps/core/run-core.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/doc/cloudexplorer/apps/core/run-core.sh -------------------------------------------------------------------------------- /doc/cloudexplorer/apps/extra/modules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/cloudexplorer/conf/cloudexplorer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/doc/cloudexplorer/conf/cloudexplorer.properties -------------------------------------------------------------------------------- /doc/cloudexplorer/conf/redisson.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/doc/cloudexplorer/conf/redisson.yml -------------------------------------------------------------------------------- /doc/cloudexplorer/logs/ce-logs-dir: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/开发指南.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/doc/开发指南.md -------------------------------------------------------------------------------- /framework/eureka/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/eureka/pom.xml -------------------------------------------------------------------------------- /framework/eureka/src/main/java/com/fit2cloud/eureka/EurekaApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/eureka/src/main/java/com/fit2cloud/eureka/EurekaApplication.java -------------------------------------------------------------------------------- /framework/eureka/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/eureka/src/main/resources/application.yml -------------------------------------------------------------------------------- /framework/eureka/src/main/resources/logback-spring.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/eureka/src/main/resources/logback-spring.xml -------------------------------------------------------------------------------- /framework/gateway/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/gateway/.gitignore -------------------------------------------------------------------------------- /framework/gateway/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/gateway/pom.xml -------------------------------------------------------------------------------- /framework/gateway/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/gateway/src/main/resources/application.yml -------------------------------------------------------------------------------- /framework/gateway/src/main/resources/logback-spring.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/gateway/src/main/resources/logback-spring.xml -------------------------------------------------------------------------------- /framework/gateway/src/test/java/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/gateway/src/test/java/Test.java -------------------------------------------------------------------------------- /framework/management-center/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/.gitignore -------------------------------------------------------------------------------- /framework/management-center/backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/backend/.gitignore -------------------------------------------------------------------------------- /framework/management-center/backend/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/backend/pom.xml -------------------------------------------------------------------------------- /framework/management-center/backend/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/backend/src/main/resources/application.yml -------------------------------------------------------------------------------- /framework/management-center/backend/src/main/resources/db/migration/V1__init.sql: -------------------------------------------------------------------------------- 1 | select database(); 2 | -------------------------------------------------------------------------------- /framework/management-center/backend/src/main/resources/logback-spring.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/backend/src/main/resources/logback-spring.xml -------------------------------------------------------------------------------- /framework/management-center/frontend/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/.eslintrc.cjs -------------------------------------------------------------------------------- /framework/management-center/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/.gitignore -------------------------------------------------------------------------------- /framework/management-center/frontend/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/.vscode/extensions.json -------------------------------------------------------------------------------- /framework/management-center/frontend/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/.vscode/settings.json -------------------------------------------------------------------------------- /framework/management-center/frontend/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/env.d.ts -------------------------------------------------------------------------------- /framework/management-center/frontend/env/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/env/.env -------------------------------------------------------------------------------- /framework/management-center/frontend/env/.env.development: -------------------------------------------------------------------------------- 1 | # development 2 | 3 | VITE_APP_TITLE = 测试 CLOUD EXPLORER (dev run) 4 | -------------------------------------------------------------------------------- /framework/management-center/frontend/env/.env.production: -------------------------------------------------------------------------------- 1 | # production 2 | 3 | VITE_APP_TITLE=CloudExplorer Lite 云管理平台 4 | -------------------------------------------------------------------------------- /framework/management-center/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/index.html -------------------------------------------------------------------------------- /framework/management-center/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/package.json -------------------------------------------------------------------------------- /framework/management-center/frontend/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/pom.xml -------------------------------------------------------------------------------- /framework/management-center/frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/public/favicon.ico -------------------------------------------------------------------------------- /framework/management-center/frontend/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/App.vue -------------------------------------------------------------------------------- /framework/management-center/frontend/src/api/cloud_account/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/api/cloud_account/index.ts -------------------------------------------------------------------------------- /framework/management-center/frontend/src/api/cloud_account/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/api/cloud_account/type.ts -------------------------------------------------------------------------------- /framework/management-center/frontend/src/api/module/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/api/module/index.ts -------------------------------------------------------------------------------- /framework/management-center/frontend/src/api/operated_log/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/api/operated_log/index.ts -------------------------------------------------------------------------------- /framework/management-center/frontend/src/api/operated_log/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/api/operated_log/type.ts -------------------------------------------------------------------------------- /framework/management-center/frontend/src/api/organization/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/api/organization/index.ts -------------------------------------------------------------------------------- /framework/management-center/frontend/src/api/organization/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/api/organization/type.ts -------------------------------------------------------------------------------- /framework/management-center/frontend/src/api/role/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/api/role/index.ts -------------------------------------------------------------------------------- /framework/management-center/frontend/src/api/role/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/api/role/type.ts -------------------------------------------------------------------------------- /framework/management-center/frontend/src/api/sys_log/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/api/sys_log/index.ts -------------------------------------------------------------------------------- /framework/management-center/frontend/src/api/sys_log/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/api/sys_log/type.ts -------------------------------------------------------------------------------- /framework/management-center/frontend/src/api/system_params/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/api/system_params/index.ts -------------------------------------------------------------------------------- /framework/management-center/frontend/src/api/system_params/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/api/system_params/type.ts -------------------------------------------------------------------------------- /framework/management-center/frontend/src/api/user/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/api/user/index.ts -------------------------------------------------------------------------------- /framework/management-center/frontend/src/api/user/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/api/user/type.ts -------------------------------------------------------------------------------- /framework/management-center/frontend/src/api/workspace/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/api/workspace/index.ts -------------------------------------------------------------------------------- /framework/management-center/frontend/src/api/workspace/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/api/workspace/type.ts -------------------------------------------------------------------------------- /framework/management-center/frontend/src/componnets/DetailFormLabel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/componnets/DetailFormLabel.vue -------------------------------------------------------------------------------- /framework/management-center/frontend/src/componnets/DetailFormTitle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/componnets/DetailFormTitle.vue -------------------------------------------------------------------------------- /framework/management-center/frontend/src/componnets/DetailFormValue.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/componnets/DetailFormValue.vue -------------------------------------------------------------------------------- /framework/management-center/frontend/src/componnets/StatusIconConstant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/componnets/StatusIconConstant.ts -------------------------------------------------------------------------------- /framework/management-center/frontend/src/componnets/job/Job.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/componnets/job/Job.vue -------------------------------------------------------------------------------- /framework/management-center/frontend/src/componnets/job/JobModuleItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/componnets/job/JobModuleItem.vue -------------------------------------------------------------------------------- /framework/management-center/frontend/src/componnets/job/SyncJobTabView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/componnets/job/SyncJobTabView.vue -------------------------------------------------------------------------------- /framework/management-center/frontend/src/componnets/job/view/CronView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/componnets/job/view/CronView.vue -------------------------------------------------------------------------------- /framework/management-center/frontend/src/locales/lang/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/locales/lang/en.ts -------------------------------------------------------------------------------- /framework/management-center/frontend/src/locales/lang/zh-cn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/locales/lang/zh-cn.ts -------------------------------------------------------------------------------- /framework/management-center/frontend/src/locales/lang/zh-tw.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/locales/lang/zh-tw.ts -------------------------------------------------------------------------------- /framework/management-center/frontend/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/main.ts -------------------------------------------------------------------------------- /framework/management-center/frontend/src/styles/common/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/styles/common/mixins.scss -------------------------------------------------------------------------------- /framework/management-center/frontend/src/styles/common/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/styles/common/variables.scss -------------------------------------------------------------------------------- /framework/management-center/frontend/src/utils/constant.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/management-center/frontend/src/views/About/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/views/About/index.vue -------------------------------------------------------------------------------- /framework/management-center/frontend/src/views/CloudAccount/create.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/views/CloudAccount/create.vue -------------------------------------------------------------------------------- /framework/management-center/frontend/src/views/CloudAccount/detail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/views/CloudAccount/detail.vue -------------------------------------------------------------------------------- /framework/management-center/frontend/src/views/CloudAccount/edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/views/CloudAccount/edit.vue -------------------------------------------------------------------------------- /framework/management-center/frontend/src/views/CloudAccount/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/views/CloudAccount/index.vue -------------------------------------------------------------------------------- /framework/management-center/frontend/src/views/CloudAccount/list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/views/CloudAccount/list.vue -------------------------------------------------------------------------------- /framework/management-center/frontend/src/views/CloudAccount/syncJob.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/views/CloudAccount/syncJob.vue -------------------------------------------------------------------------------- /framework/management-center/frontend/src/views/Message/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/views/Message/index.vue -------------------------------------------------------------------------------- /framework/management-center/frontend/src/views/OperatedLog/LogDetail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/views/OperatedLog/LogDetail.vue -------------------------------------------------------------------------------- /framework/management-center/frontend/src/views/OperatedLog/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/views/OperatedLog/index.vue -------------------------------------------------------------------------------- /framework/management-center/frontend/src/views/OperatedLog/list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/views/OperatedLog/list.vue -------------------------------------------------------------------------------- /framework/management-center/frontend/src/views/OrgManage/create.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/views/OrgManage/create.vue -------------------------------------------------------------------------------- /framework/management-center/frontend/src/views/OrgManage/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/views/OrgManage/index.vue -------------------------------------------------------------------------------- /framework/management-center/frontend/src/views/OrgManage/list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/views/OrgManage/list.vue -------------------------------------------------------------------------------- /framework/management-center/frontend/src/views/OrgManage/manage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/views/OrgManage/manage.vue -------------------------------------------------------------------------------- /framework/management-center/frontend/src/views/OrgManage/update.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/views/OrgManage/update.vue -------------------------------------------------------------------------------- /framework/management-center/frontend/src/views/RoleManage/create.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/views/RoleManage/create.vue -------------------------------------------------------------------------------- /framework/management-center/frontend/src/views/RoleManage/detail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/views/RoleManage/detail.vue -------------------------------------------------------------------------------- /framework/management-center/frontend/src/views/RoleManage/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/views/RoleManage/index.vue -------------------------------------------------------------------------------- /framework/management-center/frontend/src/views/RoleManage/list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/views/RoleManage/list.vue -------------------------------------------------------------------------------- /framework/management-center/frontend/src/views/RoleManage/manage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/views/RoleManage/manage.vue -------------------------------------------------------------------------------- /framework/management-center/frontend/src/views/SystemLog/LogDetail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/views/SystemLog/LogDetail.vue -------------------------------------------------------------------------------- /framework/management-center/frontend/src/views/SystemLog/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/views/SystemLog/index.vue -------------------------------------------------------------------------------- /framework/management-center/frontend/src/views/SystemLog/list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/views/SystemLog/list.vue -------------------------------------------------------------------------------- /framework/management-center/frontend/src/views/SystemModule/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/views/SystemModule/index.vue -------------------------------------------------------------------------------- /framework/management-center/frontend/src/views/SystemSetting/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/views/SystemSetting/index.vue -------------------------------------------------------------------------------- /framework/management-center/frontend/src/views/UserManage/AddRole.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/views/UserManage/AddRole.vue -------------------------------------------------------------------------------- /framework/management-center/frontend/src/views/UserManage/CreateOrEdit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/views/UserManage/CreateOrEdit.vue -------------------------------------------------------------------------------- /framework/management-center/frontend/src/views/UserManage/ModifyPwd.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/views/UserManage/ModifyPwd.vue -------------------------------------------------------------------------------- /framework/management-center/frontend/src/views/UserManage/MsgConfig.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/views/UserManage/MsgConfig.vue -------------------------------------------------------------------------------- /framework/management-center/frontend/src/views/UserManage/create.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/views/UserManage/create.vue -------------------------------------------------------------------------------- /framework/management-center/frontend/src/views/UserManage/detail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/views/UserManage/detail.vue -------------------------------------------------------------------------------- /framework/management-center/frontend/src/views/UserManage/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/views/UserManage/index.vue -------------------------------------------------------------------------------- /framework/management-center/frontend/src/views/UserManage/list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/views/UserManage/list.vue -------------------------------------------------------------------------------- /framework/management-center/frontend/src/views/UserManage/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/views/UserManage/type.ts -------------------------------------------------------------------------------- /framework/management-center/frontend/src/views/ViewSetting/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/views/ViewSetting/index.vue -------------------------------------------------------------------------------- /framework/management-center/frontend/src/views/WorkspaceManage/create.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/views/WorkspaceManage/create.vue -------------------------------------------------------------------------------- /framework/management-center/frontend/src/views/WorkspaceManage/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/views/WorkspaceManage/index.vue -------------------------------------------------------------------------------- /framework/management-center/frontend/src/views/WorkspaceManage/list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/src/views/WorkspaceManage/list.vue -------------------------------------------------------------------------------- /framework/management-center/frontend/tsconfig.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/tsconfig.config.json -------------------------------------------------------------------------------- /framework/management-center/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/tsconfig.json -------------------------------------------------------------------------------- /framework/management-center/frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/frontend/vite.config.ts -------------------------------------------------------------------------------- /framework/management-center/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/management-center/pom.xml -------------------------------------------------------------------------------- /framework/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/pom.xml -------------------------------------------------------------------------------- /framework/provider/core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/provider/core/pom.xml -------------------------------------------------------------------------------- /framework/provider/lib/openstack/connectors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/provider/lib/openstack/connectors/README.md -------------------------------------------------------------------------------- /framework/provider/lib/openstack/connectors/httpclient/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/provider/lib/openstack/connectors/httpclient/pom.xml -------------------------------------------------------------------------------- /framework/provider/lib/openstack/connectors/httpclient/src/all.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/provider/lib/openstack/connectors/httpclient/src/all.xml -------------------------------------------------------------------------------- /framework/provider/lib/openstack/connectors/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/provider/lib/openstack/connectors/pom.xml -------------------------------------------------------------------------------- /framework/provider/lib/openstack/core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/provider/lib/openstack/core/pom.xml -------------------------------------------------------------------------------- /framework/provider/lib/openstack/distribution/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/provider/lib/openstack/distribution/pom.xml -------------------------------------------------------------------------------- /framework/provider/lib/openstack/distribution/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/provider/lib/openstack/distribution/settings.xml -------------------------------------------------------------------------------- /framework/provider/lib/openstack/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/provider/lib/openstack/pom.xml -------------------------------------------------------------------------------- /framework/provider/lib/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/provider/lib/pom.xml -------------------------------------------------------------------------------- /framework/provider/lib/vmware/vapi-authentication-2.34.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/provider/lib/vmware/vapi-authentication-2.34.0.jar -------------------------------------------------------------------------------- /framework/provider/lib/vmware/vapi-runtime-2.34.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/provider/lib/vmware/vapi-runtime-2.34.0.jar -------------------------------------------------------------------------------- /framework/provider/lib/vmware/vapi-samltoken-2.34.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/provider/lib/vmware/vapi-samltoken-2.34.0.jar -------------------------------------------------------------------------------- /framework/provider/lib/vmware/vsphereautomation-client-sdk-3.9.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/provider/lib/vmware/vsphereautomation-client-sdk-3.9.0.jar -------------------------------------------------------------------------------- /framework/provider/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/provider/pom.xml -------------------------------------------------------------------------------- /framework/sdk/backend/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/backend/pom.xml -------------------------------------------------------------------------------- /framework/sdk/backend/src/main/java/com/fit2cloud/base/entity/Role.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/backend/src/main/java/com/fit2cloud/base/entity/Role.java -------------------------------------------------------------------------------- /framework/sdk/backend/src/main/java/com/fit2cloud/base/entity/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/backend/src/main/java/com/fit2cloud/base/entity/User.java -------------------------------------------------------------------------------- /framework/sdk/backend/src/main/java/com/fit2cloud/common/event/Emit.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/backend/src/main/java/com/fit2cloud/common/event/Emit.java -------------------------------------------------------------------------------- /framework/sdk/backend/src/main/java/com/fit2cloud/common/form/vo/Form.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/backend/src/main/java/com/fit2cloud/common/form/vo/Form.java -------------------------------------------------------------------------------- /framework/sdk/backend/src/main/java/com/fit2cloud/common/job/job/Job.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/backend/src/main/java/com/fit2cloud/common/job/job/Job.java -------------------------------------------------------------------------------- /framework/sdk/backend/src/main/java/com/fit2cloud/dto/CeBaseObject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/backend/src/main/java/com/fit2cloud/dto/CeBaseObject.java -------------------------------------------------------------------------------- /framework/sdk/backend/src/main/java/com/fit2cloud/dto/UserDto.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/backend/src/main/java/com/fit2cloud/dto/UserDto.java -------------------------------------------------------------------------------- /framework/sdk/backend/src/main/java/com/fit2cloud/dto/UserRoleDto.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/backend/src/main/java/com/fit2cloud/dto/UserRoleDto.java -------------------------------------------------------------------------------- /framework/sdk/backend/src/main/java/com/fit2cloud/dto/job/JobSetting.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/backend/src/main/java/com/fit2cloud/dto/job/JobSetting.java -------------------------------------------------------------------------------- /framework/sdk/backend/src/main/java/com/fit2cloud/dto/module/Menu.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/backend/src/main/java/com/fit2cloud/dto/module/Menu.java -------------------------------------------------------------------------------- /framework/sdk/backend/src/main/java/com/fit2cloud/dto/module/Menus.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/backend/src/main/java/com/fit2cloud/dto/module/Menus.java -------------------------------------------------------------------------------- /framework/sdk/backend/src/main/java/com/fit2cloud/dto/module/Module.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/backend/src/main/java/com/fit2cloud/dto/module/Module.java -------------------------------------------------------------------------------- /framework/sdk/backend/src/main/java/com/fit2cloud/es/entity/SystemLog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/backend/src/main/java/com/fit2cloud/es/entity/SystemLog.java -------------------------------------------------------------------------------- /framework/sdk/backend/src/main/java/com/fit2cloud/redis/RedisService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/backend/src/main/java/com/fit2cloud/redis/RedisService.java -------------------------------------------------------------------------------- /framework/sdk/backend/src/main/java/com/fit2cloud/response/NodeTree.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/backend/src/main/java/com/fit2cloud/response/NodeTree.java -------------------------------------------------------------------------------- /framework/sdk/backend/src/main/java/com/fit2cloud/service/MenuService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/backend/src/main/java/com/fit2cloud/service/MenuService.java -------------------------------------------------------------------------------- /framework/sdk/backend/src/main/resources/META-INF/spring.factories: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/backend/src/main/resources/META-INF/spring.factories -------------------------------------------------------------------------------- /framework/sdk/backend/src/main/resources/commons.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/backend/src/main/resources/commons.properties -------------------------------------------------------------------------------- /framework/sdk/backend/src/main/resources/i18n/commons.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/sdk/backend/src/main/resources/i18n/commons_en_US.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/backend/src/main/resources/i18n/commons_en_US.properties -------------------------------------------------------------------------------- /framework/sdk/backend/src/main/resources/i18n/commons_zh_CN.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/backend/src/main/resources/i18n/commons_zh_CN.properties -------------------------------------------------------------------------------- /framework/sdk/backend/src/main/resources/i18n/commons_zh_TW.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/backend/src/main/resources/i18n/commons_zh_TW.properties -------------------------------------------------------------------------------- /framework/sdk/backend/src/main/resources/logback-aop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/backend/src/main/resources/logback-aop.xml -------------------------------------------------------------------------------- /framework/sdk/backend/src/main/resources/quartz/tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/backend/src/main/resources/quartz/tables.sql -------------------------------------------------------------------------------- /framework/sdk/backend/src/main/resources/template/entity.java.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/backend/src/main/resources/template/entity.java.ftl -------------------------------------------------------------------------------- /framework/sdk/backend/src/test/java/MyBatisPlusGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/backend/src/test/java/MyBatisPlusGenerator.java -------------------------------------------------------------------------------- /framework/sdk/backend/src/test/java/com/fit2cloud/BaseTestApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/backend/src/test/java/com/fit2cloud/BaseTestApplication.java -------------------------------------------------------------------------------- /framework/sdk/backend/src/test/java/com/fit2cloud/test/MyTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/backend/src/test/java/com/fit2cloud/test/MyTest.java -------------------------------------------------------------------------------- /framework/sdk/frontend/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/.eslintrc.cjs -------------------------------------------------------------------------------- /framework/sdk/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/.gitignore -------------------------------------------------------------------------------- /framework/sdk/frontend/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/.vscode/extensions.json -------------------------------------------------------------------------------- /framework/sdk/frontend/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/.vscode/settings.json -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/api/base/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/api/base/type.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/api/bil_view/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/api/bil_view/index.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/api/bil_view/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/api/bil_view/type.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/api/cloud_account/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/api/cloud_account/index.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/api/cloud_account/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/api/cloud_account/type.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/api/compliance-view/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/api/compliance-view/index.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/api/compliance-view/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/api/compliance-view/type.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/api/form_resource_api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/api/form_resource_api/index.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/api/licence/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/api/licence/index.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/api/menu/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/api/menu/index.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/api/menu/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/api/menu/type.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/api/module/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/api/module/index.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/api/module/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/api/module/type.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/api/optimize/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/api/optimize/index.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/api/optimize/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/api/optimize/type.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/api/organization/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/api/organization/index.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/api/organization/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/api/organization/type.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/api/permission/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/api/permission/index.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/api/permission/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/api/permission/type.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/api/resource_optimization/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/api/resource_optimization/index.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/api/resource_optimization/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/api/resource_optimization/type.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/api/resource_spread_view/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/api/resource_spread_view/type.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/api/role/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/api/role/index.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/api/role/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/api/role/type.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/api/server_analysis/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/api/server_analysis/index.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/api/server_analysis/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/api/server_analysis/type.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/api/system_parameter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/api/system_parameter/index.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/api/user/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/api/user/index.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/api/user/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/api/user/type.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/api/vm_cloud_server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/api/vm_cloud_server/index.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/api/workspace/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/api/workspace/index.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/api/workspace/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/api/workspace/type.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/assets/CloudExplorer-Lite-01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/assets/CloudExplorer-Lite-01.svg -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/assets/CloudExplorer-Lite-02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/assets/CloudExplorer-Lite-02.svg -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/assets/cloud-account-add-background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/assets/cloud-account-add-background.jpg -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/assets/img/cloud-vendor-icon/aliyun.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/assets/img/cloud-vendor-icon/aliyun.ico -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/assets/img/cloud-vendor-icon/aliyun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/assets/img/cloud-vendor-icon/aliyun.png -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/assets/img/cloud-vendor-icon/aws.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/assets/img/cloud-vendor-icon/aws.ico -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/assets/img/cloud-vendor-icon/aws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/assets/img/cloud-vendor-icon/aws.png -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/assets/img/cloud-vendor-icon/azure.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/assets/img/cloud-vendor-icon/azure.ico -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/assets/img/cloud-vendor-icon/baiduyun.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/assets/img/cloud-vendor-icon/baiduyun.ico -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/assets/img/cloud-vendor-icon/baiduyun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/assets/img/cloud-vendor-icon/baiduyun.png -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/assets/img/cloud-vendor-icon/f2c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/assets/img/cloud-vendor-icon/f2c.png -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/assets/img/cloud-vendor-icon/favicon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/assets/img/cloud-vendor-icon/favicon.bmp -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/assets/img/cloud-vendor-icon/fusion.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/assets/img/cloud-vendor-icon/fusion.ico -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/assets/img/cloud-vendor-icon/google.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/assets/img/cloud-vendor-icon/google.ico -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/assets/img/cloud-vendor-icon/ksyun.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/assets/img/cloud-vendor-icon/ksyun.ico -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/assets/img/cloud-vendor-icon/kubernetes.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/assets/img/cloud-vendor-icon/kubernetes.ico -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/assets/img/cloud-vendor-icon/logo-aws.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/assets/img/cloud-vendor-icon/logo-aws.svg -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/assets/img/cloud-vendor-icon/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/assets/img/cloud-vendor-icon/logo.png -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/assets/img/cloud-vendor-icon/minio.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/assets/img/cloud-vendor-icon/minio.ico -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/assets/img/cloud-vendor-icon/nutanix.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/assets/img/cloud-vendor-icon/nutanix.ico -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/assets/img/cloud-vendor-icon/openshift.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/assets/img/cloud-vendor-icon/openshift.ico -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/assets/img/cloud-vendor-icon/openstack.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/assets/img/cloud-vendor-icon/openstack.ico -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/assets/img/cloud-vendor-icon/powervc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/assets/img/cloud-vendor-icon/powervc.ico -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/assets/img/cloud-vendor-icon/proxmox.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/assets/img/cloud-vendor-icon/proxmox.ico -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/assets/img/cloud-vendor-icon/qcloud.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/assets/img/cloud-vendor-icon/qcloud.ico -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/assets/img/cloud-vendor-icon/qingyun.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/assets/img/cloud-vendor-icon/qingyun.ico -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/assets/img/cloud-vendor-icon/rancher.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/assets/img/cloud-vendor-icon/rancher.ico -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/assets/img/cloud-vendor-icon/sangfor.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/assets/img/cloud-vendor-icon/sangfor.ico -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/assets/img/cloud-vendor-icon/smartx.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/assets/img/cloud-vendor-icon/smartx.ico -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/assets/img/cloud-vendor-icon/ucloud.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/assets/img/cloud-vendor-icon/ucloud.ico -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/assets/img/cloud-vendor-icon/ucloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/assets/img/cloud-vendor-icon/ucloud.png -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/assets/img/cloud-vendor-icon/vcloud.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/assets/img/cloud-vendor-icon/vcloud.ico -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/assets/img/cloud-vendor-icon/vmware.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/assets/img/cloud-vendor-icon/vmware.ico -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/assets/img/cloud-vendor-icon/vxrail.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/assets/img/cloud-vendor-icon/vxrail.ico -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/assets/img/cloud-vendor-icon/zstack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/assets/img/cloud-vendor-icon/zstack.png -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/assets/img/status-icon/IconCloseFilled.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/assets/img/status-icon/IconCloseFilled.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/assets/img/status-icon/IconInfoFilled.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/assets/img/status-icon/IconInfoFilled.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/assets/img/status-icon/IconTesting.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/assets/img/status-icon/IconTesting.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/assets/img/status-icon/IconWait.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/assets/img/status-icon/IconWait.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/assets/license_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/assets/license_header.png -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/assets/login-desc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/assets/login-desc.jpg -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/assets/logo_cloud_colorful.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/assets/logo_cloud_colorful.svg -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/assets/logo_cloud_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/assets/logo_cloud_white.svg -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/assets/white-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/assets/white-logo.png -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/base-directives/hasPermission.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/base-directives/hasPermission.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/base-directives/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/base-directives/index.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/base-directives/number.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/base-directives/number.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/base-directives/resize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/base-directives/resize.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/base-locales/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/base-locales/index.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/base-locales/lang/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/base-locales/lang/en.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/base-locales/lang/zh-cn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/base-locales/lang/zh-cn.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/base-locales/lang/zh-tw.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/base-locales/lang/zh-tw.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/base-locales/国际化规范.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/base-locales/国际化规范.md -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/base-theme/defaultInferData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/base-theme/defaultInferData.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/base-theme/defaultKeyValueData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/base-theme/defaultKeyValueData.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/base-theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/base-theme/index.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/base-theme/setting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/base-theme/setting.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/base-theme/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/base-theme/type.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/bus/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/bus/index.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/business/about/AboutView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/business/about/AboutView.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/business/app-layout/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/business/app-layout/index.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/business/base-layout/home-page/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/business/base-layout/home-page/index.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/business/base-layout/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/business/base-layout/index.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/business/cloud-account/IconReader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/business/cloud-account/IconReader.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/business/error-page/NoPermissions.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/business/error-page/NoPermissions.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/business/help/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/business/help/index.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/business/login/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/business/login/index.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/business/module-down-menu/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/business/module-down-menu/index.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/business/notification/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/business/notification/index.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/business/person-setting/ModifyPassword.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/business/person-setting/ModifyPassword.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/business/person-setting/PersonInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/business/person-setting/PersonInfo.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/business/person-setting/RoleTag.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/business/person-setting/RoleTag.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/business/person-setting/Ukey.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/business/person-setting/Ukey.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/business/person-setting/UserAvatar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/business/person-setting/UserAvatar.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/business/person-setting/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/business/person-setting/index.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/business/switch-lang/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/business/switch-lang/index.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/business/to-do/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/business/to-do/index.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/components/breadcrumb/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/components/breadcrumb/index.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/components/breadcrumb/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/components/breadcrumb/type.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/components/button-tool-bar/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/components/button-tool-bar/type.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/components/ce-drawer/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/components/ce-drawer/index.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/components/ce-form/CeFormItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/components/ce-form/CeFormItem.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/components/ce-form/CeFormItemLabel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/components/ce-form/CeFormItemLabel.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/components/ce-form/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/components/ce-form/index.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/components/ce-form/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/components/ce-form/index.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/components/ce-form/items/Combobox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/components/ce-form/items/Combobox.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/components/ce-form/items/DiskConfig.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/components/ce-form/items/DiskConfig.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/components/ce-form/items/IntNumber.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/components/ce-form/items/IntNumber.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/components/ce-form/items/LabelText.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/components/ce-form/items/LabelText.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/components/ce-form/items/LabelTextInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/components/ce-form/items/LabelTextInput.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/components/ce-form/items/LineNumber.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/components/ce-form/items/LineNumber.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/components/ce-form/items/MultiSelect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/components/ce-form/items/MultiSelect.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/components/ce-form/items/Number.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/components/ce-form/items/Number.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/components/ce-form/items/Password.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/components/ce-form/items/Password.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/components/ce-form/items/Radio.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/components/ce-form/items/Radio.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/components/ce-form/items/RadioRaw.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/components/ce-form/items/RadioRaw.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/components/ce-form/items/RegexInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/components/ce-form/items/RegexInput.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/components/ce-form/items/SingleSelect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/components/ce-form/items/SingleSelect.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/components/ce-form/items/SwitchBtn.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/components/ce-form/items/SwitchBtn.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/components/ce-form/items/TableCheckbox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/components/ce-form/items/TableCheckbox.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/components/ce-form/items/TableColumn.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/components/ce-form/items/TableColumn.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/components/ce-form/items/TableRadio.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/components/ce-form/items/TableRadio.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/components/ce-form/items/Text.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/components/ce-form/items/Text.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/components/ce-form/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/components/ce-form/type.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/components/ce-icon/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/components/ce-icon/index.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/components/ce-radio/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/components/ce-radio/index.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/components/ce-regex-tooltip/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/components/ce-regex-tooltip/index.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/components/ce-rule-tree/child_node.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/components/ce-rule-tree/child_node.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/components/ce-rule-tree/default_operate.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/components/ce-rule-tree/default_operate.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/components/ce-rule-tree/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/components/ce-rule-tree/index.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/components/ce-rule-tree/leaf_node.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/components/ce-rule-tree/leaf_node.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/components/ce-rule-tree/sub_node.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/components/ce-rule-tree/sub_node.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/components/ce-rule-tree/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/components/ce-rule-tree/type.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/components/ce-table/CeFilter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/components/ce-table/CeFilter.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/components/ce-table/CeFilterBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/components/ce-table/CeFilterBar.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/components/ce-table/CeFilterInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/components/ce-table/CeFilterInput.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/components/ce-table/CeTableColumnSelect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/components/ce-table/CeTableColumnSelect.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/components/ce-table/MoreOptionsButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/components/ce-table/MoreOptionsButton.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/components/ce-table/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/components/ce-table/index.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/components/ce-table/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/components/ce-table/type.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/components/ce-tree/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/components/ce-tree/index.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/components/ce-tree/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/components/ce-tree/type.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/components/collapse/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/components/collapse/index.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/components/detail-page/InstanceStatus.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/components/detail-page/InstanceStatus.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/components/detail-page/IpArray.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/components/detail-page/IpArray.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/components/detail-page/PlatformIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/components/detail-page/PlatformIcon.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/components/detail-page/SecurityGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/components/detail-page/SecurityGroup.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/components/detail-page/VmLink.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/components/detail-page/VmLink.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/components/detail-page/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/components/detail-page/index.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/components/echart/Charts.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/components/echart/Charts.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/components/echart/ChartsSpeed.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/components/echart/ChartsSpeed.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/components/echart/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/components/echart/index.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/components/layout/app-content/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/components/layout/app-content/index.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/components/layout/aside-menu/SubMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/components/layout/aside-menu/SubMenu.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/components/layout/aside-menu/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/components/layout/aside-menu/index.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/components/layout/base-container/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/components/layout/base-container/index.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/components/layout/collect-menu/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/components/layout/collect-menu/index.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/components/layout/collect-menu/type.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/components/layout/layout-content/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/components/layout/layout-content/index.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/components/layout/top-bar/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/components/layout/top-bar/index.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/components/platform-icon/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/components/platform-icon/index.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/components/table-filter/OrgTreeFilter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/components/table-filter/OrgTreeFilter.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/components/table-filter/TreeFilter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/components/table-filter/TreeFilter.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/font/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/font/demo.css -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/font/demo_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/font/demo_index.html -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/font/iconfont.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/font/iconfont.css -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/font/iconfont.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/font/iconfont.js -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/font/iconfont.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/font/iconfont.json -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/font/iconfont.ttf -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/font/iconfont.woff -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/font/iconfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/font/iconfont.woff2 -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/index.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/request/Result.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/request/Result.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/request/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/request/index.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/router/MicroAppRouterUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/router/MicroAppRouterUtil.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/router/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/router/index.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/router/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/router/type.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/stores/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/stores/index.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/stores/modules/home.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/stores/modules/home.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/stores/modules/module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/stores/modules/module.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/stores/modules/permission.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/stores/modules/permission.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/stores/modules/platform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/stores/modules/platform.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/stores/modules/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/stores/modules/user.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/styles/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/styles/app.scss -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/styles/drawer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/styles/drawer.scss -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/styles/element-plus.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/styles/element-plus.scss -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/styles/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/styles/index.scss -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/styles/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/styles/mixins.scss -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/styles/variables/content.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/styles/variables/content.scss -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/styles/variables/header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/styles/variables/header.scss -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/styles/variables/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/styles/variables/index.scss -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/styles/variables/menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/styles/variables/menu.scss -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/utils/IpChecker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/utils/IpChecker.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/utils/authStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/utils/authStorage.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/utils/color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/utils/color.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/utils/commons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/utils/commons.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/utils/constants.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/utils/cron.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/utils/cron.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/utils/currencyFormat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/utils/currencyFormat.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/utils/decimalFormat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/utils/decimalFormat.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/utils/echarts/template/BarTemplate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/utils/echarts/template/BarTemplate.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/utils/echarts/template/PieTemplate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/utils/echarts/template/PieTemplate.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/utils/echarts/template/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/utils/echarts/template/index.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/utils/percentFormat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/utils/percentFormat.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/utils/platform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/utils/platform.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/commons/utils/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/commons/utils/util.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/env.d.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/env/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/env/.env -------------------------------------------------------------------------------- /framework/sdk/frontend/env/.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/env/.env.development -------------------------------------------------------------------------------- /framework/sdk/frontend/env/.env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/env/.env.production -------------------------------------------------------------------------------- /framework/sdk/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/index.html -------------------------------------------------------------------------------- /framework/sdk/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/package.json -------------------------------------------------------------------------------- /framework/sdk/frontend/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/pom.xml -------------------------------------------------------------------------------- /framework/sdk/frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/public/favicon.ico -------------------------------------------------------------------------------- /framework/sdk/frontend/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/src/App.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/src/locales/lang/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/src/locales/lang/en.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/src/locales/lang/zh-cn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/src/locales/lang/zh-cn.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/src/locales/lang/zh-tw.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/src/locales/lang/zh-tw.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/src/main.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/src/microapp/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/src/microapp/index.ts -------------------------------------------------------------------------------- /framework/sdk/frontend/src/views/MicroAppRouteView/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/src/views/MicroAppRouteView/index.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/src/views/Test/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/src/views/Test/index.vue -------------------------------------------------------------------------------- /framework/sdk/frontend/tsconfig.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/tsconfig.config.json -------------------------------------------------------------------------------- /framework/sdk/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/tsconfig.json -------------------------------------------------------------------------------- /framework/sdk/frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/frontend/vite.config.ts -------------------------------------------------------------------------------- /framework/sdk/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/framework/sdk/pom.xml -------------------------------------------------------------------------------- /mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/mvnw -------------------------------------------------------------------------------- /mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/mvnw.cmd -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/package.json -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/pom.xml -------------------------------------------------------------------------------- /services/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/.gitignore -------------------------------------------------------------------------------- /services/finance-management/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/finance-management/.gitignore -------------------------------------------------------------------------------- /services/finance-management/backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/finance-management/backend/.gitignore -------------------------------------------------------------------------------- /services/finance-management/backend/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/finance-management/backend/pom.xml -------------------------------------------------------------------------------- /services/finance-management/backend/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/finance-management/backend/src/main/resources/application.yml -------------------------------------------------------------------------------- /services/finance-management/backend/src/main/resources/db/migration/V1__init.sql: -------------------------------------------------------------------------------- 1 | select database(); 2 | -------------------------------------------------------------------------------- /services/finance-management/backend/src/main/resources/i18n/messages.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/finance-management/backend/src/main/resources/i18n/messages_en_US.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/finance-management/backend/src/main/resources/i18n/messages_zh_CN.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/finance-management/backend/src/main/resources/i18n/messages_zh_TW.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/finance-management/backend/src/main/resources/logback-spring.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/finance-management/backend/src/main/resources/logback-spring.xml -------------------------------------------------------------------------------- /services/finance-management/finance-management.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/finance-management/finance-management.yml -------------------------------------------------------------------------------- /services/finance-management/frontend/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/finance-management/frontend/.eslintrc.cjs -------------------------------------------------------------------------------- /services/finance-management/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/finance-management/frontend/.gitignore -------------------------------------------------------------------------------- /services/finance-management/frontend/.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | endOfLine: 'auto' 3 | } -------------------------------------------------------------------------------- /services/finance-management/frontend/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/finance-management/frontend/.vscode/extensions.json -------------------------------------------------------------------------------- /services/finance-management/frontend/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/finance-management/frontend/.vscode/settings.json -------------------------------------------------------------------------------- /services/finance-management/frontend/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/finance-management/frontend/env.d.ts -------------------------------------------------------------------------------- /services/finance-management/frontend/env/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/finance-management/frontend/env/.env -------------------------------------------------------------------------------- /services/finance-management/frontend/env/.env.development: -------------------------------------------------------------------------------- 1 | # development 2 | 3 | VITE_APP_TITLE = 测试 CLOUD EXPLORER (dev run) 4 | -------------------------------------------------------------------------------- /services/finance-management/frontend/env/.env.production: -------------------------------------------------------------------------------- 1 | # production 2 | 3 | VITE_APP_TITLE=CloudExplorer Lite 云管理平台 4 | -------------------------------------------------------------------------------- /services/finance-management/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/finance-management/frontend/index.html -------------------------------------------------------------------------------- /services/finance-management/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/finance-management/frontend/package.json -------------------------------------------------------------------------------- /services/finance-management/frontend/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/finance-management/frontend/pom.xml -------------------------------------------------------------------------------- /services/finance-management/frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/finance-management/frontend/public/favicon.ico -------------------------------------------------------------------------------- /services/finance-management/frontend/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/finance-management/frontend/src/App.vue -------------------------------------------------------------------------------- /services/finance-management/frontend/src/api/bill_detailed/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/finance-management/frontend/src/api/bill_detailed/index.ts -------------------------------------------------------------------------------- /services/finance-management/frontend/src/api/bill_detailed/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/finance-management/frontend/src/api/bill_detailed/type.ts -------------------------------------------------------------------------------- /services/finance-management/frontend/src/api/bill_rule/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/finance-management/frontend/src/api/bill_rule/index.ts -------------------------------------------------------------------------------- /services/finance-management/frontend/src/api/bill_rule/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/finance-management/frontend/src/api/bill_rule/type.ts -------------------------------------------------------------------------------- /services/finance-management/frontend/src/api/bill_view/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/finance-management/frontend/src/api/bill_view/index.ts -------------------------------------------------------------------------------- /services/finance-management/frontend/src/api/bill_view/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/finance-management/frontend/src/api/bill_view/type.ts -------------------------------------------------------------------------------- /services/finance-management/frontend/src/api/billing_policy/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/finance-management/frontend/src/api/billing_policy/index.ts -------------------------------------------------------------------------------- /services/finance-management/frontend/src/api/billing_policy/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/finance-management/frontend/src/api/billing_policy/type.ts -------------------------------------------------------------------------------- /services/finance-management/frontend/src/api/dimension_setting/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/finance-management/frontend/src/api/dimension_setting/index.ts -------------------------------------------------------------------------------- /services/finance-management/frontend/src/api/dimension_setting/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/finance-management/frontend/src/api/dimension_setting/type.ts -------------------------------------------------------------------------------- /services/finance-management/frontend/src/api/organization/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/finance-management/frontend/src/api/organization/type.ts -------------------------------------------------------------------------------- /services/finance-management/frontend/src/echarts/billPie.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/finance-management/frontend/src/echarts/billPie.ts -------------------------------------------------------------------------------- /services/finance-management/frontend/src/echarts/bill_view/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/finance-management/frontend/src/echarts/bill_view/index.ts -------------------------------------------------------------------------------- /services/finance-management/frontend/src/echarts/bill_view/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/finance-management/frontend/src/echarts/bill_view/type.ts -------------------------------------------------------------------------------- /services/finance-management/frontend/src/locales/lang/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/finance-management/frontend/src/locales/lang/en.ts -------------------------------------------------------------------------------- /services/finance-management/frontend/src/locales/lang/zh-cn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/finance-management/frontend/src/locales/lang/zh-cn.ts -------------------------------------------------------------------------------- /services/finance-management/frontend/src/locales/lang/zh-tw.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/finance-management/frontend/src/locales/lang/zh-tw.ts -------------------------------------------------------------------------------- /services/finance-management/frontend/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/finance-management/frontend/src/main.ts -------------------------------------------------------------------------------- /services/finance-management/frontend/src/styles/common/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/finance-management/frontend/src/styles/common/mixins.scss -------------------------------------------------------------------------------- /services/finance-management/frontend/src/styles/common/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/finance-management/frontend/src/styles/common/variables.scss -------------------------------------------------------------------------------- /services/finance-management/frontend/src/views/bill_detailed/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/finance-management/frontend/src/views/bill_detailed/index.vue -------------------------------------------------------------------------------- /services/finance-management/frontend/src/views/bill_view/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/finance-management/frontend/src/views/bill_view/index.vue -------------------------------------------------------------------------------- /services/finance-management/frontend/src/views/billing_policy/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/finance-management/frontend/src/views/billing_policy/index.vue -------------------------------------------------------------------------------- /services/finance-management/frontend/src/views/custom_bill/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/finance-management/frontend/src/views/custom_bill/index.vue -------------------------------------------------------------------------------- /services/finance-management/frontend/src/views/dimension_setting/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/finance-management/frontend/src/views/dimension_setting/index.vue -------------------------------------------------------------------------------- /services/finance-management/frontend/tsconfig.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/finance-management/frontend/tsconfig.config.json -------------------------------------------------------------------------------- /services/finance-management/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/finance-management/frontend/tsconfig.json -------------------------------------------------------------------------------- /services/finance-management/frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/finance-management/frontend/vite.config.ts -------------------------------------------------------------------------------- /services/finance-management/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/finance-management/pom.xml -------------------------------------------------------------------------------- /services/operation-analysis/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/operation-analysis/.gitignore -------------------------------------------------------------------------------- /services/operation-analysis/backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/operation-analysis/backend/.gitignore -------------------------------------------------------------------------------- /services/operation-analysis/backend/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/operation-analysis/backend/pom.xml -------------------------------------------------------------------------------- /services/operation-analysis/backend/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/operation-analysis/backend/src/main/resources/application.yml -------------------------------------------------------------------------------- /services/operation-analysis/backend/src/main/resources/db/migration/V1__init.sql: -------------------------------------------------------------------------------- 1 | select database(); 2 | -------------------------------------------------------------------------------- /services/operation-analysis/backend/src/main/resources/i18n/messages.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/operation-analysis/backend/src/main/resources/i18n/messages_en_US.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/operation-analysis/backend/src/main/resources/i18n/messages_zh_CN.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/operation-analysis/backend/src/main/resources/i18n/messages_zh_TW.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/operation-analysis/backend/src/main/resources/logback-spring.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/operation-analysis/backend/src/main/resources/logback-spring.xml -------------------------------------------------------------------------------- /services/operation-analysis/frontend/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/operation-analysis/frontend/.eslintrc.cjs -------------------------------------------------------------------------------- /services/operation-analysis/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/operation-analysis/frontend/.gitignore -------------------------------------------------------------------------------- /services/operation-analysis/frontend/.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | endOfLine: 'auto' 3 | } -------------------------------------------------------------------------------- /services/operation-analysis/frontend/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/operation-analysis/frontend/.vscode/extensions.json -------------------------------------------------------------------------------- /services/operation-analysis/frontend/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/operation-analysis/frontend/.vscode/settings.json -------------------------------------------------------------------------------- /services/operation-analysis/frontend/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/operation-analysis/frontend/env.d.ts -------------------------------------------------------------------------------- /services/operation-analysis/frontend/env/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/operation-analysis/frontend/env/.env -------------------------------------------------------------------------------- /services/operation-analysis/frontend/env/.env.development: -------------------------------------------------------------------------------- 1 | # development 2 | 3 | VITE_APP_TITLE = 测试 CLOUD EXPLORER (dev run) 4 | -------------------------------------------------------------------------------- /services/operation-analysis/frontend/env/.env.production: -------------------------------------------------------------------------------- 1 | # production 2 | 3 | VITE_APP_TITLE=CloudExplorer Lite 云管理平台 4 | -------------------------------------------------------------------------------- /services/operation-analysis/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/operation-analysis/frontend/index.html -------------------------------------------------------------------------------- /services/operation-analysis/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/operation-analysis/frontend/package.json -------------------------------------------------------------------------------- /services/operation-analysis/frontend/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/operation-analysis/frontend/pom.xml -------------------------------------------------------------------------------- /services/operation-analysis/frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/operation-analysis/frontend/public/favicon.ico -------------------------------------------------------------------------------- /services/operation-analysis/frontend/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/operation-analysis/frontend/src/App.vue -------------------------------------------------------------------------------- /services/operation-analysis/frontend/src/api/common/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/operation-analysis/frontend/src/api/common/index.ts -------------------------------------------------------------------------------- /services/operation-analysis/frontend/src/api/common/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/operation-analysis/frontend/src/api/common/type.ts -------------------------------------------------------------------------------- /services/operation-analysis/frontend/src/api/disk_analysis/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/operation-analysis/frontend/src/api/disk_analysis/index.ts -------------------------------------------------------------------------------- /services/operation-analysis/frontend/src/api/disk_analysis/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/operation-analysis/frontend/src/api/disk_analysis/type.ts -------------------------------------------------------------------------------- /services/operation-analysis/frontend/src/api/resource_spread_view/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/operation-analysis/frontend/src/api/resource_spread_view/index.ts -------------------------------------------------------------------------------- /services/operation-analysis/frontend/src/api/server_analysis/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/operation-analysis/frontend/src/api/server_analysis/index.ts -------------------------------------------------------------------------------- /services/operation-analysis/frontend/src/api/server_analysis/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/operation-analysis/frontend/src/api/server_analysis/type.ts -------------------------------------------------------------------------------- /services/operation-analysis/frontend/src/api/vm_cloud_datastore/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/operation-analysis/frontend/src/api/vm_cloud_datastore/index.ts -------------------------------------------------------------------------------- /services/operation-analysis/frontend/src/api/vm_cloud_datastore/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/operation-analysis/frontend/src/api/vm_cloud_datastore/type.ts -------------------------------------------------------------------------------- /services/operation-analysis/frontend/src/api/vm_cloud_host/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/operation-analysis/frontend/src/api/vm_cloud_host/index.ts -------------------------------------------------------------------------------- /services/operation-analysis/frontend/src/api/vm_cloud_host/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/operation-analysis/frontend/src/api/vm_cloud_host/type.ts -------------------------------------------------------------------------------- /services/operation-analysis/frontend/src/locales/lang/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/operation-analysis/frontend/src/locales/lang/en.ts -------------------------------------------------------------------------------- /services/operation-analysis/frontend/src/locales/lang/zh-cn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/operation-analysis/frontend/src/locales/lang/zh-cn.ts -------------------------------------------------------------------------------- /services/operation-analysis/frontend/src/locales/lang/zh-tw.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/operation-analysis/frontend/src/locales/lang/zh-tw.ts -------------------------------------------------------------------------------- /services/operation-analysis/frontend/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/operation-analysis/frontend/src/main.ts -------------------------------------------------------------------------------- /services/operation-analysis/frontend/src/styles/common/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/operation-analysis/frontend/src/styles/common/mixins.scss -------------------------------------------------------------------------------- /services/operation-analysis/frontend/src/styles/common/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/operation-analysis/frontend/src/styles/common/variables.scss -------------------------------------------------------------------------------- /services/operation-analysis/frontend/src/views/disk_analysis/baseView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/operation-analysis/frontend/src/views/disk_analysis/baseView.vue -------------------------------------------------------------------------------- /services/operation-analysis/frontend/src/views/disk_analysis/diskList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/operation-analysis/frontend/src/views/disk_analysis/diskList.vue -------------------------------------------------------------------------------- /services/operation-analysis/frontend/src/views/disk_analysis/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/operation-analysis/frontend/src/views/disk_analysis/index.vue -------------------------------------------------------------------------------- /services/operation-analysis/frontend/src/views/disk_analysis/list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/operation-analysis/frontend/src/views/disk_analysis/list.vue -------------------------------------------------------------------------------- /services/operation-analysis/frontend/src/views/optimize/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/operation-analysis/frontend/src/views/optimize/index.vue -------------------------------------------------------------------------------- /services/operation-analysis/frontend/src/views/optimize/list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/operation-analysis/frontend/src/views/optimize/list.vue -------------------------------------------------------------------------------- /services/operation-analysis/frontend/src/views/overview/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/operation-analysis/frontend/src/views/overview/index.vue -------------------------------------------------------------------------------- /services/operation-analysis/frontend/src/views/server_analysis/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/operation-analysis/frontend/src/views/server_analysis/index.vue -------------------------------------------------------------------------------- /services/operation-analysis/frontend/src/views/server_analysis/list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/operation-analysis/frontend/src/views/server_analysis/list.vue -------------------------------------------------------------------------------- /services/operation-analysis/frontend/tsconfig.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/operation-analysis/frontend/tsconfig.config.json -------------------------------------------------------------------------------- /services/operation-analysis/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/operation-analysis/frontend/tsconfig.json -------------------------------------------------------------------------------- /services/operation-analysis/frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/operation-analysis/frontend/vite.config.ts -------------------------------------------------------------------------------- /services/operation-analysis/operation-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/operation-analysis/operation-analysis.yml -------------------------------------------------------------------------------- /services/operation-analysis/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/operation-analysis/pom.xml -------------------------------------------------------------------------------- /services/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/pom.xml -------------------------------------------------------------------------------- /services/security-compliance/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/security-compliance/.gitignore -------------------------------------------------------------------------------- /services/security-compliance/backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/security-compliance/backend/.gitignore -------------------------------------------------------------------------------- /services/security-compliance/backend/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/security-compliance/backend/pom.xml -------------------------------------------------------------------------------- /services/security-compliance/backend/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/security-compliance/backend/src/main/resources/application.yml -------------------------------------------------------------------------------- /services/security-compliance/backend/src/main/resources/db/migration/V1__init.sql: -------------------------------------------------------------------------------- 1 | select database(); 2 | -------------------------------------------------------------------------------- /services/security-compliance/backend/src/main/resources/i18n/messages.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/security-compliance/backend/src/main/resources/i18n/messages_en_US.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/security-compliance/backend/src/main/resources/i18n/messages_zh_CN.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/security-compliance/backend/src/main/resources/i18n/messages_zh_TW.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/security-compliance/backend/src/main/resources/logback-spring.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/security-compliance/backend/src/main/resources/logback-spring.xml -------------------------------------------------------------------------------- /services/security-compliance/backend/src/main/resources/painless/avg_ge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/security-compliance/backend/src/main/resources/painless/avg_ge -------------------------------------------------------------------------------- /services/security-compliance/backend/src/main/resources/painless/avg_gt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/security-compliance/backend/src/main/resources/painless/avg_gt -------------------------------------------------------------------------------- /services/security-compliance/backend/src/main/resources/painless/avg_le: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/security-compliance/backend/src/main/resources/painless/avg_le -------------------------------------------------------------------------------- /services/security-compliance/backend/src/main/resources/painless/avg_lt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/security-compliance/backend/src/main/resources/painless/avg_lt -------------------------------------------------------------------------------- /services/security-compliance/backend/src/main/resources/painless/contain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/security-compliance/backend/src/main/resources/painless/contain -------------------------------------------------------------------------------- /services/security-compliance/backend/src/main/resources/painless/eq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/security-compliance/backend/src/main/resources/painless/eq -------------------------------------------------------------------------------- /services/security-compliance/backend/src/main/resources/painless/exist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/security-compliance/backend/src/main/resources/painless/exist -------------------------------------------------------------------------------- /services/security-compliance/backend/src/main/resources/painless/ge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/security-compliance/backend/src/main/resources/painless/ge -------------------------------------------------------------------------------- /services/security-compliance/backend/src/main/resources/painless/gt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/security-compliance/backend/src/main/resources/painless/gt -------------------------------------------------------------------------------- /services/security-compliance/backend/src/main/resources/painless/le: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/security-compliance/backend/src/main/resources/painless/le -------------------------------------------------------------------------------- /services/security-compliance/backend/src/main/resources/painless/length_ge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/security-compliance/backend/src/main/resources/painless/length_ge -------------------------------------------------------------------------------- /services/security-compliance/backend/src/main/resources/painless/length_gt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/security-compliance/backend/src/main/resources/painless/length_gt -------------------------------------------------------------------------------- /services/security-compliance/backend/src/main/resources/painless/length_le: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/security-compliance/backend/src/main/resources/painless/length_le -------------------------------------------------------------------------------- /services/security-compliance/backend/src/main/resources/painless/length_lt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/security-compliance/backend/src/main/resources/painless/length_lt -------------------------------------------------------------------------------- /services/security-compliance/backend/src/main/resources/painless/lt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/security-compliance/backend/src/main/resources/painless/lt -------------------------------------------------------------------------------- /services/security-compliance/backend/src/main/resources/painless/not_eq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/security-compliance/backend/src/main/resources/painless/not_eq -------------------------------------------------------------------------------- /services/security-compliance/backend/src/main/resources/painless/not_exist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/security-compliance/backend/src/main/resources/painless/not_exist -------------------------------------------------------------------------------- /services/security-compliance/backend/src/main/resources/painless/sum_ge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/security-compliance/backend/src/main/resources/painless/sum_ge -------------------------------------------------------------------------------- /services/security-compliance/backend/src/main/resources/painless/sum_gt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/security-compliance/backend/src/main/resources/painless/sum_gt -------------------------------------------------------------------------------- /services/security-compliance/backend/src/main/resources/painless/sum_le: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/security-compliance/backend/src/main/resources/painless/sum_le -------------------------------------------------------------------------------- /services/security-compliance/backend/src/main/resources/painless/sum_lt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/security-compliance/backend/src/main/resources/painless/sum_lt -------------------------------------------------------------------------------- /services/security-compliance/frontend/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/security-compliance/frontend/.eslintrc.cjs -------------------------------------------------------------------------------- /services/security-compliance/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/security-compliance/frontend/.gitignore -------------------------------------------------------------------------------- /services/security-compliance/frontend/.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | endOfLine: 'auto' 3 | } -------------------------------------------------------------------------------- /services/security-compliance/frontend/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/security-compliance/frontend/.vscode/extensions.json -------------------------------------------------------------------------------- /services/security-compliance/frontend/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/security-compliance/frontend/.vscode/settings.json -------------------------------------------------------------------------------- /services/security-compliance/frontend/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/security-compliance/frontend/env.d.ts -------------------------------------------------------------------------------- /services/security-compliance/frontend/env/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/security-compliance/frontend/env/.env -------------------------------------------------------------------------------- /services/security-compliance/frontend/env/.env.development: -------------------------------------------------------------------------------- 1 | # development 2 | 3 | VITE_APP_TITLE = 测试 CLOUD EXPLORER (dev run) 4 | -------------------------------------------------------------------------------- /services/security-compliance/frontend/env/.env.production: -------------------------------------------------------------------------------- 1 | # production 2 | 3 | VITE_APP_TITLE=CloudExplorer Lite 云管理平台 4 | -------------------------------------------------------------------------------- /services/security-compliance/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/security-compliance/frontend/index.html -------------------------------------------------------------------------------- /services/security-compliance/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/security-compliance/frontend/package.json -------------------------------------------------------------------------------- /services/security-compliance/frontend/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/security-compliance/frontend/pom.xml -------------------------------------------------------------------------------- /services/security-compliance/frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/security-compliance/frontend/public/favicon.ico -------------------------------------------------------------------------------- /services/security-compliance/frontend/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/security-compliance/frontend/src/App.vue -------------------------------------------------------------------------------- /services/security-compliance/frontend/src/api/compliance_scan/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/security-compliance/frontend/src/api/compliance_scan/index.ts -------------------------------------------------------------------------------- /services/security-compliance/frontend/src/api/compliance_scan/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/security-compliance/frontend/src/api/compliance_scan/type.ts -------------------------------------------------------------------------------- /services/security-compliance/frontend/src/api/rule/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/security-compliance/frontend/src/api/rule/index.ts -------------------------------------------------------------------------------- /services/security-compliance/frontend/src/api/rule/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/security-compliance/frontend/src/api/rule/type.ts -------------------------------------------------------------------------------- /services/security-compliance/frontend/src/api/rule_group/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/security-compliance/frontend/src/api/rule_group/index.ts -------------------------------------------------------------------------------- /services/security-compliance/frontend/src/api/rule_group/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/security-compliance/frontend/src/api/rule_group/type.ts -------------------------------------------------------------------------------- /services/security-compliance/frontend/src/api/view/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/security-compliance/frontend/src/api/view/index.ts -------------------------------------------------------------------------------- /services/security-compliance/frontend/src/api/view/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/security-compliance/frontend/src/api/view/type.ts -------------------------------------------------------------------------------- /services/security-compliance/frontend/src/locales/lang/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/security-compliance/frontend/src/locales/lang/en.ts -------------------------------------------------------------------------------- /services/security-compliance/frontend/src/locales/lang/zh-cn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/security-compliance/frontend/src/locales/lang/zh-cn.ts -------------------------------------------------------------------------------- /services/security-compliance/frontend/src/locales/lang/zh-tw.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/security-compliance/frontend/src/locales/lang/zh-tw.ts -------------------------------------------------------------------------------- /services/security-compliance/frontend/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/security-compliance/frontend/src/main.ts -------------------------------------------------------------------------------- /services/security-compliance/frontend/src/styles/common/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/security-compliance/frontend/src/styles/common/mixins.scss -------------------------------------------------------------------------------- /services/security-compliance/frontend/src/styles/common/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/security-compliance/frontend/src/styles/common/variables.scss -------------------------------------------------------------------------------- /services/security-compliance/frontend/src/views/overview/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/security-compliance/frontend/src/views/overview/index.vue -------------------------------------------------------------------------------- /services/security-compliance/frontend/src/views/rule/ComplianceRule.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/security-compliance/frontend/src/views/rule/ComplianceRule.vue -------------------------------------------------------------------------------- /services/security-compliance/frontend/src/views/rule/LeakRule.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/security-compliance/frontend/src/views/rule/LeakRule.vue -------------------------------------------------------------------------------- /services/security-compliance/frontend/src/views/rule/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/security-compliance/frontend/src/views/rule/index.vue -------------------------------------------------------------------------------- /services/security-compliance/frontend/src/views/scan/details.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/security-compliance/frontend/src/views/scan/details.vue -------------------------------------------------------------------------------- /services/security-compliance/frontend/src/views/scan/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/security-compliance/frontend/src/views/scan/index.vue -------------------------------------------------------------------------------- /services/security-compliance/frontend/tsconfig.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/security-compliance/frontend/tsconfig.config.json -------------------------------------------------------------------------------- /services/security-compliance/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/security-compliance/frontend/tsconfig.json -------------------------------------------------------------------------------- /services/security-compliance/frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/security-compliance/frontend/vite.config.ts -------------------------------------------------------------------------------- /services/security-compliance/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/security-compliance/pom.xml -------------------------------------------------------------------------------- /services/security-compliance/security-compliance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/security-compliance/security-compliance.yml -------------------------------------------------------------------------------- /services/vm-service/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/.gitignore -------------------------------------------------------------------------------- /services/vm-service/backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/backend/.gitignore -------------------------------------------------------------------------------- /services/vm-service/backend/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/backend/pom.xml -------------------------------------------------------------------------------- /services/vm-service/backend/src/main/java/com/fit2cloud/dto/Good.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/backend/src/main/java/com/fit2cloud/dto/Good.java -------------------------------------------------------------------------------- /services/vm-service/backend/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/backend/src/main/resources/application.yml -------------------------------------------------------------------------------- /services/vm-service/backend/src/main/resources/db/migration/V1__init.sql: -------------------------------------------------------------------------------- 1 | select database(); 2 | -------------------------------------------------------------------------------- /services/vm-service/backend/src/main/resources/db/migration/V2_0__dml.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/backend/src/main/resources/db/migration/V2_0__dml.sql -------------------------------------------------------------------------------- /services/vm-service/backend/src/main/resources/i18n/messages.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/vm-service/backend/src/main/resources/linux_create_user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/backend/src/main/resources/linux_create_user.sh -------------------------------------------------------------------------------- /services/vm-service/backend/src/main/resources/logback-spring.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/backend/src/main/resources/logback-spring.xml -------------------------------------------------------------------------------- /services/vm-service/frontend/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/frontend/.eslintrc.cjs -------------------------------------------------------------------------------- /services/vm-service/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/frontend/.gitignore -------------------------------------------------------------------------------- /services/vm-service/frontend/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/frontend/.vscode/extensions.json -------------------------------------------------------------------------------- /services/vm-service/frontend/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/frontend/.vscode/settings.json -------------------------------------------------------------------------------- /services/vm-service/frontend/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/frontend/env.d.ts -------------------------------------------------------------------------------- /services/vm-service/frontend/env/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/frontend/env/.env -------------------------------------------------------------------------------- /services/vm-service/frontend/env/.env.development: -------------------------------------------------------------------------------- 1 | # development 2 | 3 | VITE_APP_TITLE = 测试 CLOUD EXPLORER (dev run) 4 | -------------------------------------------------------------------------------- /services/vm-service/frontend/env/.env.production: -------------------------------------------------------------------------------- 1 | # production 2 | 3 | VITE_APP_TITLE=CloudExplorer Lite 云管理平台 4 | -------------------------------------------------------------------------------- /services/vm-service/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/frontend/index.html -------------------------------------------------------------------------------- /services/vm-service/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/frontend/package.json -------------------------------------------------------------------------------- /services/vm-service/frontend/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/frontend/pom.xml -------------------------------------------------------------------------------- /services/vm-service/frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/frontend/public/favicon.ico -------------------------------------------------------------------------------- /services/vm-service/frontend/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/frontend/src/App.vue -------------------------------------------------------------------------------- /services/vm-service/frontend/src/api/catalog/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/frontend/src/api/catalog/index.ts -------------------------------------------------------------------------------- /services/vm-service/frontend/src/api/catalog/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/frontend/src/api/catalog/type.ts -------------------------------------------------------------------------------- /services/vm-service/frontend/src/api/jobs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/frontend/src/api/jobs/index.ts -------------------------------------------------------------------------------- /services/vm-service/frontend/src/api/jobs/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/frontend/src/api/jobs/type.ts -------------------------------------------------------------------------------- /services/vm-service/frontend/src/api/recycle_bin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/frontend/src/api/recycle_bin/index.ts -------------------------------------------------------------------------------- /services/vm-service/frontend/src/api/recycle_bin/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/frontend/src/api/recycle_bin/type.ts -------------------------------------------------------------------------------- /services/vm-service/frontend/src/api/vm_cloud_disk/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/frontend/src/api/vm_cloud_disk/index.ts -------------------------------------------------------------------------------- /services/vm-service/frontend/src/api/vm_cloud_disk/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/frontend/src/api/vm_cloud_disk/type.ts -------------------------------------------------------------------------------- /services/vm-service/frontend/src/api/vm_cloud_image/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/frontend/src/api/vm_cloud_image/index.ts -------------------------------------------------------------------------------- /services/vm-service/frontend/src/api/vm_cloud_image/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/frontend/src/api/vm_cloud_image/type.ts -------------------------------------------------------------------------------- /services/vm-service/frontend/src/api/vm_cloud_server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/frontend/src/api/vm_cloud_server/index.ts -------------------------------------------------------------------------------- /services/vm-service/frontend/src/api/vm_cloud_server/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/frontend/src/api/vm_cloud_server/type.ts -------------------------------------------------------------------------------- /services/vm-service/frontend/src/assets/img/huawei.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/frontend/src/assets/img/huawei.ico -------------------------------------------------------------------------------- /services/vm-service/frontend/src/locales/lang/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/frontend/src/locales/lang/en.ts -------------------------------------------------------------------------------- /services/vm-service/frontend/src/locales/lang/zh-cn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/frontend/src/locales/lang/zh-cn.ts -------------------------------------------------------------------------------- /services/vm-service/frontend/src/locales/lang/zh-tw.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/frontend/src/locales/lang/zh-tw.ts -------------------------------------------------------------------------------- /services/vm-service/frontend/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/frontend/src/main.ts -------------------------------------------------------------------------------- /services/vm-service/frontend/src/styles/common/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/frontend/src/styles/common/mixins.scss -------------------------------------------------------------------------------- /services/vm-service/frontend/src/styles/common/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/frontend/src/styles/common/variables.scss -------------------------------------------------------------------------------- /services/vm-service/frontend/src/styles/vm_cloud_server/server.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/frontend/src/styles/vm_cloud_server/server.module.scss -------------------------------------------------------------------------------- /services/vm-service/frontend/src/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/frontend/src/utils/constants.ts -------------------------------------------------------------------------------- /services/vm-service/frontend/src/views/jobs/detail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/frontend/src/views/jobs/detail.vue -------------------------------------------------------------------------------- /services/vm-service/frontend/src/views/jobs/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/frontend/src/views/jobs/index.vue -------------------------------------------------------------------------------- /services/vm-service/frontend/src/views/jobs/list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/frontend/src/views/jobs/list.vue -------------------------------------------------------------------------------- /services/vm-service/frontend/src/views/recycle_bin/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/frontend/src/views/recycle_bin/index.vue -------------------------------------------------------------------------------- /services/vm-service/frontend/src/views/recycle_bin/list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/frontend/src/views/recycle_bin/list.vue -------------------------------------------------------------------------------- /services/vm-service/frontend/src/views/vm_cloud_disk/BasicInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/frontend/src/views/vm_cloud_disk/BasicInfo.vue -------------------------------------------------------------------------------- /services/vm-service/frontend/src/views/vm_cloud_disk/DiskStatusIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/frontend/src/views/vm_cloud_disk/DiskStatusIcon.vue -------------------------------------------------------------------------------- /services/vm-service/frontend/src/views/vm_cloud_disk/attach.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/frontend/src/views/vm_cloud_disk/attach.vue -------------------------------------------------------------------------------- /services/vm-service/frontend/src/views/vm_cloud_disk/detail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/frontend/src/views/vm_cloud_disk/detail.vue -------------------------------------------------------------------------------- /services/vm-service/frontend/src/views/vm_cloud_disk/enlarge.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/frontend/src/views/vm_cloud_disk/enlarge.vue -------------------------------------------------------------------------------- /services/vm-service/frontend/src/views/vm_cloud_disk/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/frontend/src/views/vm_cloud_disk/index.vue -------------------------------------------------------------------------------- /services/vm-service/frontend/src/views/vm_cloud_disk/info.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/frontend/src/views/vm_cloud_disk/info.vue -------------------------------------------------------------------------------- /services/vm-service/frontend/src/views/vm_cloud_disk/list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/frontend/src/views/vm_cloud_disk/list.vue -------------------------------------------------------------------------------- /services/vm-service/frontend/src/views/vm_cloud_image/ManageInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/frontend/src/views/vm_cloud_image/ManageInfo.vue -------------------------------------------------------------------------------- /services/vm-service/frontend/src/views/vm_cloud_image/detail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/frontend/src/views/vm_cloud_image/detail.vue -------------------------------------------------------------------------------- /services/vm-service/frontend/src/views/vm_cloud_image/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/frontend/src/views/vm_cloud_image/index.vue -------------------------------------------------------------------------------- /services/vm-service/frontend/src/views/vm_cloud_image/list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/frontend/src/views/vm_cloud_image/list.vue -------------------------------------------------------------------------------- /services/vm-service/frontend/src/views/vm_cloud_server/AddDisk.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/frontend/src/views/vm_cloud_server/AddDisk.vue -------------------------------------------------------------------------------- /services/vm-service/frontend/src/views/vm_cloud_server/ChangeConfig.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/frontend/src/views/vm_cloud_server/ChangeConfig.vue -------------------------------------------------------------------------------- /services/vm-service/frontend/src/views/vm_cloud_server/Renew.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/frontend/src/views/vm_cloud_server/Renew.vue -------------------------------------------------------------------------------- /services/vm-service/frontend/src/views/vm_cloud_server/RenewPrice.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/frontend/src/views/vm_cloud_server/RenewPrice.vue -------------------------------------------------------------------------------- /services/vm-service/frontend/src/views/vm_cloud_server/create/catalog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/frontend/src/views/vm_cloud_server/create/catalog.vue -------------------------------------------------------------------------------- /services/vm-service/frontend/src/views/vm_cloud_server/create/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/frontend/src/views/vm_cloud_server/create/index.vue -------------------------------------------------------------------------------- /services/vm-service/frontend/src/views/vm_cloud_server/detail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/frontend/src/views/vm_cloud_server/detail.vue -------------------------------------------------------------------------------- /services/vm-service/frontend/src/views/vm_cloud_server/grant.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/frontend/src/views/vm_cloud_server/grant.vue -------------------------------------------------------------------------------- /services/vm-service/frontend/src/views/vm_cloud_server/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/frontend/src/views/vm_cloud_server/index.vue -------------------------------------------------------------------------------- /services/vm-service/frontend/src/views/vm_cloud_server/info.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/frontend/src/views/vm_cloud_server/info.vue -------------------------------------------------------------------------------- /services/vm-service/frontend/src/views/vm_cloud_server/list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/frontend/src/views/vm_cloud_server/list.vue -------------------------------------------------------------------------------- /services/vm-service/frontend/src/views/vm_cloud_server/monitor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/frontend/src/views/vm_cloud_server/monitor.vue -------------------------------------------------------------------------------- /services/vm-service/frontend/tsconfig.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/frontend/tsconfig.config.json -------------------------------------------------------------------------------- /services/vm-service/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/frontend/tsconfig.json -------------------------------------------------------------------------------- /services/vm-service/frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/frontend/vite.config.ts -------------------------------------------------------------------------------- /services/vm-service/plugins-sdk/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/plugins-sdk/pom.xml -------------------------------------------------------------------------------- /services/vm-service/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/pom.xml -------------------------------------------------------------------------------- /services/vm-service/vm-service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/CloudExplorer/HEAD/services/vm-service/vm-service.yml --------------------------------------------------------------------------------