@stack-spot/portal-network 0.221.0 → 0.222.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.
@@ -1,1314 +0,0 @@
1
- /**
2
- * PlatformHorizonApplication
3
- * 0.0.2
4
- * DO NOT MODIFY - This file has been generated using oazapfts.
5
- * See https://www.npmjs.com/package/oazapfts
6
- */
7
- import * as Oazapfts from "@oazapfts/runtime";
8
- export declare const defaults: Oazapfts.Defaults<Oazapfts.CustomHeaders>;
9
- export declare const servers: {
10
- generatedServerUrl: string;
11
- };
12
- export type ValidationDetail = {
13
- code: string;
14
- values: string[];
15
- };
16
- export type ErrorBody = {
17
- code: string;
18
- details: string;
19
- status: string;
20
- validationDetails?: ValidationDetail[];
21
- };
22
- export type MetadataV1 = {
23
- id?: string;
24
- name: string;
25
- version: string;
26
- labels?: {
27
- [key: string]: string;
28
- };
29
- propagableLabels?: {
30
- [key: string]: string;
31
- };
32
- };
33
- export type DeploymentContextManifestV1Spec = {
34
- runtimeId: string;
35
- deployTemplateId: string;
36
- workspaceId: string;
37
- applications: string[];
38
- environment: string;
39
- isDefault: boolean;
40
- };
41
- export type DeploymentContextManifestV1 = {
42
- metadata: MetadataV1;
43
- spec: DeploymentContextManifestV1Spec;
44
- };
45
- export type TenantManifestV1SpecCloudAccountConfigurationFromRef = {
46
- id: string;
47
- };
48
- export type TenantManifestV1SpecCloudAccountConfigurationIamRoles = {
49
- clusterRole?: string;
50
- clusterNodeGroup?: string;
51
- clusterAdminRoles: string[];
52
- crossplane?: string;
53
- crossAccountRoleArn?: string;
54
- argocd?: string;
55
- karpenter?: string;
56
- externalSecrets?: string;
57
- stackspotCloudPlatformAgent?: string;
58
- stackspotCloudPlatformManager?: string;
59
- stackspotCloudPlatformGateway?: string;
60
- nodeRole?: string;
61
- };
62
- export type TenantManifestV1SpecCloudAccountConfiguration = {
63
- fromRef?: TenantManifestV1SpecCloudAccountConfigurationFromRef;
64
- cloudProvider?: string;
65
- accountId?: string;
66
- region?: string;
67
- vpcId?: string;
68
- subnetIds?: string[];
69
- customAmi?: string;
70
- iamRoles?: TenantManifestV1SpecCloudAccountConfigurationIamRoles;
71
- };
72
- export type TenantManifestV1SpecAddonReference = {
73
- /** Name of the registered addon */
74
- name: string;
75
- /** Version of the registered addon */
76
- version: string;
77
- /** Context for this addon */
78
- context: string;
79
- "namespace": string;
80
- values?: {
81
- [key: string]: object;
82
- };
83
- };
84
- export type TenantManifestV1SpecKubernetesNetworkConfig = {
85
- ipFamily?: string;
86
- serviceIpv4Cidr?: string;
87
- };
88
- export type TenantManifestV1SpecKubernetes = {
89
- publicAccess: boolean;
90
- privateAccess: boolean;
91
- version: string;
92
- publicCidrsAllowed: string[];
93
- privateCidrsAllowed?: string[];
94
- extraCidrsInbound?: string[];
95
- networkConfig?: TenantManifestV1SpecKubernetesNetworkConfig;
96
- };
97
- export type TenantManifestV1SpecNodeGroup = {
98
- volumeSize?: number;
99
- amiType?: string;
100
- capacityType?: string;
101
- desiredSize?: number;
102
- maxSize?: number;
103
- minSize?: number;
104
- };
105
- export type TenantManifestV1SpecStackspotCloudPlatform = {
106
- createIamRoles: boolean;
107
- };
108
- export type TenantManifestV1SpecHelmResource = {
109
- chartName: string;
110
- version: string;
111
- repoUrl: string;
112
- };
113
- export type TenantManifestV1SpecSeleneAppsSeleneAppEnv = {
114
- name: string;
115
- value: string;
116
- };
117
- export type TenantManifestV1SpecSeleneAppsSeleneApp = {
118
- imageRepository: string;
119
- imageVersion?: string;
120
- labels?: {
121
- [key: string]: string;
122
- };
123
- annotations?: {
124
- [key: string]: string;
125
- };
126
- env?: TenantManifestV1SpecSeleneAppsSeleneAppEnv[];
127
- };
128
- export type TenantManifestV1SpecSeleneApps = {
129
- agent: TenantManifestV1SpecSeleneAppsSeleneApp;
130
- gateway: TenantManifestV1SpecSeleneAppsSeleneApp;
131
- manager: TenantManifestV1SpecSeleneAppsSeleneApp;
132
- platformGatewayUrl: string;
133
- };
134
- export type TenantManifestV1SpecArgoCdMetrics = {
135
- enabled: boolean;
136
- };
137
- export type TenantManifestV1SpecArgoCdComponentConfig = {
138
- metrics?: TenantManifestV1SpecArgoCdMetrics;
139
- podAnnotations?: {
140
- [key: string]: string;
141
- };
142
- };
143
- export type TenantManifestV1SpecArgoCdConfigsSsh = {
144
- extraHosts: string;
145
- };
146
- export type TenantManifestV1SpecArgoCdConfigsTls = {
147
- certificates: {
148
- [key: string]: string;
149
- };
150
- };
151
- export type TenantManifestV1SpecArgoCdConfigs = {
152
- ssh?: TenantManifestV1SpecArgoCdConfigsSsh;
153
- tls?: TenantManifestV1SpecArgoCdConfigsTls;
154
- repositories?: {
155
- [key: string]: object;
156
- };
157
- credentialTemplates?: {
158
- [key: string]: object;
159
- };
160
- };
161
- export type TenantManifestV1SpecArgoCd = {
162
- chart?: TenantManifestV1SpecHelmResource;
163
- server?: TenantManifestV1SpecArgoCdComponentConfig;
164
- controller?: TenantManifestV1SpecArgoCdComponentConfig;
165
- applicationSet?: TenantManifestV1SpecArgoCdComponentConfig;
166
- repoServer?: TenantManifestV1SpecArgoCdComponentConfig;
167
- configs?: TenantManifestV1SpecArgoCdConfigs;
168
- };
169
- export type TenantManifestV1SpecKarpenterNodeClass = {
170
- name?: string;
171
- amiType?: string;
172
- amiVersion?: string;
173
- amiId?: string;
174
- detailedMonitoring?: boolean;
175
- volumeSize?: number;
176
- metadataOptions?: {
177
- [key: string]: object;
178
- };
179
- subnetIds?: string[];
180
- userData?: string;
181
- };
182
- export type TenantManifestV1SpecKarpenterNodePoolLimits = {
183
- cpu: string;
184
- memory: string;
185
- };
186
- export type TenantManifestV1SpecKarpenterNodePoolInstanceFamilies = {
187
- amd?: string[];
188
- arm?: string[];
189
- };
190
- export type TenantManifestV1SpecKarpenterNodePool = {
191
- /** Name of the NodePool */
192
- name?: string;
193
- /** Resource limits for the NodePool */
194
- limits?: TenantManifestV1SpecKarpenterNodePoolLimits;
195
- /** The amount of time a node can live on the cluster before being deleted by Karpenter */
196
- expireAfter?: string;
197
- /** Instance sizes to use with this NodePool */
198
- instanceSizes?: string[];
199
- /** Instance families to use with this NodePool */
200
- instanceFamilies?: TenantManifestV1SpecKarpenterNodePoolInstanceFamilies;
201
- /** Instance architecture to use with this NodePool (valid values: amd, arm) */
202
- architecture?: string;
203
- /** Availability zones to use with this NodePool */
204
- zones?: string[];
205
- /** Instance capacity type to use with this NodePool (valid values: spot, on-demand, reserved) */
206
- capacityType?: string;
207
- /** Node Class resource to associate this NodePool with */
208
- nodeClassName?: string;
209
- /** Configuration for Karpenter to disrupt nodes through your NodePool */
210
- disruption?: {
211
- [key: string]: object;
212
- };
213
- /** Taints to add to provisioned nodes */
214
- taints?: {
215
- [key: string]: object;
216
- }[];
217
- };
218
- export type TenantManifestV1SpecKarpenter = {
219
- chart?: TenantManifestV1SpecHelmResource;
220
- customAnnotations?: {
221
- [key: string]: string;
222
- };
223
- replicas?: number;
224
- podAnnotations?: {
225
- [key: string]: string;
226
- };
227
- defaultNodeClass?: TenantManifestV1SpecKarpenterNodeClass;
228
- additionalNodeClasses?: TenantManifestV1SpecKarpenterNodeClass[];
229
- defaultNodePool?: TenantManifestV1SpecKarpenterNodePool;
230
- additionalNodePools?: TenantManifestV1SpecKarpenterNodePool[];
231
- };
232
- export type TenantManifestV1SpecExternalSecretsHelmRepoConfig = {
233
- url: string;
234
- username?: string;
235
- password?: string;
236
- };
237
- export type TenantManifestV1SpecExternalSecrets = {
238
- enabled?: boolean;
239
- chart?: TenantManifestV1SpecHelmResource;
240
- helmRepo?: TenantManifestV1SpecExternalSecretsHelmRepoConfig;
241
- enableMetrics?: boolean;
242
- podAnnotations?: {
243
- [key: string]: string;
244
- };
245
- };
246
- export type TenantManifestV1SpecFargateConfiguration = {
247
- /** Set the Fargate Profile IAM role. If empty, it will be autocreated */
248
- roleArn?: string;
249
- /** Define selectors use with the Fargate Profile (defaults to Karpenter and coreDNS) */
250
- selector?: {
251
- [key: string]: object;
252
- }[];
253
- };
254
- export type TenantManifestV1SpecCrossplaneMetrics = {
255
- enabled?: boolean;
256
- };
257
- export type TenantManifestV1SpecCrossplaneProvider = {
258
- services?: string[];
259
- version: string;
260
- repo: string;
261
- };
262
- export type TenantManifestV1SpecCrossplaneDefaultProvider = {
263
- aws?: TenantManifestV1SpecCrossplaneProvider;
264
- kubernetes?: TenantManifestV1SpecCrossplaneProvider;
265
- };
266
- export type TenantManifestV1SpecCrossplaneFunction = {
267
- name: string;
268
- version: string;
269
- repo: string;
270
- };
271
- export type TenantManifestV1SpecCrossplane = {
272
- chart?: TenantManifestV1SpecHelmResource;
273
- replicas?: number;
274
- registryCaBundleConfig?: {
275
- [key: string]: object;
276
- };
277
- metrics?: TenantManifestV1SpecCrossplaneMetrics;
278
- customAnnotations?: {
279
- [key: string]: string;
280
- };
281
- defaultProviders?: TenantManifestV1SpecCrossplaneDefaultProvider;
282
- defaultFunctions?: TenantManifestV1SpecCrossplaneFunction[];
283
- additionalFunctions?: TenantManifestV1SpecCrossplaneFunction[];
284
- };
285
- export type TenantManifestV1SpecDefaultEksAddonsVersions = {
286
- coreDns?: string;
287
- podIdentity?: string;
288
- vpcCni?: string;
289
- kubeProxy?: string;
290
- };
291
- export type TenantManifestV1SpecDefaultEksAddonsConfigurationValues = {
292
- coreDns?: string;
293
- podIdentity?: string;
294
- vpcCni?: string;
295
- kubeProxy?: string;
296
- };
297
- export type TenantManifestV1SpecDefaultEksAddons = {
298
- versions?: TenantManifestV1SpecDefaultEksAddonsVersions;
299
- configurationValues?: TenantManifestV1SpecDefaultEksAddonsConfigurationValues;
300
- };
301
- export type TenantManifestV1SpecEksAddon = {
302
- name: string;
303
- version: string;
304
- configurationValues?: string;
305
- };
306
- export type TenantManifestV1SpecEncryptionConfig = {
307
- autoCreate?: boolean;
308
- kmsKeyArn?: string;
309
- };
310
- export type TenantManifestV1SpecCustomLogGroup = {
311
- enabled?: boolean;
312
- retention?: number;
313
- kmsKeyArn?: string;
314
- autoCreateKmsKey?: boolean;
315
- };
316
- export type TenantManifestV1SpecSecurityGroupRule = {
317
- name: string;
318
- "type": string;
319
- description: string;
320
- protocol: string;
321
- fromPort: number;
322
- toPort: number;
323
- sourceCidr?: string;
324
- sourceIsNodeGroup?: boolean;
325
- sourcePrefixListId?: string;
326
- sourceIsCluster?: boolean;
327
- sourceIsSelf?: boolean;
328
- destinationCidr?: string;
329
- };
330
- export type TenantManifestV1SpecSecurityGroup = {
331
- autoCreate?: boolean;
332
- ids?: string[];
333
- additionalRules?: TenantManifestV1SpecSecurityGroupRule[];
334
- };
335
- export type TenantManifestV1SpecControlPlane = {
336
- addons: TenantManifestV1SpecAddonReference[];
337
- instanceTypes?: string[];
338
- kubernetes: TenantManifestV1SpecKubernetes;
339
- nodeGroup?: TenantManifestV1SpecNodeGroup;
340
- stackspotCloudPlatform?: TenantManifestV1SpecStackspotCloudPlatform;
341
- crossplaneNamespace: string;
342
- eksHelm?: TenantManifestV1SpecHelmResource;
343
- seleneHelm?: TenantManifestV1SpecHelmResource;
344
- seleneApps?: TenantManifestV1SpecSeleneApps;
345
- iamProvider?: "AWS" | "ITAU";
346
- postBootstrapUserData?: string;
347
- bootstrapClusterCreatorAdminPermissions?: boolean;
348
- enabledClusterLogTypes?: string[];
349
- argoCd?: TenantManifestV1SpecArgoCd;
350
- controlPlaneCustomAnnotations?: {
351
- [key: string]: string;
352
- };
353
- karpenter?: TenantManifestV1SpecKarpenter;
354
- authenticationMode?: "API" | "API_AND_CONFIG_MAP" | "CONFIG_MAP";
355
- supportType?: string;
356
- externalSecrets?: TenantManifestV1SpecExternalSecrets;
357
- fargateConfiguration?: TenantManifestV1SpecFargateConfiguration;
358
- crossplane?: TenantManifestV1SpecCrossplane;
359
- defaultEksAddons?: TenantManifestV1SpecDefaultEksAddons;
360
- additionalEksAddons?: TenantManifestV1SpecEksAddon[];
361
- encryptionConfig?: TenantManifestV1SpecEncryptionConfig;
362
- customLogGroup?: TenantManifestV1SpecCustomLogGroup;
363
- clusterSecurityGroup?: TenantManifestV1SpecSecurityGroup;
364
- nodeSecurityGroup?: TenantManifestV1SpecSecurityGroup;
365
- };
366
- export type TenantManifestV1SpecItauConfig = {
367
- iamsrProviderRoleArn: string;
368
- iamsrApiToken?: string;
369
- iamsrCerts?: string;
370
- };
371
- export type TenantManifestV1Spec = {
372
- context: string;
373
- additionalSuffix?: string;
374
- organizationId: string;
375
- cloudAccountConfiguration: TenantManifestV1SpecCloudAccountConfiguration;
376
- controlPlane: TenantManifestV1SpecControlPlane;
377
- itau?: TenantManifestV1SpecItauConfig;
378
- };
379
- export type TenantManifestV1StatusControlPlaneCondition = {
380
- id?: string;
381
- "type": string;
382
- status: string;
383
- reason: string;
384
- message: string;
385
- lastTransitionTime: string;
386
- };
387
- export type TenantManifestV1StatusControlPlane = {
388
- id: string;
389
- name: string;
390
- active?: boolean;
391
- status: string;
392
- kubeVersion: string;
393
- conditions: TenantManifestV1StatusControlPlaneCondition[];
394
- };
395
- export type TenantManifestV1Runtime = {
396
- id: string;
397
- name: string;
398
- status: string;
399
- };
400
- export type TenantManifestV1Status = {
401
- created: boolean;
402
- ready: boolean;
403
- organizationName?: string;
404
- controlPlanes?: TenantManifestV1StatusControlPlane[];
405
- runtimes?: TenantManifestV1Runtime[];
406
- };
407
- export type TenantManifestV1 = {
408
- metadata: MetadataV1;
409
- spec: TenantManifestV1Spec;
410
- status?: TenantManifestV1Status;
411
- };
412
- export type RuntimeManifestV1Alpha1SpecCloudAccountConfigurationFromRef = {
413
- id: string;
414
- };
415
- export type RuntimeManifestV1Alpha1SpecCloudAccountConfigurationIamRoles = {
416
- clusterRole?: string;
417
- nodeRole?: string;
418
- clusterNodeGroup?: string;
419
- clusterAdminRoles: string[];
420
- karpenter?: string;
421
- crossAccountRoleArn?: string;
422
- };
423
- export type RuntimeManifestV1Alpha1SpecCloudAccountConfiguration = {
424
- fromRef?: RuntimeManifestV1Alpha1SpecCloudAccountConfigurationFromRef;
425
- cloudProvider: string;
426
- accountId: string;
427
- region: string;
428
- vpcId: string;
429
- subnetIds: string[];
430
- customAmi?: string;
431
- iamRoles: RuntimeManifestV1Alpha1SpecCloudAccountConfigurationIamRoles;
432
- };
433
- export type RuntimeManifestV1Alpha1SpecControlPlaneAddonReference = {
434
- /** Name of the registered addon */
435
- name: string;
436
- /** Version of the registered addon */
437
- version: string;
438
- /** Context for this addon */
439
- context: string;
440
- "namespace": string;
441
- values?: {
442
- [key: string]: object;
443
- };
444
- };
445
- export type RuntimeManifestV1Alpha1SpecKubernetesNetworkConfig = {
446
- ipFamily?: string;
447
- serviceIpv4Cidr?: string;
448
- };
449
- export type RuntimeManifestV1Alpha1SpecKubernetes = {
450
- publicAccess: boolean;
451
- privateAccess: boolean;
452
- version: string;
453
- publicCidrsAllowed: string[];
454
- privateCidrsAllowed?: string[];
455
- extraCidrsInbound?: string[];
456
- networkConfig?: RuntimeManifestV1Alpha1SpecKubernetesNetworkConfig;
457
- };
458
- export type RuntimeManifestV1Alpha1SpecNodeGroup = {
459
- volumeSize?: number;
460
- amiType?: string;
461
- capacityType?: string;
462
- desiredSize?: number;
463
- maxSize?: number;
464
- minSize?: number;
465
- };
466
- export type RuntimeManifestV1Alpha1SpecStackspotCloudPlatform = {
467
- createIamRoles: boolean;
468
- };
469
- export type RuntimeManifestV1Alpha1SpecHelmResource = {
470
- chartName: string;
471
- version: string;
472
- repoUrl: string;
473
- };
474
- export type RuntimeManifestV1Alpha1SpecKarpenterNodeClass = {
475
- name?: string;
476
- amiType?: string;
477
- amiVersion?: string;
478
- amiId?: string;
479
- detailedMonitoring?: boolean;
480
- volumeSize?: number;
481
- metadataOptions?: {
482
- [key: string]: object;
483
- };
484
- subnetIds?: string[];
485
- userData?: string;
486
- };
487
- export type RuntimeManifestV1Alpha1SpecKarpenterNodePoolLimits = {
488
- cpu: string;
489
- memory: string;
490
- };
491
- export type RuntimeManifestV1Alpha1SpecKarpenterNodePoolInstanceFamilies = {
492
- amd?: string[];
493
- arm?: string[];
494
- };
495
- export type RuntimeManifestV1Alpha1SpecKarpenterNodePool = {
496
- /** Name of the NodePool */
497
- name?: string;
498
- /** Resource limits for the NodePool */
499
- limits?: RuntimeManifestV1Alpha1SpecKarpenterNodePoolLimits;
500
- /** The amount of time a node can live on the cluster before being deleted by Karpenter */
501
- expireAfter?: string;
502
- /** Instance sizes to use with this NodePool */
503
- instanceSizes?: string[];
504
- /** Instance families to use with this NodePool */
505
- instanceFamilies?: RuntimeManifestV1Alpha1SpecKarpenterNodePoolInstanceFamilies;
506
- /** Instance architecture to use with this NodePool (valid values: amd, arm) */
507
- architecture?: string;
508
- /** Availability zones to use with this NodePool */
509
- zones?: string[];
510
- /** Instance capacity type to use with this NodePool (valid values: spot, on-demand, reserved) */
511
- capacityType?: string;
512
- /** Node Class resource to associate this NodePool with */
513
- nodeClassName?: string;
514
- /** Configuration for Karpenter to disrupt nodes through your NodePool */
515
- disruption?: {
516
- [key: string]: object;
517
- };
518
- /** Taints to add to provisioned nodes */
519
- taints?: {
520
- [key: string]: object;
521
- }[];
522
- };
523
- export type RuntimeManifestV1Alpha1SpecKarpenter = {
524
- chart?: RuntimeManifestV1Alpha1SpecHelmResource;
525
- customAnnotations?: {
526
- [key: string]: string;
527
- };
528
- replicas?: number;
529
- podAnnotations?: {
530
- [key: string]: string;
531
- };
532
- defaultNodeClass?: RuntimeManifestV1Alpha1SpecKarpenterNodeClass;
533
- additionalNodeClasses?: RuntimeManifestV1Alpha1SpecKarpenterNodeClass[];
534
- defaultNodePool?: RuntimeManifestV1Alpha1SpecKarpenterNodePool;
535
- additionalNodePools?: RuntimeManifestV1Alpha1SpecKarpenterNodePool[];
536
- };
537
- export type RuntimeManifestV1Alpha1SpecFargateConfiguration = {
538
- /** Set the Fargate Profile IAM role. If empty, it will be autocreated */
539
- roleArn?: string;
540
- /** Define selectors use with the Fargate Profile (defaults to Karpenter and coreDNS) */
541
- selector?: {
542
- [key: string]: object;
543
- }[];
544
- };
545
- export type RuntimeManifestV1Alpha1SpecDefaultEksAddonsVersions = {
546
- coreDns?: string;
547
- podIdentity?: string;
548
- vpcCni?: string;
549
- kubeProxy?: string;
550
- };
551
- export type RuntimeManifestV1Alpha1SpecDefaultEksAddonsConfigurationValues = {
552
- coreDns?: string;
553
- podIdentity?: string;
554
- vpcCni?: string;
555
- kubeProxy?: string;
556
- };
557
- export type RuntimeManifestV1Alpha1SpecDefaultEksAddons = {
558
- versions?: RuntimeManifestV1Alpha1SpecDefaultEksAddonsVersions;
559
- configurationValues?: RuntimeManifestV1Alpha1SpecDefaultEksAddonsConfigurationValues;
560
- };
561
- export type RuntimeManifestV1Alpha1SpecEksAddon = {
562
- name: string;
563
- version: string;
564
- configurationValues?: string;
565
- };
566
- export type RuntimeManifestV1Alpha1SpecEncryptionConfig = {
567
- autoCreate?: boolean;
568
- kmsKeyArn?: string;
569
- };
570
- export type RuntimeManifestV1Alpha1SpecCustomLogGroup = {
571
- enabled?: boolean;
572
- retention?: number;
573
- kmsKeyArn?: string;
574
- autoCreateKmsKey?: boolean;
575
- };
576
- export type RuntimeManifestV1Alpha1SpecSecurityGroupRule = {
577
- name: string;
578
- "type": string;
579
- description: string;
580
- protocol: string;
581
- fromPort: number;
582
- toPort: number;
583
- sourceCidr?: string;
584
- sourceIsNodeGroup?: boolean;
585
- sourcePrefixListId?: string;
586
- sourceIsCluster?: boolean;
587
- sourceIsSelf?: boolean;
588
- destinationCidr?: string;
589
- };
590
- export type RuntimeManifestV1Alpha1SpecSecurityGroup = {
591
- autoCreate?: boolean;
592
- ids?: string[];
593
- additionalRules?: RuntimeManifestV1Alpha1SpecSecurityGroupRule[];
594
- };
595
- export type RuntimeManifestV1Alpha1SpecControlPlane = {
596
- addons?: RuntimeManifestV1Alpha1SpecControlPlaneAddonReference[];
597
- instanceTypes?: string[];
598
- kubernetes: RuntimeManifestV1Alpha1SpecKubernetes;
599
- nodeGroup?: RuntimeManifestV1Alpha1SpecNodeGroup;
600
- stackspotCloudPlatform?: RuntimeManifestV1Alpha1SpecStackspotCloudPlatform;
601
- eksHelm?: RuntimeManifestV1Alpha1SpecHelmResource;
602
- iamProvider?: "AWS" | "ITAU";
603
- authenticationMode?: "API" | "API_AND_CONFIG_MAP" | "CONFIG_MAP";
604
- postBootstrapUserData?: string;
605
- bootstrapClusterCreatorAdminPermissions?: boolean;
606
- enabledClusterLogTypes?: string[];
607
- argoConfigs?: {
608
- [key: string]: object;
609
- };
610
- karpenter?: RuntimeManifestV1Alpha1SpecKarpenter;
611
- fargateConfiguration?: RuntimeManifestV1Alpha1SpecFargateConfiguration;
612
- defaultEksAddons?: RuntimeManifestV1Alpha1SpecDefaultEksAddons;
613
- additionalEksAddons?: RuntimeManifestV1Alpha1SpecEksAddon[];
614
- encryptionConfig?: RuntimeManifestV1Alpha1SpecEncryptionConfig;
615
- customLogGroup?: RuntimeManifestV1Alpha1SpecCustomLogGroup;
616
- clusterSecurityGroup?: RuntimeManifestV1Alpha1SpecSecurityGroup;
617
- nodeSecurityGroup?: RuntimeManifestV1Alpha1SpecSecurityGroup;
618
- };
619
- export type RuntimeManifestV1Alpha1SpecItauConfig = {
620
- iamsrProviderRoleArn: string;
621
- iamsrApiToken?: string;
622
- iamsrCerts?: string;
623
- };
624
- export type RuntimeManifestV1Alpha1Spec = {
625
- context: string;
626
- additionalSuffix?: string;
627
- tenantId: string;
628
- cloudAccountConfiguration: RuntimeManifestV1Alpha1SpecCloudAccountConfiguration;
629
- controlPlane: RuntimeManifestV1Alpha1SpecControlPlane;
630
- itau?: RuntimeManifestV1Alpha1SpecItauConfig;
631
- };
632
- export type RuntimeManifestV1Alpha1StatusControlPlaneCondition = {
633
- id?: string;
634
- "type": string;
635
- status: string;
636
- reason: string;
637
- message: string;
638
- lastTransitionTime: string;
639
- };
640
- export type RuntimeManifestV1Alpha1StatusControlPlane = {
641
- id: string;
642
- name: string;
643
- active?: boolean;
644
- status: string;
645
- kubeVersion: string;
646
- conditions: RuntimeManifestV1Alpha1StatusControlPlaneCondition[];
647
- };
648
- export type ManifestStatus = object;
649
- export type ManifestMetadata = {
650
- propagableLabels?: {
651
- [key: string]: string;
652
- };
653
- name: string;
654
- id?: string;
655
- version: string;
656
- labels?: {
657
- [key: string]: string;
658
- };
659
- };
660
- export type ManifestSpec = object;
661
- export type ApplicationDeploymentManifestBase = {
662
- status?: ManifestStatus;
663
- metadata: ManifestMetadata;
664
- spec: ManifestSpec;
665
- apiVersion: string;
666
- };
667
- export type ApplicationDeploymentManifestV1Spec = {
668
- runtimeId?: string;
669
- destinationNamespace?: string;
670
- applicationId: string;
671
- environment?: string;
672
- workspaceId?: string;
673
- deployTemplate?: string;
674
- deployTemplateValues: {
675
- [key: string]: object;
676
- };
677
- };
678
- export type ApplicationDeploymentManifestV1Status = {
679
- revisionNumber?: number;
680
- runtimeId?: string;
681
- };
682
- export type ApplicationDeploymentManifestV1 = {
683
- apiVersion: "ApplicationDeploymentManifestV1";
684
- } & ApplicationDeploymentManifestBase & {
685
- metadata: MetadataV1;
686
- spec: ApplicationDeploymentManifestV1Spec;
687
- status?: ApplicationDeploymentManifestV1Status;
688
- };
689
- export type Metadata = {
690
- id?: string;
691
- name: string;
692
- appVersion: string;
693
- labels: {
694
- [key: string]: string;
695
- };
696
- tags: {
697
- [key: string]: string;
698
- };
699
- };
700
- export type Spec = {
701
- runtimeId: string;
702
- applicationId?: string;
703
- blueprint: string;
704
- blueprintValues: {
705
- [key: string]: object;
706
- };
707
- };
708
- export type ApplicationDeploymentManifestV1Alpha1 = {
709
- apiVersion: "ApplicationDeploymentManifestV1Alpha1";
710
- } & ApplicationDeploymentManifestBase & {
711
- metadata: Metadata;
712
- spec: Spec;
713
- };
714
- export type RuntimeManifestV1Alpha1Status = {
715
- created: boolean;
716
- ready: boolean;
717
- organizationName?: string;
718
- organizationId?: string;
719
- tenantName?: string;
720
- controlPlanes?: RuntimeManifestV1Alpha1StatusControlPlane[];
721
- applicationDeployments?: (ApplicationDeploymentManifestV1 | ApplicationDeploymentManifestV1Alpha1)[];
722
- };
723
- export type RuntimeManifestV1 = {
724
- metadata: MetadataV1;
725
- spec: RuntimeManifestV1Alpha1Spec;
726
- status?: RuntimeManifestV1Alpha1Status;
727
- };
728
- export type OrganizationManifestV1Spec = {
729
- stackspotAccountId: string;
730
- };
731
- export type OrganizationManifestV1StatusControlPlane = {
732
- id: string;
733
- name: string;
734
- active: boolean;
735
- status: string;
736
- kubeVersion: string;
737
- };
738
- export type OrganizationManifestV1Status = {
739
- created: boolean;
740
- ready: boolean;
741
- controlPlanes?: OrganizationManifestV1StatusControlPlane[];
742
- };
743
- export type OrganizationManifestV1 = {
744
- metadata: MetadataV1;
745
- spec: OrganizationManifestV1Spec;
746
- status?: OrganizationManifestV1Status;
747
- };
748
- export type AssociateRuntimeWithWorkspaceEnvironmentRequest = {
749
- runtimeIds: string[];
750
- workspaceId: string;
751
- workspaceName: string;
752
- environmentId: string;
753
- environmentName: string;
754
- applicationId?: string;
755
- applicationName?: string;
756
- };
757
- export type AssociateRuntimeWithWorkspaceEnvironmentResponse = {
758
- runtimeId: string;
759
- workspaceId: string;
760
- workspaceName: string;
761
- environmentId: string;
762
- environmentName: string;
763
- applicationId?: string;
764
- applicationName?: string;
765
- };
766
- export type DeployTemplateManifestV1SpecHelm = {
767
- chartName: string;
768
- repositoryUrl: string;
769
- version: string;
770
- };
771
- export type DeployTemplateManifestV1Spec = {
772
- helm: DeployTemplateManifestV1SpecHelm;
773
- valuesSchema?: object;
774
- organizationId: string;
775
- };
776
- export type DeployTemplateManifestV1 = {
777
- metadata: MetadataV1;
778
- spec: DeployTemplateManifestV1Spec;
779
- };
780
- export type AddonManifestV1Alpha1SpecSpecHelm = {
781
- chartName: string;
782
- repositoryUrl: string;
783
- version: string;
784
- };
785
- export type AddonManifestV1Alpha1Spec = {
786
- helm: AddonManifestV1Alpha1SpecSpecHelm;
787
- valuesSchema?: object;
788
- organizationId: string;
789
- };
790
- export type AddonManifestV1 = {
791
- metadata: MetadataV1;
792
- spec: AddonManifestV1Alpha1Spec;
793
- };
794
- export type RuntimeSummary = {
795
- runtimeName: string;
796
- runtimeId: string;
797
- environmentId: string;
798
- tenantName: string;
799
- tenantId: string;
800
- organizationName: string;
801
- organizationId: string;
802
- addons: string[];
803
- };
804
- export type Association = {
805
- workspaceId: string;
806
- environmentId: string;
807
- applicationId?: string;
808
- runtimes: RuntimeSummary[];
809
- };
810
- export type ListRuntimeWorkspaceEnvironmentAssociationsResponse = {
811
- associations: Association[];
812
- };
813
- export type RolloutManifestV1Metadata = {
814
- id?: string;
815
- name: string;
816
- version: string;
817
- labels?: {
818
- [key: string]: string;
819
- };
820
- propagableLabels?: {
821
- [key: string]: string;
822
- };
823
- revision: string;
824
- "namespace": string;
825
- creationTimestamp?: string;
826
- };
827
- export type RolloutManifestV1Spec = {
828
- resourceId: string;
829
- replicas?: number;
830
- strategy?: {
831
- [key: string]: object;
832
- };
833
- template?: {
834
- [key: string]: object;
835
- };
836
- "type": string;
837
- };
838
- export type RolloutManifestV1Status = {
839
- availableReplicas?: number;
840
- blueGreen?: {
841
- [key: string]: object;
842
- };
843
- canary?: {
844
- [key: string]: object;
845
- };
846
- conditions?: {
847
- [key: string]: object;
848
- }[];
849
- currentPodHash?: string;
850
- currentStepHash?: string;
851
- currentStepIndex?: number;
852
- observedGeneration?: string;
853
- phase?: string;
854
- readyReplicas?: number;
855
- replicas?: number;
856
- restartedAt?: string;
857
- selector?: string;
858
- stableRS?: string;
859
- updatedReplicas?: number;
860
- controllerPause?: boolean;
861
- message?: string;
862
- pauseConditions?: {
863
- [key: string]: object;
864
- }[];
865
- abort?: boolean;
866
- abortedAt?: string;
867
- promoteFull?: boolean;
868
- hpareplicas?: number;
869
- };
870
- export type RolloutManifestV1StatusWrite = {
871
- HPAReplicas?: number;
872
- availableReplicas?: number;
873
- blueGreen?: {
874
- [key: string]: object;
875
- };
876
- canary?: {
877
- [key: string]: object;
878
- };
879
- conditions?: {
880
- [key: string]: object;
881
- }[];
882
- currentPodHash?: string;
883
- currentStepHash?: string;
884
- currentStepIndex?: number;
885
- observedGeneration?: string;
886
- phase?: string;
887
- readyReplicas?: number;
888
- replicas?: number;
889
- restartedAt?: string;
890
- selector?: string;
891
- stableRS?: string;
892
- updatedReplicas?: number;
893
- controllerPause?: boolean;
894
- message?: string;
895
- pauseConditions?: {
896
- [key: string]: object;
897
- }[];
898
- abort?: boolean;
899
- abortedAt?: string;
900
- promoteFull?: boolean;
901
- hpareplicas?: number;
902
- };
903
- export type RolloutManifestV1 = {
904
- metadata: RolloutManifestV1Metadata;
905
- spec: RolloutManifestV1Spec;
906
- status?: RolloutManifestV1Status;
907
- };
908
- export type RolloutManifestV1Write = {
909
- metadata: RolloutManifestV1Metadata;
910
- spec: RolloutManifestV1Spec;
911
- status?: RolloutManifestV1StatusWrite;
912
- };
913
- export type LogManifestV1Spec = {
914
- resourceId: string;
915
- controlPlaneId?: string;
916
- name?: string;
917
- numberOfLines: number;
918
- "type": string;
919
- };
920
- export type LogManifestV1Status = {
921
- fetchLogsTimestamp: string;
922
- logs: string[];
923
- };
924
- export type LogManifestV1 = {
925
- metadata: MetadataV1;
926
- spec: LogManifestV1Spec;
927
- status?: LogManifestV1Status;
928
- };
929
- export type HealthManifestV1Spec = {
930
- "type": string;
931
- resourceId: string;
932
- controlPlaneId?: string;
933
- };
934
- export type HealthManifestV1StatusPodResource = {
935
- cpu: string;
936
- memory: string;
937
- };
938
- export type HealthManifestV1StatusPod = {
939
- name: string;
940
- uptime: string;
941
- restarts: string;
942
- status: string;
943
- containers: string;
944
- healthStatus: string;
945
- image: string;
946
- limits: HealthManifestV1StatusPodResource;
947
- requests: HealthManifestV1StatusPodResource;
948
- };
949
- export type HealthManifestV1Status = {
950
- fetchHealthTimestamp: string;
951
- healthStatus: string;
952
- pods: HealthManifestV1StatusPod[];
953
- };
954
- export type HealthManifestV1 = {
955
- metadata: MetadataV1;
956
- spec: HealthManifestV1Spec;
957
- status?: HealthManifestV1Status;
958
- };
959
- /**
960
- * Retrieves the organization's icon image.
961
- */
962
- export declare function getOrganizationIcon({ organizationId }: {
963
- organizationId: string;
964
- }, opts?: Oazapfts.RequestOpts): Promise<Blob>;
965
- /**
966
- * Uploads or update the organization's icon.
967
- */
968
- export declare function createOrUpdateOrganizationIcon({ organizationId, body }: {
969
- organizationId: string;
970
- body?: {
971
- icon: Blob;
972
- };
973
- }, opts?: Oazapfts.RequestOpts): Promise<object>;
974
- /**
975
- * Uploads the organization's icon.
976
- */
977
- export declare function createOrganizationIcon({ organizationId, body }: {
978
- organizationId: string;
979
- body?: {
980
- icon: Blob;
981
- };
982
- }, opts?: Oazapfts.RequestOpts): Promise<object>;
983
- /**
984
- * List deployment contexts
985
- */
986
- export declare function list({ environment, runtimeId, deployTemplateId, workspaceId, isDefault }: {
987
- environment?: string;
988
- runtimeId?: string;
989
- deployTemplateId?: string;
990
- workspaceId?: string;
991
- isDefault?: boolean;
992
- }, opts?: Oazapfts.RequestOpts): Promise<DeploymentContextManifestV1[]>;
993
- /**
994
- * Updates a deployment context
995
- */
996
- export declare function update({ deploymentContextManifestV1 }: {
997
- deploymentContextManifestV1: DeploymentContextManifestV1;
998
- }, opts?: Oazapfts.RequestOpts): Promise<unknown>;
999
- /**
1000
- * Create a Deployment Context
1001
- */
1002
- export declare function create({ deploymentContextManifestV1 }: {
1003
- deploymentContextManifestV1: DeploymentContextManifestV1;
1004
- }, opts?: Oazapfts.RequestOpts): Promise<DeploymentContextManifestV1>;
1005
- /**
1006
- * List all tenants in the stackspot account
1007
- */
1008
- export declare function listTenants({ xAccountId, page, perPage }: {
1009
- xAccountId?: string;
1010
- page?: number;
1011
- perPage?: number;
1012
- }, opts?: Oazapfts.RequestOpts): Promise<TenantManifestV1[]>;
1013
- /**
1014
- * Creates a new tenant.
1015
- */
1016
- export declare function createTenant({ tenantManifestV1 }: {
1017
- tenantManifestV1: TenantManifestV1;
1018
- }, opts?: Oazapfts.RequestOpts): Promise<unknown>;
1019
- /**
1020
- * Returns paginated runtimes.
1021
- */
1022
- export declare function listRuntimes({ xAccountId, page, perPage }: {
1023
- xAccountId?: string;
1024
- page?: number;
1025
- perPage?: number;
1026
- }, opts?: Oazapfts.RequestOpts): Promise<RuntimeManifestV1[]>;
1027
- /**
1028
- * Creates a new runtime.
1029
- */
1030
- export declare function createRuntime({ runtimeManifestV1 }: {
1031
- runtimeManifestV1: RuntimeManifestV1;
1032
- }, opts?: Oazapfts.RequestOpts): Promise<unknown>;
1033
- /**
1034
- * Retrieves the Stackspot account organization
1035
- */
1036
- export declare function getOrganizations({ xAccountId, page, perPage }: {
1037
- xAccountId?: string;
1038
- page?: number;
1039
- perPage?: number;
1040
- }, opts?: Oazapfts.RequestOpts): Promise<OrganizationManifestV1[]>;
1041
- /**
1042
- * Creates a new organization.
1043
- */
1044
- export declare function createOrganization({ organizationManifestV1 }: {
1045
- organizationManifestV1: OrganizationManifestV1;
1046
- }, opts?: Oazapfts.RequestOpts): Promise<OrganizationManifestV1>;
1047
- /**
1048
- * Returns paginated tenants.
1049
- */
1050
- export declare function listTenants1({ organizationId, page, perPage }: {
1051
- organizationId: string;
1052
- page?: number;
1053
- perPage?: number;
1054
- }, opts?: Oazapfts.RequestOpts): Promise<TenantManifestV1[]>;
1055
- /**
1056
- * Creates a new tenant.
1057
- */
1058
- export declare function createTenant1({ organizationId, tenantManifestV1 }: {
1059
- organizationId: string;
1060
- tenantManifestV1: TenantManifestV1;
1061
- }, opts?: Oazapfts.RequestOpts): Promise<TenantManifestV1>;
1062
- /**
1063
- * Returns paginated runtimes.
1064
- */
1065
- export declare function listRuntimes1({ organizationId, tenantId, page, perPage }: {
1066
- organizationId: string;
1067
- tenantId: string;
1068
- page?: number;
1069
- perPage?: number;
1070
- }, opts?: Oazapfts.RequestOpts): Promise<RuntimeManifestV1[]>;
1071
- /**
1072
- * Creates a new runtime.
1073
- */
1074
- export declare function createRuntime1({ organizationId, tenantId, runtimeManifestV1 }: {
1075
- organizationId: string;
1076
- tenantId: string;
1077
- runtimeManifestV1: RuntimeManifestV1;
1078
- }, opts?: Oazapfts.RequestOpts): Promise<RuntimeManifestV1>;
1079
- /**
1080
- *
1081
- * Requires one of the following permissions:
1082
- * - cloud_platform:*:view
1083
- * - cloud_platform:*:support
1084
- *
1085
- */
1086
- export declare function listApplicationDeployments({ organizationId, tenantId, runtimeId }: {
1087
- organizationId: string;
1088
- tenantId: string;
1089
- runtimeId: string;
1090
- }, opts?: Oazapfts.RequestOpts): Promise<ApplicationDeploymentManifestV1[]>;
1091
- /**
1092
- * Apply manifesto resource yaml.
1093
- */
1094
- export declare function deploy({ organizationId, tenantId, runtimeId, applicationDeploymentManifestV1 }: {
1095
- organizationId: string;
1096
- tenantId: string;
1097
- runtimeId: string;
1098
- applicationDeploymentManifestV1: ApplicationDeploymentManifestV1;
1099
- }, opts?: Oazapfts.RequestOpts): Promise<ApplicationDeploymentManifestV1>;
1100
- /**
1101
- * Execute a rollout action on an application deployment.
1102
- */
1103
- export declare function postApplicationDeploymentRolloutAction({ organizationId, tenantId, runtimeId, deploymentId, action }: {
1104
- organizationId: string;
1105
- tenantId: string;
1106
- runtimeId: string;
1107
- deploymentId: string;
1108
- action: string;
1109
- }, opts?: Oazapfts.RequestOpts): Promise<string>;
1110
- /**
1111
- * Associate a runtime with a workspace's environment
1112
- */
1113
- export declare function associateWithWorkspaceEnvironment({ xAccountId, organizationId, tenantId, associateRuntimeWithWorkspaceEnvironmentRequest }: {
1114
- xAccountId?: string;
1115
- organizationId: string;
1116
- tenantId: string;
1117
- associateRuntimeWithWorkspaceEnvironmentRequest: AssociateRuntimeWithWorkspaceEnvironmentRequest;
1118
- }, opts?: Oazapfts.RequestOpts): Promise<AssociateRuntimeWithWorkspaceEnvironmentResponse[]>;
1119
- /**
1120
- * List DeployTemplate's
1121
- */
1122
- export declare function listDeployTemplate({ organizationId }: {
1123
- organizationId: string;
1124
- }, opts?: Oazapfts.RequestOpts): Promise<DeployTemplateManifestV1[]>;
1125
- /**
1126
- * Create DeployTemplate
1127
- */
1128
- export declare function createDeployTemplate({ organizationId, deployTemplateManifestV1 }: {
1129
- organizationId: string;
1130
- deployTemplateManifestV1: DeployTemplateManifestV1;
1131
- }, opts?: Oazapfts.RequestOpts): Promise<DeployTemplateManifestV1>;
1132
- /**
1133
- * List Addons
1134
- */
1135
- export declare function listAddon({ organizationId }: {
1136
- organizationId: string;
1137
- }, opts?: Oazapfts.RequestOpts): Promise<AddonManifestV1[]>;
1138
- /**
1139
- * Create Addon
1140
- */
1141
- export declare function createAddon({ organizationId, addonManifestV1 }: {
1142
- organizationId: string;
1143
- addonManifestV1: AddonManifestV1;
1144
- }, opts?: Oazapfts.RequestOpts): Promise<AddonManifestV1>;
1145
- /**
1146
- * List application deployments
1147
- */
1148
- export declare function listApplicationDeployments1(opts?: Oazapfts.RequestOpts): Promise<ApplicationDeploymentManifestV1[]>;
1149
- /**
1150
- * Apply manifesto resource yaml.
1151
- */
1152
- export declare function deploy1({ applicationDeploymentManifestV1 }: {
1153
- applicationDeploymentManifestV1: ApplicationDeploymentManifestV1;
1154
- }, opts?: Oazapfts.RequestOpts): Promise<ApplicationDeploymentManifestV1>;
1155
- /**
1156
- * Retrieves the tenant details.
1157
- */
1158
- export declare function getTenant({ id }: {
1159
- id: string;
1160
- }, opts?: Oazapfts.RequestOpts): Promise<TenantManifestV1>;
1161
- /**
1162
- * Retrieves the runtime details.
1163
- */
1164
- export declare function getRuntime({ id }: {
1165
- id: string;
1166
- }, opts?: Oazapfts.RequestOpts): Promise<RuntimeManifestV1>;
1167
- export declare function listAssociations({ xAccountId, workspaceId, envId, applicationId }: {
1168
- xAccountId?: string;
1169
- workspaceId: string;
1170
- envId?: string;
1171
- applicationId?: string;
1172
- }, opts?: Oazapfts.RequestOpts): Promise<ListRuntimeWorkspaceEnvironmentAssociationsResponse>;
1173
- /**
1174
- * Retrieves associate a runtime with a workspace's environment
1175
- */
1176
- export declare function getAssociationWorkspaceEnvironmentByRuntimeId({ xAccountId, organizationId, tenantId, runtimeId }: {
1177
- xAccountId?: string;
1178
- organizationId: string;
1179
- tenantId: string;
1180
- runtimeId: string;
1181
- }, opts?: Oazapfts.RequestOpts): Promise<AssociateRuntimeWithWorkspaceEnvironmentResponse[]>;
1182
- /**
1183
- *
1184
- * Requires one of the following permissions:
1185
- * - cloud_platform:*:view
1186
- * - cloud_platform:*:support
1187
- *
1188
- */
1189
- export declare function findApplicationDeploymentById({ organizationId, tenantId, runtimeId, deploymentId }: {
1190
- organizationId: string;
1191
- tenantId: string;
1192
- runtimeId: string;
1193
- deploymentId: string;
1194
- }, opts?: Oazapfts.RequestOpts): Promise<ApplicationDeploymentManifestV1>;
1195
- /**
1196
- * Delete application deployment
1197
- */
1198
- export declare function deleteApplicationDeployment({ organizationId, tenantId, runtimeId, deploymentId }: {
1199
- organizationId: string;
1200
- tenantId: string;
1201
- runtimeId: string;
1202
- deploymentId: string;
1203
- }, opts?: Oazapfts.RequestOpts): Promise<string>;
1204
- /**
1205
- * Get application deployment rollout.
1206
- */
1207
- export declare function listApplicationDeploymentRollouts({ organizationId, tenantId, runtimeId, deploymentId }: {
1208
- organizationId: string;
1209
- tenantId: string;
1210
- runtimeId: string;
1211
- deploymentId: string;
1212
- }, opts?: Oazapfts.RequestOpts): Promise<RolloutManifestV1[]>;
1213
- /**
1214
- * Get application deployment logs.
1215
- */
1216
- export declare function getApplicationDeploymentLogs({ organizationId, tenantId, runtimeId, deploymentId, numberOfLines }: {
1217
- organizationId: string;
1218
- tenantId: string;
1219
- runtimeId: string;
1220
- deploymentId: string;
1221
- numberOfLines?: number;
1222
- }, opts?: Oazapfts.RequestOpts): Promise<LogManifestV1>;
1223
- /**
1224
- * Get application deployment health.
1225
- */
1226
- export declare function getApplicationDeploymentHealth({ organizationId, tenantId, runtimeId, deploymentId }: {
1227
- organizationId: string;
1228
- tenantId: string;
1229
- runtimeId: string;
1230
- deploymentId: string;
1231
- }, opts?: Oazapfts.RequestOpts): Promise<HealthManifestV1>;
1232
- /**
1233
- * Retrieves the runtime details.
1234
- */
1235
- export declare function getRuntime1({ organizationId, tenantId, id }: {
1236
- organizationId: string;
1237
- tenantId: string;
1238
- id: string;
1239
- }, opts?: Oazapfts.RequestOpts): Promise<RuntimeManifestV1>;
1240
- /**
1241
- * Retrieves the tenant details.
1242
- */
1243
- export declare function getTenant1({ organizationId, id }: {
1244
- organizationId: string;
1245
- id: string;
1246
- }, opts?: Oazapfts.RequestOpts): Promise<TenantManifestV1>;
1247
- /**
1248
- * Get DeployTemplate
1249
- */
1250
- export declare function getDeployTemplate({ organizationId, deployTemplateId }: {
1251
- organizationId: string;
1252
- deployTemplateId: string;
1253
- }, opts?: Oazapfts.RequestOpts): Promise<DeployTemplateManifestV1>;
1254
- /**
1255
- * Delete DeployTemplate
1256
- */
1257
- export declare function deleteDeployTemplate({ organizationId, deployTemplateId }: {
1258
- organizationId: string;
1259
- deployTemplateId: string;
1260
- }, opts?: Oazapfts.RequestOpts): Promise<DeployTemplateManifestV1>;
1261
- /**
1262
- * Get Addon
1263
- */
1264
- export declare function getAddon({ organizationId, addonId }: {
1265
- organizationId: string;
1266
- addonId: string;
1267
- }, opts?: Oazapfts.RequestOpts): Promise<AddonManifestV1>;
1268
- /**
1269
- * Retrieves the organization by ID
1270
- */
1271
- export declare function getOrganizationById({ organizationId }: {
1272
- organizationId: string;
1273
- }, opts?: Oazapfts.RequestOpts): Promise<OrganizationManifestV1>;
1274
- /**
1275
- * Downloads the bootstrap module for creating a new organization.
1276
- */
1277
- export declare function downloadBootstrapModule({ version }: {
1278
- version?: string;
1279
- }, opts?: Oazapfts.RequestOpts): Promise<Blob>;
1280
- export declare function getTenantExample(opts?: Oazapfts.RequestOpts): Promise<TenantManifestV1>;
1281
- export declare function getRuntimeExample(opts?: Oazapfts.RequestOpts): Promise<RuntimeManifestV1>;
1282
- export declare function getApplicationDeploymentExample(opts?: Oazapfts.RequestOpts): Promise<ApplicationDeploymentManifestV1>;
1283
- /**
1284
- * Get deployment context by ID
1285
- */
1286
- export declare function getV1DeploymentContextsById({ id }: {
1287
- id: string;
1288
- }, opts?: Oazapfts.RequestOpts): Promise<DeploymentContextManifestV1>;
1289
- /**
1290
- * Delete deployment context by ID
1291
- */
1292
- export declare function deleteV1DeploymentContextsById({ id }: {
1293
- id: string;
1294
- }, opts?: Oazapfts.RequestOpts): Promise<unknown>;
1295
- /**
1296
- * Get application deployment by ID
1297
- */
1298
- export declare function findApplicationDeploymentById1({ deploymentId }: {
1299
- deploymentId: string;
1300
- }, opts?: Oazapfts.RequestOpts): Promise<ApplicationDeploymentManifestV1>;
1301
- /**
1302
- * Get application deployment logs.
1303
- */
1304
- export declare function getApplicationDeploymentLogs1({ deploymentId, numberOfLines }: {
1305
- deploymentId: string;
1306
- numberOfLines?: number;
1307
- }, opts?: Oazapfts.RequestOpts): Promise<LogManifestV1>;
1308
- /**
1309
- * Get application deployment health.
1310
- */
1311
- export declare function getApplicationDeploymentHealth1({ deploymentId }: {
1312
- deploymentId: string;
1313
- }, opts?: Oazapfts.RequestOpts): Promise<HealthManifestV1>;
1314
- //# sourceMappingURL=cloudPlatformHorizon.d.ts.map