@kestra-io/kestra-sdk 0.24.0 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +49 -32
- package/dist/ApiClient.js +2 -2
- package/dist/api/AIApi.js +1 -1
- package/dist/api/AppsApi.js +1 -1
- package/dist/api/AuditLogsApi.js +185 -17
- package/dist/api/AuthsApi.js +1 -1
- package/dist/api/BannersApi.js +1 -1
- package/dist/api/BindingsApi.js +1 -1
- package/dist/api/BlueprintTagsApi.js +1 -1
- package/dist/api/BlueprintsApi.js +1 -1
- package/dist/api/ClusterApi.js +9 -7
- package/dist/api/DashboardsApi.js +1 -1
- package/dist/api/DefaultApi.js +1 -1
- package/dist/api/ExecutionsApi.js +51 -1
- package/dist/api/FilesApi.js +1 -1
- package/dist/api/FlowsApi.js +1 -1
- package/dist/api/GroupsApi.js +1 -1
- package/dist/api/InvitationsApi.js +1 -1
- package/dist/api/KVApi.js +42 -1
- package/dist/api/LogsApi.js +1 -1
- package/dist/api/MaintenanceApi.js +9 -7
- package/dist/api/MetricsApi.js +1 -1
- package/dist/api/MiscApi.js +4 -5
- package/dist/api/NamespacesApi.js +13 -9
- package/dist/api/PluginsApi.js +59 -1
- package/dist/api/RolesApi.js +1 -1
- package/dist/api/SCIMConfigurationApi.js +1 -1
- package/dist/api/SCIMGroupsApi.js +1 -1
- package/dist/api/SCIMUsersApi.js +1 -1
- package/dist/api/SecurityIntegrationsApi.js +1 -1
- package/dist/api/ServiceAccountApi.js +256 -18
- package/dist/api/ServicesApi.js +1 -1
- package/dist/api/TenantAccessApi.js +1 -1
- package/dist/api/TenantsApi.js +1 -1
- package/dist/api/TestSuitesApi.js +126 -9
- package/dist/api/TriggersApi.js +1 -1
- package/dist/api/UsersApi.js +150 -34
- package/dist/api/WorkerGroupsApi.js +1 -1
- package/dist/index.js +123 -137
- package/dist/model/AbstractFlow.js +13 -1
- package/dist/model/AbstractFlowLabels.js +1 -1
- package/dist/model/AbstractGraph.js +1 -1
- package/dist/model/AbstractMetricEntryObject.js +1 -1
- package/dist/model/AbstractTrigger.js +1 -1
- package/dist/model/AbstractTriggerForExecution.js +1 -1
- package/dist/model/AbstractUser.js +1 -1
- package/dist/model/AbstractUserTenantIdentityProvider.js +35 -6
- package/dist/model/ApiAuth.js +32 -5
- package/dist/model/ApiAutocomplete.js +9 -1
- package/dist/model/ApiGroupSummary.js +30 -5
- package/dist/model/ApiIds.js +28 -5
- package/dist/model/{ServiceUsage.js → ApiPatchSuperAdminRequest.js} +39 -41
- package/dist/model/ApiRoleSummary.js +34 -5
- package/dist/model/ApiSecretListResponse.js +7 -5
- package/dist/model/ApiSecretMeta.js +1 -1
- package/dist/model/ApiSecretMetaEE.js +1 -1
- package/dist/model/ApiSecretTag.js +1 -1
- package/dist/model/ApiSecretValue.js +9 -5
- package/dist/model/ApiTenant.js +28 -6
- package/dist/model/{ServiceUsageDailyServiceStatistics.js → ApiTenantSummary.js} +53 -49
- package/dist/model/ApiUser.js +1 -1
- package/dist/model/AppResponse.js +32 -5
- package/dist/model/AppResponseUILayout.js +28 -5
- package/dist/model/AppsControllerApiApp.js +44 -5
- package/dist/model/AppsControllerApiAppCatalogItem.js +36 -5
- package/dist/model/AppsControllerApiAppSource.js +42 -5
- package/dist/model/AppsControllerApiAppTags.js +28 -5
- package/dist/model/AppsControllerApiBulkImportResponse.js +33 -11
- package/dist/model/AppsControllerApiBulkImportResponseError.js +30 -5
- package/dist/model/AppsControllerApiBulkOperationRequest.js +28 -5
- package/dist/model/Assertion.js +1 -1
- package/dist/model/AssertionResult.js +11 -5
- package/dist/model/AssertionRunError.js +7 -5
- package/dist/model/AttributeReference.js +1 -1
- package/dist/model/AuditLog.js +34 -6
- package/dist/model/AuditLogControllerApiAuditLogItem.js +130 -0
- package/dist/model/AuditLogControllerAuditLogDiff.js +30 -5
- package/dist/model/AuditLogControllerAuditLogOption.js +32 -5
- package/dist/model/AuditLogControllerFindRequest.js +34 -9
- package/dist/model/AuditLogDetail.js +18 -25
- package/dist/model/AuthControllerAuth.js +1 -1
- package/dist/model/AuthControllerInvitationUserRequest.js +1 -1
- package/dist/model/AuthControllerResetPasswordRequest.js +30 -5
- package/dist/model/Backfill.js +1 -1
- package/dist/model/Banner.js +1 -1
- package/dist/model/BaseAuditLog.js +25 -5
- package/dist/model/BaseResourcePatchRequest.js +1 -1
- package/dist/model/BaseResourceScimResource.js +1 -1
- package/dist/model/BaseResourceSearchRequest.js +1 -1
- package/dist/model/Binding.js +9 -5
- package/dist/model/Blueprint.js +15 -5
- package/dist/model/BlueprintControllerApiBlueprintItem.js +38 -5
- package/dist/model/BlueprintControllerApiBlueprintItemWithSource.js +39 -6
- package/dist/model/BlueprintControllerApiBlueprintTagItem.js +32 -5
- package/dist/model/BlueprintWithFlow.js +16 -6
- package/dist/model/Breakpoint.js +1 -1
- package/dist/model/BulkErrorResponse.js +1 -1
- package/dist/model/BulkResponse.js +1 -1
- package/dist/model/Cache.js +1 -1
- package/dist/model/ChartChartOption.js +1 -1
- package/dist/model/ChartFiltersOverrides.js +1 -1
- package/dist/model/Concurrency.js +1 -1
- package/dist/model/Condition.js +1 -1
- package/dist/model/ConversionServiceProvider.js +1 -1
- package/dist/model/ConvertibleMultiValuesString.js +1 -1
- package/dist/model/ConvertibleValuesListString.js +1 -1
- package/dist/model/CreateApiTokenRequest.js +11 -5
- package/dist/model/CreateApiTokenResponse.js +32 -5
- package/dist/model/CreateSecurityIntegrationRequest.js +1 -1
- package/dist/model/DailyExecutionStatistics.js +9 -5
- package/dist/model/DailyExecutionStatisticsDuration.js +1 -1
- package/dist/model/DailyExecutionStatisticsExecutionCounts.js +1 -1
- package/dist/model/Dashboard.js +1 -1
- package/dist/model/DashboardControllerPreviewRequest.js +1 -1
- package/dist/model/DeleteExecutionsByQueryRequest.js +1 -1
- package/dist/model/DeletedInterface.js +1 -1
- package/dist/model/DependsOn.js +1 -1
- package/dist/model/DocumentationWithSchema.js +1 -1
- package/dist/model/{ServerType.js → EditionProviderEdition.js} +11 -31
- package/dist/model/Email.js +1 -1
- package/dist/model/EventAppResponse.js +1 -1
- package/dist/model/EventExecution.js +1 -1
- package/dist/model/EventExecutionStatusEvent.js +1 -1
- package/dist/model/EventLogEntry.js +1 -1
- package/dist/model/ExecutableTaskSubflowId.js +30 -5
- package/dist/model/Execution.js +25 -5
- package/dist/model/ExecutionControllerApiValidateExecutionInputsResponse.js +35 -11
- package/dist/model/ExecutionControllerApiValidateExecutionInputsResponseApiInputAndValue.js +47 -11
- package/dist/model/ExecutionControllerApiValidateExecutionInputsResponseApiInputError.js +28 -5
- package/dist/model/ExecutionControllerEvalResult.js +1 -1
- package/dist/model/ExecutionControllerExecutionResponse.js +28 -6
- package/dist/model/ExecutionControllerLastExecutionResponse.js +36 -5
- package/dist/model/ExecutionControllerSetLabelsByIdsRequest.js +33 -11
- package/dist/model/ExecutionControllerStateRequest.js +30 -5
- package/dist/model/ExecutionControllerWebhookResponse.js +49 -11
- package/dist/model/ExecutionMetadata.js +29 -4
- package/dist/model/ExecutionRepositoryInterfaceFlowFilter.js +1 -1
- package/dist/model/ExecutionStatusEvent.js +36 -5
- package/dist/model/ExecutionTrigger.js +9 -5
- package/dist/model/ExecutionUsage.js +1 -1
- package/dist/model/FileAttributes.js +1 -1
- package/dist/model/FileMetas.js +1 -1
- package/dist/model/Filter.js +28 -5
- package/dist/model/Fixtures.js +1 -1
- package/dist/model/Flow.js +17 -13
- package/dist/model/FlowAllOfLabels.js +1 -1
- package/dist/model/FlowForExecution.js +17 -1
- package/dist/model/FlowForExecutionAllOfLabels.js +1 -1
- package/dist/model/FlowGenerationPrompt.js +19 -5
- package/dist/model/FlowGraph.js +48 -22
- package/dist/model/FlowGraphCluster.js +36 -5
- package/dist/model/FlowGraphEdge.js +32 -5
- package/dist/model/FlowId.js +1 -1
- package/dist/model/FlowInterface.js +13 -1
- package/dist/model/FlowNode.js +9 -5
- package/dist/model/FlowTopologyGraph.js +38 -16
- package/dist/model/FlowTopologyGraphEdge.js +32 -5
- package/dist/model/FlowUsage.js +1 -1
- package/dist/model/FlowWithSource.js +21 -17
- package/dist/model/FlowWithSourceAllOfLabels.js +1 -1
- package/dist/model/GroupIdentifier.js +34 -5
- package/dist/model/GroupUsage.js +1 -1
- package/dist/model/HttpParameters.js +1 -1
- package/dist/model/IAMBindingControllerApiBindingDetail.js +32 -5
- package/dist/model/IAMBindingControllerApiBindingGroup.js +30 -5
- package/dist/model/IAMBindingControllerApiBindingUser.js +34 -5
- package/dist/model/IAMBindingControllerApiCreateBindingRequest.js +1 -1
- package/dist/model/IAMBindingControllerApiRole.js +30 -5
- package/dist/model/IAMGroupControllerApiCreateGroupRequest.js +9 -5
- package/dist/model/IAMGroupControllerApiGroupDetail.js +32 -5
- package/dist/model/IAMGroupControllerApiGroupMember.js +37 -11
- package/dist/model/IAMGroupControllerApiGroupMembership.js +34 -5
- package/dist/model/IAMGroupControllerApiUpdateGroupRequest.js +7 -5
- package/dist/model/IAMInvitationControllerApiInvitationCreateRequest.js +13 -5
- package/dist/model/IAMInvitationControllerApiInvitationDetail.js +57 -17
- package/dist/model/IAMInvitationControllerApiInvitationRole.js +7 -5
- package/dist/model/IAMRoleControllerApiRoleCreateOrUpdateRequest.js +9 -5
- package/dist/model/IAMRoleControllerApiRoleCreateOrUpdateRequestPermissions.js +1 -1
- package/dist/model/IAMRoleControllerApiRoleDetail.js +38 -5
- package/dist/model/IAMServiceAccountControllerApiCreateServiceAccountRequest.js +151 -0
- package/dist/model/IAMServiceAccountControllerApiGroup.js +28 -5
- package/dist/model/{Group.js → IAMServiceAccountControllerApiPatchServiceAccountRequest.js} +25 -58
- package/dist/model/IAMServiceAccountControllerApiServiceAccountDetail.js +186 -0
- package/dist/model/IAMServiceAccountControllerApiServiceAccountRequest.js +11 -5
- package/dist/model/IAMServiceAccountControllerApiServiceAccountResponse.js +13 -5
- package/dist/model/IAMTenantAccessControllerApiAuthentication.js +30 -5
- package/dist/model/IAMTenantAccessControllerApiCreateTenantAccessRequest.js +1 -1
- package/dist/model/IAMTenantAccessControllerApiGroup.js +32 -5
- package/dist/model/IAMTenantAccessControllerApiRoleAssignment.js +41 -11
- package/dist/model/IAMTenantAccessControllerApiTenantAccess.js +49 -17
- package/dist/model/IAMTenantAccessControllerApiUserPermission.js +30 -5
- package/dist/model/IAMTenantAccessControllerApiUserTenantAccess.js +47 -17
- package/dist/model/IAMTenantAccessControllerUserApiAutocomplete.js +13 -1
- package/dist/model/IAMUserControllerApiCreateOrUpdateUserRequest.js +19 -5
- package/dist/model/IAMUserControllerApiGroup.js +30 -5
- package/dist/model/IAMUserControllerApiPatchRestrictedRequest.js +1 -1
- package/dist/model/IAMUserControllerApiPatchSuperAdminRequest.js +1 -1
- package/dist/model/IAMUserControllerApiPatchUserPasswordRequest.js +1 -1
- package/dist/model/IAMUserControllerApiTenant.js +30 -5
- package/dist/model/IAMUserControllerApiUser.js +67 -27
- package/dist/model/IAMUserControllerApiUserAuth.js +32 -5
- package/dist/model/IAMUserControllerApiUserSummary.js +51 -21
- package/dist/model/IAMUserGroupControllerApiUpdateUserGroupsRequest.js +28 -5
- package/dist/model/IdWithNamespace.js +1 -1
- package/dist/model/IdentityProvider.js +34 -5
- package/dist/model/InputObject.js +9 -3
- package/dist/model/InputType.js +30 -5
- package/dist/model/InstanceControllerApiActiveService.js +29 -4
- package/dist/model/InstanceControllerApiActiveServiceList.js +32 -10
- package/dist/model/InstanceControllerApiCreateOrUpdateWorkerGroupRequest.js +9 -5
- package/dist/model/InstanceControllerApiPluginArtifact.js +36 -5
- package/dist/model/InstanceControllerApiPluginArtifactListPluginArtifact.js +30 -5
- package/dist/model/InstanceControllerApiPluginArtifactListPluginResolutionResult.js +30 -5
- package/dist/model/InstanceControllerApiPluginListRequest.js +28 -5
- package/dist/model/InstanceControllerApiPluginVersionDetails.js +43 -11
- package/dist/model/InstanceControllerApiPluginVersionDetailsApiPluginClass.js +30 -5
- package/dist/model/InstanceControllerApiPluginVersionDetailsApiPluginClasses.js +33 -11
- package/dist/model/InstanceControllerApiPluginVersions.js +35 -11
- package/dist/model/InstanceControllerApiPluginVersionsApiPluginVersionAndMetadata.js +30 -5
- package/dist/model/InstanceControllerApiServerInstance.js +34 -5
- package/dist/model/InstanceControllerApiServiceInstance.js +38 -5
- package/dist/model/InstanceControllerApiWorkerGroup.js +34 -5
- package/dist/model/InstanceControllerApiWorkerGroupDetails.js +39 -11
- package/dist/model/InstanceControllerApiWorkerGroupItem.js +34 -5
- package/dist/model/InstanceControllerApiWorkerGroupList.js +30 -10
- package/dist/model/Invitation.js +29 -5
- package/dist/model/Isolation.js +30 -5
- package/dist/model/KVControllerApiDeleteBulkRequest.js +28 -5
- package/dist/model/KVControllerApiDeleteBulkResponse.js +28 -5
- package/dist/model/KVControllerTypedValue.js +29 -4
- package/dist/model/KVEntry.js +32 -5
- package/dist/model/Label.js +1 -1
- package/dist/model/{NamespaceUsage.js → LeftSidebarConfiguration.js} +25 -21
- package/dist/model/Listener.js +9 -5
- package/dist/model/LogEntry.js +13 -5
- package/dist/model/MapObjectObject.js +1 -1
- package/dist/model/MeControllerApiMe.js +47 -17
- package/dist/model/MeControllerApiProfile.js +34 -5
- package/dist/model/MeControllerApiTenant.js +32 -5
- package/dist/model/MeControllerApiUpdatePasswordRequest.js +30 -5
- package/dist/model/MeControllerApiUserDetailsRequest.js +32 -5
- package/dist/model/Meta.js +1 -1
- package/dist/model/Metric.js +41 -11
- package/dist/model/MetricAggregation.js +7 -5
- package/dist/model/MetricAggregations.js +1 -1
- package/dist/model/MetricEntry.js +1 -1
- package/dist/model/MetricTag.js +30 -5
- package/dist/model/{PluginMetric.js → MiscControllerApiUsage.js} +36 -44
- package/dist/model/MiscControllerBasicAuthCredentials.js +32 -5
- package/dist/model/MiscControllerConfiguration.js +26 -1
- package/dist/model/MiscControllerEEConfiguration.js +62 -8
- package/dist/model/MiscControllerEdition.js +58 -0
- package/dist/model/MiscControllerEnvironment.js +30 -5
- package/dist/model/MiscControllerLicenseInfo.js +38 -5
- package/dist/model/MiscControllerPluginIdAndVersion.js +30 -5
- package/dist/model/MiscControllerPreview.js +29 -4
- package/dist/model/MiscControllerTenantConfigurationInfo.js +29 -4
- package/dist/model/Name.js +1 -1
- package/dist/model/Namespace.js +7 -2
- package/dist/model/NamespaceAllowedNamespace.js +1 -1
- package/dist/model/NamespaceAllowedTrigger.js +7 -5
- package/dist/model/NamespaceLight.js +1 -1
- package/dist/model/Output.js +9 -1
- package/dist/model/PageRequest.js +1 -1
- package/dist/model/PagedResultsApiGroupSummary.js +1 -1
- package/dist/model/PagedResultsApiRoleSummary.js +1 -1
- package/dist/model/PagedResultsAppsControllerApiApp.js +1 -1
- package/dist/model/PagedResultsAppsControllerApiAppCatalogItem.js +1 -1
- package/dist/model/{PagedResultsAuditLogControllerAuditLogWithUser.js → PagedResultsAuditLogControllerApiAuditLogItem.js} +26 -26
- package/dist/model/PagedResultsBlueprint.js +1 -1
- package/dist/model/PagedResultsBlueprintControllerApiBlueprintItem.js +1 -1
- package/dist/model/PagedResultsDashboard.js +1 -1
- package/dist/model/PagedResultsExecution.js +1 -1
- package/dist/model/PagedResultsFlow.js +1 -1
- package/dist/model/PagedResultsIAMBindingControllerApiBindingDetail.js +1 -1
- package/dist/model/PagedResultsIAMGroupControllerApiGroupMember.js +1 -1
- package/dist/model/PagedResultsIAMInvitationControllerApiInvitationDetail.js +1 -1
- package/dist/model/PagedResultsIAMServiceAccountControllerApiServiceAccountDetail.js +140 -0
- package/dist/model/PagedResultsIAMTenantAccessControllerApiUserTenantAccess.js +1 -1
- package/dist/model/PagedResultsIAMUserControllerApiUserSummary.js +1 -1
- package/dist/model/PagedResultsInstanceControllerApiPluginArtifact.js +1 -1
- package/dist/model/PagedResultsInstanceControllerApiServiceInstance.js +1 -1
- package/dist/model/PagedResultsLogEntry.js +1 -1
- package/dist/model/PagedResultsMapStringObject.js +1 -1
- package/dist/model/PagedResultsMetricEntry.js +1 -1
- package/dist/model/{PagedResultsNamespaceWithDisabled.js → PagedResultsNamespace.js} +26 -26
- package/dist/model/PagedResultsSearchResultFlow.js +1 -1
- package/dist/model/PagedResultsTaskRun.js +1 -1
- package/dist/model/PagedResultsTenant.js +1 -1
- package/dist/model/PagedResultsTestSuite.js +1 -1
- package/dist/model/{PagedResultsIAMBindingControllerApiBindingSummary.js → PagedResultsTestSuiteRunResult.js} +26 -26
- package/dist/model/PagedResultsTrigger.js +1 -1
- package/dist/model/PagedResultsTriggerControllerTriggers.js +1 -1
- package/dist/model/PatchOperation.js +1 -1
- package/dist/model/PatchOperationPath.js +28 -5
- package/dist/model/PatchRequest.js +1 -1
- package/dist/model/Plugin.js +40 -11
- package/dist/model/PluginArtifact.js +38 -5
- package/dist/model/PluginArtifactMetadata.js +36 -5
- package/dist/model/PluginControllerApiPluginVersions.js +30 -5
- package/dist/model/PluginDefault.js +9 -5
- package/dist/model/PluginIcon.js +1 -1
- package/dist/model/PluginPluginElementMetadata.js +30 -5
- package/dist/model/PluginSchema.js +1 -1
- package/dist/model/PreviewAppRequest.js +1 -1
- package/dist/model/PropertyBoolean.js +28 -5
- package/dist/model/PropertyDouble.js +28 -5
- package/dist/model/PropertyDuration.js +28 -5
- package/dist/model/PropertyListString.js +28 -5
- package/dist/model/PropertyObject.js +28 -5
- package/dist/model/PropertyString.js +28 -5
- package/dist/model/QueryFilter.js +31 -4
- package/dist/model/QueryFilterField.js +5 -0
- package/dist/model/QueryFilterFieldOp.js +35 -11
- package/dist/model/QueryFilterOperation.js +30 -5
- package/dist/model/QueryFilterResourceField.js +33 -11
- package/dist/model/Relation.js +30 -5
- package/dist/model/ResourceType.js +9 -7
- package/dist/model/ResourceType1.js +168 -0
- package/dist/model/ResourceTypeSchemaExtensionConfiguration.js +1 -1
- package/dist/model/{PluginUsage.js → RightSidebarConfiguration.js} +23 -22
- package/dist/model/RightSidebarConfigurationCustomLink.js +126 -0
- package/dist/model/Role.js +13 -5
- package/dist/model/RoleUsage.js +1 -1
- package/dist/model/SLA.js +1 -1
- package/dist/model/Schema.js +1 -1
- package/dist/model/SchemaAttribute.js +1 -1
- package/dist/model/ScimExtension.js +1 -1
- package/dist/model/ScimResource.js +7 -5
- package/dist/model/ScimResourceWithOptionalId.js +8 -6
- package/dist/model/ScimUser.js +8 -6
- package/dist/model/SearchRequest.js +1 -1
- package/dist/model/SearchResultFlow.js +30 -5
- package/dist/model/ServerConfig.js +7 -5
- package/dist/model/ServerConfigLiveness.js +1 -1
- package/dist/model/ServerInstance.js +41 -11
- package/dist/model/ServiceInstance.js +57 -17
- package/dist/model/ServiceInstanceTimestampedEvent.js +34 -5
- package/dist/model/ServiceProviderConfiguration.js +9 -7
- package/dist/model/ServiceProviderConfigurationAuthenticationSchema.js +1 -1
- package/dist/model/ServiceProviderConfigurationBulkConfiguration.js +1 -1
- package/dist/model/ServiceProviderConfigurationFilterConfiguration.js +1 -1
- package/dist/model/ServiceProviderConfigurationSupportedConfiguration.js +1 -1
- package/dist/model/ServiceServiceState.js +2 -2
- package/dist/model/ServiceType.js +5 -0
- package/dist/model/SetupConfiguration.js +30 -5
- package/dist/model/SetupConfigurationSetupData.js +32 -5
- package/dist/model/SortRequest.js +1 -1
- package/dist/model/State.js +1 -1
- package/dist/model/StateHistory.js +1 -1
- package/dist/model/Task.js +1 -1
- package/dist/model/TaskFixture.js +1 -1
- package/dist/model/TaskForExecution.js +1 -1
- package/dist/model/TaskRun.js +17 -5
- package/dist/model/TaskRunAttempt.js +1 -1
- package/dist/model/Tenant.js +25 -5
- package/dist/model/TenantInterface.js +1 -1
- package/dist/model/TenantUsage.js +1 -1
- package/dist/model/TestSuite.js +1 -1
- package/dist/model/TestSuiteControllerRunRequest.js +112 -0
- package/dist/model/TestSuiteControllerSearchTestsLastResult.js +30 -10
- package/dist/model/TestSuiteControllerTestSuiteApiId.js +1 -1
- package/dist/model/TestSuiteControllerTestSuiteBulkRequest.js +1 -1
- package/dist/model/TestSuiteControllerTestsLastResultResponse.js +30 -10
- package/dist/model/TestSuiteRunResult.js +7 -5
- package/dist/model/TestSuiteServiceRunByQueryRequest.js +138 -0
- package/dist/model/TestSuiteServiceTestRunByQueryResult.js +180 -0
- package/dist/model/TheLabelsToPassToTheExecutionCreated.js +1 -1
- package/dist/model/TimeWindow.js +1 -1
- package/dist/model/Trigger.js +1 -1
- package/dist/model/TriggerContext.js +1 -1
- package/dist/model/TriggerControllerSetDisabledRequest.js +1 -1
- package/dist/model/TriggerControllerTriggers.js +30 -5
- package/dist/model/TriggerFixture.js +1 -1
- package/dist/model/UnitTest.js +1 -1
- package/dist/model/UnitTestResult.js +11 -5
- package/dist/model/UpdateFlow200Response.js +6 -6
- package/dist/model/UpdateFlowsInNamespaceFromJson200Response.js +1 -1
- package/dist/model/UsageEE.js +12 -320
- package/dist/model/UserGroup.js +1 -1
- package/dist/model/UserUsage.js +1 -1
- package/dist/model/UsernamePasswordCredentials.js +1 -1
- package/dist/model/ValidateConstraintViolation.js +19 -5
- package/dist/model/ValuePathExpression.js +28 -5
- package/dist/model/WorkerGroup.js +1 -1
- package/package.json +1 -1
- package/dist/api/SCIMApi.js +0 -815
- package/dist/model/AuditLogControllerAuditLogWithUser.js +0 -105
- package/dist/model/ConfigurationUsage.js +0 -133
- package/dist/model/CustomLink.js +0 -113
- package/dist/model/HostUsage.js +0 -131
- package/dist/model/HostUsageHardware.js +0 -125
- package/dist/model/HostUsageJvm.js +0 -113
- package/dist/model/HostUsageOs.js +0 -125
- package/dist/model/IAMBindingControllerApiBindingSummary.js +0 -152
- package/dist/model/NamespaceWithDisabled.js +0 -370
- package/dist/model/ServiceUsageDailyStatistics.js +0 -109
- package/dist/model/Usage.js +0 -343
package/dist/api/AuditLogsApi.js
CHANGED
|
@@ -5,13 +5,13 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
5
5
|
});
|
|
6
6
|
exports["default"] = void 0;
|
|
7
7
|
var _ApiClient = _interopRequireDefault(require("../ApiClient"));
|
|
8
|
+
var _AuditLogControllerApiAuditLogItem = _interopRequireDefault(require("../model/AuditLogControllerApiAuditLogItem"));
|
|
8
9
|
var _AuditLogControllerAuditLogDiff = _interopRequireDefault(require("../model/AuditLogControllerAuditLogDiff"));
|
|
9
10
|
var _AuditLogControllerAuditLogOption = _interopRequireDefault(require("../model/AuditLogControllerAuditLogOption"));
|
|
10
|
-
var _AuditLogControllerAuditLogWithUser = _interopRequireDefault(require("../model/AuditLogControllerAuditLogWithUser"));
|
|
11
11
|
var _AuditLogControllerFindRequest = _interopRequireDefault(require("../model/AuditLogControllerFindRequest"));
|
|
12
12
|
var _CrudEventType = _interopRequireDefault(require("../model/CrudEventType"));
|
|
13
|
-
var
|
|
14
|
-
var
|
|
13
|
+
var _PagedResultsAuditLogControllerApiAuditLogItem = _interopRequireDefault(require("../model/PagedResultsAuditLogControllerApiAuditLogItem"));
|
|
14
|
+
var _ResourceType = _interopRequireDefault(require("../model/ResourceType1"));
|
|
15
15
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
|
|
16
16
|
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
17
17
|
function _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); }
|
|
@@ -33,7 +33,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
|
|
|
33
33
|
/**
|
|
34
34
|
* AuditLogs service.
|
|
35
35
|
* @module api/AuditLogsApi
|
|
36
|
-
* @version
|
|
36
|
+
* @version 1.0.0
|
|
37
37
|
*/
|
|
38
38
|
var AuditLogsApi = exports["default"] = /*#__PURE__*/function () {
|
|
39
39
|
/**
|
|
@@ -49,21 +49,81 @@ var AuditLogsApi = exports["default"] = /*#__PURE__*/function () {
|
|
|
49
49
|
}
|
|
50
50
|
|
|
51
51
|
/**
|
|
52
|
-
* Callback function to receive the result of the
|
|
53
|
-
* @callback module:api/AuditLogsApi~
|
|
52
|
+
* Callback function to receive the result of the exportAuditLogs operation.
|
|
53
|
+
* @callback module:api/AuditLogsApi~exportAuditLogsCallback
|
|
54
54
|
* @param {String} error Error message, if any.
|
|
55
|
-
* @param {
|
|
55
|
+
* @param {Array.<Object>} data The data returned by the service call.
|
|
56
56
|
* @param {String} response The complete HTTP response.
|
|
57
57
|
*/
|
|
58
58
|
|
|
59
59
|
/**
|
|
60
|
-
*
|
|
60
|
+
* Export all audit logs as a streamed CSV file
|
|
61
61
|
* @param {String} tenant
|
|
62
|
-
* @param {
|
|
63
|
-
* @param {
|
|
64
|
-
*
|
|
62
|
+
* @param {Object} opts Optional parameters
|
|
63
|
+
* @param {String} [q] A string filter
|
|
64
|
+
* @param {String} [namespace] A namespace filter
|
|
65
|
+
* @param {String} [flowId] A flow id filter
|
|
66
|
+
* @param {String} [executionId] An execution filter
|
|
67
|
+
* @param {String} [userId] A user id filter
|
|
68
|
+
* @param {String} [id] A id filter
|
|
69
|
+
* @param {Array.<module:model/ResourceType1>} [resources] A resource filter
|
|
70
|
+
* @param {Date} [startDate] The start datetime
|
|
71
|
+
* @param {Date} [endDate] The end datetime
|
|
72
|
+
* @param {Object.<String, {String: String}>} [details] A list of auditLog details
|
|
73
|
+
* @param {module:model/CrudEventType} [type] The event that create the audit log
|
|
74
|
+
* @param {module:api/AuditLogsApi~exportAuditLogsCallback} callback The callback function, accepting three arguments: error, data, response
|
|
75
|
+
* data is of type: {@link Array.<Object>}
|
|
65
76
|
*/
|
|
66
77
|
return _createClass(AuditLogsApi, [{
|
|
78
|
+
key: "exportAuditLogs",
|
|
79
|
+
value: function exportAuditLogs(tenant, opts, callback) {
|
|
80
|
+
opts = opts || {};
|
|
81
|
+
var postBody = null;
|
|
82
|
+
// verify the required parameter 'tenant' is set
|
|
83
|
+
if (tenant === undefined || tenant === null) {
|
|
84
|
+
throw new Error("Missing the required parameter 'tenant' when calling exportAuditLogs");
|
|
85
|
+
}
|
|
86
|
+
var pathParams = {
|
|
87
|
+
'tenant': tenant
|
|
88
|
+
};
|
|
89
|
+
var queryParams = {
|
|
90
|
+
'q': opts['q'],
|
|
91
|
+
'namespace': opts['namespace'],
|
|
92
|
+
'flowId': opts['flowId'],
|
|
93
|
+
'executionId': opts['executionId'],
|
|
94
|
+
'userId': opts['userId'],
|
|
95
|
+
'id': opts['id'],
|
|
96
|
+
'resources': this.apiClient.buildCollectionParam(opts['resources'], 'csv'),
|
|
97
|
+
'startDate': opts['startDate'],
|
|
98
|
+
'endDate': opts['endDate'],
|
|
99
|
+
'details': opts['details'],
|
|
100
|
+
'type': opts['type']
|
|
101
|
+
};
|
|
102
|
+
var headerParams = {};
|
|
103
|
+
var formParams = {};
|
|
104
|
+
var authNames = ['basicAuth', 'bearerAuth'];
|
|
105
|
+
var contentTypes = [];
|
|
106
|
+
var accepts = ['text/csv'];
|
|
107
|
+
var returnType = [Object];
|
|
108
|
+
return this.apiClient.callApi('/api/v1/{tenant}/auditlogs/export', 'GET', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null, callback);
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
/**
|
|
112
|
+
* Callback function to receive the result of the findAuditLog operation.
|
|
113
|
+
* @callback module:api/AuditLogsApi~findAuditLogCallback
|
|
114
|
+
* @param {String} error Error message, if any.
|
|
115
|
+
* @param {module:model/AuditLogControllerApiAuditLogItem} data The data returned by the service call.
|
|
116
|
+
* @param {String} response The complete HTTP response.
|
|
117
|
+
*/
|
|
118
|
+
|
|
119
|
+
/**
|
|
120
|
+
* Find a specific audit log
|
|
121
|
+
* @param {String} tenant
|
|
122
|
+
* @param {module:model/AuditLogControllerFindRequest} auditLogControllerFindRequest The find request
|
|
123
|
+
* @param {module:api/AuditLogsApi~findAuditLogCallback} callback The callback function, accepting three arguments: error, data, response
|
|
124
|
+
* data is of type: {@link module:model/AuditLogControllerApiAuditLogItem}
|
|
125
|
+
*/
|
|
126
|
+
}, {
|
|
67
127
|
key: "findAuditLog",
|
|
68
128
|
value: function findAuditLog(tenant, auditLogControllerFindRequest, callback) {
|
|
69
129
|
var postBody = auditLogControllerFindRequest;
|
|
@@ -84,10 +144,51 @@ var AuditLogsApi = exports["default"] = /*#__PURE__*/function () {
|
|
|
84
144
|
var authNames = ['basicAuth', 'bearerAuth'];
|
|
85
145
|
var contentTypes = ['application/json'];
|
|
86
146
|
var accepts = ['application/json'];
|
|
87
|
-
var returnType =
|
|
147
|
+
var returnType = _AuditLogControllerApiAuditLogItem["default"];
|
|
88
148
|
return this.apiClient.callApi('/api/v1/{tenant}/auditlogs/find', 'POST', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null, callback);
|
|
89
149
|
}
|
|
90
150
|
|
|
151
|
+
/**
|
|
152
|
+
* Callback function to receive the result of the getGlobalResourceDiffFromAuditLog operation.
|
|
153
|
+
* @callback module:api/AuditLogsApi~getGlobalResourceDiffFromAuditLogCallback
|
|
154
|
+
* @param {String} error Error message, if any.
|
|
155
|
+
* @param {module:model/AuditLogControllerAuditLogDiff} data The data returned by the service call.
|
|
156
|
+
* @param {String} response The complete HTTP response.
|
|
157
|
+
*/
|
|
158
|
+
|
|
159
|
+
/**
|
|
160
|
+
* Retrieve the diff between audit logs from global resource like users
|
|
161
|
+
* Retrieves the diff between the current version and a selected previous version of a given resource based on audit logs.
|
|
162
|
+
* @param {String} id The id of the audit log
|
|
163
|
+
* @param {Object} opts Optional parameters
|
|
164
|
+
* @param {String} [previousId] The id of a previous audit log to compare with
|
|
165
|
+
* @param {module:api/AuditLogsApi~getGlobalResourceDiffFromAuditLogCallback} callback The callback function, accepting three arguments: error, data, response
|
|
166
|
+
* data is of type: {@link module:model/AuditLogControllerAuditLogDiff}
|
|
167
|
+
*/
|
|
168
|
+
}, {
|
|
169
|
+
key: "getGlobalResourceDiffFromAuditLog",
|
|
170
|
+
value: function getGlobalResourceDiffFromAuditLog(id, opts, callback) {
|
|
171
|
+
opts = opts || {};
|
|
172
|
+
var postBody = null;
|
|
173
|
+
// verify the required parameter 'id' is set
|
|
174
|
+
if (id === undefined || id === null) {
|
|
175
|
+
throw new Error("Missing the required parameter 'id' when calling getGlobalResourceDiffFromAuditLog");
|
|
176
|
+
}
|
|
177
|
+
var pathParams = {
|
|
178
|
+
'id': id
|
|
179
|
+
};
|
|
180
|
+
var queryParams = {
|
|
181
|
+
'previousId': opts['previousId']
|
|
182
|
+
};
|
|
183
|
+
var headerParams = {};
|
|
184
|
+
var formParams = {};
|
|
185
|
+
var authNames = ['basicAuth', 'bearerAuth'];
|
|
186
|
+
var contentTypes = [];
|
|
187
|
+
var accepts = ['application/json'];
|
|
188
|
+
var returnType = _AuditLogControllerAuditLogDiff["default"];
|
|
189
|
+
return this.apiClient.callApi('/api/v1/auditlogs/{id}/diff', 'GET', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null, callback);
|
|
190
|
+
}
|
|
191
|
+
|
|
91
192
|
/**
|
|
92
193
|
* Callback function to receive the result of the getResourceDiffFromAuditLog operation.
|
|
93
194
|
* @callback module:api/AuditLogsApi~getResourceDiffFromAuditLogCallback
|
|
@@ -180,7 +281,7 @@ var AuditLogsApi = exports["default"] = /*#__PURE__*/function () {
|
|
|
180
281
|
* Callback function to receive the result of the searchAuditLogs operation.
|
|
181
282
|
* @callback module:api/AuditLogsApi~searchAuditLogsCallback
|
|
182
283
|
* @param {String} error Error message, if any.
|
|
183
|
-
* @param {module:model/
|
|
284
|
+
* @param {module:model/PagedResultsAuditLogControllerApiAuditLogItem} data The data returned by the service call.
|
|
184
285
|
* @param {String} response The complete HTTP response.
|
|
185
286
|
*/
|
|
186
287
|
|
|
@@ -197,13 +298,13 @@ var AuditLogsApi = exports["default"] = /*#__PURE__*/function () {
|
|
|
197
298
|
* @param {String} [executionId] An execution filter
|
|
198
299
|
* @param {String} [userId] A user id filter
|
|
199
300
|
* @param {String} [id] A id filter
|
|
200
|
-
* @param {module:model/
|
|
301
|
+
* @param {Array.<module:model/ResourceType1>} [resources] A resource filter
|
|
201
302
|
* @param {Date} [startDate] The start datetime
|
|
202
303
|
* @param {Date} [endDate] The end datetime
|
|
203
304
|
* @param {Object.<String, {String: String}>} [details] A list of auditLog details
|
|
204
305
|
* @param {module:model/CrudEventType} [type] The event that create the audit log
|
|
205
306
|
* @param {module:api/AuditLogsApi~searchAuditLogsCallback} callback The callback function, accepting three arguments: error, data, response
|
|
206
|
-
* data is of type: {@link module:model/
|
|
307
|
+
* data is of type: {@link module:model/PagedResultsAuditLogControllerApiAuditLogItem}
|
|
207
308
|
*/
|
|
208
309
|
}, {
|
|
209
310
|
key: "searchAuditLogs",
|
|
@@ -235,7 +336,7 @@ var AuditLogsApi = exports["default"] = /*#__PURE__*/function () {
|
|
|
235
336
|
'executionId': opts['executionId'],
|
|
236
337
|
'userId': opts['userId'],
|
|
237
338
|
'id': opts['id'],
|
|
238
|
-
'
|
|
339
|
+
'resources': this.apiClient.buildCollectionParam(opts['resources'], 'csv'),
|
|
239
340
|
'startDate': opts['startDate'],
|
|
240
341
|
'endDate': opts['endDate'],
|
|
241
342
|
'details': opts['details'],
|
|
@@ -246,8 +347,75 @@ var AuditLogsApi = exports["default"] = /*#__PURE__*/function () {
|
|
|
246
347
|
var authNames = ['basicAuth', 'bearerAuth'];
|
|
247
348
|
var contentTypes = [];
|
|
248
349
|
var accepts = ['application/json'];
|
|
249
|
-
var returnType =
|
|
350
|
+
var returnType = _PagedResultsAuditLogControllerApiAuditLogItem["default"];
|
|
250
351
|
return this.apiClient.callApi('/api/v1/{tenant}/auditlogs/search', 'GET', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null, callback);
|
|
251
352
|
}
|
|
353
|
+
|
|
354
|
+
/**
|
|
355
|
+
* Callback function to receive the result of the searchAuditLogsForAllTenants operation.
|
|
356
|
+
* @callback module:api/AuditLogsApi~searchAuditLogsForAllTenantsCallback
|
|
357
|
+
* @param {String} error Error message, if any.
|
|
358
|
+
* @param {module:model/PagedResultsAuditLogControllerApiAuditLogItem} data The data returned by the service call.
|
|
359
|
+
* @param {String} response The complete HTTP response.
|
|
360
|
+
*/
|
|
361
|
+
|
|
362
|
+
/**
|
|
363
|
+
* Search for audit logs across all tenants, required to be SuperAdmin
|
|
364
|
+
* @param {Number} page The current page
|
|
365
|
+
* @param {Number} size The current page size
|
|
366
|
+
* @param {Object} opts Optional parameters
|
|
367
|
+
* @param {String} [q] A string filter
|
|
368
|
+
* @param {Array.<String>} [sort] The sort of current page
|
|
369
|
+
* @param {String} [namespace] A namespace filter
|
|
370
|
+
* @param {String} [flowId] A flow id filter
|
|
371
|
+
* @param {String} [executionId] An execution filter
|
|
372
|
+
* @param {String} [userId] A user id filter
|
|
373
|
+
* @param {String} [id] A id filter
|
|
374
|
+
* @param {module:model/ResourceType1} [resource] A resource filter
|
|
375
|
+
* @param {Date} [startDate] The start datetime
|
|
376
|
+
* @param {Date} [endDate] The end datetime
|
|
377
|
+
* @param {Object.<String, {String: String}>} [details] A list of auditLog details
|
|
378
|
+
* @param {module:model/CrudEventType} [type] The event that create the audit log
|
|
379
|
+
* @param {module:api/AuditLogsApi~searchAuditLogsForAllTenantsCallback} callback The callback function, accepting three arguments: error, data, response
|
|
380
|
+
* data is of type: {@link module:model/PagedResultsAuditLogControllerApiAuditLogItem}
|
|
381
|
+
*/
|
|
382
|
+
}, {
|
|
383
|
+
key: "searchAuditLogsForAllTenants",
|
|
384
|
+
value: function searchAuditLogsForAllTenants(page, size, opts, callback) {
|
|
385
|
+
opts = opts || {};
|
|
386
|
+
var postBody = null;
|
|
387
|
+
// verify the required parameter 'page' is set
|
|
388
|
+
if (page === undefined || page === null) {
|
|
389
|
+
throw new Error("Missing the required parameter 'page' when calling searchAuditLogsForAllTenants");
|
|
390
|
+
}
|
|
391
|
+
// verify the required parameter 'size' is set
|
|
392
|
+
if (size === undefined || size === null) {
|
|
393
|
+
throw new Error("Missing the required parameter 'size' when calling searchAuditLogsForAllTenants");
|
|
394
|
+
}
|
|
395
|
+
var pathParams = {};
|
|
396
|
+
var queryParams = {
|
|
397
|
+
'q': opts['q'],
|
|
398
|
+
'page': page,
|
|
399
|
+
'size': size,
|
|
400
|
+
'sort': this.apiClient.buildCollectionParam(opts['sort'], 'csv'),
|
|
401
|
+
'namespace': opts['namespace'],
|
|
402
|
+
'flowId': opts['flowId'],
|
|
403
|
+
'executionId': opts['executionId'],
|
|
404
|
+
'userId': opts['userId'],
|
|
405
|
+
'id': opts['id'],
|
|
406
|
+
'resource': opts['resource'],
|
|
407
|
+
'startDate': opts['startDate'],
|
|
408
|
+
'endDate': opts['endDate'],
|
|
409
|
+
'details': opts['details'],
|
|
410
|
+
'type': opts['type']
|
|
411
|
+
};
|
|
412
|
+
var headerParams = {};
|
|
413
|
+
var formParams = {};
|
|
414
|
+
var authNames = ['basicAuth', 'bearerAuth'];
|
|
415
|
+
var contentTypes = [];
|
|
416
|
+
var accepts = ['application/json'];
|
|
417
|
+
var returnType = _PagedResultsAuditLogControllerApiAuditLogItem["default"];
|
|
418
|
+
return this.apiClient.callApi('/api/v1/auditlogs/search', 'GET', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null, callback);
|
|
419
|
+
}
|
|
252
420
|
}]);
|
|
253
421
|
}();
|
package/dist/api/AuthsApi.js
CHANGED
package/dist/api/BannersApi.js
CHANGED
package/dist/api/BindingsApi.js
CHANGED
|
@@ -30,7 +30,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
|
|
|
30
30
|
/**
|
|
31
31
|
* Bindings service.
|
|
32
32
|
* @module api/BindingsApi
|
|
33
|
-
* @version
|
|
33
|
+
* @version 1.0.0
|
|
34
34
|
*/
|
|
35
35
|
var BindingsApi = exports["default"] = /*#__PURE__*/function () {
|
|
36
36
|
/**
|
|
@@ -28,7 +28,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
|
|
|
28
28
|
/**
|
|
29
29
|
* BlueprintTags service.
|
|
30
30
|
* @module api/BlueprintTagsApi
|
|
31
|
-
* @version
|
|
31
|
+
* @version 1.0.0
|
|
32
32
|
*/
|
|
33
33
|
var BlueprintTagsApi = exports["default"] = /*#__PURE__*/function () {
|
|
34
34
|
/**
|
|
@@ -31,7 +31,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
|
|
|
31
31
|
/**
|
|
32
32
|
* Blueprints service.
|
|
33
33
|
* @module api/BlueprintsApi
|
|
34
|
-
* @version
|
|
34
|
+
* @version 1.0.0
|
|
35
35
|
*/
|
|
36
36
|
var BlueprintsApi = exports["default"] = /*#__PURE__*/function () {
|
|
37
37
|
/**
|
package/dist/api/ClusterApi.js
CHANGED
|
@@ -26,7 +26,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
|
|
|
26
26
|
/**
|
|
27
27
|
* Cluster service.
|
|
28
28
|
* @module api/ClusterApi
|
|
29
|
-
* @version
|
|
29
|
+
* @version 1.0.0
|
|
30
30
|
*/
|
|
31
31
|
var ClusterApi = exports["default"] = /*#__PURE__*/function () {
|
|
32
32
|
/**
|
|
@@ -45,7 +45,7 @@ var ClusterApi = exports["default"] = /*#__PURE__*/function () {
|
|
|
45
45
|
* Callback function to receive the result of the enterMaintenance operation.
|
|
46
46
|
* @callback module:api/ClusterApi~enterMaintenanceCallback
|
|
47
47
|
* @param {String} error Error message, if any.
|
|
48
|
-
* @param data
|
|
48
|
+
* @param {Object} data The data returned by the service call.
|
|
49
49
|
* @param {String} response The complete HTTP response.
|
|
50
50
|
*/
|
|
51
51
|
|
|
@@ -53,6 +53,7 @@ var ClusterApi = exports["default"] = /*#__PURE__*/function () {
|
|
|
53
53
|
* Enter cluster maintenance mode
|
|
54
54
|
* Requires a role with the INFRASTRUCTURE permission (Superadmin-only).
|
|
55
55
|
* @param {module:api/ClusterApi~enterMaintenanceCallback} callback The callback function, accepting three arguments: error, data, response
|
|
56
|
+
* data is of type: {@link Object}
|
|
56
57
|
*/
|
|
57
58
|
return _createClass(ClusterApi, [{
|
|
58
59
|
key: "enterMaintenance",
|
|
@@ -64,8 +65,8 @@ var ClusterApi = exports["default"] = /*#__PURE__*/function () {
|
|
|
64
65
|
var formParams = {};
|
|
65
66
|
var authNames = ['basicAuth', 'bearerAuth'];
|
|
66
67
|
var contentTypes = [];
|
|
67
|
-
var accepts = [];
|
|
68
|
-
var returnType =
|
|
68
|
+
var accepts = ['application/json'];
|
|
69
|
+
var returnType = Object;
|
|
69
70
|
return this.apiClient.callApi('/api/v1/instance/maintenance/enter', 'POST', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null, callback);
|
|
70
71
|
}
|
|
71
72
|
|
|
@@ -73,7 +74,7 @@ var ClusterApi = exports["default"] = /*#__PURE__*/function () {
|
|
|
73
74
|
* Callback function to receive the result of the exitMaintenance operation.
|
|
74
75
|
* @callback module:api/ClusterApi~exitMaintenanceCallback
|
|
75
76
|
* @param {String} error Error message, if any.
|
|
76
|
-
* @param data
|
|
77
|
+
* @param {Object} data The data returned by the service call.
|
|
77
78
|
* @param {String} response The complete HTTP response.
|
|
78
79
|
*/
|
|
79
80
|
|
|
@@ -81,6 +82,7 @@ var ClusterApi = exports["default"] = /*#__PURE__*/function () {
|
|
|
81
82
|
* Exit cluster maintenance mode
|
|
82
83
|
* Requires a role with the INFRASTRUCTURE permission (Superadmin-only).
|
|
83
84
|
* @param {module:api/ClusterApi~exitMaintenanceCallback} callback The callback function, accepting three arguments: error, data, response
|
|
85
|
+
* data is of type: {@link Object}
|
|
84
86
|
*/
|
|
85
87
|
}, {
|
|
86
88
|
key: "exitMaintenance",
|
|
@@ -92,8 +94,8 @@ var ClusterApi = exports["default"] = /*#__PURE__*/function () {
|
|
|
92
94
|
var formParams = {};
|
|
93
95
|
var authNames = ['basicAuth', 'bearerAuth'];
|
|
94
96
|
var contentTypes = [];
|
|
95
|
-
var accepts = [];
|
|
96
|
-
var returnType =
|
|
97
|
+
var accepts = ['application/json'];
|
|
98
|
+
var returnType = Object;
|
|
97
99
|
return this.apiClient.callApi('/api/v1/instance/maintenance/exit', 'POST', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null, callback);
|
|
98
100
|
}
|
|
99
101
|
}]);
|
|
@@ -32,7 +32,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
|
|
|
32
32
|
/**
|
|
33
33
|
* Dashboards service.
|
|
34
34
|
* @module api/DashboardsApi
|
|
35
|
-
* @version
|
|
35
|
+
* @version 1.0.0
|
|
36
36
|
*/
|
|
37
37
|
var DashboardsApi = exports["default"] = /*#__PURE__*/function () {
|
|
38
38
|
/**
|
package/dist/api/DefaultApi.js
CHANGED
|
@@ -51,7 +51,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
|
|
|
51
51
|
/**
|
|
52
52
|
* Executions service.
|
|
53
53
|
* @module api/ExecutionsApi
|
|
54
|
-
* @version
|
|
54
|
+
* @version 1.0.0
|
|
55
55
|
*/
|
|
56
56
|
var ExecutionsApi = exports["default"] = /*#__PURE__*/function () {
|
|
57
57
|
/**
|
|
@@ -1432,6 +1432,56 @@ var ExecutionsApi = exports["default"] = /*#__PURE__*/function () {
|
|
|
1432
1432
|
return this.apiClient.callApi('/api/v1/{tenant}/executions/{executionId}/replay', 'POST', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null, callback);
|
|
1433
1433
|
}
|
|
1434
1434
|
|
|
1435
|
+
/**
|
|
1436
|
+
* Callback function to receive the result of the replayExecutionWithinputs operation.
|
|
1437
|
+
* @callback module:api/ExecutionsApi~replayExecutionWithinputsCallback
|
|
1438
|
+
* @param {String} error Error message, if any.
|
|
1439
|
+
* @param {module:model/Execution} data The data returned by the service call.
|
|
1440
|
+
* @param {String} response The complete HTTP response.
|
|
1441
|
+
*/
|
|
1442
|
+
|
|
1443
|
+
/**
|
|
1444
|
+
* Create a new execution from an old one and start it from a specified task run id
|
|
1445
|
+
* @param {String} executionId the original execution id to clone
|
|
1446
|
+
* @param {String} tenant
|
|
1447
|
+
* @param {Object} opts Optional parameters
|
|
1448
|
+
* @param {String} [taskRunId] The taskrun id
|
|
1449
|
+
* @param {Number} [revision] The flow revision to use for new execution
|
|
1450
|
+
* @param {String} [breakpoints] Set a list of breakpoints at specific tasks 'id.value', separated by a coma.
|
|
1451
|
+
* @param {module:api/ExecutionsApi~replayExecutionWithinputsCallback} callback The callback function, accepting three arguments: error, data, response
|
|
1452
|
+
* data is of type: {@link module:model/Execution}
|
|
1453
|
+
*/
|
|
1454
|
+
}, {
|
|
1455
|
+
key: "replayExecutionWithinputs",
|
|
1456
|
+
value: function replayExecutionWithinputs(executionId, tenant, opts, callback) {
|
|
1457
|
+
opts = opts || {};
|
|
1458
|
+
var postBody = null;
|
|
1459
|
+
// verify the required parameter 'executionId' is set
|
|
1460
|
+
if (executionId === undefined || executionId === null) {
|
|
1461
|
+
throw new Error("Missing the required parameter 'executionId' when calling replayExecutionWithinputs");
|
|
1462
|
+
}
|
|
1463
|
+
// verify the required parameter 'tenant' is set
|
|
1464
|
+
if (tenant === undefined || tenant === null) {
|
|
1465
|
+
throw new Error("Missing the required parameter 'tenant' when calling replayExecutionWithinputs");
|
|
1466
|
+
}
|
|
1467
|
+
var pathParams = {
|
|
1468
|
+
'executionId': executionId,
|
|
1469
|
+
'tenant': tenant
|
|
1470
|
+
};
|
|
1471
|
+
var queryParams = {
|
|
1472
|
+
'taskRunId': opts['taskRunId'],
|
|
1473
|
+
'revision': opts['revision'],
|
|
1474
|
+
'breakpoints': opts['breakpoints']
|
|
1475
|
+
};
|
|
1476
|
+
var headerParams = {};
|
|
1477
|
+
var formParams = {};
|
|
1478
|
+
var authNames = ['basicAuth', 'bearerAuth'];
|
|
1479
|
+
var contentTypes = ['multipart/form-data'];
|
|
1480
|
+
var accepts = ['application/json'];
|
|
1481
|
+
var returnType = _Execution["default"];
|
|
1482
|
+
return this.apiClient.callApi('/api/v1/{tenant}/executions/{executionId}/replay-with-inputs', 'POST', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null, callback);
|
|
1483
|
+
}
|
|
1484
|
+
|
|
1435
1485
|
/**
|
|
1436
1486
|
* Callback function to receive the result of the replayExecutionsByIds operation.
|
|
1437
1487
|
* @callback module:api/ExecutionsApi~replayExecutionsByIdsCallback
|
package/dist/api/FilesApi.js
CHANGED
package/dist/api/FlowsApi.js
CHANGED
package/dist/api/GroupsApi.js
CHANGED
|
@@ -31,7 +31,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
|
|
|
31
31
|
/**
|
|
32
32
|
* Invitations service.
|
|
33
33
|
* @module api/InvitationsApi
|
|
34
|
-
* @version
|
|
34
|
+
* @version 1.0.0
|
|
35
35
|
*/
|
|
36
36
|
var InvitationsApi = exports["default"] = /*#__PURE__*/function () {
|
|
37
37
|
/**
|
package/dist/api/KVApi.js
CHANGED
|
@@ -30,7 +30,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
|
|
|
30
30
|
/**
|
|
31
31
|
* KV service.
|
|
32
32
|
* @module api/KVApi
|
|
33
|
-
* @version
|
|
33
|
+
* @version 1.0.0
|
|
34
34
|
*/
|
|
35
35
|
var KVApi = exports["default"] = /*#__PURE__*/function () {
|
|
36
36
|
/**
|
|
@@ -226,6 +226,47 @@ var KVApi = exports["default"] = /*#__PURE__*/function () {
|
|
|
226
226
|
return this.apiClient.callApi('/api/v1/{tenant}/namespaces/{namespace}/kv', 'GET', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null, callback);
|
|
227
227
|
}
|
|
228
228
|
|
|
229
|
+
/**
|
|
230
|
+
* Callback function to receive the result of the listKeysWithInheritence operation.
|
|
231
|
+
* @callback module:api/KVApi~listKeysWithInheritenceCallback
|
|
232
|
+
* @param {String} error Error message, if any.
|
|
233
|
+
* @param {Array.<module:model/KVEntry>} data The data returned by the service call.
|
|
234
|
+
* @param {String} response The complete HTTP response.
|
|
235
|
+
*/
|
|
236
|
+
|
|
237
|
+
/**
|
|
238
|
+
* List all keys for a namespace and parent namespaces
|
|
239
|
+
* @param {String} namespace The namespace id
|
|
240
|
+
* @param {String} tenant
|
|
241
|
+
* @param {module:api/KVApi~listKeysWithInheritenceCallback} callback The callback function, accepting three arguments: error, data, response
|
|
242
|
+
* data is of type: {@link Array.<module:model/KVEntry>}
|
|
243
|
+
*/
|
|
244
|
+
}, {
|
|
245
|
+
key: "listKeysWithInheritence",
|
|
246
|
+
value: function listKeysWithInheritence(namespace, tenant, callback) {
|
|
247
|
+
var postBody = null;
|
|
248
|
+
// verify the required parameter 'namespace' is set
|
|
249
|
+
if (namespace === undefined || namespace === null) {
|
|
250
|
+
throw new Error("Missing the required parameter 'namespace' when calling listKeysWithInheritence");
|
|
251
|
+
}
|
|
252
|
+
// verify the required parameter 'tenant' is set
|
|
253
|
+
if (tenant === undefined || tenant === null) {
|
|
254
|
+
throw new Error("Missing the required parameter 'tenant' when calling listKeysWithInheritence");
|
|
255
|
+
}
|
|
256
|
+
var pathParams = {
|
|
257
|
+
'namespace': namespace,
|
|
258
|
+
'tenant': tenant
|
|
259
|
+
};
|
|
260
|
+
var queryParams = {};
|
|
261
|
+
var headerParams = {};
|
|
262
|
+
var formParams = {};
|
|
263
|
+
var authNames = ['basicAuth', 'bearerAuth'];
|
|
264
|
+
var contentTypes = [];
|
|
265
|
+
var accepts = ['application/json'];
|
|
266
|
+
var returnType = [_KVEntry["default"]];
|
|
267
|
+
return this.apiClient.callApi('/api/v1/{tenant}/namespaces/{namespace}/kv/inheritance', 'GET', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null, callback);
|
|
268
|
+
}
|
|
269
|
+
|
|
229
270
|
/**
|
|
230
271
|
* Callback function to receive the result of the setKeyValue operation.
|
|
231
272
|
* @callback module:api/KVApi~setKeyValueCallback
|
package/dist/api/LogsApi.js
CHANGED
|
@@ -26,7 +26,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
|
|
|
26
26
|
/**
|
|
27
27
|
* Maintenance service.
|
|
28
28
|
* @module api/MaintenanceApi
|
|
29
|
-
* @version
|
|
29
|
+
* @version 1.0.0
|
|
30
30
|
*/
|
|
31
31
|
var MaintenanceApi = exports["default"] = /*#__PURE__*/function () {
|
|
32
32
|
/**
|
|
@@ -45,7 +45,7 @@ var MaintenanceApi = exports["default"] = /*#__PURE__*/function () {
|
|
|
45
45
|
* Callback function to receive the result of the enterMaintenance operation.
|
|
46
46
|
* @callback module:api/MaintenanceApi~enterMaintenanceCallback
|
|
47
47
|
* @param {String} error Error message, if any.
|
|
48
|
-
* @param data
|
|
48
|
+
* @param {Object} data The data returned by the service call.
|
|
49
49
|
* @param {String} response The complete HTTP response.
|
|
50
50
|
*/
|
|
51
51
|
|
|
@@ -53,6 +53,7 @@ var MaintenanceApi = exports["default"] = /*#__PURE__*/function () {
|
|
|
53
53
|
* Enter cluster maintenance mode
|
|
54
54
|
* Requires a role with the INFRASTRUCTURE permission (Superadmin-only).
|
|
55
55
|
* @param {module:api/MaintenanceApi~enterMaintenanceCallback} callback The callback function, accepting three arguments: error, data, response
|
|
56
|
+
* data is of type: {@link Object}
|
|
56
57
|
*/
|
|
57
58
|
return _createClass(MaintenanceApi, [{
|
|
58
59
|
key: "enterMaintenance",
|
|
@@ -64,8 +65,8 @@ var MaintenanceApi = exports["default"] = /*#__PURE__*/function () {
|
|
|
64
65
|
var formParams = {};
|
|
65
66
|
var authNames = ['basicAuth', 'bearerAuth'];
|
|
66
67
|
var contentTypes = [];
|
|
67
|
-
var accepts = [];
|
|
68
|
-
var returnType =
|
|
68
|
+
var accepts = ['application/json'];
|
|
69
|
+
var returnType = Object;
|
|
69
70
|
return this.apiClient.callApi('/api/v1/instance/maintenance/enter', 'POST', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null, callback);
|
|
70
71
|
}
|
|
71
72
|
|
|
@@ -73,7 +74,7 @@ var MaintenanceApi = exports["default"] = /*#__PURE__*/function () {
|
|
|
73
74
|
* Callback function to receive the result of the exitMaintenance operation.
|
|
74
75
|
* @callback module:api/MaintenanceApi~exitMaintenanceCallback
|
|
75
76
|
* @param {String} error Error message, if any.
|
|
76
|
-
* @param data
|
|
77
|
+
* @param {Object} data The data returned by the service call.
|
|
77
78
|
* @param {String} response The complete HTTP response.
|
|
78
79
|
*/
|
|
79
80
|
|
|
@@ -81,6 +82,7 @@ var MaintenanceApi = exports["default"] = /*#__PURE__*/function () {
|
|
|
81
82
|
* Exit cluster maintenance mode
|
|
82
83
|
* Requires a role with the INFRASTRUCTURE permission (Superadmin-only).
|
|
83
84
|
* @param {module:api/MaintenanceApi~exitMaintenanceCallback} callback The callback function, accepting three arguments: error, data, response
|
|
85
|
+
* data is of type: {@link Object}
|
|
84
86
|
*/
|
|
85
87
|
}, {
|
|
86
88
|
key: "exitMaintenance",
|
|
@@ -92,8 +94,8 @@ var MaintenanceApi = exports["default"] = /*#__PURE__*/function () {
|
|
|
92
94
|
var formParams = {};
|
|
93
95
|
var authNames = ['basicAuth', 'bearerAuth'];
|
|
94
96
|
var contentTypes = [];
|
|
95
|
-
var accepts = [];
|
|
96
|
-
var returnType =
|
|
97
|
+
var accepts = ['application/json'];
|
|
98
|
+
var returnType = Object;
|
|
97
99
|
return this.apiClient.callApi('/api/v1/instance/maintenance/exit', 'POST', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null, callback);
|
|
98
100
|
}
|
|
99
101
|
}]);
|