You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/en/docs/apidocs-mxsdk/apidocs/private-cloud-build-api.md
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -81,11 +81,11 @@ The following steps will create a deployment package, retrieve it, refresh its `
81
81
4. Make the API call `POST /apps/{appId}/packages/build` using the deployment package JSON request to initiate the build of a new deployment package.
82
82
5. Verify that the job is successful using the process described in [Managing Asynchronous Jobs](#async-jobs).
83
83
6. Call `GET /apps/{appId}/packages` to retrieve all the packages in the application.
84
-
7. Once the job that you launched in step 4 is successful, you will see a `packageId` in the response from Step 6. You can then call `GET /apps/{appId}/packages/{packageId}` to get the deployment package details.
85
-
The same `packageId` can the be used in step 12 from the [DeployAPI](/apidocs-mxsdk/apidocs/private-cloud-deploy-api/#restart) documentation.
84
+
7. Once the job that you launched in step 4 is successful, you will see a `id` in the response from Step 6. You can then call `GET /apps/{appId}/packages/{id}` to get the deployment package details.
85
+
The same `id` can the be used in step 12 from the [DeployAPI](/apidocs-mxsdk/apidocs/private-cloud-deploy-api/#restart) documentation.
86
86
8. Call `GET /apps/{appId}/packages` to retrieve all the deployment packages in the application. You should see the previously created deployment package in the list.
87
-
9. If you want to download the deployment package locally, you can use the location URL present in the response from step 7. The URL has a lifetime of 15 minutes, so if more than 15 minutes have passed since the creation of the deployment package, you must request a new URL by calling `GET /apps/{appId}/packages/{packageId}?url=true`.
88
-
10. Call `DELETE /apps/{appId}/packageId`, where you can get the package ID value from step 7.
87
+
9. If you want to download the deployment package locally, you can use the location URL present in the response from step 7. The URL has a lifetime of 15 minutes, so if more than 15 minutes have passed since the creation of the deployment package, you must request a new URL by calling `GET /apps/{appId}/packages/{id}?url=true`.
88
+
10. Call `DELETE /apps/{appId}/id`, where you can get the package ID value from step 7.
89
89
11. Verify that the job is successful using the process described in [Managing Asynchronous Jobs](#async-jobs).
90
90
12. Call `GET /apps/{appId}/packages` to retrieve all the deployment packages in the application. The deployment package should be removed from the list.
91
91
@@ -101,8 +101,8 @@ Follow the steps below to upload a deployment package by using the API.
101
101
2. Prepare the `multipart/form-data` request for your deployment package, as seen in the OpenAPI specification file. The `file` indicates the *.mda* file of the deployment package that you want to upload, and `fileName` represents the name with which the deployment package will be displayed in the Private Cloud Portal. If you do not provide the *.mda* extension to the *filename*, it is added automatically.
102
102
3. Make the API call `POST /apps/{appId}/packages` using the request created in the previous step to upload the new deployment package.
103
103
4. Verify that the job is successful using the process described in [Managing Asynchronous Jobs](#async-jobs).
104
-
5. Once the previous job is successful, you will see a `packageId` in the response. You can then call `GET /apps/{appId}/packages/{packageId}` to get the deployment package details and verify the uploaded file.
105
-
You can use the same `packageId` when deploying an app through the [Mendix for Private Cloud Deploy API](/apidocs-mxsdk/apidocs/private-cloud-deploy-api/#api-deploy).
104
+
5. Once the previous job is successful, you will see a `id` in the response. You can then call `GET /apps/{appId}/packages/{id}` to get the deployment package details and verify the uploaded file.
105
+
You can use the same `id` when deploying an app through the [Mendix for Private Cloud Deploy API](/apidocs-mxsdk/apidocs/private-cloud-deploy-api/#api-deploy).
Copy file name to clipboardExpand all lines: content/en/docs/releasenotes/deployment/mendix-for-private-cloud.md
+14Lines changed: 14 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,20 @@ For information on the current status of deployment to Mendix for Private Cloud
13
13
14
14
## 2023
15
15
16
+
### April 25th, 2023
17
+
18
+
#### Portal Improvements
19
+
20
+
* We have improved the error message that displays when invalid values are provided in the custom core resources.
21
+
* We have added a message in the namespace plan section that displays when a namespace is configured with a secret store.
22
+
* We have improved the look and feel of the Private Cloud portal.
23
+
* We now allow the upload of deployment packages larger than 500 MB (up until 1024 MB) from the user interface. (Ticket 180884)
24
+
25
+
#### Deploy API
26
+
27
+
* We have fixed an issue where the environment list could not be retrieved successfully when the app internal ID was shorter than 8 characters.
28
+
* We have fixed an issue where upper-case letters in an email ID would prevent members invited to a cluster manager or namespace from retrieving the environments.
0 commit comments