@codiac.io/codiac-cli 1.2.224 → 1.2.226
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 +1 -1
- package/dist/apis/codiac-api/common/api-client-base.js +28 -1
- package/dist/apis/codiac-api/common/api-client-base.js.map +1 -1
- package/dist/apis/codiac-api/gen/client.d.ts +717 -1
- package/dist/apis/codiac-api/gen/client.js +9265 -1490
- package/dist/apis/codiac-api/gen/client.js.map +1 -1
- package/dist/apis/codiac-api/gen/contracts.d.ts +449 -174
- package/dist/apis/codiac-api/gen/contracts.js +104 -27
- package/dist/apis/codiac-api/gen/contracts.js.map +1 -1
- package/dist/command-base-enterprise.d.ts +1 -2
- package/dist/command-base-enterprise.js +0 -12
- package/dist/command-base-enterprise.js.map +1 -1
- package/dist/commands/asset/create.d.ts +1 -1
- package/dist/commands/asset/create.js +1 -1
- package/dist/commands/asset/create.js.map +1 -1
- package/dist/commands/asset/destroy.d.ts +2 -0
- package/dist/commands/asset/destroy.js +36 -11
- package/dist/commands/asset/destroy.js.map +1 -1
- package/dist/commands/asset/helm.js +3 -1
- package/dist/commands/asset/helm.js.map +1 -1
- package/dist/commands/asset/list.d.ts +1 -1
- package/dist/commands/asset/list.js +2 -1
- package/dist/commands/asset/list.js.map +1 -1
- package/dist/commands/asset/probe/create.d.ts +5 -0
- package/dist/commands/asset/probe/create.js +77 -21
- package/dist/commands/asset/probe/create.js.map +1 -1
- package/dist/commands/asset/view.d.ts +8 -11
- package/dist/commands/asset/view.js +169 -137
- package/dist/commands/asset/view.js.map +1 -1
- package/dist/commands/config/add.d.ts +11 -2
- package/dist/commands/config/add.js +53 -6
- package/dist/commands/config/add.js.map +1 -1
- package/dist/commands/config/delete.js +1 -1
- package/dist/commands/config/delete.js.map +1 -1
- package/dist/commands/config/settings/get.js +1 -1
- package/dist/commands/config/settings/get.js.map +1 -1
- package/dist/commands/config/view.d.ts +5 -0
- package/dist/commands/config/view.js +41 -13
- package/dist/commands/config/view.js.map +1 -1
- package/dist/commands/deploy.js +7 -2
- package/dist/commands/deploy.js.map +1 -1
- package/dist/relay/relay-container.js +1 -1
- package/dist/uilogic/config-ui-utils.d.ts +24 -1
- package/dist/uilogic/config-ui-utils.js +91 -0
- package/dist/uilogic/config-ui-utils.js.map +1 -1
- package/dist/uilogic/enterprise-contextualizer.d.ts +7 -1
- package/dist/uilogic/enterprise-contextualizer.js +49 -2
- package/dist/uilogic/enterprise-contextualizer.js.map +1 -1
- package/oclif.manifest.json +104 -15
- package/package.json +2 -2
|
@@ -40,9 +40,12 @@ export declare class CodiacClient extends ApiClientBase {
|
|
|
40
40
|
Build: BuildCruds;
|
|
41
41
|
Cabinet: CabinetCruds;
|
|
42
42
|
ClusterDef: ClusterDefCruds;
|
|
43
|
+
ClusterGrant: ClusterGrantCruds;
|
|
43
44
|
Cluster: ClusterCruds;
|
|
45
|
+
Comment: CommentCruds;
|
|
44
46
|
ConfigChange: ConfigChangeCruds;
|
|
45
47
|
ContainerFootprint: ContainerFootprintCruds;
|
|
48
|
+
CspTenantProfile: CspTenantProfileCruds;
|
|
46
49
|
DeployAttempt: DeployAttemptCruds;
|
|
47
50
|
DeployPipeline: DeployPipelineCruds;
|
|
48
51
|
Deployment: DeploymentCruds;
|
|
@@ -57,6 +60,7 @@ export declare class CodiacClient extends ApiClientBase {
|
|
|
57
60
|
SetupJournal: SetupJournalCruds;
|
|
58
61
|
Kit: KitCruds;
|
|
59
62
|
KvpStoreDef: KvpStoreDefCruds;
|
|
63
|
+
Label: LabelCruds;
|
|
60
64
|
NodePoolDef: NodePoolDefCruds;
|
|
61
65
|
Probe: ProbeCruds;
|
|
62
66
|
ProductVersionConfig: ProductVersionConfigCruds;
|
|
@@ -71,7 +75,7 @@ export declare class CodiacClient extends ApiClientBase {
|
|
|
71
75
|
WorkFlowStrategy: WorkFlowStrategyCruds;
|
|
72
76
|
ZombiePeriod: ZombiePeriodCruds;
|
|
73
77
|
}
|
|
74
|
-
import { EntityAcl, EntityAclCriteria, TenantSubscriptionCancel, AuthTenant, AuthenticationRequest, TenantUser, MyTenantRequest, ChangePasswordRequest, ResetPasswordRequest, RefreshTokenRequest, AuthRole, AuthRoleCriteria, RoleAssignmentRequest, TenantSubscriptionUpdate, SwitchTenantRequest, TenantRegistrationRequest, CodiacUserCriteria, CodiacUser, CodiacUserPatch, AddTenantUserRequest, WhoAmIRequest, TenantStatusChange, SubscriptionStatus } from "../contracts";
|
|
78
|
+
import { EntityAcl, EntityAclCriteria, TenantSubscriptionCancel, AuthTenant, AuthenticationRequest, TenantUser, MyTenantRequest, ChangePasswordRequest, ResetPasswordRequest, RefreshTokenRequest, AuthRole, AuthRoleCriteria, RoleAssignmentRequest, TenantSubscriptionUpdate, SwitchTenantRequest, TenantRegistrationRequest, CodiacUserCriteria, CodiacUser, CodiacUserPatch, AddTenantUserRequest, WhoAmIRequest, TenantStatusChange, SubscriptionStatus, PartialWithId } from "../contracts";
|
|
75
79
|
declare class AuthOperations {
|
|
76
80
|
private core;
|
|
77
81
|
protected logger: IBetterLogger;
|
|
@@ -85,7 +89,11 @@ declare class AuthOperations {
|
|
|
85
89
|
EntityAclUpdate(request: EntityAcl, options?: IRepoOptions): Promise<SingleResult<EntityAcl>>;
|
|
86
90
|
EntityAclPatch(request: PatchSpecForOne<EntityAcl>, options?: IRepoOptions): Promise<SingleResult<EntityAcl>>;
|
|
87
91
|
EntityAclDelete(request: IdSpecFor<EntityAcl>, options?: IRepoOptions): Promise<SingleResult<EntityAcl>>;
|
|
92
|
+
EntityAclUpdatePartial(request: EntityAcl, options?: IRepoOptions): Promise<SingleResult<PartialWithId<EntityAcl>>>;
|
|
88
93
|
EntityAclCreate(request: EntityAcl, options?: IRepoOptions): Promise<SingleResult<EntityAcl>>;
|
|
94
|
+
EntityAclUpdatePartialMany(request: Array<EntityAcl>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<EntityAcl>>>;
|
|
95
|
+
EntityAclUpsertMany(request: Array<EntityAcl>, options?: IRepoOptions): Promise<BatchResult<EntityAcl>>;
|
|
96
|
+
EntityAclUpsert(request: EntityAcl, options?: IRepoOptions): Promise<SingleResult<EntityAcl>>;
|
|
89
97
|
SubscriptionCancel(request: TenantSubscriptionCancel, options?: IRepoOptions): Promise<SingleResult<AuthTenant>>;
|
|
90
98
|
Login(request: AuthenticationRequest, options?: IRepoOptions): Promise<SingleResult<TenantUser>>;
|
|
91
99
|
MyTenant(request: MyTenantRequest, options?: IRepoOptions): Promise<Result>;
|
|
@@ -101,8 +109,12 @@ declare class AuthOperations {
|
|
|
101
109
|
RoleUpdate(request: AuthRole, options?: IRepoOptions): Promise<SingleResult<AuthRole>>;
|
|
102
110
|
RolePatch(request: PatchSpecForOne<AuthRole>, options?: IRepoOptions): Promise<SingleResult<AuthRole>>;
|
|
103
111
|
RoleDelete(request: IdSpecFor<AuthRole>, options?: IRepoOptions): Promise<SingleResult<AuthRole>>;
|
|
112
|
+
RoleUpdatePartial(request: AuthRole, options?: IRepoOptions): Promise<SingleResult<PartialWithId<AuthRole>>>;
|
|
104
113
|
RoleAssignment(request: RoleAssignmentRequest, options?: IRepoOptions): Promise<SingleResult<TenantUser>>;
|
|
105
114
|
RoleCreate(request: AuthRole, options?: IRepoOptions): Promise<SingleResult<AuthRole>>;
|
|
115
|
+
RoleUpdatePartialMany(request: Array<AuthRole>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<AuthRole>>>;
|
|
116
|
+
RoleUpsertMany(request: Array<AuthRole>, options?: IRepoOptions): Promise<BatchResult<AuthRole>>;
|
|
117
|
+
RoleUpsert(request: AuthRole, options?: IRepoOptions): Promise<SingleResult<AuthRole>>;
|
|
106
118
|
SubscriptionUpdate(request: TenantSubscriptionUpdate, options?: IRepoOptions): Promise<SingleResult<AuthTenant>>;
|
|
107
119
|
SwitchTenant(request: SwitchTenantRequest, options?: IRepoOptions): Promise<SingleResult<TenantUser>>;
|
|
108
120
|
TenantRegistration(request: TenantRegistrationRequest, options?: IRepoOptions): Promise<SingleResult<AuthTenant>>;
|
|
@@ -150,9 +162,21 @@ declare class ActivityBaseCruds {
|
|
|
150
162
|
/** Deletes the existing ActivityBase. */
|
|
151
163
|
tryDelete(request: IdSpecFor<ActivityBase>, options?: IRepoOptions): Promise<SingleResult<ActivityBase>>;
|
|
152
164
|
delete(request: IdSpecFor<ActivityBase>, options?: IThrowingRepoOptions): Promise<ActivityBase>;
|
|
165
|
+
/** Overwrites the given properties of the existing ActivityBase. */
|
|
166
|
+
tryUpdatePartial(request: ActivityBase, options?: IRepoOptions): Promise<SingleResult<PartialWithId<ActivityBase>>>;
|
|
167
|
+
updatePartial(request: ActivityBase, options?: IThrowingRepoOptions): Promise<PartialWithId<ActivityBase>>;
|
|
153
168
|
/** Saves the input as a new ActivityBase. */
|
|
154
169
|
tryCreate(request: ActivityBase, options?: IRepoOptions): Promise<SingleResult<ActivityBase>>;
|
|
155
170
|
create(request: ActivityBase, options?: IThrowingRepoOptions): Promise<ActivityBase>;
|
|
171
|
+
/** Overwrites the given properties for each existing ActivityBase. */
|
|
172
|
+
tryUpdatePartialMany(request: Array<ActivityBase>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<ActivityBase>>>;
|
|
173
|
+
updatePartialMany(request: Array<ActivityBase>, options?: IThrowingRepoOptions): Promise<PartialWithId<ActivityBase>[]>;
|
|
174
|
+
/** Saves each given input as a new ActivityBase, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
175
|
+
tryUpsertMany(request: Array<ActivityBase>, options?: IRepoOptions): Promise<BatchResult<ActivityBase>>;
|
|
176
|
+
upsertMany(request: Array<ActivityBase>, options?: IThrowingRepoOptions): Promise<ActivityBase[]>;
|
|
177
|
+
/** Saves the input as a new ActivityBase, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
178
|
+
tryUpsert(request: ActivityBase, options?: IRepoOptions): Promise<SingleResult<ActivityBase>>;
|
|
179
|
+
upsert(request: ActivityBase, options?: IThrowingRepoOptions): Promise<ActivityBase>;
|
|
156
180
|
}
|
|
157
181
|
import { CabinetCreateActivity, CabinetCreateActivityCriteria } from "../contracts";
|
|
158
182
|
declare class CabinetCreateActivityCruds {
|
|
@@ -185,9 +209,21 @@ declare class CabinetCreateActivityCruds {
|
|
|
185
209
|
/** Deletes the existing CabinetCreateActivity. */
|
|
186
210
|
tryDelete(request: IdSpecFor<CabinetCreateActivity>, options?: IRepoOptions): Promise<SingleResult<CabinetCreateActivity>>;
|
|
187
211
|
delete(request: IdSpecFor<CabinetCreateActivity>, options?: IThrowingRepoOptions): Promise<CabinetCreateActivity>;
|
|
212
|
+
/** Overwrites the given properties of the existing CabinetCreateActivity. */
|
|
213
|
+
tryUpdatePartial(request: CabinetCreateActivity, options?: IRepoOptions): Promise<SingleResult<PartialWithId<CabinetCreateActivity>>>;
|
|
214
|
+
updatePartial(request: CabinetCreateActivity, options?: IThrowingRepoOptions): Promise<PartialWithId<CabinetCreateActivity>>;
|
|
188
215
|
/** Saves the input as a new CabinetCreateActivity. */
|
|
189
216
|
tryCreate(request: CabinetCreateActivity, options?: IRepoOptions): Promise<SingleResult<CabinetCreateActivity>>;
|
|
190
217
|
create(request: CabinetCreateActivity, options?: IThrowingRepoOptions): Promise<CabinetCreateActivity>;
|
|
218
|
+
/** Overwrites the given properties for each existing CabinetCreateActivity. */
|
|
219
|
+
tryUpdatePartialMany(request: Array<CabinetCreateActivity>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<CabinetCreateActivity>>>;
|
|
220
|
+
updatePartialMany(request: Array<CabinetCreateActivity>, options?: IThrowingRepoOptions): Promise<PartialWithId<CabinetCreateActivity>[]>;
|
|
221
|
+
/** Saves each given input as a new CabinetCreateActivity, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
222
|
+
tryUpsertMany(request: Array<CabinetCreateActivity>, options?: IRepoOptions): Promise<BatchResult<CabinetCreateActivity>>;
|
|
223
|
+
upsertMany(request: Array<CabinetCreateActivity>, options?: IThrowingRepoOptions): Promise<CabinetCreateActivity[]>;
|
|
224
|
+
/** Saves the input as a new CabinetCreateActivity, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
225
|
+
tryUpsert(request: CabinetCreateActivity, options?: IRepoOptions): Promise<SingleResult<CabinetCreateActivity>>;
|
|
226
|
+
upsert(request: CabinetCreateActivity, options?: IThrowingRepoOptions): Promise<CabinetCreateActivity>;
|
|
191
227
|
}
|
|
192
228
|
import { ConfigDeploymentActivity, ConfigDeploymentActivityCriteria } from "../contracts";
|
|
193
229
|
declare class ConfigDeploymentActivityCruds {
|
|
@@ -220,9 +256,21 @@ declare class ConfigDeploymentActivityCruds {
|
|
|
220
256
|
/** Deletes the existing ConfigDeploymentActivity. */
|
|
221
257
|
tryDelete(request: IdSpecFor<ConfigDeploymentActivity>, options?: IRepoOptions): Promise<SingleResult<ConfigDeploymentActivity>>;
|
|
222
258
|
delete(request: IdSpecFor<ConfigDeploymentActivity>, options?: IThrowingRepoOptions): Promise<ConfigDeploymentActivity>;
|
|
259
|
+
/** Overwrites the given properties of the existing ConfigDeploymentActivity. */
|
|
260
|
+
tryUpdatePartial(request: ConfigDeploymentActivity, options?: IRepoOptions): Promise<SingleResult<PartialWithId<ConfigDeploymentActivity>>>;
|
|
261
|
+
updatePartial(request: ConfigDeploymentActivity, options?: IThrowingRepoOptions): Promise<PartialWithId<ConfigDeploymentActivity>>;
|
|
223
262
|
/** Saves the input as a new ConfigDeploymentActivity. */
|
|
224
263
|
tryCreate(request: ConfigDeploymentActivity, options?: IRepoOptions): Promise<SingleResult<ConfigDeploymentActivity>>;
|
|
225
264
|
create(request: ConfigDeploymentActivity, options?: IThrowingRepoOptions): Promise<ConfigDeploymentActivity>;
|
|
265
|
+
/** Overwrites the given properties for each existing ConfigDeploymentActivity. */
|
|
266
|
+
tryUpdatePartialMany(request: Array<ConfigDeploymentActivity>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<ConfigDeploymentActivity>>>;
|
|
267
|
+
updatePartialMany(request: Array<ConfigDeploymentActivity>, options?: IThrowingRepoOptions): Promise<PartialWithId<ConfigDeploymentActivity>[]>;
|
|
268
|
+
/** Saves each given input as a new ConfigDeploymentActivity, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
269
|
+
tryUpsertMany(request: Array<ConfigDeploymentActivity>, options?: IRepoOptions): Promise<BatchResult<ConfigDeploymentActivity>>;
|
|
270
|
+
upsertMany(request: Array<ConfigDeploymentActivity>, options?: IThrowingRepoOptions): Promise<ConfigDeploymentActivity[]>;
|
|
271
|
+
/** Saves the input as a new ConfigDeploymentActivity, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
272
|
+
tryUpsert(request: ConfigDeploymentActivity, options?: IRepoOptions): Promise<SingleResult<ConfigDeploymentActivity>>;
|
|
273
|
+
upsert(request: ConfigDeploymentActivity, options?: IThrowingRepoOptions): Promise<ConfigDeploymentActivity>;
|
|
226
274
|
}
|
|
227
275
|
import { DeploymentActivity, DeploymentActivityCriteria } from "../contracts";
|
|
228
276
|
declare class DeploymentActivityCruds {
|
|
@@ -255,9 +303,21 @@ declare class DeploymentActivityCruds {
|
|
|
255
303
|
/** Deletes the existing DeploymentActivity. */
|
|
256
304
|
tryDelete(request: IdSpecFor<DeploymentActivity>, options?: IRepoOptions): Promise<SingleResult<DeploymentActivity>>;
|
|
257
305
|
delete(request: IdSpecFor<DeploymentActivity>, options?: IThrowingRepoOptions): Promise<DeploymentActivity>;
|
|
306
|
+
/** Overwrites the given properties of the existing DeploymentActivity. */
|
|
307
|
+
tryUpdatePartial(request: DeploymentActivity, options?: IRepoOptions): Promise<SingleResult<PartialWithId<DeploymentActivity>>>;
|
|
308
|
+
updatePartial(request: DeploymentActivity, options?: IThrowingRepoOptions): Promise<PartialWithId<DeploymentActivity>>;
|
|
258
309
|
/** Saves the input as a new DeploymentActivity. */
|
|
259
310
|
tryCreate(request: DeploymentActivity, options?: IRepoOptions): Promise<SingleResult<DeploymentActivity>>;
|
|
260
311
|
create(request: DeploymentActivity, options?: IThrowingRepoOptions): Promise<DeploymentActivity>;
|
|
312
|
+
/** Overwrites the given properties for each existing DeploymentActivity. */
|
|
313
|
+
tryUpdatePartialMany(request: Array<DeploymentActivity>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<DeploymentActivity>>>;
|
|
314
|
+
updatePartialMany(request: Array<DeploymentActivity>, options?: IThrowingRepoOptions): Promise<PartialWithId<DeploymentActivity>[]>;
|
|
315
|
+
/** Saves each given input as a new DeploymentActivity, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
316
|
+
tryUpsertMany(request: Array<DeploymentActivity>, options?: IRepoOptions): Promise<BatchResult<DeploymentActivity>>;
|
|
317
|
+
upsertMany(request: Array<DeploymentActivity>, options?: IThrowingRepoOptions): Promise<DeploymentActivity[]>;
|
|
318
|
+
/** Saves the input as a new DeploymentActivity, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
319
|
+
tryUpsert(request: DeploymentActivity, options?: IRepoOptions): Promise<SingleResult<DeploymentActivity>>;
|
|
320
|
+
upsert(request: DeploymentActivity, options?: IThrowingRepoOptions): Promise<DeploymentActivity>;
|
|
261
321
|
}
|
|
262
322
|
import { VersionCreateActivity, VersionCreateActivityCriteria } from "../contracts";
|
|
263
323
|
declare class VersionCreateActivityCruds {
|
|
@@ -290,9 +350,21 @@ declare class VersionCreateActivityCruds {
|
|
|
290
350
|
/** Deletes the existing VersionCreateActivity. */
|
|
291
351
|
tryDelete(request: IdSpecFor<VersionCreateActivity>, options?: IRepoOptions): Promise<SingleResult<VersionCreateActivity>>;
|
|
292
352
|
delete(request: IdSpecFor<VersionCreateActivity>, options?: IThrowingRepoOptions): Promise<VersionCreateActivity>;
|
|
353
|
+
/** Overwrites the given properties of the existing VersionCreateActivity. */
|
|
354
|
+
tryUpdatePartial(request: VersionCreateActivity, options?: IRepoOptions): Promise<SingleResult<PartialWithId<VersionCreateActivity>>>;
|
|
355
|
+
updatePartial(request: VersionCreateActivity, options?: IThrowingRepoOptions): Promise<PartialWithId<VersionCreateActivity>>;
|
|
293
356
|
/** Saves the input as a new VersionCreateActivity. */
|
|
294
357
|
tryCreate(request: VersionCreateActivity, options?: IRepoOptions): Promise<SingleResult<VersionCreateActivity>>;
|
|
295
358
|
create(request: VersionCreateActivity, options?: IThrowingRepoOptions): Promise<VersionCreateActivity>;
|
|
359
|
+
/** Overwrites the given properties for each existing VersionCreateActivity. */
|
|
360
|
+
tryUpdatePartialMany(request: Array<VersionCreateActivity>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<VersionCreateActivity>>>;
|
|
361
|
+
updatePartialMany(request: Array<VersionCreateActivity>, options?: IThrowingRepoOptions): Promise<PartialWithId<VersionCreateActivity>[]>;
|
|
362
|
+
/** Saves each given input as a new VersionCreateActivity, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
363
|
+
tryUpsertMany(request: Array<VersionCreateActivity>, options?: IRepoOptions): Promise<BatchResult<VersionCreateActivity>>;
|
|
364
|
+
upsertMany(request: Array<VersionCreateActivity>, options?: IThrowingRepoOptions): Promise<VersionCreateActivity[]>;
|
|
365
|
+
/** Saves the input as a new VersionCreateActivity, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
366
|
+
tryUpsert(request: VersionCreateActivity, options?: IRepoOptions): Promise<SingleResult<VersionCreateActivity>>;
|
|
367
|
+
upsert(request: VersionCreateActivity, options?: IThrowingRepoOptions): Promise<VersionCreateActivity>;
|
|
296
368
|
}
|
|
297
369
|
import { AssetVersionConfig, AssetVersionConfigCriteria } from "../contracts";
|
|
298
370
|
declare class AssetVersionConfigCruds {
|
|
@@ -325,9 +397,21 @@ declare class AssetVersionConfigCruds {
|
|
|
325
397
|
/** Deletes the existing AssetVersionConfig. */
|
|
326
398
|
tryDelete(request: IdSpecFor<AssetVersionConfig>, options?: IRepoOptions): Promise<SingleResult<AssetVersionConfig>>;
|
|
327
399
|
delete(request: IdSpecFor<AssetVersionConfig>, options?: IThrowingRepoOptions): Promise<AssetVersionConfig>;
|
|
400
|
+
/** Overwrites the given properties of the existing AssetVersionConfig. */
|
|
401
|
+
tryUpdatePartial(request: AssetVersionConfig, options?: IRepoOptions): Promise<SingleResult<PartialWithId<AssetVersionConfig>>>;
|
|
402
|
+
updatePartial(request: AssetVersionConfig, options?: IThrowingRepoOptions): Promise<PartialWithId<AssetVersionConfig>>;
|
|
328
403
|
/** Saves the input as a new AssetVersionConfig. */
|
|
329
404
|
tryCreate(request: AssetVersionConfig, options?: IRepoOptions): Promise<SingleResult<AssetVersionConfig>>;
|
|
330
405
|
create(request: AssetVersionConfig, options?: IThrowingRepoOptions): Promise<AssetVersionConfig>;
|
|
406
|
+
/** Overwrites the given properties for each existing AssetVersionConfig. */
|
|
407
|
+
tryUpdatePartialMany(request: Array<AssetVersionConfig>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<AssetVersionConfig>>>;
|
|
408
|
+
updatePartialMany(request: Array<AssetVersionConfig>, options?: IThrowingRepoOptions): Promise<PartialWithId<AssetVersionConfig>[]>;
|
|
409
|
+
/** Saves each given input as a new AssetVersionConfig, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
410
|
+
tryUpsertMany(request: Array<AssetVersionConfig>, options?: IRepoOptions): Promise<BatchResult<AssetVersionConfig>>;
|
|
411
|
+
upsertMany(request: Array<AssetVersionConfig>, options?: IThrowingRepoOptions): Promise<AssetVersionConfig[]>;
|
|
412
|
+
/** Saves the input as a new AssetVersionConfig, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
413
|
+
tryUpsert(request: AssetVersionConfig, options?: IRepoOptions): Promise<SingleResult<AssetVersionConfig>>;
|
|
414
|
+
upsert(request: AssetVersionConfig, options?: IThrowingRepoOptions): Promise<AssetVersionConfig>;
|
|
331
415
|
}
|
|
332
416
|
import { Asset, AssetCriteria } from "../contracts";
|
|
333
417
|
declare class AssetCruds {
|
|
@@ -360,9 +444,21 @@ declare class AssetCruds {
|
|
|
360
444
|
/** Deletes the existing Asset. */
|
|
361
445
|
tryDelete(request: IdSpecFor<Asset>, options?: IRepoOptions): Promise<SingleResult<Asset>>;
|
|
362
446
|
delete(request: IdSpecFor<Asset>, options?: IThrowingRepoOptions): Promise<Asset>;
|
|
447
|
+
/** Overwrites the given properties of the existing Asset. */
|
|
448
|
+
tryUpdatePartial(request: Asset, options?: IRepoOptions): Promise<SingleResult<PartialWithId<Asset>>>;
|
|
449
|
+
updatePartial(request: Asset, options?: IThrowingRepoOptions): Promise<PartialWithId<Asset>>;
|
|
363
450
|
/** Saves the input as a new Asset. */
|
|
364
451
|
tryCreate(request: Asset, options?: IRepoOptions): Promise<SingleResult<Asset>>;
|
|
365
452
|
create(request: Asset, options?: IThrowingRepoOptions): Promise<Asset>;
|
|
453
|
+
/** Overwrites the given properties for each existing Asset. */
|
|
454
|
+
tryUpdatePartialMany(request: Array<Asset>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<Asset>>>;
|
|
455
|
+
updatePartialMany(request: Array<Asset>, options?: IThrowingRepoOptions): Promise<PartialWithId<Asset>[]>;
|
|
456
|
+
/** Saves each given input as a new Asset, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
457
|
+
tryUpsertMany(request: Array<Asset>, options?: IRepoOptions): Promise<BatchResult<Asset>>;
|
|
458
|
+
upsertMany(request: Array<Asset>, options?: IThrowingRepoOptions): Promise<Asset[]>;
|
|
459
|
+
/** Saves the input as a new Asset, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
460
|
+
tryUpsert(request: Asset, options?: IRepoOptions): Promise<SingleResult<Asset>>;
|
|
461
|
+
upsert(request: Asset, options?: IThrowingRepoOptions): Promise<Asset>;
|
|
366
462
|
}
|
|
367
463
|
declare class EntityAclCruds {
|
|
368
464
|
private core;
|
|
@@ -394,9 +490,21 @@ declare class EntityAclCruds {
|
|
|
394
490
|
/** Deletes the existing EntityAcl. */
|
|
395
491
|
tryDelete(request: IdSpecFor<EntityAcl>, options?: IRepoOptions): Promise<SingleResult<EntityAcl>>;
|
|
396
492
|
delete(request: IdSpecFor<EntityAcl>, options?: IThrowingRepoOptions): Promise<EntityAcl>;
|
|
493
|
+
/** Overwrites the given properties of the existing EntityAcl. */
|
|
494
|
+
tryUpdatePartial(request: EntityAcl, options?: IRepoOptions): Promise<SingleResult<PartialWithId<EntityAcl>>>;
|
|
495
|
+
updatePartial(request: EntityAcl, options?: IThrowingRepoOptions): Promise<PartialWithId<EntityAcl>>;
|
|
397
496
|
/** Saves the input as a new EntityAcl. */
|
|
398
497
|
tryCreate(request: EntityAcl, options?: IRepoOptions): Promise<SingleResult<EntityAcl>>;
|
|
399
498
|
create(request: EntityAcl, options?: IThrowingRepoOptions): Promise<EntityAcl>;
|
|
499
|
+
/** Overwrites the given properties for each existing EntityAcl. */
|
|
500
|
+
tryUpdatePartialMany(request: Array<EntityAcl>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<EntityAcl>>>;
|
|
501
|
+
updatePartialMany(request: Array<EntityAcl>, options?: IThrowingRepoOptions): Promise<PartialWithId<EntityAcl>[]>;
|
|
502
|
+
/** Saves each given input as a new EntityAcl, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
503
|
+
tryUpsertMany(request: Array<EntityAcl>, options?: IRepoOptions): Promise<BatchResult<EntityAcl>>;
|
|
504
|
+
upsertMany(request: Array<EntityAcl>, options?: IThrowingRepoOptions): Promise<EntityAcl[]>;
|
|
505
|
+
/** Saves the input as a new EntityAcl, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
506
|
+
tryUpsert(request: EntityAcl, options?: IRepoOptions): Promise<SingleResult<EntityAcl>>;
|
|
507
|
+
upsert(request: EntityAcl, options?: IThrowingRepoOptions): Promise<EntityAcl>;
|
|
400
508
|
}
|
|
401
509
|
declare class AuthRoleCruds {
|
|
402
510
|
private core;
|
|
@@ -428,9 +536,21 @@ declare class AuthRoleCruds {
|
|
|
428
536
|
/** Deletes the existing AuthRole. */
|
|
429
537
|
tryDelete(request: IdSpecFor<AuthRole>, options?: IRepoOptions): Promise<SingleResult<AuthRole>>;
|
|
430
538
|
delete(request: IdSpecFor<AuthRole>, options?: IThrowingRepoOptions): Promise<AuthRole>;
|
|
539
|
+
/** Overwrites the given properties of the existing AuthRole. */
|
|
540
|
+
tryUpdatePartial(request: AuthRole, options?: IRepoOptions): Promise<SingleResult<PartialWithId<AuthRole>>>;
|
|
541
|
+
updatePartial(request: AuthRole, options?: IThrowingRepoOptions): Promise<PartialWithId<AuthRole>>;
|
|
431
542
|
/** Saves the input as a new AuthRole. */
|
|
432
543
|
tryCreate(request: AuthRole, options?: IRepoOptions): Promise<SingleResult<AuthRole>>;
|
|
433
544
|
create(request: AuthRole, options?: IThrowingRepoOptions): Promise<AuthRole>;
|
|
545
|
+
/** Overwrites the given properties for each existing AuthRole. */
|
|
546
|
+
tryUpdatePartialMany(request: Array<AuthRole>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<AuthRole>>>;
|
|
547
|
+
updatePartialMany(request: Array<AuthRole>, options?: IThrowingRepoOptions): Promise<PartialWithId<AuthRole>[]>;
|
|
548
|
+
/** Saves each given input as a new AuthRole, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
549
|
+
tryUpsertMany(request: Array<AuthRole>, options?: IRepoOptions): Promise<BatchResult<AuthRole>>;
|
|
550
|
+
upsertMany(request: Array<AuthRole>, options?: IThrowingRepoOptions): Promise<AuthRole[]>;
|
|
551
|
+
/** Saves the input as a new AuthRole, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
552
|
+
tryUpsert(request: AuthRole, options?: IRepoOptions): Promise<SingleResult<AuthRole>>;
|
|
553
|
+
upsert(request: AuthRole, options?: IThrowingRepoOptions): Promise<AuthRole>;
|
|
434
554
|
}
|
|
435
555
|
declare class CodiacUserCruds {
|
|
436
556
|
private core;
|
|
@@ -473,9 +593,21 @@ declare class BuildPipelineCruds {
|
|
|
473
593
|
/** Deletes the existing BuildPipeline. */
|
|
474
594
|
tryDelete(request: IdSpecFor<BuildPipeline>, options?: IRepoOptions): Promise<SingleResult<BuildPipeline>>;
|
|
475
595
|
delete(request: IdSpecFor<BuildPipeline>, options?: IThrowingRepoOptions): Promise<BuildPipeline>;
|
|
596
|
+
/** Overwrites the given properties of the existing BuildPipeline. */
|
|
597
|
+
tryUpdatePartial(request: BuildPipeline, options?: IRepoOptions): Promise<SingleResult<PartialWithId<BuildPipeline>>>;
|
|
598
|
+
updatePartial(request: BuildPipeline, options?: IThrowingRepoOptions): Promise<PartialWithId<BuildPipeline>>;
|
|
476
599
|
/** Saves the input as a new BuildPipeline. */
|
|
477
600
|
tryCreate(request: BuildPipeline, options?: IRepoOptions): Promise<SingleResult<BuildPipeline>>;
|
|
478
601
|
create(request: BuildPipeline, options?: IThrowingRepoOptions): Promise<BuildPipeline>;
|
|
602
|
+
/** Overwrites the given properties for each existing BuildPipeline. */
|
|
603
|
+
tryUpdatePartialMany(request: Array<BuildPipeline>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<BuildPipeline>>>;
|
|
604
|
+
updatePartialMany(request: Array<BuildPipeline>, options?: IThrowingRepoOptions): Promise<PartialWithId<BuildPipeline>[]>;
|
|
605
|
+
/** Saves each given input as a new BuildPipeline, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
606
|
+
tryUpsertMany(request: Array<BuildPipeline>, options?: IRepoOptions): Promise<BatchResult<BuildPipeline>>;
|
|
607
|
+
upsertMany(request: Array<BuildPipeline>, options?: IThrowingRepoOptions): Promise<BuildPipeline[]>;
|
|
608
|
+
/** Saves the input as a new BuildPipeline, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
609
|
+
tryUpsert(request: BuildPipeline, options?: IRepoOptions): Promise<SingleResult<BuildPipeline>>;
|
|
610
|
+
upsert(request: BuildPipeline, options?: IThrowingRepoOptions): Promise<BuildPipeline>;
|
|
479
611
|
}
|
|
480
612
|
import { Build, BuildCriteria } from "../contracts";
|
|
481
613
|
declare class BuildCruds {
|
|
@@ -508,9 +640,21 @@ declare class BuildCruds {
|
|
|
508
640
|
/** Deletes the existing Build. */
|
|
509
641
|
tryDelete(request: IdSpecFor<Build>, options?: IRepoOptions): Promise<SingleResult<Build>>;
|
|
510
642
|
delete(request: IdSpecFor<Build>, options?: IThrowingRepoOptions): Promise<Build>;
|
|
643
|
+
/** Overwrites the given properties of the existing Build. */
|
|
644
|
+
tryUpdatePartial(request: Build, options?: IRepoOptions): Promise<SingleResult<PartialWithId<Build>>>;
|
|
645
|
+
updatePartial(request: Build, options?: IThrowingRepoOptions): Promise<PartialWithId<Build>>;
|
|
511
646
|
/** Saves the input as a new Build. */
|
|
512
647
|
tryCreate(request: Build, options?: IRepoOptions): Promise<SingleResult<Build>>;
|
|
513
648
|
create(request: Build, options?: IThrowingRepoOptions): Promise<Build>;
|
|
649
|
+
/** Overwrites the given properties for each existing Build. */
|
|
650
|
+
tryUpdatePartialMany(request: Array<Build>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<Build>>>;
|
|
651
|
+
updatePartialMany(request: Array<Build>, options?: IThrowingRepoOptions): Promise<PartialWithId<Build>[]>;
|
|
652
|
+
/** Saves each given input as a new Build, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
653
|
+
tryUpsertMany(request: Array<Build>, options?: IRepoOptions): Promise<BatchResult<Build>>;
|
|
654
|
+
upsertMany(request: Array<Build>, options?: IThrowingRepoOptions): Promise<Build[]>;
|
|
655
|
+
/** Saves the input as a new Build, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
656
|
+
tryUpsert(request: Build, options?: IRepoOptions): Promise<SingleResult<Build>>;
|
|
657
|
+
upsert(request: Build, options?: IThrowingRepoOptions): Promise<Build>;
|
|
514
658
|
}
|
|
515
659
|
import { Cabinet, CabinetCriteria } from "../contracts";
|
|
516
660
|
declare class CabinetCruds {
|
|
@@ -543,9 +687,21 @@ declare class CabinetCruds {
|
|
|
543
687
|
/** Deletes the existing Cabinet. */
|
|
544
688
|
tryDelete(request: IdSpecFor<Cabinet>, options?: IRepoOptions): Promise<SingleResult<Cabinet>>;
|
|
545
689
|
delete(request: IdSpecFor<Cabinet>, options?: IThrowingRepoOptions): Promise<Cabinet>;
|
|
690
|
+
/** Overwrites the given properties of the existing Cabinet. */
|
|
691
|
+
tryUpdatePartial(request: Cabinet, options?: IRepoOptions): Promise<SingleResult<PartialWithId<Cabinet>>>;
|
|
692
|
+
updatePartial(request: Cabinet, options?: IThrowingRepoOptions): Promise<PartialWithId<Cabinet>>;
|
|
546
693
|
/** Saves the input as a new Cabinet. */
|
|
547
694
|
tryCreate(request: Cabinet, options?: IRepoOptions): Promise<SingleResult<Cabinet>>;
|
|
548
695
|
create(request: Cabinet, options?: IThrowingRepoOptions): Promise<Cabinet>;
|
|
696
|
+
/** Overwrites the given properties for each existing Cabinet. */
|
|
697
|
+
tryUpdatePartialMany(request: Array<Cabinet>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<Cabinet>>>;
|
|
698
|
+
updatePartialMany(request: Array<Cabinet>, options?: IThrowingRepoOptions): Promise<PartialWithId<Cabinet>[]>;
|
|
699
|
+
/** Saves each given input as a new Cabinet, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
700
|
+
tryUpsertMany(request: Array<Cabinet>, options?: IRepoOptions): Promise<BatchResult<Cabinet>>;
|
|
701
|
+
upsertMany(request: Array<Cabinet>, options?: IThrowingRepoOptions): Promise<Cabinet[]>;
|
|
702
|
+
/** Saves the input as a new Cabinet, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
703
|
+
tryUpsert(request: Cabinet, options?: IRepoOptions): Promise<SingleResult<Cabinet>>;
|
|
704
|
+
upsert(request: Cabinet, options?: IThrowingRepoOptions): Promise<Cabinet>;
|
|
549
705
|
}
|
|
550
706
|
import { ClusterDef, ClusterDefCriteria } from "../contracts";
|
|
551
707
|
declare class ClusterDefCruds {
|
|
@@ -578,9 +734,68 @@ declare class ClusterDefCruds {
|
|
|
578
734
|
/** Deletes the existing ClusterDef. */
|
|
579
735
|
tryDelete(request: IdSpecFor<ClusterDef>, options?: IRepoOptions): Promise<SingleResult<ClusterDef>>;
|
|
580
736
|
delete(request: IdSpecFor<ClusterDef>, options?: IThrowingRepoOptions): Promise<ClusterDef>;
|
|
737
|
+
/** Overwrites the given properties of the existing ClusterDef. */
|
|
738
|
+
tryUpdatePartial(request: ClusterDef, options?: IRepoOptions): Promise<SingleResult<PartialWithId<ClusterDef>>>;
|
|
739
|
+
updatePartial(request: ClusterDef, options?: IThrowingRepoOptions): Promise<PartialWithId<ClusterDef>>;
|
|
581
740
|
/** Saves the input as a new ClusterDef. */
|
|
582
741
|
tryCreate(request: ClusterDef, options?: IRepoOptions): Promise<SingleResult<ClusterDef>>;
|
|
583
742
|
create(request: ClusterDef, options?: IThrowingRepoOptions): Promise<ClusterDef>;
|
|
743
|
+
/** Overwrites the given properties for each existing ClusterDef. */
|
|
744
|
+
tryUpdatePartialMany(request: Array<ClusterDef>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<ClusterDef>>>;
|
|
745
|
+
updatePartialMany(request: Array<ClusterDef>, options?: IThrowingRepoOptions): Promise<PartialWithId<ClusterDef>[]>;
|
|
746
|
+
/** Saves each given input as a new ClusterDef, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
747
|
+
tryUpsertMany(request: Array<ClusterDef>, options?: IRepoOptions): Promise<BatchResult<ClusterDef>>;
|
|
748
|
+
upsertMany(request: Array<ClusterDef>, options?: IThrowingRepoOptions): Promise<ClusterDef[]>;
|
|
749
|
+
/** Saves the input as a new ClusterDef, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
750
|
+
tryUpsert(request: ClusterDef, options?: IRepoOptions): Promise<SingleResult<ClusterDef>>;
|
|
751
|
+
upsert(request: ClusterDef, options?: IThrowingRepoOptions): Promise<ClusterDef>;
|
|
752
|
+
}
|
|
753
|
+
import { ClusterGrant, ClusterGrantCriteria } from "../contracts";
|
|
754
|
+
declare class ClusterGrantCruds {
|
|
755
|
+
private core;
|
|
756
|
+
constructor(core: ApiClientBase);
|
|
757
|
+
/** Saves each given input as a new ClusterGrant. */
|
|
758
|
+
tryCreateMany(request: Array<ClusterGrant>, options?: IRepoOptions): Promise<BatchResult<ClusterGrant>>;
|
|
759
|
+
createMany(request: Array<ClusterGrant>, options?: IThrowingRepoOptions): Promise<ClusterGrant[]>;
|
|
760
|
+
/** Retrieves all the existing ClusterGrant that satisfy the given criteria. */
|
|
761
|
+
tryReadMany(request: ClusterGrantCriteria, options?: IRepoOptions): Promise<ListResult<ClusterGrant>>;
|
|
762
|
+
readMany(request: ClusterGrantCriteria, options?: IThrowingRepoOptions): Promise<ClusterGrant[]>;
|
|
763
|
+
/** Overwrites each existing ClusterGrant. */
|
|
764
|
+
tryUpdateMany(request: Array<ClusterGrant>, options?: IRepoOptions): Promise<BatchResult<ClusterGrant>>;
|
|
765
|
+
updateMany(request: Array<ClusterGrant>, options?: IThrowingRepoOptions): Promise<ClusterGrant[]>;
|
|
766
|
+
/** Performs the given operations on each existing ClusterGrant that satisfies the given criteria. */
|
|
767
|
+
tryPatchWhere(request: PatchSpecForMany<ClusterGrant, ClusterGrantCriteria>, options?: IRepoOptions): Promise<BatchResult<ClusterGrant>>;
|
|
768
|
+
patchWhere(request: PatchSpecForMany<ClusterGrant, ClusterGrantCriteria>, options?: IThrowingRepoOptions): Promise<ClusterGrant[]>;
|
|
769
|
+
/** Deletes each existing ClusterGrant that satisfies the given criteria. */
|
|
770
|
+
tryDeleteWhere(request: ClusterGrantCriteria, options?: IRepoOptions): Promise<BatchResult<ClusterGrant>>;
|
|
771
|
+
deleteWhere(request: ClusterGrantCriteria, options?: IThrowingRepoOptions): Promise<ClusterGrant[]>;
|
|
772
|
+
/** Retrieves the single, uniquely identified ClusterGrant. */
|
|
773
|
+
tryRead(request: IdSpecFor<ClusterGrant>, options?: IRepoOptions): Promise<SingleResult<ClusterGrant>>;
|
|
774
|
+
read(request: IdSpecFor<ClusterGrant>, options?: IThrowingRepoOptions): Promise<ClusterGrant>;
|
|
775
|
+
/** Overwrites the existing ClusterGrant. */
|
|
776
|
+
tryUpdate(request: ClusterGrant, options?: IRepoOptions): Promise<SingleResult<ClusterGrant>>;
|
|
777
|
+
update(request: ClusterGrant, options?: IThrowingRepoOptions): Promise<ClusterGrant>;
|
|
778
|
+
/** Performs the given operations on the existing ClusterGrant. */
|
|
779
|
+
tryPatch(request: PatchSpecForOne<ClusterGrant>, options?: IRepoOptions): Promise<SingleResult<ClusterGrant>>;
|
|
780
|
+
patch(request: PatchSpecForOne<ClusterGrant>, options?: IThrowingRepoOptions): Promise<ClusterGrant>;
|
|
781
|
+
/** Deletes the existing ClusterGrant. */
|
|
782
|
+
tryDelete(request: IdSpecFor<ClusterGrant>, options?: IRepoOptions): Promise<SingleResult<ClusterGrant>>;
|
|
783
|
+
delete(request: IdSpecFor<ClusterGrant>, options?: IThrowingRepoOptions): Promise<ClusterGrant>;
|
|
784
|
+
/** Overwrites the given properties of the existing ClusterGrant. */
|
|
785
|
+
tryUpdatePartial(request: ClusterGrant, options?: IRepoOptions): Promise<SingleResult<PartialWithId<ClusterGrant>>>;
|
|
786
|
+
updatePartial(request: ClusterGrant, options?: IThrowingRepoOptions): Promise<PartialWithId<ClusterGrant>>;
|
|
787
|
+
/** Saves the input as a new ClusterGrant. */
|
|
788
|
+
tryCreate(request: ClusterGrant, options?: IRepoOptions): Promise<SingleResult<ClusterGrant>>;
|
|
789
|
+
create(request: ClusterGrant, options?: IThrowingRepoOptions): Promise<ClusterGrant>;
|
|
790
|
+
/** Overwrites the given properties for each existing ClusterGrant. */
|
|
791
|
+
tryUpdatePartialMany(request: Array<ClusterGrant>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<ClusterGrant>>>;
|
|
792
|
+
updatePartialMany(request: Array<ClusterGrant>, options?: IThrowingRepoOptions): Promise<PartialWithId<ClusterGrant>[]>;
|
|
793
|
+
/** Saves each given input as a new ClusterGrant, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
794
|
+
tryUpsertMany(request: Array<ClusterGrant>, options?: IRepoOptions): Promise<BatchResult<ClusterGrant>>;
|
|
795
|
+
upsertMany(request: Array<ClusterGrant>, options?: IThrowingRepoOptions): Promise<ClusterGrant[]>;
|
|
796
|
+
/** Saves the input as a new ClusterGrant, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
797
|
+
tryUpsert(request: ClusterGrant, options?: IRepoOptions): Promise<SingleResult<ClusterGrant>>;
|
|
798
|
+
upsert(request: ClusterGrant, options?: IThrowingRepoOptions): Promise<ClusterGrant>;
|
|
584
799
|
}
|
|
585
800
|
import { Cluster, ClusterCriteria } from "../contracts";
|
|
586
801
|
declare class ClusterCruds {
|
|
@@ -613,9 +828,68 @@ declare class ClusterCruds {
|
|
|
613
828
|
/** Deletes the existing Cluster. */
|
|
614
829
|
tryDelete(request: IdSpecFor<Cluster>, options?: IRepoOptions): Promise<SingleResult<Cluster>>;
|
|
615
830
|
delete(request: IdSpecFor<Cluster>, options?: IThrowingRepoOptions): Promise<Cluster>;
|
|
831
|
+
/** Overwrites the given properties of the existing Cluster. */
|
|
832
|
+
tryUpdatePartial(request: Cluster, options?: IRepoOptions): Promise<SingleResult<PartialWithId<Cluster>>>;
|
|
833
|
+
updatePartial(request: Cluster, options?: IThrowingRepoOptions): Promise<PartialWithId<Cluster>>;
|
|
616
834
|
/** Saves the input as a new Cluster. */
|
|
617
835
|
tryCreate(request: Cluster, options?: IRepoOptions): Promise<SingleResult<Cluster>>;
|
|
618
836
|
create(request: Cluster, options?: IThrowingRepoOptions): Promise<Cluster>;
|
|
837
|
+
/** Overwrites the given properties for each existing Cluster. */
|
|
838
|
+
tryUpdatePartialMany(request: Array<Cluster>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<Cluster>>>;
|
|
839
|
+
updatePartialMany(request: Array<Cluster>, options?: IThrowingRepoOptions): Promise<PartialWithId<Cluster>[]>;
|
|
840
|
+
/** Saves each given input as a new Cluster, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
841
|
+
tryUpsertMany(request: Array<Cluster>, options?: IRepoOptions): Promise<BatchResult<Cluster>>;
|
|
842
|
+
upsertMany(request: Array<Cluster>, options?: IThrowingRepoOptions): Promise<Cluster[]>;
|
|
843
|
+
/** Saves the input as a new Cluster, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
844
|
+
tryUpsert(request: Cluster, options?: IRepoOptions): Promise<SingleResult<Cluster>>;
|
|
845
|
+
upsert(request: Cluster, options?: IThrowingRepoOptions): Promise<Cluster>;
|
|
846
|
+
}
|
|
847
|
+
import { Comment, CommentCriteria } from "../contracts";
|
|
848
|
+
declare class CommentCruds {
|
|
849
|
+
private core;
|
|
850
|
+
constructor(core: ApiClientBase);
|
|
851
|
+
/** Saves each given input as a new Comment. */
|
|
852
|
+
tryCreateMany(request: Array<Comment>, options?: IRepoOptions): Promise<BatchResult<Comment>>;
|
|
853
|
+
createMany(request: Array<Comment>, options?: IThrowingRepoOptions): Promise<Comment[]>;
|
|
854
|
+
/** Retrieves all the existing Comment that satisfy the given criteria. */
|
|
855
|
+
tryReadMany(request: CommentCriteria, options?: IRepoOptions): Promise<ListResult<Comment>>;
|
|
856
|
+
readMany(request: CommentCriteria, options?: IThrowingRepoOptions): Promise<Comment[]>;
|
|
857
|
+
/** Overwrites each existing Comment. */
|
|
858
|
+
tryUpdateMany(request: Array<Comment>, options?: IRepoOptions): Promise<BatchResult<Comment>>;
|
|
859
|
+
updateMany(request: Array<Comment>, options?: IThrowingRepoOptions): Promise<Comment[]>;
|
|
860
|
+
/** Performs the given operations on each existing Comment that satisfies the given criteria. */
|
|
861
|
+
tryPatchWhere(request: PatchSpecForMany<Comment, CommentCriteria>, options?: IRepoOptions): Promise<BatchResult<Comment>>;
|
|
862
|
+
patchWhere(request: PatchSpecForMany<Comment, CommentCriteria>, options?: IThrowingRepoOptions): Promise<Comment[]>;
|
|
863
|
+
/** Deletes each existing Comment that satisfies the given criteria. */
|
|
864
|
+
tryDeleteWhere(request: CommentCriteria, options?: IRepoOptions): Promise<BatchResult<Comment>>;
|
|
865
|
+
deleteWhere(request: CommentCriteria, options?: IThrowingRepoOptions): Promise<Comment[]>;
|
|
866
|
+
/** Retrieves the single, uniquely identified Comment. */
|
|
867
|
+
tryRead(request: IdSpecFor<Comment>, options?: IRepoOptions): Promise<SingleResult<Comment>>;
|
|
868
|
+
read(request: IdSpecFor<Comment>, options?: IThrowingRepoOptions): Promise<Comment>;
|
|
869
|
+
/** Overwrites the existing Comment. */
|
|
870
|
+
tryUpdate(request: Comment, options?: IRepoOptions): Promise<SingleResult<Comment>>;
|
|
871
|
+
update(request: Comment, options?: IThrowingRepoOptions): Promise<Comment>;
|
|
872
|
+
/** Performs the given operations on the existing Comment. */
|
|
873
|
+
tryPatch(request: PatchSpecForOne<Comment>, options?: IRepoOptions): Promise<SingleResult<Comment>>;
|
|
874
|
+
patch(request: PatchSpecForOne<Comment>, options?: IThrowingRepoOptions): Promise<Comment>;
|
|
875
|
+
/** Deletes the existing Comment. */
|
|
876
|
+
tryDelete(request: IdSpecFor<Comment>, options?: IRepoOptions): Promise<SingleResult<Comment>>;
|
|
877
|
+
delete(request: IdSpecFor<Comment>, options?: IThrowingRepoOptions): Promise<Comment>;
|
|
878
|
+
/** Overwrites the given properties of the existing Comment. */
|
|
879
|
+
tryUpdatePartial(request: Comment, options?: IRepoOptions): Promise<SingleResult<PartialWithId<Comment>>>;
|
|
880
|
+
updatePartial(request: Comment, options?: IThrowingRepoOptions): Promise<PartialWithId<Comment>>;
|
|
881
|
+
/** Saves the input as a new Comment. */
|
|
882
|
+
tryCreate(request: Comment, options?: IRepoOptions): Promise<SingleResult<Comment>>;
|
|
883
|
+
create(request: Comment, options?: IThrowingRepoOptions): Promise<Comment>;
|
|
884
|
+
/** Overwrites the given properties for each existing Comment. */
|
|
885
|
+
tryUpdatePartialMany(request: Array<Comment>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<Comment>>>;
|
|
886
|
+
updatePartialMany(request: Array<Comment>, options?: IThrowingRepoOptions): Promise<PartialWithId<Comment>[]>;
|
|
887
|
+
/** Saves each given input as a new Comment, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
888
|
+
tryUpsertMany(request: Array<Comment>, options?: IRepoOptions): Promise<BatchResult<Comment>>;
|
|
889
|
+
upsertMany(request: Array<Comment>, options?: IThrowingRepoOptions): Promise<Comment[]>;
|
|
890
|
+
/** Saves the input as a new Comment, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
891
|
+
tryUpsert(request: Comment, options?: IRepoOptions): Promise<SingleResult<Comment>>;
|
|
892
|
+
upsert(request: Comment, options?: IThrowingRepoOptions): Promise<Comment>;
|
|
619
893
|
}
|
|
620
894
|
import { ConfigChange, ConfigChangeCriteria } from "../contracts";
|
|
621
895
|
declare class ConfigChangeCruds {
|
|
@@ -648,9 +922,21 @@ declare class ConfigChangeCruds {
|
|
|
648
922
|
/** Deletes the existing ConfigChange. */
|
|
649
923
|
tryDelete(request: IdSpecFor<ConfigChange>, options?: IRepoOptions): Promise<SingleResult<ConfigChange>>;
|
|
650
924
|
delete(request: IdSpecFor<ConfigChange>, options?: IThrowingRepoOptions): Promise<ConfigChange>;
|
|
925
|
+
/** Overwrites the given properties of the existing ConfigChange. */
|
|
926
|
+
tryUpdatePartial(request: ConfigChange, options?: IRepoOptions): Promise<SingleResult<PartialWithId<ConfigChange>>>;
|
|
927
|
+
updatePartial(request: ConfigChange, options?: IThrowingRepoOptions): Promise<PartialWithId<ConfigChange>>;
|
|
651
928
|
/** Saves the input as a new ConfigChange. */
|
|
652
929
|
tryCreate(request: ConfigChange, options?: IRepoOptions): Promise<SingleResult<ConfigChange>>;
|
|
653
930
|
create(request: ConfigChange, options?: IThrowingRepoOptions): Promise<ConfigChange>;
|
|
931
|
+
/** Overwrites the given properties for each existing ConfigChange. */
|
|
932
|
+
tryUpdatePartialMany(request: Array<ConfigChange>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<ConfigChange>>>;
|
|
933
|
+
updatePartialMany(request: Array<ConfigChange>, options?: IThrowingRepoOptions): Promise<PartialWithId<ConfigChange>[]>;
|
|
934
|
+
/** Saves each given input as a new ConfigChange, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
935
|
+
tryUpsertMany(request: Array<ConfigChange>, options?: IRepoOptions): Promise<BatchResult<ConfigChange>>;
|
|
936
|
+
upsertMany(request: Array<ConfigChange>, options?: IThrowingRepoOptions): Promise<ConfigChange[]>;
|
|
937
|
+
/** Saves the input as a new ConfigChange, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
938
|
+
tryUpsert(request: ConfigChange, options?: IRepoOptions): Promise<SingleResult<ConfigChange>>;
|
|
939
|
+
upsert(request: ConfigChange, options?: IThrowingRepoOptions): Promise<ConfigChange>;
|
|
654
940
|
}
|
|
655
941
|
import { ContainerFootprint, ContainerFootprintCriteria } from "../contracts";
|
|
656
942
|
declare class ContainerFootprintCruds {
|
|
@@ -683,9 +969,68 @@ declare class ContainerFootprintCruds {
|
|
|
683
969
|
/** Deletes the existing ContainerFootprint. */
|
|
684
970
|
tryDelete(request: IdSpecFor<ContainerFootprint>, options?: IRepoOptions): Promise<SingleResult<ContainerFootprint>>;
|
|
685
971
|
delete(request: IdSpecFor<ContainerFootprint>, options?: IThrowingRepoOptions): Promise<ContainerFootprint>;
|
|
972
|
+
/** Overwrites the given properties of the existing ContainerFootprint. */
|
|
973
|
+
tryUpdatePartial(request: ContainerFootprint, options?: IRepoOptions): Promise<SingleResult<PartialWithId<ContainerFootprint>>>;
|
|
974
|
+
updatePartial(request: ContainerFootprint, options?: IThrowingRepoOptions): Promise<PartialWithId<ContainerFootprint>>;
|
|
686
975
|
/** Saves the input as a new ContainerFootprint. */
|
|
687
976
|
tryCreate(request: ContainerFootprint, options?: IRepoOptions): Promise<SingleResult<ContainerFootprint>>;
|
|
688
977
|
create(request: ContainerFootprint, options?: IThrowingRepoOptions): Promise<ContainerFootprint>;
|
|
978
|
+
/** Overwrites the given properties for each existing ContainerFootprint. */
|
|
979
|
+
tryUpdatePartialMany(request: Array<ContainerFootprint>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<ContainerFootprint>>>;
|
|
980
|
+
updatePartialMany(request: Array<ContainerFootprint>, options?: IThrowingRepoOptions): Promise<PartialWithId<ContainerFootprint>[]>;
|
|
981
|
+
/** Saves each given input as a new ContainerFootprint, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
982
|
+
tryUpsertMany(request: Array<ContainerFootprint>, options?: IRepoOptions): Promise<BatchResult<ContainerFootprint>>;
|
|
983
|
+
upsertMany(request: Array<ContainerFootprint>, options?: IThrowingRepoOptions): Promise<ContainerFootprint[]>;
|
|
984
|
+
/** Saves the input as a new ContainerFootprint, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
985
|
+
tryUpsert(request: ContainerFootprint, options?: IRepoOptions): Promise<SingleResult<ContainerFootprint>>;
|
|
986
|
+
upsert(request: ContainerFootprint, options?: IThrowingRepoOptions): Promise<ContainerFootprint>;
|
|
987
|
+
}
|
|
988
|
+
import { CspTenantProfile, CspTenantProfileCriteria } from "../contracts";
|
|
989
|
+
declare class CspTenantProfileCruds {
|
|
990
|
+
private core;
|
|
991
|
+
constructor(core: ApiClientBase);
|
|
992
|
+
/** Saves each given input as a new CspTenantProfile. */
|
|
993
|
+
tryCreateMany(request: Array<CspTenantProfile>, options?: IRepoOptions): Promise<BatchResult<CspTenantProfile>>;
|
|
994
|
+
createMany(request: Array<CspTenantProfile>, options?: IThrowingRepoOptions): Promise<CspTenantProfile[]>;
|
|
995
|
+
/** Retrieves all the existing CspTenantProfile that satisfy the given criteria. */
|
|
996
|
+
tryReadMany(request: CspTenantProfileCriteria, options?: IRepoOptions): Promise<ListResult<CspTenantProfile>>;
|
|
997
|
+
readMany(request: CspTenantProfileCriteria, options?: IThrowingRepoOptions): Promise<CspTenantProfile[]>;
|
|
998
|
+
/** Overwrites each existing CspTenantProfile. */
|
|
999
|
+
tryUpdateMany(request: Array<CspTenantProfile>, options?: IRepoOptions): Promise<BatchResult<CspTenantProfile>>;
|
|
1000
|
+
updateMany(request: Array<CspTenantProfile>, options?: IThrowingRepoOptions): Promise<CspTenantProfile[]>;
|
|
1001
|
+
/** Performs the given operations on each existing CspTenantProfile that satisfies the given criteria. */
|
|
1002
|
+
tryPatchWhere(request: PatchSpecForMany<CspTenantProfile, CspTenantProfileCriteria>, options?: IRepoOptions): Promise<BatchResult<CspTenantProfile>>;
|
|
1003
|
+
patchWhere(request: PatchSpecForMany<CspTenantProfile, CspTenantProfileCriteria>, options?: IThrowingRepoOptions): Promise<CspTenantProfile[]>;
|
|
1004
|
+
/** Deletes each existing CspTenantProfile that satisfies the given criteria. */
|
|
1005
|
+
tryDeleteWhere(request: CspTenantProfileCriteria, options?: IRepoOptions): Promise<BatchResult<CspTenantProfile>>;
|
|
1006
|
+
deleteWhere(request: CspTenantProfileCriteria, options?: IThrowingRepoOptions): Promise<CspTenantProfile[]>;
|
|
1007
|
+
/** Retrieves the single, uniquely identified CspTenantProfile. */
|
|
1008
|
+
tryRead(request: IdSpecFor<CspTenantProfile>, options?: IRepoOptions): Promise<SingleResult<CspTenantProfile>>;
|
|
1009
|
+
read(request: IdSpecFor<CspTenantProfile>, options?: IThrowingRepoOptions): Promise<CspTenantProfile>;
|
|
1010
|
+
/** Overwrites the existing CspTenantProfile. */
|
|
1011
|
+
tryUpdate(request: CspTenantProfile, options?: IRepoOptions): Promise<SingleResult<CspTenantProfile>>;
|
|
1012
|
+
update(request: CspTenantProfile, options?: IThrowingRepoOptions): Promise<CspTenantProfile>;
|
|
1013
|
+
/** Performs the given operations on the existing CspTenantProfile. */
|
|
1014
|
+
tryPatch(request: PatchSpecForOne<CspTenantProfile>, options?: IRepoOptions): Promise<SingleResult<CspTenantProfile>>;
|
|
1015
|
+
patch(request: PatchSpecForOne<CspTenantProfile>, options?: IThrowingRepoOptions): Promise<CspTenantProfile>;
|
|
1016
|
+
/** Deletes the existing CspTenantProfile. */
|
|
1017
|
+
tryDelete(request: IdSpecFor<CspTenantProfile>, options?: IRepoOptions): Promise<SingleResult<CspTenantProfile>>;
|
|
1018
|
+
delete(request: IdSpecFor<CspTenantProfile>, options?: IThrowingRepoOptions): Promise<CspTenantProfile>;
|
|
1019
|
+
/** Overwrites the given properties of the existing CspTenantProfile. */
|
|
1020
|
+
tryUpdatePartial(request: CspTenantProfile, options?: IRepoOptions): Promise<SingleResult<PartialWithId<CspTenantProfile>>>;
|
|
1021
|
+
updatePartial(request: CspTenantProfile, options?: IThrowingRepoOptions): Promise<PartialWithId<CspTenantProfile>>;
|
|
1022
|
+
/** Saves the input as a new CspTenantProfile. */
|
|
1023
|
+
tryCreate(request: CspTenantProfile, options?: IRepoOptions): Promise<SingleResult<CspTenantProfile>>;
|
|
1024
|
+
create(request: CspTenantProfile, options?: IThrowingRepoOptions): Promise<CspTenantProfile>;
|
|
1025
|
+
/** Overwrites the given properties for each existing CspTenantProfile. */
|
|
1026
|
+
tryUpdatePartialMany(request: Array<CspTenantProfile>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<CspTenantProfile>>>;
|
|
1027
|
+
updatePartialMany(request: Array<CspTenantProfile>, options?: IThrowingRepoOptions): Promise<PartialWithId<CspTenantProfile>[]>;
|
|
1028
|
+
/** Saves each given input as a new CspTenantProfile, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
1029
|
+
tryUpsertMany(request: Array<CspTenantProfile>, options?: IRepoOptions): Promise<BatchResult<CspTenantProfile>>;
|
|
1030
|
+
upsertMany(request: Array<CspTenantProfile>, options?: IThrowingRepoOptions): Promise<CspTenantProfile[]>;
|
|
1031
|
+
/** Saves the input as a new CspTenantProfile, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
1032
|
+
tryUpsert(request: CspTenantProfile, options?: IRepoOptions): Promise<SingleResult<CspTenantProfile>>;
|
|
1033
|
+
upsert(request: CspTenantProfile, options?: IThrowingRepoOptions): Promise<CspTenantProfile>;
|
|
689
1034
|
}
|
|
690
1035
|
import { DeployAttempt, DeployAttemptCriteria } from "../contracts";
|
|
691
1036
|
declare class DeployAttemptCruds {
|
|
@@ -718,9 +1063,21 @@ declare class DeployAttemptCruds {
|
|
|
718
1063
|
/** Deletes the existing DeployAttempt. */
|
|
719
1064
|
tryDelete(request: IdSpecFor<DeployAttempt>, options?: IRepoOptions): Promise<SingleResult<DeployAttempt>>;
|
|
720
1065
|
delete(request: IdSpecFor<DeployAttempt>, options?: IThrowingRepoOptions): Promise<DeployAttempt>;
|
|
1066
|
+
/** Overwrites the given properties of the existing DeployAttempt. */
|
|
1067
|
+
tryUpdatePartial(request: DeployAttempt, options?: IRepoOptions): Promise<SingleResult<PartialWithId<DeployAttempt>>>;
|
|
1068
|
+
updatePartial(request: DeployAttempt, options?: IThrowingRepoOptions): Promise<PartialWithId<DeployAttempt>>;
|
|
721
1069
|
/** Saves the input as a new DeployAttempt. */
|
|
722
1070
|
tryCreate(request: DeployAttempt, options?: IRepoOptions): Promise<SingleResult<DeployAttempt>>;
|
|
723
1071
|
create(request: DeployAttempt, options?: IThrowingRepoOptions): Promise<DeployAttempt>;
|
|
1072
|
+
/** Overwrites the given properties for each existing DeployAttempt. */
|
|
1073
|
+
tryUpdatePartialMany(request: Array<DeployAttempt>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<DeployAttempt>>>;
|
|
1074
|
+
updatePartialMany(request: Array<DeployAttempt>, options?: IThrowingRepoOptions): Promise<PartialWithId<DeployAttempt>[]>;
|
|
1075
|
+
/** Saves each given input as a new DeployAttempt, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
1076
|
+
tryUpsertMany(request: Array<DeployAttempt>, options?: IRepoOptions): Promise<BatchResult<DeployAttempt>>;
|
|
1077
|
+
upsertMany(request: Array<DeployAttempt>, options?: IThrowingRepoOptions): Promise<DeployAttempt[]>;
|
|
1078
|
+
/** Saves the input as a new DeployAttempt, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
1079
|
+
tryUpsert(request: DeployAttempt, options?: IRepoOptions): Promise<SingleResult<DeployAttempt>>;
|
|
1080
|
+
upsert(request: DeployAttempt, options?: IThrowingRepoOptions): Promise<DeployAttempt>;
|
|
724
1081
|
}
|
|
725
1082
|
import { DeployPipeline, DeployPipelineCriteria } from "../contracts";
|
|
726
1083
|
declare class DeployPipelineCruds {
|
|
@@ -753,9 +1110,21 @@ declare class DeployPipelineCruds {
|
|
|
753
1110
|
/** Deletes the existing DeployPipeline. */
|
|
754
1111
|
tryDelete(request: IdSpecFor<DeployPipeline>, options?: IRepoOptions): Promise<SingleResult<DeployPipeline>>;
|
|
755
1112
|
delete(request: IdSpecFor<DeployPipeline>, options?: IThrowingRepoOptions): Promise<DeployPipeline>;
|
|
1113
|
+
/** Overwrites the given properties of the existing DeployPipeline. */
|
|
1114
|
+
tryUpdatePartial(request: DeployPipeline, options?: IRepoOptions): Promise<SingleResult<PartialWithId<DeployPipeline>>>;
|
|
1115
|
+
updatePartial(request: DeployPipeline, options?: IThrowingRepoOptions): Promise<PartialWithId<DeployPipeline>>;
|
|
756
1116
|
/** Saves the input as a new DeployPipeline. */
|
|
757
1117
|
tryCreate(request: DeployPipeline, options?: IRepoOptions): Promise<SingleResult<DeployPipeline>>;
|
|
758
1118
|
create(request: DeployPipeline, options?: IThrowingRepoOptions): Promise<DeployPipeline>;
|
|
1119
|
+
/** Overwrites the given properties for each existing DeployPipeline. */
|
|
1120
|
+
tryUpdatePartialMany(request: Array<DeployPipeline>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<DeployPipeline>>>;
|
|
1121
|
+
updatePartialMany(request: Array<DeployPipeline>, options?: IThrowingRepoOptions): Promise<PartialWithId<DeployPipeline>[]>;
|
|
1122
|
+
/** Saves each given input as a new DeployPipeline, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
1123
|
+
tryUpsertMany(request: Array<DeployPipeline>, options?: IRepoOptions): Promise<BatchResult<DeployPipeline>>;
|
|
1124
|
+
upsertMany(request: Array<DeployPipeline>, options?: IThrowingRepoOptions): Promise<DeployPipeline[]>;
|
|
1125
|
+
/** Saves the input as a new DeployPipeline, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
1126
|
+
tryUpsert(request: DeployPipeline, options?: IRepoOptions): Promise<SingleResult<DeployPipeline>>;
|
|
1127
|
+
upsert(request: DeployPipeline, options?: IThrowingRepoOptions): Promise<DeployPipeline>;
|
|
759
1128
|
}
|
|
760
1129
|
import { Deployment, DeploymentCriteria } from "../contracts";
|
|
761
1130
|
declare class DeploymentCruds {
|
|
@@ -788,9 +1157,21 @@ declare class DeploymentCruds {
|
|
|
788
1157
|
/** Deletes the existing Deployment. */
|
|
789
1158
|
tryDelete(request: IdSpecFor<Deployment>, options?: IRepoOptions): Promise<SingleResult<Deployment>>;
|
|
790
1159
|
delete(request: IdSpecFor<Deployment>, options?: IThrowingRepoOptions): Promise<Deployment>;
|
|
1160
|
+
/** Overwrites the given properties of the existing Deployment. */
|
|
1161
|
+
tryUpdatePartial(request: Deployment, options?: IRepoOptions): Promise<SingleResult<PartialWithId<Deployment>>>;
|
|
1162
|
+
updatePartial(request: Deployment, options?: IThrowingRepoOptions): Promise<PartialWithId<Deployment>>;
|
|
791
1163
|
/** Saves the input as a new Deployment. */
|
|
792
1164
|
tryCreate(request: Deployment, options?: IRepoOptions): Promise<SingleResult<Deployment>>;
|
|
793
1165
|
create(request: Deployment, options?: IThrowingRepoOptions): Promise<Deployment>;
|
|
1166
|
+
/** Overwrites the given properties for each existing Deployment. */
|
|
1167
|
+
tryUpdatePartialMany(request: Array<Deployment>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<Deployment>>>;
|
|
1168
|
+
updatePartialMany(request: Array<Deployment>, options?: IThrowingRepoOptions): Promise<PartialWithId<Deployment>[]>;
|
|
1169
|
+
/** Saves each given input as a new Deployment, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
1170
|
+
tryUpsertMany(request: Array<Deployment>, options?: IRepoOptions): Promise<BatchResult<Deployment>>;
|
|
1171
|
+
upsertMany(request: Array<Deployment>, options?: IThrowingRepoOptions): Promise<Deployment[]>;
|
|
1172
|
+
/** Saves the input as a new Deployment, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
1173
|
+
tryUpsert(request: Deployment, options?: IRepoOptions): Promise<SingleResult<Deployment>>;
|
|
1174
|
+
upsert(request: Deployment, options?: IThrowingRepoOptions): Promise<Deployment>;
|
|
794
1175
|
}
|
|
795
1176
|
import { EnterpriseRunState, EnterpriseRunStateCriteria } from "../contracts";
|
|
796
1177
|
declare class EnterpriseRunStateCruds {
|
|
@@ -823,9 +1204,21 @@ declare class EnterpriseRunStateCruds {
|
|
|
823
1204
|
/** Deletes the existing EnterpriseRunState. */
|
|
824
1205
|
tryDelete(request: IdSpecFor<EnterpriseRunState>, options?: IRepoOptions): Promise<SingleResult<EnterpriseRunState>>;
|
|
825
1206
|
delete(request: IdSpecFor<EnterpriseRunState>, options?: IThrowingRepoOptions): Promise<EnterpriseRunState>;
|
|
1207
|
+
/** Overwrites the given properties of the existing EnterpriseRunState. */
|
|
1208
|
+
tryUpdatePartial(request: EnterpriseRunState, options?: IRepoOptions): Promise<SingleResult<PartialWithId<EnterpriseRunState>>>;
|
|
1209
|
+
updatePartial(request: EnterpriseRunState, options?: IThrowingRepoOptions): Promise<PartialWithId<EnterpriseRunState>>;
|
|
826
1210
|
/** Saves the input as a new EnterpriseRunState. */
|
|
827
1211
|
tryCreate(request: EnterpriseRunState, options?: IRepoOptions): Promise<SingleResult<EnterpriseRunState>>;
|
|
828
1212
|
create(request: EnterpriseRunState, options?: IThrowingRepoOptions): Promise<EnterpriseRunState>;
|
|
1213
|
+
/** Overwrites the given properties for each existing EnterpriseRunState. */
|
|
1214
|
+
tryUpdatePartialMany(request: Array<EnterpriseRunState>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<EnterpriseRunState>>>;
|
|
1215
|
+
updatePartialMany(request: Array<EnterpriseRunState>, options?: IThrowingRepoOptions): Promise<PartialWithId<EnterpriseRunState>[]>;
|
|
1216
|
+
/** Saves each given input as a new EnterpriseRunState, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
1217
|
+
tryUpsertMany(request: Array<EnterpriseRunState>, options?: IRepoOptions): Promise<BatchResult<EnterpriseRunState>>;
|
|
1218
|
+
upsertMany(request: Array<EnterpriseRunState>, options?: IThrowingRepoOptions): Promise<EnterpriseRunState[]>;
|
|
1219
|
+
/** Saves the input as a new EnterpriseRunState, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
1220
|
+
tryUpsert(request: EnterpriseRunState, options?: IRepoOptions): Promise<SingleResult<EnterpriseRunState>>;
|
|
1221
|
+
upsert(request: EnterpriseRunState, options?: IThrowingRepoOptions): Promise<EnterpriseRunState>;
|
|
829
1222
|
}
|
|
830
1223
|
import { EnterpriseVersionConfig, EnterpriseVersionConfigCriteria } from "../contracts";
|
|
831
1224
|
declare class EnterpriseVersionConfigCruds {
|
|
@@ -858,9 +1251,21 @@ declare class EnterpriseVersionConfigCruds {
|
|
|
858
1251
|
/** Deletes the existing EnterpriseVersionConfig. */
|
|
859
1252
|
tryDelete(request: IdSpecFor<EnterpriseVersionConfig>, options?: IRepoOptions): Promise<SingleResult<EnterpriseVersionConfig>>;
|
|
860
1253
|
delete(request: IdSpecFor<EnterpriseVersionConfig>, options?: IThrowingRepoOptions): Promise<EnterpriseVersionConfig>;
|
|
1254
|
+
/** Overwrites the given properties of the existing EnterpriseVersionConfig. */
|
|
1255
|
+
tryUpdatePartial(request: EnterpriseVersionConfig, options?: IRepoOptions): Promise<SingleResult<PartialWithId<EnterpriseVersionConfig>>>;
|
|
1256
|
+
updatePartial(request: EnterpriseVersionConfig, options?: IThrowingRepoOptions): Promise<PartialWithId<EnterpriseVersionConfig>>;
|
|
861
1257
|
/** Saves the input as a new EnterpriseVersionConfig. */
|
|
862
1258
|
tryCreate(request: EnterpriseVersionConfig, options?: IRepoOptions): Promise<SingleResult<EnterpriseVersionConfig>>;
|
|
863
1259
|
create(request: EnterpriseVersionConfig, options?: IThrowingRepoOptions): Promise<EnterpriseVersionConfig>;
|
|
1260
|
+
/** Overwrites the given properties for each existing EnterpriseVersionConfig. */
|
|
1261
|
+
tryUpdatePartialMany(request: Array<EnterpriseVersionConfig>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<EnterpriseVersionConfig>>>;
|
|
1262
|
+
updatePartialMany(request: Array<EnterpriseVersionConfig>, options?: IThrowingRepoOptions): Promise<PartialWithId<EnterpriseVersionConfig>[]>;
|
|
1263
|
+
/** Saves each given input as a new EnterpriseVersionConfig, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
1264
|
+
tryUpsertMany(request: Array<EnterpriseVersionConfig>, options?: IRepoOptions): Promise<BatchResult<EnterpriseVersionConfig>>;
|
|
1265
|
+
upsertMany(request: Array<EnterpriseVersionConfig>, options?: IThrowingRepoOptions): Promise<EnterpriseVersionConfig[]>;
|
|
1266
|
+
/** Saves the input as a new EnterpriseVersionConfig, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
1267
|
+
tryUpsert(request: EnterpriseVersionConfig, options?: IRepoOptions): Promise<SingleResult<EnterpriseVersionConfig>>;
|
|
1268
|
+
upsert(request: EnterpriseVersionConfig, options?: IThrowingRepoOptions): Promise<EnterpriseVersionConfig>;
|
|
864
1269
|
}
|
|
865
1270
|
import { Enterprise, EnterpriseCriteria } from "../contracts";
|
|
866
1271
|
declare class EnterpriseCruds {
|
|
@@ -893,9 +1298,21 @@ declare class EnterpriseCruds {
|
|
|
893
1298
|
/** Deletes the existing Enterprise. */
|
|
894
1299
|
tryDelete(request: IdSpecFor<Enterprise>, options?: IRepoOptions): Promise<SingleResult<Enterprise>>;
|
|
895
1300
|
delete(request: IdSpecFor<Enterprise>, options?: IThrowingRepoOptions): Promise<Enterprise>;
|
|
1301
|
+
/** Overwrites the given properties of the existing Enterprise. */
|
|
1302
|
+
tryUpdatePartial(request: Enterprise, options?: IRepoOptions): Promise<SingleResult<PartialWithId<Enterprise>>>;
|
|
1303
|
+
updatePartial(request: Enterprise, options?: IThrowingRepoOptions): Promise<PartialWithId<Enterprise>>;
|
|
896
1304
|
/** Saves the input as a new Enterprise. */
|
|
897
1305
|
tryCreate(request: Enterprise, options?: IRepoOptions): Promise<SingleResult<Enterprise>>;
|
|
898
1306
|
create(request: Enterprise, options?: IThrowingRepoOptions): Promise<Enterprise>;
|
|
1307
|
+
/** Overwrites the given properties for each existing Enterprise. */
|
|
1308
|
+
tryUpdatePartialMany(request: Array<Enterprise>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<Enterprise>>>;
|
|
1309
|
+
updatePartialMany(request: Array<Enterprise>, options?: IThrowingRepoOptions): Promise<PartialWithId<Enterprise>[]>;
|
|
1310
|
+
/** Saves each given input as a new Enterprise, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
1311
|
+
tryUpsertMany(request: Array<Enterprise>, options?: IRepoOptions): Promise<BatchResult<Enterprise>>;
|
|
1312
|
+
upsertMany(request: Array<Enterprise>, options?: IThrowingRepoOptions): Promise<Enterprise[]>;
|
|
1313
|
+
/** Saves the input as a new Enterprise, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
1314
|
+
tryUpsert(request: Enterprise, options?: IRepoOptions): Promise<SingleResult<Enterprise>>;
|
|
1315
|
+
upsert(request: Enterprise, options?: IThrowingRepoOptions): Promise<Enterprise>;
|
|
899
1316
|
}
|
|
900
1317
|
import { Environment, EnvironmentCriteria } from "../contracts";
|
|
901
1318
|
declare class EnvironmentCruds {
|
|
@@ -928,9 +1345,21 @@ declare class EnvironmentCruds {
|
|
|
928
1345
|
/** Deletes the existing Environment. */
|
|
929
1346
|
tryDelete(request: IdSpecFor<Environment>, options?: IRepoOptions): Promise<SingleResult<Environment>>;
|
|
930
1347
|
delete(request: IdSpecFor<Environment>, options?: IThrowingRepoOptions): Promise<Environment>;
|
|
1348
|
+
/** Overwrites the given properties of the existing Environment. */
|
|
1349
|
+
tryUpdatePartial(request: Environment, options?: IRepoOptions): Promise<SingleResult<PartialWithId<Environment>>>;
|
|
1350
|
+
updatePartial(request: Environment, options?: IThrowingRepoOptions): Promise<PartialWithId<Environment>>;
|
|
931
1351
|
/** Saves the input as a new Environment. */
|
|
932
1352
|
tryCreate(request: Environment, options?: IRepoOptions): Promise<SingleResult<Environment>>;
|
|
933
1353
|
create(request: Environment, options?: IThrowingRepoOptions): Promise<Environment>;
|
|
1354
|
+
/** Overwrites the given properties for each existing Environment. */
|
|
1355
|
+
tryUpdatePartialMany(request: Array<Environment>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<Environment>>>;
|
|
1356
|
+
updatePartialMany(request: Array<Environment>, options?: IThrowingRepoOptions): Promise<PartialWithId<Environment>[]>;
|
|
1357
|
+
/** Saves each given input as a new Environment, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
1358
|
+
tryUpsertMany(request: Array<Environment>, options?: IRepoOptions): Promise<BatchResult<Environment>>;
|
|
1359
|
+
upsertMany(request: Array<Environment>, options?: IThrowingRepoOptions): Promise<Environment[]>;
|
|
1360
|
+
/** Saves the input as a new Environment, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
1361
|
+
tryUpsert(request: Environment, options?: IRepoOptions): Promise<SingleResult<Environment>>;
|
|
1362
|
+
upsert(request: Environment, options?: IThrowingRepoOptions): Promise<Environment>;
|
|
934
1363
|
}
|
|
935
1364
|
import { FileStoreDef, FileStoreDefCriteria } from "../contracts";
|
|
936
1365
|
declare class FileStoreDefCruds {
|
|
@@ -963,9 +1392,21 @@ declare class FileStoreDefCruds {
|
|
|
963
1392
|
/** Deletes the existing FileStoreDef. */
|
|
964
1393
|
tryDelete(request: IdSpecFor<FileStoreDef>, options?: IRepoOptions): Promise<SingleResult<FileStoreDef>>;
|
|
965
1394
|
delete(request: IdSpecFor<FileStoreDef>, options?: IThrowingRepoOptions): Promise<FileStoreDef>;
|
|
1395
|
+
/** Overwrites the given properties of the existing FileStoreDef. */
|
|
1396
|
+
tryUpdatePartial(request: FileStoreDef, options?: IRepoOptions): Promise<SingleResult<PartialWithId<FileStoreDef>>>;
|
|
1397
|
+
updatePartial(request: FileStoreDef, options?: IThrowingRepoOptions): Promise<PartialWithId<FileStoreDef>>;
|
|
966
1398
|
/** Saves the input as a new FileStoreDef. */
|
|
967
1399
|
tryCreate(request: FileStoreDef, options?: IRepoOptions): Promise<SingleResult<FileStoreDef>>;
|
|
968
1400
|
create(request: FileStoreDef, options?: IThrowingRepoOptions): Promise<FileStoreDef>;
|
|
1401
|
+
/** Overwrites the given properties for each existing FileStoreDef. */
|
|
1402
|
+
tryUpdatePartialMany(request: Array<FileStoreDef>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<FileStoreDef>>>;
|
|
1403
|
+
updatePartialMany(request: Array<FileStoreDef>, options?: IThrowingRepoOptions): Promise<PartialWithId<FileStoreDef>[]>;
|
|
1404
|
+
/** Saves each given input as a new FileStoreDef, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
1405
|
+
tryUpsertMany(request: Array<FileStoreDef>, options?: IRepoOptions): Promise<BatchResult<FileStoreDef>>;
|
|
1406
|
+
upsertMany(request: Array<FileStoreDef>, options?: IThrowingRepoOptions): Promise<FileStoreDef[]>;
|
|
1407
|
+
/** Saves the input as a new FileStoreDef, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
1408
|
+
tryUpsert(request: FileStoreDef, options?: IRepoOptions): Promise<SingleResult<FileStoreDef>>;
|
|
1409
|
+
upsert(request: FileStoreDef, options?: IThrowingRepoOptions): Promise<FileStoreDef>;
|
|
969
1410
|
}
|
|
970
1411
|
import { ScopedHostNameConfig, ScopedHostNameConfigCriteria } from "../contracts";
|
|
971
1412
|
declare class ScopedHostNameConfigCruds {
|
|
@@ -998,9 +1439,21 @@ declare class ScopedHostNameConfigCruds {
|
|
|
998
1439
|
/** Deletes the existing ScopedHostNameConfig. */
|
|
999
1440
|
tryDelete(request: IdSpecFor<ScopedHostNameConfig>, options?: IRepoOptions): Promise<SingleResult<ScopedHostNameConfig>>;
|
|
1000
1441
|
delete(request: IdSpecFor<ScopedHostNameConfig>, options?: IThrowingRepoOptions): Promise<ScopedHostNameConfig>;
|
|
1442
|
+
/** Overwrites the given properties of the existing ScopedHostNameConfig. */
|
|
1443
|
+
tryUpdatePartial(request: ScopedHostNameConfig, options?: IRepoOptions): Promise<SingleResult<PartialWithId<ScopedHostNameConfig>>>;
|
|
1444
|
+
updatePartial(request: ScopedHostNameConfig, options?: IThrowingRepoOptions): Promise<PartialWithId<ScopedHostNameConfig>>;
|
|
1001
1445
|
/** Saves the input as a new ScopedHostNameConfig. */
|
|
1002
1446
|
tryCreate(request: ScopedHostNameConfig, options?: IRepoOptions): Promise<SingleResult<ScopedHostNameConfig>>;
|
|
1003
1447
|
create(request: ScopedHostNameConfig, options?: IThrowingRepoOptions): Promise<ScopedHostNameConfig>;
|
|
1448
|
+
/** Overwrites the given properties for each existing ScopedHostNameConfig. */
|
|
1449
|
+
tryUpdatePartialMany(request: Array<ScopedHostNameConfig>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<ScopedHostNameConfig>>>;
|
|
1450
|
+
updatePartialMany(request: Array<ScopedHostNameConfig>, options?: IThrowingRepoOptions): Promise<PartialWithId<ScopedHostNameConfig>[]>;
|
|
1451
|
+
/** Saves each given input as a new ScopedHostNameConfig, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
1452
|
+
tryUpsertMany(request: Array<ScopedHostNameConfig>, options?: IRepoOptions): Promise<BatchResult<ScopedHostNameConfig>>;
|
|
1453
|
+
upsertMany(request: Array<ScopedHostNameConfig>, options?: IThrowingRepoOptions): Promise<ScopedHostNameConfig[]>;
|
|
1454
|
+
/** Saves the input as a new ScopedHostNameConfig, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
1455
|
+
tryUpsert(request: ScopedHostNameConfig, options?: IRepoOptions): Promise<SingleResult<ScopedHostNameConfig>>;
|
|
1456
|
+
upsert(request: ScopedHostNameConfig, options?: IThrowingRepoOptions): Promise<ScopedHostNameConfig>;
|
|
1004
1457
|
}
|
|
1005
1458
|
import { ImageRegistry, ImageRegistryCriteria } from "../contracts";
|
|
1006
1459
|
declare class ImageRegistryCruds {
|
|
@@ -1033,9 +1486,21 @@ declare class ImageRegistryCruds {
|
|
|
1033
1486
|
/** Deletes the existing ImageRegistry. */
|
|
1034
1487
|
tryDelete(request: IdSpecFor<ImageRegistry>, options?: IRepoOptions): Promise<SingleResult<ImageRegistry>>;
|
|
1035
1488
|
delete(request: IdSpecFor<ImageRegistry>, options?: IThrowingRepoOptions): Promise<ImageRegistry>;
|
|
1489
|
+
/** Overwrites the given properties of the existing ImageRegistry. */
|
|
1490
|
+
tryUpdatePartial(request: ImageRegistry, options?: IRepoOptions): Promise<SingleResult<PartialWithId<ImageRegistry>>>;
|
|
1491
|
+
updatePartial(request: ImageRegistry, options?: IThrowingRepoOptions): Promise<PartialWithId<ImageRegistry>>;
|
|
1036
1492
|
/** Saves the input as a new ImageRegistry. */
|
|
1037
1493
|
tryCreate(request: ImageRegistry, options?: IRepoOptions): Promise<SingleResult<ImageRegistry>>;
|
|
1038
1494
|
create(request: ImageRegistry, options?: IThrowingRepoOptions): Promise<ImageRegistry>;
|
|
1495
|
+
/** Overwrites the given properties for each existing ImageRegistry. */
|
|
1496
|
+
tryUpdatePartialMany(request: Array<ImageRegistry>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<ImageRegistry>>>;
|
|
1497
|
+
updatePartialMany(request: Array<ImageRegistry>, options?: IThrowingRepoOptions): Promise<PartialWithId<ImageRegistry>[]>;
|
|
1498
|
+
/** Saves each given input as a new ImageRegistry, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
1499
|
+
tryUpsertMany(request: Array<ImageRegistry>, options?: IRepoOptions): Promise<BatchResult<ImageRegistry>>;
|
|
1500
|
+
upsertMany(request: Array<ImageRegistry>, options?: IThrowingRepoOptions): Promise<ImageRegistry[]>;
|
|
1501
|
+
/** Saves the input as a new ImageRegistry, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
1502
|
+
tryUpsert(request: ImageRegistry, options?: IRepoOptions): Promise<SingleResult<ImageRegistry>>;
|
|
1503
|
+
upsert(request: ImageRegistry, options?: IThrowingRepoOptions): Promise<ImageRegistry>;
|
|
1039
1504
|
}
|
|
1040
1505
|
import { Image, ImageCriteria } from "../contracts";
|
|
1041
1506
|
declare class ImageCruds {
|
|
@@ -1068,9 +1533,21 @@ declare class ImageCruds {
|
|
|
1068
1533
|
/** Deletes the existing Image. */
|
|
1069
1534
|
tryDelete(request: IdSpecFor<Image>, options?: IRepoOptions): Promise<SingleResult<Image>>;
|
|
1070
1535
|
delete(request: IdSpecFor<Image>, options?: IThrowingRepoOptions): Promise<Image>;
|
|
1536
|
+
/** Overwrites the given properties of the existing Image. */
|
|
1537
|
+
tryUpdatePartial(request: Image, options?: IRepoOptions): Promise<SingleResult<PartialWithId<Image>>>;
|
|
1538
|
+
updatePartial(request: Image, options?: IThrowingRepoOptions): Promise<PartialWithId<Image>>;
|
|
1071
1539
|
/** Saves the input as a new Image. */
|
|
1072
1540
|
tryCreate(request: Image, options?: IRepoOptions): Promise<SingleResult<Image>>;
|
|
1073
1541
|
create(request: Image, options?: IThrowingRepoOptions): Promise<Image>;
|
|
1542
|
+
/** Overwrites the given properties for each existing Image. */
|
|
1543
|
+
tryUpdatePartialMany(request: Array<Image>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<Image>>>;
|
|
1544
|
+
updatePartialMany(request: Array<Image>, options?: IThrowingRepoOptions): Promise<PartialWithId<Image>[]>;
|
|
1545
|
+
/** Saves each given input as a new Image, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
1546
|
+
tryUpsertMany(request: Array<Image>, options?: IRepoOptions): Promise<BatchResult<Image>>;
|
|
1547
|
+
upsertMany(request: Array<Image>, options?: IThrowingRepoOptions): Promise<Image[]>;
|
|
1548
|
+
/** Saves the input as a new Image, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
1549
|
+
tryUpsert(request: Image, options?: IRepoOptions): Promise<SingleResult<Image>>;
|
|
1550
|
+
upsert(request: Image, options?: IThrowingRepoOptions): Promise<Image>;
|
|
1074
1551
|
}
|
|
1075
1552
|
import { SetupJournal, SetupJournalCriteria } from "../contracts";
|
|
1076
1553
|
declare class SetupJournalCruds {
|
|
@@ -1103,9 +1580,21 @@ declare class SetupJournalCruds {
|
|
|
1103
1580
|
/** Deletes the existing SetupJournal. */
|
|
1104
1581
|
tryDelete(request: IdSpecFor<SetupJournal>, options?: IRepoOptions): Promise<SingleResult<SetupJournal>>;
|
|
1105
1582
|
delete(request: IdSpecFor<SetupJournal>, options?: IThrowingRepoOptions): Promise<SetupJournal>;
|
|
1583
|
+
/** Overwrites the given properties of the existing SetupJournal. */
|
|
1584
|
+
tryUpdatePartial(request: SetupJournal, options?: IRepoOptions): Promise<SingleResult<PartialWithId<SetupJournal>>>;
|
|
1585
|
+
updatePartial(request: SetupJournal, options?: IThrowingRepoOptions): Promise<PartialWithId<SetupJournal>>;
|
|
1106
1586
|
/** Saves the input as a new SetupJournal. */
|
|
1107
1587
|
tryCreate(request: SetupJournal, options?: IRepoOptions): Promise<SingleResult<SetupJournal>>;
|
|
1108
1588
|
create(request: SetupJournal, options?: IThrowingRepoOptions): Promise<SetupJournal>;
|
|
1589
|
+
/** Overwrites the given properties for each existing SetupJournal. */
|
|
1590
|
+
tryUpdatePartialMany(request: Array<SetupJournal>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<SetupJournal>>>;
|
|
1591
|
+
updatePartialMany(request: Array<SetupJournal>, options?: IThrowingRepoOptions): Promise<PartialWithId<SetupJournal>[]>;
|
|
1592
|
+
/** Saves each given input as a new SetupJournal, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
1593
|
+
tryUpsertMany(request: Array<SetupJournal>, options?: IRepoOptions): Promise<BatchResult<SetupJournal>>;
|
|
1594
|
+
upsertMany(request: Array<SetupJournal>, options?: IThrowingRepoOptions): Promise<SetupJournal[]>;
|
|
1595
|
+
/** Saves the input as a new SetupJournal, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
1596
|
+
tryUpsert(request: SetupJournal, options?: IRepoOptions): Promise<SingleResult<SetupJournal>>;
|
|
1597
|
+
upsert(request: SetupJournal, options?: IThrowingRepoOptions): Promise<SetupJournal>;
|
|
1109
1598
|
}
|
|
1110
1599
|
import { Kit, KitCriteria } from "../contracts";
|
|
1111
1600
|
declare class KitCruds {
|
|
@@ -1138,9 +1627,21 @@ declare class KitCruds {
|
|
|
1138
1627
|
/** Deletes the existing Kit. */
|
|
1139
1628
|
tryDelete(request: IdSpecFor<Kit>, options?: IRepoOptions): Promise<SingleResult<Kit>>;
|
|
1140
1629
|
delete(request: IdSpecFor<Kit>, options?: IThrowingRepoOptions): Promise<Kit>;
|
|
1630
|
+
/** Overwrites the given properties of the existing Kit. */
|
|
1631
|
+
tryUpdatePartial(request: Kit, options?: IRepoOptions): Promise<SingleResult<PartialWithId<Kit>>>;
|
|
1632
|
+
updatePartial(request: Kit, options?: IThrowingRepoOptions): Promise<PartialWithId<Kit>>;
|
|
1141
1633
|
/** Saves the input as a new Kit. */
|
|
1142
1634
|
tryCreate(request: Kit, options?: IRepoOptions): Promise<SingleResult<Kit>>;
|
|
1143
1635
|
create(request: Kit, options?: IThrowingRepoOptions): Promise<Kit>;
|
|
1636
|
+
/** Overwrites the given properties for each existing Kit. */
|
|
1637
|
+
tryUpdatePartialMany(request: Array<Kit>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<Kit>>>;
|
|
1638
|
+
updatePartialMany(request: Array<Kit>, options?: IThrowingRepoOptions): Promise<PartialWithId<Kit>[]>;
|
|
1639
|
+
/** Saves each given input as a new Kit, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
1640
|
+
tryUpsertMany(request: Array<Kit>, options?: IRepoOptions): Promise<BatchResult<Kit>>;
|
|
1641
|
+
upsertMany(request: Array<Kit>, options?: IThrowingRepoOptions): Promise<Kit[]>;
|
|
1642
|
+
/** Saves the input as a new Kit, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
1643
|
+
tryUpsert(request: Kit, options?: IRepoOptions): Promise<SingleResult<Kit>>;
|
|
1644
|
+
upsert(request: Kit, options?: IThrowingRepoOptions): Promise<Kit>;
|
|
1144
1645
|
}
|
|
1145
1646
|
import { KvpStoreDef, KvpStoreDefCriteria } from "../contracts";
|
|
1146
1647
|
declare class KvpStoreDefCruds {
|
|
@@ -1173,9 +1674,68 @@ declare class KvpStoreDefCruds {
|
|
|
1173
1674
|
/** Deletes the existing KvpStoreDef. */
|
|
1174
1675
|
tryDelete(request: IdSpecFor<KvpStoreDef>, options?: IRepoOptions): Promise<SingleResult<KvpStoreDef>>;
|
|
1175
1676
|
delete(request: IdSpecFor<KvpStoreDef>, options?: IThrowingRepoOptions): Promise<KvpStoreDef>;
|
|
1677
|
+
/** Overwrites the given properties of the existing KvpStoreDef. */
|
|
1678
|
+
tryUpdatePartial(request: KvpStoreDef, options?: IRepoOptions): Promise<SingleResult<PartialWithId<KvpStoreDef>>>;
|
|
1679
|
+
updatePartial(request: KvpStoreDef, options?: IThrowingRepoOptions): Promise<PartialWithId<KvpStoreDef>>;
|
|
1176
1680
|
/** Saves the input as a new KvpStoreDef. */
|
|
1177
1681
|
tryCreate(request: KvpStoreDef, options?: IRepoOptions): Promise<SingleResult<KvpStoreDef>>;
|
|
1178
1682
|
create(request: KvpStoreDef, options?: IThrowingRepoOptions): Promise<KvpStoreDef>;
|
|
1683
|
+
/** Overwrites the given properties for each existing KvpStoreDef. */
|
|
1684
|
+
tryUpdatePartialMany(request: Array<KvpStoreDef>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<KvpStoreDef>>>;
|
|
1685
|
+
updatePartialMany(request: Array<KvpStoreDef>, options?: IThrowingRepoOptions): Promise<PartialWithId<KvpStoreDef>[]>;
|
|
1686
|
+
/** Saves each given input as a new KvpStoreDef, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
1687
|
+
tryUpsertMany(request: Array<KvpStoreDef>, options?: IRepoOptions): Promise<BatchResult<KvpStoreDef>>;
|
|
1688
|
+
upsertMany(request: Array<KvpStoreDef>, options?: IThrowingRepoOptions): Promise<KvpStoreDef[]>;
|
|
1689
|
+
/** Saves the input as a new KvpStoreDef, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
1690
|
+
tryUpsert(request: KvpStoreDef, options?: IRepoOptions): Promise<SingleResult<KvpStoreDef>>;
|
|
1691
|
+
upsert(request: KvpStoreDef, options?: IThrowingRepoOptions): Promise<KvpStoreDef>;
|
|
1692
|
+
}
|
|
1693
|
+
import { Label, LabelCriteria } from "../contracts";
|
|
1694
|
+
declare class LabelCruds {
|
|
1695
|
+
private core;
|
|
1696
|
+
constructor(core: ApiClientBase);
|
|
1697
|
+
/** Saves each given input as a new Label. */
|
|
1698
|
+
tryCreateMany(request: Array<Label>, options?: IRepoOptions): Promise<BatchResult<Label>>;
|
|
1699
|
+
createMany(request: Array<Label>, options?: IThrowingRepoOptions): Promise<Label[]>;
|
|
1700
|
+
/** Retrieves all the existing Label that satisfy the given criteria. */
|
|
1701
|
+
tryReadMany(request: LabelCriteria, options?: IRepoOptions): Promise<ListResult<Label>>;
|
|
1702
|
+
readMany(request: LabelCriteria, options?: IThrowingRepoOptions): Promise<Label[]>;
|
|
1703
|
+
/** Overwrites each existing Label. */
|
|
1704
|
+
tryUpdateMany(request: Array<Label>, options?: IRepoOptions): Promise<BatchResult<Label>>;
|
|
1705
|
+
updateMany(request: Array<Label>, options?: IThrowingRepoOptions): Promise<Label[]>;
|
|
1706
|
+
/** Performs the given operations on each existing Label that satisfies the given criteria. */
|
|
1707
|
+
tryPatchWhere(request: PatchSpecForMany<Label, LabelCriteria>, options?: IRepoOptions): Promise<BatchResult<Label>>;
|
|
1708
|
+
patchWhere(request: PatchSpecForMany<Label, LabelCriteria>, options?: IThrowingRepoOptions): Promise<Label[]>;
|
|
1709
|
+
/** Deletes each existing Label that satisfies the given criteria. */
|
|
1710
|
+
tryDeleteWhere(request: LabelCriteria, options?: IRepoOptions): Promise<BatchResult<Label>>;
|
|
1711
|
+
deleteWhere(request: LabelCriteria, options?: IThrowingRepoOptions): Promise<Label[]>;
|
|
1712
|
+
/** Retrieves the single, uniquely identified Label. */
|
|
1713
|
+
tryRead(request: IdSpecFor<Label>, options?: IRepoOptions): Promise<SingleResult<Label>>;
|
|
1714
|
+
read(request: IdSpecFor<Label>, options?: IThrowingRepoOptions): Promise<Label>;
|
|
1715
|
+
/** Overwrites the existing Label. */
|
|
1716
|
+
tryUpdate(request: Label, options?: IRepoOptions): Promise<SingleResult<Label>>;
|
|
1717
|
+
update(request: Label, options?: IThrowingRepoOptions): Promise<Label>;
|
|
1718
|
+
/** Performs the given operations on the existing Label. */
|
|
1719
|
+
tryPatch(request: PatchSpecForOne<Label>, options?: IRepoOptions): Promise<SingleResult<Label>>;
|
|
1720
|
+
patch(request: PatchSpecForOne<Label>, options?: IThrowingRepoOptions): Promise<Label>;
|
|
1721
|
+
/** Deletes the existing Label. */
|
|
1722
|
+
tryDelete(request: IdSpecFor<Label>, options?: IRepoOptions): Promise<SingleResult<Label>>;
|
|
1723
|
+
delete(request: IdSpecFor<Label>, options?: IThrowingRepoOptions): Promise<Label>;
|
|
1724
|
+
/** Overwrites the given properties of the existing Label. */
|
|
1725
|
+
tryUpdatePartial(request: Label, options?: IRepoOptions): Promise<SingleResult<PartialWithId<Label>>>;
|
|
1726
|
+
updatePartial(request: Label, options?: IThrowingRepoOptions): Promise<PartialWithId<Label>>;
|
|
1727
|
+
/** Saves the input as a new Label. */
|
|
1728
|
+
tryCreate(request: Label, options?: IRepoOptions): Promise<SingleResult<Label>>;
|
|
1729
|
+
create(request: Label, options?: IThrowingRepoOptions): Promise<Label>;
|
|
1730
|
+
/** Overwrites the given properties for each existing Label. */
|
|
1731
|
+
tryUpdatePartialMany(request: Array<Label>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<Label>>>;
|
|
1732
|
+
updatePartialMany(request: Array<Label>, options?: IThrowingRepoOptions): Promise<PartialWithId<Label>[]>;
|
|
1733
|
+
/** Saves each given input as a new Label, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
1734
|
+
tryUpsertMany(request: Array<Label>, options?: IRepoOptions): Promise<BatchResult<Label>>;
|
|
1735
|
+
upsertMany(request: Array<Label>, options?: IThrowingRepoOptions): Promise<Label[]>;
|
|
1736
|
+
/** Saves the input as a new Label, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
1737
|
+
tryUpsert(request: Label, options?: IRepoOptions): Promise<SingleResult<Label>>;
|
|
1738
|
+
upsert(request: Label, options?: IThrowingRepoOptions): Promise<Label>;
|
|
1179
1739
|
}
|
|
1180
1740
|
import { NodePoolDef, NodePoolDefCriteria } from "../contracts";
|
|
1181
1741
|
declare class NodePoolDefCruds {
|
|
@@ -1208,9 +1768,21 @@ declare class NodePoolDefCruds {
|
|
|
1208
1768
|
/** Deletes the existing NodePoolDef. */
|
|
1209
1769
|
tryDelete(request: IdSpecFor<NodePoolDef>, options?: IRepoOptions): Promise<SingleResult<NodePoolDef>>;
|
|
1210
1770
|
delete(request: IdSpecFor<NodePoolDef>, options?: IThrowingRepoOptions): Promise<NodePoolDef>;
|
|
1771
|
+
/** Overwrites the given properties of the existing NodePoolDef. */
|
|
1772
|
+
tryUpdatePartial(request: NodePoolDef, options?: IRepoOptions): Promise<SingleResult<PartialWithId<NodePoolDef>>>;
|
|
1773
|
+
updatePartial(request: NodePoolDef, options?: IThrowingRepoOptions): Promise<PartialWithId<NodePoolDef>>;
|
|
1211
1774
|
/** Saves the input as a new NodePoolDef. */
|
|
1212
1775
|
tryCreate(request: NodePoolDef, options?: IRepoOptions): Promise<SingleResult<NodePoolDef>>;
|
|
1213
1776
|
create(request: NodePoolDef, options?: IThrowingRepoOptions): Promise<NodePoolDef>;
|
|
1777
|
+
/** Overwrites the given properties for each existing NodePoolDef. */
|
|
1778
|
+
tryUpdatePartialMany(request: Array<NodePoolDef>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<NodePoolDef>>>;
|
|
1779
|
+
updatePartialMany(request: Array<NodePoolDef>, options?: IThrowingRepoOptions): Promise<PartialWithId<NodePoolDef>[]>;
|
|
1780
|
+
/** Saves each given input as a new NodePoolDef, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
1781
|
+
tryUpsertMany(request: Array<NodePoolDef>, options?: IRepoOptions): Promise<BatchResult<NodePoolDef>>;
|
|
1782
|
+
upsertMany(request: Array<NodePoolDef>, options?: IThrowingRepoOptions): Promise<NodePoolDef[]>;
|
|
1783
|
+
/** Saves the input as a new NodePoolDef, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
1784
|
+
tryUpsert(request: NodePoolDef, options?: IRepoOptions): Promise<SingleResult<NodePoolDef>>;
|
|
1785
|
+
upsert(request: NodePoolDef, options?: IThrowingRepoOptions): Promise<NodePoolDef>;
|
|
1214
1786
|
}
|
|
1215
1787
|
import { Probe, ProbeCriteria } from "../contracts";
|
|
1216
1788
|
declare class ProbeCruds {
|
|
@@ -1243,9 +1815,21 @@ declare class ProbeCruds {
|
|
|
1243
1815
|
/** Deletes the existing Probe. */
|
|
1244
1816
|
tryDelete(request: IdSpecFor<Probe>, options?: IRepoOptions): Promise<SingleResult<Probe>>;
|
|
1245
1817
|
delete(request: IdSpecFor<Probe>, options?: IThrowingRepoOptions): Promise<Probe>;
|
|
1818
|
+
/** Overwrites the given properties of the existing Probe. */
|
|
1819
|
+
tryUpdatePartial(request: Probe, options?: IRepoOptions): Promise<SingleResult<PartialWithId<Probe>>>;
|
|
1820
|
+
updatePartial(request: Probe, options?: IThrowingRepoOptions): Promise<PartialWithId<Probe>>;
|
|
1246
1821
|
/** Saves the input as a new Probe. */
|
|
1247
1822
|
tryCreate(request: Probe, options?: IRepoOptions): Promise<SingleResult<Probe>>;
|
|
1248
1823
|
create(request: Probe, options?: IThrowingRepoOptions): Promise<Probe>;
|
|
1824
|
+
/** Overwrites the given properties for each existing Probe. */
|
|
1825
|
+
tryUpdatePartialMany(request: Array<Probe>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<Probe>>>;
|
|
1826
|
+
updatePartialMany(request: Array<Probe>, options?: IThrowingRepoOptions): Promise<PartialWithId<Probe>[]>;
|
|
1827
|
+
/** Saves each given input as a new Probe, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
1828
|
+
tryUpsertMany(request: Array<Probe>, options?: IRepoOptions): Promise<BatchResult<Probe>>;
|
|
1829
|
+
upsertMany(request: Array<Probe>, options?: IThrowingRepoOptions): Promise<Probe[]>;
|
|
1830
|
+
/** Saves the input as a new Probe, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
1831
|
+
tryUpsert(request: Probe, options?: IRepoOptions): Promise<SingleResult<Probe>>;
|
|
1832
|
+
upsert(request: Probe, options?: IThrowingRepoOptions): Promise<Probe>;
|
|
1249
1833
|
}
|
|
1250
1834
|
import { ProductVersionConfig, ProductVersionConfigCriteria } from "../contracts";
|
|
1251
1835
|
declare class ProductVersionConfigCruds {
|
|
@@ -1278,9 +1862,21 @@ declare class ProductVersionConfigCruds {
|
|
|
1278
1862
|
/** Deletes the existing ProductVersionConfig. */
|
|
1279
1863
|
tryDelete(request: IdSpecFor<ProductVersionConfig>, options?: IRepoOptions): Promise<SingleResult<ProductVersionConfig>>;
|
|
1280
1864
|
delete(request: IdSpecFor<ProductVersionConfig>, options?: IThrowingRepoOptions): Promise<ProductVersionConfig>;
|
|
1865
|
+
/** Overwrites the given properties of the existing ProductVersionConfig. */
|
|
1866
|
+
tryUpdatePartial(request: ProductVersionConfig, options?: IRepoOptions): Promise<SingleResult<PartialWithId<ProductVersionConfig>>>;
|
|
1867
|
+
updatePartial(request: ProductVersionConfig, options?: IThrowingRepoOptions): Promise<PartialWithId<ProductVersionConfig>>;
|
|
1281
1868
|
/** Saves the input as a new ProductVersionConfig. */
|
|
1282
1869
|
tryCreate(request: ProductVersionConfig, options?: IRepoOptions): Promise<SingleResult<ProductVersionConfig>>;
|
|
1283
1870
|
create(request: ProductVersionConfig, options?: IThrowingRepoOptions): Promise<ProductVersionConfig>;
|
|
1871
|
+
/** Overwrites the given properties for each existing ProductVersionConfig. */
|
|
1872
|
+
tryUpdatePartialMany(request: Array<ProductVersionConfig>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<ProductVersionConfig>>>;
|
|
1873
|
+
updatePartialMany(request: Array<ProductVersionConfig>, options?: IThrowingRepoOptions): Promise<PartialWithId<ProductVersionConfig>[]>;
|
|
1874
|
+
/** Saves each given input as a new ProductVersionConfig, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
1875
|
+
tryUpsertMany(request: Array<ProductVersionConfig>, options?: IRepoOptions): Promise<BatchResult<ProductVersionConfig>>;
|
|
1876
|
+
upsertMany(request: Array<ProductVersionConfig>, options?: IThrowingRepoOptions): Promise<ProductVersionConfig[]>;
|
|
1877
|
+
/** Saves the input as a new ProductVersionConfig, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
1878
|
+
tryUpsert(request: ProductVersionConfig, options?: IRepoOptions): Promise<SingleResult<ProductVersionConfig>>;
|
|
1879
|
+
upsert(request: ProductVersionConfig, options?: IThrowingRepoOptions): Promise<ProductVersionConfig>;
|
|
1284
1880
|
}
|
|
1285
1881
|
import { Product, ProductCriteria } from "../contracts";
|
|
1286
1882
|
declare class ProductCruds {
|
|
@@ -1313,9 +1909,21 @@ declare class ProductCruds {
|
|
|
1313
1909
|
/** Deletes the existing Product. */
|
|
1314
1910
|
tryDelete(request: IdSpecFor<Product>, options?: IRepoOptions): Promise<SingleResult<Product>>;
|
|
1315
1911
|
delete(request: IdSpecFor<Product>, options?: IThrowingRepoOptions): Promise<Product>;
|
|
1912
|
+
/** Overwrites the given properties of the existing Product. */
|
|
1913
|
+
tryUpdatePartial(request: Product, options?: IRepoOptions): Promise<SingleResult<PartialWithId<Product>>>;
|
|
1914
|
+
updatePartial(request: Product, options?: IThrowingRepoOptions): Promise<PartialWithId<Product>>;
|
|
1316
1915
|
/** Saves the input as a new Product. */
|
|
1317
1916
|
tryCreate(request: Product, options?: IRepoOptions): Promise<SingleResult<Product>>;
|
|
1318
1917
|
create(request: Product, options?: IThrowingRepoOptions): Promise<Product>;
|
|
1918
|
+
/** Overwrites the given properties for each existing Product. */
|
|
1919
|
+
tryUpdatePartialMany(request: Array<Product>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<Product>>>;
|
|
1920
|
+
updatePartialMany(request: Array<Product>, options?: IThrowingRepoOptions): Promise<PartialWithId<Product>[]>;
|
|
1921
|
+
/** Saves each given input as a new Product, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
1922
|
+
tryUpsertMany(request: Array<Product>, options?: IRepoOptions): Promise<BatchResult<Product>>;
|
|
1923
|
+
upsertMany(request: Array<Product>, options?: IThrowingRepoOptions): Promise<Product[]>;
|
|
1924
|
+
/** Saves the input as a new Product, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
1925
|
+
tryUpsert(request: Product, options?: IRepoOptions): Promise<SingleResult<Product>>;
|
|
1926
|
+
upsert(request: Product, options?: IThrowingRepoOptions): Promise<Product>;
|
|
1319
1927
|
}
|
|
1320
1928
|
import { ScopedSetting, ScopedSettingCriteria } from "../contracts";
|
|
1321
1929
|
declare class ScopedSettingCruds {
|
|
@@ -1348,9 +1956,21 @@ declare class ScopedSettingCruds {
|
|
|
1348
1956
|
/** Deletes the existing ScopedSetting. */
|
|
1349
1957
|
tryDelete(request: IdSpecFor<ScopedSetting>, options?: IRepoOptions): Promise<SingleResult<ScopedSetting>>;
|
|
1350
1958
|
delete(request: IdSpecFor<ScopedSetting>, options?: IThrowingRepoOptions): Promise<ScopedSetting>;
|
|
1959
|
+
/** Overwrites the given properties of the existing ScopedSetting. */
|
|
1960
|
+
tryUpdatePartial(request: ScopedSetting, options?: IRepoOptions): Promise<SingleResult<PartialWithId<ScopedSetting>>>;
|
|
1961
|
+
updatePartial(request: ScopedSetting, options?: IThrowingRepoOptions): Promise<PartialWithId<ScopedSetting>>;
|
|
1351
1962
|
/** Saves the input as a new ScopedSetting. */
|
|
1352
1963
|
tryCreate(request: ScopedSetting, options?: IRepoOptions): Promise<SingleResult<ScopedSetting>>;
|
|
1353
1964
|
create(request: ScopedSetting, options?: IThrowingRepoOptions): Promise<ScopedSetting>;
|
|
1965
|
+
/** Overwrites the given properties for each existing ScopedSetting. */
|
|
1966
|
+
tryUpdatePartialMany(request: Array<ScopedSetting>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<ScopedSetting>>>;
|
|
1967
|
+
updatePartialMany(request: Array<ScopedSetting>, options?: IThrowingRepoOptions): Promise<PartialWithId<ScopedSetting>[]>;
|
|
1968
|
+
/** Saves each given input as a new ScopedSetting, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
1969
|
+
tryUpsertMany(request: Array<ScopedSetting>, options?: IRepoOptions): Promise<BatchResult<ScopedSetting>>;
|
|
1970
|
+
upsertMany(request: Array<ScopedSetting>, options?: IThrowingRepoOptions): Promise<ScopedSetting[]>;
|
|
1971
|
+
/** Saves the input as a new ScopedSetting, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
1972
|
+
tryUpsert(request: ScopedSetting, options?: IRepoOptions): Promise<SingleResult<ScopedSetting>>;
|
|
1973
|
+
upsert(request: ScopedSetting, options?: IThrowingRepoOptions): Promise<ScopedSetting>;
|
|
1354
1974
|
}
|
|
1355
1975
|
import { Snapshot, SnapshotCriteria } from "../contracts";
|
|
1356
1976
|
declare class SnapshotCruds {
|
|
@@ -1383,9 +2003,21 @@ declare class SnapshotCruds {
|
|
|
1383
2003
|
/** Deletes the existing Snapshot. */
|
|
1384
2004
|
tryDelete(request: IdSpecFor<Snapshot>, options?: IRepoOptions): Promise<SingleResult<Snapshot>>;
|
|
1385
2005
|
delete(request: IdSpecFor<Snapshot>, options?: IThrowingRepoOptions): Promise<Snapshot>;
|
|
2006
|
+
/** Overwrites the given properties of the existing Snapshot. */
|
|
2007
|
+
tryUpdatePartial(request: Snapshot, options?: IRepoOptions): Promise<SingleResult<PartialWithId<Snapshot>>>;
|
|
2008
|
+
updatePartial(request: Snapshot, options?: IThrowingRepoOptions): Promise<PartialWithId<Snapshot>>;
|
|
1386
2009
|
/** Saves the input as a new Snapshot. */
|
|
1387
2010
|
tryCreate(request: Snapshot, options?: IRepoOptions): Promise<SingleResult<Snapshot>>;
|
|
1388
2011
|
create(request: Snapshot, options?: IThrowingRepoOptions): Promise<Snapshot>;
|
|
2012
|
+
/** Overwrites the given properties for each existing Snapshot. */
|
|
2013
|
+
tryUpdatePartialMany(request: Array<Snapshot>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<Snapshot>>>;
|
|
2014
|
+
updatePartialMany(request: Array<Snapshot>, options?: IThrowingRepoOptions): Promise<PartialWithId<Snapshot>[]>;
|
|
2015
|
+
/** Saves each given input as a new Snapshot, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
2016
|
+
tryUpsertMany(request: Array<Snapshot>, options?: IRepoOptions): Promise<BatchResult<Snapshot>>;
|
|
2017
|
+
upsertMany(request: Array<Snapshot>, options?: IThrowingRepoOptions): Promise<Snapshot[]>;
|
|
2018
|
+
/** Saves the input as a new Snapshot, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
2019
|
+
tryUpsert(request: Snapshot, options?: IRepoOptions): Promise<SingleResult<Snapshot>>;
|
|
2020
|
+
upsert(request: Snapshot, options?: IThrowingRepoOptions): Promise<Snapshot>;
|
|
1389
2021
|
}
|
|
1390
2022
|
import { SourceRepo, SourceRepoCriteria } from "../contracts";
|
|
1391
2023
|
declare class SourceRepoCruds {
|
|
@@ -1418,9 +2050,21 @@ declare class SourceRepoCruds {
|
|
|
1418
2050
|
/** Deletes the existing SourceRepo. */
|
|
1419
2051
|
tryDelete(request: IdSpecFor<SourceRepo>, options?: IRepoOptions): Promise<SingleResult<SourceRepo>>;
|
|
1420
2052
|
delete(request: IdSpecFor<SourceRepo>, options?: IThrowingRepoOptions): Promise<SourceRepo>;
|
|
2053
|
+
/** Overwrites the given properties of the existing SourceRepo. */
|
|
2054
|
+
tryUpdatePartial(request: SourceRepo, options?: IRepoOptions): Promise<SingleResult<PartialWithId<SourceRepo>>>;
|
|
2055
|
+
updatePartial(request: SourceRepo, options?: IThrowingRepoOptions): Promise<PartialWithId<SourceRepo>>;
|
|
1421
2056
|
/** Saves the input as a new SourceRepo. */
|
|
1422
2057
|
tryCreate(request: SourceRepo, options?: IRepoOptions): Promise<SingleResult<SourceRepo>>;
|
|
1423
2058
|
create(request: SourceRepo, options?: IThrowingRepoOptions): Promise<SourceRepo>;
|
|
2059
|
+
/** Overwrites the given properties for each existing SourceRepo. */
|
|
2060
|
+
tryUpdatePartialMany(request: Array<SourceRepo>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<SourceRepo>>>;
|
|
2061
|
+
updatePartialMany(request: Array<SourceRepo>, options?: IThrowingRepoOptions): Promise<PartialWithId<SourceRepo>[]>;
|
|
2062
|
+
/** Saves each given input as a new SourceRepo, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
2063
|
+
tryUpsertMany(request: Array<SourceRepo>, options?: IRepoOptions): Promise<BatchResult<SourceRepo>>;
|
|
2064
|
+
upsertMany(request: Array<SourceRepo>, options?: IThrowingRepoOptions): Promise<SourceRepo[]>;
|
|
2065
|
+
/** Saves the input as a new SourceRepo, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
2066
|
+
tryUpsert(request: SourceRepo, options?: IRepoOptions): Promise<SingleResult<SourceRepo>>;
|
|
2067
|
+
upsert(request: SourceRepo, options?: IThrowingRepoOptions): Promise<SourceRepo>;
|
|
1424
2068
|
}
|
|
1425
2069
|
import { Subscription, SubscriptionCriteria } from "../contracts";
|
|
1426
2070
|
declare class SubscriptionCruds {
|
|
@@ -1453,9 +2097,21 @@ declare class SubscriptionCruds {
|
|
|
1453
2097
|
/** Deletes the existing Subscription. */
|
|
1454
2098
|
tryDelete(request: IdSpecFor<Subscription>, options?: IRepoOptions): Promise<SingleResult<Subscription>>;
|
|
1455
2099
|
delete(request: IdSpecFor<Subscription>, options?: IThrowingRepoOptions): Promise<Subscription>;
|
|
2100
|
+
/** Overwrites the given properties of the existing Subscription. */
|
|
2101
|
+
tryUpdatePartial(request: Subscription, options?: IRepoOptions): Promise<SingleResult<PartialWithId<Subscription>>>;
|
|
2102
|
+
updatePartial(request: Subscription, options?: IThrowingRepoOptions): Promise<PartialWithId<Subscription>>;
|
|
1456
2103
|
/** Saves the input as a new Subscription. */
|
|
1457
2104
|
tryCreate(request: Subscription, options?: IRepoOptions): Promise<SingleResult<Subscription>>;
|
|
1458
2105
|
create(request: Subscription, options?: IThrowingRepoOptions): Promise<Subscription>;
|
|
2106
|
+
/** Overwrites the given properties for each existing Subscription. */
|
|
2107
|
+
tryUpdatePartialMany(request: Array<Subscription>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<Subscription>>>;
|
|
2108
|
+
updatePartialMany(request: Array<Subscription>, options?: IThrowingRepoOptions): Promise<PartialWithId<Subscription>[]>;
|
|
2109
|
+
/** Saves each given input as a new Subscription, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
2110
|
+
tryUpsertMany(request: Array<Subscription>, options?: IRepoOptions): Promise<BatchResult<Subscription>>;
|
|
2111
|
+
upsertMany(request: Array<Subscription>, options?: IThrowingRepoOptions): Promise<Subscription[]>;
|
|
2112
|
+
/** Saves the input as a new Subscription, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
2113
|
+
tryUpsert(request: Subscription, options?: IRepoOptions): Promise<SingleResult<Subscription>>;
|
|
2114
|
+
upsert(request: Subscription, options?: IThrowingRepoOptions): Promise<Subscription>;
|
|
1459
2115
|
}
|
|
1460
2116
|
import { Tag, TagCriteria } from "../contracts";
|
|
1461
2117
|
declare class TagCruds {
|
|
@@ -1488,9 +2144,21 @@ declare class TagCruds {
|
|
|
1488
2144
|
/** Deletes the existing Tag. */
|
|
1489
2145
|
tryDelete(request: IdSpecFor<Tag>, options?: IRepoOptions): Promise<SingleResult<Tag>>;
|
|
1490
2146
|
delete(request: IdSpecFor<Tag>, options?: IThrowingRepoOptions): Promise<Tag>;
|
|
2147
|
+
/** Overwrites the given properties of the existing Tag. */
|
|
2148
|
+
tryUpdatePartial(request: Tag, options?: IRepoOptions): Promise<SingleResult<PartialWithId<Tag>>>;
|
|
2149
|
+
updatePartial(request: Tag, options?: IThrowingRepoOptions): Promise<PartialWithId<Tag>>;
|
|
1491
2150
|
/** Saves the input as a new Tag. */
|
|
1492
2151
|
tryCreate(request: Tag, options?: IRepoOptions): Promise<SingleResult<Tag>>;
|
|
1493
2152
|
create(request: Tag, options?: IThrowingRepoOptions): Promise<Tag>;
|
|
2153
|
+
/** Overwrites the given properties for each existing Tag. */
|
|
2154
|
+
tryUpdatePartialMany(request: Array<Tag>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<Tag>>>;
|
|
2155
|
+
updatePartialMany(request: Array<Tag>, options?: IThrowingRepoOptions): Promise<PartialWithId<Tag>[]>;
|
|
2156
|
+
/** Saves each given input as a new Tag, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
2157
|
+
tryUpsertMany(request: Array<Tag>, options?: IRepoOptions): Promise<BatchResult<Tag>>;
|
|
2158
|
+
upsertMany(request: Array<Tag>, options?: IThrowingRepoOptions): Promise<Tag[]>;
|
|
2159
|
+
/** Saves the input as a new Tag, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
2160
|
+
tryUpsert(request: Tag, options?: IRepoOptions): Promise<SingleResult<Tag>>;
|
|
2161
|
+
upsert(request: Tag, options?: IThrowingRepoOptions): Promise<Tag>;
|
|
1494
2162
|
}
|
|
1495
2163
|
import { CodiacTenant, CodiacTenantCriteria } from "../contracts";
|
|
1496
2164
|
declare class CodiacTenantCruds {
|
|
@@ -1523,9 +2191,21 @@ declare class CodiacTenantCruds {
|
|
|
1523
2191
|
/** Deletes the existing CodiacTenant. */
|
|
1524
2192
|
tryDelete(request: IdSpecFor<CodiacTenant>, options?: IRepoOptions): Promise<SingleResult<CodiacTenant>>;
|
|
1525
2193
|
delete(request: IdSpecFor<CodiacTenant>, options?: IThrowingRepoOptions): Promise<CodiacTenant>;
|
|
2194
|
+
/** Overwrites the given properties of the existing CodiacTenant. */
|
|
2195
|
+
tryUpdatePartial(request: CodiacTenant, options?: IRepoOptions): Promise<SingleResult<PartialWithId<CodiacTenant>>>;
|
|
2196
|
+
updatePartial(request: CodiacTenant, options?: IThrowingRepoOptions): Promise<PartialWithId<CodiacTenant>>;
|
|
1526
2197
|
/** Saves the input as a new CodiacTenant. */
|
|
1527
2198
|
tryCreate(request: CodiacTenant, options?: IRepoOptions): Promise<SingleResult<CodiacTenant>>;
|
|
1528
2199
|
create(request: CodiacTenant, options?: IThrowingRepoOptions): Promise<CodiacTenant>;
|
|
2200
|
+
/** Overwrites the given properties for each existing CodiacTenant. */
|
|
2201
|
+
tryUpdatePartialMany(request: Array<CodiacTenant>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<CodiacTenant>>>;
|
|
2202
|
+
updatePartialMany(request: Array<CodiacTenant>, options?: IThrowingRepoOptions): Promise<PartialWithId<CodiacTenant>[]>;
|
|
2203
|
+
/** Saves each given input as a new CodiacTenant, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
2204
|
+
tryUpsertMany(request: Array<CodiacTenant>, options?: IRepoOptions): Promise<BatchResult<CodiacTenant>>;
|
|
2205
|
+
upsertMany(request: Array<CodiacTenant>, options?: IThrowingRepoOptions): Promise<CodiacTenant[]>;
|
|
2206
|
+
/** Saves the input as a new CodiacTenant, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
2207
|
+
tryUpsert(request: CodiacTenant, options?: IRepoOptions): Promise<SingleResult<CodiacTenant>>;
|
|
2208
|
+
upsert(request: CodiacTenant, options?: IThrowingRepoOptions): Promise<CodiacTenant>;
|
|
1529
2209
|
}
|
|
1530
2210
|
import { VersionConfig, VersionConfigCriteria } from "../contracts";
|
|
1531
2211
|
declare class VersionConfigCruds {
|
|
@@ -1558,9 +2238,21 @@ declare class VersionConfigCruds {
|
|
|
1558
2238
|
/** Deletes the existing VersionConfig. */
|
|
1559
2239
|
tryDelete(request: IdSpecFor<VersionConfig>, options?: IRepoOptions): Promise<SingleResult<VersionConfig>>;
|
|
1560
2240
|
delete(request: IdSpecFor<VersionConfig>, options?: IThrowingRepoOptions): Promise<VersionConfig>;
|
|
2241
|
+
/** Overwrites the given properties of the existing VersionConfig. */
|
|
2242
|
+
tryUpdatePartial(request: VersionConfig, options?: IRepoOptions): Promise<SingleResult<PartialWithId<VersionConfig>>>;
|
|
2243
|
+
updatePartial(request: VersionConfig, options?: IThrowingRepoOptions): Promise<PartialWithId<VersionConfig>>;
|
|
1561
2244
|
/** Saves the input as a new VersionConfig. */
|
|
1562
2245
|
tryCreate(request: VersionConfig, options?: IRepoOptions): Promise<SingleResult<VersionConfig>>;
|
|
1563
2246
|
create(request: VersionConfig, options?: IThrowingRepoOptions): Promise<VersionConfig>;
|
|
2247
|
+
/** Overwrites the given properties for each existing VersionConfig. */
|
|
2248
|
+
tryUpdatePartialMany(request: Array<VersionConfig>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<VersionConfig>>>;
|
|
2249
|
+
updatePartialMany(request: Array<VersionConfig>, options?: IThrowingRepoOptions): Promise<PartialWithId<VersionConfig>[]>;
|
|
2250
|
+
/** Saves each given input as a new VersionConfig, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
2251
|
+
tryUpsertMany(request: Array<VersionConfig>, options?: IRepoOptions): Promise<BatchResult<VersionConfig>>;
|
|
2252
|
+
upsertMany(request: Array<VersionConfig>, options?: IThrowingRepoOptions): Promise<VersionConfig[]>;
|
|
2253
|
+
/** Saves the input as a new VersionConfig, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
2254
|
+
tryUpsert(request: VersionConfig, options?: IRepoOptions): Promise<SingleResult<VersionConfig>>;
|
|
2255
|
+
upsert(request: VersionConfig, options?: IThrowingRepoOptions): Promise<VersionConfig>;
|
|
1564
2256
|
}
|
|
1565
2257
|
import { WorkFlowStrategy, WorkFlowStrategyCriteria } from "../contracts";
|
|
1566
2258
|
declare class WorkFlowStrategyCruds {
|
|
@@ -1593,9 +2285,21 @@ declare class WorkFlowStrategyCruds {
|
|
|
1593
2285
|
/** Deletes the existing WorkFlowStrategy. */
|
|
1594
2286
|
tryDelete(request: IdSpecFor<WorkFlowStrategy>, options?: IRepoOptions): Promise<SingleResult<WorkFlowStrategy>>;
|
|
1595
2287
|
delete(request: IdSpecFor<WorkFlowStrategy>, options?: IThrowingRepoOptions): Promise<WorkFlowStrategy>;
|
|
2288
|
+
/** Overwrites the given properties of the existing WorkFlowStrategy. */
|
|
2289
|
+
tryUpdatePartial(request: WorkFlowStrategy, options?: IRepoOptions): Promise<SingleResult<PartialWithId<WorkFlowStrategy>>>;
|
|
2290
|
+
updatePartial(request: WorkFlowStrategy, options?: IThrowingRepoOptions): Promise<PartialWithId<WorkFlowStrategy>>;
|
|
1596
2291
|
/** Saves the input as a new WorkFlowStrategy. */
|
|
1597
2292
|
tryCreate(request: WorkFlowStrategy, options?: IRepoOptions): Promise<SingleResult<WorkFlowStrategy>>;
|
|
1598
2293
|
create(request: WorkFlowStrategy, options?: IThrowingRepoOptions): Promise<WorkFlowStrategy>;
|
|
2294
|
+
/** Overwrites the given properties for each existing WorkFlowStrategy. */
|
|
2295
|
+
tryUpdatePartialMany(request: Array<WorkFlowStrategy>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<WorkFlowStrategy>>>;
|
|
2296
|
+
updatePartialMany(request: Array<WorkFlowStrategy>, options?: IThrowingRepoOptions): Promise<PartialWithId<WorkFlowStrategy>[]>;
|
|
2297
|
+
/** Saves each given input as a new WorkFlowStrategy, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
2298
|
+
tryUpsertMany(request: Array<WorkFlowStrategy>, options?: IRepoOptions): Promise<BatchResult<WorkFlowStrategy>>;
|
|
2299
|
+
upsertMany(request: Array<WorkFlowStrategy>, options?: IThrowingRepoOptions): Promise<WorkFlowStrategy[]>;
|
|
2300
|
+
/** Saves the input as a new WorkFlowStrategy, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
2301
|
+
tryUpsert(request: WorkFlowStrategy, options?: IRepoOptions): Promise<SingleResult<WorkFlowStrategy>>;
|
|
2302
|
+
upsert(request: WorkFlowStrategy, options?: IThrowingRepoOptions): Promise<WorkFlowStrategy>;
|
|
1599
2303
|
}
|
|
1600
2304
|
import { ZombiePeriod, ZombiePeriodCriteria } from "../contracts";
|
|
1601
2305
|
declare class ZombiePeriodCruds {
|
|
@@ -1628,9 +2332,21 @@ declare class ZombiePeriodCruds {
|
|
|
1628
2332
|
/** Deletes the existing ZombiePeriod. */
|
|
1629
2333
|
tryDelete(request: IdSpecFor<ZombiePeriod>, options?: IRepoOptions): Promise<SingleResult<ZombiePeriod>>;
|
|
1630
2334
|
delete(request: IdSpecFor<ZombiePeriod>, options?: IThrowingRepoOptions): Promise<ZombiePeriod>;
|
|
2335
|
+
/** Overwrites the given properties of the existing ZombiePeriod. */
|
|
2336
|
+
tryUpdatePartial(request: ZombiePeriod, options?: IRepoOptions): Promise<SingleResult<PartialWithId<ZombiePeriod>>>;
|
|
2337
|
+
updatePartial(request: ZombiePeriod, options?: IThrowingRepoOptions): Promise<PartialWithId<ZombiePeriod>>;
|
|
1631
2338
|
/** Saves the input as a new ZombiePeriod. */
|
|
1632
2339
|
tryCreate(request: ZombiePeriod, options?: IRepoOptions): Promise<SingleResult<ZombiePeriod>>;
|
|
1633
2340
|
create(request: ZombiePeriod, options?: IThrowingRepoOptions): Promise<ZombiePeriod>;
|
|
2341
|
+
/** Overwrites the given properties for each existing ZombiePeriod. */
|
|
2342
|
+
tryUpdatePartialMany(request: Array<ZombiePeriod>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<ZombiePeriod>>>;
|
|
2343
|
+
updatePartialMany(request: Array<ZombiePeriod>, options?: IThrowingRepoOptions): Promise<PartialWithId<ZombiePeriod>[]>;
|
|
2344
|
+
/** Saves each given input as a new ZombiePeriod, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
2345
|
+
tryUpsertMany(request: Array<ZombiePeriod>, options?: IRepoOptions): Promise<BatchResult<ZombiePeriod>>;
|
|
2346
|
+
upsertMany(request: Array<ZombiePeriod>, options?: IThrowingRepoOptions): Promise<ZombiePeriod[]>;
|
|
2347
|
+
/** Saves the input as a new ZombiePeriod, or updates existing if it already exists. Identity is based either on the existence of a valid id property on the entity submitted or the response from the database (based on unique indexes / primary keys). */
|
|
2348
|
+
tryUpsert(request: ZombiePeriod, options?: IRepoOptions): Promise<SingleResult<ZombiePeriod>>;
|
|
2349
|
+
upsert(request: ZombiePeriod, options?: IThrowingRepoOptions): Promise<ZombiePeriod>;
|
|
1634
2350
|
}
|
|
1635
2351
|
import { CabinetHostNameConfigCriteria, CabinetHostNameConfig, ConfigDefCriteria, ConfigDef, ConfigDocSpecForOne, ConfigDoc, CabinetConfigStateRequest, CabinetConfigState, ReadyStateRequest, ApiReadyState, FileRequest, Buffer, RootMapCriteria, RootMap, ScopedConfigCriteria, ScopedConfig, CabinetScopesCriteria, EnterpriseScope, VersionGetsertRequest } from "../contracts";
|
|
1636
2352
|
declare class OtherOperations {
|