@codiac.io/codiac-cli 1.2.231 → 1.2.233

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.
Files changed (33) hide show
  1. package/README.md +2 -2
  2. package/dist/apis/codiac-api/gen/client.d.ts +144 -0
  3. package/dist/apis/codiac-api/gen/client.js +1735 -19
  4. package/dist/apis/codiac-api/gen/client.js.map +1 -1
  5. package/dist/apis/codiac-api/gen/contracts.d.ts +104 -33
  6. package/dist/apis/codiac-api/gen/contracts.js +3 -4
  7. package/dist/apis/codiac-api/gen/contracts.js.map +1 -1
  8. package/dist/apis/codiac-relay/gen/client.d.ts +2 -1
  9. package/dist/apis/codiac-relay/gen/client.js +13 -0
  10. package/dist/apis/codiac-relay/gen/client.js.map +1 -1
  11. package/dist/apis/codiac-relay/gen/contracts.d.ts +206 -6
  12. package/dist/apis/codiac-relay/gen/contracts.js +8 -1
  13. package/dist/apis/codiac-relay/gen/contracts.js.map +1 -1
  14. package/dist/command-base-exec.d.ts +18 -0
  15. package/dist/command-base-exec.js +71 -0
  16. package/dist/command-base-exec.js.map +1 -0
  17. package/dist/commands/cabinet/list.js +1 -0
  18. package/dist/commands/cabinet/list.js.map +1 -1
  19. package/dist/commands/cluster/scaling/update.d.ts +48 -0
  20. package/dist/commands/cluster/scaling/update.js +230 -0
  21. package/dist/commands/cluster/scaling/update.js.map +1 -0
  22. package/dist/commands/config/add.js +1 -0
  23. package/dist/commands/config/add.js.map +1 -1
  24. package/dist/ops/LocalOps.d.ts +1 -1
  25. package/dist/ops/LocalOps.js +6 -4
  26. package/dist/ops/LocalOps.js.map +1 -1
  27. package/dist/relay/relay-container.js +1 -1
  28. package/dist/uilogic/cloud-provider-contextualizer.js +5 -2
  29. package/dist/uilogic/cloud-provider-contextualizer.js.map +1 -1
  30. package/dist/uilogic/enterprise-contextualizer.js +2 -1
  31. package/dist/uilogic/enterprise-contextualizer.js.map +1 -1
  32. package/oclif.manifest.json +106 -1
  33. package/package.json +8 -8
@@ -35,6 +35,8 @@ export interface ActivityCriteriaBase {
35
35
  *
36
36
  * Example: ```[ "color", "lastName" ]``` */
37
37
  sort?: string[] | "asc" | "desc" | string | undefined;
38
+ skip?: number | undefined;
39
+ take?: number | undefined;
38
40
  }
