@codiac.io/codiac-cli 1.2.232 → 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.
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Codiac-CLI
2
2
 
3
- oclif example Hello World CLI
3
+ oclif example Hello World Cli
4
4
 
5
5
  [![oclif](https://img.shields.io/badge/cli-oclif-brightgreen.svg)](https://oclif.io)
6
6
  [![Version](https://img.shields.io/npm/v/codiac-cli.svg)](https://npmjs.org/package/codiac-cli)
@@ -21,7 +21,7 @@ $ npm install -g @codiac.io/codiac-cli
21
21
  $ codiac COMMAND
22
22
  running command...
23
23
  $ codiac (--version|-v)
24
- @codiac.io/codiac-cli/1.2.232 linux-x64 node-v16.17.1
24
+ @codiac.io/codiac-cli/1.2.233 linux-x64 node-v16.17.1
25
25
  $ codiac --help [COMMAND]
26
26
  USAGE
27
27
  $ codiac COMMAND
@@ -1,5 +1,6 @@
1
1
  import { IRepoOptions, IBetterLogger } from "@codiac.io/codiac-common";
2
2
  import { Result, ListResult, BatchResult, SingleResult, PatchSpecForOne, PatchSpecForMany, IdSpecFor } from "@codiac.io/codiac-common/contracts";
3
+ import { UpdatePartialWhereRequest } from "./contracts";
3
4
  import { ApiClientBase } from "../common/api-client-base";
4
5
  import { ApiUserCreds } from "../common/api-user-creds";
5
6
  import { CodiacClientConfig } from "./client-config";
@@ -91,6 +92,7 @@ declare class AuthOperations {
91
92
  EntityAclDelete(request: IdSpecFor<EntityAcl>, options?: IRepoOptions): Promise<SingleResult<EntityAcl>>;
92
93
  EntityAclUpdatePartial(request: EntityAcl, options?: IRepoOptions): Promise<SingleResult<PartialWithId<EntityAcl>>>;
93
94
  EntityAclCreate(request: EntityAcl, options?: IRepoOptions): Promise<SingleResult<EntityAcl>>;
95
+ EntityAclUpdatePartialWhere(request: UpdatePartialWhereRequest<EntityAcl, EntityAclCriteria>, options?: IRepoOptions): Promise<BatchResult<EntityAcl>>;
94
96
  EntityAclUpdatePartialMany(request: Array<EntityAcl>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<EntityAcl>>>;
95
97
  EntityAclUpsertMany(request: Array<EntityAcl>, options?: IRepoOptions): Promise<BatchResult<EntityAcl>>;
96
98
  EntityAclUpsert(request: EntityAcl, options?: IRepoOptions): Promise<SingleResult<EntityAcl>>;
@@ -112,6 +114,7 @@ declare class AuthOperations {
112
114
  RoleUpdatePartial(request: AuthRole, options?: IRepoOptions): Promise<SingleResult<PartialWithId<AuthRole>>>;
113
115
  RoleAssignment(request: RoleAssignmentRequest, options?: IRepoOptions): Promise<SingleResult<TenantUser>>;
114
116
  RoleCreate(request: AuthRole, options?: IRepoOptions): Promise<SingleResult<AuthRole>>;
117
+ RoleUpdatePartialWhere(request: UpdatePartialWhereRequest<AuthRole, AuthRoleCriteria>, options?: IRepoOptions): Promise<BatchResult<AuthRole>>;
115
118
  RoleUpdatePartialMany(request: Array<AuthRole>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<AuthRole>>>;
116
119
  RoleUpsertMany(request: Array<AuthRole>, options?: IRepoOptions): Promise<BatchResult<AuthRole>>;
117
120
  RoleUpsert(request: AuthRole, options?: IRepoOptions): Promise<SingleResult<AuthRole>>;
@@ -168,6 +171,9 @@ declare class ActivityBaseCruds {
168
171
  /** Saves the input as a new ActivityBase. */
169
172
  tryCreate(request: ActivityBase, options?: IRepoOptions): Promise<SingleResult<ActivityBase>>;
170
173
  create(request: ActivityBase, options?: IThrowingRepoOptions): Promise<ActivityBase>;
174
+ /** Performs the given operation on each existing ActivityBase that satisfies the given criteria. */
175
+ tryUpdatePartialWhere(request: UpdatePartialWhereRequest<ActivityBase, ActivityCriteriaBase>, options?: IRepoOptions): Promise<BatchResult<ActivityBase>>;
176
+ UpdatePartialWhere(request: UpdatePartialWhereRequest<ActivityBase, ActivityCriteriaBase>, options?: IThrowingRepoOptions): Promise<ActivityBase[]>;
171
177
  /** Overwrites the given properties for each existing ActivityBase. */
172
178
  tryUpdatePartialMany(request: Array<ActivityBase>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<ActivityBase>>>;
173
179
  updatePartialMany(request: Array<ActivityBase>, options?: IThrowingRepoOptions): Promise<PartialWithId<ActivityBase>[]>;
@@ -215,6 +221,9 @@ declare class CabinetCreateActivityCruds {
215
221
  /** Saves the input as a new CabinetCreateActivity. */
216
222
  tryCreate(request: CabinetCreateActivity, options?: IRepoOptions): Promise<SingleResult<CabinetCreateActivity>>;
217
223
  create(request: CabinetCreateActivity, options?: IThrowingRepoOptions): Promise<CabinetCreateActivity>;
224
+ /** Performs the given operation on each existing CabinetCreateActivity that satisfies the given criteria. */
225
+ tryUpdatePartialWhere(request: UpdatePartialWhereRequest<CabinetCreateActivity, CabinetCreateActivityCriteria>, options?: IRepoOptions): Promise<BatchResult<CabinetCreateActivity>>;
226
+ UpdatePartialWhere(request: UpdatePartialWhereRequest<CabinetCreateActivity, CabinetCreateActivityCriteria>, options?: IThrowingRepoOptions): Promise<CabinetCreateActivity[]>;
218
227
  /** Overwrites the given properties for each existing CabinetCreateActivity. */
219
228
  tryUpdatePartialMany(request: Array<CabinetCreateActivity>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<CabinetCreateActivity>>>;
220
229
  updatePartialMany(request: Array<CabinetCreateActivity>, options?: IThrowingRepoOptions): Promise<PartialWithId<CabinetCreateActivity>[]>;
@@ -262,6 +271,9 @@ declare class ConfigDeploymentActivityCruds {
262
271
  /** Saves the input as a new ConfigDeploymentActivity. */
263
272
  tryCreate(request: ConfigDeploymentActivity, options?: IRepoOptions): Promise<SingleResult<ConfigDeploymentActivity>>;
264
273
  create(request: ConfigDeploymentActivity, options?: IThrowingRepoOptions): Promise<ConfigDeploymentActivity>;
274
+ /** Performs the given operation on each existing ConfigDeploymentActivity that satisfies the given criteria. */
275
+ tryUpdatePartialWhere(request: UpdatePartialWhereRequest<ConfigDeploymentActivity, ConfigDeploymentActivityCriteria>, options?: IRepoOptions): Promise<BatchResult<ConfigDeploymentActivity>>;
276
+ UpdatePartialWhere(request: UpdatePartialWhereRequest<ConfigDeploymentActivity, ConfigDeploymentActivityCriteria>, options?: IThrowingRepoOptions): Promise<ConfigDeploymentActivity[]>;
265
277
  /** Overwrites the given properties for each existing ConfigDeploymentActivity. */
266
278
  tryUpdatePartialMany(request: Array<ConfigDeploymentActivity>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<ConfigDeploymentActivity>>>;
267
279
  updatePartialMany(request: Array<ConfigDeploymentActivity>, options?: IThrowingRepoOptions): Promise<PartialWithId<ConfigDeploymentActivity>[]>;
@@ -309,6 +321,9 @@ declare class DeploymentActivityCruds {
309
321
  /** Saves the input as a new DeploymentActivity. */
310
322
  tryCreate(request: DeploymentActivity, options?: IRepoOptions): Promise<SingleResult<DeploymentActivity>>;
311
323
  create(request: DeploymentActivity, options?: IThrowingRepoOptions): Promise<DeploymentActivity>;
324
+ /** Performs the given operation on each existing DeploymentActivity that satisfies the given criteria. */
325
+ tryUpdatePartialWhere(request: UpdatePartialWhereRequest<DeploymentActivity, DeploymentActivityCriteria>, options?: IRepoOptions): Promise<BatchResult<DeploymentActivity>>;
326
+ UpdatePartialWhere(request: UpdatePartialWhereRequest<DeploymentActivity, DeploymentActivityCriteria>, options?: IThrowingRepoOptions): Promise<DeploymentActivity[]>;
312
327
  /** Overwrites the given properties for each existing DeploymentActivity. */
313
328
  tryUpdatePartialMany(request: Array<DeploymentActivity>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<DeploymentActivity>>>;
314
329
  updatePartialMany(request: Array<DeploymentActivity>, options?: IThrowingRepoOptions): Promise<PartialWithId<DeploymentActivity>[]>;
@@ -356,6 +371,9 @@ declare class VersionCreateActivityCruds {
356
371
  /** Saves the input as a new VersionCreateActivity. */
357
372
  tryCreate(request: VersionCreateActivity, options?: IRepoOptions): Promise<SingleResult<VersionCreateActivity>>;
358
373
  create(request: VersionCreateActivity, options?: IThrowingRepoOptions): Promise<VersionCreateActivity>;
374
+ /** Performs the given operation on each existing VersionCreateActivity that satisfies the given criteria. */
375
+ tryUpdatePartialWhere(request: UpdatePartialWhereRequest<VersionCreateActivity, VersionCreateActivityCriteria>, options?: IRepoOptions): Promise<BatchResult<VersionCreateActivity>>;
376
+ UpdatePartialWhere(request: UpdatePartialWhereRequest<VersionCreateActivity, VersionCreateActivityCriteria>, options?: IThrowingRepoOptions): Promise<VersionCreateActivity[]>;
359
377
  /** Overwrites the given properties for each existing VersionCreateActivity. */
360
378
  tryUpdatePartialMany(request: Array<VersionCreateActivity>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<VersionCreateActivity>>>;
361
379
  updatePartialMany(request: Array<VersionCreateActivity>, options?: IThrowingRepoOptions): Promise<PartialWithId<VersionCreateActivity>[]>;
@@ -403,6 +421,9 @@ declare class AssetVersionConfigCruds {
403
421
  /** Saves the input as a new AssetVersionConfig. */
404
422
  tryCreate(request: AssetVersionConfig, options?: IRepoOptions): Promise<SingleResult<AssetVersionConfig>>;
405
423
  create(request: AssetVersionConfig, options?: IThrowingRepoOptions): Promise<AssetVersionConfig>;
424
+ /** Performs the given operation on each existing AssetVersionConfig that satisfies the given criteria. */
425
+ tryUpdatePartialWhere(request: UpdatePartialWhereRequest<AssetVersionConfig, AssetVersionConfigCriteria>, options?: IRepoOptions): Promise<BatchResult<AssetVersionConfig>>;
426
+ UpdatePartialWhere(request: UpdatePartialWhereRequest<AssetVersionConfig, AssetVersionConfigCriteria>, options?: IThrowingRepoOptions): Promise<AssetVersionConfig[]>;
406
427
  /** Overwrites the given properties for each existing AssetVersionConfig. */
407
428
  tryUpdatePartialMany(request: Array<AssetVersionConfig>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<AssetVersionConfig>>>;
408
429
  updatePartialMany(request: Array<AssetVersionConfig>, options?: IThrowingRepoOptions): Promise<PartialWithId<AssetVersionConfig>[]>;
@@ -450,6 +471,9 @@ declare class AssetCruds {
450
471
  /** Saves the input as a new Asset. */
451
472
  tryCreate(request: Asset, options?: IRepoOptions): Promise<SingleResult<Asset>>;
452
473
  create(request: Asset, options?: IThrowingRepoOptions): Promise<Asset>;
474
+ /** Performs the given operation on each existing Asset that satisfies the given criteria. */
475
+ tryUpdatePartialWhere(request: UpdatePartialWhereRequest<Asset, AssetCriteria>, options?: IRepoOptions): Promise<BatchResult<Asset>>;
476
+ UpdatePartialWhere(request: UpdatePartialWhereRequest<Asset, AssetCriteria>, options?: IThrowingRepoOptions): Promise<Asset[]>;
453
477
  /** Overwrites the given properties for each existing Asset. */
454
478
  tryUpdatePartialMany(request: Array<Asset>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<Asset>>>;
455
479
  updatePartialMany(request: Array<Asset>, options?: IThrowingRepoOptions): Promise<PartialWithId<Asset>[]>;
@@ -496,6 +520,9 @@ declare class EntityAclCruds {
496
520
  /** Saves the input as a new EntityAcl. */
497
521
  tryCreate(request: EntityAcl, options?: IRepoOptions): Promise<SingleResult<EntityAcl>>;
498
522
  create(request: EntityAcl, options?: IThrowingRepoOptions): Promise<EntityAcl>;
523
+ /** Performs the given operation on each existing EntityAcl that satisfies the given criteria. */
524
+ tryUpdatePartialWhere(request: UpdatePartialWhereRequest<EntityAcl, EntityAclCriteria>, options?: IRepoOptions): Promise<BatchResult<EntityAcl>>;
525
+ UpdatePartialWhere(request: UpdatePartialWhereRequest<EntityAcl, EntityAclCriteria>, options?: IThrowingRepoOptions): Promise<EntityAcl[]>;
499
526
  /** Overwrites the given properties for each existing EntityAcl. */
500
527
  tryUpdatePartialMany(request: Array<EntityAcl>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<EntityAcl>>>;
501
528
  updatePartialMany(request: Array<EntityAcl>, options?: IThrowingRepoOptions): Promise<PartialWithId<EntityAcl>[]>;
@@ -542,6 +569,9 @@ declare class AuthRoleCruds {
542
569
  /** Saves the input as a new AuthRole. */
543
570
  tryCreate(request: AuthRole, options?: IRepoOptions): Promise<SingleResult<AuthRole>>;
544
571
  create(request: AuthRole, options?: IThrowingRepoOptions): Promise<AuthRole>;
572
+ /** Performs the given operation on each existing AuthRole that satisfies the given criteria. */
573
+ tryUpdatePartialWhere(request: UpdatePartialWhereRequest<AuthRole, AuthRoleCriteria>, options?: IRepoOptions): Promise<BatchResult<AuthRole>>;
574
+ UpdatePartialWhere(request: UpdatePartialWhereRequest<AuthRole, AuthRoleCriteria>, options?: IThrowingRepoOptions): Promise<AuthRole[]>;
545
575
  /** Overwrites the given properties for each existing AuthRole. */
546
576
  tryUpdatePartialMany(request: Array<AuthRole>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<AuthRole>>>;
547
577
  updatePartialMany(request: Array<AuthRole>, options?: IThrowingRepoOptions): Promise<PartialWithId<AuthRole>[]>;
@@ -599,6 +629,9 @@ declare class BuildPipelineCruds {
599
629
  /** Saves the input as a new BuildPipeline. */
600
630
  tryCreate(request: BuildPipeline, options?: IRepoOptions): Promise<SingleResult<BuildPipeline>>;
601
631
  create(request: BuildPipeline, options?: IThrowingRepoOptions): Promise<BuildPipeline>;
632
+ /** Performs the given operation on each existing BuildPipeline that satisfies the given criteria. */
633
+ tryUpdatePartialWhere(request: UpdatePartialWhereRequest<BuildPipeline, BuildPipelineCriteria>, options?: IRepoOptions): Promise<BatchResult<BuildPipeline>>;
634
+ UpdatePartialWhere(request: UpdatePartialWhereRequest<BuildPipeline, BuildPipelineCriteria>, options?: IThrowingRepoOptions): Promise<BuildPipeline[]>;
602
635
  /** Overwrites the given properties for each existing BuildPipeline. */
603
636
  tryUpdatePartialMany(request: Array<BuildPipeline>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<BuildPipeline>>>;
604
637
  updatePartialMany(request: Array<BuildPipeline>, options?: IThrowingRepoOptions): Promise<PartialWithId<BuildPipeline>[]>;
@@ -646,6 +679,9 @@ declare class BuildCruds {
646
679
  /** Saves the input as a new Build. */
647
680
  tryCreate(request: Build, options?: IRepoOptions): Promise<SingleResult<Build>>;
648
681
  create(request: Build, options?: IThrowingRepoOptions): Promise<Build>;
682
+ /** Performs the given operation on each existing Build that satisfies the given criteria. */
683
+ tryUpdatePartialWhere(request: UpdatePartialWhereRequest<Build, BuildCriteria>, options?: IRepoOptions): Promise<BatchResult<Build>>;
684
+ UpdatePartialWhere(request: UpdatePartialWhereRequest<Build, BuildCriteria>, options?: IThrowingRepoOptions): Promise<Build[]>;
649
685
  /** Overwrites the given properties for each existing Build. */
650
686
  tryUpdatePartialMany(request: Array<Build>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<Build>>>;
651
687
  updatePartialMany(request: Array<Build>, options?: IThrowingRepoOptions): Promise<PartialWithId<Build>[]>;
@@ -693,6 +729,9 @@ declare class CabinetCruds {
693
729
  /** Saves the input as a new Cabinet. */
694
730
  tryCreate(request: Cabinet, options?: IRepoOptions): Promise<SingleResult<Cabinet>>;
695
731
  create(request: Cabinet, options?: IThrowingRepoOptions): Promise<Cabinet>;
732
+ /** Performs the given operation on each existing Cabinet that satisfies the given criteria. */
733
+ tryUpdatePartialWhere(request: UpdatePartialWhereRequest<Cabinet, CabinetCriteria>, options?: IRepoOptions): Promise<BatchResult<Cabinet>>;
734
+ UpdatePartialWhere(request: UpdatePartialWhereRequest<Cabinet, CabinetCriteria>, options?: IThrowingRepoOptions): Promise<Cabinet[]>;
696
735
  /** Overwrites the given properties for each existing Cabinet. */
697
736
  tryUpdatePartialMany(request: Array<Cabinet>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<Cabinet>>>;
698
737
  updatePartialMany(request: Array<Cabinet>, options?: IThrowingRepoOptions): Promise<PartialWithId<Cabinet>[]>;
@@ -740,6 +779,9 @@ declare class ClusterDefCruds {
740
779
  /** Saves the input as a new ClusterDef. */
741
780
  tryCreate(request: ClusterDef, options?: IRepoOptions): Promise<SingleResult<ClusterDef>>;
742
781
  create(request: ClusterDef, options?: IThrowingRepoOptions): Promise<ClusterDef>;
782
+ /** Performs the given operation on each existing ClusterDef that satisfies the given criteria. */
783
+ tryUpdatePartialWhere(request: UpdatePartialWhereRequest<ClusterDef, ClusterDefCriteria>, options?: IRepoOptions): Promise<BatchResult<ClusterDef>>;
784
+ UpdatePartialWhere(request: UpdatePartialWhereRequest<ClusterDef, ClusterDefCriteria>, options?: IThrowingRepoOptions): Promise<ClusterDef[]>;
743
785
  /** Overwrites the given properties for each existing ClusterDef. */
744
786
  tryUpdatePartialMany(request: Array<ClusterDef>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<ClusterDef>>>;
745
787
  updatePartialMany(request: Array<ClusterDef>, options?: IThrowingRepoOptions): Promise<PartialWithId<ClusterDef>[]>;
@@ -787,6 +829,9 @@ declare class ClusterGrantCruds {
787
829
  /** Saves the input as a new ClusterGrant. */
788
830
  tryCreate(request: ClusterGrant, options?: IRepoOptions): Promise<SingleResult<ClusterGrant>>;
789
831
  create(request: ClusterGrant, options?: IThrowingRepoOptions): Promise<ClusterGrant>;
832
+ /** Performs the given operation on each existing ClusterGrant that satisfies the given criteria. */
833
+ tryUpdatePartialWhere(request: UpdatePartialWhereRequest<ClusterGrant, ClusterGrantCriteria>, options?: IRepoOptions): Promise<BatchResult<ClusterGrant>>;
834
+ UpdatePartialWhere(request: UpdatePartialWhereRequest<ClusterGrant, ClusterGrantCriteria>, options?: IThrowingRepoOptions): Promise<ClusterGrant[]>;
790
835
  /** Overwrites the given properties for each existing ClusterGrant. */
791
836
  tryUpdatePartialMany(request: Array<ClusterGrant>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<ClusterGrant>>>;
792
837
  updatePartialMany(request: Array<ClusterGrant>, options?: IThrowingRepoOptions): Promise<PartialWithId<ClusterGrant>[]>;
@@ -834,6 +879,9 @@ declare class ClusterCruds {
834
879
  /** Saves the input as a new Cluster. */
835
880
  tryCreate(request: Cluster, options?: IRepoOptions): Promise<SingleResult<Cluster>>;
836
881
  create(request: Cluster, options?: IThrowingRepoOptions): Promise<Cluster>;
882
+ /** Performs the given operation on each existing Cluster that satisfies the given criteria. */
883
+ tryUpdatePartialWhere(request: UpdatePartialWhereRequest<Cluster, ClusterCriteria>, options?: IRepoOptions): Promise<BatchResult<Cluster>>;
884
+ UpdatePartialWhere(request: UpdatePartialWhereRequest<Cluster, ClusterCriteria>, options?: IThrowingRepoOptions): Promise<Cluster[]>;
837
885
  /** Overwrites the given properties for each existing Cluster. */
838
886
  tryUpdatePartialMany(request: Array<Cluster>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<Cluster>>>;
839
887
  updatePartialMany(request: Array<Cluster>, options?: IThrowingRepoOptions): Promise<PartialWithId<Cluster>[]>;
@@ -881,6 +929,9 @@ declare class CommentCruds {
881
929
  /** Saves the input as a new Comment. */
882
930
  tryCreate(request: Comment, options?: IRepoOptions): Promise<SingleResult<Comment>>;
883
931
  create(request: Comment, options?: IThrowingRepoOptions): Promise<Comment>;
932
+ /** Performs the given operation on each existing Comment that satisfies the given criteria. */
933
+ tryUpdatePartialWhere(request: UpdatePartialWhereRequest<Comment, CommentCriteria>, options?: IRepoOptions): Promise<BatchResult<Comment>>;
934
+ UpdatePartialWhere(request: UpdatePartialWhereRequest<Comment, CommentCriteria>, options?: IThrowingRepoOptions): Promise<Comment[]>;
884
935
  /** Overwrites the given properties for each existing Comment. */
885
936
  tryUpdatePartialMany(request: Array<Comment>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<Comment>>>;
886
937
  updatePartialMany(request: Array<Comment>, options?: IThrowingRepoOptions): Promise<PartialWithId<Comment>[]>;
@@ -928,6 +979,9 @@ declare class ConfigChangeCruds {
928
979
  /** Saves the input as a new ConfigChange. */
929
980
  tryCreate(request: ConfigChange, options?: IRepoOptions): Promise<SingleResult<ConfigChange>>;
930
981
  create(request: ConfigChange, options?: IThrowingRepoOptions): Promise<ConfigChange>;
982
+ /** Performs the given operation on each existing ConfigChange that satisfies the given criteria. */
983
+ tryUpdatePartialWhere(request: UpdatePartialWhereRequest<ConfigChange, ConfigChangeCriteria>, options?: IRepoOptions): Promise<BatchResult<ConfigChange>>;
984
+ UpdatePartialWhere(request: UpdatePartialWhereRequest<ConfigChange, ConfigChangeCriteria>, options?: IThrowingRepoOptions): Promise<ConfigChange[]>;
931
985
  /** Overwrites the given properties for each existing ConfigChange. */
932
986
  tryUpdatePartialMany(request: Array<ConfigChange>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<ConfigChange>>>;
933
987
  updatePartialMany(request: Array<ConfigChange>, options?: IThrowingRepoOptions): Promise<PartialWithId<ConfigChange>[]>;
@@ -975,6 +1029,9 @@ declare class ContainerFootprintCruds {
975
1029
  /** Saves the input as a new ContainerFootprint. */
976
1030
  tryCreate(request: ContainerFootprint, options?: IRepoOptions): Promise<SingleResult<ContainerFootprint>>;
977
1031
  create(request: ContainerFootprint, options?: IThrowingRepoOptions): Promise<ContainerFootprint>;
1032
+ /** Performs the given operation on each existing ContainerFootprint that satisfies the given criteria. */
1033
+ tryUpdatePartialWhere(request: UpdatePartialWhereRequest<ContainerFootprint, ContainerFootprintCriteria>, options?: IRepoOptions): Promise<BatchResult<ContainerFootprint>>;
1034
+ UpdatePartialWhere(request: UpdatePartialWhereRequest<ContainerFootprint, ContainerFootprintCriteria>, options?: IThrowingRepoOptions): Promise<ContainerFootprint[]>;
978
1035
  /** Overwrites the given properties for each existing ContainerFootprint. */
979
1036
  tryUpdatePartialMany(request: Array<ContainerFootprint>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<ContainerFootprint>>>;
980
1037
  updatePartialMany(request: Array<ContainerFootprint>, options?: IThrowingRepoOptions): Promise<PartialWithId<ContainerFootprint>[]>;
@@ -1022,6 +1079,9 @@ declare class CspTenantProfileCruds {
1022
1079
  /** Saves the input as a new CspTenantProfile. */
1023
1080
  tryCreate(request: CspTenantProfile, options?: IRepoOptions): Promise<SingleResult<CspTenantProfile>>;
1024
1081
  create(request: CspTenantProfile, options?: IThrowingRepoOptions): Promise<CspTenantProfile>;
1082
+ /** Performs the given operation on each existing CspTenantProfile that satisfies the given criteria. */
1083
+ tryUpdatePartialWhere(request: UpdatePartialWhereRequest<CspTenantProfile, CspTenantProfileCriteria>, options?: IRepoOptions): Promise<BatchResult<CspTenantProfile>>;
1084
+ UpdatePartialWhere(request: UpdatePartialWhereRequest<CspTenantProfile, CspTenantProfileCriteria>, options?: IThrowingRepoOptions): Promise<CspTenantProfile[]>;
1025
1085
  /** Overwrites the given properties for each existing CspTenantProfile. */
1026
1086
  tryUpdatePartialMany(request: Array<CspTenantProfile>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<CspTenantProfile>>>;
1027
1087
  updatePartialMany(request: Array<CspTenantProfile>, options?: IThrowingRepoOptions): Promise<PartialWithId<CspTenantProfile>[]>;
@@ -1069,6 +1129,9 @@ declare class DeployAttemptCruds {
1069
1129
  /** Saves the input as a new DeployAttempt. */
1070
1130
  tryCreate(request: DeployAttempt, options?: IRepoOptions): Promise<SingleResult<DeployAttempt>>;
1071
1131
  create(request: DeployAttempt, options?: IThrowingRepoOptions): Promise<DeployAttempt>;
1132
+ /** Performs the given operation on each existing DeployAttempt that satisfies the given criteria. */
1133
+ tryUpdatePartialWhere(request: UpdatePartialWhereRequest<DeployAttempt, DeployAttemptCriteria>, options?: IRepoOptions): Promise<BatchResult<DeployAttempt>>;
1134
+ UpdatePartialWhere(request: UpdatePartialWhereRequest<DeployAttempt, DeployAttemptCriteria>, options?: IThrowingRepoOptions): Promise<DeployAttempt[]>;
1072
1135
  /** Overwrites the given properties for each existing DeployAttempt. */
1073
1136
  tryUpdatePartialMany(request: Array<DeployAttempt>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<DeployAttempt>>>;
1074
1137
  updatePartialMany(request: Array<DeployAttempt>, options?: IThrowingRepoOptions): Promise<PartialWithId<DeployAttempt>[]>;
@@ -1116,6 +1179,9 @@ declare class DeployPipelineCruds {
1116
1179
  /** Saves the input as a new DeployPipeline. */
1117
1180
  tryCreate(request: DeployPipeline, options?: IRepoOptions): Promise<SingleResult<DeployPipeline>>;
1118
1181
  create(request: DeployPipeline, options?: IThrowingRepoOptions): Promise<DeployPipeline>;
1182
+ /** Performs the given operation on each existing DeployPipeline that satisfies the given criteria. */
1183
+ tryUpdatePartialWhere(request: UpdatePartialWhereRequest<DeployPipeline, DeployPipelineCriteria>, options?: IRepoOptions): Promise<BatchResult<DeployPipeline>>;
1184
+ UpdatePartialWhere(request: UpdatePartialWhereRequest<DeployPipeline, DeployPipelineCriteria>, options?: IThrowingRepoOptions): Promise<DeployPipeline[]>;
1119
1185
  /** Overwrites the given properties for each existing DeployPipeline. */
1120
1186
  tryUpdatePartialMany(request: Array<DeployPipeline>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<DeployPipeline>>>;
1121
1187
  updatePartialMany(request: Array<DeployPipeline>, options?: IThrowingRepoOptions): Promise<PartialWithId<DeployPipeline>[]>;
@@ -1163,6 +1229,9 @@ declare class DeploymentCruds {
1163
1229
  /** Saves the input as a new Deployment. */
1164
1230
  tryCreate(request: Deployment, options?: IRepoOptions): Promise<SingleResult<Deployment>>;
1165
1231
  create(request: Deployment, options?: IThrowingRepoOptions): Promise<Deployment>;
1232
+ /** Performs the given operation on each existing Deployment that satisfies the given criteria. */
1233
+ tryUpdatePartialWhere(request: UpdatePartialWhereRequest<Deployment, DeploymentCriteria>, options?: IRepoOptions): Promise<BatchResult<Deployment>>;
1234
+ UpdatePartialWhere(request: UpdatePartialWhereRequest<Deployment, DeploymentCriteria>, options?: IThrowingRepoOptions): Promise<Deployment[]>;
1166
1235
  /** Overwrites the given properties for each existing Deployment. */
1167
1236
  tryUpdatePartialMany(request: Array<Deployment>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<Deployment>>>;
1168
1237
  updatePartialMany(request: Array<Deployment>, options?: IThrowingRepoOptions): Promise<PartialWithId<Deployment>[]>;
@@ -1210,6 +1279,9 @@ declare class EnterpriseRunStateCruds {
1210
1279
  /** Saves the input as a new EnterpriseRunState. */
1211
1280
  tryCreate(request: EnterpriseRunState, options?: IRepoOptions): Promise<SingleResult<EnterpriseRunState>>;
1212
1281
  create(request: EnterpriseRunState, options?: IThrowingRepoOptions): Promise<EnterpriseRunState>;
1282
+ /** Performs the given operation on each existing EnterpriseRunState that satisfies the given criteria. */
1283
+ tryUpdatePartialWhere(request: UpdatePartialWhereRequest<EnterpriseRunState, EnterpriseRunStateCriteria>, options?: IRepoOptions): Promise<BatchResult<EnterpriseRunState>>;
1284
+ UpdatePartialWhere(request: UpdatePartialWhereRequest<EnterpriseRunState, EnterpriseRunStateCriteria>, options?: IThrowingRepoOptions): Promise<EnterpriseRunState[]>;
1213
1285
  /** Overwrites the given properties for each existing EnterpriseRunState. */
1214
1286
  tryUpdatePartialMany(request: Array<EnterpriseRunState>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<EnterpriseRunState>>>;
1215
1287
  updatePartialMany(request: Array<EnterpriseRunState>, options?: IThrowingRepoOptions): Promise<PartialWithId<EnterpriseRunState>[]>;
@@ -1257,6 +1329,9 @@ declare class EnterpriseVersionConfigCruds {
1257
1329
  /** Saves the input as a new EnterpriseVersionConfig. */
1258
1330
  tryCreate(request: EnterpriseVersionConfig, options?: IRepoOptions): Promise<SingleResult<EnterpriseVersionConfig>>;
1259
1331
  create(request: EnterpriseVersionConfig, options?: IThrowingRepoOptions): Promise<EnterpriseVersionConfig>;
1332
+ /** Performs the given operation on each existing EnterpriseVersionConfig that satisfies the given criteria. */
1333
+ tryUpdatePartialWhere(request: UpdatePartialWhereRequest<EnterpriseVersionConfig, EnterpriseVersionConfigCriteria>, options?: IRepoOptions): Promise<BatchResult<EnterpriseVersionConfig>>;
1334
+ UpdatePartialWhere(request: UpdatePartialWhereRequest<EnterpriseVersionConfig, EnterpriseVersionConfigCriteria>, options?: IThrowingRepoOptions): Promise<EnterpriseVersionConfig[]>;
1260
1335
  /** Overwrites the given properties for each existing EnterpriseVersionConfig. */
1261
1336
  tryUpdatePartialMany(request: Array<EnterpriseVersionConfig>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<EnterpriseVersionConfig>>>;
1262
1337
  updatePartialMany(request: Array<EnterpriseVersionConfig>, options?: IThrowingRepoOptions): Promise<PartialWithId<EnterpriseVersionConfig>[]>;
@@ -1304,6 +1379,9 @@ declare class EnterpriseCruds {
1304
1379
  /** Saves the input as a new Enterprise. */
1305
1380
  tryCreate(request: Enterprise, options?: IRepoOptions): Promise<SingleResult<Enterprise>>;
1306
1381
  create(request: Enterprise, options?: IThrowingRepoOptions): Promise<Enterprise>;
1382
+ /** Performs the given operation on each existing Enterprise that satisfies the given criteria. */
1383
+ tryUpdatePartialWhere(request: UpdatePartialWhereRequest<Enterprise, EnterpriseCriteria>, options?: IRepoOptions): Promise<BatchResult<Enterprise>>;
1384
+ UpdatePartialWhere(request: UpdatePartialWhereRequest<Enterprise, EnterpriseCriteria>, options?: IThrowingRepoOptions): Promise<Enterprise[]>;
1307
1385
  /** Overwrites the given properties for each existing Enterprise. */
1308
1386
  tryUpdatePartialMany(request: Array<Enterprise>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<Enterprise>>>;
1309
1387
  updatePartialMany(request: Array<Enterprise>, options?: IThrowingRepoOptions): Promise<PartialWithId<Enterprise>[]>;
@@ -1351,6 +1429,9 @@ declare class EnvironmentCruds {
1351
1429
  /** Saves the input as a new Environment. */
1352
1430
  tryCreate(request: Environment, options?: IRepoOptions): Promise<SingleResult<Environment>>;
1353
1431
  create(request: Environment, options?: IThrowingRepoOptions): Promise<Environment>;
1432
+ /** Performs the given operation on each existing Environment that satisfies the given criteria. */
1433
+ tryUpdatePartialWhere(request: UpdatePartialWhereRequest<Environment, EnvironmentCriteria>, options?: IRepoOptions): Promise<BatchResult<Environment>>;
1434
+ UpdatePartialWhere(request: UpdatePartialWhereRequest<Environment, EnvironmentCriteria>, options?: IThrowingRepoOptions): Promise<Environment[]>;
1354
1435
  /** Overwrites the given properties for each existing Environment. */
1355
1436
  tryUpdatePartialMany(request: Array<Environment>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<Environment>>>;
1356
1437
  updatePartialMany(request: Array<Environment>, options?: IThrowingRepoOptions): Promise<PartialWithId<Environment>[]>;
@@ -1398,6 +1479,9 @@ declare class FileStoreDefCruds {
1398
1479
  /** Saves the input as a new FileStoreDef. */
1399
1480
  tryCreate(request: FileStoreDef, options?: IRepoOptions): Promise<SingleResult<FileStoreDef>>;
1400
1481
  create(request: FileStoreDef, options?: IThrowingRepoOptions): Promise<FileStoreDef>;
1482
+ /** Performs the given operation on each existing FileStoreDef that satisfies the given criteria. */
1483
+ tryUpdatePartialWhere(request: UpdatePartialWhereRequest<FileStoreDef, FileStoreDefCriteria>, options?: IRepoOptions): Promise<BatchResult<FileStoreDef>>;
1484
+ UpdatePartialWhere(request: UpdatePartialWhereRequest<FileStoreDef, FileStoreDefCriteria>, options?: IThrowingRepoOptions): Promise<FileStoreDef[]>;
1401
1485
  /** Overwrites the given properties for each existing FileStoreDef. */
1402
1486
  tryUpdatePartialMany(request: Array<FileStoreDef>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<FileStoreDef>>>;
1403
1487
  updatePartialMany(request: Array<FileStoreDef>, options?: IThrowingRepoOptions): Promise<PartialWithId<FileStoreDef>[]>;
@@ -1445,6 +1529,9 @@ declare class ScopedHostNameConfigCruds {
1445
1529
  /** Saves the input as a new ScopedHostNameConfig. */
1446
1530
  tryCreate(request: ScopedHostNameConfig, options?: IRepoOptions): Promise<SingleResult<ScopedHostNameConfig>>;
1447
1531
  create(request: ScopedHostNameConfig, options?: IThrowingRepoOptions): Promise<ScopedHostNameConfig>;
1532
+ /** Performs the given operation on each existing ScopedHostNameConfig that satisfies the given criteria. */
1533
+ tryUpdatePartialWhere(request: UpdatePartialWhereRequest<ScopedHostNameConfig, ScopedHostNameConfigCriteria>, options?: IRepoOptions): Promise<BatchResult<ScopedHostNameConfig>>;
1534
+ UpdatePartialWhere(request: UpdatePartialWhereRequest<ScopedHostNameConfig, ScopedHostNameConfigCriteria>, options?: IThrowingRepoOptions): Promise<ScopedHostNameConfig[]>;
1448
1535
  /** Overwrites the given properties for each existing ScopedHostNameConfig. */
1449
1536
  tryUpdatePartialMany(request: Array<ScopedHostNameConfig>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<ScopedHostNameConfig>>>;
1450
1537
  updatePartialMany(request: Array<ScopedHostNameConfig>, options?: IThrowingRepoOptions): Promise<PartialWithId<ScopedHostNameConfig>[]>;
@@ -1492,6 +1579,9 @@ declare class ImageRegistryCruds {
1492
1579
  /** Saves the input as a new ImageRegistry. */
1493
1580
  tryCreate(request: ImageRegistry, options?: IRepoOptions): Promise<SingleResult<ImageRegistry>>;
1494
1581
  create(request: ImageRegistry, options?: IThrowingRepoOptions): Promise<ImageRegistry>;
1582
+ /** Performs the given operation on each existing ImageRegistry that satisfies the given criteria. */
1583
+ tryUpdatePartialWhere(request: UpdatePartialWhereRequest<ImageRegistry, ImageRegistryCriteria>, options?: IRepoOptions): Promise<BatchResult<ImageRegistry>>;
1584
+ UpdatePartialWhere(request: UpdatePartialWhereRequest<ImageRegistry, ImageRegistryCriteria>, options?: IThrowingRepoOptions): Promise<ImageRegistry[]>;
1495
1585
  /** Overwrites the given properties for each existing ImageRegistry. */
1496
1586
  tryUpdatePartialMany(request: Array<ImageRegistry>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<ImageRegistry>>>;
1497
1587
  updatePartialMany(request: Array<ImageRegistry>, options?: IThrowingRepoOptions): Promise<PartialWithId<ImageRegistry>[]>;
@@ -1539,6 +1629,9 @@ declare class ImageCruds {
1539
1629
  /** Saves the input as a new Image. */
1540
1630
  tryCreate(request: Image, options?: IRepoOptions): Promise<SingleResult<Image>>;
1541
1631
  create(request: Image, options?: IThrowingRepoOptions): Promise<Image>;
1632
+ /** Performs the given operation on each existing Image that satisfies the given criteria. */
1633
+ tryUpdatePartialWhere(request: UpdatePartialWhereRequest<Image, ImageCriteria>, options?: IRepoOptions): Promise<BatchResult<Image>>;
1634
+ UpdatePartialWhere(request: UpdatePartialWhereRequest<Image, ImageCriteria>, options?: IThrowingRepoOptions): Promise<Image[]>;
1542
1635
  /** Overwrites the given properties for each existing Image. */
1543
1636
  tryUpdatePartialMany(request: Array<Image>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<Image>>>;
1544
1637
  updatePartialMany(request: Array<Image>, options?: IThrowingRepoOptions): Promise<PartialWithId<Image>[]>;
@@ -1586,6 +1679,9 @@ declare class SetupJournalCruds {
1586
1679
  /** Saves the input as a new SetupJournal. */
1587
1680
  tryCreate(request: SetupJournal, options?: IRepoOptions): Promise<SingleResult<SetupJournal>>;
1588
1681
  create(request: SetupJournal, options?: IThrowingRepoOptions): Promise<SetupJournal>;
1682
+ /** Performs the given operation on each existing SetupJournal that satisfies the given criteria. */
1683
+ tryUpdatePartialWhere(request: UpdatePartialWhereRequest<SetupJournal, SetupJournalCriteria>, options?: IRepoOptions): Promise<BatchResult<SetupJournal>>;
1684
+ UpdatePartialWhere(request: UpdatePartialWhereRequest<SetupJournal, SetupJournalCriteria>, options?: IThrowingRepoOptions): Promise<SetupJournal[]>;
1589
1685
  /** Overwrites the given properties for each existing SetupJournal. */
1590
1686
  tryUpdatePartialMany(request: Array<SetupJournal>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<SetupJournal>>>;
1591
1687
  updatePartialMany(request: Array<SetupJournal>, options?: IThrowingRepoOptions): Promise<PartialWithId<SetupJournal>[]>;
@@ -1633,6 +1729,9 @@ declare class KitCruds {
1633
1729
  /** Saves the input as a new Kit. */
1634
1730
  tryCreate(request: Kit, options?: IRepoOptions): Promise<SingleResult<Kit>>;
1635
1731
  create(request: Kit, options?: IThrowingRepoOptions): Promise<Kit>;
1732
+ /** Performs the given operation on each existing Kit that satisfies the given criteria. */
1733
+ tryUpdatePartialWhere(request: UpdatePartialWhereRequest<Kit, KitCriteria>, options?: IRepoOptions): Promise<BatchResult<Kit>>;
1734
+ UpdatePartialWhere(request: UpdatePartialWhereRequest<Kit, KitCriteria>, options?: IThrowingRepoOptions): Promise<Kit[]>;
1636
1735
  /** Overwrites the given properties for each existing Kit. */
1637
1736
  tryUpdatePartialMany(request: Array<Kit>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<Kit>>>;
1638
1737
  updatePartialMany(request: Array<Kit>, options?: IThrowingRepoOptions): Promise<PartialWithId<Kit>[]>;
@@ -1680,6 +1779,9 @@ declare class KvpStoreDefCruds {
1680
1779
  /** Saves the input as a new KvpStoreDef. */
1681
1780
  tryCreate(request: KvpStoreDef, options?: IRepoOptions): Promise<SingleResult<KvpStoreDef>>;
1682
1781
  create(request: KvpStoreDef, options?: IThrowingRepoOptions): Promise<KvpStoreDef>;
1782
+ /** Performs the given operation on each existing KvpStoreDef that satisfies the given criteria. */
1783
+ tryUpdatePartialWhere(request: UpdatePartialWhereRequest<KvpStoreDef, KvpStoreDefCriteria>, options?: IRepoOptions): Promise<BatchResult<KvpStoreDef>>;
1784
+ UpdatePartialWhere(request: UpdatePartialWhereRequest<KvpStoreDef, KvpStoreDefCriteria>, options?: IThrowingRepoOptions): Promise<KvpStoreDef[]>;
1683
1785
  /** Overwrites the given properties for each existing KvpStoreDef. */
1684
1786
  tryUpdatePartialMany(request: Array<KvpStoreDef>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<KvpStoreDef>>>;
1685
1787
  updatePartialMany(request: Array<KvpStoreDef>, options?: IThrowingRepoOptions): Promise<PartialWithId<KvpStoreDef>[]>;
@@ -1727,6 +1829,9 @@ declare class LabelCruds {
1727
1829
  /** Saves the input as a new Label. */
1728
1830
  tryCreate(request: Label, options?: IRepoOptions): Promise<SingleResult<Label>>;
1729
1831
  create(request: Label, options?: IThrowingRepoOptions): Promise<Label>;
1832
+ /** Performs the given operation on each existing Label that satisfies the given criteria. */
1833
+ tryUpdatePartialWhere(request: UpdatePartialWhereRequest<Label, LabelCriteria>, options?: IRepoOptions): Promise<BatchResult<Label>>;
1834
+ UpdatePartialWhere(request: UpdatePartialWhereRequest<Label, LabelCriteria>, options?: IThrowingRepoOptions): Promise<Label[]>;
1730
1835
  /** Overwrites the given properties for each existing Label. */
1731
1836
  tryUpdatePartialMany(request: Array<Label>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<Label>>>;
1732
1837
  updatePartialMany(request: Array<Label>, options?: IThrowingRepoOptions): Promise<PartialWithId<Label>[]>;
@@ -1774,6 +1879,9 @@ declare class NodePoolDefCruds {
1774
1879
  /** Saves the input as a new NodePoolDef. */
1775
1880
  tryCreate(request: NodePoolDef, options?: IRepoOptions): Promise<SingleResult<NodePoolDef>>;
1776
1881
  create(request: NodePoolDef, options?: IThrowingRepoOptions): Promise<NodePoolDef>;
1882
+ /** Performs the given operation on each existing NodePoolDef that satisfies the given criteria. */
1883
+ tryUpdatePartialWhere(request: UpdatePartialWhereRequest<NodePoolDef, NodePoolDefCriteria>, options?: IRepoOptions): Promise<BatchResult<NodePoolDef>>;
1884
+ UpdatePartialWhere(request: UpdatePartialWhereRequest<NodePoolDef, NodePoolDefCriteria>, options?: IThrowingRepoOptions): Promise<NodePoolDef[]>;
1777
1885
  /** Overwrites the given properties for each existing NodePoolDef. */
1778
1886
  tryUpdatePartialMany(request: Array<NodePoolDef>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<NodePoolDef>>>;
1779
1887
  updatePartialMany(request: Array<NodePoolDef>, options?: IThrowingRepoOptions): Promise<PartialWithId<NodePoolDef>[]>;
@@ -1821,6 +1929,9 @@ declare class ProbeCruds {
1821
1929
  /** Saves the input as a new Probe. */
1822
1930
  tryCreate(request: Probe, options?: IRepoOptions): Promise<SingleResult<Probe>>;
1823
1931
  create(request: Probe, options?: IThrowingRepoOptions): Promise<Probe>;
1932
+ /** Performs the given operation on each existing Probe that satisfies the given criteria. */
1933
+ tryUpdatePartialWhere(request: UpdatePartialWhereRequest<Probe, ProbeCriteria>, options?: IRepoOptions): Promise<BatchResult<Probe>>;
1934
+ UpdatePartialWhere(request: UpdatePartialWhereRequest<Probe, ProbeCriteria>, options?: IThrowingRepoOptions): Promise<Probe[]>;
1824
1935
  /** Overwrites the given properties for each existing Probe. */
1825
1936
  tryUpdatePartialMany(request: Array<Probe>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<Probe>>>;
1826
1937
  updatePartialMany(request: Array<Probe>, options?: IThrowingRepoOptions): Promise<PartialWithId<Probe>[]>;
@@ -1868,6 +1979,9 @@ declare class ProductVersionConfigCruds {
1868
1979
  /** Saves the input as a new ProductVersionConfig. */
1869
1980
  tryCreate(request: ProductVersionConfig, options?: IRepoOptions): Promise<SingleResult<ProductVersionConfig>>;
1870
1981
  create(request: ProductVersionConfig, options?: IThrowingRepoOptions): Promise<ProductVersionConfig>;
1982
+ /** Performs the given operation on each existing ProductVersionConfig that satisfies the given criteria. */
1983
+ tryUpdatePartialWhere(request: UpdatePartialWhereRequest<ProductVersionConfig, ProductVersionConfigCriteria>, options?: IRepoOptions): Promise<BatchResult<ProductVersionConfig>>;
1984
+ UpdatePartialWhere(request: UpdatePartialWhereRequest<ProductVersionConfig, ProductVersionConfigCriteria>, options?: IThrowingRepoOptions): Promise<ProductVersionConfig[]>;
1871
1985
  /** Overwrites the given properties for each existing ProductVersionConfig. */
1872
1986
  tryUpdatePartialMany(request: Array<ProductVersionConfig>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<ProductVersionConfig>>>;
1873
1987
  updatePartialMany(request: Array<ProductVersionConfig>, options?: IThrowingRepoOptions): Promise<PartialWithId<ProductVersionConfig>[]>;
@@ -1915,6 +2029,9 @@ declare class ProductCruds {
1915
2029
  /** Saves the input as a new Product. */
1916
2030
  tryCreate(request: Product, options?: IRepoOptions): Promise<SingleResult<Product>>;
1917
2031
  create(request: Product, options?: IThrowingRepoOptions): Promise<Product>;
2032
+ /** Performs the given operation on each existing Product that satisfies the given criteria. */
2033
+ tryUpdatePartialWhere(request: UpdatePartialWhereRequest<Product, ProductCriteria>, options?: IRepoOptions): Promise<BatchResult<Product>>;
2034
+ UpdatePartialWhere(request: UpdatePartialWhereRequest<Product, ProductCriteria>, options?: IThrowingRepoOptions): Promise<Product[]>;
1918
2035
  /** Overwrites the given properties for each existing Product. */
1919
2036
  tryUpdatePartialMany(request: Array<Product>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<Product>>>;
1920
2037
  updatePartialMany(request: Array<Product>, options?: IThrowingRepoOptions): Promise<PartialWithId<Product>[]>;
@@ -1962,6 +2079,9 @@ declare class ScopedSettingCruds {
1962
2079
  /** Saves the input as a new ScopedSetting. */
1963
2080
  tryCreate(request: ScopedSetting, options?: IRepoOptions): Promise<SingleResult<ScopedSetting>>;
1964
2081
  create(request: ScopedSetting, options?: IThrowingRepoOptions): Promise<ScopedSetting>;
2082
+ /** Performs the given operation on each existing ScopedSetting that satisfies the given criteria. */
2083
+ tryUpdatePartialWhere(request: UpdatePartialWhereRequest<ScopedSetting, ScopedSettingCriteria>, options?: IRepoOptions): Promise<BatchResult<ScopedSetting>>;
2084
+ UpdatePartialWhere(request: UpdatePartialWhereRequest<ScopedSetting, ScopedSettingCriteria>, options?: IThrowingRepoOptions): Promise<ScopedSetting[]>;
1965
2085
  /** Overwrites the given properties for each existing ScopedSetting. */
1966
2086
  tryUpdatePartialMany(request: Array<ScopedSetting>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<ScopedSetting>>>;
1967
2087
  updatePartialMany(request: Array<ScopedSetting>, options?: IThrowingRepoOptions): Promise<PartialWithId<ScopedSetting>[]>;
@@ -2009,6 +2129,9 @@ declare class SnapshotCruds {
2009
2129
  /** Saves the input as a new Snapshot. */
2010
2130
  tryCreate(request: Snapshot, options?: IRepoOptions): Promise<SingleResult<Snapshot>>;
2011
2131
  create(request: Snapshot, options?: IThrowingRepoOptions): Promise<Snapshot>;
2132
+ /** Performs the given operation on each existing Snapshot that satisfies the given criteria. */
2133
+ tryUpdatePartialWhere(request: UpdatePartialWhereRequest<Snapshot, SnapshotCriteria>, options?: IRepoOptions): Promise<BatchResult<Snapshot>>;
2134
+ UpdatePartialWhere(request: UpdatePartialWhereRequest<Snapshot, SnapshotCriteria>, options?: IThrowingRepoOptions): Promise<Snapshot[]>;
2012
2135
  /** Overwrites the given properties for each existing Snapshot. */
2013
2136
  tryUpdatePartialMany(request: Array<Snapshot>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<Snapshot>>>;
2014
2137
  updatePartialMany(request: Array<Snapshot>, options?: IThrowingRepoOptions): Promise<PartialWithId<Snapshot>[]>;
@@ -2056,6 +2179,9 @@ declare class SourceRepoCruds {
2056
2179
  /** Saves the input as a new SourceRepo. */
2057
2180
  tryCreate(request: SourceRepo, options?: IRepoOptions): Promise<SingleResult<SourceRepo>>;
2058
2181
  create(request: SourceRepo, options?: IThrowingRepoOptions): Promise<SourceRepo>;
2182
+ /** Performs the given operation on each existing SourceRepo that satisfies the given criteria. */
2183
+ tryUpdatePartialWhere(request: UpdatePartialWhereRequest<SourceRepo, SourceRepoCriteria>, options?: IRepoOptions): Promise<BatchResult<SourceRepo>>;
2184
+ UpdatePartialWhere(request: UpdatePartialWhereRequest<SourceRepo, SourceRepoCriteria>, options?: IThrowingRepoOptions): Promise<SourceRepo[]>;
2059
2185
  /** Overwrites the given properties for each existing SourceRepo. */
2060
2186
  tryUpdatePartialMany(request: Array<SourceRepo>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<SourceRepo>>>;
2061
2187
  updatePartialMany(request: Array<SourceRepo>, options?: IThrowingRepoOptions): Promise<PartialWithId<SourceRepo>[]>;
@@ -2103,6 +2229,9 @@ declare class SubscriptionCruds {
2103
2229
  /** Saves the input as a new Subscription. */
2104
2230
  tryCreate(request: Subscription, options?: IRepoOptions): Promise<SingleResult<Subscription>>;
2105
2231
  create(request: Subscription, options?: IThrowingRepoOptions): Promise<Subscription>;
2232
+ /** Performs the given operation on each existing Subscription that satisfies the given criteria. */
2233
+ tryUpdatePartialWhere(request: UpdatePartialWhereRequest<Subscription, SubscriptionCriteria>, options?: IRepoOptions): Promise<BatchResult<Subscription>>;
2234
+ UpdatePartialWhere(request: UpdatePartialWhereRequest<Subscription, SubscriptionCriteria>, options?: IThrowingRepoOptions): Promise<Subscription[]>;
2106
2235
  /** Overwrites the given properties for each existing Subscription. */
2107
2236
  tryUpdatePartialMany(request: Array<Subscription>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<Subscription>>>;
2108
2237
  updatePartialMany(request: Array<Subscription>, options?: IThrowingRepoOptions): Promise<PartialWithId<Subscription>[]>;
@@ -2150,6 +2279,9 @@ declare class TagCruds {
2150
2279
  /** Saves the input as a new Tag. */
2151
2280
  tryCreate(request: Tag, options?: IRepoOptions): Promise<SingleResult<Tag>>;
2152
2281
  create(request: Tag, options?: IThrowingRepoOptions): Promise<Tag>;
2282
+ /** Performs the given operation on each existing Tag that satisfies the given criteria. */
2283
+ tryUpdatePartialWhere(request: UpdatePartialWhereRequest<Tag, TagCriteria>, options?: IRepoOptions): Promise<BatchResult<Tag>>;
2284
+ UpdatePartialWhere(request: UpdatePartialWhereRequest<Tag, TagCriteria>, options?: IThrowingRepoOptions): Promise<Tag[]>;
2153
2285
  /** Overwrites the given properties for each existing Tag. */
2154
2286
  tryUpdatePartialMany(request: Array<Tag>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<Tag>>>;
2155
2287
  updatePartialMany(request: Array<Tag>, options?: IThrowingRepoOptions): Promise<PartialWithId<Tag>[]>;
@@ -2197,6 +2329,9 @@ declare class CodiacTenantCruds {
2197
2329
  /** Saves the input as a new CodiacTenant. */
2198
2330
  tryCreate(request: CodiacTenant, options?: IRepoOptions): Promise<SingleResult<CodiacTenant>>;
2199
2331
  create(request: CodiacTenant, options?: IThrowingRepoOptions): Promise<CodiacTenant>;
2332
+ /** Performs the given operation on each existing CodiacTenant that satisfies the given criteria. */
2333
+ tryUpdatePartialWhere(request: UpdatePartialWhereRequest<CodiacTenant, CodiacTenantCriteria>, options?: IRepoOptions): Promise<BatchResult<CodiacTenant>>;
2334
+ UpdatePartialWhere(request: UpdatePartialWhereRequest<CodiacTenant, CodiacTenantCriteria>, options?: IThrowingRepoOptions): Promise<CodiacTenant[]>;
2200
2335
  /** Overwrites the given properties for each existing CodiacTenant. */
2201
2336
  tryUpdatePartialMany(request: Array<CodiacTenant>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<CodiacTenant>>>;
2202
2337
  updatePartialMany(request: Array<CodiacTenant>, options?: IThrowingRepoOptions): Promise<PartialWithId<CodiacTenant>[]>;
@@ -2244,6 +2379,9 @@ declare class VersionConfigCruds {
2244
2379
  /** Saves the input as a new VersionConfig. */
2245
2380
  tryCreate(request: VersionConfig, options?: IRepoOptions): Promise<SingleResult<VersionConfig>>;
2246
2381
  create(request: VersionConfig, options?: IThrowingRepoOptions): Promise<VersionConfig>;
2382
+ /** Performs the given operation on each existing VersionConfig that satisfies the given criteria. */
2383
+ tryUpdatePartialWhere(request: UpdatePartialWhereRequest<VersionConfig, VersionConfigCriteria>, options?: IRepoOptions): Promise<BatchResult<VersionConfig>>;
2384
+ UpdatePartialWhere(request: UpdatePartialWhereRequest<VersionConfig, VersionConfigCriteria>, options?: IThrowingRepoOptions): Promise<VersionConfig[]>;
2247
2385
  /** Overwrites the given properties for each existing VersionConfig. */
2248
2386
  tryUpdatePartialMany(request: Array<VersionConfig>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<VersionConfig>>>;
2249
2387
  updatePartialMany(request: Array<VersionConfig>, options?: IThrowingRepoOptions): Promise<PartialWithId<VersionConfig>[]>;
@@ -2291,6 +2429,9 @@ declare class WorkFlowStrategyCruds {
2291
2429
  /** Saves the input as a new WorkFlowStrategy. */
2292
2430
  tryCreate(request: WorkFlowStrategy, options?: IRepoOptions): Promise<SingleResult<WorkFlowStrategy>>;
2293
2431
  create(request: WorkFlowStrategy, options?: IThrowingRepoOptions): Promise<WorkFlowStrategy>;
2432
+ /** Performs the given operation on each existing WorkFlowStrategy that satisfies the given criteria. */
2433
+ tryUpdatePartialWhere(request: UpdatePartialWhereRequest<WorkFlowStrategy, WorkFlowStrategyCriteria>, options?: IRepoOptions): Promise<BatchResult<WorkFlowStrategy>>;
2434
+ UpdatePartialWhere(request: UpdatePartialWhereRequest<WorkFlowStrategy, WorkFlowStrategyCriteria>, options?: IThrowingRepoOptions): Promise<WorkFlowStrategy[]>;
2294
2435
  /** Overwrites the given properties for each existing WorkFlowStrategy. */
2295
2436
  tryUpdatePartialMany(request: Array<WorkFlowStrategy>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<WorkFlowStrategy>>>;
2296
2437
  updatePartialMany(request: Array<WorkFlowStrategy>, options?: IThrowingRepoOptions): Promise<PartialWithId<WorkFlowStrategy>[]>;
@@ -2338,6 +2479,9 @@ declare class ZombiePeriodCruds {
2338
2479
  /** Saves the input as a new ZombiePeriod. */
2339
2480
  tryCreate(request: ZombiePeriod, options?: IRepoOptions): Promise<SingleResult<ZombiePeriod>>;
2340
2481
  create(request: ZombiePeriod, options?: IThrowingRepoOptions): Promise<ZombiePeriod>;
2482
+ /** Performs the given operation on each existing ZombiePeriod that satisfies the given criteria. */
2483
+ tryUpdatePartialWhere(request: UpdatePartialWhereRequest<ZombiePeriod, ZombiePeriodCriteria>, options?: IRepoOptions): Promise<BatchResult<ZombiePeriod>>;
2484
+ UpdatePartialWhere(request: UpdatePartialWhereRequest<ZombiePeriod, ZombiePeriodCriteria>, options?: IThrowingRepoOptions): Promise<ZombiePeriod[]>;
2341
2485
  /** Overwrites the given properties for each existing ZombiePeriod. */
2342
2486
  tryUpdatePartialMany(request: Array<ZombiePeriod>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<ZombiePeriod>>>;
2343
2487
  updatePartialMany(request: Array<ZombiePeriod>, options?: IThrowingRepoOptions): Promise<PartialWithId<ZombiePeriod>[]>;