@mittwald/api-client 4.457.0 → 4.458.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/dist/esm/generated/v2/client-react.js +8 -8
- package/dist/esm/generated/v2/client.js +14 -14
- package/dist/esm/generated/v2/descriptors.js +54 -54
- package/dist/esm/generated/v3-next/client-react.js +8 -8
- package/dist/esm/generated/v3-next/client.js +14 -14
- package/dist/esm/generated/v3-next/descriptors.js +54 -54
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +69 -69
- package/dist/types/generated/v2/client.d.ts +416 -416
- package/dist/types/generated/v2/descriptors.d.ts +18 -18
- package/dist/types/generated/v2/types.d.ts +2202 -2202
- package/dist/types/generated/v3-next/client-react.d.ts +69 -69
- package/dist/types/generated/v3-next/client.d.ts +416 -416
- package/dist/types/generated/v3-next/descriptors.d.ts +18 -18
- package/dist/types/generated/v3-next/types.d.ts +7073 -7073
- package/dist/types/version.d.ts +1 -1
- package/package.json +6 -6
|
@@ -4,10 +4,14 @@ export * from "@mittwald/react-use-promise";
|
|
|
4
4
|
const buildAiHostingApi = (baseClient) => ({
|
|
5
5
|
/** Get a list of already created keys. */
|
|
6
6
|
customerGetKeys: new ApiCallAsyncResourceFactory(descriptors.aiHostingCustomerGetKeys, baseClient.aiHosting.customerGetKeys).getApiResource,
|
|
7
|
+
/** Get all ai hosting plans of a customer. */
|
|
8
|
+
customerGetPlans: new ApiCallAsyncResourceFactory(descriptors.aiHostingCustomerGetPlans, baseClient.aiHosting.customerGetPlans).getApiResource,
|
|
7
9
|
/** Get a key of a customer. */
|
|
8
10
|
customerGetKey: new ApiCallAsyncResourceFactory(descriptors.aiHostingCustomerGetKey, baseClient.aiHosting.customerGetKey).getApiResource,
|
|
9
11
|
/** Get a list of currently active models. */
|
|
10
12
|
customerGetDetailedModels: new ApiCallAsyncResourceFactory(descriptors.aiHostingCustomerGetDetailedModels, baseClient.aiHosting.customerGetDetailedModels).getApiResource,
|
|
13
|
+
/** Get ai hosting plan and usages of a customer by planId. */
|
|
14
|
+
customerGetPlan: new ApiCallAsyncResourceFactory(descriptors.aiHostingCustomerGetPlan, baseClient.aiHosting.customerGetPlan).getApiResource,
|
|
11
15
|
/** Get a list of currently active models. */
|
|
12
16
|
getModels: new ApiCallAsyncResourceFactory(descriptors.aiHostingGetModels, baseClient.aiHosting.getModels).getApiResource,
|
|
13
17
|
/** Get a list of keys of a project. */
|
|
@@ -16,10 +20,6 @@ const buildAiHostingApi = (baseClient) => ({
|
|
|
16
20
|
projectGetKey: new ApiCallAsyncResourceFactory(descriptors.aiHostingProjectGetKey, baseClient.aiHosting.projectGetKey).getApiResource,
|
|
17
21
|
/** Get a list of currently active models. */
|
|
18
22
|
projectGetDetailedModels: new ApiCallAsyncResourceFactory(descriptors.aiHostingProjectGetDetailedModels, baseClient.aiHosting.projectGetDetailedModels).getApiResource,
|
|
19
|
-
/** Get ai hosting plan and usages of a customer by planId. */
|
|
20
|
-
customerGetPlan: new ApiCallAsyncResourceFactory(descriptors.aiHostingCustomerGetPlan, baseClient.aiHosting.customerGetPlan).getApiResource,
|
|
21
|
-
/** Get all ai hosting plans of a customer. */
|
|
22
|
-
customerGetPlans: new ApiCallAsyncResourceFactory(descriptors.aiHostingCustomerGetPlans, baseClient.aiHosting.customerGetPlans).getApiResource,
|
|
23
23
|
/** Get ai hosting plan and usages of a project by planId. */
|
|
24
24
|
projectGetPlan: new ApiCallAsyncResourceFactory(descriptors.aiHostingProjectGetPlan, baseClient.aiHosting.projectGetPlan).getApiResource,
|
|
25
25
|
/** Get all ai hosting plans and usages of a project. */
|
|
@@ -30,6 +30,8 @@ const buildAppApi = (baseClient) => ({
|
|
|
30
30
|
getAppInstallationSystemSoftware: new ApiCallAsyncResourceFactory(descriptors.appGetAppInstallationSystemSoftware, baseClient.app.getAppInstallationSystemSoftware).getApiResource,
|
|
31
31
|
/** Get an App. */
|
|
32
32
|
getApp: new ApiCallAsyncResourceFactory(descriptors.appGetApp, baseClient.app.getApp).getApiResource,
|
|
33
|
+
/** Get an analysis of the error of an AppInstallation. */
|
|
34
|
+
getAppinstallationErrorAnalysis: new ApiCallAsyncResourceFactory(descriptors.appGetAppinstallationErrorAnalysis, baseClient.app.getAppinstallationErrorAnalysis).getApiResource,
|
|
33
35
|
/** Get an AppInstallation. */
|
|
34
36
|
getAppinstallation: new ApiCallAsyncResourceFactory(descriptors.appGetAppinstallation, baseClient.app.getAppinstallation).getApiResource,
|
|
35
37
|
/** Get an AppVersion. */
|
|
@@ -56,8 +58,6 @@ const buildAppApi = (baseClient) => ({
|
|
|
56
58
|
listUpdateCandidatesForAppversion: new ApiCallAsyncResourceFactory(descriptors.appListUpdateCandidatesForAppversion, baseClient.app.listUpdateCandidatesForAppversion).getApiResource,
|
|
57
59
|
/** Get runtime status belonging to an AppInstallation. */
|
|
58
60
|
retrieveStatus: new ApiCallAsyncResourceFactory(descriptors.appRetrieveStatus, baseClient.app.retrieveStatus).getApiResource,
|
|
59
|
-
/** Get an analysis of the error of an AppInstallation. */
|
|
60
|
-
getAppinstallationErrorAnalysis: new ApiCallAsyncResourceFactory(descriptors.appGetAppinstallationErrorAnalysis, baseClient.app.getAppinstallationErrorAnalysis).getApiResource,
|
|
61
61
|
});
|
|
62
62
|
const buildArticleApi = (baseClient) => ({
|
|
63
63
|
/** Get an Article. */
|
|
@@ -94,6 +94,8 @@ const buildContainerApi = (baseClient) => ({
|
|
|
94
94
|
getVolume: new ApiCallAsyncResourceFactory(descriptors.containerGetVolume, baseClient.container.getVolume).getApiResource,
|
|
95
95
|
/** Get a ContainerImageConfig. */
|
|
96
96
|
getContainerImageConfig: new ApiCallAsyncResourceFactory(descriptors.containerGetContainerImageConfig, baseClient.container.getContainerImageConfig).getApiResource,
|
|
97
|
+
/** Get an analysis of the logs belonging to a Service. */
|
|
98
|
+
getServiceLogsAnalysis: new ApiCallAsyncResourceFactory(descriptors.containerGetServiceLogsAnalysis, baseClient.container.getServiceLogsAnalysis).getApiResource,
|
|
97
99
|
/** Get logs belonging to a Service. */
|
|
98
100
|
getServiceLogs: new ApiCallAsyncResourceFactory(descriptors.containerGetServiceLogs, baseClient.container.getServiceLogs).getApiResource,
|
|
99
101
|
/** Get a Service belonging to a Stack. */
|
|
@@ -114,8 +116,6 @@ const buildContainerApi = (baseClient) => ({
|
|
|
114
116
|
listTemplates: new ApiCallAsyncResourceFactory(descriptors.containerListTemplates, baseClient.container.listTemplates).getApiResource,
|
|
115
117
|
/** List Volumes belonging to a Project. */
|
|
116
118
|
listVolumes: new ApiCallAsyncResourceFactory(descriptors.containerListVolumes, baseClient.container.listVolumes).getApiResource,
|
|
117
|
-
/** Get an analysis of the logs belonging to a Service. */
|
|
118
|
-
getServiceLogsAnalysis: new ApiCallAsyncResourceFactory(descriptors.containerGetServiceLogsAnalysis, baseClient.container.getServiceLogsAnalysis).getApiResource,
|
|
119
119
|
});
|
|
120
120
|
const buildContractApi = (baseClient) => ({
|
|
121
121
|
/** Return the BaseItem of the Contract with the given ID. */
|
|
@@ -12,6 +12,10 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
12
12
|
customerGetKeys: this.requestFunctionFactory(descriptors.aiHostingCustomerGetKeys),
|
|
13
13
|
/** Creates a new key. */
|
|
14
14
|
customerCreateKey: this.requestFunctionFactory(descriptors.aiHostingCustomerCreateKey),
|
|
15
|
+
/** Get all ai hosting plans of a customer. */
|
|
16
|
+
customerGetPlans: this.requestFunctionFactory(descriptors.aiHostingCustomerGetPlans),
|
|
17
|
+
/** Creates an AI hosting profile and accepts the current model terms. */
|
|
18
|
+
customerDeclareProfile: this.requestFunctionFactory(descriptors.aiHostingCustomerDeclareProfile),
|
|
15
19
|
/** Get a key of a customer. */
|
|
16
20
|
customerGetKey: this.requestFunctionFactory(descriptors.aiHostingCustomerGetKey),
|
|
17
21
|
/** Update a key for a customer. */
|
|
@@ -20,6 +24,10 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
20
24
|
customerDeleteKey: this.requestFunctionFactory(descriptors.aiHostingCustomerDeleteKey),
|
|
21
25
|
/** Get a list of currently active models. */
|
|
22
26
|
customerGetDetailedModels: this.requestFunctionFactory(descriptors.aiHostingCustomerGetDetailedModels),
|
|
27
|
+
/** Get ai hosting plan and usages of a customer by planId. */
|
|
28
|
+
customerGetPlan: this.requestFunctionFactory(descriptors.aiHostingCustomerGetPlan),
|
|
29
|
+
/** Renames an AI hosting plan. */
|
|
30
|
+
customerUpdatePlan: this.requestFunctionFactory(descriptors.aiHostingCustomerUpdatePlan),
|
|
23
31
|
/** Get a list of currently active models. */
|
|
24
32
|
getModels: this.requestFunctionFactory(descriptors.aiHostingGetModels),
|
|
25
33
|
/** Get a list of keys of a project. */
|
|
@@ -34,20 +42,12 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
34
42
|
projectDeleteKey: this.requestFunctionFactory(descriptors.aiHostingProjectDeleteKey),
|
|
35
43
|
/** Get a list of currently active models. */
|
|
36
44
|
projectGetDetailedModels: this.requestFunctionFactory(descriptors.aiHostingProjectGetDetailedModels),
|
|
37
|
-
/** Links a container with a project licence. */
|
|
38
|
-
projectLinkContainer: this.requestFunctionFactory(descriptors.aiHostingProjectLinkContainer),
|
|
39
|
-
/** Get ai hosting plan and usages of a customer by planId. */
|
|
40
|
-
customerGetPlan: this.requestFunctionFactory(descriptors.aiHostingCustomerGetPlan),
|
|
41
|
-
/** Renames an AI hosting plan. */
|
|
42
|
-
customerUpdatePlan: this.requestFunctionFactory(descriptors.aiHostingCustomerUpdatePlan),
|
|
43
|
-
/** Get all ai hosting plans of a customer. */
|
|
44
|
-
customerGetPlans: this.requestFunctionFactory(descriptors.aiHostingCustomerGetPlans),
|
|
45
|
-
/** Creates an AI hosting profile and accepts the current model terms. */
|
|
46
|
-
customerDeclareProfile: this.requestFunctionFactory(descriptors.aiHostingCustomerDeclareProfile),
|
|
47
45
|
/** Get ai hosting plan and usages of a project by planId. */
|
|
48
46
|
projectGetPlan: this.requestFunctionFactory(descriptors.aiHostingProjectGetPlan),
|
|
49
47
|
/** Get all ai hosting plans and usages of a project. */
|
|
50
48
|
projectGetPlans: this.requestFunctionFactory(descriptors.aiHostingProjectGetPlans),
|
|
49
|
+
/** Links a container with a project licence. */
|
|
50
|
+
projectLinkContainer: this.requestFunctionFactory(descriptors.aiHostingProjectLinkContainer),
|
|
51
51
|
};
|
|
52
52
|
/** The App API allows you to manage your apps within a project, and all the system softwares that are installed as dependencies. */
|
|
53
53
|
app = {
|
|
@@ -57,6 +57,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
57
57
|
getAppInstallationSystemSoftware: this.requestFunctionFactory(descriptors.appGetAppInstallationSystemSoftware),
|
|
58
58
|
/** Get an App. */
|
|
59
59
|
getApp: this.requestFunctionFactory(descriptors.appGetApp),
|
|
60
|
+
/** Get an analysis of the error of an AppInstallation. */
|
|
61
|
+
getAppinstallationErrorAnalysis: this.requestFunctionFactory(descriptors.appGetAppinstallationErrorAnalysis),
|
|
60
62
|
/** Get an AppInstallation. */
|
|
61
63
|
getAppinstallation: this.requestFunctionFactory(descriptors.appGetAppinstallation),
|
|
62
64
|
/** Trigger an uninstallation process for an AppInstallation. */
|
|
@@ -97,8 +99,6 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
97
99
|
retrieveStatus: this.requestFunctionFactory(descriptors.appRetrieveStatus),
|
|
98
100
|
/** Remove linkage between an AppInstallation and a Database. */
|
|
99
101
|
unlinkDatabase: this.requestFunctionFactory(descriptors.appUnlinkDatabase),
|
|
100
|
-
/** Get an analysis of the error of an AppInstallation. */
|
|
101
|
-
getAppinstallationErrorAnalysis: this.requestFunctionFactory(descriptors.appGetAppinstallationErrorAnalysis),
|
|
102
102
|
};
|
|
103
103
|
/** The article API allows you to read article information. */
|
|
104
104
|
article = {
|
|
@@ -174,6 +174,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
174
174
|
deleteVolume: this.requestFunctionFactory(descriptors.containerDeleteVolume),
|
|
175
175
|
/** Get a ContainerImageConfig. */
|
|
176
176
|
getContainerImageConfig: this.requestFunctionFactory(descriptors.containerGetContainerImageConfig),
|
|
177
|
+
/** Get an analysis of the logs belonging to a Service. */
|
|
178
|
+
getServiceLogsAnalysis: this.requestFunctionFactory(descriptors.containerGetServiceLogsAnalysis),
|
|
177
179
|
/** Get logs belonging to a Service. */
|
|
178
180
|
getServiceLogs: this.requestFunctionFactory(descriptors.containerGetServiceLogs),
|
|
179
181
|
/** Get a Service belonging to a Stack. */
|
|
@@ -206,8 +208,6 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
206
208
|
startService: this.requestFunctionFactory(descriptors.containerStartService),
|
|
207
209
|
/** Stop a started Service. */
|
|
208
210
|
stopService: this.requestFunctionFactory(descriptors.containerStopService),
|
|
209
|
-
/** Get an analysis of the logs belonging to a Service. */
|
|
210
|
-
getServiceLogsAnalysis: this.requestFunctionFactory(descriptors.containerGetServiceLogsAnalysis),
|
|
211
211
|
};
|
|
212
212
|
/** The contract API allows you to manage your contracts and orders */
|
|
213
213
|
contract = {
|
|
@@ -16,6 +16,18 @@ export const aiHostingCustomerCreateKey = {
|
|
|
16
16
|
method: "POST",
|
|
17
17
|
operationId: "ai-hosting-customer-create-key",
|
|
18
18
|
};
|
|
19
|
+
/** Get all ai hosting plans of a customer. */
|
|
20
|
+
export const aiHostingCustomerGetPlans = {
|
|
21
|
+
path: "/v2/customers/{customerId}/ai-hostings",
|
|
22
|
+
method: "GET",
|
|
23
|
+
operationId: "ai-hosting-customer-get-plans",
|
|
24
|
+
};
|
|
25
|
+
/** Creates an AI hosting profile and accepts the current model terms. */
|
|
26
|
+
export const aiHostingCustomerDeclareProfile = {
|
|
27
|
+
path: "/v2/customers/{customerId}/ai-hostings",
|
|
28
|
+
method: "POST",
|
|
29
|
+
operationId: "ai-hosting-customer-declare-profile",
|
|
30
|
+
};
|
|
19
31
|
/** Get a key of a customer. */
|
|
20
32
|
export const aiHostingCustomerGetKey = {
|
|
21
33
|
path: "/v2/customers/{customerId}/ai-hosting-keys/{keyId}",
|
|
@@ -40,6 +52,18 @@ export const aiHostingCustomerGetDetailedModels = {
|
|
|
40
52
|
method: "GET",
|
|
41
53
|
operationId: "ai-hosting-customer-get-detailed-models",
|
|
42
54
|
};
|
|
55
|
+
/** Get ai hosting plan and usages of a customer by planId. */
|
|
56
|
+
export const aiHostingCustomerGetPlan = {
|
|
57
|
+
path: "/v2/customers/{customerId}/ai-hostings/{planId}",
|
|
58
|
+
method: "GET",
|
|
59
|
+
operationId: "ai-hosting-customer-get-plan",
|
|
60
|
+
};
|
|
61
|
+
/** Renames an AI hosting plan. */
|
|
62
|
+
export const aiHostingCustomerUpdatePlan = {
|
|
63
|
+
path: "/v2/customers/{customerId}/ai-hostings/{planId}",
|
|
64
|
+
method: "PUT",
|
|
65
|
+
operationId: "ai-hosting-customer-update-plan",
|
|
66
|
+
};
|
|
43
67
|
/** Get a list of currently active models. */
|
|
44
68
|
export const aiHostingGetModels = {
|
|
45
69
|
path: "/v2/ai-hosting-models",
|
|
@@ -82,6 +106,18 @@ export const aiHostingProjectGetDetailedModels = {
|
|
|
82
106
|
method: "GET",
|
|
83
107
|
operationId: "ai-hosting-project-get-detailed-models",
|
|
84
108
|
};
|
|
109
|
+
/** Get ai hosting plan and usages of a project by planId. */
|
|
110
|
+
export const aiHostingProjectGetPlan = {
|
|
111
|
+
path: "/v2/projects/{projectId}/ai-hostings/{planId}",
|
|
112
|
+
method: "GET",
|
|
113
|
+
operationId: "ai-hosting-project-get-plan",
|
|
114
|
+
};
|
|
115
|
+
/** Get all ai hosting plans and usages of a project. */
|
|
116
|
+
export const aiHostingProjectGetPlans = {
|
|
117
|
+
path: "/v2/projects/{projectId}/ai-hostings",
|
|
118
|
+
method: "GET",
|
|
119
|
+
operationId: "ai-hosting-project-get-plans",
|
|
120
|
+
};
|
|
85
121
|
/** Links a container with a project licence. */
|
|
86
122
|
export const aiHostingProjectLinkContainer = {
|
|
87
123
|
path: "/v2/projects/{projectId}/ai-hosting-keys/{keyId}/actions/link-container",
|
|
@@ -106,6 +142,12 @@ export const appGetApp = {
|
|
|
106
142
|
method: "GET",
|
|
107
143
|
operationId: "app-get-app",
|
|
108
144
|
};
|
|
145
|
+
/** Get an analysis of the error of an AppInstallation. */
|
|
146
|
+
export const appGetAppinstallationErrorAnalysis = {
|
|
147
|
+
path: "/v2/app-installations/{appInstallationId}/error-analysis",
|
|
148
|
+
method: "GET",
|
|
149
|
+
operationId: "app-get-appinstallation-error-analysis",
|
|
150
|
+
};
|
|
109
151
|
/** Get an AppInstallation. */
|
|
110
152
|
export const appGetAppinstallation = {
|
|
111
153
|
path: "/v2/app-installations/{appInstallationId}",
|
|
@@ -424,6 +466,12 @@ export const containerGetContainerImageConfig = {
|
|
|
424
466
|
method: "GET",
|
|
425
467
|
operationId: "container-get-container-image-config",
|
|
426
468
|
};
|
|
469
|
+
/** Get an analysis of the logs belonging to a Service. */
|
|
470
|
+
export const containerGetServiceLogsAnalysis = {
|
|
471
|
+
path: "/v2/stacks/{stackId}/services/{serviceId}/log-analysis",
|
|
472
|
+
method: "GET",
|
|
473
|
+
operationId: "container-get-service-logs-analysis",
|
|
474
|
+
};
|
|
427
475
|
/** Get logs belonging to a Service. */
|
|
428
476
|
export const containerGetServiceLogs = {
|
|
429
477
|
path: "/v2/stacks/{stackId}/services/{serviceId}/logs",
|
|
@@ -1012,6 +1060,12 @@ export const customerResendCustomerInviteMail = {
|
|
|
1012
1060
|
method: "POST",
|
|
1013
1061
|
operationId: "customer-resend-customer-invite-mail",
|
|
1014
1062
|
};
|
|
1063
|
+
/** Set how the customer became aware of mittwald. */
|
|
1064
|
+
export const customerSetCustomerReferralSource = {
|
|
1065
|
+
path: "/v2/customers/{customerId}/referral-source",
|
|
1066
|
+
method: "PUT",
|
|
1067
|
+
operationId: "customer-set-customer-referral-source",
|
|
1068
|
+
};
|
|
1015
1069
|
/** Copy a MySQLDatabase with a MySQLUser. */
|
|
1016
1070
|
export const databaseCopyMysqlDatabase = {
|
|
1017
1071
|
path: "/v2/mysql-databases/{mysqlDatabaseId}/actions/copy",
|
|
@@ -2806,57 +2860,3 @@ export const verificationVerifyCompany = {
|
|
|
2806
2860
|
method: "POST",
|
|
2807
2861
|
operationId: "verification-verify-company",
|
|
2808
2862
|
};
|
|
2809
|
-
/** Get ai hosting plan and usages of a customer by planId. */
|
|
2810
|
-
export const aiHostingCustomerGetPlan = {
|
|
2811
|
-
path: "/v2/customers/{customerId}/ai-hostings/{planId}",
|
|
2812
|
-
method: "GET",
|
|
2813
|
-
operationId: "ai-hosting-customer-get-plan",
|
|
2814
|
-
};
|
|
2815
|
-
/** Renames an AI hosting plan. */
|
|
2816
|
-
export const aiHostingCustomerUpdatePlan = {
|
|
2817
|
-
path: "/v2/customers/{customerId}/ai-hostings/{planId}",
|
|
2818
|
-
method: "PUT",
|
|
2819
|
-
operationId: "ai-hosting-customer-update-plan",
|
|
2820
|
-
};
|
|
2821
|
-
/** Get all ai hosting plans of a customer. */
|
|
2822
|
-
export const aiHostingCustomerGetPlans = {
|
|
2823
|
-
path: "/v2/customers/{customerId}/ai-hostings",
|
|
2824
|
-
method: "GET",
|
|
2825
|
-
operationId: "ai-hosting-customer-get-plans",
|
|
2826
|
-
};
|
|
2827
|
-
/** Creates an AI hosting profile and accepts the current model terms. */
|
|
2828
|
-
export const aiHostingCustomerDeclareProfile = {
|
|
2829
|
-
path: "/v2/customers/{customerId}/ai-hostings",
|
|
2830
|
-
method: "POST",
|
|
2831
|
-
operationId: "ai-hosting-customer-declare-profile",
|
|
2832
|
-
};
|
|
2833
|
-
/** Get ai hosting plan and usages of a project by planId. */
|
|
2834
|
-
export const aiHostingProjectGetPlan = {
|
|
2835
|
-
path: "/v2/projects/{projectId}/ai-hostings/{planId}",
|
|
2836
|
-
method: "GET",
|
|
2837
|
-
operationId: "ai-hosting-project-get-plan",
|
|
2838
|
-
};
|
|
2839
|
-
/** Get all ai hosting plans and usages of a project. */
|
|
2840
|
-
export const aiHostingProjectGetPlans = {
|
|
2841
|
-
path: "/v2/projects/{projectId}/ai-hostings",
|
|
2842
|
-
method: "GET",
|
|
2843
|
-
operationId: "ai-hosting-project-get-plans",
|
|
2844
|
-
};
|
|
2845
|
-
/** Get an analysis of the logs belonging to a Service. */
|
|
2846
|
-
export const containerGetServiceLogsAnalysis = {
|
|
2847
|
-
path: "/v2/stacks/{stackId}/services/{serviceId}/log-analysis",
|
|
2848
|
-
method: "GET",
|
|
2849
|
-
operationId: "container-get-service-logs-analysis",
|
|
2850
|
-
};
|
|
2851
|
-
/** Get an analysis of the error of an AppInstallation. */
|
|
2852
|
-
export const appGetAppinstallationErrorAnalysis = {
|
|
2853
|
-
path: "/v2/app-installations/{appInstallationId}/error-analysis",
|
|
2854
|
-
method: "GET",
|
|
2855
|
-
operationId: "app-get-appinstallation-error-analysis",
|
|
2856
|
-
};
|
|
2857
|
-
/** Set how the customer became aware of mittwald. */
|
|
2858
|
-
export const customerSetCustomerReferralSource = {
|
|
2859
|
-
path: "/v2/customers/{customerId}/referral-source",
|
|
2860
|
-
method: "PUT",
|
|
2861
|
-
operationId: "customer-set-customer-referral-source",
|
|
2862
|
-
};
|
|
@@ -4,10 +4,14 @@ export * from "@mittwald/react-use-promise";
|
|
|
4
4
|
const buildAiHostingApi = (baseClient) => ({
|
|
5
5
|
/** Get a list of already created keys. */
|
|
6
6
|
customerGetKeys: new ApiCallAsyncResourceFactory(descriptors.aiHostingCustomerGetKeys, baseClient.aiHosting.customerGetKeys).getApiResource,
|
|
7
|
+
/** Get all ai hosting plans of a customer. */
|
|
8
|
+
customerGetPlans: new ApiCallAsyncResourceFactory(descriptors.aiHostingCustomerGetPlans, baseClient.aiHosting.customerGetPlans).getApiResource,
|
|
7
9
|
/** Get a key of a customer. */
|
|
8
10
|
customerGetKey: new ApiCallAsyncResourceFactory(descriptors.aiHostingCustomerGetKey, baseClient.aiHosting.customerGetKey).getApiResource,
|
|
9
11
|
/** Get a list of currently active models. */
|
|
10
12
|
customerGetDetailedModels: new ApiCallAsyncResourceFactory(descriptors.aiHostingCustomerGetDetailedModels, baseClient.aiHosting.customerGetDetailedModels).getApiResource,
|
|
13
|
+
/** Get ai hosting plan and usages of a customer by planId. */
|
|
14
|
+
customerGetPlan: new ApiCallAsyncResourceFactory(descriptors.aiHostingCustomerGetPlan, baseClient.aiHosting.customerGetPlan).getApiResource,
|
|
11
15
|
/** Get a list of currently active models. */
|
|
12
16
|
getModels: new ApiCallAsyncResourceFactory(descriptors.aiHostingGetModels, baseClient.aiHosting.getModels).getApiResource,
|
|
13
17
|
/** Get a list of keys of a project. */
|
|
@@ -16,10 +20,6 @@ const buildAiHostingApi = (baseClient) => ({
|
|
|
16
20
|
projectGetKey: new ApiCallAsyncResourceFactory(descriptors.aiHostingProjectGetKey, baseClient.aiHosting.projectGetKey).getApiResource,
|
|
17
21
|
/** Get a list of currently active models. */
|
|
18
22
|
projectGetDetailedModels: new ApiCallAsyncResourceFactory(descriptors.aiHostingProjectGetDetailedModels, baseClient.aiHosting.projectGetDetailedModels).getApiResource,
|
|
19
|
-
/** Get ai hosting plan and usages of a customer by planId. */
|
|
20
|
-
customerGetPlan: new ApiCallAsyncResourceFactory(descriptors.aiHostingCustomerGetPlan, baseClient.aiHosting.customerGetPlan).getApiResource,
|
|
21
|
-
/** Get all ai hosting plans of a customer. */
|
|
22
|
-
customerGetPlans: new ApiCallAsyncResourceFactory(descriptors.aiHostingCustomerGetPlans, baseClient.aiHosting.customerGetPlans).getApiResource,
|
|
23
23
|
/** Get ai hosting plan and usages of a project by planId. */
|
|
24
24
|
projectGetPlan: new ApiCallAsyncResourceFactory(descriptors.aiHostingProjectGetPlan, baseClient.aiHosting.projectGetPlan).getApiResource,
|
|
25
25
|
/** Get all ai hosting plans and usages of a project. */
|
|
@@ -30,6 +30,8 @@ const buildAppApi = (baseClient) => ({
|
|
|
30
30
|
getAppInstallationSystemSoftware: new ApiCallAsyncResourceFactory(descriptors.appGetAppInstallationSystemSoftware, baseClient.app.getAppInstallationSystemSoftware).getApiResource,
|
|
31
31
|
/** Get an App. */
|
|
32
32
|
getApp: new ApiCallAsyncResourceFactory(descriptors.appGetApp, baseClient.app.getApp).getApiResource,
|
|
33
|
+
/** Get an analysis of the error of an AppInstallation. */
|
|
34
|
+
getAppinstallationErrorAnalysis: new ApiCallAsyncResourceFactory(descriptors.appGetAppinstallationErrorAnalysis, baseClient.app.getAppinstallationErrorAnalysis).getApiResource,
|
|
33
35
|
/** Get an AppInstallation. */
|
|
34
36
|
getAppinstallation: new ApiCallAsyncResourceFactory(descriptors.appGetAppinstallation, baseClient.app.getAppinstallation).getApiResource,
|
|
35
37
|
/** Get an AppVersion. */
|
|
@@ -56,8 +58,6 @@ const buildAppApi = (baseClient) => ({
|
|
|
56
58
|
listUpdateCandidatesForAppversion: new ApiCallAsyncResourceFactory(descriptors.appListUpdateCandidatesForAppversion, baseClient.app.listUpdateCandidatesForAppversion).getApiResource,
|
|
57
59
|
/** Get runtime status belonging to an AppInstallation. */
|
|
58
60
|
retrieveStatus: new ApiCallAsyncResourceFactory(descriptors.appRetrieveStatus, baseClient.app.retrieveStatus).getApiResource,
|
|
59
|
-
/** Get an analysis of the error of an AppInstallation. */
|
|
60
|
-
getAppinstallationErrorAnalysis: new ApiCallAsyncResourceFactory(descriptors.appGetAppinstallationErrorAnalysis, baseClient.app.getAppinstallationErrorAnalysis).getApiResource,
|
|
61
61
|
});
|
|
62
62
|
const buildArticleApi = (baseClient) => ({
|
|
63
63
|
/** Get an Article. */
|
|
@@ -94,6 +94,8 @@ const buildContainerApi = (baseClient) => ({
|
|
|
94
94
|
getVolume: new ApiCallAsyncResourceFactory(descriptors.containerGetVolume, baseClient.container.getVolume).getApiResource,
|
|
95
95
|
/** Get a ContainerImageConfig. */
|
|
96
96
|
getContainerImageConfig: new ApiCallAsyncResourceFactory(descriptors.containerGetContainerImageConfig, baseClient.container.getContainerImageConfig).getApiResource,
|
|
97
|
+
/** Get an analysis of the logs belonging to a Service. */
|
|
98
|
+
getServiceLogsAnalysis: new ApiCallAsyncResourceFactory(descriptors.containerGetServiceLogsAnalysis, baseClient.container.getServiceLogsAnalysis).getApiResource,
|
|
97
99
|
/** Get logs belonging to a Service. */
|
|
98
100
|
getServiceLogs: new ApiCallAsyncResourceFactory(descriptors.containerGetServiceLogs, baseClient.container.getServiceLogs).getApiResource,
|
|
99
101
|
/** Get a Service belonging to a Stack. */
|
|
@@ -114,8 +116,6 @@ const buildContainerApi = (baseClient) => ({
|
|
|
114
116
|
listTemplates: new ApiCallAsyncResourceFactory(descriptors.containerListTemplates, baseClient.container.listTemplates).getApiResource,
|
|
115
117
|
/** List Volumes belonging to a Project. */
|
|
116
118
|
listVolumes: new ApiCallAsyncResourceFactory(descriptors.containerListVolumes, baseClient.container.listVolumes).getApiResource,
|
|
117
|
-
/** Get an analysis of the logs belonging to a Service. */
|
|
118
|
-
getServiceLogsAnalysis: new ApiCallAsyncResourceFactory(descriptors.containerGetServiceLogsAnalysis, baseClient.container.getServiceLogsAnalysis).getApiResource,
|
|
119
119
|
});
|
|
120
120
|
const buildContractApi = (baseClient) => ({
|
|
121
121
|
/** Return the BaseItem of the Contract with the given ID. */
|
|
@@ -12,6 +12,10 @@ export class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
12
12
|
customerGetKeys: this.requestFunctionFactory(descriptors.aiHostingCustomerGetKeys),
|
|
13
13
|
/** Creates a new key. */
|
|
14
14
|
customerCreateKey: this.requestFunctionFactory(descriptors.aiHostingCustomerCreateKey),
|
|
15
|
+
/** Get all ai hosting plans of a customer. */
|
|
16
|
+
customerGetPlans: this.requestFunctionFactory(descriptors.aiHostingCustomerGetPlans),
|
|
17
|
+
/** Creates an AI hosting profile and accepts the current model terms. */
|
|
18
|
+
customerDeclareProfile: this.requestFunctionFactory(descriptors.aiHostingCustomerDeclareProfile),
|
|
15
19
|
/** Get a key of a customer. */
|
|
16
20
|
customerGetKey: this.requestFunctionFactory(descriptors.aiHostingCustomerGetKey),
|
|
17
21
|
/** Update a key for a customer. */
|
|
@@ -20,6 +24,10 @@ export class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
20
24
|
customerDeleteKey: this.requestFunctionFactory(descriptors.aiHostingCustomerDeleteKey),
|
|
21
25
|
/** Get a list of currently active models. */
|
|
22
26
|
customerGetDetailedModels: this.requestFunctionFactory(descriptors.aiHostingCustomerGetDetailedModels),
|
|
27
|
+
/** Get ai hosting plan and usages of a customer by planId. */
|
|
28
|
+
customerGetPlan: this.requestFunctionFactory(descriptors.aiHostingCustomerGetPlan),
|
|
29
|
+
/** Renames an AI hosting plan. */
|
|
30
|
+
customerUpdatePlan: this.requestFunctionFactory(descriptors.aiHostingCustomerUpdatePlan),
|
|
23
31
|
/** Get a list of currently active models. */
|
|
24
32
|
getModels: this.requestFunctionFactory(descriptors.aiHostingGetModels),
|
|
25
33
|
/** Get a list of keys of a project. */
|
|
@@ -34,20 +42,12 @@ export class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
34
42
|
projectDeleteKey: this.requestFunctionFactory(descriptors.aiHostingProjectDeleteKey),
|
|
35
43
|
/** Get a list of currently active models. */
|
|
36
44
|
projectGetDetailedModels: this.requestFunctionFactory(descriptors.aiHostingProjectGetDetailedModels),
|
|
37
|
-
/** Links a container with a project licence. */
|
|
38
|
-
projectLinkContainer: this.requestFunctionFactory(descriptors.aiHostingProjectLinkContainer),
|
|
39
|
-
/** Get ai hosting plan and usages of a customer by planId. */
|
|
40
|
-
customerGetPlan: this.requestFunctionFactory(descriptors.aiHostingCustomerGetPlan),
|
|
41
|
-
/** Renames an AI hosting plan. */
|
|
42
|
-
customerUpdatePlan: this.requestFunctionFactory(descriptors.aiHostingCustomerUpdatePlan),
|
|
43
|
-
/** Get all ai hosting plans of a customer. */
|
|
44
|
-
customerGetPlans: this.requestFunctionFactory(descriptors.aiHostingCustomerGetPlans),
|
|
45
|
-
/** Creates an AI hosting profile and accepts the current model terms. */
|
|
46
|
-
customerDeclareProfile: this.requestFunctionFactory(descriptors.aiHostingCustomerDeclareProfile),
|
|
47
45
|
/** Get ai hosting plan and usages of a project by planId. */
|
|
48
46
|
projectGetPlan: this.requestFunctionFactory(descriptors.aiHostingProjectGetPlan),
|
|
49
47
|
/** Get all ai hosting plans and usages of a project. */
|
|
50
48
|
projectGetPlans: this.requestFunctionFactory(descriptors.aiHostingProjectGetPlans),
|
|
49
|
+
/** Links a container with a project licence. */
|
|
50
|
+
projectLinkContainer: this.requestFunctionFactory(descriptors.aiHostingProjectLinkContainer),
|
|
51
51
|
};
|
|
52
52
|
/** The App API allows you to manage your apps within a project, and all the system softwares that are installed as dependencies. */
|
|
53
53
|
app = {
|
|
@@ -57,6 +57,8 @@ export class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
57
57
|
getAppInstallationSystemSoftware: this.requestFunctionFactory(descriptors.appGetAppInstallationSystemSoftware),
|
|
58
58
|
/** Get an App. */
|
|
59
59
|
getApp: this.requestFunctionFactory(descriptors.appGetApp),
|
|
60
|
+
/** Get an analysis of the error of an AppInstallation. */
|
|
61
|
+
getAppinstallationErrorAnalysis: this.requestFunctionFactory(descriptors.appGetAppinstallationErrorAnalysis),
|
|
60
62
|
/** Get an AppInstallation. */
|
|
61
63
|
getAppinstallation: this.requestFunctionFactory(descriptors.appGetAppinstallation),
|
|
62
64
|
/** Trigger an uninstallation process for an AppInstallation. */
|
|
@@ -97,8 +99,6 @@ export class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
97
99
|
retrieveStatus: this.requestFunctionFactory(descriptors.appRetrieveStatus),
|
|
98
100
|
/** Remove linkage between an AppInstallation and a Database. */
|
|
99
101
|
unlinkDatabase: this.requestFunctionFactory(descriptors.appUnlinkDatabase),
|
|
100
|
-
/** Get an analysis of the error of an AppInstallation. */
|
|
101
|
-
getAppinstallationErrorAnalysis: this.requestFunctionFactory(descriptors.appGetAppinstallationErrorAnalysis),
|
|
102
102
|
};
|
|
103
103
|
/** The article API allows you to read article information. */
|
|
104
104
|
article = {
|
|
@@ -174,6 +174,8 @@ export class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
174
174
|
deleteVolume: this.requestFunctionFactory(descriptors.containerDeleteVolume),
|
|
175
175
|
/** Get a ContainerImageConfig. */
|
|
176
176
|
getContainerImageConfig: this.requestFunctionFactory(descriptors.containerGetContainerImageConfig),
|
|
177
|
+
/** Get an analysis of the logs belonging to a Service. */
|
|
178
|
+
getServiceLogsAnalysis: this.requestFunctionFactory(descriptors.containerGetServiceLogsAnalysis),
|
|
177
179
|
/** Get logs belonging to a Service. */
|
|
178
180
|
getServiceLogs: this.requestFunctionFactory(descriptors.containerGetServiceLogs),
|
|
179
181
|
/** Get a Service belonging to a Stack. */
|
|
@@ -206,8 +208,6 @@ export class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
206
208
|
startService: this.requestFunctionFactory(descriptors.containerStartService),
|
|
207
209
|
/** Stop a started Service. */
|
|
208
210
|
stopService: this.requestFunctionFactory(descriptors.containerStopService),
|
|
209
|
-
/** Get an analysis of the logs belonging to a Service. */
|
|
210
|
-
getServiceLogsAnalysis: this.requestFunctionFactory(descriptors.containerGetServiceLogsAnalysis),
|
|
211
211
|
};
|
|
212
212
|
/** The contract API allows you to manage your contracts and orders */
|
|
213
213
|
contract = {
|
|
@@ -16,6 +16,18 @@ export const aiHostingCustomerCreateKey = {
|
|
|
16
16
|
method: "POST",
|
|
17
17
|
operationId: "ai-hosting-customer-create-key",
|
|
18
18
|
};
|
|
19
|
+
/** Get all ai hosting plans of a customer. */
|
|
20
|
+
export const aiHostingCustomerGetPlans = {
|
|
21
|
+
path: "/v3-next/customers/{customerId}/ai-hostings",
|
|
22
|
+
method: "GET",
|
|
23
|
+
operationId: "ai-hosting-customer-get-plans",
|
|
24
|
+
};
|
|
25
|
+
/** Creates an AI hosting profile and accepts the current model terms. */
|
|
26
|
+
export const aiHostingCustomerDeclareProfile = {
|
|
27
|
+
path: "/v3-next/customers/{customerId}/ai-hostings",
|
|
28
|
+
method: "POST",
|
|
29
|
+
operationId: "ai-hosting-customer-declare-profile",
|
|
30
|
+
};
|
|
19
31
|
/** Get a key of a customer. */
|
|
20
32
|
export const aiHostingCustomerGetKey = {
|
|
21
33
|
path: "/v3-next/customers/{customerId}/ai-hosting-keys/{keyId}",
|
|
@@ -40,6 +52,18 @@ export const aiHostingCustomerGetDetailedModels = {
|
|
|
40
52
|
method: "GET",
|
|
41
53
|
operationId: "ai-hosting-customer-get-detailed-models",
|
|
42
54
|
};
|
|
55
|
+
/** Get ai hosting plan and usages of a customer by planId. */
|
|
56
|
+
export const aiHostingCustomerGetPlan = {
|
|
57
|
+
path: "/v3-next/customers/{customerId}/ai-hostings/{planId}",
|
|
58
|
+
method: "GET",
|
|
59
|
+
operationId: "ai-hosting-customer-get-plan",
|
|
60
|
+
};
|
|
61
|
+
/** Renames an AI hosting plan. */
|
|
62
|
+
export const aiHostingCustomerUpdatePlan = {
|
|
63
|
+
path: "/v3-next/customers/{customerId}/ai-hostings/{planId}",
|
|
64
|
+
method: "PUT",
|
|
65
|
+
operationId: "ai-hosting-customer-update-plan",
|
|
66
|
+
};
|
|
43
67
|
/** Get a list of currently active models. */
|
|
44
68
|
export const aiHostingGetModels = {
|
|
45
69
|
path: "/v3-next/ai-hosting-models",
|
|
@@ -82,6 +106,18 @@ export const aiHostingProjectGetDetailedModels = {
|
|
|
82
106
|
method: "GET",
|
|
83
107
|
operationId: "ai-hosting-project-get-detailed-models",
|
|
84
108
|
};
|
|
109
|
+
/** Get ai hosting plan and usages of a project by planId. */
|
|
110
|
+
export const aiHostingProjectGetPlan = {
|
|
111
|
+
path: "/v3-next/projects/{projectId}/ai-hostings/{planId}",
|
|
112
|
+
method: "GET",
|
|
113
|
+
operationId: "ai-hosting-project-get-plan",
|
|
114
|
+
};
|
|
115
|
+
/** Get all ai hosting plans and usages of a project. */
|
|
116
|
+
export const aiHostingProjectGetPlans = {
|
|
117
|
+
path: "/v3-next/projects/{projectId}/ai-hostings",
|
|
118
|
+
method: "GET",
|
|
119
|
+
operationId: "ai-hosting-project-get-plans",
|
|
120
|
+
};
|
|
85
121
|
/** Links a container with a project licence. */
|
|
86
122
|
export const aiHostingProjectLinkContainer = {
|
|
87
123
|
path: "/v3-next/projects/{projectId}/ai-hosting-keys/{keyId}/actions/link-container",
|
|
@@ -106,6 +142,12 @@ export const appGetApp = {
|
|
|
106
142
|
method: "GET",
|
|
107
143
|
operationId: "app-get-app",
|
|
108
144
|
};
|
|
145
|
+
/** Get an analysis of the error of an AppInstallation. */
|
|
146
|
+
export const appGetAppinstallationErrorAnalysis = {
|
|
147
|
+
path: "/v3-next/app-installations/{appInstallationId}/error-analysis",
|
|
148
|
+
method: "GET",
|
|
149
|
+
operationId: "app-get-appinstallation-error-analysis",
|
|
150
|
+
};
|
|
109
151
|
/** Get an AppInstallation. */
|
|
110
152
|
export const appGetAppinstallation = {
|
|
111
153
|
path: "/v3-next/app-installations/{appInstallationId}",
|
|
@@ -424,6 +466,12 @@ export const containerGetContainerImageConfig = {
|
|
|
424
466
|
method: "GET",
|
|
425
467
|
operationId: "container-get-container-image-config",
|
|
426
468
|
};
|
|
469
|
+
/** Get an analysis of the logs belonging to a Service. */
|
|
470
|
+
export const containerGetServiceLogsAnalysis = {
|
|
471
|
+
path: "/v3-next/stacks/{stackId}/services/{serviceId}/log-analysis",
|
|
472
|
+
method: "GET",
|
|
473
|
+
operationId: "container-get-service-logs-analysis",
|
|
474
|
+
};
|
|
427
475
|
/** Get logs belonging to a Service. */
|
|
428
476
|
export const containerGetServiceLogs = {
|
|
429
477
|
path: "/v3-next/stacks/{stackId}/services/{serviceId}/logs",
|
|
@@ -1012,6 +1060,12 @@ export const customerResendCustomerInviteMail = {
|
|
|
1012
1060
|
method: "POST",
|
|
1013
1061
|
operationId: "customer-resend-customer-invite-mail",
|
|
1014
1062
|
};
|
|
1063
|
+
/** Set how the customer became aware of mittwald. */
|
|
1064
|
+
export const customerSetCustomerReferralSource = {
|
|
1065
|
+
path: "/v3-next/customers/{customerId}/referral-source",
|
|
1066
|
+
method: "PUT",
|
|
1067
|
+
operationId: "customer-set-customer-referral-source",
|
|
1068
|
+
};
|
|
1015
1069
|
/** Copy a MySQLDatabase with a MySQLUser. */
|
|
1016
1070
|
export const databaseCopyMysqlDatabase = {
|
|
1017
1071
|
path: "/v3-next/mysql-databases/{mysqlDatabaseId}/actions/copy",
|
|
@@ -2806,57 +2860,3 @@ export const verificationVerifyCompany = {
|
|
|
2806
2860
|
method: "POST",
|
|
2807
2861
|
operationId: "verification-verify-company",
|
|
2808
2862
|
};
|
|
2809
|
-
/** Get ai hosting plan and usages of a customer by planId. */
|
|
2810
|
-
export const aiHostingCustomerGetPlan = {
|
|
2811
|
-
path: "/v3-next/customers/{customerId}/ai-hostings/{planId}",
|
|
2812
|
-
method: "GET",
|
|
2813
|
-
operationId: "ai-hosting-customer-get-plan",
|
|
2814
|
-
};
|
|
2815
|
-
/** Renames an AI hosting plan. */
|
|
2816
|
-
export const aiHostingCustomerUpdatePlan = {
|
|
2817
|
-
path: "/v3-next/customers/{customerId}/ai-hostings/{planId}",
|
|
2818
|
-
method: "PUT",
|
|
2819
|
-
operationId: "ai-hosting-customer-update-plan",
|
|
2820
|
-
};
|
|
2821
|
-
/** Get all ai hosting plans of a customer. */
|
|
2822
|
-
export const aiHostingCustomerGetPlans = {
|
|
2823
|
-
path: "/v3-next/customers/{customerId}/ai-hostings",
|
|
2824
|
-
method: "GET",
|
|
2825
|
-
operationId: "ai-hosting-customer-get-plans",
|
|
2826
|
-
};
|
|
2827
|
-
/** Creates an AI hosting profile and accepts the current model terms. */
|
|
2828
|
-
export const aiHostingCustomerDeclareProfile = {
|
|
2829
|
-
path: "/v3-next/customers/{customerId}/ai-hostings",
|
|
2830
|
-
method: "POST",
|
|
2831
|
-
operationId: "ai-hosting-customer-declare-profile",
|
|
2832
|
-
};
|
|
2833
|
-
/** Get ai hosting plan and usages of a project by planId. */
|
|
2834
|
-
export const aiHostingProjectGetPlan = {
|
|
2835
|
-
path: "/v3-next/projects/{projectId}/ai-hostings/{planId}",
|
|
2836
|
-
method: "GET",
|
|
2837
|
-
operationId: "ai-hosting-project-get-plan",
|
|
2838
|
-
};
|
|
2839
|
-
/** Get all ai hosting plans and usages of a project. */
|
|
2840
|
-
export const aiHostingProjectGetPlans = {
|
|
2841
|
-
path: "/v3-next/projects/{projectId}/ai-hostings",
|
|
2842
|
-
method: "GET",
|
|
2843
|
-
operationId: "ai-hosting-project-get-plans",
|
|
2844
|
-
};
|
|
2845
|
-
/** Get an analysis of the logs belonging to a Service. */
|
|
2846
|
-
export const containerGetServiceLogsAnalysis = {
|
|
2847
|
-
path: "/v3-next/stacks/{stackId}/services/{serviceId}/log-analysis",
|
|
2848
|
-
method: "GET",
|
|
2849
|
-
operationId: "container-get-service-logs-analysis",
|
|
2850
|
-
};
|
|
2851
|
-
/** Get an analysis of the error of an AppInstallation. */
|
|
2852
|
-
export const appGetAppinstallationErrorAnalysis = {
|
|
2853
|
-
path: "/v3-next/app-installations/{appInstallationId}/error-analysis",
|
|
2854
|
-
method: "GET",
|
|
2855
|
-
operationId: "app-get-appinstallation-error-analysis",
|
|
2856
|
-
};
|
|
2857
|
-
/** Set how the customer became aware of mittwald. */
|
|
2858
|
-
export const customerSetCustomerReferralSource = {
|
|
2859
|
-
path: "/v3-next/customers/{customerId}/referral-source",
|
|
2860
|
-
method: "PUT",
|
|
2861
|
-
operationId: "customer-set-customer-referral-source",
|
|
2862
|
-
};
|
package/dist/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export const MittwaldAPIClientVersion = '4.457.1';
|