@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/README.md
CHANGED
|
@@ -6,8 +6,8 @@ Endpoints designated as Superadmin-only are not tenant-scoped.
|
|
|
6
6
|
This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
|
7
7
|
|
|
8
8
|
- API version: v1
|
|
9
|
-
- Package version:
|
|
10
|
-
- Generator version: 7.
|
|
9
|
+
- Package version: 1.0.0
|
|
10
|
+
- Generator version: 7.16.0-SNAPSHOT
|
|
11
11
|
- Build package: org.openapitools.codegen.languages.JavascriptClientCodegen
|
|
12
12
|
|
|
13
13
|
## Installation
|
|
@@ -145,10 +145,13 @@ Class | Method | HTTP request | Description
|
|
|
145
145
|
*KestraIoKestraSdk.AppsApi* | [**searchApps**](docs/AppsApi.md#searchApps) | **GET** /api/v1/{tenant}/apps/search | Search for apps
|
|
146
146
|
*KestraIoKestraSdk.AppsApi* | [**searchAppsFromCatalog**](docs/AppsApi.md#searchAppsFromCatalog) | **GET** /api/v1/{tenant}/apps/catalog | Search for apps from catalog
|
|
147
147
|
*KestraIoKestraSdk.AppsApi* | [**updateApp**](docs/AppsApi.md#updateApp) | **PUT** /api/v1/{tenant}/apps/{uid} | Update an existing app
|
|
148
|
+
*KestraIoKestraSdk.AuditLogsApi* | [**exportAuditLogs**](docs/AuditLogsApi.md#exportAuditLogs) | **GET** /api/v1/{tenant}/auditlogs/export | Export all audit logs as a streamed CSV file
|
|
148
149
|
*KestraIoKestraSdk.AuditLogsApi* | [**findAuditLog**](docs/AuditLogsApi.md#findAuditLog) | **POST** /api/v1/{tenant}/auditlogs/find | Find a specific audit log
|
|
150
|
+
*KestraIoKestraSdk.AuditLogsApi* | [**getGlobalResourceDiffFromAuditLog**](docs/AuditLogsApi.md#getGlobalResourceDiffFromAuditLog) | **GET** /api/v1/auditlogs/{id}/diff | Retrieve the diff between audit logs from global resource like users
|
|
149
151
|
*KestraIoKestraSdk.AuditLogsApi* | [**getResourceDiffFromAuditLog**](docs/AuditLogsApi.md#getResourceDiffFromAuditLog) | **GET** /api/v1/{tenant}/auditlogs/{id}/diff | Retrieve the diff between audit logs
|
|
150
152
|
*KestraIoKestraSdk.AuditLogsApi* | [**listAuditLogFromResourceId**](docs/AuditLogsApi.md#listAuditLogFromResourceId) | **GET** /api/v1/{tenant}/auditlogs/history/{detailId} | Find all audit logs about a specific resource.
|
|
151
153
|
*KestraIoKestraSdk.AuditLogsApi* | [**searchAuditLogs**](docs/AuditLogsApi.md#searchAuditLogs) | **GET** /api/v1/{tenant}/auditlogs/search | Search for audit logs
|
|
154
|
+
*KestraIoKestraSdk.AuditLogsApi* | [**searchAuditLogsForAllTenants**](docs/AuditLogsApi.md#searchAuditLogsForAllTenants) | **GET** /api/v1/auditlogs/search | Search for audit logs across all tenants, required to be SuperAdmin
|
|
152
155
|
*KestraIoKestraSdk.AuthsApi* | [**createApiTokenForCurrentUser**](docs/AuthsApi.md#createApiTokenForCurrentUser) | **POST** /api/v1/me/api-tokens | Create API token for the authenticated user
|
|
153
156
|
*KestraIoKestraSdk.AuthsApi* | [**deleteApiTokenForCurrentUser**](docs/AuthsApi.md#deleteApiTokenForCurrentUser) | **DELETE** /api/v1/me/api-tokens/{tokenId} | Delete API token for the authenticated user
|
|
154
157
|
*KestraIoKestraSdk.AuthsApi* | [**getCurrentUser**](docs/AuthsApi.md#getCurrentUser) | **GET** /api/v1/me | Get details about the authenticated user
|
|
@@ -222,6 +225,7 @@ Class | Method | HTTP request | Description
|
|
|
222
225
|
*KestraIoKestraSdk.ExecutionsApi* | [**pauseExecutionsByQuery**](docs/ExecutionsApi.md#pauseExecutionsByQuery) | **POST** /api/v1/{tenant}/executions/pause/by-query | Pause executions filter by query parameters
|
|
223
226
|
*KestraIoKestraSdk.ExecutionsApi* | [**previewFileFromExecution**](docs/ExecutionsApi.md#previewFileFromExecution) | **GET** /api/v1/{tenant}/executions/{executionId}/file/preview | Get file preview for an execution
|
|
224
227
|
*KestraIoKestraSdk.ExecutionsApi* | [**replayExecution**](docs/ExecutionsApi.md#replayExecution) | **POST** /api/v1/{tenant}/executions/{executionId}/replay | Create a new execution from an old one and start it from a specified task run id
|
|
228
|
+
*KestraIoKestraSdk.ExecutionsApi* | [**replayExecutionWithinputs**](docs/ExecutionsApi.md#replayExecutionWithinputs) | **POST** /api/v1/{tenant}/executions/{executionId}/replay-with-inputs | Create a new execution from an old one and start it from a specified task run id
|
|
225
229
|
*KestraIoKestraSdk.ExecutionsApi* | [**replayExecutionsByIds**](docs/ExecutionsApi.md#replayExecutionsByIds) | **POST** /api/v1/{tenant}/executions/replay/by-ids | Create new executions from old ones. Keep the flow revision
|
|
226
230
|
*KestraIoKestraSdk.ExecutionsApi* | [**replayExecutionsByQuery**](docs/ExecutionsApi.md#replayExecutionsByQuery) | **POST** /api/v1/{tenant}/executions/replay/by-query | Create new executions from old ones filter by query parameters. Keep the flow revision
|
|
227
231
|
*KestraIoKestraSdk.ExecutionsApi* | [**restartExecution**](docs/ExecutionsApi.md#restartExecution) | **POST** /api/v1/{tenant}/executions/{executionId}/restart | Restart a new execution from an old one
|
|
@@ -310,6 +314,7 @@ Class | Method | HTTP request | Description
|
|
|
310
314
|
*KestraIoKestraSdk.KVApi* | [**deleteKeyValues**](docs/KVApi.md#deleteKeyValues) | **DELETE** /api/v1/{tenant}/namespaces/{namespace}/kv | Bulk-delete multiple key/value pairs from the given namespace.
|
|
311
315
|
*KestraIoKestraSdk.KVApi* | [**getKeyValue**](docs/KVApi.md#getKeyValue) | **GET** /api/v1/{tenant}/namespaces/{namespace}/kv/{key} | Get value for a key
|
|
312
316
|
*KestraIoKestraSdk.KVApi* | [**listKeys**](docs/KVApi.md#listKeys) | **GET** /api/v1/{tenant}/namespaces/{namespace}/kv | List all keys for a namespace
|
|
317
|
+
*KestraIoKestraSdk.KVApi* | [**listKeysWithInheritence**](docs/KVApi.md#listKeysWithInheritence) | **GET** /api/v1/{tenant}/namespaces/{namespace}/kv/inheritance | List all keys for a namespace and parent namespaces
|
|
313
318
|
*KestraIoKestraSdk.KVApi* | [**setKeyValue**](docs/KVApi.md#setKeyValue) | **PUT** /api/v1/{tenant}/namespaces/{namespace}/kv/{key} | Puts a key-value pair in store
|
|
314
319
|
*KestraIoKestraSdk.LogsApi* | [**deleteLogsFromExecution**](docs/LogsApi.md#deleteLogsFromExecution) | **DELETE** /api/v1/{tenant}/logs/{executionId} | Delete logs for a specific execution, taskrun or task
|
|
315
320
|
*KestraIoKestraSdk.LogsApi* | [**deleteLogsFromFlow**](docs/LogsApi.md#deleteLogsFromFlow) | **DELETE** /api/v1/{tenant}/logs/{namespace}/{flowId} | Delete logs for a specific execution, taskrun or task
|
|
@@ -340,7 +345,7 @@ Class | Method | HTTP request | Description
|
|
|
340
345
|
*KestraIoKestraSdk.NamespacesApi* | [**deleteNamespace**](docs/NamespacesApi.md#deleteNamespace) | **DELETE** /api/v1/{tenant}/namespaces/{id} | Delete a namespace
|
|
341
346
|
*KestraIoKestraSdk.NamespacesApi* | [**deleteSecret**](docs/NamespacesApi.md#deleteSecret) | **DELETE** /api/v1/{tenant}/namespaces/{namespace}/secrets/{key} | Delete a secret for a namespace
|
|
342
347
|
*KestraIoKestraSdk.NamespacesApi* | [**getInheritedSecrets**](docs/NamespacesApi.md#getInheritedSecrets) | **GET** /api/v1/{tenant}/namespaces/{namespace}/inherited-secrets | List inherited secrets
|
|
343
|
-
*KestraIoKestraSdk.NamespacesApi* | [**getNamespace**](docs/NamespacesApi.md#getNamespace) | **GET** /api/v1/{tenant}/namespaces/{id} |
|
|
348
|
+
*KestraIoKestraSdk.NamespacesApi* | [**getNamespace**](docs/NamespacesApi.md#getNamespace) | **GET** /api/v1/{tenant}/namespaces/{id} | Get a namespace
|
|
344
349
|
*KestraIoKestraSdk.NamespacesApi* | [**inheritedPluginDefaults**](docs/NamespacesApi.md#inheritedPluginDefaults) | **GET** /api/v1/{tenant}/namespaces/{id}/inherited-plugindefaults | List inherited plugin defaults
|
|
345
350
|
*KestraIoKestraSdk.NamespacesApi* | [**inheritedVariables**](docs/NamespacesApi.md#inheritedVariables) | **GET** /api/v1/{tenant}/namespaces/{id}/inherited-variables | List inherited variables
|
|
346
351
|
*KestraIoKestraSdk.NamespacesApi* | [**listNamespaceSecrets**](docs/NamespacesApi.md#listNamespaceSecrets) | **GET** /api/v1/{tenant}/namespaces/{namespace}/secrets | Get secrets for a namespace
|
|
@@ -362,6 +367,8 @@ Class | Method | HTTP request | Description
|
|
|
362
367
|
*KestraIoKestraSdk.PluginsApi* | [**getVersionedPluginDetailsFromVersion**](docs/PluginsApi.md#getVersionedPluginDetailsFromVersion) | **GET** /api/v1/instance/versioned-plugins/{groupId}/{artifactId}/{version} | Retrieve details of a specific plugin artifact version
|
|
363
368
|
*KestraIoKestraSdk.PluginsApi* | [**installVersionedPlugins**](docs/PluginsApi.md#installVersionedPlugins) | **POST** /api/v1/instance/versioned-plugins/install | Install specified plugin artifacts
|
|
364
369
|
*KestraIoKestraSdk.PluginsApi* | [**listAvailableVersionedPlugins**](docs/PluginsApi.md#listAvailableVersionedPlugins) | **GET** /api/v1/instance/versioned-plugins/available | List available plugin artifacts
|
|
370
|
+
*KestraIoKestraSdk.PluginsApi* | [**listAvailableVersionedPluginsForSecretManager**](docs/PluginsApi.md#listAvailableVersionedPluginsForSecretManager) | **GET** /api/v1/instance/versioned-plugins/available/secrets-managers | List available plugin artifacts for Kestra Secret Manager
|
|
371
|
+
*KestraIoKestraSdk.PluginsApi* | [**listAvailableVersionedPluginsForStorage**](docs/PluginsApi.md#listAvailableVersionedPluginsForStorage) | **GET** /api/v1/instance/versioned-plugins/available/storages | List available plugin artifacts for Kestra Internal Storage
|
|
365
372
|
*KestraIoKestraSdk.PluginsApi* | [**listPlugins**](docs/PluginsApi.md#listPlugins) | **GET** /api/v1/plugins | Get list of plugins
|
|
366
373
|
*KestraIoKestraSdk.PluginsApi* | [**listVersionedPlugin**](docs/PluginsApi.md#listVersionedPlugin) | **GET** /api/v1/instance/versioned-plugins | List installed plugin artifacts
|
|
367
374
|
*KestraIoKestraSdk.PluginsApi* | [**resolveVersionedPlugins**](docs/PluginsApi.md#resolveVersionedPlugins) | **POST** /api/v1/instance/versioned-plugins/resolve | Resolve versions for specified plugin artifacts
|
|
@@ -399,9 +406,15 @@ Class | Method | HTTP request | Description
|
|
|
399
406
|
*KestraIoKestraSdk.SecurityIntegrationsApi* | [**enableSecurityIntegration**](docs/SecurityIntegrationsApi.md#enableSecurityIntegration) | **POST** /api/v1/{tenant}/security-integrations/{id}/enable | Enable a security integration
|
|
400
407
|
*KestraIoKestraSdk.SecurityIntegrationsApi* | [**getSecurityIntegration**](docs/SecurityIntegrationsApi.md#getSecurityIntegration) | **GET** /api/v1/{tenant}/security-integrations/{id} | Retrieve a security integration
|
|
401
408
|
*KestraIoKestraSdk.SecurityIntegrationsApi* | [**listSecurityIntegrations**](docs/SecurityIntegrationsApi.md#listSecurityIntegrations) | **GET** /api/v1/{tenant}/security-integrations | List all security integrations
|
|
402
|
-
*KestraIoKestraSdk.ServiceAccountApi* | [**createServiceAccount**](docs/ServiceAccountApi.md#createServiceAccount) | **POST** /api/v1/
|
|
403
|
-
*KestraIoKestraSdk.ServiceAccountApi* | [**
|
|
404
|
-
*KestraIoKestraSdk.ServiceAccountApi* | [**
|
|
409
|
+
*KestraIoKestraSdk.ServiceAccountApi* | [**createServiceAccount**](docs/ServiceAccountApi.md#createServiceAccount) | **POST** /api/v1/service-accounts | Create a service account
|
|
410
|
+
*KestraIoKestraSdk.ServiceAccountApi* | [**createServiceAccountForTenant**](docs/ServiceAccountApi.md#createServiceAccountForTenant) | **POST** /api/v1/{tenant}/service-accounts | Create a service account for the given tenant
|
|
411
|
+
*KestraIoKestraSdk.ServiceAccountApi* | [**deleteServiceAccount**](docs/ServiceAccountApi.md#deleteServiceAccount) | **DELETE** /api/v1/service-accounts/{id} | Delete a service account
|
|
412
|
+
*KestraIoKestraSdk.ServiceAccountApi* | [**deleteServiceAccountForTenant**](docs/ServiceAccountApi.md#deleteServiceAccountForTenant) | **DELETE** /api/v1/{tenant}/service-accounts/{id} | Delete a service account
|
|
413
|
+
*KestraIoKestraSdk.ServiceAccountApi* | [**getServiceAccount**](docs/ServiceAccountApi.md#getServiceAccount) | **GET** /api/v1/service-accounts/{id} | Get a service account
|
|
414
|
+
*KestraIoKestraSdk.ServiceAccountApi* | [**getServiceAccountForTenant**](docs/ServiceAccountApi.md#getServiceAccountForTenant) | **GET** /api/v1/{tenant}/service-accounts/{id} | Retrieve a service account
|
|
415
|
+
*KestraIoKestraSdk.ServiceAccountApi* | [**listServiceAccounts**](docs/ServiceAccountApi.md#listServiceAccounts) | **GET** /api/v1/service-accounts | List service accounts. Superadmin-only.
|
|
416
|
+
*KestraIoKestraSdk.ServiceAccountApi* | [**patchServiceAccountDetails**](docs/ServiceAccountApi.md#patchServiceAccountDetails) | **PATCH** /api/v1/service-accounts/{id} | Update service account details
|
|
417
|
+
*KestraIoKestraSdk.ServiceAccountApi* | [**patchServiceAccountSuperAdmin**](docs/ServiceAccountApi.md#patchServiceAccountSuperAdmin) | **PATCH** /api/v1/service-accounts/{id}/superadmin | Update service account superadmin privileges
|
|
405
418
|
*KestraIoKestraSdk.ServiceAccountApi* | [**updateServiceAccount**](docs/ServiceAccountApi.md#updateServiceAccount) | **PUT** /api/v1/{tenant}/service-accounts/{id} | Update a user service account
|
|
406
419
|
*KestraIoKestraSdk.ServicesApi* | [**getActiveServices**](docs/ServicesApi.md#getActiveServices) | **GET** /api/v1/instance/services/active | List all active services
|
|
407
420
|
*KestraIoKestraSdk.ServicesApi* | [**getService**](docs/ServicesApi.md#getService) | **GET** /api/v1/instance/services/{id} | Retrieve details of a specific service
|
|
@@ -427,7 +440,9 @@ Class | Method | HTTP request | Description
|
|
|
427
440
|
*KestraIoKestraSdk.TestSuitesApi* | [**getTestSuite**](docs/TestSuitesApi.md#getTestSuite) | **GET** /api/v1/{tenant}/tests/{namespace}/{id} | Retrieve a test
|
|
428
441
|
*KestraIoKestraSdk.TestSuitesApi* | [**getTestsLastResult**](docs/TestSuitesApi.md#getTestsLastResult) | **POST** /api/v1/{tenant}/tests/results/search/last | Get tests last result
|
|
429
442
|
*KestraIoKestraSdk.TestSuitesApi* | [**runTestSuite**](docs/TestSuitesApi.md#runTestSuite) | **POST** /api/v1/{tenant}/tests/{namespace}/{id}/run | Run a full test
|
|
443
|
+
*KestraIoKestraSdk.TestSuitesApi* | [**runTestSuitesByQuery**](docs/TestSuitesApi.md#runTestSuitesByQuery) | **POST** /api/v1/{tenant}/tests/run | Run multiple TestSuites by query
|
|
430
444
|
*KestraIoKestraSdk.TestSuitesApi* | [**searchTestSuites**](docs/TestSuitesApi.md#searchTestSuites) | **GET** /api/v1/{tenant}/tests/search | Search for tests
|
|
445
|
+
*KestraIoKestraSdk.TestSuitesApi* | [**searchTestSuitesResults**](docs/TestSuitesApi.md#searchTestSuitesResults) | **GET** /api/v1/{tenant}/tests/results/search | Search for tests results
|
|
431
446
|
*KestraIoKestraSdk.TestSuitesApi* | [**updateTestSuite**](docs/TestSuitesApi.md#updateTestSuite) | **PUT** /api/v1/{tenant}/tests/{namespace}/{id} | Update a test from YAML source
|
|
432
447
|
*KestraIoKestraSdk.TestSuitesApi* | [**validateTestSuite**](docs/TestSuitesApi.md#validateTestSuite) | **POST** /api/v1/{tenant}/tests/validate | Validate a test
|
|
433
448
|
*KestraIoKestraSdk.TriggersApi* | [**deleteBackfill**](docs/TriggersApi.md#deleteBackfill) | **POST** /api/v1/{tenant}/triggers/backfill/delete | Delete a backfill
|
|
@@ -449,18 +464,21 @@ Class | Method | HTTP request | Description
|
|
|
449
464
|
*KestraIoKestraSdk.TriggersApi* | [**unpauseBackfillByQuery**](docs/TriggersApi.md#unpauseBackfillByQuery) | **POST** /api/v1/{tenant}/triggers/backfill/unpause/by-query | Unpause backfill for given triggers
|
|
450
465
|
*KestraIoKestraSdk.TriggersApi* | [**updateTrigger**](docs/TriggersApi.md#updateTrigger) | **PUT** /api/v1/{tenant}/triggers | Update a trigger
|
|
451
466
|
*KestraIoKestraSdk.UsersApi* | [**autocompleteUsers**](docs/UsersApi.md#autocompleteUsers) | **POST** /api/v1/{tenant}/tenant-access/autocomplete | List users for autocomplete
|
|
452
|
-
*KestraIoKestraSdk.UsersApi* | [**createApiTokensForUser**](docs/UsersApi.md#createApiTokensForUser) | **POST** /api/v1/
|
|
453
|
-
*KestraIoKestraSdk.UsersApi* | [**createApiTokensForUser1**](docs/UsersApi.md#createApiTokensForUser1) | **POST** /api/v1/
|
|
467
|
+
*KestraIoKestraSdk.UsersApi* | [**createApiTokensForUser**](docs/UsersApi.md#createApiTokensForUser) | **POST** /api/v1/service-accounts/{id}/api-tokens | Create new API Token for a specific user
|
|
468
|
+
*KestraIoKestraSdk.UsersApi* | [**createApiTokensForUser1**](docs/UsersApi.md#createApiTokensForUser1) | **POST** /api/v1/users/{id}/api-tokens | Create new API Token for a specific user
|
|
469
|
+
*KestraIoKestraSdk.UsersApi* | [**createApiTokensForUserWithTenant**](docs/UsersApi.md#createApiTokensForUserWithTenant) | **POST** /api/v1/{tenant}/service-accounts/{id}/api-tokens | Create new API Token for a specific user
|
|
454
470
|
*KestraIoKestraSdk.UsersApi* | [**createUser**](docs/UsersApi.md#createUser) | **POST** /api/v1/users | Create a new user account
|
|
455
|
-
*KestraIoKestraSdk.UsersApi* | [**deleteApiToken**](docs/UsersApi.md#deleteApiToken) | **DELETE** /api/v1/
|
|
456
|
-
*KestraIoKestraSdk.UsersApi* | [**deleteApiToken1**](docs/UsersApi.md#deleteApiToken1) | **DELETE** /api/v1/
|
|
471
|
+
*KestraIoKestraSdk.UsersApi* | [**deleteApiToken**](docs/UsersApi.md#deleteApiToken) | **DELETE** /api/v1/service-accounts/{id}/api-tokens/{tokenId} | Delete an API Token for specific user and token id
|
|
472
|
+
*KestraIoKestraSdk.UsersApi* | [**deleteApiToken1**](docs/UsersApi.md#deleteApiToken1) | **DELETE** /api/v1/users/{id}/api-tokens/{tokenId} | Delete an API Token for specific user and token id
|
|
473
|
+
*KestraIoKestraSdk.UsersApi* | [**deleteApiTokenWithTenant**](docs/UsersApi.md#deleteApiTokenWithTenant) | **DELETE** /api/v1/{tenant}/service-accounts/{id}/api-tokens/{tokenId} | Delete an API Token for specific user and token id
|
|
457
474
|
*KestraIoKestraSdk.UsersApi* | [**deleteRefreshToken**](docs/UsersApi.md#deleteRefreshToken) | **DELETE** /api/v1/users/{id}/refresh-token | Delete a user refresh token
|
|
458
475
|
*KestraIoKestraSdk.UsersApi* | [**deleteUser**](docs/UsersApi.md#deleteUser) | **DELETE** /api/v1/users/{id} | Delete a user
|
|
459
476
|
*KestraIoKestraSdk.UsersApi* | [**deleteUserAuthMethod**](docs/UsersApi.md#deleteUserAuthMethod) | **DELETE** /api/v1/users/{id}/auths/{auth} | Update user password
|
|
460
477
|
*KestraIoKestraSdk.UsersApi* | [**getUser**](docs/UsersApi.md#getUser) | **GET** /api/v1/users/{id} | Get a user
|
|
461
478
|
*KestraIoKestraSdk.UsersApi* | [**impersonate**](docs/UsersApi.md#impersonate) | **POST** /api/v1/users/{id}/impersonate | Impersonate a user
|
|
462
|
-
*KestraIoKestraSdk.UsersApi* | [**listApiTokens**](docs/UsersApi.md#listApiTokens) | **GET** /api/v1/
|
|
463
|
-
*KestraIoKestraSdk.UsersApi* | [**listApiTokens1**](docs/UsersApi.md#listApiTokens1) | **GET** /api/v1/
|
|
479
|
+
*KestraIoKestraSdk.UsersApi* | [**listApiTokens**](docs/UsersApi.md#listApiTokens) | **GET** /api/v1/service-accounts/{id}/api-tokens | List API tokens for a specific user
|
|
480
|
+
*KestraIoKestraSdk.UsersApi* | [**listApiTokens1**](docs/UsersApi.md#listApiTokens1) | **GET** /api/v1/users/{id}/api-tokens | List API tokens for a specific user
|
|
481
|
+
*KestraIoKestraSdk.UsersApi* | [**listApiTokensWithTenant**](docs/UsersApi.md#listApiTokensWithTenant) | **GET** /api/v1/{tenant}/service-accounts/{id}/api-tokens | List API tokens for a specific user
|
|
464
482
|
*KestraIoKestraSdk.UsersApi* | [**listUsers**](docs/UsersApi.md#listUsers) | **GET** /api/v1/users | Retrieve users
|
|
465
483
|
*KestraIoKestraSdk.UsersApi* | [**patchUser**](docs/UsersApi.md#patchUser) | **PATCH** /api/v1/users/{id} | Update user details
|
|
466
484
|
*KestraIoKestraSdk.UsersApi* | [**patchUserDemo**](docs/UsersApi.md#patchUserDemo) | **PATCH** /api/v1/users/{id}/restricted | Update user demo
|
|
@@ -492,6 +510,7 @@ Class | Method | HTTP request | Description
|
|
|
492
510
|
- [KestraIoKestraSdk.ApiAutocomplete](docs/ApiAutocomplete.md)
|
|
493
511
|
- [KestraIoKestraSdk.ApiGroupSummary](docs/ApiGroupSummary.md)
|
|
494
512
|
- [KestraIoKestraSdk.ApiIds](docs/ApiIds.md)
|
|
513
|
+
- [KestraIoKestraSdk.ApiPatchSuperAdminRequest](docs/ApiPatchSuperAdminRequest.md)
|
|
495
514
|
- [KestraIoKestraSdk.ApiRoleSummary](docs/ApiRoleSummary.md)
|
|
496
515
|
- [KestraIoKestraSdk.ApiSecretListResponse](docs/ApiSecretListResponse.md)
|
|
497
516
|
- [KestraIoKestraSdk.ApiSecretMeta](docs/ApiSecretMeta.md)
|
|
@@ -499,6 +518,7 @@ Class | Method | HTTP request | Description
|
|
|
499
518
|
- [KestraIoKestraSdk.ApiSecretTag](docs/ApiSecretTag.md)
|
|
500
519
|
- [KestraIoKestraSdk.ApiSecretValue](docs/ApiSecretValue.md)
|
|
501
520
|
- [KestraIoKestraSdk.ApiTenant](docs/ApiTenant.md)
|
|
521
|
+
- [KestraIoKestraSdk.ApiTenantSummary](docs/ApiTenantSummary.md)
|
|
502
522
|
- [KestraIoKestraSdk.ApiUser](docs/ApiUser.md)
|
|
503
523
|
- [KestraIoKestraSdk.AppResponse](docs/AppResponse.md)
|
|
504
524
|
- [KestraIoKestraSdk.AppResponseUILayout](docs/AppResponseUILayout.md)
|
|
@@ -514,9 +534,9 @@ Class | Method | HTTP request | Description
|
|
|
514
534
|
- [KestraIoKestraSdk.AssertionRunError](docs/AssertionRunError.md)
|
|
515
535
|
- [KestraIoKestraSdk.AttributeReference](docs/AttributeReference.md)
|
|
516
536
|
- [KestraIoKestraSdk.AuditLog](docs/AuditLog.md)
|
|
537
|
+
- [KestraIoKestraSdk.AuditLogControllerApiAuditLogItem](docs/AuditLogControllerApiAuditLogItem.md)
|
|
517
538
|
- [KestraIoKestraSdk.AuditLogControllerAuditLogDiff](docs/AuditLogControllerAuditLogDiff.md)
|
|
518
539
|
- [KestraIoKestraSdk.AuditLogControllerAuditLogOption](docs/AuditLogControllerAuditLogOption.md)
|
|
519
|
-
- [KestraIoKestraSdk.AuditLogControllerAuditLogWithUser](docs/AuditLogControllerAuditLogWithUser.md)
|
|
520
540
|
- [KestraIoKestraSdk.AuditLogControllerFindRequest](docs/AuditLogControllerFindRequest.md)
|
|
521
541
|
- [KestraIoKestraSdk.AuditLogDetail](docs/AuditLogDetail.md)
|
|
522
542
|
- [KestraIoKestraSdk.AuthControllerAuth](docs/AuthControllerAuth.md)
|
|
@@ -546,7 +566,6 @@ Class | Method | HTTP request | Description
|
|
|
546
566
|
- [KestraIoKestraSdk.Concurrency](docs/Concurrency.md)
|
|
547
567
|
- [KestraIoKestraSdk.ConcurrencyBehavior](docs/ConcurrencyBehavior.md)
|
|
548
568
|
- [KestraIoKestraSdk.Condition](docs/Condition.md)
|
|
549
|
-
- [KestraIoKestraSdk.ConfigurationUsage](docs/ConfigurationUsage.md)
|
|
550
569
|
- [KestraIoKestraSdk.ConversionServiceProvider](docs/ConversionServiceProvider.md)
|
|
551
570
|
- [KestraIoKestraSdk.ConvertibleMultiValuesString](docs/ConvertibleMultiValuesString.md)
|
|
552
571
|
- [KestraIoKestraSdk.ConvertibleValuesListString](docs/ConvertibleValuesListString.md)
|
|
@@ -554,7 +573,6 @@ Class | Method | HTTP request | Description
|
|
|
554
573
|
- [KestraIoKestraSdk.CreateApiTokenResponse](docs/CreateApiTokenResponse.md)
|
|
555
574
|
- [KestraIoKestraSdk.CreateSecurityIntegrationRequest](docs/CreateSecurityIntegrationRequest.md)
|
|
556
575
|
- [KestraIoKestraSdk.CrudEventType](docs/CrudEventType.md)
|
|
557
|
-
- [KestraIoKestraSdk.CustomLink](docs/CustomLink.md)
|
|
558
576
|
- [KestraIoKestraSdk.DailyExecutionStatistics](docs/DailyExecutionStatistics.md)
|
|
559
577
|
- [KestraIoKestraSdk.DailyExecutionStatisticsDuration](docs/DailyExecutionStatisticsDuration.md)
|
|
560
578
|
- [KestraIoKestraSdk.DailyExecutionStatisticsExecutionCounts](docs/DailyExecutionStatisticsExecutionCounts.md)
|
|
@@ -564,6 +582,7 @@ Class | Method | HTTP request | Description
|
|
|
564
582
|
- [KestraIoKestraSdk.DeletedInterface](docs/DeletedInterface.md)
|
|
565
583
|
- [KestraIoKestraSdk.DependsOn](docs/DependsOn.md)
|
|
566
584
|
- [KestraIoKestraSdk.DocumentationWithSchema](docs/DocumentationWithSchema.md)
|
|
585
|
+
- [KestraIoKestraSdk.EditionProviderEdition](docs/EditionProviderEdition.md)
|
|
567
586
|
- [KestraIoKestraSdk.Email](docs/Email.md)
|
|
568
587
|
- [KestraIoKestraSdk.EventAppResponse](docs/EventAppResponse.md)
|
|
569
588
|
- [KestraIoKestraSdk.EventExecution](docs/EventExecution.md)
|
|
@@ -614,10 +633,6 @@ Class | Method | HTTP request | Description
|
|
|
614
633
|
- [KestraIoKestraSdk.GroupIdentifier](docs/GroupIdentifier.md)
|
|
615
634
|
- [KestraIoKestraSdk.GroupIdentifierMembership](docs/GroupIdentifierMembership.md)
|
|
616
635
|
- [KestraIoKestraSdk.GroupUsage](docs/GroupUsage.md)
|
|
617
|
-
- [KestraIoKestraSdk.HostUsage](docs/HostUsage.md)
|
|
618
|
-
- [KestraIoKestraSdk.HostUsageHardware](docs/HostUsageHardware.md)
|
|
619
|
-
- [KestraIoKestraSdk.HostUsageJvm](docs/HostUsageJvm.md)
|
|
620
|
-
- [KestraIoKestraSdk.HostUsageOs](docs/HostUsageOs.md)
|
|
621
636
|
- [KestraIoKestraSdk.HttpParameters](docs/HttpParameters.md)
|
|
622
637
|
- [KestraIoKestraSdk.IAMBindingControllerApiBindingDetail](docs/IAMBindingControllerApiBindingDetail.md)
|
|
623
638
|
- [KestraIoKestraSdk.IAMBindingControllerApiBindingGroup](docs/IAMBindingControllerApiBindingGroup.md)
|
|
@@ -635,7 +650,10 @@ Class | Method | HTTP request | Description
|
|
|
635
650
|
- [KestraIoKestraSdk.IAMRoleControllerApiRoleCreateOrUpdateRequest](docs/IAMRoleControllerApiRoleCreateOrUpdateRequest.md)
|
|
636
651
|
- [KestraIoKestraSdk.IAMRoleControllerApiRoleCreateOrUpdateRequestPermissions](docs/IAMRoleControllerApiRoleCreateOrUpdateRequestPermissions.md)
|
|
637
652
|
- [KestraIoKestraSdk.IAMRoleControllerApiRoleDetail](docs/IAMRoleControllerApiRoleDetail.md)
|
|
653
|
+
- [KestraIoKestraSdk.IAMServiceAccountControllerApiCreateServiceAccountRequest](docs/IAMServiceAccountControllerApiCreateServiceAccountRequest.md)
|
|
638
654
|
- [KestraIoKestraSdk.IAMServiceAccountControllerApiGroup](docs/IAMServiceAccountControllerApiGroup.md)
|
|
655
|
+
- [KestraIoKestraSdk.IAMServiceAccountControllerApiPatchServiceAccountRequest](docs/IAMServiceAccountControllerApiPatchServiceAccountRequest.md)
|
|
656
|
+
- [KestraIoKestraSdk.IAMServiceAccountControllerApiServiceAccountDetail](docs/IAMServiceAccountControllerApiServiceAccountDetail.md)
|
|
639
657
|
- [KestraIoKestraSdk.IAMServiceAccountControllerApiServiceAccountRequest](docs/IAMServiceAccountControllerApiServiceAccountRequest.md)
|
|
640
658
|
- [KestraIoKestraSdk.IAMServiceAccountControllerApiServiceAccountResponse](docs/IAMServiceAccountControllerApiServiceAccountResponse.md)
|
|
641
659
|
- [KestraIoKestraSdk.IAMTenantAccessControllerApiAuthentication](docs/IAMTenantAccessControllerApiAuthentication.md)
|
|
@@ -649,9 +667,7 @@ Class | Method | HTTP request | Description
|
|
|
649
667
|
- [KestraIoKestraSdk.IAMUserControllerApiCreateOrUpdateUserRequest](docs/IAMUserControllerApiCreateOrUpdateUserRequest.md)
|
|
650
668
|
- [KestraIoKestraSdk.IAMUserControllerApiGroup](docs/IAMUserControllerApiGroup.md)
|
|
651
669
|
- [KestraIoKestraSdk.IAMUserControllerApiPatchRestrictedRequest](docs/IAMUserControllerApiPatchRestrictedRequest.md)
|
|
652
|
-
- [KestraIoKestraSdk.IAMUserControllerApiPatchSuperAdminRequest](docs/IAMUserControllerApiPatchSuperAdminRequest.md)
|
|
653
670
|
- [KestraIoKestraSdk.IAMUserControllerApiPatchUserPasswordRequest](docs/IAMUserControllerApiPatchUserPasswordRequest.md)
|
|
654
|
-
- [KestraIoKestraSdk.IAMUserControllerApiTenant](docs/IAMUserControllerApiTenant.md)
|
|
655
671
|
- [KestraIoKestraSdk.IAMUserControllerApiUser](docs/IAMUserControllerApiUser.md)
|
|
656
672
|
- [KestraIoKestraSdk.IAMUserControllerApiUserAuth](docs/IAMUserControllerApiUserAuth.md)
|
|
657
673
|
- [KestraIoKestraSdk.IAMUserControllerApiUserSummary](docs/IAMUserControllerApiUserSummary.md)
|
|
@@ -687,6 +703,7 @@ Class | Method | HTTP request | Description
|
|
|
687
703
|
- [KestraIoKestraSdk.KVEntry](docs/KVEntry.md)
|
|
688
704
|
- [KestraIoKestraSdk.KVType](docs/KVType.md)
|
|
689
705
|
- [KestraIoKestraSdk.Label](docs/Label.md)
|
|
706
|
+
- [KestraIoKestraSdk.LeftSidebarConfiguration](docs/LeftSidebarConfiguration.md)
|
|
690
707
|
- [KestraIoKestraSdk.Level](docs/Level.md)
|
|
691
708
|
- [KestraIoKestraSdk.Listener](docs/Listener.md)
|
|
692
709
|
- [KestraIoKestraSdk.LogEntry](docs/LogEntry.md)
|
|
@@ -702,6 +719,7 @@ Class | Method | HTTP request | Description
|
|
|
702
719
|
- [KestraIoKestraSdk.MetricAggregations](docs/MetricAggregations.md)
|
|
703
720
|
- [KestraIoKestraSdk.MetricEntry](docs/MetricEntry.md)
|
|
704
721
|
- [KestraIoKestraSdk.MetricTag](docs/MetricTag.md)
|
|
722
|
+
- [KestraIoKestraSdk.MiscControllerApiUsage](docs/MiscControllerApiUsage.md)
|
|
705
723
|
- [KestraIoKestraSdk.MiscControllerBasicAuthCredentials](docs/MiscControllerBasicAuthCredentials.md)
|
|
706
724
|
- [KestraIoKestraSdk.MiscControllerConfiguration](docs/MiscControllerConfiguration.md)
|
|
707
725
|
- [KestraIoKestraSdk.MiscControllerEEConfiguration](docs/MiscControllerEEConfiguration.md)
|
|
@@ -715,15 +733,13 @@ Class | Method | HTTP request | Description
|
|
|
715
733
|
- [KestraIoKestraSdk.NamespaceAllowedNamespace](docs/NamespaceAllowedNamespace.md)
|
|
716
734
|
- [KestraIoKestraSdk.NamespaceAllowedTrigger](docs/NamespaceAllowedTrigger.md)
|
|
717
735
|
- [KestraIoKestraSdk.NamespaceLight](docs/NamespaceLight.md)
|
|
718
|
-
- [KestraIoKestraSdk.NamespaceUsage](docs/NamespaceUsage.md)
|
|
719
|
-
- [KestraIoKestraSdk.NamespaceWithDisabled](docs/NamespaceWithDisabled.md)
|
|
720
736
|
- [KestraIoKestraSdk.Output](docs/Output.md)
|
|
721
737
|
- [KestraIoKestraSdk.PageRequest](docs/PageRequest.md)
|
|
722
738
|
- [KestraIoKestraSdk.PagedResultsApiGroupSummary](docs/PagedResultsApiGroupSummary.md)
|
|
723
739
|
- [KestraIoKestraSdk.PagedResultsApiRoleSummary](docs/PagedResultsApiRoleSummary.md)
|
|
724
740
|
- [KestraIoKestraSdk.PagedResultsAppsControllerApiApp](docs/PagedResultsAppsControllerApiApp.md)
|
|
725
741
|
- [KestraIoKestraSdk.PagedResultsAppsControllerApiAppCatalogItem](docs/PagedResultsAppsControllerApiAppCatalogItem.md)
|
|
726
|
-
- [KestraIoKestraSdk.
|
|
742
|
+
- [KestraIoKestraSdk.PagedResultsAuditLogControllerApiAuditLogItem](docs/PagedResultsAuditLogControllerApiAuditLogItem.md)
|
|
727
743
|
- [KestraIoKestraSdk.PagedResultsBlueprint](docs/PagedResultsBlueprint.md)
|
|
728
744
|
- [KestraIoKestraSdk.PagedResultsBlueprintControllerApiBlueprintItem](docs/PagedResultsBlueprintControllerApiBlueprintItem.md)
|
|
729
745
|
- [KestraIoKestraSdk.PagedResultsDashboard](docs/PagedResultsDashboard.md)
|
|
@@ -732,6 +748,7 @@ Class | Method | HTTP request | Description
|
|
|
732
748
|
- [KestraIoKestraSdk.PagedResultsIAMBindingControllerApiBindingDetail](docs/PagedResultsIAMBindingControllerApiBindingDetail.md)
|
|
733
749
|
- [KestraIoKestraSdk.PagedResultsIAMGroupControllerApiGroupMember](docs/PagedResultsIAMGroupControllerApiGroupMember.md)
|
|
734
750
|
- [KestraIoKestraSdk.PagedResultsIAMInvitationControllerApiInvitationDetail](docs/PagedResultsIAMInvitationControllerApiInvitationDetail.md)
|
|
751
|
+
- [KestraIoKestraSdk.PagedResultsIAMServiceAccountControllerApiServiceAccountDetail](docs/PagedResultsIAMServiceAccountControllerApiServiceAccountDetail.md)
|
|
735
752
|
- [KestraIoKestraSdk.PagedResultsIAMTenantAccessControllerApiUserTenantAccess](docs/PagedResultsIAMTenantAccessControllerApiUserTenantAccess.md)
|
|
736
753
|
- [KestraIoKestraSdk.PagedResultsIAMUserControllerApiUserSummary](docs/PagedResultsIAMUserControllerApiUserSummary.md)
|
|
737
754
|
- [KestraIoKestraSdk.PagedResultsInstanceControllerApiPluginArtifact](docs/PagedResultsInstanceControllerApiPluginArtifact.md)
|
|
@@ -739,11 +756,12 @@ Class | Method | HTTP request | Description
|
|
|
739
756
|
- [KestraIoKestraSdk.PagedResultsLogEntry](docs/PagedResultsLogEntry.md)
|
|
740
757
|
- [KestraIoKestraSdk.PagedResultsMapStringObject](docs/PagedResultsMapStringObject.md)
|
|
741
758
|
- [KestraIoKestraSdk.PagedResultsMetricEntry](docs/PagedResultsMetricEntry.md)
|
|
742
|
-
- [KestraIoKestraSdk.
|
|
759
|
+
- [KestraIoKestraSdk.PagedResultsNamespace](docs/PagedResultsNamespace.md)
|
|
743
760
|
- [KestraIoKestraSdk.PagedResultsSearchResultFlow](docs/PagedResultsSearchResultFlow.md)
|
|
744
761
|
- [KestraIoKestraSdk.PagedResultsTaskRun](docs/PagedResultsTaskRun.md)
|
|
745
762
|
- [KestraIoKestraSdk.PagedResultsTenant](docs/PagedResultsTenant.md)
|
|
746
763
|
- [KestraIoKestraSdk.PagedResultsTestSuite](docs/PagedResultsTestSuite.md)
|
|
764
|
+
- [KestraIoKestraSdk.PagedResultsTestSuiteRunResult](docs/PagedResultsTestSuiteRunResult.md)
|
|
747
765
|
- [KestraIoKestraSdk.PagedResultsTrigger](docs/PagedResultsTrigger.md)
|
|
748
766
|
- [KestraIoKestraSdk.PagedResultsTriggerControllerTriggers](docs/PagedResultsTriggerControllerTriggers.md)
|
|
749
767
|
- [KestraIoKestraSdk.PatchOperation](docs/PatchOperation.md)
|
|
@@ -757,11 +775,9 @@ Class | Method | HTTP request | Description
|
|
|
757
775
|
- [KestraIoKestraSdk.PluginControllerApiPluginVersions](docs/PluginControllerApiPluginVersions.md)
|
|
758
776
|
- [KestraIoKestraSdk.PluginDefault](docs/PluginDefault.md)
|
|
759
777
|
- [KestraIoKestraSdk.PluginIcon](docs/PluginIcon.md)
|
|
760
|
-
- [KestraIoKestraSdk.PluginMetric](docs/PluginMetric.md)
|
|
761
778
|
- [KestraIoKestraSdk.PluginPluginElementMetadata](docs/PluginPluginElementMetadata.md)
|
|
762
779
|
- [KestraIoKestraSdk.PluginSchema](docs/PluginSchema.md)
|
|
763
780
|
- [KestraIoKestraSdk.PluginSubGroupPluginCategory](docs/PluginSubGroupPluginCategory.md)
|
|
764
|
-
- [KestraIoKestraSdk.PluginUsage](docs/PluginUsage.md)
|
|
765
781
|
- [KestraIoKestraSdk.PreviewAppRequest](docs/PreviewAppRequest.md)
|
|
766
782
|
- [KestraIoKestraSdk.PropertyBoolean](docs/PropertyBoolean.md)
|
|
767
783
|
- [KestraIoKestraSdk.PropertyDouble](docs/PropertyDouble.md)
|
|
@@ -779,7 +795,10 @@ Class | Method | HTTP request | Description
|
|
|
779
795
|
- [KestraIoKestraSdk.Relation](docs/Relation.md)
|
|
780
796
|
- [KestraIoKestraSdk.RelationType](docs/RelationType.md)
|
|
781
797
|
- [KestraIoKestraSdk.ResourceType](docs/ResourceType.md)
|
|
798
|
+
- [KestraIoKestraSdk.ResourceType1](docs/ResourceType1.md)
|
|
782
799
|
- [KestraIoKestraSdk.ResourceTypeSchemaExtensionConfiguration](docs/ResourceTypeSchemaExtensionConfiguration.md)
|
|
800
|
+
- [KestraIoKestraSdk.RightSidebarConfiguration](docs/RightSidebarConfiguration.md)
|
|
801
|
+
- [KestraIoKestraSdk.RightSidebarConfigurationCustomLink](docs/RightSidebarConfigurationCustomLink.md)
|
|
783
802
|
- [KestraIoKestraSdk.Role](docs/Role.md)
|
|
784
803
|
- [KestraIoKestraSdk.RoleUsage](docs/RoleUsage.md)
|
|
785
804
|
- [KestraIoKestraSdk.SLA](docs/SLA.md)
|
|
@@ -803,7 +822,6 @@ Class | Method | HTTP request | Description
|
|
|
803
822
|
- [KestraIoKestraSdk.ServerConfigLiveness](docs/ServerConfigLiveness.md)
|
|
804
823
|
- [KestraIoKestraSdk.ServerInstance](docs/ServerInstance.md)
|
|
805
824
|
- [KestraIoKestraSdk.ServerInstanceType](docs/ServerInstanceType.md)
|
|
806
|
-
- [KestraIoKestraSdk.ServerType](docs/ServerType.md)
|
|
807
825
|
- [KestraIoKestraSdk.ServiceInstance](docs/ServiceInstance.md)
|
|
808
826
|
- [KestraIoKestraSdk.ServiceInstanceTimestampedEvent](docs/ServiceInstanceTimestampedEvent.md)
|
|
809
827
|
- [KestraIoKestraSdk.ServiceProviderConfiguration](docs/ServiceProviderConfiguration.md)
|
|
@@ -814,9 +832,6 @@ Class | Method | HTTP request | Description
|
|
|
814
832
|
- [KestraIoKestraSdk.ServiceProviderConfigurationSupportedConfiguration](docs/ServiceProviderConfigurationSupportedConfiguration.md)
|
|
815
833
|
- [KestraIoKestraSdk.ServiceServiceState](docs/ServiceServiceState.md)
|
|
816
834
|
- [KestraIoKestraSdk.ServiceType](docs/ServiceType.md)
|
|
817
|
-
- [KestraIoKestraSdk.ServiceUsage](docs/ServiceUsage.md)
|
|
818
|
-
- [KestraIoKestraSdk.ServiceUsageDailyServiceStatistics](docs/ServiceUsageDailyServiceStatistics.md)
|
|
819
|
-
- [KestraIoKestraSdk.ServiceUsageDailyStatistics](docs/ServiceUsageDailyStatistics.md)
|
|
820
835
|
- [KestraIoKestraSdk.SetupConfiguration](docs/SetupConfiguration.md)
|
|
821
836
|
- [KestraIoKestraSdk.SetupConfigurationSetupData](docs/SetupConfigurationSetupData.md)
|
|
822
837
|
- [KestraIoKestraSdk.SortOrder](docs/SortOrder.md)
|
|
@@ -834,11 +849,14 @@ Class | Method | HTTP request | Description
|
|
|
834
849
|
- [KestraIoKestraSdk.TenantUsage](docs/TenantUsage.md)
|
|
835
850
|
- [KestraIoKestraSdk.TestState](docs/TestState.md)
|
|
836
851
|
- [KestraIoKestraSdk.TestSuite](docs/TestSuite.md)
|
|
852
|
+
- [KestraIoKestraSdk.TestSuiteControllerRunRequest](docs/TestSuiteControllerRunRequest.md)
|
|
837
853
|
- [KestraIoKestraSdk.TestSuiteControllerSearchTestsLastResult](docs/TestSuiteControllerSearchTestsLastResult.md)
|
|
838
854
|
- [KestraIoKestraSdk.TestSuiteControllerTestSuiteApiId](docs/TestSuiteControllerTestSuiteApiId.md)
|
|
839
855
|
- [KestraIoKestraSdk.TestSuiteControllerTestSuiteBulkRequest](docs/TestSuiteControllerTestSuiteBulkRequest.md)
|
|
840
856
|
- [KestraIoKestraSdk.TestSuiteControllerTestsLastResultResponse](docs/TestSuiteControllerTestsLastResultResponse.md)
|
|
841
857
|
- [KestraIoKestraSdk.TestSuiteRunResult](docs/TestSuiteRunResult.md)
|
|
858
|
+
- [KestraIoKestraSdk.TestSuiteServiceRunByQueryRequest](docs/TestSuiteServiceRunByQueryRequest.md)
|
|
859
|
+
- [KestraIoKestraSdk.TestSuiteServiceTestRunByQueryResult](docs/TestSuiteServiceTestRunByQueryResult.md)
|
|
842
860
|
- [KestraIoKestraSdk.TheLabelsToPassToTheExecutionCreated](docs/TheLabelsToPassToTheExecutionCreated.md)
|
|
843
861
|
- [KestraIoKestraSdk.TimeWindow](docs/TimeWindow.md)
|
|
844
862
|
- [KestraIoKestraSdk.Trigger](docs/Trigger.md)
|
|
@@ -851,7 +869,6 @@ Class | Method | HTTP request | Description
|
|
|
851
869
|
- [KestraIoKestraSdk.UnitTestResult](docs/UnitTestResult.md)
|
|
852
870
|
- [KestraIoKestraSdk.UpdateFlow200Response](docs/UpdateFlow200Response.md)
|
|
853
871
|
- [KestraIoKestraSdk.UpdateFlowsInNamespaceFromJson200Response](docs/UpdateFlowsInNamespaceFromJson200Response.md)
|
|
854
|
-
- [KestraIoKestraSdk.Usage](docs/Usage.md)
|
|
855
872
|
- [KestraIoKestraSdk.UsageEE](docs/UsageEE.md)
|
|
856
873
|
- [KestraIoKestraSdk.UserGroup](docs/UserGroup.md)
|
|
857
874
|
- [KestraIoKestraSdk.UserGroupType](docs/UserGroupType.md)
|
package/dist/ApiClient.js
CHANGED
|
@@ -25,7 +25,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
|
|
|
25
25
|
*/
|
|
26
26
|
/**
|
|
27
27
|
* @module ApiClient
|
|
28
|
-
* @version
|
|
28
|
+
* @version 1.0.0
|
|
29
29
|
*/
|
|
30
30
|
/**
|
|
31
31
|
* Manages low level client-server communications, parameter marshalling, etc. There should not be any need for an
|
|
@@ -69,7 +69,7 @@ var ApiClient = /*#__PURE__*/function () {
|
|
|
69
69
|
* @default {}
|
|
70
70
|
*/
|
|
71
71
|
this.defaultHeaders = {
|
|
72
|
-
'User-Agent': 'OpenAPI-Generator/
|
|
72
|
+
'User-Agent': 'OpenAPI-Generator/1.0.0/Javascript'
|
|
73
73
|
};
|
|
74
74
|
|
|
75
75
|
/**
|
package/dist/api/AIApi.js
CHANGED
package/dist/api/AppsApi.js
CHANGED