39
41
  export declare enum ActivityTypeEnum {
40
42
  cabinetCreate = "cabinetCreate",
@@ -199,6 +201,8 @@ export interface AssetCriteria {
199
201
  *
200
202
  * Example: ```[ "color", "lastName" ]``` */
201
203
  sort?: string[] | "asc" | "desc" | string | undefined;
204
+ skip?: number | undefined;
205
+ take?: number | undefined;
202
206
  }
203
207
  /** Abstract declarations of folder paths inside the image
204
208
  * that are to be later mapped (at configuration time) to file store definitions. */
@@ -279,6 +283,8 @@ export interface AssetVersionConfigCriteria {
279
283
  *
280
284
  * Example: ```[ "color", "lastName" ]``` */
281
285
  sort?: string[] | "asc" | "desc" | string | undefined;
286
+ skip?: number | undefined;
287
+ take?: number | undefined;
282
288
  }
283
289
  export interface AuthenticationRequest {
284
290
  login: string;
@@ -335,39 +341,6 @@ export interface AuthTenant {
335
341
  id?: string | undefined;
336
342
  Users?: TenantUser[] | undefined;
337
343
  }
338
- export interface AwsTenantProfile {
339
- provider: CloudProviderEnum;
340
- /** Id code for the tenant account with the cloud service provider
341
- * (This is NOT the Codiac tenant code). */
342
- cspTenantId: string;
343
- notes?: string | undefined;
344
- id?: string | undefined;
345
- createdBy: string;
346
- modifiedBy: string;
347
- created: Date;
348
- modified: Date;
349
- }
350
- export interface AzureClientSecret {
351
- id: string;
352
- value: string;
353
- expires: string;
354
- }
355
- export interface AzureTenantProfile {
356
- /** The ApplicationId assigned to Codiac when it was registered in AzureAD. */
357
- clientId: string;
358
- authority: string;
359
- clientSecret: AzureClientSecret;
360
- provider: CloudProviderEnum;
361
- /** Id code for the tenant account with the cloud service provider
362
- * (This is NOT the Codiac tenant code). */
363
- cspTenantId: string;
364
- notes?: string | undefined;
365
- id?: string | undefined;
366
- createdBy: string;
367
- modifiedBy: string;
368
- created: Date;
369
- modified: Date;
370
- }
371
344
  export interface Buffer {
372
345
  }
373
346
  export interface Build {
@@ -390,6 +363,8 @@ export interface BuildCriteria {
390
363
  *
391
364
  * Example: ```[ "color", "lastName" ]``` */
392
365
  sort?: string[] | "asc" | "desc" | string | undefined;
366
+ skip?: number | undefined;
367
+ take?: number | undefined;
393
368
  }
394
369
  export interface BuildPipeline {
395
370
  name: string;
@@ -411,6 +386,8 @@ export interface BuildPipelineCriteria {
411
386
  *
412
387
  * Example: ```[ "color", "lastName" ]``` */
413
388
  sort?: string[] | "asc" | "desc" | string | undefined;
389
+ skip?: number | undefined;
390
+ take?: number | undefined;
414
391
  }
415
392
  /** A placeholder configuring an isolated instance of a fully functional,
416
393
  * independent implementation of the customer's service inventory.
@@ -532,6 +509,8 @@ export interface CabinetCreateActivityCriteria {
532
509
  *
533
510
  * Example: ```[ "color", "lastName" ]``` */
534
511
  sort?: string[] | "asc" | "desc" | string | undefined;
512
+ skip?: number | undefined;
513
+ take?: number | undefined;
535
514
  }
536
515
  export interface CabinetCriteria {
537
516
  name?: StringFilter | undefined;
@@ -549,6 +528,8 @@ export interface CabinetCriteria {
549
528
  *
550
529
  * Example: ```[ "color", "lastName" ]``` */
551
530
  sort?: string[] | "asc" | "desc" | string | undefined;
531
+ skip?: number | undefined;
532
+ take?: number | undefined;
552
533
  }
553
534
  /** The host naming strategies applicable in a given cabinet.
554
535
  *
@@ -576,6 +557,8 @@ export interface CabinetHostNameConfigCriteria {
576
557
  *
577
558
  * Example: ```[ "color", "lastName" ]``` */
578
559
  sort?: string[] | "asc" | "desc" | string | undefined;
560
+ skip?: number | undefined;
561
+ take?: number | undefined;
579
562
  }
580
563
  /** Attributes for referencing and creating actual running resources that comprise the infrastructure for a cabinet.
581
564
  * That is, this is the pertinent information required to manage an actual physical implementation of a cabinet. */
@@ -625,6 +608,8 @@ export interface CabinetScopesCriteria {
625
608
  *
626
609
  * Example: ```[ "color", "lastName" ]``` */
627
610
  sort?: string[] | "asc" | "desc" | string | undefined;
611
+ skip?: number | undefined;
612
+ take?: number | undefined;
628
613
  }
629
614
  export interface ChangePasswordRequest {
630
615
  login: string;
@@ -673,6 +658,8 @@ export interface ClusterCriteria {
673
658
  *
674
659
  * Example: ```[ "color", "lastName" ]``` */
675
660
  sort?: string[] | "asc" | "desc" | string | undefined;
661
+ skip?: number | undefined;
662
+ take?: number | undefined;
676
663
  }
677
664
  /** The specs for a kubernetes cluster to be managed by the Codiac team.
678
665
  * This class is used to programmatically put up and take down clusters. */
@@ -743,6 +730,8 @@ export interface ClusterDefCriteria {
743
730
  *
744
731
  * Example: ```[ "color", "lastName" ]``` */
745
732
  sort?: string[] | "asc" | "desc" | string | undefined;
733
+ skip?: number | undefined;
734
+ take?: number | undefined;
746
735
  }
747
736
  /** Similar to an ACL for a cluster: declares an access level for a user on a cluster. */
748
737
  export interface ClusterGrant {
@@ -769,6 +758,8 @@ export interface ClusterGrantCriteria {
769
758
  *
770
759
  * Example: ```[ "color", "lastName" ]``` */
771
760
  sort?: string[] | "asc" | "desc" | string | undefined;
761
+ skip?: number | undefined;
762
+ take?: number | undefined;
772
763
  }
773
764
  export interface ClusterWithIngress {
774
765
  name: string;
@@ -868,6 +859,8 @@ export interface CommentCriteria {
868
859
  *
869
860
  * Example: ```[ "color", "lastName" ]``` */
870
861
  sort?: string[] | "asc" | "desc" | string | undefined;
862
+ skip?: number | undefined;
863
+ take?: number | undefined;
871
864
  }
872
865
  /** An historical record of a change made to the the configuration of the an enterprise for a given cabinet,
873
866
  * to be used, together with the latest preceeding snapshot and other change events, as the specification for a deployment.
@@ -895,6 +888,8 @@ export interface ConfigChangeCriteria {
895
888
  *
896
889
  * Example: ```[ "color", "lastName" ]``` */
897
890
  sort?: string[] | "asc" | "desc" | string | undefined;
891
+ skip?: number | undefined;
892
+ take?: number | undefined;
898
893
  }
899
894
  export interface ConfigDef {
900
895
  enterprise: string;
@@ -924,6 +919,8 @@ export interface ConfigDefCriteria {
924
919
  *
925
920
  * Example: ```[ "color", "lastName" ]``` */
926
921
  sort?: string[] | "asc" | "desc" | string | undefined;
922
+ skip?: number | undefined;
923
+ take?: number | undefined;
927
924
  }
928
925
  /** Values of ScopedSetting.targetFile for NON-FILE configs. */
929
926
  export declare enum ConfigDefTypesEnum {
@@ -990,6 +987,8 @@ export interface ConfigDeploymentActivityCriteria {
990
987
  *
991
988
  * Example: ```[ "color", "lastName" ]``` */
992
989
  sort?: string[] | "asc" | "desc" | string | undefined;
990
+ skip?: number | undefined;
991
+ take?: number | undefined;
993
992
  }
994
993
  /** An object representation of a config file, assembled from ScopedSettings.
995
994
  * This document can take any form, and is constructed solely from settings and values,
@@ -1014,6 +1013,8 @@ export interface ConfigDocSpecForOne {
1014
1013
  *
1015
1014
  * Example: ```[ "color", "lastName" ]``` */
1016
1015
  sort?: string[] | "asc" | "desc" | string | undefined;
1016
+ skip?: number | undefined;
1017
+ take?: number | undefined;
1017
1018
  }
1018
1019
  /** Serializer declaration for a data document. */
1019
1020
  export declare enum ConfigFormatsEnum {
@@ -1070,6 +1071,8 @@ export interface ContainerFootprintCriteria {
1070
1071
  *
1071
1072
  * Example: ```[ "color", "lastName" ]``` */
1072
1073
  sort?: string[] | "asc" | "desc" | string | undefined;
1074
+ skip?: number | undefined;
1075
+ take?: number | undefined;
1073
1076
  }
1074
1077
  export interface CspTenantProfile {
1075
1078
  provider: CloudProviderEnum;
@@ -1097,6 +1100,8 @@ export interface CspTenantProfileCriteria {
1097
1100
  *
1098
1101
  * Example: ```[ "color", "lastName" ]``` */
1099
1102
  sort?: string[] | "asc" | "desc" | string | undefined;
1103
+ skip?: number | undefined;
1104
+ take?: number | undefined;
1100
1105
  }
1101
1106
  export interface DeployAttempt {
1102
1107
  name: string;
@@ -1120,6 +1125,8 @@ export interface DeployAttemptCriteria {
1120
1125
  *
1121
1126
  * Example: ```[ "color", "lastName" ]``` */
1122
1127
  sort?: string[] | "asc" | "desc" | string | undefined;
1128
+ skip?: number | undefined;
1129
+ take?: number | undefined;
1123
1130
  }
1124
1131
  /** The specification for a deployment of an enterprise to a cabinet.
1125
1132
  * NOTE:
@@ -1184,6 +1191,8 @@ export interface DeploymentActivityCriteria {
1184
1191
  *
1185
1192
  * Example: ```[ "color", "lastName" ]``` */
1186
1193
  sort?: string[] | "asc" | "desc" | string | undefined;
1194
+ skip?: number | undefined;
1195
+ take?: number | undefined;
1187
1196
  }
1188
1197
  export interface DeploymentCriteria {
1189
1198
  id?: StringFilter | undefined;
@@ -1200,6 +1209,8 @@ export interface DeploymentCriteria {
1200
1209
  *
1201
1210
  * Example: ```[ "color", "lastName" ]``` */
1202
1211
  sort?: string[] | "asc" | "desc" | string | undefined;
1212
+ skip?: number | undefined;
1213
+ take?: number | undefined;
1203
1214
  }
1204
1215
  export interface DeployPipeline {
1205
1216
  name: string;
@@ -1221,6 +1232,8 @@ export interface DeployPipelineCriteria {
1221
1232
  *
1222
1233
  * Example: ```[ "color", "lastName" ]``` */
1223
1234
  sort?: string[] | "asc" | "desc" | string | undefined;
1235
+ skip?: number | undefined;
1236
+ take?: number | undefined;
1224
1237
  }
1225
1238
  /** Defines a discriminated (tagged) union of different record types.
1226
1239
  *
@@ -1275,6 +1288,8 @@ export interface EnterpriseCriteria {
1275
1288
  *
1276
1289
  * Example: ```[ "color", "lastName" ]``` */
1277
1290
  sort?: string[] | "asc" | "desc" | string | undefined;
1291
+ skip?: number | undefined;
1292
+ take?: number | undefined;
1278
1293
  }
1279
1294
  export interface EnterpriseRoot {
1280
1295
  name: string;
@@ -1319,6 +1334,8 @@ export interface EnterpriseRunStateCriteria {
1319
1334
  *
1320
1335
  * Example: ```[ "color", "lastName" ]``` */
1321
1336
  sort?: string[] | "asc" | "desc" | string | undefined;
1337
+ skip?: number | undefined;
1338
+ take?: number | undefined;
1322
1339
  }
1323
1340
  /** A reference to an enterprise and its environment scopes. */
1324
1341
  export interface EnterpriseScope {
@@ -1363,6 +1380,8 @@ export interface EnterpriseVersionConfigCriteria {
1363
1380
  *
1364
1381
  * Example: ```[ "color", "lastName" ]``` */
1365
1382
  sort?: string[] | "asc" | "desc" | string | undefined;
1383
+ skip?: number | undefined;
1384
+ take?: number | undefined;
1366
1385
  }
1367
1386
  /** Access Control List (ACL) for a single securable object.
1368
1387
  * A list of permissions declared on a single, identifiable concrete entity. */
@@ -1450,6 +1469,8 @@ export interface EnvironmentCriteria {
1450
1469
  *
1451
1470
  * Example: ```[ "color", "lastName" ]``` */
1452
1471
  sort?: string[] | "asc" | "desc" | string | undefined;
1472
+ skip?: number | undefined;
1473
+ take?: number | undefined;
1453
1474
  }
1454
1475
  /** A reference to an environment and its cabinets. */
1455
1476
  export interface EnvironmentRoot {
@@ -1509,6 +1530,8 @@ export interface FileStoreDefCriteria {
1509
1530
  *
1510
1531
  * Example: ```[ "color", "lastName" ]``` */
1511
1532
  sort?: string[] | "asc" | "desc" | string | undefined;
1533
+ skip?: number | undefined;
1534
+ take?: number | undefined;
1512
1535
  }
1513
1536
  /** Metadata describing an existing concrete instance
1514
1537
  * of a FileStoreDef resource within a cloud provider. */
@@ -1681,6 +1704,8 @@ export interface ImageCriteria {
1681
1704
  *
1682
1705
  * Example: ```[ "color", "lastName" ]``` */
1683
1706
  sort?: string[] | "asc" | "desc" | string | undefined;
1707
+ skip?: number | undefined;
1708
+ take?: number | undefined;
1684
1709
  }
1685
1710
  export interface ImageRegistry {
1686
1711
  id?: string | undefined;
@@ -1718,6 +1743,8 @@ export interface ImageRegistryCriteria {
1718
1743
  *
1719
1744
  * Example: ```[ "color", "lastName" ]``` */
1720
1745
  sort?: string[] | "asc" | "desc" | string | undefined;
1746
+ skip?: number | undefined;
1747
+ take?: number | undefined;
1721
1748
  }
1722
1749
  /** Matches an ImageRegistry entity, just isnt a domain entity or auditable.
1723
1750
  * This class is for use as a request: it is NOT A DOMAIN ENTITY. */
@@ -1925,6 +1952,8 @@ export interface KitCriteria {
1925
1952
  *
1926
1953
  * Example: ```[ "color", "lastName" ]``` */
1927
1954
  sort?: string[] | "asc" | "desc" | string | undefined;
1955
+ skip?: number | undefined;
1956
+ take?: number | undefined;
1928
1957
  }
1929
1958
  /** The information needed to access an individual key value pair
1930
1959
  * from a predefined data store. */
@@ -1972,6 +2001,8 @@ export interface KvpStoreDefCriteria {
1972
2001
  *
1973
2002
  * Example: ```[ "color", "lastName" ]``` */
1974
2003
  sort?: string[] | "asc" | "desc" | string | undefined;
2004
+ skip?: number | undefined;
2005
+ take?: number | undefined;
1975
2006
  }
1976
2007
  export interface KvpStoreInfrx {
1977
2008
  type: KvpStoreTypesEnum;
@@ -2029,6 +2060,8 @@ export interface LabelCriteria {
2029
2060
  *
2030
2061
  * Example: ```[ "color", "lastName" ]``` */
2031
2062
  sort?: string[] | "asc" | "desc" | string | undefined;
2063
+ skip?: number | undefined;
2064
+ take?: number | undefined;
2032
2065
  }
2033
2066
  export interface MyTenantRequest {
2034
2067
  }
@@ -2106,6 +2139,8 @@ export interface NodePoolDefCriteria {
2106
2139
  *
2107
2140
  * Example: ```[ "color", "lastName" ]``` */
2108
2141
  sort?: string[] | "asc" | "desc" | string | undefined;
2142
+ skip?: number | undefined;
2143
+ take?: number | undefined;
2109
2144
  }
2110
2145
  /** AUTHOR NOTE:
2111
2146
  * This filter approach does NOT provide for:
@@ -2264,6 +2299,8 @@ export interface ProbeCriteria {
2264
2299
  *
2265
2300
  * Example: ```[ "color", "lastName" ]``` */
2266
2301
  sort?: string[] | "asc" | "desc" | string | undefined;
2302
+ skip?: number | undefined;
2303
+ take?: number | undefined;
2267
2304
  }
2268
2305
  /** Declaration of what purpose the probe serves,
2269
2306
  * ie: where a probe is fired in the runtime lifecycle of an asset. */
@@ -2298,6 +2335,8 @@ export interface ProductCriteria {
2298
2335
  *
2299
2336
  * Example: ```[ "color", "lastName" ]``` */
2300
2337
  sort?: string[] | "asc" | "desc" | string | undefined;
2338
+ skip?: number | undefined;
2339
+ take?: number | undefined;
2301
2340
  }
2302
2341
  export interface ProductVersionConfig {
2303
2342
  productName: string;
@@ -2338,6 +2377,8 @@ export interface ProductVersionConfigCriteria {
2338
2377
  *
2339
2378
  * Example: ```[ "color", "lastName" ]``` */
2340
2379
  sort?: string[] | "asc" | "desc" | string | undefined;
2380
+ skip?: number | undefined;
2381
+ take?: number | undefined;
2341
2382
  }
2342
2383
  /** Defines an object with required and optional properties
2343
2384
  *
@@ -2438,6 +2479,8 @@ export interface RootMapCriteria {
2438
2479
  *
2439
2480
  * Example: ```[ "color", "lastName" ]``` */
2440
2481
  sort?: string[] | "asc" | "desc" | string | undefined;
2482
+ skip?: number | undefined;
2483
+ take?: number | undefined;
2441
2484
  }
2442
2485
  export interface Scope {
2443
2486
  /** The level of the scope (eg: enterprise, environment, cluster, cabinet, asset, etc).
@@ -2484,6 +2527,8 @@ export interface ScopedConfigCriteria {
2484
2527
  *
2485
2528
  * Example: ```[ "color", "lastName" ]``` */
2486
2529
  sort?: string[] | "asc" | "desc" | string | undefined;
2530
+ skip?: number | undefined;
2531
+ take?: number | undefined;
2487
2532
  }
2488
2533
  /** An assignment of a HostNameStrategy for a single domain at a specific scope. */
2489
2534
  export interface ScopedHostNameConfig {
@@ -2525,6 +2570,8 @@ export interface ScopedHostNameConfigCriteria {
2525
2570
  *
2526
2571
  * Example: ```[ "color", "lastName" ]``` */
2527
2572
  sort?: string[] | "asc" | "desc" | string | undefined;
2573
+ skip?: number | undefined;
2574
+ take?: number | undefined;
2528
2575
  }
2529
2576
  /** A single key-value setting within a config for an asset, scoped for its ultimate deployment context.
2530
2577
  * That is, this is the value of one setting within a config file (the targetFile param);
@@ -2569,6 +2616,8 @@ export interface ScopedSettingCriteria {
2569
2616
  *
2570
2617
  * Example: ```[ "color", "lastName" ]``` */
2571
2618
  sort?: string[] | "asc" | "desc" | string | undefined;
2619
+ skip?: number | undefined;
2620
+ take?: number | undefined;
2572
2621
  }
2573
2622
  /** Creates a filter expression that includes
2574
2623
  * all entities whose scopes are relevant input for a smash-merge
@@ -2662,6 +2711,8 @@ export interface SetupJournalCriteria {
2662
2711
  *
2663
2712
  * Example: ```[ "color", "lastName" ]``` */
2664
2713
  sort?: string[] | "asc" | "desc" | string | undefined;
2714
+ skip?: number | undefined;
2715
+ take?: number | undefined;
2665
2716
  }
2666
2717
  export interface SetupJournalEntry {
2667
2718
  name: string;
@@ -2711,6 +2762,8 @@ export interface SnapshotCriteria {
2711
2762
  *
2712
2763
  * Example: ```[ "color", "lastName" ]``` */
2713
2764
  sort?: string[] | "asc" | "desc" | string | undefined;
2765
+ skip?: number | undefined;
2766
+ take?: number | undefined;
2714
2767
  }
2715
2768
  export interface SourceRepo {
2716
2769
  name: string;
@@ -2732,6 +2785,8 @@ export interface SourceRepoCriteria {
2732
2785
  *
2733
2786
  * Example: ```[ "color", "lastName" ]``` */
2734
2787
  sort?: string[] | "asc" | "desc" | string | undefined;
2788
+ skip?: number | undefined;
2789
+ take?: number | undefined;
2735
2790
  }
2736
2791
  export interface StringFilter {
2737
2792
  /** property of the target object to compare (conventional default to the name of the criteria property) */
@@ -2795,6 +2850,8 @@ export interface SubscriptionCriteria {
2795
2850
  *
2796
2851
  * Example: ```[ "color", "lastName" ]``` */
2797
2852
  sort?: string[] | "asc" | "desc" | string | undefined;
2853
+ skip?: number | undefined;
2854
+ take?: number | undefined;
2798
2855
  }
2799
2856
  export declare enum SubscriptionStatus {
2800
2857
  cancelled = "cancelled",
@@ -2836,6 +2893,8 @@ export interface TagCriteria {
2836
2893
  *
2837
2894
  * Example: ```[ "color", "lastName" ]``` */
2838
2895
  sort?: string[] | "asc" | "desc" | string | undefined;
2896
+ skip?: number | undefined;
2897
+ take?: number | undefined;
2839
2898
  }
2840
2899
  export interface TenantRegistrationRequest {
2841
2900
  tenantName: string;
@@ -2935,6 +2994,8 @@ export interface VersionConfigCriteria {
2935
2994
  *
2936
2995
  * Example: ```[ "color", "lastName" ]``` */
2937
2996
  sort?: string[] | "asc" | "desc" | string | undefined;
2997
+ skip?: number | undefined;
2998
+ take?: number | undefined;
2938
2999
  }
2939
3000
  export interface VersionCreateActivity {
2940
3001
  enterpriseVersion: string;
@@ -2968,6 +3029,8 @@ export interface VersionCreateActivityCriteria {
2968
3029
  *
2969
3030
  * Example: ```[ "color", "lastName" ]``` */
2970
3031
  sort?: string[] | "asc" | "desc" | string | undefined;
3032
+ skip?: number | undefined;
3033
+ take?: number | undefined;
2971
3034
  }
2972
3035
  export interface VersionGetsertRequest {
2973
3036
  overlays: AssetVersion[];
@@ -3019,6 +3082,8 @@ export interface WorkFlowStrategyCriteria {
3019
3082
  *
3020
3083
  * Example: ```[ "color", "lastName" ]``` */
3021
3084
  sort?: string[] | "asc" | "desc" | string | undefined;
3085
+ skip?: number | undefined;
3086
+ take?: number | undefined;
3022
3087
  }
3023
3088
  /** A declaration of a template for a weekly timespan during which the given scope target will be in zombie mode. */
3024
3089
  export interface ZombiePeriod {
@@ -3050,4 +3115,10 @@ export interface ZombiePeriodCriteria {
3050
3115
  *
3051
3116
  * Example: ```[ "color", "lastName" ]``` */
3052
3117
  sort?: string[] | "asc" | "desc" | string | undefined;
3118
+ skip?: number | undefined;
3119
+ take?: number | undefined;
3120
+ }
3121
+ export interface UpdatePartialWhereRequest<T, TCriteria> {
3122
+ criteria: TCriteria;
3123
+ operation: Partial<T>;
3053
3124
  }
@@ -220,8 +220,6 @@ AuthRoleCriteria
220
220
  AuthRoleParentFilter
221
221
  AuthSubscription
222
222
  AuthTenant
223
- AwsTenantProfile
224
- AzureTenantProfile
225
223
  Buffer
226
224
  Build
227
225
  BuildCriteria
@@ -473,8 +471,9 @@ ZombiePeriodCriteria
473
471
  // [PartialWithId<VersionCreateActivity>]
474
472
  // [PartialWithId<WorkFlowStrategy>]
475
473
  // [PartialWithId<ZombiePeriod>]
474
+ // [T]
476
475
  // [TEntity]
477
476
  //
478
- // [T]
479
- // Total contract count: 275
477
+ // UpdatePartialWhereRequest
478
+ // Total contract count: 276
480
479
  //# sourceMappingURL=contracts.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"contracts.js","sourceRoot":"","sources":["../../../../src/apis/codiac-api/gen/contracts.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"contracts.js","sourceRoot":"","sources":["../../../../src/apis/codiac-api/gen/contracts.ts"],"names":[],"mappings":"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"}
@@ -124,7 +124,7 @@ declare class AuthRoleCruds {
124
124
  tryCreate(request: AuthRole, options?: IRepoOptions): Promise<SingleResult<AuthRole>>;
125
125
  create(request: AuthRole, options?: IThrowingRepoOptions): Promise<AuthRole>;
126
126
  }
127
- import { ActivateBusListenerRequest, AssetReplicaLogRequest, AssetStatusRequest, AssetStatus, FetchAssetVersionsRequest, GetAwsNodeTypesRequest, AwsNodeType, GetAwsRegionsRequest, AwsRegion, GetAwsUserRequest, AwsIdentity, GetAzureContainerRegistriesRequest, AzureAcr, GetAzureLocationsRequest, AzureLocation, GetAzureNodeTypesRequest, AzureNodeType, GetAzureResourceGroupsRequest, GetAzureSubscriptionsRequest, AzureUserSubscription, GetAzureVnetsRequest, AzureVNet, ClusterAccessGrantRequest, AccessGrant, ClusterConnectionRequest, GetClusterDefaultsRequest, ClusterDefaults, GetRenderedCabinetConfigRequest, ImportConfigRequest, LogintoCloudProviderRequest, ApiAuthToken, CspLoginAuthCodeCatcherRequest, CspLoginAuthCodeCatcherResponse, CspLoginInteractiveRequest, CspLoginInteractiveResponse, CspLogoutCatcherRequest, CspLogoutInteractiveRequest, CspLogoutInteractiveResponse, GetCloudProviderUserRequest, DeployedConfigCriteria, DeployedConfig, AssetReplicaContext, K8sContainerRef, ExecuteCabinetKillerRequest, Cabinet, ExecuteCreateCabinetRequest, ExecuteCabinetMakerResponse, CreateClusterRequest, CreateClusterResponse, ExecuteClusterIngressCreateRequest, ExecuteClusterIngressCreateResponse, ExecuteClusterIngressDeleteRequest, ExecuteClusterIngressDeleteResponse, ClusterTillerInstallRequest, ClusterTillerInstallResponse, DeleteClusterInstanceRequest, DeleteClusterInstanceResponse, ExecuteDeployConfigsForRequest, ExecuteDeployConfigsForResponse, ExecuteDeployIngressForAssetsRequest, ExecuteDeployIngressForAssetsResponse, DeployRequest, IPartialAsset, ExecuteDestroyAssetsRequest, ExecuteDestroyAssetsResponse, ExecuteDomainUpsertRequest, CabinetAssetList, GetFileStoresRequest, FileStoreDef, GenerateAssetFromKitRequest, Kit, GenerateKitRequest, RegistrySearchRequest, ImageRepository, GetAvailableK8sVersionsRequest, AvailableK8sVersion, GetKnownPortNumbersRequest, KnownPortNumberAssignment, PublishServiceRequest, PublishServiceResponse, ReadAssetLogsForCabinetRequest, ReadAssetLogsForCabinetResponse, ReadImageTagsRequest, ReadKeysFromStoreContactRequest, ReadKeysFromStoreContactResponse, ReadyStateRequest, ApiReadyState, GetRegistryProvidersRequest, GetRegistryTypeRequest, RegistryTypeInfo, ScaleAssetRequest, AssetResourcesSpec, GetAllSecretProvidersRequest, CloudProviderEnum, GetSecretStoresRequest, SecretStore, FileRequest, Buffer, ZombieRefreshRequest } from "../contracts";
127
+ import { ActivateBusListenerRequest, AssetReplicaLogRequest, AssetStatusRequest, AssetStatus, FetchAssetVersionsRequest, GetAwsNodeTypesRequest, AwsNodeType, GetAwsRegionsRequest, AwsRegion, GetAwsUserRequest, AwsIdentity, GetAzureContainerRegistriesRequest, AzureAcr, GetAzureLocationsRequest, AzureLocation, GetAzureNodeTypesRequest, AzureNodeType, GetAzureResourceGroupsRequest, GetAzureSubscriptionsRequest, AzureUserSubscription, GetAzureVnetsRequest, AzureVNet, ClusterAccessGrantRequest, AccessGrant, ClusterConnectionRequest, GetClusterDefaultsRequest, ClusterDefaults, GetRenderedCabinetConfigRequest, ImportConfigRequest, LogintoCloudProviderRequest, ApiAuthToken, CspLoginAuthCodeCatcherRequest, CspLoginAuthCodeCatcherResponse, CspLoginInteractiveRequest, CspLoginInteractiveResponse, CspLogoutCatcherRequest, CspLogoutInteractiveRequest, CspLogoutInteractiveResponse, GetCloudProviderUserRequest, DeployedConfigCriteria, DeployedConfig, AssetReplicaContext, K8sContainerRef, ExecuteCabinetKillerRequest, Cabinet, ExecuteCreateCabinetRequest, ExecuteCabinetMakerResponse, CreateClusterRequest, CreateClusterResponse, CreateClusterRequestAsync, CreateClusterAck, ExecuteClusterIngressCreateRequest, ExecuteClusterIngressCreateResponse, ExecuteClusterIngressDeleteRequest, ExecuteClusterIngressDeleteResponse, ClusterTillerInstallRequest, ClusterTillerInstallResponse, DeleteClusterInstanceRequest, DeleteClusterInstanceResponse, ExecuteDeployConfigsForRequest, ExecuteDeployConfigsForResponse, ExecuteDeployIngressForAssetsRequest, ExecuteDeployIngressForAssetsResponse, DeployRequest, IPartialAsset, ExecuteDestroyAssetsRequest, ExecuteDestroyAssetsResponse, ExecuteDomainUpsertRequest, CabinetAssetList, GetFileStoresRequest, FileStoreDef, GenerateAssetFromKitRequest, Kit, GenerateKitRequest, RegistrySearchRequest, ImageRepository, GetAvailableK8sVersionsRequest, AvailableK8sVersion, GetKnownPortNumbersRequest, KnownPortNumberAssignment, PublishServiceRequest, PublishServiceResponse, ReadAssetLogsForCabinetRequest, ReadAssetLogsForCabinetResponse, ReadImageTagsRequest, ReadKeysFromStoreContactRequest, ReadKeysFromStoreContactResponse, ReadyStateRequest, ApiReadyState, GetRegistryProvidersRequest, GetRegistryTypeRequest, RegistryTypeInfo, ScaleAssetRequest, AssetResourcesSpec, GetAllSecretProvidersRequest, CloudProviderEnum, GetSecretStoresRequest, SecretStore, FileRequest, Buffer, ZombieRefreshRequest } from "../contracts";
128
128
  declare class OtherOperations {
129
129
  private core;
130
130
  constructor(core: ApiClientBase);
@@ -186,6 +186,7 @@ declare class OtherOperations {
186
186
  postExecuteCabinetMaker(request: ExecuteCreateCabinetRequest, options?: IRepoOptions): Promise<ExecuteCabinetMakerResponse>;
187
187
  /** (generated operationId) */
188
188
  postExecuteClusterCreate(request: CreateClusterRequest, options?: IRepoOptions): Promise<CreateClusterResponse>;
189
+ clusterCreateAsync(request: CreateClusterRequestAsync, options?: IRepoOptions): Promise<SingleResult<CreateClusterAck>>;
189
190
  /** (generated operationId) */
190
191
  postExecuteClusterIngressCreate(request: ExecuteClusterIngressCreateRequest, options?: IRepoOptions): Promise<ExecuteClusterIngressCreateResponse>;
191
192
  /** (generated operationId) */
@@ -1435,6 +1435,19 @@ class OtherOperations {
1435
1435
  }
1436
1436
  });
1437
1437
  }
1438
+ clusterCreateAsync(request, options) {
1439
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
1440
+ try {
1441
+ let url = this.core.buildUrl("/execute-cluster-create-async", request, false);
1442
+ let headers = options ? headersFrom(options) : undefined;
1443
+ let response = yield this.core.makeHttpCall(codiac_common_1.httpRestVerb.POST, url, request, headers);
1444
+ return response;
1445
+ }
1446
+ catch (err) {
1447
+ throw err;
1448
+ }
1449
+ });
1450
+ }
1438
1451
  /** (generated operationId) */
1439
1452
  postExecuteClusterIngressCreate(request, options) {
1440
1453
  return tslib_1.__awaiter(this, void 0, void 0, function* () {