@epilot/blueprint-manifest-client 2.5.10 → 2.6.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/openapi.d.ts +18 -81
- package/dist/openapi.json +7 -35
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -60,6 +60,12 @@ declare namespace Components {
|
|
|
60
60
|
* https://blueprint-manifest-prod.s3.eu-central-1.amazonaws.com/large.json
|
|
61
61
|
*/
|
|
62
62
|
large_imported_resources_url?: string; // uri
|
|
63
|
+
install_status?: BlueprintInstallStatus;
|
|
64
|
+
/**
|
|
65
|
+
* example:
|
|
66
|
+
* This blueprint installation resulted in a partial deployment; some resources were created successfully, but failed to complete the full resource setup.
|
|
67
|
+
*/
|
|
68
|
+
install_status_description?: string;
|
|
63
69
|
}
|
|
64
70
|
export interface CommonManifestFields {
|
|
65
71
|
manifest_id?: /**
|
|
@@ -92,31 +98,13 @@ declare namespace Components {
|
|
|
92
98
|
* https://blueprint-manifest-prod.s3.eu-central-1.amazonaws.com/manifest.zip
|
|
93
99
|
*/
|
|
94
100
|
source_blueprint_file?: string;
|
|
95
|
-
/**
|
|
96
|
-
* Link to the blueprint documentation
|
|
97
|
-
* example:
|
|
98
|
-
* https://help.epilot.cloud
|
|
99
|
-
*/
|
|
100
|
-
docs_link?: string;
|
|
101
101
|
source_blueprint_file_ref?: S3Reference;
|
|
102
|
-
install_status?: BlueprintInstallStatus;
|
|
103
|
-
/**
|
|
104
|
-
* example:
|
|
105
|
-
* This blueprint installation resulted in a partial deployment; some resources were created successfully, but failed to complete the full resource setup.
|
|
106
|
-
*/
|
|
107
|
-
install_status_description?: string;
|
|
108
102
|
/**
|
|
109
103
|
* Whether the manifest comes from a trusted source and is signed by epilot
|
|
110
104
|
*/
|
|
111
105
|
is_verified?: boolean;
|
|
112
106
|
created_by?: CallerIdentity;
|
|
113
107
|
updated_by?: CallerIdentity;
|
|
114
|
-
/**
|
|
115
|
-
* Version of the manifest (semver)
|
|
116
|
-
* example:
|
|
117
|
-
* 1.0.0
|
|
118
|
-
*/
|
|
119
|
-
manifest_version?: string;
|
|
120
108
|
}
|
|
121
109
|
export interface CommonMarkdownFields {
|
|
122
110
|
/**
|
|
@@ -229,6 +217,12 @@ declare namespace Components {
|
|
|
229
217
|
* https://blueprint-manifest-prod.s3.eu-central-1.amazonaws.com/large.json
|
|
230
218
|
*/
|
|
231
219
|
large_imported_resources_url?: string; // uri
|
|
220
|
+
install_status?: BlueprintInstallStatus;
|
|
221
|
+
/**
|
|
222
|
+
* example:
|
|
223
|
+
* This blueprint installation resulted in a partial deployment; some resources were created successfully, but failed to complete the full resource setup.
|
|
224
|
+
*/
|
|
225
|
+
install_status_description?: string;
|
|
232
226
|
/**
|
|
233
227
|
* Markdown content part of a manifest file
|
|
234
228
|
*/
|
|
@@ -284,27 +278,9 @@ declare namespace Components {
|
|
|
284
278
|
* https://blueprint-manifest-prod.s3.eu-central-1.amazonaws.com/manifest.zip
|
|
285
279
|
*/
|
|
286
280
|
source_blueprint_file?: string;
|
|
287
|
-
/**
|
|
288
|
-
* Link to the blueprint documentation
|
|
289
|
-
* example:
|
|
290
|
-
* https://help.epilot.cloud
|
|
291
|
-
*/
|
|
292
|
-
docs_link?: string;
|
|
293
281
|
source_blueprint_file_ref?: S3Reference;
|
|
294
|
-
install_status?: BlueprintInstallStatus;
|
|
295
|
-
/**
|
|
296
|
-
* example:
|
|
297
|
-
* This blueprint installation resulted in a partial deployment; some resources were created successfully, but failed to complete the full resource setup.
|
|
298
|
-
*/
|
|
299
|
-
install_status_description?: string;
|
|
300
282
|
created_by?: CallerIdentity;
|
|
301
283
|
updated_by?: CallerIdentity;
|
|
302
|
-
/**
|
|
303
|
-
* Version of the manifest (semver)
|
|
304
|
-
* example:
|
|
305
|
-
* 1.0.0
|
|
306
|
-
*/
|
|
307
|
-
manifest_version?: string;
|
|
308
284
|
}
|
|
309
285
|
/**
|
|
310
286
|
* ID of an import or export job (state machine)
|
|
@@ -320,14 +296,6 @@ declare namespace Components {
|
|
|
320
296
|
* 4854bb2a-94f9-424d-a968-3fb17fb0bf89
|
|
321
297
|
*/
|
|
322
298
|
JobID;
|
|
323
|
-
/**
|
|
324
|
-
* List of job IDs that were used to install the manifest
|
|
325
|
-
*/
|
|
326
|
-
previous_jobs_ids?: string[];
|
|
327
|
-
/**
|
|
328
|
-
* List of jobs that were used to install the manifest
|
|
329
|
-
*/
|
|
330
|
-
previous_jobs?: Job[];
|
|
331
299
|
manifest_id?: /**
|
|
332
300
|
* ID of an imported / installed manifest
|
|
333
301
|
* example:
|
|
@@ -358,31 +326,13 @@ declare namespace Components {
|
|
|
358
326
|
* https://blueprint-manifest-prod.s3.eu-central-1.amazonaws.com/manifest.zip
|
|
359
327
|
*/
|
|
360
328
|
source_blueprint_file?: string;
|
|
361
|
-
/**
|
|
362
|
-
* Link to the blueprint documentation
|
|
363
|
-
* example:
|
|
364
|
-
* https://help.epilot.cloud
|
|
365
|
-
*/
|
|
366
|
-
docs_link?: string;
|
|
367
329
|
source_blueprint_file_ref?: S3Reference;
|
|
368
|
-
install_status?: BlueprintInstallStatus;
|
|
369
|
-
/**
|
|
370
|
-
* example:
|
|
371
|
-
* This blueprint installation resulted in a partial deployment; some resources were created successfully, but failed to complete the full resource setup.
|
|
372
|
-
*/
|
|
373
|
-
install_status_description?: string;
|
|
374
330
|
/**
|
|
375
331
|
* Whether the manifest comes from a trusted source and is signed by epilot
|
|
376
332
|
*/
|
|
377
333
|
is_verified?: boolean;
|
|
378
334
|
created_by?: CallerIdentity;
|
|
379
335
|
updated_by?: CallerIdentity;
|
|
380
|
-
/**
|
|
381
|
-
* Version of the manifest (semver)
|
|
382
|
-
* example:
|
|
383
|
-
* 1.0.0
|
|
384
|
-
*/
|
|
385
|
-
manifest_version?: string;
|
|
386
336
|
/**
|
|
387
337
|
* Markdown content part of a manifest file
|
|
388
338
|
*/
|
|
@@ -419,6 +369,12 @@ declare namespace Components {
|
|
|
419
369
|
* https://blueprint-manifest-prod.s3.eu-central-1.amazonaws.com/large.json
|
|
420
370
|
*/
|
|
421
371
|
large_imported_resources_url?: string; // uri
|
|
372
|
+
install_status?: BlueprintInstallStatus;
|
|
373
|
+
/**
|
|
374
|
+
* example:
|
|
375
|
+
* This blueprint installation resulted in a partial deployment; some resources were created successfully, but failed to complete the full resource setup.
|
|
376
|
+
*/
|
|
377
|
+
install_status_description?: string;
|
|
422
378
|
/**
|
|
423
379
|
* When the manifest was first installed (applied)
|
|
424
380
|
*/
|
|
@@ -465,31 +421,13 @@ declare namespace Components {
|
|
|
465
421
|
* https://blueprint-manifest-prod.s3.eu-central-1.amazonaws.com/manifest.zip
|
|
466
422
|
*/
|
|
467
423
|
source_blueprint_file?: string;
|
|
468
|
-
/**
|
|
469
|
-
* Link to the blueprint documentation
|
|
470
|
-
* example:
|
|
471
|
-
* https://help.epilot.cloud
|
|
472
|
-
*/
|
|
473
|
-
docs_link?: string;
|
|
474
424
|
source_blueprint_file_ref?: S3Reference;
|
|
475
|
-
install_status?: BlueprintInstallStatus;
|
|
476
|
-
/**
|
|
477
|
-
* example:
|
|
478
|
-
* This blueprint installation resulted in a partial deployment; some resources were created successfully, but failed to complete the full resource setup.
|
|
479
|
-
*/
|
|
480
|
-
install_status_description?: string;
|
|
481
425
|
/**
|
|
482
426
|
* Whether the manifest comes from a trusted source and is signed by epilot
|
|
483
427
|
*/
|
|
484
428
|
is_verified?: boolean;
|
|
485
429
|
created_by?: CallerIdentity;
|
|
486
430
|
updated_by?: CallerIdentity;
|
|
487
|
-
/**
|
|
488
|
-
* Version of the manifest (semver)
|
|
489
|
-
* example:
|
|
490
|
-
* 1.0.0
|
|
491
|
-
*/
|
|
492
|
-
manifest_version?: string;
|
|
493
431
|
/**
|
|
494
432
|
* When the manifest was first installed (applied)
|
|
495
433
|
*/
|
|
@@ -792,7 +730,6 @@ declare namespace Paths {
|
|
|
792
730
|
* Temporary flag to indicate if multiple resources are being exported
|
|
793
731
|
*/
|
|
794
732
|
isExportingMultipleResources?: boolean;
|
|
795
|
-
generateAISummary?: boolean;
|
|
796
733
|
}
|
|
797
734
|
namespace Responses {
|
|
798
735
|
export interface $200 {
|
package/dist/openapi.json
CHANGED
|
@@ -157,10 +157,6 @@
|
|
|
157
157
|
"isExportingMultipleResources": {
|
|
158
158
|
"type": "boolean",
|
|
159
159
|
"description": "Temporary flag to indicate if multiple resources are being exported"
|
|
160
|
-
},
|
|
161
|
-
"generateAISummary": {
|
|
162
|
-
"type": "boolean",
|
|
163
|
-
"default": false
|
|
164
160
|
}
|
|
165
161
|
},
|
|
166
162
|
"required": [
|
|
@@ -515,20 +511,6 @@
|
|
|
515
511
|
"properties": {
|
|
516
512
|
"import_job_id": {
|
|
517
513
|
"$ref": "#/components/schemas/JobID"
|
|
518
|
-
},
|
|
519
|
-
"previous_jobs_ids": {
|
|
520
|
-
"type": "array",
|
|
521
|
-
"items": {
|
|
522
|
-
"type": "string"
|
|
523
|
-
},
|
|
524
|
-
"description": "List of job IDs that were used to install the manifest"
|
|
525
|
-
},
|
|
526
|
-
"previous_jobs": {
|
|
527
|
-
"type": "array",
|
|
528
|
-
"items": {
|
|
529
|
-
"$ref": "#/components/schemas/Job"
|
|
530
|
-
},
|
|
531
|
-
"description": "List of jobs that were used to install the manifest"
|
|
532
514
|
}
|
|
533
515
|
}
|
|
534
516
|
},
|
|
@@ -868,21 +850,9 @@
|
|
|
868
850
|
"description": "A URL to download the source blueprint file used to import the blueprint",
|
|
869
851
|
"example": "https://blueprint-manifest-prod.s3.eu-central-1.amazonaws.com/manifest.zip"
|
|
870
852
|
},
|
|
871
|
-
"docs_link": {
|
|
872
|
-
"type": "string",
|
|
873
|
-
"description": "Link to the blueprint documentation",
|
|
874
|
-
"example": "https://help.epilot.cloud"
|
|
875
|
-
},
|
|
876
853
|
"source_blueprint_file_ref": {
|
|
877
854
|
"$ref": "#/components/schemas/S3Reference"
|
|
878
855
|
},
|
|
879
|
-
"install_status": {
|
|
880
|
-
"$ref": "#/components/schemas/BlueprintInstallStatus"
|
|
881
|
-
},
|
|
882
|
-
"install_status_description": {
|
|
883
|
-
"type": "string",
|
|
884
|
-
"example": "This blueprint installation resulted in a partial deployment; some resources were created successfully, but failed to complete the full resource setup."
|
|
885
|
-
},
|
|
886
856
|
"is_verified": {
|
|
887
857
|
"type": "boolean",
|
|
888
858
|
"description": "Whether the manifest comes from a trusted source and is signed by epilot"
|
|
@@ -892,11 +862,6 @@
|
|
|
892
862
|
},
|
|
893
863
|
"updated_by": {
|
|
894
864
|
"$ref": "#/components/schemas/CallerIdentity"
|
|
895
|
-
},
|
|
896
|
-
"manifest_version": {
|
|
897
|
-
"type": "string",
|
|
898
|
-
"description": "Version of the manifest (semver)",
|
|
899
|
-
"example": "1.0.0"
|
|
900
865
|
}
|
|
901
866
|
}
|
|
902
867
|
},
|
|
@@ -940,6 +905,13 @@
|
|
|
940
905
|
"format": "uri",
|
|
941
906
|
"description": "An URL to download the imported resources when the resources are too large to be included in the response",
|
|
942
907
|
"example": "https://blueprint-manifest-prod.s3.eu-central-1.amazonaws.com/large.json"
|
|
908
|
+
},
|
|
909
|
+
"install_status": {
|
|
910
|
+
"$ref": "#/components/schemas/BlueprintInstallStatus"
|
|
911
|
+
},
|
|
912
|
+
"install_status_description": {
|
|
913
|
+
"type": "string",
|
|
914
|
+
"example": "This blueprint installation resulted in a partial deployment; some resources were created successfully, but failed to complete the full resource setup."
|
|
943
915
|
}
|
|
944
916
|
}
|
|
945
917
|
},
|