@codiac.io/codiac-cli 1.2.261 → 1.2.263
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 +1 -1
- package/dist/apis/codiac-api/common/api-client-base.js.map +1 -1
- package/dist/apis/codiac-api/gen/client.d.ts +1477 -1473
- package/dist/apis/codiac-api/gen/client.js +5554 -5528
- package/dist/apis/codiac-api/gen/client.js.map +1 -1
- package/dist/apis/codiac-api/gen/contracts.d.ts +10 -2
- package/dist/apis/codiac-api/gen/contracts.js +12 -1
- package/dist/apis/codiac-api/gen/contracts.js.map +1 -1
- package/dist/commands/asset/probe/delete.d.ts +39 -0
- package/dist/commands/asset/probe/delete.js +282 -0
- package/dist/commands/asset/probe/delete.js.map +1 -0
- package/dist/commands/asset/probe/list.d.ts +48 -0
- package/dist/commands/asset/probe/list.js +206 -0
- package/dist/commands/asset/probe/list.js.map +1 -0
- package/dist/commands/asset/view.d.ts +1 -1
- package/dist/commands/environment/cluster/attach.d.ts +43 -0
- package/dist/commands/environment/cluster/attach.js +214 -0
- package/dist/commands/environment/cluster/attach.js.map +1 -0
- package/dist/commands/environment/cluster/detach.d.ts +38 -0
- package/dist/commands/environment/cluster/detach.js +193 -0
- package/dist/commands/environment/cluster/detach.js.map +1 -0
- package/dist/commands/environment/list.js +2 -2
- package/dist/commands/environment/list.js.map +1 -1
- package/dist/commands/filestore/capture.js +2 -2
- package/dist/commands/filestore/capture.js.map +1 -1
- package/dist/commands/filestore/forget.d.ts +29 -0
- package/dist/commands/filestore/forget.js +137 -0
- package/dist/commands/filestore/forget.js.map +1 -0
- package/dist/commands/filestore/list.d.ts +41 -0
- package/dist/commands/filestore/list.js +169 -0
- package/dist/commands/filestore/list.js.map +1 -0
- package/dist/commands/host/delete.js +2 -1
- package/dist/commands/host/delete.js.map +1 -1
- package/dist/commands/host/list.js +5 -1
- package/dist/commands/host/list.js.map +1 -1
- package/dist/commands/secretStore/list.d.ts +44 -0
- package/dist/commands/secretStore/list.js +183 -0
- package/dist/commands/secretStore/list.js.map +1 -0
- package/dist/commands/tenant/switch.d.ts +1 -1
- package/dist/commands/tenant/switch.js +9 -5
- package/dist/commands/tenant/switch.js.map +1 -1
- package/dist/relay/contracts/index.d.ts +1 -0
- package/dist/relay/contracts/index.js +5 -0
- package/dist/relay/contracts/index.js.map +1 -0
- package/dist/uilogic/cloud-resource-configurators/aws-resource-configurator.d.ts +1 -1
- package/dist/uilogic/cloud-resource-configurators/aws-resource-configurator.js +1 -1
- package/dist/uilogic/cloud-resource-configurators/aws-resource-configurator.js.map +1 -1
- package/dist/uilogic/cloud-resource-configurators/azure-resource-configurator.d.ts +1 -1
- package/dist/uilogic/cloud-resource-configurators/azure-resource-configurator.js +1 -1
- package/dist/uilogic/cloud-resource-configurators/azure-resource-configurator.js.map +1 -1
- package/dist/uilogic/i-secret-store-configurator.d.ts +1 -1
- package/dist/uilogic/rootmap-ui-utils.d.ts +35 -1
- package/dist/uilogic/rootmap-ui-utils.js +146 -4
- package/dist/uilogic/rootmap-ui-utils.js.map +1 -1
- package/dist/uilogic/tenant-contextualizer.d.ts +1 -1
- package/dist/uilogic/tenant-contextualizer.js.map +1 -1
- package/oclif.manifest.json +646 -20
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { IRepoOptions, IBetterLogger } from "@codiac.io/codiac-common";
|
|
2
2
|
import { Result, ListResult, BatchResult, SingleResult, PatchSpecForOne, PatchSpecForMany, IdSpecFor } from "@codiac.io/codiac-common/contracts";
|
|
3
|
-
import { UpdatePartialWhereRequest } from "./contracts";
|
|
3
|
+
import { PartialWithId, UpdatePartialWhereRequest } from "./contracts";
|
|
4
4
|
import { ApiClientBase } from "../common/api-client-base";
|
|
5
5
|
import { ApiUserCreds } from "../common/api-user-creds";
|
|
6
6
|
import { CodiacClientConfig } from "./client-config";
|
|
@@ -28,106 +28,106 @@ export declare class CodiacClient extends ApiClientBase {
|
|
|
28
28
|
Auth: AuthOperations;
|
|
29
29
|
Call: OtherOperations;
|
|
30
30
|
ActivityBase: ActivityBaseCruds;
|
|
31
|
-
CabinetCreateActivity: CabinetCreateActivityCruds;
|
|
32
|
-
ConfigDeploymentActivity: ConfigDeploymentActivityCruds;
|
|
33
|
-
DeploymentActivity: DeploymentActivityCruds;
|
|
34
|
-
VersionCreateActivity: VersionCreateActivityCruds;
|
|
35
|
-
AssetVersionConfig: AssetVersionConfigCruds;
|
|
36
31
|
Asset: AssetCruds;
|
|
37
|
-
|
|
32
|
+
AssetVersionConfig: AssetVersionConfigCruds;
|
|
38
33
|
AuthRole: AuthRoleCruds;
|
|
39
|
-
CodiacUser: CodiacUserCruds;
|
|
40
|
-
BuildPipeline: BuildPipelineCruds;
|
|
41
34
|
Build: BuildCruds;
|
|
35
|
+
BuildPipeline: BuildPipelineCruds;
|
|
42
36
|
Cabinet: CabinetCruds;
|
|
37
|
+
CabinetCreateActivity: CabinetCreateActivityCruds;
|
|
38
|
+
Cluster: ClusterCruds;
|
|
43
39
|
ClusterDef: ClusterDefCruds;
|
|
44
40
|
ClusterGrant: ClusterGrantCruds;
|
|
45
|
-
|
|
41
|
+
CodiacTenant: CodiacTenantCruds;
|
|
42
|
+
CodiacUser: CodiacUserCruds;
|
|
46
43
|
Comment: CommentCruds;
|
|
47
44
|
ConfigChange: ConfigChangeCruds;
|
|
45
|
+
ConfigDeploymentActivity: ConfigDeploymentActivityCruds;
|
|
48
46
|
ContainerFootprint: ContainerFootprintCruds;
|
|
49
47
|
CspTenantProfile: CspTenantProfileCruds;
|
|
50
48
|
DeployAttempt: DeployAttemptCruds;
|
|
51
49
|
DeployPipeline: DeployPipelineCruds;
|
|
52
50
|
Deployment: DeploymentCruds;
|
|
51
|
+
DeploymentActivity: DeploymentActivityCruds;
|
|
52
|
+
Enterprise: EnterpriseCruds;
|
|
53
53
|
EnterpriseRunState: EnterpriseRunStateCruds;
|
|
54
54
|
EnterpriseVersionConfig: EnterpriseVersionConfigCruds;
|
|
55
|
-
|
|
55
|
+
EntityAcl: EntityAclCruds;
|
|
56
56
|
Environment: EnvironmentCruds;
|
|
57
57
|
FileStoreDef: FileStoreDefCruds;
|
|
58
|
-
ScopedHostNameConfig: ScopedHostNameConfigCruds;
|
|
59
|
-
ImageRegistry: ImageRegistryCruds;
|
|
60
58
|
Image: ImageCruds;
|
|
61
|
-
|
|
59
|
+
ImageRegistry: ImageRegistryCruds;
|
|
62
60
|
Kit: KitCruds;
|
|
63
61
|
KvpStoreDef: KvpStoreDefCruds;
|
|
64
62
|
Label: LabelCruds;
|
|
65
63
|
NodePoolDef: NodePoolDefCruds;
|
|
66
64
|
Probe: ProbeCruds;
|
|
67
|
-
ProductVersionConfig: ProductVersionConfigCruds;
|
|
68
65
|
Product: ProductCruds;
|
|
66
|
+
ProductVersionConfig: ProductVersionConfigCruds;
|
|
67
|
+
ScopedHostNameConfig: ScopedHostNameConfigCruds;
|
|
69
68
|
ScopedSetting: ScopedSettingCruds;
|
|
69
|
+
SetupJournal: SetupJournalCruds;
|
|
70
70
|
Snapshot: SnapshotCruds;
|
|
71
71
|
SourceRepo: SourceRepoCruds;
|
|
72
72
|
Subscription: SubscriptionCruds;
|
|
73
73
|
Tag: TagCruds;
|
|
74
|
-
CodiacTenant: CodiacTenantCruds;
|
|
75
74
|
VersionConfig: VersionConfigCruds;
|
|
75
|
+
VersionCreateActivity: VersionCreateActivityCruds;
|
|
76
76
|
WorkFlowStrategy: WorkFlowStrategyCruds;
|
|
77
77
|
ZombiePeriod: ZombiePeriodCruds;
|
|
78
78
|
}
|
|
79
|
-
import {
|
|
79
|
+
import { AddTenantUserRequest, AuthRole, AuthRoleCriteria, AuthTenant, AuthenticationRequest, ChangePasswordRequest, CodiacUser, CodiacUserCriteria, CodiacUserPatch, EntityAcl, EntityAclCriteria, MyTenantRequest, RefreshTokenRequest, ResetPasswordRequest, RoleAssignmentRequest, SubscriptionStatus, SwitchTenantRequest, TenantRegistrationRequest, TenantStatusChange, TenantSubscriptionCancel, TenantSubscriptionUpdate, TenantUser, WhoAmIRequest } from "../contracts";
|
|
80
80
|
declare class AuthOperations {
|
|
81
81
|
private core;
|
|
82
82
|
protected logger: IBetterLogger;
|
|
83
83
|
constructor(core: ApiClientBase, logger: IBetterLogger);
|
|
84
|
+
RoleCreate(request: AuthRole, options?: IRepoOptions): Promise<SingleResult<AuthRole>>;
|
|
85
|
+
RoleCreateMany(request: Array<AuthRole>, options?: IRepoOptions): Promise<BatchResult<AuthRole>>;
|
|
86
|
+
RoleDelete(request: IdSpecFor<AuthRole>, options?: IRepoOptions): Promise<SingleResult<AuthRole>>;
|
|
87
|
+
RoleDeleteWhere(request: AuthRoleCriteria, options?: IRepoOptions): Promise<BatchResult<AuthRole>>;
|
|
88
|
+
RoleGet(request: IdSpecFor<AuthRole>, options?: IRepoOptions): Promise<SingleResult<AuthRole>>;
|
|
89
|
+
RoleList(request: AuthRoleCriteria, options?: IRepoOptions): Promise<ListResult<AuthRole>>;
|
|
90
|
+
RolePatch(request: PatchSpecForOne<AuthRole>, options?: IRepoOptions): Promise<SingleResult<AuthRole>>;
|
|
91
|
+
RolePatchWhere(request: PatchSpecForMany<AuthRole, AuthRoleCriteria>, options?: IRepoOptions): Promise<BatchResult<AuthRole>>;
|
|
92
|
+
RoleUpdate(request: AuthRole, options?: IRepoOptions): Promise<SingleResult<AuthRole>>;
|
|
93
|
+
RoleUpdateMany(request: Array<AuthRole>, options?: IRepoOptions): Promise<BatchResult<AuthRole>>;
|
|
94
|
+
RoleUpdatePartial(request: AuthRole, options?: IRepoOptions): Promise<SingleResult<PartialWithId<AuthRole>>>;
|
|
95
|
+
RoleUpdatePartialMany(request: Array<AuthRole>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<AuthRole>>>;
|
|
96
|
+
RoleUpdatePartialWhere(request: UpdatePartialWhereRequest<AuthRole, AuthRoleCriteria>, options?: IRepoOptions): Promise<BatchResult<AuthRole>>;
|
|
97
|
+
RoleUpsert(request: AuthRole, options?: IRepoOptions): Promise<SingleResult<AuthRole>>;
|
|
98
|
+
RoleUpsertMany(request: Array<AuthRole>, options?: IRepoOptions): Promise<BatchResult<AuthRole>>;
|
|
99
|
+
CodiacUserGet(request: IdSpecFor<CodiacUser>, options?: IRepoOptions): Promise<SingleResult<CodiacUser>>;
|
|
100
|
+
CodiacUserList(request: CodiacUserCriteria, options?: IRepoOptions): Promise<ListResult<CodiacUser>>;
|
|
101
|
+
EntityAclCreate(request: EntityAcl, options?: IRepoOptions): Promise<SingleResult<EntityAcl>>;
|
|
84
102
|
EntityAclCreateMany(request: Array<EntityAcl>, options?: IRepoOptions): Promise<BatchResult<EntityAcl>>;
|
|
85
|
-
|
|
86
|
-
EntityAclUpdateMany(request: Array<EntityAcl>, options?: IRepoOptions): Promise<BatchResult<EntityAcl>>;
|
|
87
|
-
EntityAclPatchWhere(request: PatchSpecForMany<EntityAcl, EntityAclCriteria>, options?: IRepoOptions): Promise<BatchResult<EntityAcl>>;
|
|
103
|
+
EntityAclDelete(request: IdSpecFor<EntityAcl>, options?: IRepoOptions): Promise<SingleResult<EntityAcl>>;
|
|
88
104
|
EntityAclDeleteWhere(request: EntityAclCriteria, options?: IRepoOptions): Promise<BatchResult<EntityAcl>>;
|
|
89
105
|
EntityAclGet(request: IdSpecFor<EntityAcl>, options?: IRepoOptions): Promise<SingleResult<EntityAcl>>;
|
|
90
|
-
|
|
106
|
+
EntityAclList(request: EntityAclCriteria, options?: IRepoOptions): Promise<ListResult<EntityAcl>>;
|
|
91
107
|
EntityAclPatch(request: PatchSpecForOne<EntityAcl>, options?: IRepoOptions): Promise<SingleResult<EntityAcl>>;
|
|
92
|
-
|
|
108
|
+
EntityAclPatchWhere(request: PatchSpecForMany<EntityAcl, EntityAclCriteria>, options?: IRepoOptions): Promise<BatchResult<EntityAcl>>;
|
|
109
|
+
EntityAclUpdate(request: EntityAcl, options?: IRepoOptions): Promise<SingleResult<EntityAcl>>;
|
|
110
|
+
EntityAclUpdateMany(request: Array<EntityAcl>, options?: IRepoOptions): Promise<BatchResult<EntityAcl>>;
|
|
93
111
|
EntityAclUpdatePartial(request: EntityAcl, options?: IRepoOptions): Promise<SingleResult<PartialWithId<EntityAcl>>>;
|
|
94
|
-
EntityAclCreate(request: EntityAcl, options?: IRepoOptions): Promise<SingleResult<EntityAcl>>;
|
|
95
|
-
EntityAclUpdatePartialWhere(request: UpdatePartialWhereRequest<EntityAcl, EntityAclCriteria>, options?: IRepoOptions): Promise<BatchResult<EntityAcl>>;
|
|
96
112
|
EntityAclUpdatePartialMany(request: Array<EntityAcl>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<EntityAcl>>>;
|
|
97
|
-
|
|
113
|
+
EntityAclUpdatePartialWhere(request: UpdatePartialWhereRequest<EntityAcl, EntityAclCriteria>, options?: IRepoOptions): Promise<BatchResult<EntityAcl>>;
|
|
98
114
|
EntityAclUpsert(request: EntityAcl, options?: IRepoOptions): Promise<SingleResult<EntityAcl>>;
|
|
99
|
-
|
|
115
|
+
EntityAclUpsertMany(request: Array<EntityAcl>, options?: IRepoOptions): Promise<BatchResult<EntityAcl>>;
|
|
116
|
+
AddTenantUser(request: AddTenantUserRequest, options?: IRepoOptions): Promise<SingleResult<TenantUser>>;
|
|
117
|
+
ChangePassword(request: ChangePasswordRequest, options?: IRepoOptions): Promise<SingleResult<TenantUser>>;
|
|
118
|
+
ExpelUser(request: IdSpecFor<TenantUser>, options?: IRepoOptions): Promise<SingleResult<TenantUser>>;
|
|
100
119
|
Login(request: AuthenticationRequest, options?: IRepoOptions): Promise<SingleResult<TenantUser>>;
|
|
101
120
|
MyTenant(request: MyTenantRequest, options?: IRepoOptions): Promise<Result>;
|
|
102
|
-
|
|
121
|
+
PatchUser(request: CodiacUserPatch, options?: IRepoOptions): Promise<SingleResult<CodiacUser>>;
|
|
103
122
|
ResetPassword(request: ResetPasswordRequest, options?: IRepoOptions): Promise<SingleResult<TenantUser>>;
|
|
104
|
-
TokenRefresh(request: RefreshTokenRequest, options?: IRepoOptions): Promise<SingleResult<TenantUser>>;
|
|
105
|
-
RoleCreateMany(request: Array<AuthRole>, options?: IRepoOptions): Promise<BatchResult<AuthRole>>;
|
|
106
|
-
RoleList(request: AuthRoleCriteria, options?: IRepoOptions): Promise<ListResult<AuthRole>>;
|
|
107
|
-
RoleUpdateMany(request: Array<AuthRole>, options?: IRepoOptions): Promise<BatchResult<AuthRole>>;
|
|
108
|
-
RolePatchWhere(request: PatchSpecForMany<AuthRole, AuthRoleCriteria>, options?: IRepoOptions): Promise<BatchResult<AuthRole>>;
|
|
109
|
-
RoleDeleteWhere(request: AuthRoleCriteria, options?: IRepoOptions): Promise<BatchResult<AuthRole>>;
|
|
110
|
-
RoleGet(request: IdSpecFor<AuthRole>, options?: IRepoOptions): Promise<SingleResult<AuthRole>>;
|
|
111
|
-
RoleUpdate(request: AuthRole, options?: IRepoOptions): Promise<SingleResult<AuthRole>>;
|
|
112
|
-
RolePatch(request: PatchSpecForOne<AuthRole>, options?: IRepoOptions): Promise<SingleResult<AuthRole>>;
|
|
113
|
-
RoleDelete(request: IdSpecFor<AuthRole>, options?: IRepoOptions): Promise<SingleResult<AuthRole>>;
|
|
114
|
-
RoleUpdatePartial(request: AuthRole, options?: IRepoOptions): Promise<SingleResult<PartialWithId<AuthRole>>>;
|
|
115
123
|
RoleAssignment(request: RoleAssignmentRequest, options?: IRepoOptions): Promise<SingleResult<TenantUser>>;
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
RoleUpdatePartialMany(request: Array<AuthRole>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<AuthRole>>>;
|
|
119
|
-
RoleUpsertMany(request: Array<AuthRole>, options?: IRepoOptions): Promise<BatchResult<AuthRole>>;
|
|
120
|
-
RoleUpsert(request: AuthRole, options?: IRepoOptions): Promise<SingleResult<AuthRole>>;
|
|
124
|
+
SetTenantStatus(request: TenantStatusChange, options?: IRepoOptions): Promise<SingleResult<SubscriptionStatus>>;
|
|
125
|
+
SubscriptionCancel(request: TenantSubscriptionCancel, options?: IRepoOptions): Promise<SingleResult<AuthTenant>>;
|
|
121
126
|
SubscriptionUpdate(request: TenantSubscriptionUpdate, options?: IRepoOptions): Promise<SingleResult<AuthTenant>>;
|
|
122
127
|
SwitchTenant(request: SwitchTenantRequest, options?: IRepoOptions): Promise<SingleResult<TenantUser>>;
|
|
123
128
|
TenantRegistration(request: TenantRegistrationRequest, options?: IRepoOptions): Promise<SingleResult<AuthTenant>>;
|
|
124
|
-
|
|
125
|
-
ExpelUser(request: IdSpecFor<TenantUser>, options?: IRepoOptions): Promise<SingleResult<TenantUser>>;
|
|
126
|
-
PatchUser(request: CodiacUserPatch, options?: IRepoOptions): Promise<SingleResult<CodiacUser>>;
|
|
127
|
-
CodiacUserGet(request: IdSpecFor<CodiacUser>, options?: IRepoOptions): Promise<SingleResult<CodiacUser>>;
|
|
128
|
-
AddTenantUser(request: AddTenantUserRequest, options?: IRepoOptions): Promise<SingleResult<TenantUser>>;
|
|
129
|
+
TokenRefresh(request: RefreshTokenRequest, options?: IRepoOptions): Promise<SingleResult<TenantUser>>;
|
|
129
130
|
WhoAmI(request: WhoAmIRequest, options?: IRepoOptions): Promise<Result>;
|
|
130
|
-
SetTenantStatus(request: TenantStatusChange, options?: IRepoOptions): Promise<SingleResult<SubscriptionStatus>>;
|
|
131
131
|
/** Determines whether the given token is expired.
|
|
132
132
|
* @param throwOnError throws any encountered errors, including token parsing errors.
|
|
133
133
|
*/
|
|
@@ -138,2386 +138,2390 @@ import { ActivityBase, ActivityCriteriaBase } from "../contracts";
|
|
|
138
138
|
declare class ActivityBaseCruds {
|
|
139
139
|
private core;
|
|
140
140
|
constructor(core: ApiClientBase);
|
|
141
|
-
/**
|
|
142
|
-
|
|
143
|
-
|
|
141
|
+
/** Deletes each existing ActivityBase that satisfies the given criteria. */
|
|
142
|
+
tryDeleteWhere(request: ActivityCriteriaBase, options?: IRepoOptions): Promise<BatchResult<ActivityBase>>;
|
|
143
|
+
deleteWhere(request: ActivityCriteriaBase, options?: IThrowingRepoOptions): Promise<ActivityBase[]>;
|
|
144
144
|
/** Retrieves all the existing ActivityBase that satisfy the given criteria. */
|
|
145
145
|
tryReadMany(request: ActivityCriteriaBase, options?: IRepoOptions): Promise<ListResult<ActivityBase>>;
|
|
146
146
|
readMany(request: ActivityCriteriaBase, options?: IThrowingRepoOptions): Promise<ActivityBase[]>;
|
|
147
|
-
/** Overwrites each existing ActivityBase. */
|
|
148
|
-
tryUpdateMany(request: Array<ActivityBase>, options?: IRepoOptions): Promise<BatchResult<ActivityBase>>;
|
|
149
|
-
updateMany(request: Array<ActivityBase>, options?: IThrowingRepoOptions): Promise<ActivityBase[]>;
|
|
150
147
|
/** Performs the given operations on each existing ActivityBase that satisfies the given criteria. */
|
|
151
148
|
tryPatchWhere(request: PatchSpecForMany<ActivityBase, ActivityCriteriaBase>, options?: IRepoOptions): Promise<BatchResult<ActivityBase>>;
|
|
152
149
|
patchWhere(request: PatchSpecForMany<ActivityBase, ActivityCriteriaBase>, options?: IThrowingRepoOptions): Promise<ActivityBase[]>;
|
|
153
|
-
/**
|
|
154
|
-
|
|
155
|
-
|
|
150
|
+
/** Saves each given input as a new ActivityBase. */
|
|
151
|
+
tryCreateMany(request: Array<ActivityBase>, options?: IRepoOptions): Promise<BatchResult<ActivityBase>>;
|
|
152
|
+
createMany(request: Array<ActivityBase>, options?: IThrowingRepoOptions): Promise<ActivityBase[]>;
|
|
153
|
+
/** Overwrites each existing ActivityBase. */
|
|
154
|
+
tryUpdateMany(request: Array<ActivityBase>, options?: IRepoOptions): Promise<BatchResult<ActivityBase>>;
|
|
155
|
+
updateMany(request: Array<ActivityBase>, options?: IThrowingRepoOptions): Promise<ActivityBase[]>;
|
|
156
|
+
/** Deletes the existing ActivityBase. */
|
|
157
|
+
tryDelete(request: IdSpecFor<ActivityBase>, options?: IRepoOptions): Promise<SingleResult<ActivityBase>>;
|
|
158
|
+
delete(request: IdSpecFor<ActivityBase>, options?: IThrowingRepoOptions): Promise<ActivityBase>;
|
|
156
159
|
/** Retrieves the single, uniquely identified ActivityBase. */
|
|
157
160
|
tryRead(request: IdSpecFor<ActivityBase>, options?: IRepoOptions): Promise<SingleResult<ActivityBase>>;
|
|
158
161
|
read(request: IdSpecFor<ActivityBase>, options?: IThrowingRepoOptions): Promise<ActivityBase>;
|
|
159
|
-
/** Overwrites the existing ActivityBase. */
|
|
160
|
-
tryUpdate(request: ActivityBase, options?: IRepoOptions): Promise<SingleResult<ActivityBase>>;
|
|
161
|
-
update(request: ActivityBase, options?: IThrowingRepoOptions): Promise<ActivityBase>;
|
|
162
162
|
/** Performs the given operations on the existing ActivityBase. */
|
|
163
163
|
tryPatch(request: PatchSpecForOne<ActivityBase>, options?: IRepoOptions): Promise<SingleResult<ActivityBase>>;
|
|
164
164
|
patch(request: PatchSpecForOne<ActivityBase>, options?: IThrowingRepoOptions): Promise<ActivityBase>;
|
|
165
|
-
/**
|
|
166
|
-
|
|
167
|
-
|
|
165
|
+
/** Overwrites the existing ActivityBase. */
|
|
166
|
+
tryUpdate(request: ActivityBase, options?: IRepoOptions): Promise<SingleResult<ActivityBase>>;
|
|
167
|
+
update(request: ActivityBase, options?: IThrowingRepoOptions): Promise<ActivityBase>;
|
|
168
168
|
/** Overwrites the given properties of the existing ActivityBase. */
|
|
169
169
|
tryUpdatePartial(request: ActivityBase, options?: IRepoOptions): Promise<SingleResult<PartialWithId<ActivityBase>>>;
|
|
170
170
|
updatePartial(request: ActivityBase, options?: IThrowingRepoOptions): Promise<PartialWithId<ActivityBase>>;
|
|
171
171
|
/** Saves the input as a new ActivityBase. */
|
|
172
172
|
tryCreate(request: ActivityBase, options?: IRepoOptions): Promise<SingleResult<ActivityBase>>;
|
|
173
173
|
create(request: ActivityBase, options?: IThrowingRepoOptions): Promise<ActivityBase>;
|
|
174
|
-
/** Performs the given operation on each existing ActivityBase that satisfies the given criteria. */
|
|
175
|
-
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<ActivityBase, ActivityCriteriaBase>, options?: IRepoOptions): Promise<BatchResult<ActivityBase>>;
|
|
176
|
-
UpdatePartialWhere(request: UpdatePartialWhereRequest<ActivityBase, ActivityCriteriaBase>, options?: IThrowingRepoOptions): Promise<ActivityBase[]>;
|
|
177
174
|
/** Overwrites the given properties for each existing ActivityBase. */
|
|
178
175
|
tryUpdatePartialMany(request: Array<ActivityBase>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<ActivityBase>>>;
|
|
179
176
|
updatePartialMany(request: Array<ActivityBase>, options?: IThrowingRepoOptions): Promise<PartialWithId<ActivityBase>[]>;
|
|
180
|
-
/**
|
|
181
|
-
|
|
182
|
-
|
|
177
|
+
/** Performs the given operation on each existing ActivityBase that satisfies the given criteria. */
|
|
178
|
+
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<ActivityBase, ActivityCriteriaBase>, options?: IRepoOptions): Promise<BatchResult<ActivityBase>>;
|
|
179
|
+
UpdatePartialWhere(request: UpdatePartialWhereRequest<ActivityBase, ActivityCriteriaBase>, options?: IThrowingRepoOptions): Promise<ActivityBase[]>;
|
|
183
180
|
/** 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). */
|
|
184
181
|
tryUpsert(request: ActivityBase, options?: IRepoOptions): Promise<SingleResult<ActivityBase>>;
|
|
185
182
|
upsert(request: ActivityBase, options?: IThrowingRepoOptions): Promise<ActivityBase>;
|
|
183
|
+
/** 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). */
|
|
184
|
+
tryUpsertMany(request: Array<ActivityBase>, options?: IRepoOptions): Promise<BatchResult<ActivityBase>>;
|
|
185
|
+
upsertMany(request: Array<ActivityBase>, options?: IThrowingRepoOptions): Promise<ActivityBase[]>;
|
|
186
186
|
}
|
|
187
|
-
import {
|
|
188
|
-
declare class
|
|
187
|
+
import { Asset, AssetCriteria } from "../contracts";
|
|
188
|
+
declare class AssetCruds {
|
|
189
189
|
private core;
|
|
190
190
|
constructor(core: ApiClientBase);
|
|
191
|
-
/**
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
/** Retrieves all the existing
|
|
195
|
-
tryReadMany(request:
|
|
196
|
-
readMany(request:
|
|
197
|
-
/**
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
/**
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
/**
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
/**
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
/**
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
/** Performs the given operations on the existing
|
|
213
|
-
tryPatch(request: PatchSpecForOne<
|
|
214
|
-
patch(request: PatchSpecForOne<
|
|
215
|
-
/**
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
/** Overwrites the given properties of the existing
|
|
219
|
-
tryUpdatePartial(request:
|
|
220
|
-
updatePartial(request:
|
|
221
|
-
/** Saves the input as a new
|
|
222
|
-
tryCreate(request:
|
|
223
|
-
create(request:
|
|
224
|
-
/**
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
/**
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
/** Saves
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
/** Saves
|
|
234
|
-
|
|
235
|
-
|
|
191
|
+
/** Deletes each existing Asset that satisfies the given criteria. */
|
|
192
|
+
tryDeleteWhere(request: AssetCriteria, options?: IRepoOptions): Promise<BatchResult<Asset>>;
|
|
193
|
+
deleteWhere(request: AssetCriteria, options?: IThrowingRepoOptions): Promise<Asset[]>;
|
|
194
|
+
/** Retrieves all the existing Asset that satisfy the given criteria. */
|
|
195
|
+
tryReadMany(request: AssetCriteria, options?: IRepoOptions): Promise<ListResult<Asset>>;
|
|
196
|
+
readMany(request: AssetCriteria, options?: IThrowingRepoOptions): Promise<Asset[]>;
|
|
197
|
+
/** Performs the given operations on each existing Asset that satisfies the given criteria. */
|
|
198
|
+
tryPatchWhere(request: PatchSpecForMany<Asset, AssetCriteria>, options?: IRepoOptions): Promise<BatchResult<Asset>>;
|
|
199
|
+
patchWhere(request: PatchSpecForMany<Asset, AssetCriteria>, options?: IThrowingRepoOptions): Promise<Asset[]>;
|
|
200
|
+
/** Saves each given input as a new Asset. */
|
|
201
|
+
tryCreateMany(request: Array<Asset>, options?: IRepoOptions): Promise<BatchResult<Asset>>;
|
|
202
|
+
createMany(request: Array<Asset>, options?: IThrowingRepoOptions): Promise<Asset[]>;
|
|
203
|
+
/** Overwrites each existing Asset. */
|
|
204
|
+
tryUpdateMany(request: Array<Asset>, options?: IRepoOptions): Promise<BatchResult<Asset>>;
|
|
205
|
+
updateMany(request: Array<Asset>, options?: IThrowingRepoOptions): Promise<Asset[]>;
|
|
206
|
+
/** Deletes the existing Asset. */
|
|
207
|
+
tryDelete(request: IdSpecFor<Asset>, options?: IRepoOptions): Promise<SingleResult<Asset>>;
|
|
208
|
+
delete(request: IdSpecFor<Asset>, options?: IThrowingRepoOptions): Promise<Asset>;
|
|
209
|
+
/** Retrieves the single, uniquely identified Asset. */
|
|
210
|
+
tryRead(request: IdSpecFor<Asset>, options?: IRepoOptions): Promise<SingleResult<Asset>>;
|
|
211
|
+
read(request: IdSpecFor<Asset>, options?: IThrowingRepoOptions): Promise<Asset>;
|
|
212
|
+
/** Performs the given operations on the existing Asset. */
|
|
213
|
+
tryPatch(request: PatchSpecForOne<Asset>, options?: IRepoOptions): Promise<SingleResult<Asset>>;
|
|
214
|
+
patch(request: PatchSpecForOne<Asset>, options?: IThrowingRepoOptions): Promise<Asset>;
|
|
215
|
+
/** Overwrites the existing Asset. */
|
|
216
|
+
tryUpdate(request: Asset, options?: IRepoOptions): Promise<SingleResult<Asset>>;
|
|
217
|
+
update(request: Asset, options?: IThrowingRepoOptions): Promise<Asset>;
|
|
218
|
+
/** Overwrites the given properties of the existing Asset. */
|
|
219
|
+
tryUpdatePartial(request: Asset, options?: IRepoOptions): Promise<SingleResult<PartialWithId<Asset>>>;
|
|
220
|
+
updatePartial(request: Asset, options?: IThrowingRepoOptions): Promise<PartialWithId<Asset>>;
|
|
221
|
+
/** Saves the input as a new Asset. */
|
|
222
|
+
tryCreate(request: Asset, options?: IRepoOptions): Promise<SingleResult<Asset>>;
|
|
223
|
+
create(request: Asset, options?: IThrowingRepoOptions): Promise<Asset>;
|
|
224
|
+
/** Overwrites the given properties for each existing Asset. */
|
|
225
|
+
tryUpdatePartialMany(request: Array<Asset>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<Asset>>>;
|
|
226
|
+
updatePartialMany(request: Array<Asset>, options?: IThrowingRepoOptions): Promise<PartialWithId<Asset>[]>;
|
|
227
|
+
/** Performs the given operation on each existing Asset that satisfies the given criteria. */
|
|
228
|
+
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<Asset, AssetCriteria>, options?: IRepoOptions): Promise<BatchResult<Asset>>;
|
|
229
|
+
UpdatePartialWhere(request: UpdatePartialWhereRequest<Asset, AssetCriteria>, options?: IThrowingRepoOptions): Promise<Asset[]>;
|
|
230
|
+
/** 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). */
|
|
231
|
+
tryUpsert(request: Asset, options?: IRepoOptions): Promise<SingleResult<Asset>>;
|
|
232
|
+
upsert(request: Asset, options?: IThrowingRepoOptions): Promise<Asset>;
|
|
233
|
+
/** 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). */
|
|
234
|
+
tryUpsertMany(request: Array<Asset>, options?: IRepoOptions): Promise<BatchResult<Asset>>;
|
|
235
|
+
upsertMany(request: Array<Asset>, options?: IThrowingRepoOptions): Promise<Asset[]>;
|
|
236
236
|
}
|
|
237
|
-
import {
|
|
238
|
-
declare class
|
|
237
|
+
import { AssetVersionConfig, AssetVersionConfigCriteria } from "../contracts";
|
|
238
|
+
declare class AssetVersionConfigCruds {
|
|
239
239
|
private core;
|
|
240
240
|
constructor(core: ApiClientBase);
|
|
241
|
-
/**
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
/** Retrieves all the existing ConfigDeploymentActivity that satisfy the given criteria. */
|
|
245
|
-
tryReadMany(request: ConfigDeploymentActivityCriteria, options?: IRepoOptions): Promise<ListResult<ConfigDeploymentActivity>>;
|
|
246
|
-
readMany(request: ConfigDeploymentActivityCriteria, options?: IThrowingRepoOptions): Promise<ConfigDeploymentActivity[]>;
|
|
247
|
-
/** Overwrites each existing ConfigDeploymentActivity. */
|
|
248
|
-
tryUpdateMany(request: Array<ConfigDeploymentActivity>, options?: IRepoOptions): Promise<BatchResult<ConfigDeploymentActivity>>;
|
|
249
|
-
updateMany(request: Array<ConfigDeploymentActivity>, options?: IThrowingRepoOptions): Promise<ConfigDeploymentActivity[]>;
|
|
250
|
-
/** Performs the given operations on each existing ConfigDeploymentActivity that satisfies the given criteria. */
|
|
251
|
-
tryPatchWhere(request: PatchSpecForMany<ConfigDeploymentActivity, ConfigDeploymentActivityCriteria>, options?: IRepoOptions): Promise<BatchResult<ConfigDeploymentActivity>>;
|
|
252
|
-
patchWhere(request: PatchSpecForMany<ConfigDeploymentActivity, ConfigDeploymentActivityCriteria>, options?: IThrowingRepoOptions): Promise<ConfigDeploymentActivity[]>;
|
|
253
|
-
/** Deletes each existing ConfigDeploymentActivity that satisfies the given criteria. */
|
|
254
|
-
tryDeleteWhere(request: ConfigDeploymentActivityCriteria, options?: IRepoOptions): Promise<BatchResult<ConfigDeploymentActivity>>;
|
|
255
|
-
deleteWhere(request: ConfigDeploymentActivityCriteria, options?: IThrowingRepoOptions): Promise<ConfigDeploymentActivity[]>;
|
|
256
|
-
/** Retrieves the single, uniquely identified ConfigDeploymentActivity. */
|
|
257
|
-
tryRead(request: IdSpecFor<ConfigDeploymentActivity>, options?: IRepoOptions): Promise<SingleResult<ConfigDeploymentActivity>>;
|
|
258
|
-
read(request: IdSpecFor<ConfigDeploymentActivity>, options?: IThrowingRepoOptions): Promise<ConfigDeploymentActivity>;
|
|
259
|
-
/** Overwrites the existing ConfigDeploymentActivity. */
|
|
260
|
-
tryUpdate(request: ConfigDeploymentActivity, options?: IRepoOptions): Promise<SingleResult<ConfigDeploymentActivity>>;
|
|
261
|
-
update(request: ConfigDeploymentActivity, options?: IThrowingRepoOptions): Promise<ConfigDeploymentActivity>;
|
|
262
|
-
/** Performs the given operations on the existing ConfigDeploymentActivity. */
|
|
263
|
-
tryPatch(request: PatchSpecForOne<ConfigDeploymentActivity>, options?: IRepoOptions): Promise<SingleResult<ConfigDeploymentActivity>>;
|
|
264
|
-
patch(request: PatchSpecForOne<ConfigDeploymentActivity>, options?: IThrowingRepoOptions): Promise<ConfigDeploymentActivity>;
|
|
265
|
-
/** Deletes the existing ConfigDeploymentActivity. */
|
|
266
|
-
tryDelete(request: IdSpecFor<ConfigDeploymentActivity>, options?: IRepoOptions): Promise<SingleResult<ConfigDeploymentActivity>>;
|
|
267
|
-
delete(request: IdSpecFor<ConfigDeploymentActivity>, options?: IThrowingRepoOptions): Promise<ConfigDeploymentActivity>;
|
|
268
|
-
/** Overwrites the given properties of the existing ConfigDeploymentActivity. */
|
|
269
|
-
tryUpdatePartial(request: ConfigDeploymentActivity, options?: IRepoOptions): Promise<SingleResult<PartialWithId<ConfigDeploymentActivity>>>;
|
|
270
|
-
updatePartial(request: ConfigDeploymentActivity, options?: IThrowingRepoOptions): Promise<PartialWithId<ConfigDeploymentActivity>>;
|
|
271
|
-
/** Saves the input as a new ConfigDeploymentActivity. */
|
|
272
|
-
tryCreate(request: ConfigDeploymentActivity, options?: IRepoOptions): Promise<SingleResult<ConfigDeploymentActivity>>;
|
|
273
|
-
create(request: ConfigDeploymentActivity, options?: IThrowingRepoOptions): Promise<ConfigDeploymentActivity>;
|
|
274
|
-
/** Performs the given operation on each existing ConfigDeploymentActivity that satisfies the given criteria. */
|
|
275
|
-
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<ConfigDeploymentActivity, ConfigDeploymentActivityCriteria>, options?: IRepoOptions): Promise<BatchResult<ConfigDeploymentActivity>>;
|
|
276
|
-
UpdatePartialWhere(request: UpdatePartialWhereRequest<ConfigDeploymentActivity, ConfigDeploymentActivityCriteria>, options?: IThrowingRepoOptions): Promise<ConfigDeploymentActivity[]>;
|
|
277
|
-
/** Overwrites the given properties for each existing ConfigDeploymentActivity. */
|
|
278
|
-
tryUpdatePartialMany(request: Array<ConfigDeploymentActivity>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<ConfigDeploymentActivity>>>;
|
|
279
|
-
updatePartialMany(request: Array<ConfigDeploymentActivity>, options?: IThrowingRepoOptions): Promise<PartialWithId<ConfigDeploymentActivity>[]>;
|
|
280
|
-
/** 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). */
|
|
281
|
-
tryUpsertMany(request: Array<ConfigDeploymentActivity>, options?: IRepoOptions): Promise<BatchResult<ConfigDeploymentActivity>>;
|
|
282
|
-
upsertMany(request: Array<ConfigDeploymentActivity>, options?: IThrowingRepoOptions): Promise<ConfigDeploymentActivity[]>;
|
|
283
|
-
/** 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). */
|
|
284
|
-
tryUpsert(request: ConfigDeploymentActivity, options?: IRepoOptions): Promise<SingleResult<ConfigDeploymentActivity>>;
|
|
285
|
-
upsert(request: ConfigDeploymentActivity, options?: IThrowingRepoOptions): Promise<ConfigDeploymentActivity>;
|
|
286
|
-
}
|
|
287
|
-
import { DeploymentActivity, DeploymentActivityCriteria } from "../contracts";
|
|
288
|
-
declare class DeploymentActivityCruds {
|
|
289
|
-
private core;
|
|
290
|
-
constructor(core: ApiClientBase);
|
|
291
|
-
/** Saves each given input as a new DeploymentActivity. */
|
|
292
|
-
tryCreateMany(request: Array<DeploymentActivity>, options?: IRepoOptions): Promise<BatchResult<DeploymentActivity>>;
|
|
293
|
-
createMany(request: Array<DeploymentActivity>, options?: IThrowingRepoOptions): Promise<DeploymentActivity[]>;
|
|
294
|
-
/** Retrieves all the existing DeploymentActivity that satisfy the given criteria. */
|
|
295
|
-
tryReadMany(request: DeploymentActivityCriteria, options?: IRepoOptions): Promise<ListResult<DeploymentActivity>>;
|
|
296
|
-
readMany(request: DeploymentActivityCriteria, options?: IThrowingRepoOptions): Promise<DeploymentActivity[]>;
|
|
297
|
-
/** Overwrites each existing DeploymentActivity. */
|
|
298
|
-
tryUpdateMany(request: Array<DeploymentActivity>, options?: IRepoOptions): Promise<BatchResult<DeploymentActivity>>;
|
|
299
|
-
updateMany(request: Array<DeploymentActivity>, options?: IThrowingRepoOptions): Promise<DeploymentActivity[]>;
|
|
300
|
-
/** Performs the given operations on each existing DeploymentActivity that satisfies the given criteria. */
|
|
301
|
-
tryPatchWhere(request: PatchSpecForMany<DeploymentActivity, DeploymentActivityCriteria>, options?: IRepoOptions): Promise<BatchResult<DeploymentActivity>>;
|
|
302
|
-
patchWhere(request: PatchSpecForMany<DeploymentActivity, DeploymentActivityCriteria>, options?: IThrowingRepoOptions): Promise<DeploymentActivity[]>;
|
|
303
|
-
/** Deletes each existing DeploymentActivity that satisfies the given criteria. */
|
|
304
|
-
tryDeleteWhere(request: DeploymentActivityCriteria, options?: IRepoOptions): Promise<BatchResult<DeploymentActivity>>;
|
|
305
|
-
deleteWhere(request: DeploymentActivityCriteria, options?: IThrowingRepoOptions): Promise<DeploymentActivity[]>;
|
|
306
|
-
/** Retrieves the single, uniquely identified DeploymentActivity. */
|
|
307
|
-
tryRead(request: IdSpecFor<DeploymentActivity>, options?: IRepoOptions): Promise<SingleResult<DeploymentActivity>>;
|
|
308
|
-
read(request: IdSpecFor<DeploymentActivity>, options?: IThrowingRepoOptions): Promise<DeploymentActivity>;
|
|
309
|
-
/** Overwrites the existing DeploymentActivity. */
|
|
310
|
-
tryUpdate(request: DeploymentActivity, options?: IRepoOptions): Promise<SingleResult<DeploymentActivity>>;
|
|
311
|
-
update(request: DeploymentActivity, options?: IThrowingRepoOptions): Promise<DeploymentActivity>;
|
|
312
|
-
/** Performs the given operations on the existing DeploymentActivity. */
|
|
313
|
-
tryPatch(request: PatchSpecForOne<DeploymentActivity>, options?: IRepoOptions): Promise<SingleResult<DeploymentActivity>>;
|
|
314
|
-
patch(request: PatchSpecForOne<DeploymentActivity>, options?: IThrowingRepoOptions): Promise<DeploymentActivity>;
|
|
315
|
-
/** Deletes the existing DeploymentActivity. */
|
|
316
|
-
tryDelete(request: IdSpecFor<DeploymentActivity>, options?: IRepoOptions): Promise<SingleResult<DeploymentActivity>>;
|
|
317
|
-
delete(request: IdSpecFor<DeploymentActivity>, options?: IThrowingRepoOptions): Promise<DeploymentActivity>;
|
|
318
|
-
/** Overwrites the given properties of the existing DeploymentActivity. */
|
|
319
|
-
tryUpdatePartial(request: DeploymentActivity, options?: IRepoOptions): Promise<SingleResult<PartialWithId<DeploymentActivity>>>;
|
|
320
|
-
updatePartial(request: DeploymentActivity, options?: IThrowingRepoOptions): Promise<PartialWithId<DeploymentActivity>>;
|
|
321
|
-
/** Saves the input as a new DeploymentActivity. */
|
|
322
|
-
tryCreate(request: DeploymentActivity, options?: IRepoOptions): Promise<SingleResult<DeploymentActivity>>;
|
|
323
|
-
create(request: DeploymentActivity, options?: IThrowingRepoOptions): Promise<DeploymentActivity>;
|
|
324
|
-
/** Performs the given operation on each existing DeploymentActivity that satisfies the given criteria. */
|
|
325
|
-
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<DeploymentActivity, DeploymentActivityCriteria>, options?: IRepoOptions): Promise<BatchResult<DeploymentActivity>>;
|
|
326
|
-
UpdatePartialWhere(request: UpdatePartialWhereRequest<DeploymentActivity, DeploymentActivityCriteria>, options?: IThrowingRepoOptions): Promise<DeploymentActivity[]>;
|
|
327
|
-
/** Overwrites the given properties for each existing DeploymentActivity. */
|
|
328
|
-
tryUpdatePartialMany(request: Array<DeploymentActivity>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<DeploymentActivity>>>;
|
|
329
|
-
updatePartialMany(request: Array<DeploymentActivity>, options?: IThrowingRepoOptions): Promise<PartialWithId<DeploymentActivity>[]>;
|
|
330
|
-
/** 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). */
|
|
331
|
-
tryUpsertMany(request: Array<DeploymentActivity>, options?: IRepoOptions): Promise<BatchResult<DeploymentActivity>>;
|
|
332
|
-
upsertMany(request: Array<DeploymentActivity>, options?: IThrowingRepoOptions): Promise<DeploymentActivity[]>;
|
|
333
|
-
/** 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). */
|
|
334
|
-
tryUpsert(request: DeploymentActivity, options?: IRepoOptions): Promise<SingleResult<DeploymentActivity>>;
|
|
335
|
-
upsert(request: DeploymentActivity, options?: IThrowingRepoOptions): Promise<DeploymentActivity>;
|
|
336
|
-
}
|
|
337
|
-
import { VersionCreateActivity, VersionCreateActivityCriteria } from "../contracts";
|
|
338
|
-
declare class VersionCreateActivityCruds {
|
|
339
|
-
private core;
|
|
340
|
-
constructor(core: ApiClientBase);
|
|
341
|
-
/** Saves each given input as a new VersionCreateActivity. */
|
|
342
|
-
tryCreateMany(request: Array<VersionCreateActivity>, options?: IRepoOptions): Promise<BatchResult<VersionCreateActivity>>;
|
|
343
|
-
createMany(request: Array<VersionCreateActivity>, options?: IThrowingRepoOptions): Promise<VersionCreateActivity[]>;
|
|
344
|
-
/** Retrieves all the existing VersionCreateActivity that satisfy the given criteria. */
|
|
345
|
-
tryReadMany(request: VersionCreateActivityCriteria, options?: IRepoOptions): Promise<ListResult<VersionCreateActivity>>;
|
|
346
|
-
readMany(request: VersionCreateActivityCriteria, options?: IThrowingRepoOptions): Promise<VersionCreateActivity[]>;
|
|
347
|
-
/** Overwrites each existing VersionCreateActivity. */
|
|
348
|
-
tryUpdateMany(request: Array<VersionCreateActivity>, options?: IRepoOptions): Promise<BatchResult<VersionCreateActivity>>;
|
|
349
|
-
updateMany(request: Array<VersionCreateActivity>, options?: IThrowingRepoOptions): Promise<VersionCreateActivity[]>;
|
|
350
|
-
/** Performs the given operations on each existing VersionCreateActivity that satisfies the given criteria. */
|
|
351
|
-
tryPatchWhere(request: PatchSpecForMany<VersionCreateActivity, VersionCreateActivityCriteria>, options?: IRepoOptions): Promise<BatchResult<VersionCreateActivity>>;
|
|
352
|
-
patchWhere(request: PatchSpecForMany<VersionCreateActivity, VersionCreateActivityCriteria>, options?: IThrowingRepoOptions): Promise<VersionCreateActivity[]>;
|
|
353
|
-
/** Deletes each existing VersionCreateActivity that satisfies the given criteria. */
|
|
354
|
-
tryDeleteWhere(request: VersionCreateActivityCriteria, options?: IRepoOptions): Promise<BatchResult<VersionCreateActivity>>;
|
|
355
|
-
deleteWhere(request: VersionCreateActivityCriteria, options?: IThrowingRepoOptions): Promise<VersionCreateActivity[]>;
|
|
356
|
-
/** Retrieves the single, uniquely identified VersionCreateActivity. */
|
|
357
|
-
tryRead(request: IdSpecFor<VersionCreateActivity>, options?: IRepoOptions): Promise<SingleResult<VersionCreateActivity>>;
|
|
358
|
-
read(request: IdSpecFor<VersionCreateActivity>, options?: IThrowingRepoOptions): Promise<VersionCreateActivity>;
|
|
359
|
-
/** Overwrites the existing VersionCreateActivity. */
|
|
360
|
-
tryUpdate(request: VersionCreateActivity, options?: IRepoOptions): Promise<SingleResult<VersionCreateActivity>>;
|
|
361
|
-
update(request: VersionCreateActivity, options?: IThrowingRepoOptions): Promise<VersionCreateActivity>;
|
|
362
|
-
/** Performs the given operations on the existing VersionCreateActivity. */
|
|
363
|
-
tryPatch(request: PatchSpecForOne<VersionCreateActivity>, options?: IRepoOptions): Promise<SingleResult<VersionCreateActivity>>;
|
|
364
|
-
patch(request: PatchSpecForOne<VersionCreateActivity>, options?: IThrowingRepoOptions): Promise<VersionCreateActivity>;
|
|
365
|
-
/** Deletes the existing VersionCreateActivity. */
|
|
366
|
-
tryDelete(request: IdSpecFor<VersionCreateActivity>, options?: IRepoOptions): Promise<SingleResult<VersionCreateActivity>>;
|
|
367
|
-
delete(request: IdSpecFor<VersionCreateActivity>, options?: IThrowingRepoOptions): Promise<VersionCreateActivity>;
|
|
368
|
-
/** Overwrites the given properties of the existing VersionCreateActivity. */
|
|
369
|
-
tryUpdatePartial(request: VersionCreateActivity, options?: IRepoOptions): Promise<SingleResult<PartialWithId<VersionCreateActivity>>>;
|
|
370
|
-
updatePartial(request: VersionCreateActivity, options?: IThrowingRepoOptions): Promise<PartialWithId<VersionCreateActivity>>;
|
|
371
|
-
/** Saves the input as a new VersionCreateActivity. */
|
|
372
|
-
tryCreate(request: VersionCreateActivity, options?: IRepoOptions): Promise<SingleResult<VersionCreateActivity>>;
|
|
373
|
-
create(request: VersionCreateActivity, options?: IThrowingRepoOptions): Promise<VersionCreateActivity>;
|
|
374
|
-
/** Performs the given operation on each existing VersionCreateActivity that satisfies the given criteria. */
|
|
375
|
-
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<VersionCreateActivity, VersionCreateActivityCriteria>, options?: IRepoOptions): Promise<BatchResult<VersionCreateActivity>>;
|
|
376
|
-
UpdatePartialWhere(request: UpdatePartialWhereRequest<VersionCreateActivity, VersionCreateActivityCriteria>, options?: IThrowingRepoOptions): Promise<VersionCreateActivity[]>;
|
|
377
|
-
/** Overwrites the given properties for each existing VersionCreateActivity. */
|
|
378
|
-
tryUpdatePartialMany(request: Array<VersionCreateActivity>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<VersionCreateActivity>>>;
|
|
379
|
-
updatePartialMany(request: Array<VersionCreateActivity>, options?: IThrowingRepoOptions): Promise<PartialWithId<VersionCreateActivity>[]>;
|
|
380
|
-
/** 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). */
|
|
381
|
-
tryUpsertMany(request: Array<VersionCreateActivity>, options?: IRepoOptions): Promise<BatchResult<VersionCreateActivity>>;
|
|
382
|
-
upsertMany(request: Array<VersionCreateActivity>, options?: IThrowingRepoOptions): Promise<VersionCreateActivity[]>;
|
|
383
|
-
/** 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). */
|
|
384
|
-
tryUpsert(request: VersionCreateActivity, options?: IRepoOptions): Promise<SingleResult<VersionCreateActivity>>;
|
|
385
|
-
upsert(request: VersionCreateActivity, options?: IThrowingRepoOptions): Promise<VersionCreateActivity>;
|
|
386
|
-
}
|
|
387
|
-
import { AssetVersionConfig, AssetVersionConfigCriteria } from "../contracts";
|
|
388
|
-
declare class AssetVersionConfigCruds {
|
|
389
|
-
private core;
|
|
390
|
-
constructor(core: ApiClientBase);
|
|
391
|
-
/** Saves each given input as a new AssetVersionConfig. */
|
|
392
|
-
tryCreateMany(request: Array<AssetVersionConfig>, options?: IRepoOptions): Promise<BatchResult<AssetVersionConfig>>;
|
|
393
|
-
createMany(request: Array<AssetVersionConfig>, options?: IThrowingRepoOptions): Promise<AssetVersionConfig[]>;
|
|
241
|
+
/** Deletes each existing AssetVersionConfig that satisfies the given criteria. */
|
|
242
|
+
tryDeleteWhere(request: AssetVersionConfigCriteria, options?: IRepoOptions): Promise<BatchResult<AssetVersionConfig>>;
|
|
243
|
+
deleteWhere(request: AssetVersionConfigCriteria, options?: IThrowingRepoOptions): Promise<AssetVersionConfig[]>;
|
|
394
244
|
/** Retrieves all the existing AssetVersionConfig that satisfy the given criteria. */
|
|
395
245
|
tryReadMany(request: AssetVersionConfigCriteria, options?: IRepoOptions): Promise<ListResult<AssetVersionConfig>>;
|
|
396
246
|
readMany(request: AssetVersionConfigCriteria, options?: IThrowingRepoOptions): Promise<AssetVersionConfig[]>;
|
|
397
|
-
/** Overwrites each existing AssetVersionConfig. */
|
|
398
|
-
tryUpdateMany(request: Array<AssetVersionConfig>, options?: IRepoOptions): Promise<BatchResult<AssetVersionConfig>>;
|
|
399
|
-
updateMany(request: Array<AssetVersionConfig>, options?: IThrowingRepoOptions): Promise<AssetVersionConfig[]>;
|
|
400
247
|
/** Performs the given operations on each existing AssetVersionConfig that satisfies the given criteria. */
|
|
401
248
|
tryPatchWhere(request: PatchSpecForMany<AssetVersionConfig, AssetVersionConfigCriteria>, options?: IRepoOptions): Promise<BatchResult<AssetVersionConfig>>;
|
|
402
249
|
patchWhere(request: PatchSpecForMany<AssetVersionConfig, AssetVersionConfigCriteria>, options?: IThrowingRepoOptions): Promise<AssetVersionConfig[]>;
|
|
403
|
-
/**
|
|
404
|
-
|
|
405
|
-
|
|
250
|
+
/** Saves each given input as a new AssetVersionConfig. */
|
|
251
|
+
tryCreateMany(request: Array<AssetVersionConfig>, options?: IRepoOptions): Promise<BatchResult<AssetVersionConfig>>;
|
|
252
|
+
createMany(request: Array<AssetVersionConfig>, options?: IThrowingRepoOptions): Promise<AssetVersionConfig[]>;
|
|
253
|
+
/** Overwrites each existing AssetVersionConfig. */
|
|
254
|
+
tryUpdateMany(request: Array<AssetVersionConfig>, options?: IRepoOptions): Promise<BatchResult<AssetVersionConfig>>;
|
|
255
|
+
updateMany(request: Array<AssetVersionConfig>, options?: IThrowingRepoOptions): Promise<AssetVersionConfig[]>;
|
|
256
|
+
/** Deletes the existing AssetVersionConfig. */
|
|
257
|
+
tryDelete(request: IdSpecFor<AssetVersionConfig>, options?: IRepoOptions): Promise<SingleResult<AssetVersionConfig>>;
|
|
258
|
+
delete(request: IdSpecFor<AssetVersionConfig>, options?: IThrowingRepoOptions): Promise<AssetVersionConfig>;
|
|
406
259
|
/** Retrieves the single, uniquely identified AssetVersionConfig. */
|
|
407
260
|
tryRead(request: IdSpecFor<AssetVersionConfig>, options?: IRepoOptions): Promise<SingleResult<AssetVersionConfig>>;
|
|
408
261
|
read(request: IdSpecFor<AssetVersionConfig>, options?: IThrowingRepoOptions): Promise<AssetVersionConfig>;
|
|
409
|
-
/** Overwrites the existing AssetVersionConfig. */
|
|
410
|
-
tryUpdate(request: AssetVersionConfig, options?: IRepoOptions): Promise<SingleResult<AssetVersionConfig>>;
|
|
411
|
-
update(request: AssetVersionConfig, options?: IThrowingRepoOptions): Promise<AssetVersionConfig>;
|
|
412
262
|
/** Performs the given operations on the existing AssetVersionConfig. */
|
|
413
263
|
tryPatch(request: PatchSpecForOne<AssetVersionConfig>, options?: IRepoOptions): Promise<SingleResult<AssetVersionConfig>>;
|
|
414
264
|
patch(request: PatchSpecForOne<AssetVersionConfig>, options?: IThrowingRepoOptions): Promise<AssetVersionConfig>;
|
|
415
|
-
/**
|
|
416
|
-
|
|
417
|
-
|
|
265
|
+
/** Overwrites the existing AssetVersionConfig. */
|
|
266
|
+
tryUpdate(request: AssetVersionConfig, options?: IRepoOptions): Promise<SingleResult<AssetVersionConfig>>;
|
|
267
|
+
update(request: AssetVersionConfig, options?: IThrowingRepoOptions): Promise<AssetVersionConfig>;
|
|
418
268
|
/** Overwrites the given properties of the existing AssetVersionConfig. */
|
|
419
269
|
tryUpdatePartial(request: AssetVersionConfig, options?: IRepoOptions): Promise<SingleResult<PartialWithId<AssetVersionConfig>>>;
|
|
420
270
|
updatePartial(request: AssetVersionConfig, options?: IThrowingRepoOptions): Promise<PartialWithId<AssetVersionConfig>>;
|
|
421
271
|
/** Saves the input as a new AssetVersionConfig. */
|
|
422
272
|
tryCreate(request: AssetVersionConfig, options?: IRepoOptions): Promise<SingleResult<AssetVersionConfig>>;
|
|
423
273
|
create(request: AssetVersionConfig, options?: IThrowingRepoOptions): Promise<AssetVersionConfig>;
|
|
424
|
-
/** Performs the given operation on each existing AssetVersionConfig that satisfies the given criteria. */
|
|
425
|
-
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<AssetVersionConfig, AssetVersionConfigCriteria>, options?: IRepoOptions): Promise<BatchResult<AssetVersionConfig>>;
|
|
426
|
-
UpdatePartialWhere(request: UpdatePartialWhereRequest<AssetVersionConfig, AssetVersionConfigCriteria>, options?: IThrowingRepoOptions): Promise<AssetVersionConfig[]>;
|
|
427
274
|
/** Overwrites the given properties for each existing AssetVersionConfig. */
|
|
428
275
|
tryUpdatePartialMany(request: Array<AssetVersionConfig>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<AssetVersionConfig>>>;
|
|
429
276
|
updatePartialMany(request: Array<AssetVersionConfig>, options?: IThrowingRepoOptions): Promise<PartialWithId<AssetVersionConfig>[]>;
|
|
430
|
-
/**
|
|
431
|
-
|
|
432
|
-
|
|
277
|
+
/** Performs the given operation on each existing AssetVersionConfig that satisfies the given criteria. */
|
|
278
|
+
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<AssetVersionConfig, AssetVersionConfigCriteria>, options?: IRepoOptions): Promise<BatchResult<AssetVersionConfig>>;
|
|
279
|
+
UpdatePartialWhere(request: UpdatePartialWhereRequest<AssetVersionConfig, AssetVersionConfigCriteria>, options?: IThrowingRepoOptions): Promise<AssetVersionConfig[]>;
|
|
433
280
|
/** 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). */
|
|
434
281
|
tryUpsert(request: AssetVersionConfig, options?: IRepoOptions): Promise<SingleResult<AssetVersionConfig>>;
|
|
435
282
|
upsert(request: AssetVersionConfig, options?: IThrowingRepoOptions): Promise<AssetVersionConfig>;
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
private core;
|
|
440
|
-
constructor(core: ApiClientBase);
|
|
441
|
-
/** Saves each given input as a new Asset. */
|
|
442
|
-
tryCreateMany(request: Array<Asset>, options?: IRepoOptions): Promise<BatchResult<Asset>>;
|
|
443
|
-
createMany(request: Array<Asset>, options?: IThrowingRepoOptions): Promise<Asset[]>;
|
|
444
|
-
/** Retrieves all the existing Asset that satisfy the given criteria. */
|
|
445
|
-
tryReadMany(request: AssetCriteria, options?: IRepoOptions): Promise<ListResult<Asset>>;
|
|
446
|
-
readMany(request: AssetCriteria, options?: IThrowingRepoOptions): Promise<Asset[]>;
|
|
447
|
-
/** Overwrites each existing Asset. */
|
|
448
|
-
tryUpdateMany(request: Array<Asset>, options?: IRepoOptions): Promise<BatchResult<Asset>>;
|
|
449
|
-
updateMany(request: Array<Asset>, options?: IThrowingRepoOptions): Promise<Asset[]>;
|
|
450
|
-
/** Performs the given operations on each existing Asset that satisfies the given criteria. */
|
|
451
|
-
tryPatchWhere(request: PatchSpecForMany<Asset, AssetCriteria>, options?: IRepoOptions): Promise<BatchResult<Asset>>;
|
|
452
|
-
patchWhere(request: PatchSpecForMany<Asset, AssetCriteria>, options?: IThrowingRepoOptions): Promise<Asset[]>;
|
|
453
|
-
/** Deletes each existing Asset that satisfies the given criteria. */
|
|
454
|
-
tryDeleteWhere(request: AssetCriteria, options?: IRepoOptions): Promise<BatchResult<Asset>>;
|
|
455
|
-
deleteWhere(request: AssetCriteria, options?: IThrowingRepoOptions): Promise<Asset[]>;
|
|
456
|
-
/** Retrieves the single, uniquely identified Asset. */
|
|
457
|
-
tryRead(request: IdSpecFor<Asset>, options?: IRepoOptions): Promise<SingleResult<Asset>>;
|
|
458
|
-
read(request: IdSpecFor<Asset>, options?: IThrowingRepoOptions): Promise<Asset>;
|
|
459
|
-
/** Overwrites the existing Asset. */
|
|
460
|
-
tryUpdate(request: Asset, options?: IRepoOptions): Promise<SingleResult<Asset>>;
|
|
461
|
-
update(request: Asset, options?: IThrowingRepoOptions): Promise<Asset>;
|
|
462
|
-
/** Performs the given operations on the existing Asset. */
|
|
463
|
-
tryPatch(request: PatchSpecForOne<Asset>, options?: IRepoOptions): Promise<SingleResult<Asset>>;
|
|
464
|
-
patch(request: PatchSpecForOne<Asset>, options?: IThrowingRepoOptions): Promise<Asset>;
|
|
465
|
-
/** Deletes the existing Asset. */
|
|
466
|
-
tryDelete(request: IdSpecFor<Asset>, options?: IRepoOptions): Promise<SingleResult<Asset>>;
|
|
467
|
-
delete(request: IdSpecFor<Asset>, options?: IThrowingRepoOptions): Promise<Asset>;
|
|
468
|
-
/** Overwrites the given properties of the existing Asset. */
|
|
469
|
-
tryUpdatePartial(request: Asset, options?: IRepoOptions): Promise<SingleResult<PartialWithId<Asset>>>;
|
|
470
|
-
updatePartial(request: Asset, options?: IThrowingRepoOptions): Promise<PartialWithId<Asset>>;
|
|
471
|
-
/** Saves the input as a new Asset. */
|
|
472
|
-
tryCreate(request: Asset, options?: IRepoOptions): Promise<SingleResult<Asset>>;
|
|
473
|
-
create(request: Asset, options?: IThrowingRepoOptions): Promise<Asset>;
|
|
474
|
-
/** Performs the given operation on each existing Asset that satisfies the given criteria. */
|
|
475
|
-
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<Asset, AssetCriteria>, options?: IRepoOptions): Promise<BatchResult<Asset>>;
|
|
476
|
-
UpdatePartialWhere(request: UpdatePartialWhereRequest<Asset, AssetCriteria>, options?: IThrowingRepoOptions): Promise<Asset[]>;
|
|
477
|
-
/** Overwrites the given properties for each existing Asset. */
|
|
478
|
-
tryUpdatePartialMany(request: Array<Asset>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<Asset>>>;
|
|
479
|
-
updatePartialMany(request: Array<Asset>, options?: IThrowingRepoOptions): Promise<PartialWithId<Asset>[]>;
|
|
480
|
-
/** 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). */
|
|
481
|
-
tryUpsertMany(request: Array<Asset>, options?: IRepoOptions): Promise<BatchResult<Asset>>;
|
|
482
|
-
upsertMany(request: Array<Asset>, options?: IThrowingRepoOptions): Promise<Asset[]>;
|
|
483
|
-
/** 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). */
|
|
484
|
-
tryUpsert(request: Asset, options?: IRepoOptions): Promise<SingleResult<Asset>>;
|
|
485
|
-
upsert(request: Asset, options?: IThrowingRepoOptions): Promise<Asset>;
|
|
486
|
-
}
|
|
487
|
-
declare class EntityAclCruds {
|
|
488
|
-
private core;
|
|
489
|
-
constructor(core: ApiClientBase);
|
|
490
|
-
/** Saves each given input as a new EntityAcl. */
|
|
491
|
-
tryCreateMany(request: Array<EntityAcl>, options?: IRepoOptions): Promise<BatchResult<EntityAcl>>;
|
|
492
|
-
createMany(request: Array<EntityAcl>, options?: IThrowingRepoOptions): Promise<EntityAcl[]>;
|
|
493
|
-
/** Retrieves all the existing EntityAcl that satisfy the given criteria. */
|
|
494
|
-
tryReadMany(request: EntityAclCriteria, options?: IRepoOptions): Promise<ListResult<EntityAcl>>;
|
|
495
|
-
readMany(request: EntityAclCriteria, options?: IThrowingRepoOptions): Promise<EntityAcl[]>;
|
|
496
|
-
/** Overwrites each existing EntityAcl. */
|
|
497
|
-
tryUpdateMany(request: Array<EntityAcl>, options?: IRepoOptions): Promise<BatchResult<EntityAcl>>;
|
|
498
|
-
updateMany(request: Array<EntityAcl>, options?: IThrowingRepoOptions): Promise<EntityAcl[]>;
|
|
499
|
-
/** Performs the given operations on each existing EntityAcl that satisfies the given criteria. */
|
|
500
|
-
tryPatchWhere(request: PatchSpecForMany<EntityAcl, EntityAclCriteria>, options?: IRepoOptions): Promise<BatchResult<EntityAcl>>;
|
|
501
|
-
patchWhere(request: PatchSpecForMany<EntityAcl, EntityAclCriteria>, options?: IThrowingRepoOptions): Promise<EntityAcl[]>;
|
|
502
|
-
/** Deletes each existing EntityAcl that satisfies the given criteria. */
|
|
503
|
-
tryDeleteWhere(request: EntityAclCriteria, options?: IRepoOptions): Promise<BatchResult<EntityAcl>>;
|
|
504
|
-
deleteWhere(request: EntityAclCriteria, options?: IThrowingRepoOptions): Promise<EntityAcl[]>;
|
|
505
|
-
/** Retrieves the single, uniquely identified EntityAcl. */
|
|
506
|
-
tryRead(request: IdSpecFor<EntityAcl>, options?: IRepoOptions): Promise<SingleResult<EntityAcl>>;
|
|
507
|
-
read(request: IdSpecFor<EntityAcl>, options?: IThrowingRepoOptions): Promise<EntityAcl>;
|
|
508
|
-
/** Overwrites the existing EntityAcl. */
|
|
509
|
-
tryUpdate(request: EntityAcl, options?: IRepoOptions): Promise<SingleResult<EntityAcl>>;
|
|
510
|
-
update(request: EntityAcl, options?: IThrowingRepoOptions): Promise<EntityAcl>;
|
|
511
|
-
/** Performs the given operations on the existing EntityAcl. */
|
|
512
|
-
tryPatch(request: PatchSpecForOne<EntityAcl>, options?: IRepoOptions): Promise<SingleResult<EntityAcl>>;
|
|
513
|
-
patch(request: PatchSpecForOne<EntityAcl>, options?: IThrowingRepoOptions): Promise<EntityAcl>;
|
|
514
|
-
/** Deletes the existing EntityAcl. */
|
|
515
|
-
tryDelete(request: IdSpecFor<EntityAcl>, options?: IRepoOptions): Promise<SingleResult<EntityAcl>>;
|
|
516
|
-
delete(request: IdSpecFor<EntityAcl>, options?: IThrowingRepoOptions): Promise<EntityAcl>;
|
|
517
|
-
/** Overwrites the given properties of the existing EntityAcl. */
|
|
518
|
-
tryUpdatePartial(request: EntityAcl, options?: IRepoOptions): Promise<SingleResult<PartialWithId<EntityAcl>>>;
|
|
519
|
-
updatePartial(request: EntityAcl, options?: IThrowingRepoOptions): Promise<PartialWithId<EntityAcl>>;
|
|
520
|
-
/** Saves the input as a new EntityAcl. */
|
|
521
|
-
tryCreate(request: EntityAcl, options?: IRepoOptions): Promise<SingleResult<EntityAcl>>;
|
|
522
|
-
create(request: EntityAcl, options?: IThrowingRepoOptions): Promise<EntityAcl>;
|
|
523
|
-
/** Performs the given operation on each existing EntityAcl that satisfies the given criteria. */
|
|
524
|
-
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<EntityAcl, EntityAclCriteria>, options?: IRepoOptions): Promise<BatchResult<EntityAcl>>;
|
|
525
|
-
UpdatePartialWhere(request: UpdatePartialWhereRequest<EntityAcl, EntityAclCriteria>, options?: IThrowingRepoOptions): Promise<EntityAcl[]>;
|
|
526
|
-
/** Overwrites the given properties for each existing EntityAcl. */
|
|
527
|
-
tryUpdatePartialMany(request: Array<EntityAcl>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<EntityAcl>>>;
|
|
528
|
-
updatePartialMany(request: Array<EntityAcl>, options?: IThrowingRepoOptions): Promise<PartialWithId<EntityAcl>[]>;
|
|
529
|
-
/** 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). */
|
|
530
|
-
tryUpsertMany(request: Array<EntityAcl>, options?: IRepoOptions): Promise<BatchResult<EntityAcl>>;
|
|
531
|
-
upsertMany(request: Array<EntityAcl>, options?: IThrowingRepoOptions): Promise<EntityAcl[]>;
|
|
532
|
-
/** 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). */
|
|
533
|
-
tryUpsert(request: EntityAcl, options?: IRepoOptions): Promise<SingleResult<EntityAcl>>;
|
|
534
|
-
upsert(request: EntityAcl, options?: IThrowingRepoOptions): Promise<EntityAcl>;
|
|
283
|
+
/** 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). */
|
|
284
|
+
tryUpsertMany(request: Array<AssetVersionConfig>, options?: IRepoOptions): Promise<BatchResult<AssetVersionConfig>>;
|
|
285
|
+
upsertMany(request: Array<AssetVersionConfig>, options?: IThrowingRepoOptions): Promise<AssetVersionConfig[]>;
|
|
535
286
|
}
|
|
536
287
|
declare class AuthRoleCruds {
|
|
537
288
|
private core;
|
|
538
289
|
constructor(core: ApiClientBase);
|
|
539
|
-
/**
|
|
540
|
-
|
|
541
|
-
|
|
290
|
+
/** Deletes each existing AuthRole that satisfies the given criteria. */
|
|
291
|
+
tryDeleteWhere(request: AuthRoleCriteria, options?: IRepoOptions): Promise<BatchResult<AuthRole>>;
|
|
292
|
+
deleteWhere(request: AuthRoleCriteria, options?: IThrowingRepoOptions): Promise<AuthRole[]>;
|
|
542
293
|
/** Retrieves all the existing AuthRole that satisfy the given criteria. */
|
|
543
294
|
tryReadMany(request: AuthRoleCriteria, options?: IRepoOptions): Promise<ListResult<AuthRole>>;
|
|
544
295
|
readMany(request: AuthRoleCriteria, options?: IThrowingRepoOptions): Promise<AuthRole[]>;
|
|
545
|
-
/** Overwrites each existing AuthRole. */
|
|
546
|
-
tryUpdateMany(request: Array<AuthRole>, options?: IRepoOptions): Promise<BatchResult<AuthRole>>;
|
|
547
|
-
updateMany(request: Array<AuthRole>, options?: IThrowingRepoOptions): Promise<AuthRole[]>;
|
|
548
296
|
/** Performs the given operations on each existing AuthRole that satisfies the given criteria. */
|
|
549
297
|
tryPatchWhere(request: PatchSpecForMany<AuthRole, AuthRoleCriteria>, options?: IRepoOptions): Promise<BatchResult<AuthRole>>;
|
|
550
298
|
patchWhere(request: PatchSpecForMany<AuthRole, AuthRoleCriteria>, options?: IThrowingRepoOptions): Promise<AuthRole[]>;
|
|
551
|
-
/**
|
|
552
|
-
|
|
553
|
-
|
|
299
|
+
/** Saves each given input as a new AuthRole. */
|
|
300
|
+
tryCreateMany(request: Array<AuthRole>, options?: IRepoOptions): Promise<BatchResult<AuthRole>>;
|
|
301
|
+
createMany(request: Array<AuthRole>, options?: IThrowingRepoOptions): Promise<AuthRole[]>;
|
|
302
|
+
/** Overwrites each existing AuthRole. */
|
|
303
|
+
tryUpdateMany(request: Array<AuthRole>, options?: IRepoOptions): Promise<BatchResult<AuthRole>>;
|
|
304
|
+
updateMany(request: Array<AuthRole>, options?: IThrowingRepoOptions): Promise<AuthRole[]>;
|
|
305
|
+
/** Deletes the existing AuthRole. */
|
|
306
|
+
tryDelete(request: IdSpecFor<AuthRole>, options?: IRepoOptions): Promise<SingleResult<AuthRole>>;
|
|
307
|
+
delete(request: IdSpecFor<AuthRole>, options?: IThrowingRepoOptions): Promise<AuthRole>;
|
|
554
308
|
/** Retrieves the single, uniquely identified AuthRole. */
|
|
555
309
|
tryRead(request: IdSpecFor<AuthRole>, options?: IRepoOptions): Promise<SingleResult<AuthRole>>;
|
|
556
310
|
read(request: IdSpecFor<AuthRole>, options?: IThrowingRepoOptions): Promise<AuthRole>;
|
|
557
|
-
/** Overwrites the existing AuthRole. */
|
|
558
|
-
tryUpdate(request: AuthRole, options?: IRepoOptions): Promise<SingleResult<AuthRole>>;
|
|
559
|
-
update(request: AuthRole, options?: IThrowingRepoOptions): Promise<AuthRole>;
|
|
560
311
|
/** Performs the given operations on the existing AuthRole. */
|
|
561
312
|
tryPatch(request: PatchSpecForOne<AuthRole>, options?: IRepoOptions): Promise<SingleResult<AuthRole>>;
|
|
562
313
|
patch(request: PatchSpecForOne<AuthRole>, options?: IThrowingRepoOptions): Promise<AuthRole>;
|
|
563
|
-
/**
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
/** Overwrites the given properties of the existing AuthRole. */
|
|
567
|
-
tryUpdatePartial(request: AuthRole, options?: IRepoOptions): Promise<SingleResult<PartialWithId<AuthRole>>>;
|
|
568
|
-
updatePartial(request: AuthRole, options?: IThrowingRepoOptions): Promise<PartialWithId<AuthRole>>;
|
|
569
|
-
/** Saves the input as a new AuthRole. */
|
|
570
|
-
tryCreate(request: AuthRole, options?: IRepoOptions): Promise<SingleResult<AuthRole>>;
|
|
571
|
-
create(request: AuthRole, options?: IThrowingRepoOptions): Promise<AuthRole>;
|
|
572
|
-
/**
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
/**
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
/** Saves
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
/** Saves
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
}
|
|
585
|
-
declare class CodiacUserCruds {
|
|
586
|
-
private core;
|
|
587
|
-
constructor(core: ApiClientBase);
|
|
588
|
-
/** Retrieves all the existing CodiacUser that satisfy the given criteria. */
|
|
589
|
-
tryReadMany(request: CodiacUserCriteria, options?: IRepoOptions): Promise<ListResult<CodiacUser>>;
|
|
590
|
-
readMany(request: CodiacUserCriteria, options?: IThrowingRepoOptions): Promise<CodiacUser[]>;
|
|
591
|
-
/** Retrieves the single, uniquely identified CodiacUser. */
|
|
592
|
-
tryRead(request: IdSpecFor<CodiacUser>, options?: IRepoOptions): Promise<SingleResult<CodiacUser>>;
|
|
593
|
-
read(request: IdSpecFor<CodiacUser>, options?: IThrowingRepoOptions): Promise<CodiacUser>;
|
|
594
|
-
}
|
|
595
|
-
import { BuildPipeline, BuildPipelineCriteria } from "../contracts";
|
|
596
|
-
declare class BuildPipelineCruds {
|
|
597
|
-
private core;
|
|
598
|
-
constructor(core: ApiClientBase);
|
|
599
|
-
/** Saves each given input as a new BuildPipeline. */
|
|
600
|
-
tryCreateMany(request: Array<BuildPipeline>, options?: IRepoOptions): Promise<BatchResult<BuildPipeline>>;
|
|
601
|
-
createMany(request: Array<BuildPipeline>, options?: IThrowingRepoOptions): Promise<BuildPipeline[]>;
|
|
602
|
-
/** Retrieves all the existing BuildPipeline that satisfy the given criteria. */
|
|
603
|
-
tryReadMany(request: BuildPipelineCriteria, options?: IRepoOptions): Promise<ListResult<BuildPipeline>>;
|
|
604
|
-
readMany(request: BuildPipelineCriteria, options?: IThrowingRepoOptions): Promise<BuildPipeline[]>;
|
|
605
|
-
/** Overwrites each existing BuildPipeline. */
|
|
606
|
-
tryUpdateMany(request: Array<BuildPipeline>, options?: IRepoOptions): Promise<BatchResult<BuildPipeline>>;
|
|
607
|
-
updateMany(request: Array<BuildPipeline>, options?: IThrowingRepoOptions): Promise<BuildPipeline[]>;
|
|
608
|
-
/** Performs the given operations on each existing BuildPipeline that satisfies the given criteria. */
|
|
609
|
-
tryPatchWhere(request: PatchSpecForMany<BuildPipeline, BuildPipelineCriteria>, options?: IRepoOptions): Promise<BatchResult<BuildPipeline>>;
|
|
610
|
-
patchWhere(request: PatchSpecForMany<BuildPipeline, BuildPipelineCriteria>, options?: IThrowingRepoOptions): Promise<BuildPipeline[]>;
|
|
611
|
-
/** Deletes each existing BuildPipeline that satisfies the given criteria. */
|
|
612
|
-
tryDeleteWhere(request: BuildPipelineCriteria, options?: IRepoOptions): Promise<BatchResult<BuildPipeline>>;
|
|
613
|
-
deleteWhere(request: BuildPipelineCriteria, options?: IThrowingRepoOptions): Promise<BuildPipeline[]>;
|
|
614
|
-
/** Retrieves the single, uniquely identified BuildPipeline. */
|
|
615
|
-
tryRead(request: IdSpecFor<BuildPipeline>, options?: IRepoOptions): Promise<SingleResult<BuildPipeline>>;
|
|
616
|
-
read(request: IdSpecFor<BuildPipeline>, options?: IThrowingRepoOptions): Promise<BuildPipeline>;
|
|
617
|
-
/** Overwrites the existing BuildPipeline. */
|
|
618
|
-
tryUpdate(request: BuildPipeline, options?: IRepoOptions): Promise<SingleResult<BuildPipeline>>;
|
|
619
|
-
update(request: BuildPipeline, options?: IThrowingRepoOptions): Promise<BuildPipeline>;
|
|
620
|
-
/** Performs the given operations on the existing BuildPipeline. */
|
|
621
|
-
tryPatch(request: PatchSpecForOne<BuildPipeline>, options?: IRepoOptions): Promise<SingleResult<BuildPipeline>>;
|
|
622
|
-
patch(request: PatchSpecForOne<BuildPipeline>, options?: IThrowingRepoOptions): Promise<BuildPipeline>;
|
|
623
|
-
/** Deletes the existing BuildPipeline. */
|
|
624
|
-
tryDelete(request: IdSpecFor<BuildPipeline>, options?: IRepoOptions): Promise<SingleResult<BuildPipeline>>;
|
|
625
|
-
delete(request: IdSpecFor<BuildPipeline>, options?: IThrowingRepoOptions): Promise<BuildPipeline>;
|
|
626
|
-
/** Overwrites the given properties of the existing BuildPipeline. */
|
|
627
|
-
tryUpdatePartial(request: BuildPipeline, options?: IRepoOptions): Promise<SingleResult<PartialWithId<BuildPipeline>>>;
|
|
628
|
-
updatePartial(request: BuildPipeline, options?: IThrowingRepoOptions): Promise<PartialWithId<BuildPipeline>>;
|
|
629
|
-
/** Saves the input as a new BuildPipeline. */
|
|
630
|
-
tryCreate(request: BuildPipeline, options?: IRepoOptions): Promise<SingleResult<BuildPipeline>>;
|
|
631
|
-
create(request: BuildPipeline, options?: IThrowingRepoOptions): Promise<BuildPipeline>;
|
|
632
|
-
/** Performs the given operation on each existing BuildPipeline that satisfies the given criteria. */
|
|
633
|
-
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<BuildPipeline, BuildPipelineCriteria>, options?: IRepoOptions): Promise<BatchResult<BuildPipeline>>;
|
|
634
|
-
UpdatePartialWhere(request: UpdatePartialWhereRequest<BuildPipeline, BuildPipelineCriteria>, options?: IThrowingRepoOptions): Promise<BuildPipeline[]>;
|
|
635
|
-
/** Overwrites the given properties for each existing BuildPipeline. */
|
|
636
|
-
tryUpdatePartialMany(request: Array<BuildPipeline>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<BuildPipeline>>>;
|
|
637
|
-
updatePartialMany(request: Array<BuildPipeline>, options?: IThrowingRepoOptions): Promise<PartialWithId<BuildPipeline>[]>;
|
|
638
|
-
/** 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). */
|
|
639
|
-
tryUpsertMany(request: Array<BuildPipeline>, options?: IRepoOptions): Promise<BatchResult<BuildPipeline>>;
|
|
640
|
-
upsertMany(request: Array<BuildPipeline>, options?: IThrowingRepoOptions): Promise<BuildPipeline[]>;
|
|
641
|
-
/** 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). */
|
|
642
|
-
tryUpsert(request: BuildPipeline, options?: IRepoOptions): Promise<SingleResult<BuildPipeline>>;
|
|
643
|
-
upsert(request: BuildPipeline, options?: IThrowingRepoOptions): Promise<BuildPipeline>;
|
|
314
|
+
/** Overwrites the existing AuthRole. */
|
|
315
|
+
tryUpdate(request: AuthRole, options?: IRepoOptions): Promise<SingleResult<AuthRole>>;
|
|
316
|
+
update(request: AuthRole, options?: IThrowingRepoOptions): Promise<AuthRole>;
|
|
317
|
+
/** Overwrites the given properties of the existing AuthRole. */
|
|
318
|
+
tryUpdatePartial(request: AuthRole, options?: IRepoOptions): Promise<SingleResult<PartialWithId<AuthRole>>>;
|
|
319
|
+
updatePartial(request: AuthRole, options?: IThrowingRepoOptions): Promise<PartialWithId<AuthRole>>;
|
|
320
|
+
/** Saves the input as a new AuthRole. */
|
|
321
|
+
tryCreate(request: AuthRole, options?: IRepoOptions): Promise<SingleResult<AuthRole>>;
|
|
322
|
+
create(request: AuthRole, options?: IThrowingRepoOptions): Promise<AuthRole>;
|
|
323
|
+
/** Overwrites the given properties for each existing AuthRole. */
|
|
324
|
+
tryUpdatePartialMany(request: Array<AuthRole>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<AuthRole>>>;
|
|
325
|
+
updatePartialMany(request: Array<AuthRole>, options?: IThrowingRepoOptions): Promise<PartialWithId<AuthRole>[]>;
|
|
326
|
+
/** Performs the given operation on each existing AuthRole that satisfies the given criteria. */
|
|
327
|
+
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<AuthRole, AuthRoleCriteria>, options?: IRepoOptions): Promise<BatchResult<AuthRole>>;
|
|
328
|
+
UpdatePartialWhere(request: UpdatePartialWhereRequest<AuthRole, AuthRoleCriteria>, options?: IThrowingRepoOptions): Promise<AuthRole[]>;
|
|
329
|
+
/** 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). */
|
|
330
|
+
tryUpsert(request: AuthRole, options?: IRepoOptions): Promise<SingleResult<AuthRole>>;
|
|
331
|
+
upsert(request: AuthRole, options?: IThrowingRepoOptions): Promise<AuthRole>;
|
|
332
|
+
/** 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). */
|
|
333
|
+
tryUpsertMany(request: Array<AuthRole>, options?: IRepoOptions): Promise<BatchResult<AuthRole>>;
|
|
334
|
+
upsertMany(request: Array<AuthRole>, options?: IThrowingRepoOptions): Promise<AuthRole[]>;
|
|
644
335
|
}
|
|
645
336
|
import { Build, BuildCriteria } from "../contracts";
|
|
646
337
|
declare class BuildCruds {
|
|
647
338
|
private core;
|
|
648
339
|
constructor(core: ApiClientBase);
|
|
649
|
-
/**
|
|
650
|
-
|
|
651
|
-
|
|
340
|
+
/** Deletes each existing Build that satisfies the given criteria. */
|
|
341
|
+
tryDeleteWhere(request: BuildCriteria, options?: IRepoOptions): Promise<BatchResult<Build>>;
|
|
342
|
+
deleteWhere(request: BuildCriteria, options?: IThrowingRepoOptions): Promise<Build[]>;
|
|
652
343
|
/** Retrieves all the existing Build that satisfy the given criteria. */
|
|
653
344
|
tryReadMany(request: BuildCriteria, options?: IRepoOptions): Promise<ListResult<Build>>;
|
|
654
345
|
readMany(request: BuildCriteria, options?: IThrowingRepoOptions): Promise<Build[]>;
|
|
655
|
-
/** Overwrites each existing Build. */
|
|
656
|
-
tryUpdateMany(request: Array<Build>, options?: IRepoOptions): Promise<BatchResult<Build>>;
|
|
657
|
-
updateMany(request: Array<Build>, options?: IThrowingRepoOptions): Promise<Build[]>;
|
|
658
346
|
/** Performs the given operations on each existing Build that satisfies the given criteria. */
|
|
659
347
|
tryPatchWhere(request: PatchSpecForMany<Build, BuildCriteria>, options?: IRepoOptions): Promise<BatchResult<Build>>;
|
|
660
348
|
patchWhere(request: PatchSpecForMany<Build, BuildCriteria>, options?: IThrowingRepoOptions): Promise<Build[]>;
|
|
661
|
-
/**
|
|
662
|
-
|
|
663
|
-
|
|
349
|
+
/** Saves each given input as a new Build. */
|
|
350
|
+
tryCreateMany(request: Array<Build>, options?: IRepoOptions): Promise<BatchResult<Build>>;
|
|
351
|
+
createMany(request: Array<Build>, options?: IThrowingRepoOptions): Promise<Build[]>;
|
|
352
|
+
/** Overwrites each existing Build. */
|
|
353
|
+
tryUpdateMany(request: Array<Build>, options?: IRepoOptions): Promise<BatchResult<Build>>;
|
|
354
|
+
updateMany(request: Array<Build>, options?: IThrowingRepoOptions): Promise<Build[]>;
|
|
355
|
+
/** Deletes the existing Build. */
|
|
356
|
+
tryDelete(request: IdSpecFor<Build>, options?: IRepoOptions): Promise<SingleResult<Build>>;
|
|
357
|
+
delete(request: IdSpecFor<Build>, options?: IThrowingRepoOptions): Promise<Build>;
|
|
664
358
|
/** Retrieves the single, uniquely identified Build. */
|
|
665
359
|
tryRead(request: IdSpecFor<Build>, options?: IRepoOptions): Promise<SingleResult<Build>>;
|
|
666
360
|
read(request: IdSpecFor<Build>, options?: IThrowingRepoOptions): Promise<Build>;
|
|
667
|
-
/** Overwrites the existing Build. */
|
|
668
|
-
tryUpdate(request: Build, options?: IRepoOptions): Promise<SingleResult<Build>>;
|
|
669
|
-
update(request: Build, options?: IThrowingRepoOptions): Promise<Build>;
|
|
670
361
|
/** Performs the given operations on the existing Build. */
|
|
671
362
|
tryPatch(request: PatchSpecForOne<Build>, options?: IRepoOptions): Promise<SingleResult<Build>>;
|
|
672
363
|
patch(request: PatchSpecForOne<Build>, options?: IThrowingRepoOptions): Promise<Build>;
|
|
673
|
-
/**
|
|
674
|
-
|
|
675
|
-
|
|
364
|
+
/** Overwrites the existing Build. */
|
|
365
|
+
tryUpdate(request: Build, options?: IRepoOptions): Promise<SingleResult<Build>>;
|
|
366
|
+
update(request: Build, options?: IThrowingRepoOptions): Promise<Build>;
|
|
676
367
|
/** Overwrites the given properties of the existing Build. */
|
|
677
368
|
tryUpdatePartial(request: Build, options?: IRepoOptions): Promise<SingleResult<PartialWithId<Build>>>;
|
|
678
369
|
updatePartial(request: Build, options?: IThrowingRepoOptions): Promise<PartialWithId<Build>>;
|
|
679
370
|
/** Saves the input as a new Build. */
|
|
680
371
|
tryCreate(request: Build, options?: IRepoOptions): Promise<SingleResult<Build>>;
|
|
681
372
|
create(request: Build, options?: IThrowingRepoOptions): Promise<Build>;
|
|
682
|
-
/** Performs the given operation on each existing Build that satisfies the given criteria. */
|
|
683
|
-
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<Build, BuildCriteria>, options?: IRepoOptions): Promise<BatchResult<Build>>;
|
|
684
|
-
UpdatePartialWhere(request: UpdatePartialWhereRequest<Build, BuildCriteria>, options?: IThrowingRepoOptions): Promise<Build[]>;
|
|
685
373
|
/** Overwrites the given properties for each existing Build. */
|
|
686
374
|
tryUpdatePartialMany(request: Array<Build>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<Build>>>;
|
|
687
375
|
updatePartialMany(request: Array<Build>, options?: IThrowingRepoOptions): Promise<PartialWithId<Build>[]>;
|
|
688
|
-
/**
|
|
689
|
-
|
|
690
|
-
|
|
376
|
+
/** Performs the given operation on each existing Build that satisfies the given criteria. */
|
|
377
|
+
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<Build, BuildCriteria>, options?: IRepoOptions): Promise<BatchResult<Build>>;
|
|
378
|
+
UpdatePartialWhere(request: UpdatePartialWhereRequest<Build, BuildCriteria>, options?: IThrowingRepoOptions): Promise<Build[]>;
|
|
691
379
|
/** 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). */
|
|
692
380
|
tryUpsert(request: Build, options?: IRepoOptions): Promise<SingleResult<Build>>;
|
|
693
381
|
upsert(request: Build, options?: IThrowingRepoOptions): Promise<Build>;
|
|
382
|
+
/** 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). */
|
|
383
|
+
tryUpsertMany(request: Array<Build>, options?: IRepoOptions): Promise<BatchResult<Build>>;
|
|
384
|
+
upsertMany(request: Array<Build>, options?: IThrowingRepoOptions): Promise<Build[]>;
|
|
385
|
+
}
|
|
386
|
+
import { BuildPipeline, BuildPipelineCriteria } from "../contracts";
|
|
387
|
+
declare class BuildPipelineCruds {
|
|
388
|
+
private core;
|
|
389
|
+
constructor(core: ApiClientBase);
|
|
390
|
+
/** Deletes each existing BuildPipeline that satisfies the given criteria. */
|
|
391
|
+
tryDeleteWhere(request: BuildPipelineCriteria, options?: IRepoOptions): Promise<BatchResult<BuildPipeline>>;
|
|
392
|
+
deleteWhere(request: BuildPipelineCriteria, options?: IThrowingRepoOptions): Promise<BuildPipeline[]>;
|
|
393
|
+
/** Retrieves all the existing BuildPipeline that satisfy the given criteria. */
|
|
394
|
+
tryReadMany(request: BuildPipelineCriteria, options?: IRepoOptions): Promise<ListResult<BuildPipeline>>;
|
|
395
|
+
readMany(request: BuildPipelineCriteria, options?: IThrowingRepoOptions): Promise<BuildPipeline[]>;
|
|
396
|
+
/** Performs the given operations on each existing BuildPipeline that satisfies the given criteria. */
|
|
397
|
+
tryPatchWhere(request: PatchSpecForMany<BuildPipeline, BuildPipelineCriteria>, options?: IRepoOptions): Promise<BatchResult<BuildPipeline>>;
|
|
398
|
+
patchWhere(request: PatchSpecForMany<BuildPipeline, BuildPipelineCriteria>, options?: IThrowingRepoOptions): Promise<BuildPipeline[]>;
|
|
399
|
+
/** Saves each given input as a new BuildPipeline. */
|
|
400
|
+
tryCreateMany(request: Array<BuildPipeline>, options?: IRepoOptions): Promise<BatchResult<BuildPipeline>>;
|
|
401
|
+
createMany(request: Array<BuildPipeline>, options?: IThrowingRepoOptions): Promise<BuildPipeline[]>;
|
|
402
|
+
/** Overwrites each existing BuildPipeline. */
|
|
403
|
+
tryUpdateMany(request: Array<BuildPipeline>, options?: IRepoOptions): Promise<BatchResult<BuildPipeline>>;
|
|
404
|
+
updateMany(request: Array<BuildPipeline>, options?: IThrowingRepoOptions): Promise<BuildPipeline[]>;
|
|
405
|
+
/** Deletes the existing BuildPipeline. */
|
|
406
|
+
tryDelete(request: IdSpecFor<BuildPipeline>, options?: IRepoOptions): Promise<SingleResult<BuildPipeline>>;
|
|
407
|
+
delete(request: IdSpecFor<BuildPipeline>, options?: IThrowingRepoOptions): Promise<BuildPipeline>;
|
|
408
|
+
/** Retrieves the single, uniquely identified BuildPipeline. */
|
|
409
|
+
tryRead(request: IdSpecFor<BuildPipeline>, options?: IRepoOptions): Promise<SingleResult<BuildPipeline>>;
|
|
410
|
+
read(request: IdSpecFor<BuildPipeline>, options?: IThrowingRepoOptions): Promise<BuildPipeline>;
|
|
411
|
+
/** Performs the given operations on the existing BuildPipeline. */
|
|
412
|
+
tryPatch(request: PatchSpecForOne<BuildPipeline>, options?: IRepoOptions): Promise<SingleResult<BuildPipeline>>;
|
|
413
|
+
patch(request: PatchSpecForOne<BuildPipeline>, options?: IThrowingRepoOptions): Promise<BuildPipeline>;
|
|
414
|
+
/** Overwrites the existing BuildPipeline. */
|
|
415
|
+
tryUpdate(request: BuildPipeline, options?: IRepoOptions): Promise<SingleResult<BuildPipeline>>;
|
|
416
|
+
update(request: BuildPipeline, options?: IThrowingRepoOptions): Promise<BuildPipeline>;
|
|
417
|
+
/** Overwrites the given properties of the existing BuildPipeline. */
|
|
418
|
+
tryUpdatePartial(request: BuildPipeline, options?: IRepoOptions): Promise<SingleResult<PartialWithId<BuildPipeline>>>;
|
|
419
|
+
updatePartial(request: BuildPipeline, options?: IThrowingRepoOptions): Promise<PartialWithId<BuildPipeline>>;
|
|
420
|
+
/** Saves the input as a new BuildPipeline. */
|
|
421
|
+
tryCreate(request: BuildPipeline, options?: IRepoOptions): Promise<SingleResult<BuildPipeline>>;
|
|
422
|
+
create(request: BuildPipeline, options?: IThrowingRepoOptions): Promise<BuildPipeline>;
|
|
423
|
+
/** Overwrites the given properties for each existing BuildPipeline. */
|
|
424
|
+
tryUpdatePartialMany(request: Array<BuildPipeline>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<BuildPipeline>>>;
|
|
425
|
+
updatePartialMany(request: Array<BuildPipeline>, options?: IThrowingRepoOptions): Promise<PartialWithId<BuildPipeline>[]>;
|
|
426
|
+
/** Performs the given operation on each existing BuildPipeline that satisfies the given criteria. */
|
|
427
|
+
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<BuildPipeline, BuildPipelineCriteria>, options?: IRepoOptions): Promise<BatchResult<BuildPipeline>>;
|
|
428
|
+
UpdatePartialWhere(request: UpdatePartialWhereRequest<BuildPipeline, BuildPipelineCriteria>, options?: IThrowingRepoOptions): Promise<BuildPipeline[]>;
|
|
429
|
+
/** 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). */
|
|
430
|
+
tryUpsert(request: BuildPipeline, options?: IRepoOptions): Promise<SingleResult<BuildPipeline>>;
|
|
431
|
+
upsert(request: BuildPipeline, options?: IThrowingRepoOptions): Promise<BuildPipeline>;
|
|
432
|
+
/** 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). */
|
|
433
|
+
tryUpsertMany(request: Array<BuildPipeline>, options?: IRepoOptions): Promise<BatchResult<BuildPipeline>>;
|
|
434
|
+
upsertMany(request: Array<BuildPipeline>, options?: IThrowingRepoOptions): Promise<BuildPipeline[]>;
|
|
694
435
|
}
|
|
695
436
|
import { Cabinet, CabinetCriteria } from "../contracts";
|
|
696
437
|
declare class CabinetCruds {
|
|
697
438
|
private core;
|
|
698
439
|
constructor(core: ApiClientBase);
|
|
699
|
-
/**
|
|
700
|
-
|
|
701
|
-
|
|
440
|
+
/** Deletes each existing Cabinet that satisfies the given criteria. */
|
|
441
|
+
tryDeleteWhere(request: CabinetCriteria, options?: IRepoOptions): Promise<BatchResult<Cabinet>>;
|
|
442
|
+
deleteWhere(request: CabinetCriteria, options?: IThrowingRepoOptions): Promise<Cabinet[]>;
|
|
702
443
|
/** Retrieves all the existing Cabinet that satisfy the given criteria. */
|
|
703
444
|
tryReadMany(request: CabinetCriteria, options?: IRepoOptions): Promise<ListResult<Cabinet>>;
|
|
704
445
|
readMany(request: CabinetCriteria, options?: IThrowingRepoOptions): Promise<Cabinet[]>;
|
|
705
|
-
/** Overwrites each existing Cabinet. */
|
|
706
|
-
tryUpdateMany(request: Array<Cabinet>, options?: IRepoOptions): Promise<BatchResult<Cabinet>>;
|
|
707
|
-
updateMany(request: Array<Cabinet>, options?: IThrowingRepoOptions): Promise<Cabinet[]>;
|
|
708
446
|
/** Performs the given operations on each existing Cabinet that satisfies the given criteria. */
|
|
709
447
|
tryPatchWhere(request: PatchSpecForMany<Cabinet, CabinetCriteria>, options?: IRepoOptions): Promise<BatchResult<Cabinet>>;
|
|
710
448
|
patchWhere(request: PatchSpecForMany<Cabinet, CabinetCriteria>, options?: IThrowingRepoOptions): Promise<Cabinet[]>;
|
|
711
|
-
/**
|
|
712
|
-
|
|
713
|
-
|
|
449
|
+
/** Saves each given input as a new Cabinet. */
|
|
450
|
+
tryCreateMany(request: Array<Cabinet>, options?: IRepoOptions): Promise<BatchResult<Cabinet>>;
|
|
451
|
+
createMany(request: Array<Cabinet>, options?: IThrowingRepoOptions): Promise<Cabinet[]>;
|
|
452
|
+
/** Overwrites each existing Cabinet. */
|
|
453
|
+
tryUpdateMany(request: Array<Cabinet>, options?: IRepoOptions): Promise<BatchResult<Cabinet>>;
|
|
454
|
+
updateMany(request: Array<Cabinet>, options?: IThrowingRepoOptions): Promise<Cabinet[]>;
|
|
455
|
+
/** Deletes the existing Cabinet. */
|
|
456
|
+
tryDelete(request: IdSpecFor<Cabinet>, options?: IRepoOptions): Promise<SingleResult<Cabinet>>;
|
|
457
|
+
delete(request: IdSpecFor<Cabinet>, options?: IThrowingRepoOptions): Promise<Cabinet>;
|
|
714
458
|
/** Retrieves the single, uniquely identified Cabinet. */
|
|
715
459
|
tryRead(request: IdSpecFor<Cabinet>, options?: IRepoOptions): Promise<SingleResult<Cabinet>>;
|
|
716
460
|
read(request: IdSpecFor<Cabinet>, options?: IThrowingRepoOptions): Promise<Cabinet>;
|
|
717
|
-
/** Overwrites the existing Cabinet. */
|
|
718
|
-
tryUpdate(request: Cabinet, options?: IRepoOptions): Promise<SingleResult<Cabinet>>;
|
|
719
|
-
update(request: Cabinet, options?: IThrowingRepoOptions): Promise<Cabinet>;
|
|
720
461
|
/** Performs the given operations on the existing Cabinet. */
|
|
721
462
|
tryPatch(request: PatchSpecForOne<Cabinet>, options?: IRepoOptions): Promise<SingleResult<Cabinet>>;
|
|
722
463
|
patch(request: PatchSpecForOne<Cabinet>, options?: IThrowingRepoOptions): Promise<Cabinet>;
|
|
723
|
-
/**
|
|
724
|
-
|
|
725
|
-
|
|
464
|
+
/** Overwrites the existing Cabinet. */
|
|
465
|
+
tryUpdate(request: Cabinet, options?: IRepoOptions): Promise<SingleResult<Cabinet>>;
|
|
466
|
+
update(request: Cabinet, options?: IThrowingRepoOptions): Promise<Cabinet>;
|
|
726
467
|
/** Overwrites the given properties of the existing Cabinet. */
|
|
727
468
|
tryUpdatePartial(request: Cabinet, options?: IRepoOptions): Promise<SingleResult<PartialWithId<Cabinet>>>;
|
|
728
469
|
updatePartial(request: Cabinet, options?: IThrowingRepoOptions): Promise<PartialWithId<Cabinet>>;
|
|
729
470
|
/** Saves the input as a new Cabinet. */
|
|
730
471
|
tryCreate(request: Cabinet, options?: IRepoOptions): Promise<SingleResult<Cabinet>>;
|
|
731
472
|
create(request: Cabinet, options?: IThrowingRepoOptions): Promise<Cabinet>;
|
|
732
|
-
/** Performs the given operation on each existing Cabinet that satisfies the given criteria. */
|
|
733
|
-
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<Cabinet, CabinetCriteria>, options?: IRepoOptions): Promise<BatchResult<Cabinet>>;
|
|
734
|
-
UpdatePartialWhere(request: UpdatePartialWhereRequest<Cabinet, CabinetCriteria>, options?: IThrowingRepoOptions): Promise<Cabinet[]>;
|
|
735
473
|
/** Overwrites the given properties for each existing Cabinet. */
|
|
736
474
|
tryUpdatePartialMany(request: Array<Cabinet>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<Cabinet>>>;
|
|
737
475
|
updatePartialMany(request: Array<Cabinet>, options?: IThrowingRepoOptions): Promise<PartialWithId<Cabinet>[]>;
|
|
738
|
-
/**
|
|
739
|
-
|
|
740
|
-
|
|
476
|
+
/** Performs the given operation on each existing Cabinet that satisfies the given criteria. */
|
|
477
|
+
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<Cabinet, CabinetCriteria>, options?: IRepoOptions): Promise<BatchResult<Cabinet>>;
|
|
478
|
+
UpdatePartialWhere(request: UpdatePartialWhereRequest<Cabinet, CabinetCriteria>, options?: IThrowingRepoOptions): Promise<Cabinet[]>;
|
|
741
479
|
/** 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). */
|
|
742
480
|
tryUpsert(request: Cabinet, options?: IRepoOptions): Promise<SingleResult<Cabinet>>;
|
|
743
481
|
upsert(request: Cabinet, options?: IThrowingRepoOptions): Promise<Cabinet>;
|
|
482
|
+
/** 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). */
|
|
483
|
+
tryUpsertMany(request: Array<Cabinet>, options?: IRepoOptions): Promise<BatchResult<Cabinet>>;
|
|
484
|
+
upsertMany(request: Array<Cabinet>, options?: IThrowingRepoOptions): Promise<Cabinet[]>;
|
|
485
|
+
}
|
|
486
|
+
import { CabinetCreateActivity, CabinetCreateActivityCriteria } from "../contracts";
|
|
487
|
+
declare class CabinetCreateActivityCruds {
|
|
488
|
+
private core;
|
|
489
|
+
constructor(core: ApiClientBase);
|
|
490
|
+
/** Deletes each existing CabinetCreateActivity that satisfies the given criteria. */
|
|
491
|
+
tryDeleteWhere(request: CabinetCreateActivityCriteria, options?: IRepoOptions): Promise<BatchResult<CabinetCreateActivity>>;
|
|
492
|
+
deleteWhere(request: CabinetCreateActivityCriteria, options?: IThrowingRepoOptions): Promise<CabinetCreateActivity[]>;
|
|
493
|
+
/** Retrieves all the existing CabinetCreateActivity that satisfy the given criteria. */
|
|
494
|
+
tryReadMany(request: CabinetCreateActivityCriteria, options?: IRepoOptions): Promise<ListResult<CabinetCreateActivity>>;
|
|
495
|
+
readMany(request: CabinetCreateActivityCriteria, options?: IThrowingRepoOptions): Promise<CabinetCreateActivity[]>;
|
|
496
|
+
/** Performs the given operations on each existing CabinetCreateActivity that satisfies the given criteria. */
|
|
497
|
+
tryPatchWhere(request: PatchSpecForMany<CabinetCreateActivity, CabinetCreateActivityCriteria>, options?: IRepoOptions): Promise<BatchResult<CabinetCreateActivity>>;
|
|
498
|
+
patchWhere(request: PatchSpecForMany<CabinetCreateActivity, CabinetCreateActivityCriteria>, options?: IThrowingRepoOptions): Promise<CabinetCreateActivity[]>;
|
|
499
|
+
/** Saves each given input as a new CabinetCreateActivity. */
|
|
500
|
+
tryCreateMany(request: Array<CabinetCreateActivity>, options?: IRepoOptions): Promise<BatchResult<CabinetCreateActivity>>;
|
|
501
|
+
createMany(request: Array<CabinetCreateActivity>, options?: IThrowingRepoOptions): Promise<CabinetCreateActivity[]>;
|
|
502
|
+
/** Overwrites each existing CabinetCreateActivity. */
|
|
503
|
+
tryUpdateMany(request: Array<CabinetCreateActivity>, options?: IRepoOptions): Promise<BatchResult<CabinetCreateActivity>>;
|
|
504
|
+
updateMany(request: Array<CabinetCreateActivity>, options?: IThrowingRepoOptions): Promise<CabinetCreateActivity[]>;
|
|
505
|
+
/** Deletes the existing CabinetCreateActivity. */
|
|
506
|
+
tryDelete(request: IdSpecFor<CabinetCreateActivity>, options?: IRepoOptions): Promise<SingleResult<CabinetCreateActivity>>;
|
|
507
|
+
delete(request: IdSpecFor<CabinetCreateActivity>, options?: IThrowingRepoOptions): Promise<CabinetCreateActivity>;
|
|
508
|
+
/** Retrieves the single, uniquely identified CabinetCreateActivity. */
|
|
509
|
+
tryRead(request: IdSpecFor<CabinetCreateActivity>, options?: IRepoOptions): Promise<SingleResult<CabinetCreateActivity>>;
|
|
510
|
+
read(request: IdSpecFor<CabinetCreateActivity>, options?: IThrowingRepoOptions): Promise<CabinetCreateActivity>;
|
|
511
|
+
/** Performs the given operations on the existing CabinetCreateActivity. */
|
|
512
|
+
tryPatch(request: PatchSpecForOne<CabinetCreateActivity>, options?: IRepoOptions): Promise<SingleResult<CabinetCreateActivity>>;
|
|
513
|
+
patch(request: PatchSpecForOne<CabinetCreateActivity>, options?: IThrowingRepoOptions): Promise<CabinetCreateActivity>;
|
|
514
|
+
/** Overwrites the existing CabinetCreateActivity. */
|
|
515
|
+
tryUpdate(request: CabinetCreateActivity, options?: IRepoOptions): Promise<SingleResult<CabinetCreateActivity>>;
|
|
516
|
+
update(request: CabinetCreateActivity, options?: IThrowingRepoOptions): Promise<CabinetCreateActivity>;
|
|
517
|
+
/** Overwrites the given properties of the existing CabinetCreateActivity. */
|
|
518
|
+
tryUpdatePartial(request: CabinetCreateActivity, options?: IRepoOptions): Promise<SingleResult<PartialWithId<CabinetCreateActivity>>>;
|
|
519
|
+
updatePartial(request: CabinetCreateActivity, options?: IThrowingRepoOptions): Promise<PartialWithId<CabinetCreateActivity>>;
|
|
520
|
+
/** Saves the input as a new CabinetCreateActivity. */
|
|
521
|
+
tryCreate(request: CabinetCreateActivity, options?: IRepoOptions): Promise<SingleResult<CabinetCreateActivity>>;
|
|
522
|
+
create(request: CabinetCreateActivity, options?: IThrowingRepoOptions): Promise<CabinetCreateActivity>;
|
|
523
|
+
/** Overwrites the given properties for each existing CabinetCreateActivity. */
|
|
524
|
+
tryUpdatePartialMany(request: Array<CabinetCreateActivity>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<CabinetCreateActivity>>>;
|
|
525
|
+
updatePartialMany(request: Array<CabinetCreateActivity>, options?: IThrowingRepoOptions): Promise<PartialWithId<CabinetCreateActivity>[]>;
|
|
526
|
+
/** Performs the given operation on each existing CabinetCreateActivity that satisfies the given criteria. */
|
|
527
|
+
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<CabinetCreateActivity, CabinetCreateActivityCriteria>, options?: IRepoOptions): Promise<BatchResult<CabinetCreateActivity>>;
|
|
528
|
+
UpdatePartialWhere(request: UpdatePartialWhereRequest<CabinetCreateActivity, CabinetCreateActivityCriteria>, options?: IThrowingRepoOptions): Promise<CabinetCreateActivity[]>;
|
|
529
|
+
/** 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). */
|
|
530
|
+
tryUpsert(request: CabinetCreateActivity, options?: IRepoOptions): Promise<SingleResult<CabinetCreateActivity>>;
|
|
531
|
+
upsert(request: CabinetCreateActivity, options?: IThrowingRepoOptions): Promise<CabinetCreateActivity>;
|
|
532
|
+
/** 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). */
|
|
533
|
+
tryUpsertMany(request: Array<CabinetCreateActivity>, options?: IRepoOptions): Promise<BatchResult<CabinetCreateActivity>>;
|
|
534
|
+
upsertMany(request: Array<CabinetCreateActivity>, options?: IThrowingRepoOptions): Promise<CabinetCreateActivity[]>;
|
|
535
|
+
}
|
|
536
|
+
import { Cluster, ClusterCriteria } from "../contracts";
|
|
537
|
+
declare class ClusterCruds {
|
|
538
|
+
private core;
|
|
539
|
+
constructor(core: ApiClientBase);
|
|
540
|
+
/** Deletes each existing Cluster that satisfies the given criteria. */
|
|
541
|
+
tryDeleteWhere(request: ClusterCriteria, options?: IRepoOptions): Promise<BatchResult<Cluster>>;
|
|
542
|
+
deleteWhere(request: ClusterCriteria, options?: IThrowingRepoOptions): Promise<Cluster[]>;
|
|
543
|
+
/** Retrieves all the existing Cluster that satisfy the given criteria. */
|
|
544
|
+
tryReadMany(request: ClusterCriteria, options?: IRepoOptions): Promise<ListResult<Cluster>>;
|
|
545
|
+
readMany(request: ClusterCriteria, options?: IThrowingRepoOptions): Promise<Cluster[]>;
|
|
546
|
+
/** Performs the given operations on each existing Cluster that satisfies the given criteria. */
|
|
547
|
+
tryPatchWhere(request: PatchSpecForMany<Cluster, ClusterCriteria>, options?: IRepoOptions): Promise<BatchResult<Cluster>>;
|
|
548
|
+
patchWhere(request: PatchSpecForMany<Cluster, ClusterCriteria>, options?: IThrowingRepoOptions): Promise<Cluster[]>;
|
|
549
|
+
/** Saves each given input as a new Cluster. */
|
|
550
|
+
tryCreateMany(request: Array<Cluster>, options?: IRepoOptions): Promise<BatchResult<Cluster>>;
|
|
551
|
+
createMany(request: Array<Cluster>, options?: IThrowingRepoOptions): Promise<Cluster[]>;
|
|
552
|
+
/** Overwrites each existing Cluster. */
|
|
553
|
+
tryUpdateMany(request: Array<Cluster>, options?: IRepoOptions): Promise<BatchResult<Cluster>>;
|
|
554
|
+
updateMany(request: Array<Cluster>, options?: IThrowingRepoOptions): Promise<Cluster[]>;
|
|
555
|
+
/** Deletes the existing Cluster. */
|
|
556
|
+
tryDelete(request: IdSpecFor<Cluster>, options?: IRepoOptions): Promise<SingleResult<Cluster>>;
|
|
557
|
+
delete(request: IdSpecFor<Cluster>, options?: IThrowingRepoOptions): Promise<Cluster>;
|
|
558
|
+
/** Retrieves the single, uniquely identified Cluster. */
|
|
559
|
+
tryRead(request: IdSpecFor<Cluster>, options?: IRepoOptions): Promise<SingleResult<Cluster>>;
|
|
560
|
+
read(request: IdSpecFor<Cluster>, options?: IThrowingRepoOptions): Promise<Cluster>;
|
|
561
|
+
/** Performs the given operations on the existing Cluster. */
|
|
562
|
+
tryPatch(request: PatchSpecForOne<Cluster>, options?: IRepoOptions): Promise<SingleResult<Cluster>>;
|
|
563
|
+
patch(request: PatchSpecForOne<Cluster>, options?: IThrowingRepoOptions): Promise<Cluster>;
|
|
564
|
+
/** Overwrites the existing Cluster. */
|
|
565
|
+
tryUpdate(request: Cluster, options?: IRepoOptions): Promise<SingleResult<Cluster>>;
|
|
566
|
+
update(request: Cluster, options?: IThrowingRepoOptions): Promise<Cluster>;
|
|
567
|
+
/** Overwrites the given properties of the existing Cluster. */
|
|
568
|
+
tryUpdatePartial(request: Cluster, options?: IRepoOptions): Promise<SingleResult<PartialWithId<Cluster>>>;
|
|
569
|
+
updatePartial(request: Cluster, options?: IThrowingRepoOptions): Promise<PartialWithId<Cluster>>;
|
|
570
|
+
/** Saves the input as a new Cluster. */
|
|
571
|
+
tryCreate(request: Cluster, options?: IRepoOptions): Promise<SingleResult<Cluster>>;
|
|
572
|
+
create(request: Cluster, options?: IThrowingRepoOptions): Promise<Cluster>;
|
|
573
|
+
/** Overwrites the given properties for each existing Cluster. */
|
|
574
|
+
tryUpdatePartialMany(request: Array<Cluster>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<Cluster>>>;
|
|
575
|
+
updatePartialMany(request: Array<Cluster>, options?: IThrowingRepoOptions): Promise<PartialWithId<Cluster>[]>;
|
|
576
|
+
/** Performs the given operation on each existing Cluster that satisfies the given criteria. */
|
|
577
|
+
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<Cluster, ClusterCriteria>, options?: IRepoOptions): Promise<BatchResult<Cluster>>;
|
|
578
|
+
UpdatePartialWhere(request: UpdatePartialWhereRequest<Cluster, ClusterCriteria>, options?: IThrowingRepoOptions): Promise<Cluster[]>;
|
|
579
|
+
/** 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). */
|
|
580
|
+
tryUpsert(request: Cluster, options?: IRepoOptions): Promise<SingleResult<Cluster>>;
|
|
581
|
+
upsert(request: Cluster, options?: IThrowingRepoOptions): Promise<Cluster>;
|
|
582
|
+
/** 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). */
|
|
583
|
+
tryUpsertMany(request: Array<Cluster>, options?: IRepoOptions): Promise<BatchResult<Cluster>>;
|
|
584
|
+
upsertMany(request: Array<Cluster>, options?: IThrowingRepoOptions): Promise<Cluster[]>;
|
|
744
585
|
}
|
|
745
586
|
import { ClusterDef, ClusterDefCriteria } from "../contracts";
|
|
746
587
|
declare class ClusterDefCruds {
|
|
747
588
|
private core;
|
|
748
589
|
constructor(core: ApiClientBase);
|
|
749
|
-
/**
|
|
750
|
-
|
|
751
|
-
|
|
590
|
+
/** Deletes each existing ClusterDef that satisfies the given criteria. */
|
|
591
|
+
tryDeleteWhere(request: ClusterDefCriteria, options?: IRepoOptions): Promise<BatchResult<ClusterDef>>;
|
|
592
|
+
deleteWhere(request: ClusterDefCriteria, options?: IThrowingRepoOptions): Promise<ClusterDef[]>;
|
|
752
593
|
/** Retrieves all the existing ClusterDef that satisfy the given criteria. */
|
|
753
594
|
tryReadMany(request: ClusterDefCriteria, options?: IRepoOptions): Promise<ListResult<ClusterDef>>;
|
|
754
595
|
readMany(request: ClusterDefCriteria, options?: IThrowingRepoOptions): Promise<ClusterDef[]>;
|
|
755
|
-
/** Overwrites each existing ClusterDef. */
|
|
756
|
-
tryUpdateMany(request: Array<ClusterDef>, options?: IRepoOptions): Promise<BatchResult<ClusterDef>>;
|
|
757
|
-
updateMany(request: Array<ClusterDef>, options?: IThrowingRepoOptions): Promise<ClusterDef[]>;
|
|
758
596
|
/** Performs the given operations on each existing ClusterDef that satisfies the given criteria. */
|
|
759
597
|
tryPatchWhere(request: PatchSpecForMany<ClusterDef, ClusterDefCriteria>, options?: IRepoOptions): Promise<BatchResult<ClusterDef>>;
|
|
760
598
|
patchWhere(request: PatchSpecForMany<ClusterDef, ClusterDefCriteria>, options?: IThrowingRepoOptions): Promise<ClusterDef[]>;
|
|
761
|
-
/**
|
|
762
|
-
|
|
763
|
-
|
|
599
|
+
/** Saves each given input as a new ClusterDef. */
|
|
600
|
+
tryCreateMany(request: Array<ClusterDef>, options?: IRepoOptions): Promise<BatchResult<ClusterDef>>;
|
|
601
|
+
createMany(request: Array<ClusterDef>, options?: IThrowingRepoOptions): Promise<ClusterDef[]>;
|
|
602
|
+
/** Overwrites each existing ClusterDef. */
|
|
603
|
+
tryUpdateMany(request: Array<ClusterDef>, options?: IRepoOptions): Promise<BatchResult<ClusterDef>>;
|
|
604
|
+
updateMany(request: Array<ClusterDef>, options?: IThrowingRepoOptions): Promise<ClusterDef[]>;
|
|
605
|
+
/** Deletes the existing ClusterDef. */
|
|
606
|
+
tryDelete(request: IdSpecFor<ClusterDef>, options?: IRepoOptions): Promise<SingleResult<ClusterDef>>;
|
|
607
|
+
delete(request: IdSpecFor<ClusterDef>, options?: IThrowingRepoOptions): Promise<ClusterDef>;
|
|
764
608
|
/** Retrieves the single, uniquely identified ClusterDef. */
|
|
765
609
|
tryRead(request: IdSpecFor<ClusterDef>, options?: IRepoOptions): Promise<SingleResult<ClusterDef>>;
|
|
766
610
|
read(request: IdSpecFor<ClusterDef>, options?: IThrowingRepoOptions): Promise<ClusterDef>;
|
|
767
|
-
/** Overwrites the existing ClusterDef. */
|
|
768
|
-
tryUpdate(request: ClusterDef, options?: IRepoOptions): Promise<SingleResult<ClusterDef>>;
|
|
769
|
-
update(request: ClusterDef, options?: IThrowingRepoOptions): Promise<ClusterDef>;
|
|
770
611
|
/** Performs the given operations on the existing ClusterDef. */
|
|
771
612
|
tryPatch(request: PatchSpecForOne<ClusterDef>, options?: IRepoOptions): Promise<SingleResult<ClusterDef>>;
|
|
772
613
|
patch(request: PatchSpecForOne<ClusterDef>, options?: IThrowingRepoOptions): Promise<ClusterDef>;
|
|
773
|
-
/**
|
|
774
|
-
|
|
775
|
-
|
|
614
|
+
/** Overwrites the existing ClusterDef. */
|
|
615
|
+
tryUpdate(request: ClusterDef, options?: IRepoOptions): Promise<SingleResult<ClusterDef>>;
|
|
616
|
+
update(request: ClusterDef, options?: IThrowingRepoOptions): Promise<ClusterDef>;
|
|
776
617
|
/** Overwrites the given properties of the existing ClusterDef. */
|
|
777
|
-
tryUpdatePartial(request:
|
|
778
|
-
updatePartial(request:
|
|
618
|
+
tryUpdatePartial(request: ClusterDef, options?: IRepoOptions): Promise<SingleResult<PartialWithId<ClusterDef>>>;
|
|
619
|
+
updatePartial(request: ClusterDef, options?: IThrowingRepoOptions): Promise<PartialWithId<ClusterDef>>;
|
|
779
620
|
/** Saves the input as a new ClusterDef. */
|
|
780
621
|
tryCreate(request: ClusterDef, options?: IRepoOptions): Promise<SingleResult<ClusterDef>>;
|
|
781
622
|
create(request: ClusterDef, options?: IThrowingRepoOptions): Promise<ClusterDef>;
|
|
782
|
-
/** Performs the given operation on each existing ClusterDef that satisfies the given criteria. */
|
|
783
|
-
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<ClusterDef, ClusterDefCriteria>, options?: IRepoOptions): Promise<BatchResult<ClusterDef>>;
|
|
784
|
-
UpdatePartialWhere(request: UpdatePartialWhereRequest<ClusterDef, ClusterDefCriteria>, options?: IThrowingRepoOptions): Promise<ClusterDef[]>;
|
|
785
623
|
/** Overwrites the given properties for each existing ClusterDef. */
|
|
786
624
|
tryUpdatePartialMany(request: Array<ClusterDef>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<ClusterDef>>>;
|
|
787
625
|
updatePartialMany(request: Array<ClusterDef>, options?: IThrowingRepoOptions): Promise<PartialWithId<ClusterDef>[]>;
|
|
788
|
-
/**
|
|
789
|
-
|
|
790
|
-
|
|
626
|
+
/** Performs the given operation on each existing ClusterDef that satisfies the given criteria. */
|
|
627
|
+
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<ClusterDef, ClusterDefCriteria>, options?: IRepoOptions): Promise<BatchResult<ClusterDef>>;
|
|
628
|
+
UpdatePartialWhere(request: UpdatePartialWhereRequest<ClusterDef, ClusterDefCriteria>, options?: IThrowingRepoOptions): Promise<ClusterDef[]>;
|
|
791
629
|
/** 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). */
|
|
792
630
|
tryUpsert(request: ClusterDef, options?: IRepoOptions): Promise<SingleResult<ClusterDef>>;
|
|
793
631
|
upsert(request: ClusterDef, options?: IThrowingRepoOptions): Promise<ClusterDef>;
|
|
632
|
+
/** 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). */
|
|
633
|
+
tryUpsertMany(request: Array<ClusterDef>, options?: IRepoOptions): Promise<BatchResult<ClusterDef>>;
|
|
634
|
+
upsertMany(request: Array<ClusterDef>, options?: IThrowingRepoOptions): Promise<ClusterDef[]>;
|
|
794
635
|
}
|
|
795
636
|
import { ClusterGrant, ClusterGrantCriteria } from "../contracts";
|
|
796
637
|
declare class ClusterGrantCruds {
|
|
797
638
|
private core;
|
|
798
639
|
constructor(core: ApiClientBase);
|
|
799
|
-
/**
|
|
800
|
-
|
|
801
|
-
|
|
640
|
+
/** Deletes each existing ClusterGrant that satisfies the given criteria. */
|
|
641
|
+
tryDeleteWhere(request: ClusterGrantCriteria, options?: IRepoOptions): Promise<BatchResult<ClusterGrant>>;
|
|
642
|
+
deleteWhere(request: ClusterGrantCriteria, options?: IThrowingRepoOptions): Promise<ClusterGrant[]>;
|
|
802
643
|
/** Retrieves all the existing ClusterGrant that satisfy the given criteria. */
|
|
803
644
|
tryReadMany(request: ClusterGrantCriteria, options?: IRepoOptions): Promise<ListResult<ClusterGrant>>;
|
|
804
645
|
readMany(request: ClusterGrantCriteria, options?: IThrowingRepoOptions): Promise<ClusterGrant[]>;
|
|
805
|
-
/** Overwrites each existing ClusterGrant. */
|
|
806
|
-
tryUpdateMany(request: Array<ClusterGrant>, options?: IRepoOptions): Promise<BatchResult<ClusterGrant>>;
|
|
807
|
-
updateMany(request: Array<ClusterGrant>, options?: IThrowingRepoOptions): Promise<ClusterGrant[]>;
|
|
808
646
|
/** Performs the given operations on each existing ClusterGrant that satisfies the given criteria. */
|
|
809
647
|
tryPatchWhere(request: PatchSpecForMany<ClusterGrant, ClusterGrantCriteria>, options?: IRepoOptions): Promise<BatchResult<ClusterGrant>>;
|
|
810
648
|
patchWhere(request: PatchSpecForMany<ClusterGrant, ClusterGrantCriteria>, options?: IThrowingRepoOptions): Promise<ClusterGrant[]>;
|
|
811
|
-
/**
|
|
812
|
-
|
|
813
|
-
|
|
649
|
+
/** Saves each given input as a new ClusterGrant. */
|
|
650
|
+
tryCreateMany(request: Array<ClusterGrant>, options?: IRepoOptions): Promise<BatchResult<ClusterGrant>>;
|
|
651
|
+
createMany(request: Array<ClusterGrant>, options?: IThrowingRepoOptions): Promise<ClusterGrant[]>;
|
|
652
|
+
/** Overwrites each existing ClusterGrant. */
|
|
653
|
+
tryUpdateMany(request: Array<ClusterGrant>, options?: IRepoOptions): Promise<BatchResult<ClusterGrant>>;
|
|
654
|
+
updateMany(request: Array<ClusterGrant>, options?: IThrowingRepoOptions): Promise<ClusterGrant[]>;
|
|
655
|
+
/** Deletes the existing ClusterGrant. */
|
|
656
|
+
tryDelete(request: IdSpecFor<ClusterGrant>, options?: IRepoOptions): Promise<SingleResult<ClusterGrant>>;
|
|
657
|
+
delete(request: IdSpecFor<ClusterGrant>, options?: IThrowingRepoOptions): Promise<ClusterGrant>;
|
|
814
658
|
/** Retrieves the single, uniquely identified ClusterGrant. */
|
|
815
659
|
tryRead(request: IdSpecFor<ClusterGrant>, options?: IRepoOptions): Promise<SingleResult<ClusterGrant>>;
|
|
816
660
|
read(request: IdSpecFor<ClusterGrant>, options?: IThrowingRepoOptions): Promise<ClusterGrant>;
|
|
817
|
-
/** Overwrites the existing ClusterGrant. */
|
|
818
|
-
tryUpdate(request: ClusterGrant, options?: IRepoOptions): Promise<SingleResult<ClusterGrant>>;
|
|
819
|
-
update(request: ClusterGrant, options?: IThrowingRepoOptions): Promise<ClusterGrant>;
|
|
820
661
|
/** Performs the given operations on the existing ClusterGrant. */
|
|
821
662
|
tryPatch(request: PatchSpecForOne<ClusterGrant>, options?: IRepoOptions): Promise<SingleResult<ClusterGrant>>;
|
|
822
663
|
patch(request: PatchSpecForOne<ClusterGrant>, options?: IThrowingRepoOptions): Promise<ClusterGrant>;
|
|
823
|
-
/**
|
|
824
|
-
|
|
825
|
-
|
|
664
|
+
/** Overwrites the existing ClusterGrant. */
|
|
665
|
+
tryUpdate(request: ClusterGrant, options?: IRepoOptions): Promise<SingleResult<ClusterGrant>>;
|
|
666
|
+
update(request: ClusterGrant, options?: IThrowingRepoOptions): Promise<ClusterGrant>;
|
|
826
667
|
/** Overwrites the given properties of the existing ClusterGrant. */
|
|
827
668
|
tryUpdatePartial(request: ClusterGrant, options?: IRepoOptions): Promise<SingleResult<PartialWithId<ClusterGrant>>>;
|
|
828
669
|
updatePartial(request: ClusterGrant, options?: IThrowingRepoOptions): Promise<PartialWithId<ClusterGrant>>;
|
|
829
670
|
/** Saves the input as a new ClusterGrant. */
|
|
830
671
|
tryCreate(request: ClusterGrant, options?: IRepoOptions): Promise<SingleResult<ClusterGrant>>;
|
|
831
672
|
create(request: ClusterGrant, options?: IThrowingRepoOptions): Promise<ClusterGrant>;
|
|
832
|
-
/** Performs the given operation on each existing ClusterGrant that satisfies the given criteria. */
|
|
833
|
-
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<ClusterGrant, ClusterGrantCriteria>, options?: IRepoOptions): Promise<BatchResult<ClusterGrant>>;
|
|
834
|
-
UpdatePartialWhere(request: UpdatePartialWhereRequest<ClusterGrant, ClusterGrantCriteria>, options?: IThrowingRepoOptions): Promise<ClusterGrant[]>;
|
|
835
673
|
/** Overwrites the given properties for each existing ClusterGrant. */
|
|
836
674
|
tryUpdatePartialMany(request: Array<ClusterGrant>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<ClusterGrant>>>;
|
|
837
675
|
updatePartialMany(request: Array<ClusterGrant>, options?: IThrowingRepoOptions): Promise<PartialWithId<ClusterGrant>[]>;
|
|
838
|
-
/**
|
|
839
|
-
|
|
840
|
-
|
|
676
|
+
/** Performs the given operation on each existing ClusterGrant that satisfies the given criteria. */
|
|
677
|
+
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<ClusterGrant, ClusterGrantCriteria>, options?: IRepoOptions): Promise<BatchResult<ClusterGrant>>;
|
|
678
|
+
UpdatePartialWhere(request: UpdatePartialWhereRequest<ClusterGrant, ClusterGrantCriteria>, options?: IThrowingRepoOptions): Promise<ClusterGrant[]>;
|
|
841
679
|
/** 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). */
|
|
842
680
|
tryUpsert(request: ClusterGrant, options?: IRepoOptions): Promise<SingleResult<ClusterGrant>>;
|
|
843
681
|
upsert(request: ClusterGrant, options?: IThrowingRepoOptions): Promise<ClusterGrant>;
|
|
682
|
+
/** 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). */
|
|
683
|
+
tryUpsertMany(request: Array<ClusterGrant>, options?: IRepoOptions): Promise<BatchResult<ClusterGrant>>;
|
|
684
|
+
upsertMany(request: Array<ClusterGrant>, options?: IThrowingRepoOptions): Promise<ClusterGrant[]>;
|
|
844
685
|
}
|
|
845
|
-
import {
|
|
846
|
-
declare class
|
|
686
|
+
import { CodiacTenant, CodiacTenantCriteria } from "../contracts";
|
|
687
|
+
declare class CodiacTenantCruds {
|
|
847
688
|
private core;
|
|
848
689
|
constructor(core: ApiClientBase);
|
|
849
|
-
/**
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
/** Retrieves all the existing
|
|
853
|
-
tryReadMany(request:
|
|
854
|
-
readMany(request:
|
|
855
|
-
/**
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
/**
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
/**
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
/**
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
/**
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
/** Performs the given operations on the existing
|
|
871
|
-
tryPatch(request: PatchSpecForOne<
|
|
872
|
-
patch(request: PatchSpecForOne<
|
|
873
|
-
/**
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
/** Overwrites the given properties of the existing
|
|
877
|
-
tryUpdatePartial(request:
|
|
878
|
-
updatePartial(request:
|
|
879
|
-
/** Saves the input as a new
|
|
880
|
-
tryCreate(request:
|
|
881
|
-
create(request:
|
|
882
|
-
/**
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
/**
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
/** Saves
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
/** Saves
|
|
892
|
-
|
|
893
|
-
|
|
690
|
+
/** Deletes each existing CodiacTenant that satisfies the given criteria. */
|
|
691
|
+
tryDeleteWhere(request: CodiacTenantCriteria, options?: IRepoOptions): Promise<BatchResult<CodiacTenant>>;
|
|
692
|
+
deleteWhere(request: CodiacTenantCriteria, options?: IThrowingRepoOptions): Promise<CodiacTenant[]>;
|
|
693
|
+
/** Retrieves all the existing CodiacTenant that satisfy the given criteria. */
|
|
694
|
+
tryReadMany(request: CodiacTenantCriteria, options?: IRepoOptions): Promise<ListResult<CodiacTenant>>;
|
|
695
|
+
readMany(request: CodiacTenantCriteria, options?: IThrowingRepoOptions): Promise<CodiacTenant[]>;
|
|
696
|
+
/** Performs the given operations on each existing CodiacTenant that satisfies the given criteria. */
|
|
697
|
+
tryPatchWhere(request: PatchSpecForMany<CodiacTenant, CodiacTenantCriteria>, options?: IRepoOptions): Promise<BatchResult<CodiacTenant>>;
|
|
698
|
+
patchWhere(request: PatchSpecForMany<CodiacTenant, CodiacTenantCriteria>, options?: IThrowingRepoOptions): Promise<CodiacTenant[]>;
|
|
699
|
+
/** Saves each given input as a new CodiacTenant. */
|
|
700
|
+
tryCreateMany(request: Array<CodiacTenant>, options?: IRepoOptions): Promise<BatchResult<CodiacTenant>>;
|
|
701
|
+
createMany(request: Array<CodiacTenant>, options?: IThrowingRepoOptions): Promise<CodiacTenant[]>;
|
|
702
|
+
/** Overwrites each existing CodiacTenant. */
|
|
703
|
+
tryUpdateMany(request: Array<CodiacTenant>, options?: IRepoOptions): Promise<BatchResult<CodiacTenant>>;
|
|
704
|
+
updateMany(request: Array<CodiacTenant>, options?: IThrowingRepoOptions): Promise<CodiacTenant[]>;
|
|
705
|
+
/** Deletes the existing CodiacTenant. */
|
|
706
|
+
tryDelete(request: IdSpecFor<CodiacTenant>, options?: IRepoOptions): Promise<SingleResult<CodiacTenant>>;
|
|
707
|
+
delete(request: IdSpecFor<CodiacTenant>, options?: IThrowingRepoOptions): Promise<CodiacTenant>;
|
|
708
|
+
/** Retrieves the single, uniquely identified CodiacTenant. */
|
|
709
|
+
tryRead(request: IdSpecFor<CodiacTenant>, options?: IRepoOptions): Promise<SingleResult<CodiacTenant>>;
|
|
710
|
+
read(request: IdSpecFor<CodiacTenant>, options?: IThrowingRepoOptions): Promise<CodiacTenant>;
|
|
711
|
+
/** Performs the given operations on the existing CodiacTenant. */
|
|
712
|
+
tryPatch(request: PatchSpecForOne<CodiacTenant>, options?: IRepoOptions): Promise<SingleResult<CodiacTenant>>;
|
|
713
|
+
patch(request: PatchSpecForOne<CodiacTenant>, options?: IThrowingRepoOptions): Promise<CodiacTenant>;
|
|
714
|
+
/** Overwrites the existing CodiacTenant. */
|
|
715
|
+
tryUpdate(request: CodiacTenant, options?: IRepoOptions): Promise<SingleResult<CodiacTenant>>;
|
|
716
|
+
update(request: CodiacTenant, options?: IThrowingRepoOptions): Promise<CodiacTenant>;
|
|
717
|
+
/** Overwrites the given properties of the existing CodiacTenant. */
|
|
718
|
+
tryUpdatePartial(request: CodiacTenant, options?: IRepoOptions): Promise<SingleResult<PartialWithId<CodiacTenant>>>;
|
|
719
|
+
updatePartial(request: CodiacTenant, options?: IThrowingRepoOptions): Promise<PartialWithId<CodiacTenant>>;
|
|
720
|
+
/** Saves the input as a new CodiacTenant. */
|
|
721
|
+
tryCreate(request: CodiacTenant, options?: IRepoOptions): Promise<SingleResult<CodiacTenant>>;
|
|
722
|
+
create(request: CodiacTenant, options?: IThrowingRepoOptions): Promise<CodiacTenant>;
|
|
723
|
+
/** Overwrites the given properties for each existing CodiacTenant. */
|
|
724
|
+
tryUpdatePartialMany(request: Array<CodiacTenant>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<CodiacTenant>>>;
|
|
725
|
+
updatePartialMany(request: Array<CodiacTenant>, options?: IThrowingRepoOptions): Promise<PartialWithId<CodiacTenant>[]>;
|
|
726
|
+
/** Performs the given operation on each existing CodiacTenant that satisfies the given criteria. */
|
|
727
|
+
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<CodiacTenant, CodiacTenantCriteria>, options?: IRepoOptions): Promise<BatchResult<CodiacTenant>>;
|
|
728
|
+
UpdatePartialWhere(request: UpdatePartialWhereRequest<CodiacTenant, CodiacTenantCriteria>, options?: IThrowingRepoOptions): Promise<CodiacTenant[]>;
|
|
729
|
+
/** 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). */
|
|
730
|
+
tryUpsert(request: CodiacTenant, options?: IRepoOptions): Promise<SingleResult<CodiacTenant>>;
|
|
731
|
+
upsert(request: CodiacTenant, options?: IThrowingRepoOptions): Promise<CodiacTenant>;
|
|
732
|
+
/** 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). */
|
|
733
|
+
tryUpsertMany(request: Array<CodiacTenant>, options?: IRepoOptions): Promise<BatchResult<CodiacTenant>>;
|
|
734
|
+
upsertMany(request: Array<CodiacTenant>, options?: IThrowingRepoOptions): Promise<CodiacTenant[]>;
|
|
735
|
+
}
|
|
736
|
+
declare class CodiacUserCruds {
|
|
737
|
+
private core;
|
|
738
|
+
constructor(core: ApiClientBase);
|
|
739
|
+
/** Retrieves all the existing CodiacUser that satisfy the given criteria. */
|
|
740
|
+
tryReadMany(request: CodiacUserCriteria, options?: IRepoOptions): Promise<ListResult<CodiacUser>>;
|
|
741
|
+
readMany(request: CodiacUserCriteria, options?: IThrowingRepoOptions): Promise<CodiacUser[]>;
|
|
742
|
+
/** Retrieves the single, uniquely identified CodiacUser. */
|
|
743
|
+
tryRead(request: IdSpecFor<CodiacUser>, options?: IRepoOptions): Promise<SingleResult<CodiacUser>>;
|
|
744
|
+
read(request: IdSpecFor<CodiacUser>, options?: IThrowingRepoOptions): Promise<CodiacUser>;
|
|
894
745
|
}
|
|
895
746
|
import { Comment, CommentCriteria } from "../contracts";
|
|
896
747
|
declare class CommentCruds {
|
|
897
748
|
private core;
|
|
898
749
|
constructor(core: ApiClientBase);
|
|
899
|
-
/**
|
|
900
|
-
|
|
901
|
-
|
|
750
|
+
/** Deletes each existing Comment that satisfies the given criteria. */
|
|
751
|
+
tryDeleteWhere(request: CommentCriteria, options?: IRepoOptions): Promise<BatchResult<Comment>>;
|
|
752
|
+
deleteWhere(request: CommentCriteria, options?: IThrowingRepoOptions): Promise<Comment[]>;
|
|
902
753
|
/** Retrieves all the existing Comment that satisfy the given criteria. */
|
|
903
754
|
tryReadMany(request: CommentCriteria, options?: IRepoOptions): Promise<ListResult<Comment>>;
|
|
904
755
|
readMany(request: CommentCriteria, options?: IThrowingRepoOptions): Promise<Comment[]>;
|
|
905
|
-
/** Overwrites each existing Comment. */
|
|
906
|
-
tryUpdateMany(request: Array<Comment>, options?: IRepoOptions): Promise<BatchResult<Comment>>;
|
|
907
|
-
updateMany(request: Array<Comment>, options?: IThrowingRepoOptions): Promise<Comment[]>;
|
|
908
756
|
/** Performs the given operations on each existing Comment that satisfies the given criteria. */
|
|
909
757
|
tryPatchWhere(request: PatchSpecForMany<Comment, CommentCriteria>, options?: IRepoOptions): Promise<BatchResult<Comment>>;
|
|
910
758
|
patchWhere(request: PatchSpecForMany<Comment, CommentCriteria>, options?: IThrowingRepoOptions): Promise<Comment[]>;
|
|
911
|
-
/**
|
|
912
|
-
|
|
913
|
-
|
|
759
|
+
/** Saves each given input as a new Comment. */
|
|
760
|
+
tryCreateMany(request: Array<Comment>, options?: IRepoOptions): Promise<BatchResult<Comment>>;
|
|
761
|
+
createMany(request: Array<Comment>, options?: IThrowingRepoOptions): Promise<Comment[]>;
|
|
762
|
+
/** Overwrites each existing Comment. */
|
|
763
|
+
tryUpdateMany(request: Array<Comment>, options?: IRepoOptions): Promise<BatchResult<Comment>>;
|
|
764
|
+
updateMany(request: Array<Comment>, options?: IThrowingRepoOptions): Promise<Comment[]>;
|
|
765
|
+
/** Deletes the existing Comment. */
|
|
766
|
+
tryDelete(request: IdSpecFor<Comment>, options?: IRepoOptions): Promise<SingleResult<Comment>>;
|
|
767
|
+
delete(request: IdSpecFor<Comment>, options?: IThrowingRepoOptions): Promise<Comment>;
|
|
914
768
|
/** Retrieves the single, uniquely identified Comment. */
|
|
915
769
|
tryRead(request: IdSpecFor<Comment>, options?: IRepoOptions): Promise<SingleResult<Comment>>;
|
|
916
770
|
read(request: IdSpecFor<Comment>, options?: IThrowingRepoOptions): Promise<Comment>;
|
|
917
|
-
/** Overwrites the existing Comment. */
|
|
918
|
-
tryUpdate(request: Comment, options?: IRepoOptions): Promise<SingleResult<Comment>>;
|
|
919
|
-
update(request: Comment, options?: IThrowingRepoOptions): Promise<Comment>;
|
|
920
771
|
/** Performs the given operations on the existing Comment. */
|
|
921
772
|
tryPatch(request: PatchSpecForOne<Comment>, options?: IRepoOptions): Promise<SingleResult<Comment>>;
|
|
922
773
|
patch(request: PatchSpecForOne<Comment>, options?: IThrowingRepoOptions): Promise<Comment>;
|
|
923
|
-
/**
|
|
924
|
-
|
|
925
|
-
|
|
774
|
+
/** Overwrites the existing Comment. */
|
|
775
|
+
tryUpdate(request: Comment, options?: IRepoOptions): Promise<SingleResult<Comment>>;
|
|
776
|
+
update(request: Comment, options?: IThrowingRepoOptions): Promise<Comment>;
|
|
926
777
|
/** Overwrites the given properties of the existing Comment. */
|
|
927
778
|
tryUpdatePartial(request: Comment, options?: IRepoOptions): Promise<SingleResult<PartialWithId<Comment>>>;
|
|
928
779
|
updatePartial(request: Comment, options?: IThrowingRepoOptions): Promise<PartialWithId<Comment>>;
|
|
929
780
|
/** Saves the input as a new Comment. */
|
|
930
781
|
tryCreate(request: Comment, options?: IRepoOptions): Promise<SingleResult<Comment>>;
|
|
931
782
|
create(request: Comment, options?: IThrowingRepoOptions): Promise<Comment>;
|
|
932
|
-
/** Performs the given operation on each existing Comment that satisfies the given criteria. */
|
|
933
|
-
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<Comment, CommentCriteria>, options?: IRepoOptions): Promise<BatchResult<Comment>>;
|
|
934
|
-
UpdatePartialWhere(request: UpdatePartialWhereRequest<Comment, CommentCriteria>, options?: IThrowingRepoOptions): Promise<Comment[]>;
|
|
935
783
|
/** Overwrites the given properties for each existing Comment. */
|
|
936
784
|
tryUpdatePartialMany(request: Array<Comment>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<Comment>>>;
|
|
937
785
|
updatePartialMany(request: Array<Comment>, options?: IThrowingRepoOptions): Promise<PartialWithId<Comment>[]>;
|
|
938
|
-
/**
|
|
939
|
-
|
|
940
|
-
|
|
786
|
+
/** Performs the given operation on each existing Comment that satisfies the given criteria. */
|
|
787
|
+
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<Comment, CommentCriteria>, options?: IRepoOptions): Promise<BatchResult<Comment>>;
|
|
788
|
+
UpdatePartialWhere(request: UpdatePartialWhereRequest<Comment, CommentCriteria>, options?: IThrowingRepoOptions): Promise<Comment[]>;
|
|
941
789
|
/** 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). */
|
|
942
790
|
tryUpsert(request: Comment, options?: IRepoOptions): Promise<SingleResult<Comment>>;
|
|
943
791
|
upsert(request: Comment, options?: IThrowingRepoOptions): Promise<Comment>;
|
|
792
|
+
/** 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). */
|
|
793
|
+
tryUpsertMany(request: Array<Comment>, options?: IRepoOptions): Promise<BatchResult<Comment>>;
|
|
794
|
+
upsertMany(request: Array<Comment>, options?: IThrowingRepoOptions): Promise<Comment[]>;
|
|
944
795
|
}
|
|
945
796
|
import { ConfigChange, ConfigChangeCriteria } from "../contracts";
|
|
946
797
|
declare class ConfigChangeCruds {
|
|
947
798
|
private core;
|
|
948
799
|
constructor(core: ApiClientBase);
|
|
949
|
-
/**
|
|
950
|
-
|
|
951
|
-
|
|
800
|
+
/** Deletes each existing ConfigChange that satisfies the given criteria. */
|
|
801
|
+
tryDeleteWhere(request: ConfigChangeCriteria, options?: IRepoOptions): Promise<BatchResult<ConfigChange>>;
|
|
802
|
+
deleteWhere(request: ConfigChangeCriteria, options?: IThrowingRepoOptions): Promise<ConfigChange[]>;
|
|
952
803
|
/** Retrieves all the existing ConfigChange that satisfy the given criteria. */
|
|
953
804
|
tryReadMany(request: ConfigChangeCriteria, options?: IRepoOptions): Promise<ListResult<ConfigChange>>;
|
|
954
805
|
readMany(request: ConfigChangeCriteria, options?: IThrowingRepoOptions): Promise<ConfigChange[]>;
|
|
955
|
-
/** Overwrites each existing ConfigChange. */
|
|
956
|
-
tryUpdateMany(request: Array<ConfigChange>, options?: IRepoOptions): Promise<BatchResult<ConfigChange>>;
|
|
957
|
-
updateMany(request: Array<ConfigChange>, options?: IThrowingRepoOptions): Promise<ConfigChange[]>;
|
|
958
806
|
/** Performs the given operations on each existing ConfigChange that satisfies the given criteria. */
|
|
959
807
|
tryPatchWhere(request: PatchSpecForMany<ConfigChange, ConfigChangeCriteria>, options?: IRepoOptions): Promise<BatchResult<ConfigChange>>;
|
|
960
808
|
patchWhere(request: PatchSpecForMany<ConfigChange, ConfigChangeCriteria>, options?: IThrowingRepoOptions): Promise<ConfigChange[]>;
|
|
961
|
-
/**
|
|
962
|
-
|
|
963
|
-
|
|
809
|
+
/** Saves each given input as a new ConfigChange. */
|
|
810
|
+
tryCreateMany(request: Array<ConfigChange>, options?: IRepoOptions): Promise<BatchResult<ConfigChange>>;
|
|
811
|
+
createMany(request: Array<ConfigChange>, options?: IThrowingRepoOptions): Promise<ConfigChange[]>;
|
|
812
|
+
/** Overwrites each existing ConfigChange. */
|
|
813
|
+
tryUpdateMany(request: Array<ConfigChange>, options?: IRepoOptions): Promise<BatchResult<ConfigChange>>;
|
|
814
|
+
updateMany(request: Array<ConfigChange>, options?: IThrowingRepoOptions): Promise<ConfigChange[]>;
|
|
815
|
+
/** Deletes the existing ConfigChange. */
|
|
816
|
+
tryDelete(request: IdSpecFor<ConfigChange>, options?: IRepoOptions): Promise<SingleResult<ConfigChange>>;
|
|
817
|
+
delete(request: IdSpecFor<ConfigChange>, options?: IThrowingRepoOptions): Promise<ConfigChange>;
|
|
964
818
|
/** Retrieves the single, uniquely identified ConfigChange. */
|
|
965
819
|
tryRead(request: IdSpecFor<ConfigChange>, options?: IRepoOptions): Promise<SingleResult<ConfigChange>>;
|
|
966
820
|
read(request: IdSpecFor<ConfigChange>, options?: IThrowingRepoOptions): Promise<ConfigChange>;
|
|
967
|
-
/** Overwrites the existing ConfigChange. */
|
|
968
|
-
tryUpdate(request: ConfigChange, options?: IRepoOptions): Promise<SingleResult<ConfigChange>>;
|
|
969
|
-
update(request: ConfigChange, options?: IThrowingRepoOptions): Promise<ConfigChange>;
|
|
970
821
|
/** Performs the given operations on the existing ConfigChange. */
|
|
971
|
-
tryPatch(request: PatchSpecForOne<ConfigChange>, options?: IRepoOptions): Promise<SingleResult<ConfigChange>>;
|
|
972
|
-
patch(request: PatchSpecForOne<ConfigChange>, options?: IThrowingRepoOptions): Promise<ConfigChange>;
|
|
973
|
-
/**
|
|
974
|
-
|
|
975
|
-
|
|
822
|
+
tryPatch(request: PatchSpecForOne<ConfigChange>, options?: IRepoOptions): Promise<SingleResult<ConfigChange>>;
|
|
823
|
+
patch(request: PatchSpecForOne<ConfigChange>, options?: IThrowingRepoOptions): Promise<ConfigChange>;
|
|
824
|
+
/** Overwrites the existing ConfigChange. */
|
|
825
|
+
tryUpdate(request: ConfigChange, options?: IRepoOptions): Promise<SingleResult<ConfigChange>>;
|
|
826
|
+
update(request: ConfigChange, options?: IThrowingRepoOptions): Promise<ConfigChange>;
|
|
976
827
|
/** Overwrites the given properties of the existing ConfigChange. */
|
|
977
828
|
tryUpdatePartial(request: ConfigChange, options?: IRepoOptions): Promise<SingleResult<PartialWithId<ConfigChange>>>;
|
|
978
829
|
updatePartial(request: ConfigChange, options?: IThrowingRepoOptions): Promise<PartialWithId<ConfigChange>>;
|
|
979
830
|
/** Saves the input as a new ConfigChange. */
|
|
980
831
|
tryCreate(request: ConfigChange, options?: IRepoOptions): Promise<SingleResult<ConfigChange>>;
|
|
981
832
|
create(request: ConfigChange, options?: IThrowingRepoOptions): Promise<ConfigChange>;
|
|
982
|
-
/** Performs the given operation on each existing ConfigChange that satisfies the given criteria. */
|
|
983
|
-
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<ConfigChange, ConfigChangeCriteria>, options?: IRepoOptions): Promise<BatchResult<ConfigChange>>;
|
|
984
|
-
UpdatePartialWhere(request: UpdatePartialWhereRequest<ConfigChange, ConfigChangeCriteria>, options?: IThrowingRepoOptions): Promise<ConfigChange[]>;
|
|
985
833
|
/** Overwrites the given properties for each existing ConfigChange. */
|
|
986
834
|
tryUpdatePartialMany(request: Array<ConfigChange>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<ConfigChange>>>;
|
|
987
835
|
updatePartialMany(request: Array<ConfigChange>, options?: IThrowingRepoOptions): Promise<PartialWithId<ConfigChange>[]>;
|
|
988
|
-
/**
|
|
989
|
-
|
|
990
|
-
|
|
836
|
+
/** Performs the given operation on each existing ConfigChange that satisfies the given criteria. */
|
|
837
|
+
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<ConfigChange, ConfigChangeCriteria>, options?: IRepoOptions): Promise<BatchResult<ConfigChange>>;
|
|
838
|
+
UpdatePartialWhere(request: UpdatePartialWhereRequest<ConfigChange, ConfigChangeCriteria>, options?: IThrowingRepoOptions): Promise<ConfigChange[]>;
|
|
991
839
|
/** 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). */
|
|
992
840
|
tryUpsert(request: ConfigChange, options?: IRepoOptions): Promise<SingleResult<ConfigChange>>;
|
|
993
841
|
upsert(request: ConfigChange, options?: IThrowingRepoOptions): Promise<ConfigChange>;
|
|
842
|
+
/** 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). */
|
|
843
|
+
tryUpsertMany(request: Array<ConfigChange>, options?: IRepoOptions): Promise<BatchResult<ConfigChange>>;
|
|
844
|
+
upsertMany(request: Array<ConfigChange>, options?: IThrowingRepoOptions): Promise<ConfigChange[]>;
|
|
845
|
+
}
|
|
846
|
+
import { ConfigDeploymentActivity, ConfigDeploymentActivityCriteria } from "../contracts";
|
|
847
|
+
declare class ConfigDeploymentActivityCruds {
|
|
848
|
+
private core;
|
|
849
|
+
constructor(core: ApiClientBase);
|
|
850
|
+
/** Deletes each existing ConfigDeploymentActivity that satisfies the given criteria. */
|
|
851
|
+
tryDeleteWhere(request: ConfigDeploymentActivityCriteria, options?: IRepoOptions): Promise<BatchResult<ConfigDeploymentActivity>>;
|
|
852
|
+
deleteWhere(request: ConfigDeploymentActivityCriteria, options?: IThrowingRepoOptions): Promise<ConfigDeploymentActivity[]>;
|
|
853
|
+
/** Retrieves all the existing ConfigDeploymentActivity that satisfy the given criteria. */
|
|
854
|
+
tryReadMany(request: ConfigDeploymentActivityCriteria, options?: IRepoOptions): Promise<ListResult<ConfigDeploymentActivity>>;
|
|
855
|
+
readMany(request: ConfigDeploymentActivityCriteria, options?: IThrowingRepoOptions): Promise<ConfigDeploymentActivity[]>;
|
|
856
|
+
/** Performs the given operations on each existing ConfigDeploymentActivity that satisfies the given criteria. */
|
|
857
|
+
tryPatchWhere(request: PatchSpecForMany<ConfigDeploymentActivity, ConfigDeploymentActivityCriteria>, options?: IRepoOptions): Promise<BatchResult<ConfigDeploymentActivity>>;
|
|
858
|
+
patchWhere(request: PatchSpecForMany<ConfigDeploymentActivity, ConfigDeploymentActivityCriteria>, options?: IThrowingRepoOptions): Promise<ConfigDeploymentActivity[]>;
|
|
859
|
+
/** Saves each given input as a new ConfigDeploymentActivity. */
|
|
860
|
+
tryCreateMany(request: Array<ConfigDeploymentActivity>, options?: IRepoOptions): Promise<BatchResult<ConfigDeploymentActivity>>;
|
|
861
|
+
createMany(request: Array<ConfigDeploymentActivity>, options?: IThrowingRepoOptions): Promise<ConfigDeploymentActivity[]>;
|
|
862
|
+
/** Overwrites each existing ConfigDeploymentActivity. */
|
|
863
|
+
tryUpdateMany(request: Array<ConfigDeploymentActivity>, options?: IRepoOptions): Promise<BatchResult<ConfigDeploymentActivity>>;
|
|
864
|
+
updateMany(request: Array<ConfigDeploymentActivity>, options?: IThrowingRepoOptions): Promise<ConfigDeploymentActivity[]>;
|
|
865
|
+
/** Deletes the existing ConfigDeploymentActivity. */
|
|
866
|
+
tryDelete(request: IdSpecFor<ConfigDeploymentActivity>, options?: IRepoOptions): Promise<SingleResult<ConfigDeploymentActivity>>;
|
|
867
|
+
delete(request: IdSpecFor<ConfigDeploymentActivity>, options?: IThrowingRepoOptions): Promise<ConfigDeploymentActivity>;
|
|
868
|
+
/** Retrieves the single, uniquely identified ConfigDeploymentActivity. */
|
|
869
|
+
tryRead(request: IdSpecFor<ConfigDeploymentActivity>, options?: IRepoOptions): Promise<SingleResult<ConfigDeploymentActivity>>;
|
|
870
|
+
read(request: IdSpecFor<ConfigDeploymentActivity>, options?: IThrowingRepoOptions): Promise<ConfigDeploymentActivity>;
|
|
871
|
+
/** Performs the given operations on the existing ConfigDeploymentActivity. */
|
|
872
|
+
tryPatch(request: PatchSpecForOne<ConfigDeploymentActivity>, options?: IRepoOptions): Promise<SingleResult<ConfigDeploymentActivity>>;
|
|
873
|
+
patch(request: PatchSpecForOne<ConfigDeploymentActivity>, options?: IThrowingRepoOptions): Promise<ConfigDeploymentActivity>;
|
|
874
|
+
/** Overwrites the existing ConfigDeploymentActivity. */
|
|
875
|
+
tryUpdate(request: ConfigDeploymentActivity, options?: IRepoOptions): Promise<SingleResult<ConfigDeploymentActivity>>;
|
|
876
|
+
update(request: ConfigDeploymentActivity, options?: IThrowingRepoOptions): Promise<ConfigDeploymentActivity>;
|
|
877
|
+
/** Overwrites the given properties of the existing ConfigDeploymentActivity. */
|
|
878
|
+
tryUpdatePartial(request: ConfigDeploymentActivity, options?: IRepoOptions): Promise<SingleResult<PartialWithId<ConfigDeploymentActivity>>>;
|
|
879
|
+
updatePartial(request: ConfigDeploymentActivity, options?: IThrowingRepoOptions): Promise<PartialWithId<ConfigDeploymentActivity>>;
|
|
880
|
+
/** Saves the input as a new ConfigDeploymentActivity. */
|
|
881
|
+
tryCreate(request: ConfigDeploymentActivity, options?: IRepoOptions): Promise<SingleResult<ConfigDeploymentActivity>>;
|
|
882
|
+
create(request: ConfigDeploymentActivity, options?: IThrowingRepoOptions): Promise<ConfigDeploymentActivity>;
|
|
883
|
+
/** Overwrites the given properties for each existing ConfigDeploymentActivity. */
|
|
884
|
+
tryUpdatePartialMany(request: Array<ConfigDeploymentActivity>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<ConfigDeploymentActivity>>>;
|
|
885
|
+
updatePartialMany(request: Array<ConfigDeploymentActivity>, options?: IThrowingRepoOptions): Promise<PartialWithId<ConfigDeploymentActivity>[]>;
|
|
886
|
+
/** Performs the given operation on each existing ConfigDeploymentActivity that satisfies the given criteria. */
|
|
887
|
+
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<ConfigDeploymentActivity, ConfigDeploymentActivityCriteria>, options?: IRepoOptions): Promise<BatchResult<ConfigDeploymentActivity>>;
|
|
888
|
+
UpdatePartialWhere(request: UpdatePartialWhereRequest<ConfigDeploymentActivity, ConfigDeploymentActivityCriteria>, options?: IThrowingRepoOptions): Promise<ConfigDeploymentActivity[]>;
|
|
889
|
+
/** 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). */
|
|
890
|
+
tryUpsert(request: ConfigDeploymentActivity, options?: IRepoOptions): Promise<SingleResult<ConfigDeploymentActivity>>;
|
|
891
|
+
upsert(request: ConfigDeploymentActivity, options?: IThrowingRepoOptions): Promise<ConfigDeploymentActivity>;
|
|
892
|
+
/** 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). */
|
|
893
|
+
tryUpsertMany(request: Array<ConfigDeploymentActivity>, options?: IRepoOptions): Promise<BatchResult<ConfigDeploymentActivity>>;
|
|
894
|
+
upsertMany(request: Array<ConfigDeploymentActivity>, options?: IThrowingRepoOptions): Promise<ConfigDeploymentActivity[]>;
|
|
994
895
|
}
|
|
995
896
|
import { ContainerFootprint, ContainerFootprintCriteria } from "../contracts";
|
|
996
897
|
declare class ContainerFootprintCruds {
|
|
997
898
|
private core;
|
|
998
899
|
constructor(core: ApiClientBase);
|
|
999
|
-
/**
|
|
1000
|
-
|
|
1001
|
-
|
|
900
|
+
/** Deletes each existing ContainerFootprint that satisfies the given criteria. */
|
|
901
|
+
tryDeleteWhere(request: ContainerFootprintCriteria, options?: IRepoOptions): Promise<BatchResult<ContainerFootprint>>;
|
|
902
|
+
deleteWhere(request: ContainerFootprintCriteria, options?: IThrowingRepoOptions): Promise<ContainerFootprint[]>;
|
|
1002
903
|
/** Retrieves all the existing ContainerFootprint that satisfy the given criteria. */
|
|
1003
904
|
tryReadMany(request: ContainerFootprintCriteria, options?: IRepoOptions): Promise<ListResult<ContainerFootprint>>;
|
|
1004
905
|
readMany(request: ContainerFootprintCriteria, options?: IThrowingRepoOptions): Promise<ContainerFootprint[]>;
|
|
1005
|
-
/** Overwrites each existing ContainerFootprint. */
|
|
1006
|
-
tryUpdateMany(request: Array<ContainerFootprint>, options?: IRepoOptions): Promise<BatchResult<ContainerFootprint>>;
|
|
1007
|
-
updateMany(request: Array<ContainerFootprint>, options?: IThrowingRepoOptions): Promise<ContainerFootprint[]>;
|
|
1008
906
|
/** Performs the given operations on each existing ContainerFootprint that satisfies the given criteria. */
|
|
1009
907
|
tryPatchWhere(request: PatchSpecForMany<ContainerFootprint, ContainerFootprintCriteria>, options?: IRepoOptions): Promise<BatchResult<ContainerFootprint>>;
|
|
1010
908
|
patchWhere(request: PatchSpecForMany<ContainerFootprint, ContainerFootprintCriteria>, options?: IThrowingRepoOptions): Promise<ContainerFootprint[]>;
|
|
1011
|
-
/**
|
|
1012
|
-
|
|
1013
|
-
|
|
909
|
+
/** Saves each given input as a new ContainerFootprint. */
|
|
910
|
+
tryCreateMany(request: Array<ContainerFootprint>, options?: IRepoOptions): Promise<BatchResult<ContainerFootprint>>;
|
|
911
|
+
createMany(request: Array<ContainerFootprint>, options?: IThrowingRepoOptions): Promise<ContainerFootprint[]>;
|
|
912
|
+
/** Overwrites each existing ContainerFootprint. */
|
|
913
|
+
tryUpdateMany(request: Array<ContainerFootprint>, options?: IRepoOptions): Promise<BatchResult<ContainerFootprint>>;
|
|
914
|
+
updateMany(request: Array<ContainerFootprint>, options?: IThrowingRepoOptions): Promise<ContainerFootprint[]>;
|
|
915
|
+
/** Deletes the existing ContainerFootprint. */
|
|
916
|
+
tryDelete(request: IdSpecFor<ContainerFootprint>, options?: IRepoOptions): Promise<SingleResult<ContainerFootprint>>;
|
|
917
|
+
delete(request: IdSpecFor<ContainerFootprint>, options?: IThrowingRepoOptions): Promise<ContainerFootprint>;
|
|
1014
918
|
/** Retrieves the single, uniquely identified ContainerFootprint. */
|
|
1015
919
|
tryRead(request: IdSpecFor<ContainerFootprint>, options?: IRepoOptions): Promise<SingleResult<ContainerFootprint>>;
|
|
1016
920
|
read(request: IdSpecFor<ContainerFootprint>, options?: IThrowingRepoOptions): Promise<ContainerFootprint>;
|
|
1017
|
-
/** Overwrites the existing ContainerFootprint. */
|
|
1018
|
-
tryUpdate(request: ContainerFootprint, options?: IRepoOptions): Promise<SingleResult<ContainerFootprint>>;
|
|
1019
|
-
update(request: ContainerFootprint, options?: IThrowingRepoOptions): Promise<ContainerFootprint>;
|
|
1020
921
|
/** Performs the given operations on the existing ContainerFootprint. */
|
|
1021
922
|
tryPatch(request: PatchSpecForOne<ContainerFootprint>, options?: IRepoOptions): Promise<SingleResult<ContainerFootprint>>;
|
|
1022
923
|
patch(request: PatchSpecForOne<ContainerFootprint>, options?: IThrowingRepoOptions): Promise<ContainerFootprint>;
|
|
1023
|
-
/**
|
|
1024
|
-
|
|
1025
|
-
|
|
924
|
+
/** Overwrites the existing ContainerFootprint. */
|
|
925
|
+
tryUpdate(request: ContainerFootprint, options?: IRepoOptions): Promise<SingleResult<ContainerFootprint>>;
|
|
926
|
+
update(request: ContainerFootprint, options?: IThrowingRepoOptions): Promise<ContainerFootprint>;
|
|
1026
927
|
/** Overwrites the given properties of the existing ContainerFootprint. */
|
|
1027
928
|
tryUpdatePartial(request: ContainerFootprint, options?: IRepoOptions): Promise<SingleResult<PartialWithId<ContainerFootprint>>>;
|
|
1028
929
|
updatePartial(request: ContainerFootprint, options?: IThrowingRepoOptions): Promise<PartialWithId<ContainerFootprint>>;
|
|
1029
930
|
/** Saves the input as a new ContainerFootprint. */
|
|
1030
931
|
tryCreate(request: ContainerFootprint, options?: IRepoOptions): Promise<SingleResult<ContainerFootprint>>;
|
|
1031
932
|
create(request: ContainerFootprint, options?: IThrowingRepoOptions): Promise<ContainerFootprint>;
|
|
1032
|
-
/** Performs the given operation on each existing ContainerFootprint that satisfies the given criteria. */
|
|
1033
|
-
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<ContainerFootprint, ContainerFootprintCriteria>, options?: IRepoOptions): Promise<BatchResult<ContainerFootprint>>;
|
|
1034
|
-
UpdatePartialWhere(request: UpdatePartialWhereRequest<ContainerFootprint, ContainerFootprintCriteria>, options?: IThrowingRepoOptions): Promise<ContainerFootprint[]>;
|
|
1035
933
|
/** Overwrites the given properties for each existing ContainerFootprint. */
|
|
1036
934
|
tryUpdatePartialMany(request: Array<ContainerFootprint>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<ContainerFootprint>>>;
|
|
1037
935
|
updatePartialMany(request: Array<ContainerFootprint>, options?: IThrowingRepoOptions): Promise<PartialWithId<ContainerFootprint>[]>;
|
|
1038
|
-
/**
|
|
1039
|
-
|
|
1040
|
-
|
|
936
|
+
/** Performs the given operation on each existing ContainerFootprint that satisfies the given criteria. */
|
|
937
|
+
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<ContainerFootprint, ContainerFootprintCriteria>, options?: IRepoOptions): Promise<BatchResult<ContainerFootprint>>;
|
|
938
|
+
UpdatePartialWhere(request: UpdatePartialWhereRequest<ContainerFootprint, ContainerFootprintCriteria>, options?: IThrowingRepoOptions): Promise<ContainerFootprint[]>;
|
|
1041
939
|
/** 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). */
|
|
1042
940
|
tryUpsert(request: ContainerFootprint, options?: IRepoOptions): Promise<SingleResult<ContainerFootprint>>;
|
|
1043
941
|
upsert(request: ContainerFootprint, options?: IThrowingRepoOptions): Promise<ContainerFootprint>;
|
|
942
|
+
/** 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). */
|
|
943
|
+
tryUpsertMany(request: Array<ContainerFootprint>, options?: IRepoOptions): Promise<BatchResult<ContainerFootprint>>;
|
|
944
|
+
upsertMany(request: Array<ContainerFootprint>, options?: IThrowingRepoOptions): Promise<ContainerFootprint[]>;
|
|
1044
945
|
}
|
|
1045
946
|
import { CspTenantProfile, CspTenantProfileCriteria } from "../contracts";
|
|
1046
947
|
declare class CspTenantProfileCruds {
|
|
1047
948
|
private core;
|
|
1048
949
|
constructor(core: ApiClientBase);
|
|
1049
|
-
/**
|
|
1050
|
-
|
|
1051
|
-
|
|
950
|
+
/** Deletes each existing CspTenantProfile that satisfies the given criteria. */
|
|
951
|
+
tryDeleteWhere(request: CspTenantProfileCriteria, options?: IRepoOptions): Promise<BatchResult<CspTenantProfile>>;
|
|
952
|
+
deleteWhere(request: CspTenantProfileCriteria, options?: IThrowingRepoOptions): Promise<CspTenantProfile[]>;
|
|
1052
953
|
/** Retrieves all the existing CspTenantProfile that satisfy the given criteria. */
|
|
1053
954
|
tryReadMany(request: CspTenantProfileCriteria, options?: IRepoOptions): Promise<ListResult<CspTenantProfile>>;
|
|
1054
955
|
readMany(request: CspTenantProfileCriteria, options?: IThrowingRepoOptions): Promise<CspTenantProfile[]>;
|
|
1055
|
-
/** Overwrites each existing CspTenantProfile. */
|
|
1056
|
-
tryUpdateMany(request: Array<CspTenantProfile>, options?: IRepoOptions): Promise<BatchResult<CspTenantProfile>>;
|
|
1057
|
-
updateMany(request: Array<CspTenantProfile>, options?: IThrowingRepoOptions): Promise<CspTenantProfile[]>;
|
|
1058
956
|
/** Performs the given operations on each existing CspTenantProfile that satisfies the given criteria. */
|
|
1059
957
|
tryPatchWhere(request: PatchSpecForMany<CspTenantProfile, CspTenantProfileCriteria>, options?: IRepoOptions): Promise<BatchResult<CspTenantProfile>>;
|
|
1060
958
|
patchWhere(request: PatchSpecForMany<CspTenantProfile, CspTenantProfileCriteria>, options?: IThrowingRepoOptions): Promise<CspTenantProfile[]>;
|
|
1061
|
-
/**
|
|
1062
|
-
|
|
1063
|
-
|
|
959
|
+
/** Saves each given input as a new CspTenantProfile. */
|
|
960
|
+
tryCreateMany(request: Array<CspTenantProfile>, options?: IRepoOptions): Promise<BatchResult<CspTenantProfile>>;
|
|
961
|
+
createMany(request: Array<CspTenantProfile>, options?: IThrowingRepoOptions): Promise<CspTenantProfile[]>;
|
|
962
|
+
/** Overwrites each existing CspTenantProfile. */
|
|
963
|
+
tryUpdateMany(request: Array<CspTenantProfile>, options?: IRepoOptions): Promise<BatchResult<CspTenantProfile>>;
|
|
964
|
+
updateMany(request: Array<CspTenantProfile>, options?: IThrowingRepoOptions): Promise<CspTenantProfile[]>;
|
|
965
|
+
/** Deletes the existing CspTenantProfile. */
|
|
966
|
+
tryDelete(request: IdSpecFor<CspTenantProfile>, options?: IRepoOptions): Promise<SingleResult<CspTenantProfile>>;
|
|
967
|
+
delete(request: IdSpecFor<CspTenantProfile>, options?: IThrowingRepoOptions): Promise<CspTenantProfile>;
|
|
1064
968
|
/** Retrieves the single, uniquely identified CspTenantProfile. */
|
|
1065
969
|
tryRead(request: IdSpecFor<CspTenantProfile>, options?: IRepoOptions): Promise<SingleResult<CspTenantProfile>>;
|
|
1066
970
|
read(request: IdSpecFor<CspTenantProfile>, options?: IThrowingRepoOptions): Promise<CspTenantProfile>;
|
|
1067
|
-
/** Overwrites the existing CspTenantProfile. */
|
|
1068
|
-
tryUpdate(request: CspTenantProfile, options?: IRepoOptions): Promise<SingleResult<CspTenantProfile>>;
|
|
1069
|
-
update(request: CspTenantProfile, options?: IThrowingRepoOptions): Promise<CspTenantProfile>;
|
|
1070
971
|
/** Performs the given operations on the existing CspTenantProfile. */
|
|
1071
972
|
tryPatch(request: PatchSpecForOne<CspTenantProfile>, options?: IRepoOptions): Promise<SingleResult<CspTenantProfile>>;
|
|
1072
973
|
patch(request: PatchSpecForOne<CspTenantProfile>, options?: IThrowingRepoOptions): Promise<CspTenantProfile>;
|
|
1073
|
-
/**
|
|
1074
|
-
|
|
1075
|
-
|
|
974
|
+
/** Overwrites the existing CspTenantProfile. */
|
|
975
|
+
tryUpdate(request: CspTenantProfile, options?: IRepoOptions): Promise<SingleResult<CspTenantProfile>>;
|
|
976
|
+
update(request: CspTenantProfile, options?: IThrowingRepoOptions): Promise<CspTenantProfile>;
|
|
1076
977
|
/** Overwrites the given properties of the existing CspTenantProfile. */
|
|
1077
978
|
tryUpdatePartial(request: CspTenantProfile, options?: IRepoOptions): Promise<SingleResult<PartialWithId<CspTenantProfile>>>;
|
|
1078
979
|
updatePartial(request: CspTenantProfile, options?: IThrowingRepoOptions): Promise<PartialWithId<CspTenantProfile>>;
|
|
1079
980
|
/** Saves the input as a new CspTenantProfile. */
|
|
1080
981
|
tryCreate(request: CspTenantProfile, options?: IRepoOptions): Promise<SingleResult<CspTenantProfile>>;
|
|
1081
982
|
create(request: CspTenantProfile, options?: IThrowingRepoOptions): Promise<CspTenantProfile>;
|
|
1082
|
-
/** Performs the given operation on each existing CspTenantProfile that satisfies the given criteria. */
|
|
1083
|
-
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<CspTenantProfile, CspTenantProfileCriteria>, options?: IRepoOptions): Promise<BatchResult<CspTenantProfile>>;
|
|
1084
|
-
UpdatePartialWhere(request: UpdatePartialWhereRequest<CspTenantProfile, CspTenantProfileCriteria>, options?: IThrowingRepoOptions): Promise<CspTenantProfile[]>;
|
|
1085
983
|
/** Overwrites the given properties for each existing CspTenantProfile. */
|
|
1086
984
|
tryUpdatePartialMany(request: Array<CspTenantProfile>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<CspTenantProfile>>>;
|
|
1087
985
|
updatePartialMany(request: Array<CspTenantProfile>, options?: IThrowingRepoOptions): Promise<PartialWithId<CspTenantProfile>[]>;
|
|
1088
|
-
/**
|
|
1089
|
-
|
|
1090
|
-
|
|
986
|
+
/** Performs the given operation on each existing CspTenantProfile that satisfies the given criteria. */
|
|
987
|
+
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<CspTenantProfile, CspTenantProfileCriteria>, options?: IRepoOptions): Promise<BatchResult<CspTenantProfile>>;
|
|
988
|
+
UpdatePartialWhere(request: UpdatePartialWhereRequest<CspTenantProfile, CspTenantProfileCriteria>, options?: IThrowingRepoOptions): Promise<CspTenantProfile[]>;
|
|
1091
989
|
/** 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). */
|
|
1092
990
|
tryUpsert(request: CspTenantProfile, options?: IRepoOptions): Promise<SingleResult<CspTenantProfile>>;
|
|
1093
991
|
upsert(request: CspTenantProfile, options?: IThrowingRepoOptions): Promise<CspTenantProfile>;
|
|
992
|
+
/** 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). */
|
|
993
|
+
tryUpsertMany(request: Array<CspTenantProfile>, options?: IRepoOptions): Promise<BatchResult<CspTenantProfile>>;
|
|
994
|
+
upsertMany(request: Array<CspTenantProfile>, options?: IThrowingRepoOptions): Promise<CspTenantProfile[]>;
|
|
1094
995
|
}
|
|
1095
996
|
import { DeployAttempt, DeployAttemptCriteria } from "../contracts";
|
|
1096
997
|
declare class DeployAttemptCruds {
|
|
1097
998
|
private core;
|
|
1098
999
|
constructor(core: ApiClientBase);
|
|
1099
|
-
/**
|
|
1100
|
-
|
|
1101
|
-
|
|
1000
|
+
/** Deletes each existing DeployAttempt that satisfies the given criteria. */
|
|
1001
|
+
tryDeleteWhere(request: DeployAttemptCriteria, options?: IRepoOptions): Promise<BatchResult<DeployAttempt>>;
|
|
1002
|
+
deleteWhere(request: DeployAttemptCriteria, options?: IThrowingRepoOptions): Promise<DeployAttempt[]>;
|
|
1102
1003
|
/** Retrieves all the existing DeployAttempt that satisfy the given criteria. */
|
|
1103
1004
|
tryReadMany(request: DeployAttemptCriteria, options?: IRepoOptions): Promise<ListResult<DeployAttempt>>;
|
|
1104
1005
|
readMany(request: DeployAttemptCriteria, options?: IThrowingRepoOptions): Promise<DeployAttempt[]>;
|
|
1105
|
-
/** Overwrites each existing DeployAttempt. */
|
|
1106
|
-
tryUpdateMany(request: Array<DeployAttempt>, options?: IRepoOptions): Promise<BatchResult<DeployAttempt>>;
|
|
1107
|
-
updateMany(request: Array<DeployAttempt>, options?: IThrowingRepoOptions): Promise<DeployAttempt[]>;
|
|
1108
1006
|
/** Performs the given operations on each existing DeployAttempt that satisfies the given criteria. */
|
|
1109
1007
|
tryPatchWhere(request: PatchSpecForMany<DeployAttempt, DeployAttemptCriteria>, options?: IRepoOptions): Promise<BatchResult<DeployAttempt>>;
|
|
1110
1008
|
patchWhere(request: PatchSpecForMany<DeployAttempt, DeployAttemptCriteria>, options?: IThrowingRepoOptions): Promise<DeployAttempt[]>;
|
|
1111
|
-
/**
|
|
1112
|
-
|
|
1113
|
-
|
|
1009
|
+
/** Saves each given input as a new DeployAttempt. */
|
|
1010
|
+
tryCreateMany(request: Array<DeployAttempt>, options?: IRepoOptions): Promise<BatchResult<DeployAttempt>>;
|
|
1011
|
+
createMany(request: Array<DeployAttempt>, options?: IThrowingRepoOptions): Promise<DeployAttempt[]>;
|
|
1012
|
+
/** Overwrites each existing DeployAttempt. */
|
|
1013
|
+
tryUpdateMany(request: Array<DeployAttempt>, options?: IRepoOptions): Promise<BatchResult<DeployAttempt>>;
|
|
1014
|
+
updateMany(request: Array<DeployAttempt>, options?: IThrowingRepoOptions): Promise<DeployAttempt[]>;
|
|
1015
|
+
/** Deletes the existing DeployAttempt. */
|
|
1016
|
+
tryDelete(request: IdSpecFor<DeployAttempt>, options?: IRepoOptions): Promise<SingleResult<DeployAttempt>>;
|
|
1017
|
+
delete(request: IdSpecFor<DeployAttempt>, options?: IThrowingRepoOptions): Promise<DeployAttempt>;
|
|
1114
1018
|
/** Retrieves the single, uniquely identified DeployAttempt. */
|
|
1115
1019
|
tryRead(request: IdSpecFor<DeployAttempt>, options?: IRepoOptions): Promise<SingleResult<DeployAttempt>>;
|
|
1116
1020
|
read(request: IdSpecFor<DeployAttempt>, options?: IThrowingRepoOptions): Promise<DeployAttempt>;
|
|
1117
|
-
/** Overwrites the existing DeployAttempt. */
|
|
1118
|
-
tryUpdate(request: DeployAttempt, options?: IRepoOptions): Promise<SingleResult<DeployAttempt>>;
|
|
1119
|
-
update(request: DeployAttempt, options?: IThrowingRepoOptions): Promise<DeployAttempt>;
|
|
1120
1021
|
/** Performs the given operations on the existing DeployAttempt. */
|
|
1121
1022
|
tryPatch(request: PatchSpecForOne<DeployAttempt>, options?: IRepoOptions): Promise<SingleResult<DeployAttempt>>;
|
|
1122
1023
|
patch(request: PatchSpecForOne<DeployAttempt>, options?: IThrowingRepoOptions): Promise<DeployAttempt>;
|
|
1123
|
-
/**
|
|
1124
|
-
|
|
1125
|
-
|
|
1024
|
+
/** Overwrites the existing DeployAttempt. */
|
|
1025
|
+
tryUpdate(request: DeployAttempt, options?: IRepoOptions): Promise<SingleResult<DeployAttempt>>;
|
|
1026
|
+
update(request: DeployAttempt, options?: IThrowingRepoOptions): Promise<DeployAttempt>;
|
|
1126
1027
|
/** Overwrites the given properties of the existing DeployAttempt. */
|
|
1127
1028
|
tryUpdatePartial(request: DeployAttempt, options?: IRepoOptions): Promise<SingleResult<PartialWithId<DeployAttempt>>>;
|
|
1128
1029
|
updatePartial(request: DeployAttempt, options?: IThrowingRepoOptions): Promise<PartialWithId<DeployAttempt>>;
|
|
1129
1030
|
/** Saves the input as a new DeployAttempt. */
|
|
1130
1031
|
tryCreate(request: DeployAttempt, options?: IRepoOptions): Promise<SingleResult<DeployAttempt>>;
|
|
1131
1032
|
create(request: DeployAttempt, options?: IThrowingRepoOptions): Promise<DeployAttempt>;
|
|
1132
|
-
/** Performs the given operation on each existing DeployAttempt that satisfies the given criteria. */
|
|
1133
|
-
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<DeployAttempt, DeployAttemptCriteria>, options?: IRepoOptions): Promise<BatchResult<DeployAttempt>>;
|
|
1134
|
-
UpdatePartialWhere(request: UpdatePartialWhereRequest<DeployAttempt, DeployAttemptCriteria>, options?: IThrowingRepoOptions): Promise<DeployAttempt[]>;
|
|
1135
1033
|
/** Overwrites the given properties for each existing DeployAttempt. */
|
|
1136
1034
|
tryUpdatePartialMany(request: Array<DeployAttempt>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<DeployAttempt>>>;
|
|
1137
1035
|
updatePartialMany(request: Array<DeployAttempt>, options?: IThrowingRepoOptions): Promise<PartialWithId<DeployAttempt>[]>;
|
|
1138
|
-
/**
|
|
1139
|
-
|
|
1140
|
-
|
|
1036
|
+
/** Performs the given operation on each existing DeployAttempt that satisfies the given criteria. */
|
|
1037
|
+
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<DeployAttempt, DeployAttemptCriteria>, options?: IRepoOptions): Promise<BatchResult<DeployAttempt>>;
|
|
1038
|
+
UpdatePartialWhere(request: UpdatePartialWhereRequest<DeployAttempt, DeployAttemptCriteria>, options?: IThrowingRepoOptions): Promise<DeployAttempt[]>;
|
|
1141
1039
|
/** 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). */
|
|
1142
1040
|
tryUpsert(request: DeployAttempt, options?: IRepoOptions): Promise<SingleResult<DeployAttempt>>;
|
|
1143
1041
|
upsert(request: DeployAttempt, options?: IThrowingRepoOptions): Promise<DeployAttempt>;
|
|
1042
|
+
/** 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). */
|
|
1043
|
+
tryUpsertMany(request: Array<DeployAttempt>, options?: IRepoOptions): Promise<BatchResult<DeployAttempt>>;
|
|
1044
|
+
upsertMany(request: Array<DeployAttempt>, options?: IThrowingRepoOptions): Promise<DeployAttempt[]>;
|
|
1144
1045
|
}
|
|
1145
1046
|
import { DeployPipeline, DeployPipelineCriteria } from "../contracts";
|
|
1146
1047
|
declare class DeployPipelineCruds {
|
|
1147
1048
|
private core;
|
|
1148
1049
|
constructor(core: ApiClientBase);
|
|
1149
|
-
/**
|
|
1150
|
-
|
|
1151
|
-
|
|
1050
|
+
/** Deletes each existing DeployPipeline that satisfies the given criteria. */
|
|
1051
|
+
tryDeleteWhere(request: DeployPipelineCriteria, options?: IRepoOptions): Promise<BatchResult<DeployPipeline>>;
|
|
1052
|
+
deleteWhere(request: DeployPipelineCriteria, options?: IThrowingRepoOptions): Promise<DeployPipeline[]>;
|
|
1152
1053
|
/** Retrieves all the existing DeployPipeline that satisfy the given criteria. */
|
|
1153
1054
|
tryReadMany(request: DeployPipelineCriteria, options?: IRepoOptions): Promise<ListResult<DeployPipeline>>;
|
|
1154
1055
|
readMany(request: DeployPipelineCriteria, options?: IThrowingRepoOptions): Promise<DeployPipeline[]>;
|
|
1155
|
-
/** Overwrites each existing DeployPipeline. */
|
|
1156
|
-
tryUpdateMany(request: Array<DeployPipeline>, options?: IRepoOptions): Promise<BatchResult<DeployPipeline>>;
|
|
1157
|
-
updateMany(request: Array<DeployPipeline>, options?: IThrowingRepoOptions): Promise<DeployPipeline[]>;
|
|
1158
1056
|
/** Performs the given operations on each existing DeployPipeline that satisfies the given criteria. */
|
|
1159
1057
|
tryPatchWhere(request: PatchSpecForMany<DeployPipeline, DeployPipelineCriteria>, options?: IRepoOptions): Promise<BatchResult<DeployPipeline>>;
|
|
1160
1058
|
patchWhere(request: PatchSpecForMany<DeployPipeline, DeployPipelineCriteria>, options?: IThrowingRepoOptions): Promise<DeployPipeline[]>;
|
|
1161
|
-
/**
|
|
1162
|
-
|
|
1163
|
-
|
|
1059
|
+
/** Saves each given input as a new DeployPipeline. */
|
|
1060
|
+
tryCreateMany(request: Array<DeployPipeline>, options?: IRepoOptions): Promise<BatchResult<DeployPipeline>>;
|
|
1061
|
+
createMany(request: Array<DeployPipeline>, options?: IThrowingRepoOptions): Promise<DeployPipeline[]>;
|
|
1062
|
+
/** Overwrites each existing DeployPipeline. */
|
|
1063
|
+
tryUpdateMany(request: Array<DeployPipeline>, options?: IRepoOptions): Promise<BatchResult<DeployPipeline>>;
|
|
1064
|
+
updateMany(request: Array<DeployPipeline>, options?: IThrowingRepoOptions): Promise<DeployPipeline[]>;
|
|
1065
|
+
/** Deletes the existing DeployPipeline. */
|
|
1066
|
+
tryDelete(request: IdSpecFor<DeployPipeline>, options?: IRepoOptions): Promise<SingleResult<DeployPipeline>>;
|
|
1067
|
+
delete(request: IdSpecFor<DeployPipeline>, options?: IThrowingRepoOptions): Promise<DeployPipeline>;
|
|
1164
1068
|
/** Retrieves the single, uniquely identified DeployPipeline. */
|
|
1165
1069
|
tryRead(request: IdSpecFor<DeployPipeline>, options?: IRepoOptions): Promise<SingleResult<DeployPipeline>>;
|
|
1166
1070
|
read(request: IdSpecFor<DeployPipeline>, options?: IThrowingRepoOptions): Promise<DeployPipeline>;
|
|
1167
|
-
/** Overwrites the existing DeployPipeline. */
|
|
1168
|
-
tryUpdate(request: DeployPipeline, options?: IRepoOptions): Promise<SingleResult<DeployPipeline>>;
|
|
1169
|
-
update(request: DeployPipeline, options?: IThrowingRepoOptions): Promise<DeployPipeline>;
|
|
1170
1071
|
/** Performs the given operations on the existing DeployPipeline. */
|
|
1171
1072
|
tryPatch(request: PatchSpecForOne<DeployPipeline>, options?: IRepoOptions): Promise<SingleResult<DeployPipeline>>;
|
|
1172
1073
|
patch(request: PatchSpecForOne<DeployPipeline>, options?: IThrowingRepoOptions): Promise<DeployPipeline>;
|
|
1173
|
-
/**
|
|
1174
|
-
|
|
1175
|
-
|
|
1074
|
+
/** Overwrites the existing DeployPipeline. */
|
|
1075
|
+
tryUpdate(request: DeployPipeline, options?: IRepoOptions): Promise<SingleResult<DeployPipeline>>;
|
|
1076
|
+
update(request: DeployPipeline, options?: IThrowingRepoOptions): Promise<DeployPipeline>;
|
|
1176
1077
|
/** Overwrites the given properties of the existing DeployPipeline. */
|
|
1177
1078
|
tryUpdatePartial(request: DeployPipeline, options?: IRepoOptions): Promise<SingleResult<PartialWithId<DeployPipeline>>>;
|
|
1178
1079
|
updatePartial(request: DeployPipeline, options?: IThrowingRepoOptions): Promise<PartialWithId<DeployPipeline>>;
|
|
1179
1080
|
/** Saves the input as a new DeployPipeline. */
|
|
1180
1081
|
tryCreate(request: DeployPipeline, options?: IRepoOptions): Promise<SingleResult<DeployPipeline>>;
|
|
1181
1082
|
create(request: DeployPipeline, options?: IThrowingRepoOptions): Promise<DeployPipeline>;
|
|
1182
|
-
/** Performs the given operation on each existing DeployPipeline that satisfies the given criteria. */
|
|
1183
|
-
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<DeployPipeline, DeployPipelineCriteria>, options?: IRepoOptions): Promise<BatchResult<DeployPipeline>>;
|
|
1184
|
-
UpdatePartialWhere(request: UpdatePartialWhereRequest<DeployPipeline, DeployPipelineCriteria>, options?: IThrowingRepoOptions): Promise<DeployPipeline[]>;
|
|
1185
1083
|
/** Overwrites the given properties for each existing DeployPipeline. */
|
|
1186
1084
|
tryUpdatePartialMany(request: Array<DeployPipeline>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<DeployPipeline>>>;
|
|
1187
1085
|
updatePartialMany(request: Array<DeployPipeline>, options?: IThrowingRepoOptions): Promise<PartialWithId<DeployPipeline>[]>;
|
|
1188
|
-
/**
|
|
1189
|
-
|
|
1190
|
-
|
|
1086
|
+
/** Performs the given operation on each existing DeployPipeline that satisfies the given criteria. */
|
|
1087
|
+
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<DeployPipeline, DeployPipelineCriteria>, options?: IRepoOptions): Promise<BatchResult<DeployPipeline>>;
|
|
1088
|
+
UpdatePartialWhere(request: UpdatePartialWhereRequest<DeployPipeline, DeployPipelineCriteria>, options?: IThrowingRepoOptions): Promise<DeployPipeline[]>;
|
|
1191
1089
|
/** 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). */
|
|
1192
1090
|
tryUpsert(request: DeployPipeline, options?: IRepoOptions): Promise<SingleResult<DeployPipeline>>;
|
|
1193
1091
|
upsert(request: DeployPipeline, options?: IThrowingRepoOptions): Promise<DeployPipeline>;
|
|
1092
|
+
/** 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). */
|
|
1093
|
+
tryUpsertMany(request: Array<DeployPipeline>, options?: IRepoOptions): Promise<BatchResult<DeployPipeline>>;
|
|
1094
|
+
upsertMany(request: Array<DeployPipeline>, options?: IThrowingRepoOptions): Promise<DeployPipeline[]>;
|
|
1194
1095
|
}
|
|
1195
1096
|
import { Deployment, DeploymentCriteria } from "../contracts";
|
|
1196
1097
|
declare class DeploymentCruds {
|
|
1197
1098
|
private core;
|
|
1198
1099
|
constructor(core: ApiClientBase);
|
|
1199
|
-
/**
|
|
1200
|
-
|
|
1201
|
-
|
|
1100
|
+
/** Deletes each existing Deployment that satisfies the given criteria. */
|
|
1101
|
+
tryDeleteWhere(request: DeploymentCriteria, options?: IRepoOptions): Promise<BatchResult<Deployment>>;
|
|
1102
|
+
deleteWhere(request: DeploymentCriteria, options?: IThrowingRepoOptions): Promise<Deployment[]>;
|
|
1202
1103
|
/** Retrieves all the existing Deployment that satisfy the given criteria. */
|
|
1203
1104
|
tryReadMany(request: DeploymentCriteria, options?: IRepoOptions): Promise<ListResult<Deployment>>;
|
|
1204
1105
|
readMany(request: DeploymentCriteria, options?: IThrowingRepoOptions): Promise<Deployment[]>;
|
|
1205
|
-
/** Overwrites each existing Deployment. */
|
|
1206
|
-
tryUpdateMany(request: Array<Deployment>, options?: IRepoOptions): Promise<BatchResult<Deployment>>;
|
|
1207
|
-
updateMany(request: Array<Deployment>, options?: IThrowingRepoOptions): Promise<Deployment[]>;
|
|
1208
1106
|
/** Performs the given operations on each existing Deployment that satisfies the given criteria. */
|
|
1209
1107
|
tryPatchWhere(request: PatchSpecForMany<Deployment, DeploymentCriteria>, options?: IRepoOptions): Promise<BatchResult<Deployment>>;
|
|
1210
1108
|
patchWhere(request: PatchSpecForMany<Deployment, DeploymentCriteria>, options?: IThrowingRepoOptions): Promise<Deployment[]>;
|
|
1211
|
-
/**
|
|
1212
|
-
|
|
1213
|
-
|
|
1109
|
+
/** Saves each given input as a new Deployment. */
|
|
1110
|
+
tryCreateMany(request: Array<Deployment>, options?: IRepoOptions): Promise<BatchResult<Deployment>>;
|
|
1111
|
+
createMany(request: Array<Deployment>, options?: IThrowingRepoOptions): Promise<Deployment[]>;
|
|
1112
|
+
/** Overwrites each existing Deployment. */
|
|
1113
|
+
tryUpdateMany(request: Array<Deployment>, options?: IRepoOptions): Promise<BatchResult<Deployment>>;
|
|
1114
|
+
updateMany(request: Array<Deployment>, options?: IThrowingRepoOptions): Promise<Deployment[]>;
|
|
1115
|
+
/** Deletes the existing Deployment. */
|
|
1116
|
+
tryDelete(request: IdSpecFor<Deployment>, options?: IRepoOptions): Promise<SingleResult<Deployment>>;
|
|
1117
|
+
delete(request: IdSpecFor<Deployment>, options?: IThrowingRepoOptions): Promise<Deployment>;
|
|
1214
1118
|
/** Retrieves the single, uniquely identified Deployment. */
|
|
1215
1119
|
tryRead(request: IdSpecFor<Deployment>, options?: IRepoOptions): Promise<SingleResult<Deployment>>;
|
|
1216
1120
|
read(request: IdSpecFor<Deployment>, options?: IThrowingRepoOptions): Promise<Deployment>;
|
|
1217
|
-
/** Overwrites the existing Deployment. */
|
|
1218
|
-
tryUpdate(request: Deployment, options?: IRepoOptions): Promise<SingleResult<Deployment>>;
|
|
1219
|
-
update(request: Deployment, options?: IThrowingRepoOptions): Promise<Deployment>;
|
|
1220
1121
|
/** Performs the given operations on the existing Deployment. */
|
|
1221
1122
|
tryPatch(request: PatchSpecForOne<Deployment>, options?: IRepoOptions): Promise<SingleResult<Deployment>>;
|
|
1222
1123
|
patch(request: PatchSpecForOne<Deployment>, options?: IThrowingRepoOptions): Promise<Deployment>;
|
|
1223
|
-
/**
|
|
1224
|
-
|
|
1225
|
-
|
|
1124
|
+
/** Overwrites the existing Deployment. */
|
|
1125
|
+
tryUpdate(request: Deployment, options?: IRepoOptions): Promise<SingleResult<Deployment>>;
|
|
1126
|
+
update(request: Deployment, options?: IThrowingRepoOptions): Promise<Deployment>;
|
|
1226
1127
|
/** Overwrites the given properties of the existing Deployment. */
|
|
1227
1128
|
tryUpdatePartial(request: Deployment, options?: IRepoOptions): Promise<SingleResult<PartialWithId<Deployment>>>;
|
|
1228
1129
|
updatePartial(request: Deployment, options?: IThrowingRepoOptions): Promise<PartialWithId<Deployment>>;
|
|
1229
1130
|
/** Saves the input as a new Deployment. */
|
|
1230
1131
|
tryCreate(request: Deployment, options?: IRepoOptions): Promise<SingleResult<Deployment>>;
|
|
1231
1132
|
create(request: Deployment, options?: IThrowingRepoOptions): Promise<Deployment>;
|
|
1232
|
-
/** Performs the given operation on each existing Deployment that satisfies the given criteria. */
|
|
1233
|
-
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<Deployment, DeploymentCriteria>, options?: IRepoOptions): Promise<BatchResult<Deployment>>;
|
|
1234
|
-
UpdatePartialWhere(request: UpdatePartialWhereRequest<Deployment, DeploymentCriteria>, options?: IThrowingRepoOptions): Promise<Deployment[]>;
|
|
1235
1133
|
/** Overwrites the given properties for each existing Deployment. */
|
|
1236
1134
|
tryUpdatePartialMany(request: Array<Deployment>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<Deployment>>>;
|
|
1237
1135
|
updatePartialMany(request: Array<Deployment>, options?: IThrowingRepoOptions): Promise<PartialWithId<Deployment>[]>;
|
|
1238
|
-
/**
|
|
1239
|
-
|
|
1240
|
-
|
|
1136
|
+
/** Performs the given operation on each existing Deployment that satisfies the given criteria. */
|
|
1137
|
+
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<Deployment, DeploymentCriteria>, options?: IRepoOptions): Promise<BatchResult<Deployment>>;
|
|
1138
|
+
UpdatePartialWhere(request: UpdatePartialWhereRequest<Deployment, DeploymentCriteria>, options?: IThrowingRepoOptions): Promise<Deployment[]>;
|
|
1241
1139
|
/** 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). */
|
|
1242
1140
|
tryUpsert(request: Deployment, options?: IRepoOptions): Promise<SingleResult<Deployment>>;
|
|
1243
1141
|
upsert(request: Deployment, options?: IThrowingRepoOptions): Promise<Deployment>;
|
|
1142
|
+
/** 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). */
|
|
1143
|
+
tryUpsertMany(request: Array<Deployment>, options?: IRepoOptions): Promise<BatchResult<Deployment>>;
|
|
1144
|
+
upsertMany(request: Array<Deployment>, options?: IThrowingRepoOptions): Promise<Deployment[]>;
|
|
1145
|
+
}
|
|
1146
|
+
import { DeploymentActivity, DeploymentActivityCriteria } from "../contracts";
|
|
1147
|
+
declare class DeploymentActivityCruds {
|
|
1148
|
+
private core;
|
|
1149
|
+
constructor(core: ApiClientBase);
|
|
1150
|
+
/** Deletes each existing DeploymentActivity that satisfies the given criteria. */
|
|
1151
|
+
tryDeleteWhere(request: DeploymentActivityCriteria, options?: IRepoOptions): Promise<BatchResult<DeploymentActivity>>;
|
|
1152
|
+
deleteWhere(request: DeploymentActivityCriteria, options?: IThrowingRepoOptions): Promise<DeploymentActivity[]>;
|
|
1153
|
+
/** Retrieves all the existing DeploymentActivity that satisfy the given criteria. */
|
|
1154
|
+
tryReadMany(request: DeploymentActivityCriteria, options?: IRepoOptions): Promise<ListResult<DeploymentActivity>>;
|
|
1155
|
+
readMany(request: DeploymentActivityCriteria, options?: IThrowingRepoOptions): Promise<DeploymentActivity[]>;
|
|
1156
|
+
/** Performs the given operations on each existing DeploymentActivity that satisfies the given criteria. */
|
|
1157
|
+
tryPatchWhere(request: PatchSpecForMany<DeploymentActivity, DeploymentActivityCriteria>, options?: IRepoOptions): Promise<BatchResult<DeploymentActivity>>;
|
|
1158
|
+
patchWhere(request: PatchSpecForMany<DeploymentActivity, DeploymentActivityCriteria>, options?: IThrowingRepoOptions): Promise<DeploymentActivity[]>;
|
|
1159
|
+
/** Saves each given input as a new DeploymentActivity. */
|
|
1160
|
+
tryCreateMany(request: Array<DeploymentActivity>, options?: IRepoOptions): Promise<BatchResult<DeploymentActivity>>;
|
|
1161
|
+
createMany(request: Array<DeploymentActivity>, options?: IThrowingRepoOptions): Promise<DeploymentActivity[]>;
|
|
1162
|
+
/** Overwrites each existing DeploymentActivity. */
|
|
1163
|
+
tryUpdateMany(request: Array<DeploymentActivity>, options?: IRepoOptions): Promise<BatchResult<DeploymentActivity>>;
|
|
1164
|
+
updateMany(request: Array<DeploymentActivity>, options?: IThrowingRepoOptions): Promise<DeploymentActivity[]>;
|
|
1165
|
+
/** Deletes the existing DeploymentActivity. */
|
|
1166
|
+
tryDelete(request: IdSpecFor<DeploymentActivity>, options?: IRepoOptions): Promise<SingleResult<DeploymentActivity>>;
|
|
1167
|
+
delete(request: IdSpecFor<DeploymentActivity>, options?: IThrowingRepoOptions): Promise<DeploymentActivity>;
|
|
1168
|
+
/** Retrieves the single, uniquely identified DeploymentActivity. */
|
|
1169
|
+
tryRead(request: IdSpecFor<DeploymentActivity>, options?: IRepoOptions): Promise<SingleResult<DeploymentActivity>>;
|
|
1170
|
+
read(request: IdSpecFor<DeploymentActivity>, options?: IThrowingRepoOptions): Promise<DeploymentActivity>;
|
|
1171
|
+
/** Performs the given operations on the existing DeploymentActivity. */
|
|
1172
|
+
tryPatch(request: PatchSpecForOne<DeploymentActivity>, options?: IRepoOptions): Promise<SingleResult<DeploymentActivity>>;
|
|
1173
|
+
patch(request: PatchSpecForOne<DeploymentActivity>, options?: IThrowingRepoOptions): Promise<DeploymentActivity>;
|
|
1174
|
+
/** Overwrites the existing DeploymentActivity. */
|
|
1175
|
+
tryUpdate(request: DeploymentActivity, options?: IRepoOptions): Promise<SingleResult<DeploymentActivity>>;
|
|
1176
|
+
update(request: DeploymentActivity, options?: IThrowingRepoOptions): Promise<DeploymentActivity>;
|
|
1177
|
+
/** Overwrites the given properties of the existing DeploymentActivity. */
|
|
1178
|
+
tryUpdatePartial(request: DeploymentActivity, options?: IRepoOptions): Promise<SingleResult<PartialWithId<DeploymentActivity>>>;
|
|
1179
|
+
updatePartial(request: DeploymentActivity, options?: IThrowingRepoOptions): Promise<PartialWithId<DeploymentActivity>>;
|
|
1180
|
+
/** Saves the input as a new DeploymentActivity. */
|
|
1181
|
+
tryCreate(request: DeploymentActivity, options?: IRepoOptions): Promise<SingleResult<DeploymentActivity>>;
|
|
1182
|
+
create(request: DeploymentActivity, options?: IThrowingRepoOptions): Promise<DeploymentActivity>;
|
|
1183
|
+
/** Overwrites the given properties for each existing DeploymentActivity. */
|
|
1184
|
+
tryUpdatePartialMany(request: Array<DeploymentActivity>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<DeploymentActivity>>>;
|
|
1185
|
+
updatePartialMany(request: Array<DeploymentActivity>, options?: IThrowingRepoOptions): Promise<PartialWithId<DeploymentActivity>[]>;
|
|
1186
|
+
/** Performs the given operation on each existing DeploymentActivity that satisfies the given criteria. */
|
|
1187
|
+
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<DeploymentActivity, DeploymentActivityCriteria>, options?: IRepoOptions): Promise<BatchResult<DeploymentActivity>>;
|
|
1188
|
+
UpdatePartialWhere(request: UpdatePartialWhereRequest<DeploymentActivity, DeploymentActivityCriteria>, options?: IThrowingRepoOptions): Promise<DeploymentActivity[]>;
|
|
1189
|
+
/** 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). */
|
|
1190
|
+
tryUpsert(request: DeploymentActivity, options?: IRepoOptions): Promise<SingleResult<DeploymentActivity>>;
|
|
1191
|
+
upsert(request: DeploymentActivity, options?: IThrowingRepoOptions): Promise<DeploymentActivity>;
|
|
1192
|
+
/** 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). */
|
|
1193
|
+
tryUpsertMany(request: Array<DeploymentActivity>, options?: IRepoOptions): Promise<BatchResult<DeploymentActivity>>;
|
|
1194
|
+
upsertMany(request: Array<DeploymentActivity>, options?: IThrowingRepoOptions): Promise<DeploymentActivity[]>;
|
|
1195
|
+
}
|
|
1196
|
+
import { Enterprise, EnterpriseCriteria } from "../contracts";
|
|
1197
|
+
declare class EnterpriseCruds {
|
|
1198
|
+
private core;
|
|
1199
|
+
constructor(core: ApiClientBase);
|
|
1200
|
+
/** Deletes each existing Enterprise that satisfies the given criteria. */
|
|
1201
|
+
tryDeleteWhere(request: EnterpriseCriteria, options?: IRepoOptions): Promise<BatchResult<Enterprise>>;
|
|
1202
|
+
deleteWhere(request: EnterpriseCriteria, options?: IThrowingRepoOptions): Promise<Enterprise[]>;
|
|
1203
|
+
/** Retrieves all the existing Enterprise that satisfy the given criteria. */
|
|
1204
|
+
tryReadMany(request: EnterpriseCriteria, options?: IRepoOptions): Promise<ListResult<Enterprise>>;
|
|
1205
|
+
readMany(request: EnterpriseCriteria, options?: IThrowingRepoOptions): Promise<Enterprise[]>;
|
|
1206
|
+
/** Performs the given operations on each existing Enterprise that satisfies the given criteria. */
|
|
1207
|
+
tryPatchWhere(request: PatchSpecForMany<Enterprise, EnterpriseCriteria>, options?: IRepoOptions): Promise<BatchResult<Enterprise>>;
|
|
1208
|
+
patchWhere(request: PatchSpecForMany<Enterprise, EnterpriseCriteria>, options?: IThrowingRepoOptions): Promise<Enterprise[]>;
|
|
1209
|
+
/** Saves each given input as a new Enterprise. */
|
|
1210
|
+
tryCreateMany(request: Array<Enterprise>, options?: IRepoOptions): Promise<BatchResult<Enterprise>>;
|
|
1211
|
+
createMany(request: Array<Enterprise>, options?: IThrowingRepoOptions): Promise<Enterprise[]>;
|
|
1212
|
+
/** Overwrites each existing Enterprise. */
|
|
1213
|
+
tryUpdateMany(request: Array<Enterprise>, options?: IRepoOptions): Promise<BatchResult<Enterprise>>;
|
|
1214
|
+
updateMany(request: Array<Enterprise>, options?: IThrowingRepoOptions): Promise<Enterprise[]>;
|
|
1215
|
+
/** Deletes the existing Enterprise. */
|
|
1216
|
+
tryDelete(request: IdSpecFor<Enterprise>, options?: IRepoOptions): Promise<SingleResult<Enterprise>>;
|
|
1217
|
+
delete(request: IdSpecFor<Enterprise>, options?: IThrowingRepoOptions): Promise<Enterprise>;
|
|
1218
|
+
/** Retrieves the single, uniquely identified Enterprise. */
|
|
1219
|
+
tryRead(request: IdSpecFor<Enterprise>, options?: IRepoOptions): Promise<SingleResult<Enterprise>>;
|
|
1220
|
+
read(request: IdSpecFor<Enterprise>, options?: IThrowingRepoOptions): Promise<Enterprise>;
|
|
1221
|
+
/** Performs the given operations on the existing Enterprise. */
|
|
1222
|
+
tryPatch(request: PatchSpecForOne<Enterprise>, options?: IRepoOptions): Promise<SingleResult<Enterprise>>;
|
|
1223
|
+
patch(request: PatchSpecForOne<Enterprise>, options?: IThrowingRepoOptions): Promise<Enterprise>;
|
|
1224
|
+
/** Overwrites the existing Enterprise. */
|
|
1225
|
+
tryUpdate(request: Enterprise, options?: IRepoOptions): Promise<SingleResult<Enterprise>>;
|
|
1226
|
+
update(request: Enterprise, options?: IThrowingRepoOptions): Promise<Enterprise>;
|
|
1227
|
+
/** Overwrites the given properties of the existing Enterprise. */
|
|
1228
|
+
tryUpdatePartial(request: Enterprise, options?: IRepoOptions): Promise<SingleResult<PartialWithId<Enterprise>>>;
|
|
1229
|
+
updatePartial(request: Enterprise, options?: IThrowingRepoOptions): Promise<PartialWithId<Enterprise>>;
|
|
1230
|
+
/** Saves the input as a new Enterprise. */
|
|
1231
|
+
tryCreate(request: Enterprise, options?: IRepoOptions): Promise<SingleResult<Enterprise>>;
|
|
1232
|
+
create(request: Enterprise, options?: IThrowingRepoOptions): Promise<Enterprise>;
|
|
1233
|
+
/** Overwrites the given properties for each existing Enterprise. */
|
|
1234
|
+
tryUpdatePartialMany(request: Array<Enterprise>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<Enterprise>>>;
|
|
1235
|
+
updatePartialMany(request: Array<Enterprise>, options?: IThrowingRepoOptions): Promise<PartialWithId<Enterprise>[]>;
|
|
1236
|
+
/** Performs the given operation on each existing Enterprise that satisfies the given criteria. */
|
|
1237
|
+
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<Enterprise, EnterpriseCriteria>, options?: IRepoOptions): Promise<BatchResult<Enterprise>>;
|
|
1238
|
+
UpdatePartialWhere(request: UpdatePartialWhereRequest<Enterprise, EnterpriseCriteria>, options?: IThrowingRepoOptions): Promise<Enterprise[]>;
|
|
1239
|
+
/** 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). */
|
|
1240
|
+
tryUpsert(request: Enterprise, options?: IRepoOptions): Promise<SingleResult<Enterprise>>;
|
|
1241
|
+
upsert(request: Enterprise, options?: IThrowingRepoOptions): Promise<Enterprise>;
|
|
1242
|
+
/** 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). */
|
|
1243
|
+
tryUpsertMany(request: Array<Enterprise>, options?: IRepoOptions): Promise<BatchResult<Enterprise>>;
|
|
1244
|
+
upsertMany(request: Array<Enterprise>, options?: IThrowingRepoOptions): Promise<Enterprise[]>;
|
|
1244
1245
|
}
|
|
1245
1246
|
import { EnterpriseRunState, EnterpriseRunStateCriteria } from "../contracts";
|
|
1246
1247
|
declare class EnterpriseRunStateCruds {
|
|
1247
1248
|
private core;
|
|
1248
1249
|
constructor(core: ApiClientBase);
|
|
1249
|
-
/**
|
|
1250
|
-
|
|
1251
|
-
|
|
1250
|
+
/** Deletes each existing EnterpriseRunState that satisfies the given criteria. */
|
|
1251
|
+
tryDeleteWhere(request: EnterpriseRunStateCriteria, options?: IRepoOptions): Promise<BatchResult<EnterpriseRunState>>;
|
|
1252
|
+
deleteWhere(request: EnterpriseRunStateCriteria, options?: IThrowingRepoOptions): Promise<EnterpriseRunState[]>;
|
|
1252
1253
|
/** Retrieves all the existing EnterpriseRunState that satisfy the given criteria. */
|
|
1253
1254
|
tryReadMany(request: EnterpriseRunStateCriteria, options?: IRepoOptions): Promise<ListResult<EnterpriseRunState>>;
|
|
1254
1255
|
readMany(request: EnterpriseRunStateCriteria, options?: IThrowingRepoOptions): Promise<EnterpriseRunState[]>;
|
|
1255
|
-
/** Overwrites each existing EnterpriseRunState. */
|
|
1256
|
-
tryUpdateMany(request: Array<EnterpriseRunState>, options?: IRepoOptions): Promise<BatchResult<EnterpriseRunState>>;
|
|
1257
|
-
updateMany(request: Array<EnterpriseRunState>, options?: IThrowingRepoOptions): Promise<EnterpriseRunState[]>;
|
|
1258
1256
|
/** Performs the given operations on each existing EnterpriseRunState that satisfies the given criteria. */
|
|
1259
1257
|
tryPatchWhere(request: PatchSpecForMany<EnterpriseRunState, EnterpriseRunStateCriteria>, options?: IRepoOptions): Promise<BatchResult<EnterpriseRunState>>;
|
|
1260
1258
|
patchWhere(request: PatchSpecForMany<EnterpriseRunState, EnterpriseRunStateCriteria>, options?: IThrowingRepoOptions): Promise<EnterpriseRunState[]>;
|
|
1261
|
-
/**
|
|
1262
|
-
|
|
1263
|
-
|
|
1259
|
+
/** Saves each given input as a new EnterpriseRunState. */
|
|
1260
|
+
tryCreateMany(request: Array<EnterpriseRunState>, options?: IRepoOptions): Promise<BatchResult<EnterpriseRunState>>;
|
|
1261
|
+
createMany(request: Array<EnterpriseRunState>, options?: IThrowingRepoOptions): Promise<EnterpriseRunState[]>;
|
|
1262
|
+
/** Overwrites each existing EnterpriseRunState. */
|
|
1263
|
+
tryUpdateMany(request: Array<EnterpriseRunState>, options?: IRepoOptions): Promise<BatchResult<EnterpriseRunState>>;
|
|
1264
|
+
updateMany(request: Array<EnterpriseRunState>, options?: IThrowingRepoOptions): Promise<EnterpriseRunState[]>;
|
|
1265
|
+
/** Deletes the existing EnterpriseRunState. */
|
|
1266
|
+
tryDelete(request: IdSpecFor<EnterpriseRunState>, options?: IRepoOptions): Promise<SingleResult<EnterpriseRunState>>;
|
|
1267
|
+
delete(request: IdSpecFor<EnterpriseRunState>, options?: IThrowingRepoOptions): Promise<EnterpriseRunState>;
|
|
1264
1268
|
/** Retrieves the single, uniquely identified EnterpriseRunState. */
|
|
1265
1269
|
tryRead(request: IdSpecFor<EnterpriseRunState>, options?: IRepoOptions): Promise<SingleResult<EnterpriseRunState>>;
|
|
1266
1270
|
read(request: IdSpecFor<EnterpriseRunState>, options?: IThrowingRepoOptions): Promise<EnterpriseRunState>;
|
|
1267
|
-
/** Overwrites the existing EnterpriseRunState. */
|
|
1268
|
-
tryUpdate(request: EnterpriseRunState, options?: IRepoOptions): Promise<SingleResult<EnterpriseRunState>>;
|
|
1269
|
-
update(request: EnterpriseRunState, options?: IThrowingRepoOptions): Promise<EnterpriseRunState>;
|
|
1270
1271
|
/** Performs the given operations on the existing EnterpriseRunState. */
|
|
1271
1272
|
tryPatch(request: PatchSpecForOne<EnterpriseRunState>, options?: IRepoOptions): Promise<SingleResult<EnterpriseRunState>>;
|
|
1272
1273
|
patch(request: PatchSpecForOne<EnterpriseRunState>, options?: IThrowingRepoOptions): Promise<EnterpriseRunState>;
|
|
1273
|
-
/**
|
|
1274
|
-
|
|
1275
|
-
|
|
1274
|
+
/** Overwrites the existing EnterpriseRunState. */
|
|
1275
|
+
tryUpdate(request: EnterpriseRunState, options?: IRepoOptions): Promise<SingleResult<EnterpriseRunState>>;
|
|
1276
|
+
update(request: EnterpriseRunState, options?: IThrowingRepoOptions): Promise<EnterpriseRunState>;
|
|
1276
1277
|
/** Overwrites the given properties of the existing EnterpriseRunState. */
|
|
1277
1278
|
tryUpdatePartial(request: EnterpriseRunState, options?: IRepoOptions): Promise<SingleResult<PartialWithId<EnterpriseRunState>>>;
|
|
1278
1279
|
updatePartial(request: EnterpriseRunState, options?: IThrowingRepoOptions): Promise<PartialWithId<EnterpriseRunState>>;
|
|
1279
1280
|
/** Saves the input as a new EnterpriseRunState. */
|
|
1280
1281
|
tryCreate(request: EnterpriseRunState, options?: IRepoOptions): Promise<SingleResult<EnterpriseRunState>>;
|
|
1281
1282
|
create(request: EnterpriseRunState, options?: IThrowingRepoOptions): Promise<EnterpriseRunState>;
|
|
1282
|
-
/** Performs the given operation on each existing EnterpriseRunState that satisfies the given criteria. */
|
|
1283
|
-
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<EnterpriseRunState, EnterpriseRunStateCriteria>, options?: IRepoOptions): Promise<BatchResult<EnterpriseRunState>>;
|
|
1284
|
-
UpdatePartialWhere(request: UpdatePartialWhereRequest<EnterpriseRunState, EnterpriseRunStateCriteria>, options?: IThrowingRepoOptions): Promise<EnterpriseRunState[]>;
|
|
1285
1283
|
/** Overwrites the given properties for each existing EnterpriseRunState. */
|
|
1286
1284
|
tryUpdatePartialMany(request: Array<EnterpriseRunState>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<EnterpriseRunState>>>;
|
|
1287
1285
|
updatePartialMany(request: Array<EnterpriseRunState>, options?: IThrowingRepoOptions): Promise<PartialWithId<EnterpriseRunState>[]>;
|
|
1288
|
-
/**
|
|
1289
|
-
|
|
1290
|
-
|
|
1286
|
+
/** Performs the given operation on each existing EnterpriseRunState that satisfies the given criteria. */
|
|
1287
|
+
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<EnterpriseRunState, EnterpriseRunStateCriteria>, options?: IRepoOptions): Promise<BatchResult<EnterpriseRunState>>;
|
|
1288
|
+
UpdatePartialWhere(request: UpdatePartialWhereRequest<EnterpriseRunState, EnterpriseRunStateCriteria>, options?: IThrowingRepoOptions): Promise<EnterpriseRunState[]>;
|
|
1291
1289
|
/** 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). */
|
|
1292
1290
|
tryUpsert(request: EnterpriseRunState, options?: IRepoOptions): Promise<SingleResult<EnterpriseRunState>>;
|
|
1293
1291
|
upsert(request: EnterpriseRunState, options?: IThrowingRepoOptions): Promise<EnterpriseRunState>;
|
|
1292
|
+
/** 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). */
|
|
1293
|
+
tryUpsertMany(request: Array<EnterpriseRunState>, options?: IRepoOptions): Promise<BatchResult<EnterpriseRunState>>;
|
|
1294
|
+
upsertMany(request: Array<EnterpriseRunState>, options?: IThrowingRepoOptions): Promise<EnterpriseRunState[]>;
|
|
1294
1295
|
}
|
|
1295
1296
|
import { EnterpriseVersionConfig, EnterpriseVersionConfigCriteria } from "../contracts";
|
|
1296
1297
|
declare class EnterpriseVersionConfigCruds {
|
|
1297
1298
|
private core;
|
|
1298
1299
|
constructor(core: ApiClientBase);
|
|
1299
|
-
/**
|
|
1300
|
-
|
|
1301
|
-
|
|
1300
|
+
/** Deletes each existing EnterpriseVersionConfig that satisfies the given criteria. */
|
|
1301
|
+
tryDeleteWhere(request: EnterpriseVersionConfigCriteria, options?: IRepoOptions): Promise<BatchResult<EnterpriseVersionConfig>>;
|
|
1302
|
+
deleteWhere(request: EnterpriseVersionConfigCriteria, options?: IThrowingRepoOptions): Promise<EnterpriseVersionConfig[]>;
|
|
1302
1303
|
/** Retrieves all the existing EnterpriseVersionConfig that satisfy the given criteria. */
|
|
1303
1304
|
tryReadMany(request: EnterpriseVersionConfigCriteria, options?: IRepoOptions): Promise<ListResult<EnterpriseVersionConfig>>;
|
|
1304
1305
|
readMany(request: EnterpriseVersionConfigCriteria, options?: IThrowingRepoOptions): Promise<EnterpriseVersionConfig[]>;
|
|
1305
|
-
/** Overwrites each existing EnterpriseVersionConfig. */
|
|
1306
|
-
tryUpdateMany(request: Array<EnterpriseVersionConfig>, options?: IRepoOptions): Promise<BatchResult<EnterpriseVersionConfig>>;
|
|
1307
|
-
updateMany(request: Array<EnterpriseVersionConfig>, options?: IThrowingRepoOptions): Promise<EnterpriseVersionConfig[]>;
|
|
1308
1306
|
/** Performs the given operations on each existing EnterpriseVersionConfig that satisfies the given criteria. */
|
|
1309
1307
|
tryPatchWhere(request: PatchSpecForMany<EnterpriseVersionConfig, EnterpriseVersionConfigCriteria>, options?: IRepoOptions): Promise<BatchResult<EnterpriseVersionConfig>>;
|
|
1310
1308
|
patchWhere(request: PatchSpecForMany<EnterpriseVersionConfig, EnterpriseVersionConfigCriteria>, options?: IThrowingRepoOptions): Promise<EnterpriseVersionConfig[]>;
|
|
1311
|
-
/**
|
|
1312
|
-
|
|
1313
|
-
|
|
1309
|
+
/** Saves each given input as a new EnterpriseVersionConfig. */
|
|
1310
|
+
tryCreateMany(request: Array<EnterpriseVersionConfig>, options?: IRepoOptions): Promise<BatchResult<EnterpriseVersionConfig>>;
|
|
1311
|
+
createMany(request: Array<EnterpriseVersionConfig>, options?: IThrowingRepoOptions): Promise<EnterpriseVersionConfig[]>;
|
|
1312
|
+
/** Overwrites each existing EnterpriseVersionConfig. */
|
|
1313
|
+
tryUpdateMany(request: Array<EnterpriseVersionConfig>, options?: IRepoOptions): Promise<BatchResult<EnterpriseVersionConfig>>;
|
|
1314
|
+
updateMany(request: Array<EnterpriseVersionConfig>, options?: IThrowingRepoOptions): Promise<EnterpriseVersionConfig[]>;
|
|
1315
|
+
/** Deletes the existing EnterpriseVersionConfig. */
|
|
1316
|
+
tryDelete(request: IdSpecFor<EnterpriseVersionConfig>, options?: IRepoOptions): Promise<SingleResult<EnterpriseVersionConfig>>;
|
|
1317
|
+
delete(request: IdSpecFor<EnterpriseVersionConfig>, options?: IThrowingRepoOptions): Promise<EnterpriseVersionConfig>;
|
|
1314
1318
|
/** Retrieves the single, uniquely identified EnterpriseVersionConfig. */
|
|
1315
1319
|
tryRead(request: IdSpecFor<EnterpriseVersionConfig>, options?: IRepoOptions): Promise<SingleResult<EnterpriseVersionConfig>>;
|
|
1316
1320
|
read(request: IdSpecFor<EnterpriseVersionConfig>, options?: IThrowingRepoOptions): Promise<EnterpriseVersionConfig>;
|
|
1317
|
-
/** Overwrites the existing EnterpriseVersionConfig. */
|
|
1318
|
-
tryUpdate(request: EnterpriseVersionConfig, options?: IRepoOptions): Promise<SingleResult<EnterpriseVersionConfig>>;
|
|
1319
|
-
update(request: EnterpriseVersionConfig, options?: IThrowingRepoOptions): Promise<EnterpriseVersionConfig>;
|
|
1320
1321
|
/** Performs the given operations on the existing EnterpriseVersionConfig. */
|
|
1321
1322
|
tryPatch(request: PatchSpecForOne<EnterpriseVersionConfig>, options?: IRepoOptions): Promise<SingleResult<EnterpriseVersionConfig>>;
|
|
1322
1323
|
patch(request: PatchSpecForOne<EnterpriseVersionConfig>, options?: IThrowingRepoOptions): Promise<EnterpriseVersionConfig>;
|
|
1323
|
-
/**
|
|
1324
|
-
|
|
1325
|
-
|
|
1324
|
+
/** Overwrites the existing EnterpriseVersionConfig. */
|
|
1325
|
+
tryUpdate(request: EnterpriseVersionConfig, options?: IRepoOptions): Promise<SingleResult<EnterpriseVersionConfig>>;
|
|
1326
|
+
update(request: EnterpriseVersionConfig, options?: IThrowingRepoOptions): Promise<EnterpriseVersionConfig>;
|
|
1326
1327
|
/** Overwrites the given properties of the existing EnterpriseVersionConfig. */
|
|
1327
1328
|
tryUpdatePartial(request: EnterpriseVersionConfig, options?: IRepoOptions): Promise<SingleResult<PartialWithId<EnterpriseVersionConfig>>>;
|
|
1328
1329
|
updatePartial(request: EnterpriseVersionConfig, options?: IThrowingRepoOptions): Promise<PartialWithId<EnterpriseVersionConfig>>;
|
|
1329
1330
|
/** Saves the input as a new EnterpriseVersionConfig. */
|
|
1330
1331
|
tryCreate(request: EnterpriseVersionConfig, options?: IRepoOptions): Promise<SingleResult<EnterpriseVersionConfig>>;
|
|
1331
|
-
create(request: EnterpriseVersionConfig, options?: IThrowingRepoOptions): Promise<EnterpriseVersionConfig>;
|
|
1332
|
-
/**
|
|
1333
|
-
|
|
1334
|
-
|
|
1335
|
-
/**
|
|
1336
|
-
|
|
1337
|
-
|
|
1338
|
-
/** Saves
|
|
1339
|
-
|
|
1340
|
-
|
|
1341
|
-
/** Saves
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
}
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
|
|
1364
|
-
|
|
1365
|
-
|
|
1366
|
-
|
|
1367
|
-
|
|
1368
|
-
|
|
1369
|
-
|
|
1370
|
-
|
|
1371
|
-
|
|
1372
|
-
|
|
1373
|
-
|
|
1374
|
-
|
|
1375
|
-
|
|
1376
|
-
|
|
1377
|
-
|
|
1378
|
-
|
|
1379
|
-
|
|
1380
|
-
|
|
1381
|
-
|
|
1382
|
-
|
|
1383
|
-
|
|
1384
|
-
|
|
1385
|
-
|
|
1386
|
-
|
|
1387
|
-
|
|
1388
|
-
|
|
1389
|
-
|
|
1390
|
-
|
|
1391
|
-
|
|
1392
|
-
|
|
1393
|
-
upsert(request: Enterprise, options?: IThrowingRepoOptions): Promise<Enterprise>;
|
|
1332
|
+
create(request: EnterpriseVersionConfig, options?: IThrowingRepoOptions): Promise<EnterpriseVersionConfig>;
|
|
1333
|
+
/** Overwrites the given properties for each existing EnterpriseVersionConfig. */
|
|
1334
|
+
tryUpdatePartialMany(request: Array<EnterpriseVersionConfig>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<EnterpriseVersionConfig>>>;
|
|
1335
|
+
updatePartialMany(request: Array<EnterpriseVersionConfig>, options?: IThrowingRepoOptions): Promise<PartialWithId<EnterpriseVersionConfig>[]>;
|
|
1336
|
+
/** Performs the given operation on each existing EnterpriseVersionConfig that satisfies the given criteria. */
|
|
1337
|
+
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<EnterpriseVersionConfig, EnterpriseVersionConfigCriteria>, options?: IRepoOptions): Promise<BatchResult<EnterpriseVersionConfig>>;
|
|
1338
|
+
UpdatePartialWhere(request: UpdatePartialWhereRequest<EnterpriseVersionConfig, EnterpriseVersionConfigCriteria>, options?: IThrowingRepoOptions): Promise<EnterpriseVersionConfig[]>;
|
|
1339
|
+
/** 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). */
|
|
1340
|
+
tryUpsert(request: EnterpriseVersionConfig, options?: IRepoOptions): Promise<SingleResult<EnterpriseVersionConfig>>;
|
|
1341
|
+
upsert(request: EnterpriseVersionConfig, options?: IThrowingRepoOptions): Promise<EnterpriseVersionConfig>;
|
|
1342
|
+
/** 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). */
|
|
1343
|
+
tryUpsertMany(request: Array<EnterpriseVersionConfig>, options?: IRepoOptions): Promise<BatchResult<EnterpriseVersionConfig>>;
|
|
1344
|
+
upsertMany(request: Array<EnterpriseVersionConfig>, options?: IThrowingRepoOptions): Promise<EnterpriseVersionConfig[]>;
|
|
1345
|
+
}
|
|
1346
|
+
declare class EntityAclCruds {
|
|
1347
|
+
private core;
|
|
1348
|
+
constructor(core: ApiClientBase);
|
|
1349
|
+
/** Deletes each existing EntityAcl that satisfies the given criteria. */
|
|
1350
|
+
tryDeleteWhere(request: EntityAclCriteria, options?: IRepoOptions): Promise<BatchResult<EntityAcl>>;
|
|
1351
|
+
deleteWhere(request: EntityAclCriteria, options?: IThrowingRepoOptions): Promise<EntityAcl[]>;
|
|
1352
|
+
/** Retrieves all the existing EntityAcl that satisfy the given criteria. */
|
|
1353
|
+
tryReadMany(request: EntityAclCriteria, options?: IRepoOptions): Promise<ListResult<EntityAcl>>;
|
|
1354
|
+
readMany(request: EntityAclCriteria, options?: IThrowingRepoOptions): Promise<EntityAcl[]>;
|
|
1355
|
+
/** Performs the given operations on each existing EntityAcl that satisfies the given criteria. */
|
|
1356
|
+
tryPatchWhere(request: PatchSpecForMany<EntityAcl, EntityAclCriteria>, options?: IRepoOptions): Promise<BatchResult<EntityAcl>>;
|
|
1357
|
+
patchWhere(request: PatchSpecForMany<EntityAcl, EntityAclCriteria>, options?: IThrowingRepoOptions): Promise<EntityAcl[]>;
|
|
1358
|
+
/** Saves each given input as a new EntityAcl. */
|
|
1359
|
+
tryCreateMany(request: Array<EntityAcl>, options?: IRepoOptions): Promise<BatchResult<EntityAcl>>;
|
|
1360
|
+
createMany(request: Array<EntityAcl>, options?: IThrowingRepoOptions): Promise<EntityAcl[]>;
|
|
1361
|
+
/** Overwrites each existing EntityAcl. */
|
|
1362
|
+
tryUpdateMany(request: Array<EntityAcl>, options?: IRepoOptions): Promise<BatchResult<EntityAcl>>;
|
|
1363
|
+
updateMany(request: Array<EntityAcl>, options?: IThrowingRepoOptions): Promise<EntityAcl[]>;
|
|
1364
|
+
/** Deletes the existing EntityAcl. */
|
|
1365
|
+
tryDelete(request: IdSpecFor<EntityAcl>, options?: IRepoOptions): Promise<SingleResult<EntityAcl>>;
|
|
1366
|
+
delete(request: IdSpecFor<EntityAcl>, options?: IThrowingRepoOptions): Promise<EntityAcl>;
|
|
1367
|
+
/** Retrieves the single, uniquely identified EntityAcl. */
|
|
1368
|
+
tryRead(request: IdSpecFor<EntityAcl>, options?: IRepoOptions): Promise<SingleResult<EntityAcl>>;
|
|
1369
|
+
read(request: IdSpecFor<EntityAcl>, options?: IThrowingRepoOptions): Promise<EntityAcl>;
|
|
1370
|
+
/** Performs the given operations on the existing EntityAcl. */
|
|
1371
|
+
tryPatch(request: PatchSpecForOne<EntityAcl>, options?: IRepoOptions): Promise<SingleResult<EntityAcl>>;
|
|
1372
|
+
patch(request: PatchSpecForOne<EntityAcl>, options?: IThrowingRepoOptions): Promise<EntityAcl>;
|
|
1373
|
+
/** Overwrites the existing EntityAcl. */
|
|
1374
|
+
tryUpdate(request: EntityAcl, options?: IRepoOptions): Promise<SingleResult<EntityAcl>>;
|
|
1375
|
+
update(request: EntityAcl, options?: IThrowingRepoOptions): Promise<EntityAcl>;
|
|
1376
|
+
/** Overwrites the given properties of the existing EntityAcl. */
|
|
1377
|
+
tryUpdatePartial(request: EntityAcl, options?: IRepoOptions): Promise<SingleResult<PartialWithId<EntityAcl>>>;
|
|
1378
|
+
updatePartial(request: EntityAcl, options?: IThrowingRepoOptions): Promise<PartialWithId<EntityAcl>>;
|
|
1379
|
+
/** Saves the input as a new EntityAcl. */
|
|
1380
|
+
tryCreate(request: EntityAcl, options?: IRepoOptions): Promise<SingleResult<EntityAcl>>;
|
|
1381
|
+
create(request: EntityAcl, options?: IThrowingRepoOptions): Promise<EntityAcl>;
|
|
1382
|
+
/** Overwrites the given properties for each existing EntityAcl. */
|
|
1383
|
+
tryUpdatePartialMany(request: Array<EntityAcl>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<EntityAcl>>>;
|
|
1384
|
+
updatePartialMany(request: Array<EntityAcl>, options?: IThrowingRepoOptions): Promise<PartialWithId<EntityAcl>[]>;
|
|
1385
|
+
/** Performs the given operation on each existing EntityAcl that satisfies the given criteria. */
|
|
1386
|
+
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<EntityAcl, EntityAclCriteria>, options?: IRepoOptions): Promise<BatchResult<EntityAcl>>;
|
|
1387
|
+
UpdatePartialWhere(request: UpdatePartialWhereRequest<EntityAcl, EntityAclCriteria>, options?: IThrowingRepoOptions): Promise<EntityAcl[]>;
|
|
1388
|
+
/** 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). */
|
|
1389
|
+
tryUpsert(request: EntityAcl, options?: IRepoOptions): Promise<SingleResult<EntityAcl>>;
|
|
1390
|
+
upsert(request: EntityAcl, options?: IThrowingRepoOptions): Promise<EntityAcl>;
|
|
1391
|
+
/** 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). */
|
|
1392
|
+
tryUpsertMany(request: Array<EntityAcl>, options?: IRepoOptions): Promise<BatchResult<EntityAcl>>;
|
|
1393
|
+
upsertMany(request: Array<EntityAcl>, options?: IThrowingRepoOptions): Promise<EntityAcl[]>;
|
|
1394
1394
|
}
|
|
1395
1395
|
import { Environment, EnvironmentCriteria } from "../contracts";
|
|
1396
1396
|
declare class EnvironmentCruds {
|
|
1397
1397
|
private core;
|
|
1398
1398
|
constructor(core: ApiClientBase);
|
|
1399
|
-
/**
|
|
1400
|
-
|
|
1401
|
-
|
|
1399
|
+
/** Deletes each existing Environment that satisfies the given criteria. */
|
|
1400
|
+
tryDeleteWhere(request: EnvironmentCriteria, options?: IRepoOptions): Promise<BatchResult<Environment>>;
|
|
1401
|
+
deleteWhere(request: EnvironmentCriteria, options?: IThrowingRepoOptions): Promise<Environment[]>;
|
|
1402
1402
|
/** Retrieves all the existing Environment that satisfy the given criteria. */
|
|
1403
1403
|
tryReadMany(request: EnvironmentCriteria, options?: IRepoOptions): Promise<ListResult<Environment>>;
|
|
1404
1404
|
readMany(request: EnvironmentCriteria, options?: IThrowingRepoOptions): Promise<Environment[]>;
|
|
1405
|
-
/** Overwrites each existing Environment. */
|
|
1406
|
-
tryUpdateMany(request: Array<Environment>, options?: IRepoOptions): Promise<BatchResult<Environment>>;
|
|
1407
|
-
updateMany(request: Array<Environment>, options?: IThrowingRepoOptions): Promise<Environment[]>;
|
|
1408
1405
|
/** Performs the given operations on each existing Environment that satisfies the given criteria. */
|
|
1409
1406
|
tryPatchWhere(request: PatchSpecForMany<Environment, EnvironmentCriteria>, options?: IRepoOptions): Promise<BatchResult<Environment>>;
|
|
1410
1407
|
patchWhere(request: PatchSpecForMany<Environment, EnvironmentCriteria>, options?: IThrowingRepoOptions): Promise<Environment[]>;
|
|
1411
|
-
/**
|
|
1412
|
-
|
|
1413
|
-
|
|
1408
|
+
/** Saves each given input as a new Environment. */
|
|
1409
|
+
tryCreateMany(request: Array<Environment>, options?: IRepoOptions): Promise<BatchResult<Environment>>;
|
|
1410
|
+
createMany(request: Array<Environment>, options?: IThrowingRepoOptions): Promise<Environment[]>;
|
|
1411
|
+
/** Overwrites each existing Environment. */
|
|
1412
|
+
tryUpdateMany(request: Array<Environment>, options?: IRepoOptions): Promise<BatchResult<Environment>>;
|
|
1413
|
+
updateMany(request: Array<Environment>, options?: IThrowingRepoOptions): Promise<Environment[]>;
|
|
1414
|
+
/** Deletes the existing Environment. */
|
|
1415
|
+
tryDelete(request: IdSpecFor<Environment>, options?: IRepoOptions): Promise<SingleResult<Environment>>;
|
|
1416
|
+
delete(request: IdSpecFor<Environment>, options?: IThrowingRepoOptions): Promise<Environment>;
|
|
1414
1417
|
/** Retrieves the single, uniquely identified Environment. */
|
|
1415
1418
|
tryRead(request: IdSpecFor<Environment>, options?: IRepoOptions): Promise<SingleResult<Environment>>;
|
|
1416
1419
|
read(request: IdSpecFor<Environment>, options?: IThrowingRepoOptions): Promise<Environment>;
|
|
1417
|
-
/** Overwrites the existing Environment. */
|
|
1418
|
-
tryUpdate(request: Environment, options?: IRepoOptions): Promise<SingleResult<Environment>>;
|
|
1419
|
-
update(request: Environment, options?: IThrowingRepoOptions): Promise<Environment>;
|
|
1420
1420
|
/** Performs the given operations on the existing Environment. */
|
|
1421
1421
|
tryPatch(request: PatchSpecForOne<Environment>, options?: IRepoOptions): Promise<SingleResult<Environment>>;
|
|
1422
1422
|
patch(request: PatchSpecForOne<Environment>, options?: IThrowingRepoOptions): Promise<Environment>;
|
|
1423
|
-
/**
|
|
1424
|
-
|
|
1425
|
-
|
|
1423
|
+
/** Overwrites the existing Environment. */
|
|
1424
|
+
tryUpdate(request: Environment, options?: IRepoOptions): Promise<SingleResult<Environment>>;
|
|
1425
|
+
update(request: Environment, options?: IThrowingRepoOptions): Promise<Environment>;
|
|
1426
1426
|
/** Overwrites the given properties of the existing Environment. */
|
|
1427
1427
|
tryUpdatePartial(request: Environment, options?: IRepoOptions): Promise<SingleResult<PartialWithId<Environment>>>;
|
|
1428
1428
|
updatePartial(request: Environment, options?: IThrowingRepoOptions): Promise<PartialWithId<Environment>>;
|
|
1429
1429
|
/** Saves the input as a new Environment. */
|
|
1430
1430
|
tryCreate(request: Environment, options?: IRepoOptions): Promise<SingleResult<Environment>>;
|
|
1431
1431
|
create(request: Environment, options?: IThrowingRepoOptions): Promise<Environment>;
|
|
1432
|
-
/** Performs the given operation on each existing Environment that satisfies the given criteria. */
|
|
1433
|
-
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<Environment, EnvironmentCriteria>, options?: IRepoOptions): Promise<BatchResult<Environment>>;
|
|
1434
|
-
UpdatePartialWhere(request: UpdatePartialWhereRequest<Environment, EnvironmentCriteria>, options?: IThrowingRepoOptions): Promise<Environment[]>;
|
|
1435
1432
|
/** Overwrites the given properties for each existing Environment. */
|
|
1436
1433
|
tryUpdatePartialMany(request: Array<Environment>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<Environment>>>;
|
|
1437
1434
|
updatePartialMany(request: Array<Environment>, options?: IThrowingRepoOptions): Promise<PartialWithId<Environment>[]>;
|
|
1438
|
-
/**
|
|
1439
|
-
|
|
1440
|
-
|
|
1435
|
+
/** Performs the given operation on each existing Environment that satisfies the given criteria. */
|
|
1436
|
+
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<Environment, EnvironmentCriteria>, options?: IRepoOptions): Promise<BatchResult<Environment>>;
|
|
1437
|
+
UpdatePartialWhere(request: UpdatePartialWhereRequest<Environment, EnvironmentCriteria>, options?: IThrowingRepoOptions): Promise<Environment[]>;
|
|
1441
1438
|
/** 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). */
|
|
1442
1439
|
tryUpsert(request: Environment, options?: IRepoOptions): Promise<SingleResult<Environment>>;
|
|
1443
1440
|
upsert(request: Environment, options?: IThrowingRepoOptions): Promise<Environment>;
|
|
1441
|
+
/** 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). */
|
|
1442
|
+
tryUpsertMany(request: Array<Environment>, options?: IRepoOptions): Promise<BatchResult<Environment>>;
|
|
1443
|
+
upsertMany(request: Array<Environment>, options?: IThrowingRepoOptions): Promise<Environment[]>;
|
|
1444
1444
|
}
|
|
1445
1445
|
import { FileStoreDef, FileStoreDefCriteria } from "../contracts";
|
|
1446
1446
|
declare class FileStoreDefCruds {
|
|
1447
1447
|
private core;
|
|
1448
1448
|
constructor(core: ApiClientBase);
|
|
1449
|
-
/**
|
|
1450
|
-
|
|
1451
|
-
|
|
1449
|
+
/** Deletes each existing FileStoreDef that satisfies the given criteria. */
|
|
1450
|
+
tryDeleteWhere(request: FileStoreDefCriteria, options?: IRepoOptions): Promise<BatchResult<FileStoreDef>>;
|
|
1451
|
+
deleteWhere(request: FileStoreDefCriteria, options?: IThrowingRepoOptions): Promise<FileStoreDef[]>;
|
|
1452
1452
|
/** Retrieves all the existing FileStoreDef that satisfy the given criteria. */
|
|
1453
1453
|
tryReadMany(request: FileStoreDefCriteria, options?: IRepoOptions): Promise<ListResult<FileStoreDef>>;
|
|
1454
1454
|
readMany(request: FileStoreDefCriteria, options?: IThrowingRepoOptions): Promise<FileStoreDef[]>;
|
|
1455
|
-
/** Overwrites each existing FileStoreDef. */
|
|
1456
|
-
tryUpdateMany(request: Array<FileStoreDef>, options?: IRepoOptions): Promise<BatchResult<FileStoreDef>>;
|
|
1457
|
-
updateMany(request: Array<FileStoreDef>, options?: IThrowingRepoOptions): Promise<FileStoreDef[]>;
|
|
1458
1455
|
/** Performs the given operations on each existing FileStoreDef that satisfies the given criteria. */
|
|
1459
1456
|
tryPatchWhere(request: PatchSpecForMany<FileStoreDef, FileStoreDefCriteria>, options?: IRepoOptions): Promise<BatchResult<FileStoreDef>>;
|
|
1460
1457
|
patchWhere(request: PatchSpecForMany<FileStoreDef, FileStoreDefCriteria>, options?: IThrowingRepoOptions): Promise<FileStoreDef[]>;
|
|
1461
|
-
/**
|
|
1462
|
-
|
|
1463
|
-
|
|
1458
|
+
/** Saves each given input as a new FileStoreDef. */
|
|
1459
|
+
tryCreateMany(request: Array<FileStoreDef>, options?: IRepoOptions): Promise<BatchResult<FileStoreDef>>;
|
|
1460
|
+
createMany(request: Array<FileStoreDef>, options?: IThrowingRepoOptions): Promise<FileStoreDef[]>;
|
|
1461
|
+
/** Overwrites each existing FileStoreDef. */
|
|
1462
|
+
tryUpdateMany(request: Array<FileStoreDef>, options?: IRepoOptions): Promise<BatchResult<FileStoreDef>>;
|
|
1463
|
+
updateMany(request: Array<FileStoreDef>, options?: IThrowingRepoOptions): Promise<FileStoreDef[]>;
|
|
1464
|
+
/** Deletes the existing FileStoreDef. */
|
|
1465
|
+
tryDelete(request: IdSpecFor<FileStoreDef>, options?: IRepoOptions): Promise<SingleResult<FileStoreDef>>;
|
|
1466
|
+
delete(request: IdSpecFor<FileStoreDef>, options?: IThrowingRepoOptions): Promise<FileStoreDef>;
|
|
1464
1467
|
/** Retrieves the single, uniquely identified FileStoreDef. */
|
|
1465
1468
|
tryRead(request: IdSpecFor<FileStoreDef>, options?: IRepoOptions): Promise<SingleResult<FileStoreDef>>;
|
|
1466
1469
|
read(request: IdSpecFor<FileStoreDef>, options?: IThrowingRepoOptions): Promise<FileStoreDef>;
|
|
1467
|
-
/** Overwrites the existing FileStoreDef. */
|
|
1468
|
-
tryUpdate(request: FileStoreDef, options?: IRepoOptions): Promise<SingleResult<FileStoreDef>>;
|
|
1469
|
-
update(request: FileStoreDef, options?: IThrowingRepoOptions): Promise<FileStoreDef>;
|
|
1470
1470
|
/** Performs the given operations on the existing FileStoreDef. */
|
|
1471
1471
|
tryPatch(request: PatchSpecForOne<FileStoreDef>, options?: IRepoOptions): Promise<SingleResult<FileStoreDef>>;
|
|
1472
1472
|
patch(request: PatchSpecForOne<FileStoreDef>, options?: IThrowingRepoOptions): Promise<FileStoreDef>;
|
|
1473
|
-
/**
|
|
1474
|
-
|
|
1475
|
-
|
|
1473
|
+
/** Overwrites the existing FileStoreDef. */
|
|
1474
|
+
tryUpdate(request: FileStoreDef, options?: IRepoOptions): Promise<SingleResult<FileStoreDef>>;
|
|
1475
|
+
update(request: FileStoreDef, options?: IThrowingRepoOptions): Promise<FileStoreDef>;
|
|
1476
1476
|
/** Overwrites the given properties of the existing FileStoreDef. */
|
|
1477
1477
|
tryUpdatePartial(request: FileStoreDef, options?: IRepoOptions): Promise<SingleResult<PartialWithId<FileStoreDef>>>;
|
|
1478
1478
|
updatePartial(request: FileStoreDef, options?: IThrowingRepoOptions): Promise<PartialWithId<FileStoreDef>>;
|
|
1479
1479
|
/** Saves the input as a new FileStoreDef. */
|
|
1480
1480
|
tryCreate(request: FileStoreDef, options?: IRepoOptions): Promise<SingleResult<FileStoreDef>>;
|
|
1481
1481
|
create(request: FileStoreDef, options?: IThrowingRepoOptions): Promise<FileStoreDef>;
|
|
1482
|
-
/** Performs the given operation on each existing FileStoreDef that satisfies the given criteria. */
|
|
1483
|
-
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<FileStoreDef, FileStoreDefCriteria>, options?: IRepoOptions): Promise<BatchResult<FileStoreDef>>;
|
|
1484
|
-
UpdatePartialWhere(request: UpdatePartialWhereRequest<FileStoreDef, FileStoreDefCriteria>, options?: IThrowingRepoOptions): Promise<FileStoreDef[]>;
|
|
1485
1482
|
/** Overwrites the given properties for each existing FileStoreDef. */
|
|
1486
1483
|
tryUpdatePartialMany(request: Array<FileStoreDef>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<FileStoreDef>>>;
|
|
1487
1484
|
updatePartialMany(request: Array<FileStoreDef>, options?: IThrowingRepoOptions): Promise<PartialWithId<FileStoreDef>[]>;
|
|
1488
|
-
/**
|
|
1489
|
-
|
|
1490
|
-
|
|
1485
|
+
/** Performs the given operation on each existing FileStoreDef that satisfies the given criteria. */
|
|
1486
|
+
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<FileStoreDef, FileStoreDefCriteria>, options?: IRepoOptions): Promise<BatchResult<FileStoreDef>>;
|
|
1487
|
+
UpdatePartialWhere(request: UpdatePartialWhereRequest<FileStoreDef, FileStoreDefCriteria>, options?: IThrowingRepoOptions): Promise<FileStoreDef[]>;
|
|
1491
1488
|
/** 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). */
|
|
1492
1489
|
tryUpsert(request: FileStoreDef, options?: IRepoOptions): Promise<SingleResult<FileStoreDef>>;
|
|
1493
1490
|
upsert(request: FileStoreDef, options?: IThrowingRepoOptions): Promise<FileStoreDef>;
|
|
1494
|
-
|
|
1495
|
-
|
|
1496
|
-
|
|
1497
|
-
private core;
|
|
1498
|
-
constructor(core: ApiClientBase);
|
|
1499
|
-
/** Saves each given input as a new ScopedHostNameConfig. */
|
|
1500
|
-
tryCreateMany(request: Array<ScopedHostNameConfig>, options?: IRepoOptions): Promise<BatchResult<ScopedHostNameConfig>>;
|
|
1501
|
-
createMany(request: Array<ScopedHostNameConfig>, options?: IThrowingRepoOptions): Promise<ScopedHostNameConfig[]>;
|
|
1502
|
-
/** Retrieves all the existing ScopedHostNameConfig that satisfy the given criteria. */
|
|
1503
|
-
tryReadMany(request: ScopedHostNameConfigCriteria, options?: IRepoOptions): Promise<ListResult<ScopedHostNameConfig>>;
|
|
1504
|
-
readMany(request: ScopedHostNameConfigCriteria, options?: IThrowingRepoOptions): Promise<ScopedHostNameConfig[]>;
|
|
1505
|
-
/** Overwrites each existing ScopedHostNameConfig. */
|
|
1506
|
-
tryUpdateMany(request: Array<ScopedHostNameConfig>, options?: IRepoOptions): Promise<BatchResult<ScopedHostNameConfig>>;
|
|
1507
|
-
updateMany(request: Array<ScopedHostNameConfig>, options?: IThrowingRepoOptions): Promise<ScopedHostNameConfig[]>;
|
|
1508
|
-
/** Performs the given operations on each existing ScopedHostNameConfig that satisfies the given criteria. */
|
|
1509
|
-
tryPatchWhere(request: PatchSpecForMany<ScopedHostNameConfig, ScopedHostNameConfigCriteria>, options?: IRepoOptions): Promise<BatchResult<ScopedHostNameConfig>>;
|
|
1510
|
-
patchWhere(request: PatchSpecForMany<ScopedHostNameConfig, ScopedHostNameConfigCriteria>, options?: IThrowingRepoOptions): Promise<ScopedHostNameConfig[]>;
|
|
1511
|
-
/** Deletes each existing ScopedHostNameConfig that satisfies the given criteria. */
|
|
1512
|
-
tryDeleteWhere(request: ScopedHostNameConfigCriteria, options?: IRepoOptions): Promise<BatchResult<ScopedHostNameConfig>>;
|
|
1513
|
-
deleteWhere(request: ScopedHostNameConfigCriteria, options?: IThrowingRepoOptions): Promise<ScopedHostNameConfig[]>;
|
|
1514
|
-
/** Retrieves the single, uniquely identified ScopedHostNameConfig. */
|
|
1515
|
-
tryRead(request: IdSpecFor<ScopedHostNameConfig>, options?: IRepoOptions): Promise<SingleResult<ScopedHostNameConfig>>;
|
|
1516
|
-
read(request: IdSpecFor<ScopedHostNameConfig>, options?: IThrowingRepoOptions): Promise<ScopedHostNameConfig>;
|
|
1517
|
-
/** Overwrites the existing ScopedHostNameConfig. */
|
|
1518
|
-
tryUpdate(request: ScopedHostNameConfig, options?: IRepoOptions): Promise<SingleResult<ScopedHostNameConfig>>;
|
|
1519
|
-
update(request: ScopedHostNameConfig, options?: IThrowingRepoOptions): Promise<ScopedHostNameConfig>;
|
|
1520
|
-
/** Performs the given operations on the existing ScopedHostNameConfig. */
|
|
1521
|
-
tryPatch(request: PatchSpecForOne<ScopedHostNameConfig>, options?: IRepoOptions): Promise<SingleResult<ScopedHostNameConfig>>;
|
|
1522
|
-
patch(request: PatchSpecForOne<ScopedHostNameConfig>, options?: IThrowingRepoOptions): Promise<ScopedHostNameConfig>;
|
|
1523
|
-
/** Deletes the existing ScopedHostNameConfig. */
|
|
1524
|
-
tryDelete(request: IdSpecFor<ScopedHostNameConfig>, options?: IRepoOptions): Promise<SingleResult<ScopedHostNameConfig>>;
|
|
1525
|
-
delete(request: IdSpecFor<ScopedHostNameConfig>, options?: IThrowingRepoOptions): Promise<ScopedHostNameConfig>;
|
|
1526
|
-
/** Overwrites the given properties of the existing ScopedHostNameConfig. */
|
|
1527
|
-
tryUpdatePartial(request: ScopedHostNameConfig, options?: IRepoOptions): Promise<SingleResult<PartialWithId<ScopedHostNameConfig>>>;
|
|
1528
|
-
updatePartial(request: ScopedHostNameConfig, options?: IThrowingRepoOptions): Promise<PartialWithId<ScopedHostNameConfig>>;
|
|
1529
|
-
/** Saves the input as a new ScopedHostNameConfig. */
|
|
1530
|
-
tryCreate(request: ScopedHostNameConfig, options?: IRepoOptions): Promise<SingleResult<ScopedHostNameConfig>>;
|
|
1531
|
-
create(request: ScopedHostNameConfig, options?: IThrowingRepoOptions): Promise<ScopedHostNameConfig>;
|
|
1532
|
-
/** Performs the given operation on each existing ScopedHostNameConfig that satisfies the given criteria. */
|
|
1533
|
-
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<ScopedHostNameConfig, ScopedHostNameConfigCriteria>, options?: IRepoOptions): Promise<BatchResult<ScopedHostNameConfig>>;
|
|
1534
|
-
UpdatePartialWhere(request: UpdatePartialWhereRequest<ScopedHostNameConfig, ScopedHostNameConfigCriteria>, options?: IThrowingRepoOptions): Promise<ScopedHostNameConfig[]>;
|
|
1535
|
-
/** Overwrites the given properties for each existing ScopedHostNameConfig. */
|
|
1536
|
-
tryUpdatePartialMany(request: Array<ScopedHostNameConfig>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<ScopedHostNameConfig>>>;
|
|
1537
|
-
updatePartialMany(request: Array<ScopedHostNameConfig>, options?: IThrowingRepoOptions): Promise<PartialWithId<ScopedHostNameConfig>[]>;
|
|
1538
|
-
/** 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). */
|
|
1539
|
-
tryUpsertMany(request: Array<ScopedHostNameConfig>, options?: IRepoOptions): Promise<BatchResult<ScopedHostNameConfig>>;
|
|
1540
|
-
upsertMany(request: Array<ScopedHostNameConfig>, options?: IThrowingRepoOptions): Promise<ScopedHostNameConfig[]>;
|
|
1541
|
-
/** 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). */
|
|
1542
|
-
tryUpsert(request: ScopedHostNameConfig, options?: IRepoOptions): Promise<SingleResult<ScopedHostNameConfig>>;
|
|
1543
|
-
upsert(request: ScopedHostNameConfig, options?: IThrowingRepoOptions): Promise<ScopedHostNameConfig>;
|
|
1544
|
-
}
|
|
1545
|
-
import { ImageRegistry, ImageRegistryCriteria } from "../contracts";
|
|
1546
|
-
declare class ImageRegistryCruds {
|
|
1547
|
-
private core;
|
|
1548
|
-
constructor(core: ApiClientBase);
|
|
1549
|
-
/** Saves each given input as a new ImageRegistry. */
|
|
1550
|
-
tryCreateMany(request: Array<ImageRegistry>, options?: IRepoOptions): Promise<BatchResult<ImageRegistry>>;
|
|
1551
|
-
createMany(request: Array<ImageRegistry>, options?: IThrowingRepoOptions): Promise<ImageRegistry[]>;
|
|
1552
|
-
/** Retrieves all the existing ImageRegistry that satisfy the given criteria. */
|
|
1553
|
-
tryReadMany(request: ImageRegistryCriteria, options?: IRepoOptions): Promise<ListResult<ImageRegistry>>;
|
|
1554
|
-
readMany(request: ImageRegistryCriteria, options?: IThrowingRepoOptions): Promise<ImageRegistry[]>;
|
|
1555
|
-
/** Overwrites each existing ImageRegistry. */
|
|
1556
|
-
tryUpdateMany(request: Array<ImageRegistry>, options?: IRepoOptions): Promise<BatchResult<ImageRegistry>>;
|
|
1557
|
-
updateMany(request: Array<ImageRegistry>, options?: IThrowingRepoOptions): Promise<ImageRegistry[]>;
|
|
1558
|
-
/** Performs the given operations on each existing ImageRegistry that satisfies the given criteria. */
|
|
1559
|
-
tryPatchWhere(request: PatchSpecForMany<ImageRegistry, ImageRegistryCriteria>, options?: IRepoOptions): Promise<BatchResult<ImageRegistry>>;
|
|
1560
|
-
patchWhere(request: PatchSpecForMany<ImageRegistry, ImageRegistryCriteria>, options?: IThrowingRepoOptions): Promise<ImageRegistry[]>;
|
|
1561
|
-
/** Deletes each existing ImageRegistry that satisfies the given criteria. */
|
|
1562
|
-
tryDeleteWhere(request: ImageRegistryCriteria, options?: IRepoOptions): Promise<BatchResult<ImageRegistry>>;
|
|
1563
|
-
deleteWhere(request: ImageRegistryCriteria, options?: IThrowingRepoOptions): Promise<ImageRegistry[]>;
|
|
1564
|
-
/** Retrieves the single, uniquely identified ImageRegistry. */
|
|
1565
|
-
tryRead(request: IdSpecFor<ImageRegistry>, options?: IRepoOptions): Promise<SingleResult<ImageRegistry>>;
|
|
1566
|
-
read(request: IdSpecFor<ImageRegistry>, options?: IThrowingRepoOptions): Promise<ImageRegistry>;
|
|
1567
|
-
/** Overwrites the existing ImageRegistry. */
|
|
1568
|
-
tryUpdate(request: ImageRegistry, options?: IRepoOptions): Promise<SingleResult<ImageRegistry>>;
|
|
1569
|
-
update(request: ImageRegistry, options?: IThrowingRepoOptions): Promise<ImageRegistry>;
|
|
1570
|
-
/** Performs the given operations on the existing ImageRegistry. */
|
|
1571
|
-
tryPatch(request: PatchSpecForOne<ImageRegistry>, options?: IRepoOptions): Promise<SingleResult<ImageRegistry>>;
|
|
1572
|
-
patch(request: PatchSpecForOne<ImageRegistry>, options?: IThrowingRepoOptions): Promise<ImageRegistry>;
|
|
1573
|
-
/** Deletes the existing ImageRegistry. */
|
|
1574
|
-
tryDelete(request: IdSpecFor<ImageRegistry>, options?: IRepoOptions): Promise<SingleResult<ImageRegistry>>;
|
|
1575
|
-
delete(request: IdSpecFor<ImageRegistry>, options?: IThrowingRepoOptions): Promise<ImageRegistry>;
|
|
1576
|
-
/** Overwrites the given properties of the existing ImageRegistry. */
|
|
1577
|
-
tryUpdatePartial(request: ImageRegistry, options?: IRepoOptions): Promise<SingleResult<PartialWithId<ImageRegistry>>>;
|
|
1578
|
-
updatePartial(request: ImageRegistry, options?: IThrowingRepoOptions): Promise<PartialWithId<ImageRegistry>>;
|
|
1579
|
-
/** Saves the input as a new ImageRegistry. */
|
|
1580
|
-
tryCreate(request: ImageRegistry, options?: IRepoOptions): Promise<SingleResult<ImageRegistry>>;
|
|
1581
|
-
create(request: ImageRegistry, options?: IThrowingRepoOptions): Promise<ImageRegistry>;
|
|
1582
|
-
/** Performs the given operation on each existing ImageRegistry that satisfies the given criteria. */
|
|
1583
|
-
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<ImageRegistry, ImageRegistryCriteria>, options?: IRepoOptions): Promise<BatchResult<ImageRegistry>>;
|
|
1584
|
-
UpdatePartialWhere(request: UpdatePartialWhereRequest<ImageRegistry, ImageRegistryCriteria>, options?: IThrowingRepoOptions): Promise<ImageRegistry[]>;
|
|
1585
|
-
/** Overwrites the given properties for each existing ImageRegistry. */
|
|
1586
|
-
tryUpdatePartialMany(request: Array<ImageRegistry>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<ImageRegistry>>>;
|
|
1587
|
-
updatePartialMany(request: Array<ImageRegistry>, options?: IThrowingRepoOptions): Promise<PartialWithId<ImageRegistry>[]>;
|
|
1588
|
-
/** 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). */
|
|
1589
|
-
tryUpsertMany(request: Array<ImageRegistry>, options?: IRepoOptions): Promise<BatchResult<ImageRegistry>>;
|
|
1590
|
-
upsertMany(request: Array<ImageRegistry>, options?: IThrowingRepoOptions): Promise<ImageRegistry[]>;
|
|
1591
|
-
/** 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). */
|
|
1592
|
-
tryUpsert(request: ImageRegistry, options?: IRepoOptions): Promise<SingleResult<ImageRegistry>>;
|
|
1593
|
-
upsert(request: ImageRegistry, options?: IThrowingRepoOptions): Promise<ImageRegistry>;
|
|
1491
|
+
/** 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). */
|
|
1492
|
+
tryUpsertMany(request: Array<FileStoreDef>, options?: IRepoOptions): Promise<BatchResult<FileStoreDef>>;
|
|
1493
|
+
upsertMany(request: Array<FileStoreDef>, options?: IThrowingRepoOptions): Promise<FileStoreDef[]>;
|
|
1594
1494
|
}
|
|
1595
1495
|
import { Image, ImageCriteria } from "../contracts";
|
|
1596
1496
|
declare class ImageCruds {
|
|
1597
1497
|
private core;
|
|
1598
1498
|
constructor(core: ApiClientBase);
|
|
1599
|
-
/**
|
|
1600
|
-
|
|
1601
|
-
|
|
1499
|
+
/** Deletes each existing Image that satisfies the given criteria. */
|
|
1500
|
+
tryDeleteWhere(request: ImageCriteria, options?: IRepoOptions): Promise<BatchResult<Image>>;
|
|
1501
|
+
deleteWhere(request: ImageCriteria, options?: IThrowingRepoOptions): Promise<Image[]>;
|
|
1602
1502
|
/** Retrieves all the existing Image that satisfy the given criteria. */
|
|
1603
1503
|
tryReadMany(request: ImageCriteria, options?: IRepoOptions): Promise<ListResult<Image>>;
|
|
1604
1504
|
readMany(request: ImageCriteria, options?: IThrowingRepoOptions): Promise<Image[]>;
|
|
1505
|
+
/** Performs the given operations on each existing Image that satisfies the given criteria. */
|
|
1506
|
+
tryPatchWhere(request: PatchSpecForMany<Image, ImageCriteria>, options?: IRepoOptions): Promise<BatchResult<Image>>;
|
|
1507
|
+
patchWhere(request: PatchSpecForMany<Image, ImageCriteria>, options?: IThrowingRepoOptions): Promise<Image[]>;
|
|
1508
|
+
/** Saves each given input as a new Image. */
|
|
1509
|
+
tryCreateMany(request: Array<Image>, options?: IRepoOptions): Promise<BatchResult<Image>>;
|
|
1510
|
+
createMany(request: Array<Image>, options?: IThrowingRepoOptions): Promise<Image[]>;
|
|
1605
1511
|
/** Overwrites each existing Image. */
|
|
1606
1512
|
tryUpdateMany(request: Array<Image>, options?: IRepoOptions): Promise<BatchResult<Image>>;
|
|
1607
1513
|
updateMany(request: Array<Image>, options?: IThrowingRepoOptions): Promise<Image[]>;
|
|
1608
|
-
/**
|
|
1609
|
-
|
|
1610
|
-
|
|
1611
|
-
/** Deletes each existing Image that satisfies the given criteria. */
|
|
1612
|
-
tryDeleteWhere(request: ImageCriteria, options?: IRepoOptions): Promise<BatchResult<Image>>;
|
|
1613
|
-
deleteWhere(request: ImageCriteria, options?: IThrowingRepoOptions): Promise<Image[]>;
|
|
1514
|
+
/** Deletes the existing Image. */
|
|
1515
|
+
tryDelete(request: IdSpecFor<Image>, options?: IRepoOptions): Promise<SingleResult<Image>>;
|
|
1516
|
+
delete(request: IdSpecFor<Image>, options?: IThrowingRepoOptions): Promise<Image>;
|
|
1614
1517
|
/** Retrieves the single, uniquely identified Image. */
|
|
1615
1518
|
tryRead(request: IdSpecFor<Image>, options?: IRepoOptions): Promise<SingleResult<Image>>;
|
|
1616
1519
|
read(request: IdSpecFor<Image>, options?: IThrowingRepoOptions): Promise<Image>;
|
|
1617
|
-
/** Overwrites the existing Image. */
|
|
1618
|
-
tryUpdate(request: Image, options?: IRepoOptions): Promise<SingleResult<Image>>;
|
|
1619
|
-
update(request: Image, options?: IThrowingRepoOptions): Promise<Image>;
|
|
1620
1520
|
/** Performs the given operations on the existing Image. */
|
|
1621
1521
|
tryPatch(request: PatchSpecForOne<Image>, options?: IRepoOptions): Promise<SingleResult<Image>>;
|
|
1622
1522
|
patch(request: PatchSpecForOne<Image>, options?: IThrowingRepoOptions): Promise<Image>;
|
|
1623
|
-
/**
|
|
1624
|
-
|
|
1625
|
-
|
|
1523
|
+
/** Overwrites the existing Image. */
|
|
1524
|
+
tryUpdate(request: Image, options?: IRepoOptions): Promise<SingleResult<Image>>;
|
|
1525
|
+
update(request: Image, options?: IThrowingRepoOptions): Promise<Image>;
|
|
1626
1526
|
/** Overwrites the given properties of the existing Image. */
|
|
1627
1527
|
tryUpdatePartial(request: Image, options?: IRepoOptions): Promise<SingleResult<PartialWithId<Image>>>;
|
|
1628
1528
|
updatePartial(request: Image, options?: IThrowingRepoOptions): Promise<PartialWithId<Image>>;
|
|
1629
1529
|
/** Saves the input as a new Image. */
|
|
1630
1530
|
tryCreate(request: Image, options?: IRepoOptions): Promise<SingleResult<Image>>;
|
|
1631
1531
|
create(request: Image, options?: IThrowingRepoOptions): Promise<Image>;
|
|
1632
|
-
/** Performs the given operation on each existing Image that satisfies the given criteria. */
|
|
1633
|
-
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<Image, ImageCriteria>, options?: IRepoOptions): Promise<BatchResult<Image>>;
|
|
1634
|
-
UpdatePartialWhere(request: UpdatePartialWhereRequest<Image, ImageCriteria>, options?: IThrowingRepoOptions): Promise<Image[]>;
|
|
1635
1532
|
/** Overwrites the given properties for each existing Image. */
|
|
1636
1533
|
tryUpdatePartialMany(request: Array<Image>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<Image>>>;
|
|
1637
1534
|
updatePartialMany(request: Array<Image>, options?: IThrowingRepoOptions): Promise<PartialWithId<Image>[]>;
|
|
1638
|
-
/**
|
|
1639
|
-
|
|
1640
|
-
|
|
1535
|
+
/** Performs the given operation on each existing Image that satisfies the given criteria. */
|
|
1536
|
+
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<Image, ImageCriteria>, options?: IRepoOptions): Promise<BatchResult<Image>>;
|
|
1537
|
+
UpdatePartialWhere(request: UpdatePartialWhereRequest<Image, ImageCriteria>, options?: IThrowingRepoOptions): Promise<Image[]>;
|
|
1641
1538
|
/** 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). */
|
|
1642
1539
|
tryUpsert(request: Image, options?: IRepoOptions): Promise<SingleResult<Image>>;
|
|
1643
1540
|
upsert(request: Image, options?: IThrowingRepoOptions): Promise<Image>;
|
|
1541
|
+
/** 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). */
|
|
1542
|
+
tryUpsertMany(request: Array<Image>, options?: IRepoOptions): Promise<BatchResult<Image>>;
|
|
1543
|
+
upsertMany(request: Array<Image>, options?: IThrowingRepoOptions): Promise<Image[]>;
|
|
1644
1544
|
}
|
|
1645
|
-
import {
|
|
1646
|
-
declare class
|
|
1545
|
+
import { ImageRegistry, ImageRegistryCriteria } from "../contracts";
|
|
1546
|
+
declare class ImageRegistryCruds {
|
|
1647
1547
|
private core;
|
|
1648
1548
|
constructor(core: ApiClientBase);
|
|
1649
|
-
/**
|
|
1650
|
-
|
|
1651
|
-
|
|
1652
|
-
/** Retrieves all the existing
|
|
1653
|
-
tryReadMany(request:
|
|
1654
|
-
readMany(request:
|
|
1655
|
-
/**
|
|
1656
|
-
|
|
1657
|
-
|
|
1658
|
-
/**
|
|
1659
|
-
|
|
1660
|
-
|
|
1661
|
-
/**
|
|
1662
|
-
|
|
1663
|
-
|
|
1664
|
-
/**
|
|
1665
|
-
|
|
1666
|
-
|
|
1667
|
-
/**
|
|
1668
|
-
|
|
1669
|
-
|
|
1670
|
-
/** Performs the given operations on the existing
|
|
1671
|
-
tryPatch(request: PatchSpecForOne<
|
|
1672
|
-
patch(request: PatchSpecForOne<
|
|
1673
|
-
/**
|
|
1674
|
-
|
|
1675
|
-
|
|
1676
|
-
/** Overwrites the given properties of the existing
|
|
1677
|
-
tryUpdatePartial(request:
|
|
1678
|
-
updatePartial(request:
|
|
1679
|
-
/** Saves the input as a new
|
|
1680
|
-
tryCreate(request:
|
|
1681
|
-
create(request:
|
|
1682
|
-
/**
|
|
1683
|
-
|
|
1684
|
-
|
|
1685
|
-
/**
|
|
1686
|
-
|
|
1687
|
-
|
|
1688
|
-
/** Saves
|
|
1689
|
-
|
|
1690
|
-
|
|
1691
|
-
/** Saves
|
|
1692
|
-
|
|
1693
|
-
|
|
1549
|
+
/** Deletes each existing ImageRegistry that satisfies the given criteria. */
|
|
1550
|
+
tryDeleteWhere(request: ImageRegistryCriteria, options?: IRepoOptions): Promise<BatchResult<ImageRegistry>>;
|
|
1551
|
+
deleteWhere(request: ImageRegistryCriteria, options?: IThrowingRepoOptions): Promise<ImageRegistry[]>;
|
|
1552
|
+
/** Retrieves all the existing ImageRegistry that satisfy the given criteria. */
|
|
1553
|
+
tryReadMany(request: ImageRegistryCriteria, options?: IRepoOptions): Promise<ListResult<ImageRegistry>>;
|
|
1554
|
+
readMany(request: ImageRegistryCriteria, options?: IThrowingRepoOptions): Promise<ImageRegistry[]>;
|
|
1555
|
+
/** Performs the given operations on each existing ImageRegistry that satisfies the given criteria. */
|
|
1556
|
+
tryPatchWhere(request: PatchSpecForMany<ImageRegistry, ImageRegistryCriteria>, options?: IRepoOptions): Promise<BatchResult<ImageRegistry>>;
|
|
1557
|
+
patchWhere(request: PatchSpecForMany<ImageRegistry, ImageRegistryCriteria>, options?: IThrowingRepoOptions): Promise<ImageRegistry[]>;
|
|
1558
|
+
/** Saves each given input as a new ImageRegistry. */
|
|
1559
|
+
tryCreateMany(request: Array<ImageRegistry>, options?: IRepoOptions): Promise<BatchResult<ImageRegistry>>;
|
|
1560
|
+
createMany(request: Array<ImageRegistry>, options?: IThrowingRepoOptions): Promise<ImageRegistry[]>;
|
|
1561
|
+
/** Overwrites each existing ImageRegistry. */
|
|
1562
|
+
tryUpdateMany(request: Array<ImageRegistry>, options?: IRepoOptions): Promise<BatchResult<ImageRegistry>>;
|
|
1563
|
+
updateMany(request: Array<ImageRegistry>, options?: IThrowingRepoOptions): Promise<ImageRegistry[]>;
|
|
1564
|
+
/** Deletes the existing ImageRegistry. */
|
|
1565
|
+
tryDelete(request: IdSpecFor<ImageRegistry>, options?: IRepoOptions): Promise<SingleResult<ImageRegistry>>;
|
|
1566
|
+
delete(request: IdSpecFor<ImageRegistry>, options?: IThrowingRepoOptions): Promise<ImageRegistry>;
|
|
1567
|
+
/** Retrieves the single, uniquely identified ImageRegistry. */
|
|
1568
|
+
tryRead(request: IdSpecFor<ImageRegistry>, options?: IRepoOptions): Promise<SingleResult<ImageRegistry>>;
|
|
1569
|
+
read(request: IdSpecFor<ImageRegistry>, options?: IThrowingRepoOptions): Promise<ImageRegistry>;
|
|
1570
|
+
/** Performs the given operations on the existing ImageRegistry. */
|
|
1571
|
+
tryPatch(request: PatchSpecForOne<ImageRegistry>, options?: IRepoOptions): Promise<SingleResult<ImageRegistry>>;
|
|
1572
|
+
patch(request: PatchSpecForOne<ImageRegistry>, options?: IThrowingRepoOptions): Promise<ImageRegistry>;
|
|
1573
|
+
/** Overwrites the existing ImageRegistry. */
|
|
1574
|
+
tryUpdate(request: ImageRegistry, options?: IRepoOptions): Promise<SingleResult<ImageRegistry>>;
|
|
1575
|
+
update(request: ImageRegistry, options?: IThrowingRepoOptions): Promise<ImageRegistry>;
|
|
1576
|
+
/** Overwrites the given properties of the existing ImageRegistry. */
|
|
1577
|
+
tryUpdatePartial(request: ImageRegistry, options?: IRepoOptions): Promise<SingleResult<PartialWithId<ImageRegistry>>>;
|
|
1578
|
+
updatePartial(request: ImageRegistry, options?: IThrowingRepoOptions): Promise<PartialWithId<ImageRegistry>>;
|
|
1579
|
+
/** Saves the input as a new ImageRegistry. */
|
|
1580
|
+
tryCreate(request: ImageRegistry, options?: IRepoOptions): Promise<SingleResult<ImageRegistry>>;
|
|
1581
|
+
create(request: ImageRegistry, options?: IThrowingRepoOptions): Promise<ImageRegistry>;
|
|
1582
|
+
/** Overwrites the given properties for each existing ImageRegistry. */
|
|
1583
|
+
tryUpdatePartialMany(request: Array<ImageRegistry>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<ImageRegistry>>>;
|
|
1584
|
+
updatePartialMany(request: Array<ImageRegistry>, options?: IThrowingRepoOptions): Promise<PartialWithId<ImageRegistry>[]>;
|
|
1585
|
+
/** Performs the given operation on each existing ImageRegistry that satisfies the given criteria. */
|
|
1586
|
+
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<ImageRegistry, ImageRegistryCriteria>, options?: IRepoOptions): Promise<BatchResult<ImageRegistry>>;
|
|
1587
|
+
UpdatePartialWhere(request: UpdatePartialWhereRequest<ImageRegistry, ImageRegistryCriteria>, options?: IThrowingRepoOptions): Promise<ImageRegistry[]>;
|
|
1588
|
+
/** 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). */
|
|
1589
|
+
tryUpsert(request: ImageRegistry, options?: IRepoOptions): Promise<SingleResult<ImageRegistry>>;
|
|
1590
|
+
upsert(request: ImageRegistry, options?: IThrowingRepoOptions): Promise<ImageRegistry>;
|
|
1591
|
+
/** 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). */
|
|
1592
|
+
tryUpsertMany(request: Array<ImageRegistry>, options?: IRepoOptions): Promise<BatchResult<ImageRegistry>>;
|
|
1593
|
+
upsertMany(request: Array<ImageRegistry>, options?: IThrowingRepoOptions): Promise<ImageRegistry[]>;
|
|
1694
1594
|
}
|
|
1695
1595
|
import { Kit, KitCriteria } from "../contracts";
|
|
1696
1596
|
declare class KitCruds {
|
|
1697
1597
|
private core;
|
|
1698
1598
|
constructor(core: ApiClientBase);
|
|
1699
|
-
/**
|
|
1700
|
-
|
|
1701
|
-
|
|
1599
|
+
/** Deletes each existing Kit that satisfies the given criteria. */
|
|
1600
|
+
tryDeleteWhere(request: KitCriteria, options?: IRepoOptions): Promise<BatchResult<Kit>>;
|
|
1601
|
+
deleteWhere(request: KitCriteria, options?: IThrowingRepoOptions): Promise<Kit[]>;
|
|
1702
1602
|
/** Retrieves all the existing Kit that satisfy the given criteria. */
|
|
1703
1603
|
tryReadMany(request: KitCriteria, options?: IRepoOptions): Promise<ListResult<Kit>>;
|
|
1704
1604
|
readMany(request: KitCriteria, options?: IThrowingRepoOptions): Promise<Kit[]>;
|
|
1705
|
-
/** Overwrites each existing Kit. */
|
|
1706
|
-
tryUpdateMany(request: Array<Kit>, options?: IRepoOptions): Promise<BatchResult<Kit>>;
|
|
1707
|
-
updateMany(request: Array<Kit>, options?: IThrowingRepoOptions): Promise<Kit[]>;
|
|
1708
1605
|
/** Performs the given operations on each existing Kit that satisfies the given criteria. */
|
|
1709
1606
|
tryPatchWhere(request: PatchSpecForMany<Kit, KitCriteria>, options?: IRepoOptions): Promise<BatchResult<Kit>>;
|
|
1710
1607
|
patchWhere(request: PatchSpecForMany<Kit, KitCriteria>, options?: IThrowingRepoOptions): Promise<Kit[]>;
|
|
1711
|
-
/**
|
|
1712
|
-
|
|
1713
|
-
|
|
1608
|
+
/** Saves each given input as a new Kit. */
|
|
1609
|
+
tryCreateMany(request: Array<Kit>, options?: IRepoOptions): Promise<BatchResult<Kit>>;
|
|
1610
|
+
createMany(request: Array<Kit>, options?: IThrowingRepoOptions): Promise<Kit[]>;
|
|
1611
|
+
/** Overwrites each existing Kit. */
|
|
1612
|
+
tryUpdateMany(request: Array<Kit>, options?: IRepoOptions): Promise<BatchResult<Kit>>;
|
|
1613
|
+
updateMany(request: Array<Kit>, options?: IThrowingRepoOptions): Promise<Kit[]>;
|
|
1614
|
+
/** Deletes the existing Kit. */
|
|
1615
|
+
tryDelete(request: IdSpecFor<Kit>, options?: IRepoOptions): Promise<SingleResult<Kit>>;
|
|
1616
|
+
delete(request: IdSpecFor<Kit>, options?: IThrowingRepoOptions): Promise<Kit>;
|
|
1714
1617
|
/** Retrieves the single, uniquely identified Kit. */
|
|
1715
1618
|
tryRead(request: IdSpecFor<Kit>, options?: IRepoOptions): Promise<SingleResult<Kit>>;
|
|
1716
1619
|
read(request: IdSpecFor<Kit>, options?: IThrowingRepoOptions): Promise<Kit>;
|
|
1717
|
-
/** Overwrites the existing Kit. */
|
|
1718
|
-
tryUpdate(request: Kit, options?: IRepoOptions): Promise<SingleResult<Kit>>;
|
|
1719
|
-
update(request: Kit, options?: IThrowingRepoOptions): Promise<Kit>;
|
|
1720
1620
|
/** Performs the given operations on the existing Kit. */
|
|
1721
1621
|
tryPatch(request: PatchSpecForOne<Kit>, options?: IRepoOptions): Promise<SingleResult<Kit>>;
|
|
1722
1622
|
patch(request: PatchSpecForOne<Kit>, options?: IThrowingRepoOptions): Promise<Kit>;
|
|
1723
|
-
/**
|
|
1724
|
-
|
|
1725
|
-
|
|
1623
|
+
/** Overwrites the existing Kit. */
|
|
1624
|
+
tryUpdate(request: Kit, options?: IRepoOptions): Promise<SingleResult<Kit>>;
|
|
1625
|
+
update(request: Kit, options?: IThrowingRepoOptions): Promise<Kit>;
|
|
1726
1626
|
/** Overwrites the given properties of the existing Kit. */
|
|
1727
1627
|
tryUpdatePartial(request: Kit, options?: IRepoOptions): Promise<SingleResult<PartialWithId<Kit>>>;
|
|
1728
1628
|
updatePartial(request: Kit, options?: IThrowingRepoOptions): Promise<PartialWithId<Kit>>;
|
|
1729
1629
|
/** Saves the input as a new Kit. */
|
|
1730
1630
|
tryCreate(request: Kit, options?: IRepoOptions): Promise<SingleResult<Kit>>;
|
|
1731
1631
|
create(request: Kit, options?: IThrowingRepoOptions): Promise<Kit>;
|
|
1732
|
-
/** Performs the given operation on each existing Kit that satisfies the given criteria. */
|
|
1733
|
-
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<Kit, KitCriteria>, options?: IRepoOptions): Promise<BatchResult<Kit>>;
|
|
1734
|
-
UpdatePartialWhere(request: UpdatePartialWhereRequest<Kit, KitCriteria>, options?: IThrowingRepoOptions): Promise<Kit[]>;
|
|
1735
1632
|
/** Overwrites the given properties for each existing Kit. */
|
|
1736
1633
|
tryUpdatePartialMany(request: Array<Kit>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<Kit>>>;
|
|
1737
1634
|
updatePartialMany(request: Array<Kit>, options?: IThrowingRepoOptions): Promise<PartialWithId<Kit>[]>;
|
|
1738
|
-
/**
|
|
1739
|
-
|
|
1740
|
-
|
|
1635
|
+
/** Performs the given operation on each existing Kit that satisfies the given criteria. */
|
|
1636
|
+
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<Kit, KitCriteria>, options?: IRepoOptions): Promise<BatchResult<Kit>>;
|
|
1637
|
+
UpdatePartialWhere(request: UpdatePartialWhereRequest<Kit, KitCriteria>, options?: IThrowingRepoOptions): Promise<Kit[]>;
|
|
1741
1638
|
/** 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). */
|
|
1742
1639
|
tryUpsert(request: Kit, options?: IRepoOptions): Promise<SingleResult<Kit>>;
|
|
1743
1640
|
upsert(request: Kit, options?: IThrowingRepoOptions): Promise<Kit>;
|
|
1641
|
+
/** 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). */
|
|
1642
|
+
tryUpsertMany(request: Array<Kit>, options?: IRepoOptions): Promise<BatchResult<Kit>>;
|
|
1643
|
+
upsertMany(request: Array<Kit>, options?: IThrowingRepoOptions): Promise<Kit[]>;
|
|
1744
1644
|
}
|
|
1745
1645
|
import { KvpStoreDef, KvpStoreDefCriteria } from "../contracts";
|
|
1746
1646
|
declare class KvpStoreDefCruds {
|
|
1747
1647
|
private core;
|
|
1748
1648
|
constructor(core: ApiClientBase);
|
|
1749
|
-
/**
|
|
1750
|
-
|
|
1751
|
-
|
|
1649
|
+
/** Deletes each existing KvpStoreDef that satisfies the given criteria. */
|
|
1650
|
+
tryDeleteWhere(request: KvpStoreDefCriteria, options?: IRepoOptions): Promise<BatchResult<KvpStoreDef>>;
|
|
1651
|
+
deleteWhere(request: KvpStoreDefCriteria, options?: IThrowingRepoOptions): Promise<KvpStoreDef[]>;
|
|
1752
1652
|
/** Retrieves all the existing KvpStoreDef that satisfy the given criteria. */
|
|
1753
1653
|
tryReadMany(request: KvpStoreDefCriteria, options?: IRepoOptions): Promise<ListResult<KvpStoreDef>>;
|
|
1754
1654
|
readMany(request: KvpStoreDefCriteria, options?: IThrowingRepoOptions): Promise<KvpStoreDef[]>;
|
|
1755
|
-
/** Overwrites each existing KvpStoreDef. */
|
|
1756
|
-
tryUpdateMany(request: Array<KvpStoreDef>, options?: IRepoOptions): Promise<BatchResult<KvpStoreDef>>;
|
|
1757
|
-
updateMany(request: Array<KvpStoreDef>, options?: IThrowingRepoOptions): Promise<KvpStoreDef[]>;
|
|
1758
1655
|
/** Performs the given operations on each existing KvpStoreDef that satisfies the given criteria. */
|
|
1759
1656
|
tryPatchWhere(request: PatchSpecForMany<KvpStoreDef, KvpStoreDefCriteria>, options?: IRepoOptions): Promise<BatchResult<KvpStoreDef>>;
|
|
1760
1657
|
patchWhere(request: PatchSpecForMany<KvpStoreDef, KvpStoreDefCriteria>, options?: IThrowingRepoOptions): Promise<KvpStoreDef[]>;
|
|
1761
|
-
/**
|
|
1762
|
-
|
|
1763
|
-
|
|
1658
|
+
/** Saves each given input as a new KvpStoreDef. */
|
|
1659
|
+
tryCreateMany(request: Array<KvpStoreDef>, options?: IRepoOptions): Promise<BatchResult<KvpStoreDef>>;
|
|
1660
|
+
createMany(request: Array<KvpStoreDef>, options?: IThrowingRepoOptions): Promise<KvpStoreDef[]>;
|
|
1661
|
+
/** Overwrites each existing KvpStoreDef. */
|
|
1662
|
+
tryUpdateMany(request: Array<KvpStoreDef>, options?: IRepoOptions): Promise<BatchResult<KvpStoreDef>>;
|
|
1663
|
+
updateMany(request: Array<KvpStoreDef>, options?: IThrowingRepoOptions): Promise<KvpStoreDef[]>;
|
|
1664
|
+
/** Deletes the existing KvpStoreDef. */
|
|
1665
|
+
tryDelete(request: IdSpecFor<KvpStoreDef>, options?: IRepoOptions): Promise<SingleResult<KvpStoreDef>>;
|
|
1666
|
+
delete(request: IdSpecFor<KvpStoreDef>, options?: IThrowingRepoOptions): Promise<KvpStoreDef>;
|
|
1764
1667
|
/** Retrieves the single, uniquely identified KvpStoreDef. */
|
|
1765
1668
|
tryRead(request: IdSpecFor<KvpStoreDef>, options?: IRepoOptions): Promise<SingleResult<KvpStoreDef>>;
|
|
1766
1669
|
read(request: IdSpecFor<KvpStoreDef>, options?: IThrowingRepoOptions): Promise<KvpStoreDef>;
|
|
1767
|
-
/** Overwrites the existing KvpStoreDef. */
|
|
1768
|
-
tryUpdate(request: KvpStoreDef, options?: IRepoOptions): Promise<SingleResult<KvpStoreDef>>;
|
|
1769
|
-
update(request: KvpStoreDef, options?: IThrowingRepoOptions): Promise<KvpStoreDef>;
|
|
1770
1670
|
/** Performs the given operations on the existing KvpStoreDef. */
|
|
1771
1671
|
tryPatch(request: PatchSpecForOne<KvpStoreDef>, options?: IRepoOptions): Promise<SingleResult<KvpStoreDef>>;
|
|
1772
1672
|
patch(request: PatchSpecForOne<KvpStoreDef>, options?: IThrowingRepoOptions): Promise<KvpStoreDef>;
|
|
1773
|
-
/**
|
|
1774
|
-
|
|
1775
|
-
|
|
1673
|
+
/** Overwrites the existing KvpStoreDef. */
|
|
1674
|
+
tryUpdate(request: KvpStoreDef, options?: IRepoOptions): Promise<SingleResult<KvpStoreDef>>;
|
|
1675
|
+
update(request: KvpStoreDef, options?: IThrowingRepoOptions): Promise<KvpStoreDef>;
|
|
1776
1676
|
/** Overwrites the given properties of the existing KvpStoreDef. */
|
|
1777
1677
|
tryUpdatePartial(request: KvpStoreDef, options?: IRepoOptions): Promise<SingleResult<PartialWithId<KvpStoreDef>>>;
|
|
1778
1678
|
updatePartial(request: KvpStoreDef, options?: IThrowingRepoOptions): Promise<PartialWithId<KvpStoreDef>>;
|
|
1779
1679
|
/** Saves the input as a new KvpStoreDef. */
|
|
1780
1680
|
tryCreate(request: KvpStoreDef, options?: IRepoOptions): Promise<SingleResult<KvpStoreDef>>;
|
|
1781
1681
|
create(request: KvpStoreDef, options?: IThrowingRepoOptions): Promise<KvpStoreDef>;
|
|
1782
|
-
/** Performs the given operation on each existing KvpStoreDef that satisfies the given criteria. */
|
|
1783
|
-
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<KvpStoreDef, KvpStoreDefCriteria>, options?: IRepoOptions): Promise<BatchResult<KvpStoreDef>>;
|
|
1784
|
-
UpdatePartialWhere(request: UpdatePartialWhereRequest<KvpStoreDef, KvpStoreDefCriteria>, options?: IThrowingRepoOptions): Promise<KvpStoreDef[]>;
|
|
1785
1682
|
/** Overwrites the given properties for each existing KvpStoreDef. */
|
|
1786
1683
|
tryUpdatePartialMany(request: Array<KvpStoreDef>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<KvpStoreDef>>>;
|
|
1787
1684
|
updatePartialMany(request: Array<KvpStoreDef>, options?: IThrowingRepoOptions): Promise<PartialWithId<KvpStoreDef>[]>;
|
|
1788
|
-
/**
|
|
1789
|
-
|
|
1790
|
-
|
|
1685
|
+
/** Performs the given operation on each existing KvpStoreDef that satisfies the given criteria. */
|
|
1686
|
+
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<KvpStoreDef, KvpStoreDefCriteria>, options?: IRepoOptions): Promise<BatchResult<KvpStoreDef>>;
|
|
1687
|
+
UpdatePartialWhere(request: UpdatePartialWhereRequest<KvpStoreDef, KvpStoreDefCriteria>, options?: IThrowingRepoOptions): Promise<KvpStoreDef[]>;
|
|
1791
1688
|
/** 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). */
|
|
1792
1689
|
tryUpsert(request: KvpStoreDef, options?: IRepoOptions): Promise<SingleResult<KvpStoreDef>>;
|
|
1793
1690
|
upsert(request: KvpStoreDef, options?: IThrowingRepoOptions): Promise<KvpStoreDef>;
|
|
1691
|
+
/** 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). */
|
|
1692
|
+
tryUpsertMany(request: Array<KvpStoreDef>, options?: IRepoOptions): Promise<BatchResult<KvpStoreDef>>;
|
|
1693
|
+
upsertMany(request: Array<KvpStoreDef>, options?: IThrowingRepoOptions): Promise<KvpStoreDef[]>;
|
|
1794
1694
|
}
|
|
1795
1695
|
import { Label, LabelCriteria } from "../contracts";
|
|
1796
1696
|
declare class LabelCruds {
|
|
1797
1697
|
private core;
|
|
1798
1698
|
constructor(core: ApiClientBase);
|
|
1799
|
-
/**
|
|
1800
|
-
|
|
1801
|
-
|
|
1699
|
+
/** Deletes each existing Label that satisfies the given criteria. */
|
|
1700
|
+
tryDeleteWhere(request: LabelCriteria, options?: IRepoOptions): Promise<BatchResult<Label>>;
|
|
1701
|
+
deleteWhere(request: LabelCriteria, options?: IThrowingRepoOptions): Promise<Label[]>;
|
|
1802
1702
|
/** Retrieves all the existing Label that satisfy the given criteria. */
|
|
1803
1703
|
tryReadMany(request: LabelCriteria, options?: IRepoOptions): Promise<ListResult<Label>>;
|
|
1804
1704
|
readMany(request: LabelCriteria, options?: IThrowingRepoOptions): Promise<Label[]>;
|
|
1805
|
-
/** Overwrites each existing Label. */
|
|
1806
|
-
tryUpdateMany(request: Array<Label>, options?: IRepoOptions): Promise<BatchResult<Label>>;
|
|
1807
|
-
updateMany(request: Array<Label>, options?: IThrowingRepoOptions): Promise<Label[]>;
|
|
1808
1705
|
/** Performs the given operations on each existing Label that satisfies the given criteria. */
|
|
1809
1706
|
tryPatchWhere(request: PatchSpecForMany<Label, LabelCriteria>, options?: IRepoOptions): Promise<BatchResult<Label>>;
|
|
1810
1707
|
patchWhere(request: PatchSpecForMany<Label, LabelCriteria>, options?: IThrowingRepoOptions): Promise<Label[]>;
|
|
1811
|
-
/**
|
|
1812
|
-
|
|
1813
|
-
|
|
1708
|
+
/** Saves each given input as a new Label. */
|
|
1709
|
+
tryCreateMany(request: Array<Label>, options?: IRepoOptions): Promise<BatchResult<Label>>;
|
|
1710
|
+
createMany(request: Array<Label>, options?: IThrowingRepoOptions): Promise<Label[]>;
|
|
1711
|
+
/** Overwrites each existing Label. */
|
|
1712
|
+
tryUpdateMany(request: Array<Label>, options?: IRepoOptions): Promise<BatchResult<Label>>;
|
|
1713
|
+
updateMany(request: Array<Label>, options?: IThrowingRepoOptions): Promise<Label[]>;
|
|
1714
|
+
/** Deletes the existing Label. */
|
|
1715
|
+
tryDelete(request: IdSpecFor<Label>, options?: IRepoOptions): Promise<SingleResult<Label>>;
|
|
1716
|
+
delete(request: IdSpecFor<Label>, options?: IThrowingRepoOptions): Promise<Label>;
|
|
1814
1717
|
/** Retrieves the single, uniquely identified Label. */
|
|
1815
1718
|
tryRead(request: IdSpecFor<Label>, options?: IRepoOptions): Promise<SingleResult<Label>>;
|
|
1816
1719
|
read(request: IdSpecFor<Label>, options?: IThrowingRepoOptions): Promise<Label>;
|
|
1817
|
-
/** Overwrites the existing Label. */
|
|
1818
|
-
tryUpdate(request: Label, options?: IRepoOptions): Promise<SingleResult<Label>>;
|
|
1819
|
-
update(request: Label, options?: IThrowingRepoOptions): Promise<Label>;
|
|
1820
1720
|
/** Performs the given operations on the existing Label. */
|
|
1821
1721
|
tryPatch(request: PatchSpecForOne<Label>, options?: IRepoOptions): Promise<SingleResult<Label>>;
|
|
1822
1722
|
patch(request: PatchSpecForOne<Label>, options?: IThrowingRepoOptions): Promise<Label>;
|
|
1823
|
-
/**
|
|
1824
|
-
|
|
1825
|
-
|
|
1723
|
+
/** Overwrites the existing Label. */
|
|
1724
|
+
tryUpdate(request: Label, options?: IRepoOptions): Promise<SingleResult<Label>>;
|
|
1725
|
+
update(request: Label, options?: IThrowingRepoOptions): Promise<Label>;
|
|
1826
1726
|
/** Overwrites the given properties of the existing Label. */
|
|
1827
1727
|
tryUpdatePartial(request: Label, options?: IRepoOptions): Promise<SingleResult<PartialWithId<Label>>>;
|
|
1828
1728
|
updatePartial(request: Label, options?: IThrowingRepoOptions): Promise<PartialWithId<Label>>;
|
|
1829
1729
|
/** Saves the input as a new Label. */
|
|
1830
1730
|
tryCreate(request: Label, options?: IRepoOptions): Promise<SingleResult<Label>>;
|
|
1831
1731
|
create(request: Label, options?: IThrowingRepoOptions): Promise<Label>;
|
|
1832
|
-
/** Performs the given operation on each existing Label that satisfies the given criteria. */
|
|
1833
|
-
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<Label, LabelCriteria>, options?: IRepoOptions): Promise<BatchResult<Label>>;
|
|
1834
|
-
UpdatePartialWhere(request: UpdatePartialWhereRequest<Label, LabelCriteria>, options?: IThrowingRepoOptions): Promise<Label[]>;
|
|
1835
1732
|
/** Overwrites the given properties for each existing Label. */
|
|
1836
1733
|
tryUpdatePartialMany(request: Array<Label>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<Label>>>;
|
|
1837
1734
|
updatePartialMany(request: Array<Label>, options?: IThrowingRepoOptions): Promise<PartialWithId<Label>[]>;
|
|
1838
|
-
/**
|
|
1839
|
-
|
|
1840
|
-
|
|
1735
|
+
/** Performs the given operation on each existing Label that satisfies the given criteria. */
|
|
1736
|
+
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<Label, LabelCriteria>, options?: IRepoOptions): Promise<BatchResult<Label>>;
|
|
1737
|
+
UpdatePartialWhere(request: UpdatePartialWhereRequest<Label, LabelCriteria>, options?: IThrowingRepoOptions): Promise<Label[]>;
|
|
1841
1738
|
/** 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). */
|
|
1842
1739
|
tryUpsert(request: Label, options?: IRepoOptions): Promise<SingleResult<Label>>;
|
|
1843
1740
|
upsert(request: Label, options?: IThrowingRepoOptions): Promise<Label>;
|
|
1741
|
+
/** 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). */
|
|
1742
|
+
tryUpsertMany(request: Array<Label>, options?: IRepoOptions): Promise<BatchResult<Label>>;
|
|
1743
|
+
upsertMany(request: Array<Label>, options?: IThrowingRepoOptions): Promise<Label[]>;
|
|
1844
1744
|
}
|
|
1845
1745
|
import { NodePoolDef, NodePoolDefCriteria } from "../contracts";
|
|
1846
1746
|
declare class NodePoolDefCruds {
|
|
1847
1747
|
private core;
|
|
1848
1748
|
constructor(core: ApiClientBase);
|
|
1849
|
-
/**
|
|
1850
|
-
|
|
1851
|
-
|
|
1749
|
+
/** Deletes each existing NodePoolDef that satisfies the given criteria. */
|
|
1750
|
+
tryDeleteWhere(request: NodePoolDefCriteria, options?: IRepoOptions): Promise<BatchResult<NodePoolDef>>;
|
|
1751
|
+
deleteWhere(request: NodePoolDefCriteria, options?: IThrowingRepoOptions): Promise<NodePoolDef[]>;
|
|
1852
1752
|
/** Retrieves all the existing NodePoolDef that satisfy the given criteria. */
|
|
1853
1753
|
tryReadMany(request: NodePoolDefCriteria, options?: IRepoOptions): Promise<ListResult<NodePoolDef>>;
|
|
1854
1754
|
readMany(request: NodePoolDefCriteria, options?: IThrowingRepoOptions): Promise<NodePoolDef[]>;
|
|
1855
|
-
/** Overwrites each existing NodePoolDef. */
|
|
1856
|
-
tryUpdateMany(request: Array<NodePoolDef>, options?: IRepoOptions): Promise<BatchResult<NodePoolDef>>;
|
|
1857
|
-
updateMany(request: Array<NodePoolDef>, options?: IThrowingRepoOptions): Promise<NodePoolDef[]>;
|
|
1858
1755
|
/** Performs the given operations on each existing NodePoolDef that satisfies the given criteria. */
|
|
1859
1756
|
tryPatchWhere(request: PatchSpecForMany<NodePoolDef, NodePoolDefCriteria>, options?: IRepoOptions): Promise<BatchResult<NodePoolDef>>;
|
|
1860
1757
|
patchWhere(request: PatchSpecForMany<NodePoolDef, NodePoolDefCriteria>, options?: IThrowingRepoOptions): Promise<NodePoolDef[]>;
|
|
1861
|
-
/**
|
|
1862
|
-
|
|
1863
|
-
|
|
1758
|
+
/** Saves each given input as a new NodePoolDef. */
|
|
1759
|
+
tryCreateMany(request: Array<NodePoolDef>, options?: IRepoOptions): Promise<BatchResult<NodePoolDef>>;
|
|
1760
|
+
createMany(request: Array<NodePoolDef>, options?: IThrowingRepoOptions): Promise<NodePoolDef[]>;
|
|
1761
|
+
/** Overwrites each existing NodePoolDef. */
|
|
1762
|
+
tryUpdateMany(request: Array<NodePoolDef>, options?: IRepoOptions): Promise<BatchResult<NodePoolDef>>;
|
|
1763
|
+
updateMany(request: Array<NodePoolDef>, options?: IThrowingRepoOptions): Promise<NodePoolDef[]>;
|
|
1764
|
+
/** Deletes the existing NodePoolDef. */
|
|
1765
|
+
tryDelete(request: IdSpecFor<NodePoolDef>, options?: IRepoOptions): Promise<SingleResult<NodePoolDef>>;
|
|
1766
|
+
delete(request: IdSpecFor<NodePoolDef>, options?: IThrowingRepoOptions): Promise<NodePoolDef>;
|
|
1864
1767
|
/** Retrieves the single, uniquely identified NodePoolDef. */
|
|
1865
1768
|
tryRead(request: IdSpecFor<NodePoolDef>, options?: IRepoOptions): Promise<SingleResult<NodePoolDef>>;
|
|
1866
1769
|
read(request: IdSpecFor<NodePoolDef>, options?: IThrowingRepoOptions): Promise<NodePoolDef>;
|
|
1867
|
-
/** Overwrites the existing NodePoolDef. */
|
|
1868
|
-
tryUpdate(request: NodePoolDef, options?: IRepoOptions): Promise<SingleResult<NodePoolDef>>;
|
|
1869
|
-
update(request: NodePoolDef, options?: IThrowingRepoOptions): Promise<NodePoolDef>;
|
|
1870
1770
|
/** Performs the given operations on the existing NodePoolDef. */
|
|
1871
1771
|
tryPatch(request: PatchSpecForOne<NodePoolDef>, options?: IRepoOptions): Promise<SingleResult<NodePoolDef>>;
|
|
1872
1772
|
patch(request: PatchSpecForOne<NodePoolDef>, options?: IThrowingRepoOptions): Promise<NodePoolDef>;
|
|
1873
|
-
/**
|
|
1874
|
-
|
|
1875
|
-
|
|
1773
|
+
/** Overwrites the existing NodePoolDef. */
|
|
1774
|
+
tryUpdate(request: NodePoolDef, options?: IRepoOptions): Promise<SingleResult<NodePoolDef>>;
|
|
1775
|
+
update(request: NodePoolDef, options?: IThrowingRepoOptions): Promise<NodePoolDef>;
|
|
1876
1776
|
/** Overwrites the given properties of the existing NodePoolDef. */
|
|
1877
1777
|
tryUpdatePartial(request: NodePoolDef, options?: IRepoOptions): Promise<SingleResult<PartialWithId<NodePoolDef>>>;
|
|
1878
1778
|
updatePartial(request: NodePoolDef, options?: IThrowingRepoOptions): Promise<PartialWithId<NodePoolDef>>;
|
|
1879
1779
|
/** Saves the input as a new NodePoolDef. */
|
|
1880
1780
|
tryCreate(request: NodePoolDef, options?: IRepoOptions): Promise<SingleResult<NodePoolDef>>;
|
|
1881
1781
|
create(request: NodePoolDef, options?: IThrowingRepoOptions): Promise<NodePoolDef>;
|
|
1882
|
-
/** Performs the given operation on each existing NodePoolDef that satisfies the given criteria. */
|
|
1883
|
-
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<NodePoolDef, NodePoolDefCriteria>, options?: IRepoOptions): Promise<BatchResult<NodePoolDef>>;
|
|
1884
|
-
UpdatePartialWhere(request: UpdatePartialWhereRequest<NodePoolDef, NodePoolDefCriteria>, options?: IThrowingRepoOptions): Promise<NodePoolDef[]>;
|
|
1885
1782
|
/** Overwrites the given properties for each existing NodePoolDef. */
|
|
1886
1783
|
tryUpdatePartialMany(request: Array<NodePoolDef>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<NodePoolDef>>>;
|
|
1887
1784
|
updatePartialMany(request: Array<NodePoolDef>, options?: IThrowingRepoOptions): Promise<PartialWithId<NodePoolDef>[]>;
|
|
1888
|
-
/**
|
|
1889
|
-
|
|
1890
|
-
|
|
1785
|
+
/** Performs the given operation on each existing NodePoolDef that satisfies the given criteria. */
|
|
1786
|
+
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<NodePoolDef, NodePoolDefCriteria>, options?: IRepoOptions): Promise<BatchResult<NodePoolDef>>;
|
|
1787
|
+
UpdatePartialWhere(request: UpdatePartialWhereRequest<NodePoolDef, NodePoolDefCriteria>, options?: IThrowingRepoOptions): Promise<NodePoolDef[]>;
|
|
1891
1788
|
/** 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). */
|
|
1892
1789
|
tryUpsert(request: NodePoolDef, options?: IRepoOptions): Promise<SingleResult<NodePoolDef>>;
|
|
1893
1790
|
upsert(request: NodePoolDef, options?: IThrowingRepoOptions): Promise<NodePoolDef>;
|
|
1791
|
+
/** 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). */
|
|
1792
|
+
tryUpsertMany(request: Array<NodePoolDef>, options?: IRepoOptions): Promise<BatchResult<NodePoolDef>>;
|
|
1793
|
+
upsertMany(request: Array<NodePoolDef>, options?: IThrowingRepoOptions): Promise<NodePoolDef[]>;
|
|
1894
1794
|
}
|
|
1895
1795
|
import { Probe, ProbeCriteria } from "../contracts";
|
|
1896
1796
|
declare class ProbeCruds {
|
|
1897
1797
|
private core;
|
|
1898
1798
|
constructor(core: ApiClientBase);
|
|
1899
|
-
/**
|
|
1900
|
-
|
|
1901
|
-
|
|
1799
|
+
/** Deletes each existing Probe that satisfies the given criteria. */
|
|
1800
|
+
tryDeleteWhere(request: ProbeCriteria, options?: IRepoOptions): Promise<BatchResult<Probe>>;
|
|
1801
|
+
deleteWhere(request: ProbeCriteria, options?: IThrowingRepoOptions): Promise<Probe[]>;
|
|
1902
1802
|
/** Retrieves all the existing Probe that satisfy the given criteria. */
|
|
1903
1803
|
tryReadMany(request: ProbeCriteria, options?: IRepoOptions): Promise<ListResult<Probe>>;
|
|
1904
1804
|
readMany(request: ProbeCriteria, options?: IThrowingRepoOptions): Promise<Probe[]>;
|
|
1905
|
-
/** Overwrites each existing Probe. */
|
|
1906
|
-
tryUpdateMany(request: Array<Probe>, options?: IRepoOptions): Promise<BatchResult<Probe>>;
|
|
1907
|
-
updateMany(request: Array<Probe>, options?: IThrowingRepoOptions): Promise<Probe[]>;
|
|
1908
1805
|
/** Performs the given operations on each existing Probe that satisfies the given criteria. */
|
|
1909
1806
|
tryPatchWhere(request: PatchSpecForMany<Probe, ProbeCriteria>, options?: IRepoOptions): Promise<BatchResult<Probe>>;
|
|
1910
1807
|
patchWhere(request: PatchSpecForMany<Probe, ProbeCriteria>, options?: IThrowingRepoOptions): Promise<Probe[]>;
|
|
1911
|
-
/**
|
|
1912
|
-
|
|
1913
|
-
|
|
1808
|
+
/** Saves each given input as a new Probe. */
|
|
1809
|
+
tryCreateMany(request: Array<Probe>, options?: IRepoOptions): Promise<BatchResult<Probe>>;
|
|
1810
|
+
createMany(request: Array<Probe>, options?: IThrowingRepoOptions): Promise<Probe[]>;
|
|
1811
|
+
/** Overwrites each existing Probe. */
|
|
1812
|
+
tryUpdateMany(request: Array<Probe>, options?: IRepoOptions): Promise<BatchResult<Probe>>;
|
|
1813
|
+
updateMany(request: Array<Probe>, options?: IThrowingRepoOptions): Promise<Probe[]>;
|
|
1814
|
+
/** Deletes the existing Probe. */
|
|
1815
|
+
tryDelete(request: IdSpecFor<Probe>, options?: IRepoOptions): Promise<SingleResult<Probe>>;
|
|
1816
|
+
delete(request: IdSpecFor<Probe>, options?: IThrowingRepoOptions): Promise<Probe>;
|
|
1914
1817
|
/** Retrieves the single, uniquely identified Probe. */
|
|
1915
1818
|
tryRead(request: IdSpecFor<Probe>, options?: IRepoOptions): Promise<SingleResult<Probe>>;
|
|
1916
1819
|
read(request: IdSpecFor<Probe>, options?: IThrowingRepoOptions): Promise<Probe>;
|
|
1917
|
-
/** Overwrites the existing Probe. */
|
|
1918
|
-
tryUpdate(request: Probe, options?: IRepoOptions): Promise<SingleResult<Probe>>;
|
|
1919
|
-
update(request: Probe, options?: IThrowingRepoOptions): Promise<Probe>;
|
|
1920
1820
|
/** Performs the given operations on the existing Probe. */
|
|
1921
1821
|
tryPatch(request: PatchSpecForOne<Probe>, options?: IRepoOptions): Promise<SingleResult<Probe>>;
|
|
1922
1822
|
patch(request: PatchSpecForOne<Probe>, options?: IThrowingRepoOptions): Promise<Probe>;
|
|
1923
|
-
/**
|
|
1924
|
-
|
|
1925
|
-
|
|
1823
|
+
/** Overwrites the existing Probe. */
|
|
1824
|
+
tryUpdate(request: Probe, options?: IRepoOptions): Promise<SingleResult<Probe>>;
|
|
1825
|
+
update(request: Probe, options?: IThrowingRepoOptions): Promise<Probe>;
|
|
1926
1826
|
/** Overwrites the given properties of the existing Probe. */
|
|
1927
1827
|
tryUpdatePartial(request: Probe, options?: IRepoOptions): Promise<SingleResult<PartialWithId<Probe>>>;
|
|
1928
1828
|
updatePartial(request: Probe, options?: IThrowingRepoOptions): Promise<PartialWithId<Probe>>;
|
|
1929
1829
|
/** Saves the input as a new Probe. */
|
|
1930
1830
|
tryCreate(request: Probe, options?: IRepoOptions): Promise<SingleResult<Probe>>;
|
|
1931
1831
|
create(request: Probe, options?: IThrowingRepoOptions): Promise<Probe>;
|
|
1932
|
-
/** Performs the given operation on each existing Probe that satisfies the given criteria. */
|
|
1933
|
-
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<Probe, ProbeCriteria>, options?: IRepoOptions): Promise<BatchResult<Probe>>;
|
|
1934
|
-
UpdatePartialWhere(request: UpdatePartialWhereRequest<Probe, ProbeCriteria>, options?: IThrowingRepoOptions): Promise<Probe[]>;
|
|
1935
1832
|
/** Overwrites the given properties for each existing Probe. */
|
|
1936
1833
|
tryUpdatePartialMany(request: Array<Probe>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<Probe>>>;
|
|
1937
1834
|
updatePartialMany(request: Array<Probe>, options?: IThrowingRepoOptions): Promise<PartialWithId<Probe>[]>;
|
|
1938
|
-
/**
|
|
1939
|
-
|
|
1940
|
-
|
|
1835
|
+
/** Performs the given operation on each existing Probe that satisfies the given criteria. */
|
|
1836
|
+
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<Probe, ProbeCriteria>, options?: IRepoOptions): Promise<BatchResult<Probe>>;
|
|
1837
|
+
UpdatePartialWhere(request: UpdatePartialWhereRequest<Probe, ProbeCriteria>, options?: IThrowingRepoOptions): Promise<Probe[]>;
|
|
1941
1838
|
/** 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). */
|
|
1942
1839
|
tryUpsert(request: Probe, options?: IRepoOptions): Promise<SingleResult<Probe>>;
|
|
1943
1840
|
upsert(request: Probe, options?: IThrowingRepoOptions): Promise<Probe>;
|
|
1841
|
+
/** 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). */
|
|
1842
|
+
tryUpsertMany(request: Array<Probe>, options?: IRepoOptions): Promise<BatchResult<Probe>>;
|
|
1843
|
+
upsertMany(request: Array<Probe>, options?: IThrowingRepoOptions): Promise<Probe[]>;
|
|
1844
|
+
}
|
|
1845
|
+
import { Product, ProductCriteria } from "../contracts";
|
|
1846
|
+
declare class ProductCruds {
|
|
1847
|
+
private core;
|
|
1848
|
+
constructor(core: ApiClientBase);
|
|
1849
|
+
/** Deletes each existing Product that satisfies the given criteria. */
|
|
1850
|
+
tryDeleteWhere(request: ProductCriteria, options?: IRepoOptions): Promise<BatchResult<Product>>;
|
|
1851
|
+
deleteWhere(request: ProductCriteria, options?: IThrowingRepoOptions): Promise<Product[]>;
|
|
1852
|
+
/** Retrieves all the existing Product that satisfy the given criteria. */
|
|
1853
|
+
tryReadMany(request: ProductCriteria, options?: IRepoOptions): Promise<ListResult<Product>>;
|
|
1854
|
+
readMany(request: ProductCriteria, options?: IThrowingRepoOptions): Promise<Product[]>;
|
|
1855
|
+
/** Performs the given operations on each existing Product that satisfies the given criteria. */
|
|
1856
|
+
tryPatchWhere(request: PatchSpecForMany<Product, ProductCriteria>, options?: IRepoOptions): Promise<BatchResult<Product>>;
|
|
1857
|
+
patchWhere(request: PatchSpecForMany<Product, ProductCriteria>, options?: IThrowingRepoOptions): Promise<Product[]>;
|
|
1858
|
+
/** Saves each given input as a new Product. */
|
|
1859
|
+
tryCreateMany(request: Array<Product>, options?: IRepoOptions): Promise<BatchResult<Product>>;
|
|
1860
|
+
createMany(request: Array<Product>, options?: IThrowingRepoOptions): Promise<Product[]>;
|
|
1861
|
+
/** Overwrites each existing Product. */
|
|
1862
|
+
tryUpdateMany(request: Array<Product>, options?: IRepoOptions): Promise<BatchResult<Product>>;
|
|
1863
|
+
updateMany(request: Array<Product>, options?: IThrowingRepoOptions): Promise<Product[]>;
|
|
1864
|
+
/** Deletes the existing Product. */
|
|
1865
|
+
tryDelete(request: IdSpecFor<Product>, options?: IRepoOptions): Promise<SingleResult<Product>>;
|
|
1866
|
+
delete(request: IdSpecFor<Product>, options?: IThrowingRepoOptions): Promise<Product>;
|
|
1867
|
+
/** Retrieves the single, uniquely identified Product. */
|
|
1868
|
+
tryRead(request: IdSpecFor<Product>, options?: IRepoOptions): Promise<SingleResult<Product>>;
|
|
1869
|
+
read(request: IdSpecFor<Product>, options?: IThrowingRepoOptions): Promise<Product>;
|
|
1870
|
+
/** Performs the given operations on the existing Product. */
|
|
1871
|
+
tryPatch(request: PatchSpecForOne<Product>, options?: IRepoOptions): Promise<SingleResult<Product>>;
|
|
1872
|
+
patch(request: PatchSpecForOne<Product>, options?: IThrowingRepoOptions): Promise<Product>;
|
|
1873
|
+
/** Overwrites the existing Product. */
|
|
1874
|
+
tryUpdate(request: Product, options?: IRepoOptions): Promise<SingleResult<Product>>;
|
|
1875
|
+
update(request: Product, options?: IThrowingRepoOptions): Promise<Product>;
|
|
1876
|
+
/** Overwrites the given properties of the existing Product. */
|
|
1877
|
+
tryUpdatePartial(request: Product, options?: IRepoOptions): Promise<SingleResult<PartialWithId<Product>>>;
|
|
1878
|
+
updatePartial(request: Product, options?: IThrowingRepoOptions): Promise<PartialWithId<Product>>;
|
|
1879
|
+
/** Saves the input as a new Product. */
|
|
1880
|
+
tryCreate(request: Product, options?: IRepoOptions): Promise<SingleResult<Product>>;
|
|
1881
|
+
create(request: Product, options?: IThrowingRepoOptions): Promise<Product>;
|
|
1882
|
+
/** Overwrites the given properties for each existing Product. */
|
|
1883
|
+
tryUpdatePartialMany(request: Array<Product>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<Product>>>;
|
|
1884
|
+
updatePartialMany(request: Array<Product>, options?: IThrowingRepoOptions): Promise<PartialWithId<Product>[]>;
|
|
1885
|
+
/** Performs the given operation on each existing Product that satisfies the given criteria. */
|
|
1886
|
+
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<Product, ProductCriteria>, options?: IRepoOptions): Promise<BatchResult<Product>>;
|
|
1887
|
+
UpdatePartialWhere(request: UpdatePartialWhereRequest<Product, ProductCriteria>, options?: IThrowingRepoOptions): Promise<Product[]>;
|
|
1888
|
+
/** 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). */
|
|
1889
|
+
tryUpsert(request: Product, options?: IRepoOptions): Promise<SingleResult<Product>>;
|
|
1890
|
+
upsert(request: Product, options?: IThrowingRepoOptions): Promise<Product>;
|
|
1891
|
+
/** 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). */
|
|
1892
|
+
tryUpsertMany(request: Array<Product>, options?: IRepoOptions): Promise<BatchResult<Product>>;
|
|
1893
|
+
upsertMany(request: Array<Product>, options?: IThrowingRepoOptions): Promise<Product[]>;
|
|
1944
1894
|
}
|
|
1945
1895
|
import { ProductVersionConfig, ProductVersionConfigCriteria } from "../contracts";
|
|
1946
1896
|
declare class ProductVersionConfigCruds {
|
|
1947
1897
|
private core;
|
|
1948
1898
|
constructor(core: ApiClientBase);
|
|
1949
|
-
/**
|
|
1950
|
-
|
|
1951
|
-
|
|
1899
|
+
/** Deletes each existing ProductVersionConfig that satisfies the given criteria. */
|
|
1900
|
+
tryDeleteWhere(request: ProductVersionConfigCriteria, options?: IRepoOptions): Promise<BatchResult<ProductVersionConfig>>;
|
|
1901
|
+
deleteWhere(request: ProductVersionConfigCriteria, options?: IThrowingRepoOptions): Promise<ProductVersionConfig[]>;
|
|
1952
1902
|
/** Retrieves all the existing ProductVersionConfig that satisfy the given criteria. */
|
|
1953
1903
|
tryReadMany(request: ProductVersionConfigCriteria, options?: IRepoOptions): Promise<ListResult<ProductVersionConfig>>;
|
|
1954
1904
|
readMany(request: ProductVersionConfigCriteria, options?: IThrowingRepoOptions): Promise<ProductVersionConfig[]>;
|
|
1955
|
-
/** Overwrites each existing ProductVersionConfig. */
|
|
1956
|
-
tryUpdateMany(request: Array<ProductVersionConfig>, options?: IRepoOptions): Promise<BatchResult<ProductVersionConfig>>;
|
|
1957
|
-
updateMany(request: Array<ProductVersionConfig>, options?: IThrowingRepoOptions): Promise<ProductVersionConfig[]>;
|
|
1958
1905
|
/** Performs the given operations on each existing ProductVersionConfig that satisfies the given criteria. */
|
|
1959
1906
|
tryPatchWhere(request: PatchSpecForMany<ProductVersionConfig, ProductVersionConfigCriteria>, options?: IRepoOptions): Promise<BatchResult<ProductVersionConfig>>;
|
|
1960
1907
|
patchWhere(request: PatchSpecForMany<ProductVersionConfig, ProductVersionConfigCriteria>, options?: IThrowingRepoOptions): Promise<ProductVersionConfig[]>;
|
|
1961
|
-
/**
|
|
1962
|
-
|
|
1963
|
-
|
|
1908
|
+
/** Saves each given input as a new ProductVersionConfig. */
|
|
1909
|
+
tryCreateMany(request: Array<ProductVersionConfig>, options?: IRepoOptions): Promise<BatchResult<ProductVersionConfig>>;
|
|
1910
|
+
createMany(request: Array<ProductVersionConfig>, options?: IThrowingRepoOptions): Promise<ProductVersionConfig[]>;
|
|
1911
|
+
/** Overwrites each existing ProductVersionConfig. */
|
|
1912
|
+
tryUpdateMany(request: Array<ProductVersionConfig>, options?: IRepoOptions): Promise<BatchResult<ProductVersionConfig>>;
|
|
1913
|
+
updateMany(request: Array<ProductVersionConfig>, options?: IThrowingRepoOptions): Promise<ProductVersionConfig[]>;
|
|
1914
|
+
/** Deletes the existing ProductVersionConfig. */
|
|
1915
|
+
tryDelete(request: IdSpecFor<ProductVersionConfig>, options?: IRepoOptions): Promise<SingleResult<ProductVersionConfig>>;
|
|
1916
|
+
delete(request: IdSpecFor<ProductVersionConfig>, options?: IThrowingRepoOptions): Promise<ProductVersionConfig>;
|
|
1964
1917
|
/** Retrieves the single, uniquely identified ProductVersionConfig. */
|
|
1965
1918
|
tryRead(request: IdSpecFor<ProductVersionConfig>, options?: IRepoOptions): Promise<SingleResult<ProductVersionConfig>>;
|
|
1966
1919
|
read(request: IdSpecFor<ProductVersionConfig>, options?: IThrowingRepoOptions): Promise<ProductVersionConfig>;
|
|
1967
|
-
/** Overwrites the existing ProductVersionConfig. */
|
|
1968
|
-
tryUpdate(request: ProductVersionConfig, options?: IRepoOptions): Promise<SingleResult<ProductVersionConfig>>;
|
|
1969
|
-
update(request: ProductVersionConfig, options?: IThrowingRepoOptions): Promise<ProductVersionConfig>;
|
|
1970
1920
|
/** Performs the given operations on the existing ProductVersionConfig. */
|
|
1971
1921
|
tryPatch(request: PatchSpecForOne<ProductVersionConfig>, options?: IRepoOptions): Promise<SingleResult<ProductVersionConfig>>;
|
|
1972
1922
|
patch(request: PatchSpecForOne<ProductVersionConfig>, options?: IThrowingRepoOptions): Promise<ProductVersionConfig>;
|
|
1973
|
-
/**
|
|
1974
|
-
|
|
1975
|
-
|
|
1923
|
+
/** Overwrites the existing ProductVersionConfig. */
|
|
1924
|
+
tryUpdate(request: ProductVersionConfig, options?: IRepoOptions): Promise<SingleResult<ProductVersionConfig>>;
|
|
1925
|
+
update(request: ProductVersionConfig, options?: IThrowingRepoOptions): Promise<ProductVersionConfig>;
|
|
1976
1926
|
/** Overwrites the given properties of the existing ProductVersionConfig. */
|
|
1977
1927
|
tryUpdatePartial(request: ProductVersionConfig, options?: IRepoOptions): Promise<SingleResult<PartialWithId<ProductVersionConfig>>>;
|
|
1978
1928
|
updatePartial(request: ProductVersionConfig, options?: IThrowingRepoOptions): Promise<PartialWithId<ProductVersionConfig>>;
|
|
1979
1929
|
/** Saves the input as a new ProductVersionConfig. */
|
|
1980
1930
|
tryCreate(request: ProductVersionConfig, options?: IRepoOptions): Promise<SingleResult<ProductVersionConfig>>;
|
|
1981
1931
|
create(request: ProductVersionConfig, options?: IThrowingRepoOptions): Promise<ProductVersionConfig>;
|
|
1982
|
-
/** Performs the given operation on each existing ProductVersionConfig that satisfies the given criteria. */
|
|
1983
|
-
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<ProductVersionConfig, ProductVersionConfigCriteria>, options?: IRepoOptions): Promise<BatchResult<ProductVersionConfig>>;
|
|
1984
|
-
UpdatePartialWhere(request: UpdatePartialWhereRequest<ProductVersionConfig, ProductVersionConfigCriteria>, options?: IThrowingRepoOptions): Promise<ProductVersionConfig[]>;
|
|
1985
1932
|
/** Overwrites the given properties for each existing ProductVersionConfig. */
|
|
1986
1933
|
tryUpdatePartialMany(request: Array<ProductVersionConfig>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<ProductVersionConfig>>>;
|
|
1987
1934
|
updatePartialMany(request: Array<ProductVersionConfig>, options?: IThrowingRepoOptions): Promise<PartialWithId<ProductVersionConfig>[]>;
|
|
1988
|
-
/**
|
|
1989
|
-
|
|
1990
|
-
|
|
1935
|
+
/** Performs the given operation on each existing ProductVersionConfig that satisfies the given criteria. */
|
|
1936
|
+
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<ProductVersionConfig, ProductVersionConfigCriteria>, options?: IRepoOptions): Promise<BatchResult<ProductVersionConfig>>;
|
|
1937
|
+
UpdatePartialWhere(request: UpdatePartialWhereRequest<ProductVersionConfig, ProductVersionConfigCriteria>, options?: IThrowingRepoOptions): Promise<ProductVersionConfig[]>;
|
|
1991
1938
|
/** 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). */
|
|
1992
1939
|
tryUpsert(request: ProductVersionConfig, options?: IRepoOptions): Promise<SingleResult<ProductVersionConfig>>;
|
|
1993
1940
|
upsert(request: ProductVersionConfig, options?: IThrowingRepoOptions): Promise<ProductVersionConfig>;
|
|
1941
|
+
/** 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). */
|
|
1942
|
+
tryUpsertMany(request: Array<ProductVersionConfig>, options?: IRepoOptions): Promise<BatchResult<ProductVersionConfig>>;
|
|
1943
|
+
upsertMany(request: Array<ProductVersionConfig>, options?: IThrowingRepoOptions): Promise<ProductVersionConfig[]>;
|
|
1994
1944
|
}
|
|
1995
|
-
import {
|
|
1996
|
-
declare class
|
|
1945
|
+
import { ScopedHostNameConfig, ScopedHostNameConfigCriteria } from "../contracts";
|
|
1946
|
+
declare class ScopedHostNameConfigCruds {
|
|
1997
1947
|
private core;
|
|
1998
1948
|
constructor(core: ApiClientBase);
|
|
1999
|
-
/**
|
|
2000
|
-
|
|
2001
|
-
|
|
2002
|
-
/** Retrieves all the existing
|
|
2003
|
-
tryReadMany(request:
|
|
2004
|
-
readMany(request:
|
|
2005
|
-
/**
|
|
2006
|
-
|
|
2007
|
-
|
|
2008
|
-
/**
|
|
2009
|
-
|
|
2010
|
-
|
|
2011
|
-
/**
|
|
2012
|
-
|
|
2013
|
-
|
|
2014
|
-
/**
|
|
2015
|
-
|
|
2016
|
-
|
|
2017
|
-
/**
|
|
2018
|
-
|
|
2019
|
-
|
|
2020
|
-
/** Performs the given operations on the existing
|
|
2021
|
-
tryPatch(request: PatchSpecForOne<
|
|
2022
|
-
patch(request: PatchSpecForOne<
|
|
2023
|
-
/**
|
|
2024
|
-
|
|
2025
|
-
|
|
2026
|
-
/** Overwrites the given properties of the existing
|
|
2027
|
-
tryUpdatePartial(request:
|
|
2028
|
-
updatePartial(request:
|
|
2029
|
-
/** Saves the input as a new
|
|
2030
|
-
tryCreate(request:
|
|
2031
|
-
create(request:
|
|
2032
|
-
/**
|
|
2033
|
-
|
|
2034
|
-
|
|
2035
|
-
/**
|
|
2036
|
-
|
|
2037
|
-
|
|
2038
|
-
/** Saves
|
|
2039
|
-
|
|
2040
|
-
|
|
2041
|
-
/** Saves
|
|
2042
|
-
|
|
2043
|
-
|
|
1949
|
+
/** Deletes each existing ScopedHostNameConfig that satisfies the given criteria. */
|
|
1950
|
+
tryDeleteWhere(request: ScopedHostNameConfigCriteria, options?: IRepoOptions): Promise<BatchResult<ScopedHostNameConfig>>;
|
|
1951
|
+
deleteWhere(request: ScopedHostNameConfigCriteria, options?: IThrowingRepoOptions): Promise<ScopedHostNameConfig[]>;
|
|
1952
|
+
/** Retrieves all the existing ScopedHostNameConfig that satisfy the given criteria. */
|
|
1953
|
+
tryReadMany(request: ScopedHostNameConfigCriteria, options?: IRepoOptions): Promise<ListResult<ScopedHostNameConfig>>;
|
|
1954
|
+
readMany(request: ScopedHostNameConfigCriteria, options?: IThrowingRepoOptions): Promise<ScopedHostNameConfig[]>;
|
|
1955
|
+
/** Performs the given operations on each existing ScopedHostNameConfig that satisfies the given criteria. */
|
|
1956
|
+
tryPatchWhere(request: PatchSpecForMany<ScopedHostNameConfig, ScopedHostNameConfigCriteria>, options?: IRepoOptions): Promise<BatchResult<ScopedHostNameConfig>>;
|
|
1957
|
+
patchWhere(request: PatchSpecForMany<ScopedHostNameConfig, ScopedHostNameConfigCriteria>, options?: IThrowingRepoOptions): Promise<ScopedHostNameConfig[]>;
|
|
1958
|
+
/** Saves each given input as a new ScopedHostNameConfig. */
|
|
1959
|
+
tryCreateMany(request: Array<ScopedHostNameConfig>, options?: IRepoOptions): Promise<BatchResult<ScopedHostNameConfig>>;
|
|
1960
|
+
createMany(request: Array<ScopedHostNameConfig>, options?: IThrowingRepoOptions): Promise<ScopedHostNameConfig[]>;
|
|
1961
|
+
/** Overwrites each existing ScopedHostNameConfig. */
|
|
1962
|
+
tryUpdateMany(request: Array<ScopedHostNameConfig>, options?: IRepoOptions): Promise<BatchResult<ScopedHostNameConfig>>;
|
|
1963
|
+
updateMany(request: Array<ScopedHostNameConfig>, options?: IThrowingRepoOptions): Promise<ScopedHostNameConfig[]>;
|
|
1964
|
+
/** Deletes the existing ScopedHostNameConfig. */
|
|
1965
|
+
tryDelete(request: IdSpecFor<ScopedHostNameConfig>, options?: IRepoOptions): Promise<SingleResult<ScopedHostNameConfig>>;
|
|
1966
|
+
delete(request: IdSpecFor<ScopedHostNameConfig>, options?: IThrowingRepoOptions): Promise<ScopedHostNameConfig>;
|
|
1967
|
+
/** Retrieves the single, uniquely identified ScopedHostNameConfig. */
|
|
1968
|
+
tryRead(request: IdSpecFor<ScopedHostNameConfig>, options?: IRepoOptions): Promise<SingleResult<ScopedHostNameConfig>>;
|
|
1969
|
+
read(request: IdSpecFor<ScopedHostNameConfig>, options?: IThrowingRepoOptions): Promise<ScopedHostNameConfig>;
|
|
1970
|
+
/** Performs the given operations on the existing ScopedHostNameConfig. */
|
|
1971
|
+
tryPatch(request: PatchSpecForOne<ScopedHostNameConfig>, options?: IRepoOptions): Promise<SingleResult<ScopedHostNameConfig>>;
|
|
1972
|
+
patch(request: PatchSpecForOne<ScopedHostNameConfig>, options?: IThrowingRepoOptions): Promise<ScopedHostNameConfig>;
|
|
1973
|
+
/** Overwrites the existing ScopedHostNameConfig. */
|
|
1974
|
+
tryUpdate(request: ScopedHostNameConfig, options?: IRepoOptions): Promise<SingleResult<ScopedHostNameConfig>>;
|
|
1975
|
+
update(request: ScopedHostNameConfig, options?: IThrowingRepoOptions): Promise<ScopedHostNameConfig>;
|
|
1976
|
+
/** Overwrites the given properties of the existing ScopedHostNameConfig. */
|
|
1977
|
+
tryUpdatePartial(request: ScopedHostNameConfig, options?: IRepoOptions): Promise<SingleResult<PartialWithId<ScopedHostNameConfig>>>;
|
|
1978
|
+
updatePartial(request: ScopedHostNameConfig, options?: IThrowingRepoOptions): Promise<PartialWithId<ScopedHostNameConfig>>;
|
|
1979
|
+
/** Saves the input as a new ScopedHostNameConfig. */
|
|
1980
|
+
tryCreate(request: ScopedHostNameConfig, options?: IRepoOptions): Promise<SingleResult<ScopedHostNameConfig>>;
|
|
1981
|
+
create(request: ScopedHostNameConfig, options?: IThrowingRepoOptions): Promise<ScopedHostNameConfig>;
|
|
1982
|
+
/** Overwrites the given properties for each existing ScopedHostNameConfig. */
|
|
1983
|
+
tryUpdatePartialMany(request: Array<ScopedHostNameConfig>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<ScopedHostNameConfig>>>;
|
|
1984
|
+
updatePartialMany(request: Array<ScopedHostNameConfig>, options?: IThrowingRepoOptions): Promise<PartialWithId<ScopedHostNameConfig>[]>;
|
|
1985
|
+
/** Performs the given operation on each existing ScopedHostNameConfig that satisfies the given criteria. */
|
|
1986
|
+
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<ScopedHostNameConfig, ScopedHostNameConfigCriteria>, options?: IRepoOptions): Promise<BatchResult<ScopedHostNameConfig>>;
|
|
1987
|
+
UpdatePartialWhere(request: UpdatePartialWhereRequest<ScopedHostNameConfig, ScopedHostNameConfigCriteria>, options?: IThrowingRepoOptions): Promise<ScopedHostNameConfig[]>;
|
|
1988
|
+
/** 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). */
|
|
1989
|
+
tryUpsert(request: ScopedHostNameConfig, options?: IRepoOptions): Promise<SingleResult<ScopedHostNameConfig>>;
|
|
1990
|
+
upsert(request: ScopedHostNameConfig, options?: IThrowingRepoOptions): Promise<ScopedHostNameConfig>;
|
|
1991
|
+
/** 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). */
|
|
1992
|
+
tryUpsertMany(request: Array<ScopedHostNameConfig>, options?: IRepoOptions): Promise<BatchResult<ScopedHostNameConfig>>;
|
|
1993
|
+
upsertMany(request: Array<ScopedHostNameConfig>, options?: IThrowingRepoOptions): Promise<ScopedHostNameConfig[]>;
|
|
2044
1994
|
}
|
|
2045
1995
|
import { ScopedSetting, ScopedSettingCriteria } from "../contracts";
|
|
2046
1996
|
declare class ScopedSettingCruds {
|
|
2047
1997
|
private core;
|
|
2048
1998
|
constructor(core: ApiClientBase);
|
|
2049
|
-
/**
|
|
2050
|
-
|
|
2051
|
-
|
|
1999
|
+
/** Deletes each existing ScopedSetting that satisfies the given criteria. */
|
|
2000
|
+
tryDeleteWhere(request: ScopedSettingCriteria, options?: IRepoOptions): Promise<BatchResult<ScopedSetting>>;
|
|
2001
|
+
deleteWhere(request: ScopedSettingCriteria, options?: IThrowingRepoOptions): Promise<ScopedSetting[]>;
|
|
2052
2002
|
/** Retrieves all the existing ScopedSetting that satisfy the given criteria. */
|
|
2053
2003
|
tryReadMany(request: ScopedSettingCriteria, options?: IRepoOptions): Promise<ListResult<ScopedSetting>>;
|
|
2054
2004
|
readMany(request: ScopedSettingCriteria, options?: IThrowingRepoOptions): Promise<ScopedSetting[]>;
|
|
2055
|
-
/** Overwrites each existing ScopedSetting. */
|
|
2056
|
-
tryUpdateMany(request: Array<ScopedSetting>, options?: IRepoOptions): Promise<BatchResult<ScopedSetting>>;
|
|
2057
|
-
updateMany(request: Array<ScopedSetting>, options?: IThrowingRepoOptions): Promise<ScopedSetting[]>;
|
|
2058
2005
|
/** Performs the given operations on each existing ScopedSetting that satisfies the given criteria. */
|
|
2059
2006
|
tryPatchWhere(request: PatchSpecForMany<ScopedSetting, ScopedSettingCriteria>, options?: IRepoOptions): Promise<BatchResult<ScopedSetting>>;
|
|
2060
2007
|
patchWhere(request: PatchSpecForMany<ScopedSetting, ScopedSettingCriteria>, options?: IThrowingRepoOptions): Promise<ScopedSetting[]>;
|
|
2061
|
-
/**
|
|
2062
|
-
|
|
2063
|
-
|
|
2008
|
+
/** Saves each given input as a new ScopedSetting. */
|
|
2009
|
+
tryCreateMany(request: Array<ScopedSetting>, options?: IRepoOptions): Promise<BatchResult<ScopedSetting>>;
|
|
2010
|
+
createMany(request: Array<ScopedSetting>, options?: IThrowingRepoOptions): Promise<ScopedSetting[]>;
|
|
2011
|
+
/** Overwrites each existing ScopedSetting. */
|
|
2012
|
+
tryUpdateMany(request: Array<ScopedSetting>, options?: IRepoOptions): Promise<BatchResult<ScopedSetting>>;
|
|
2013
|
+
updateMany(request: Array<ScopedSetting>, options?: IThrowingRepoOptions): Promise<ScopedSetting[]>;
|
|
2014
|
+
/** Deletes the existing ScopedSetting. */
|
|
2015
|
+
tryDelete(request: IdSpecFor<ScopedSetting>, options?: IRepoOptions): Promise<SingleResult<ScopedSetting>>;
|
|
2016
|
+
delete(request: IdSpecFor<ScopedSetting>, options?: IThrowingRepoOptions): Promise<ScopedSetting>;
|
|
2064
2017
|
/** Retrieves the single, uniquely identified ScopedSetting. */
|
|
2065
2018
|
tryRead(request: IdSpecFor<ScopedSetting>, options?: IRepoOptions): Promise<SingleResult<ScopedSetting>>;
|
|
2066
2019
|
read(request: IdSpecFor<ScopedSetting>, options?: IThrowingRepoOptions): Promise<ScopedSetting>;
|
|
2067
|
-
/** Overwrites the existing ScopedSetting. */
|
|
2068
|
-
tryUpdate(request: ScopedSetting, options?: IRepoOptions): Promise<SingleResult<ScopedSetting>>;
|
|
2069
|
-
update(request: ScopedSetting, options?: IThrowingRepoOptions): Promise<ScopedSetting>;
|
|
2070
2020
|
/** Performs the given operations on the existing ScopedSetting. */
|
|
2071
2021
|
tryPatch(request: PatchSpecForOne<ScopedSetting>, options?: IRepoOptions): Promise<SingleResult<ScopedSetting>>;
|
|
2072
2022
|
patch(request: PatchSpecForOne<ScopedSetting>, options?: IThrowingRepoOptions): Promise<ScopedSetting>;
|
|
2073
|
-
/**
|
|
2074
|
-
|
|
2075
|
-
|
|
2023
|
+
/** Overwrites the existing ScopedSetting. */
|
|
2024
|
+
tryUpdate(request: ScopedSetting, options?: IRepoOptions): Promise<SingleResult<ScopedSetting>>;
|
|
2025
|
+
update(request: ScopedSetting, options?: IThrowingRepoOptions): Promise<ScopedSetting>;
|
|
2076
2026
|
/** Overwrites the given properties of the existing ScopedSetting. */
|
|
2077
2027
|
tryUpdatePartial(request: ScopedSetting, options?: IRepoOptions): Promise<SingleResult<PartialWithId<ScopedSetting>>>;
|
|
2078
2028
|
updatePartial(request: ScopedSetting, options?: IThrowingRepoOptions): Promise<PartialWithId<ScopedSetting>>;
|
|
2079
2029
|
/** Saves the input as a new ScopedSetting. */
|
|
2080
2030
|
tryCreate(request: ScopedSetting, options?: IRepoOptions): Promise<SingleResult<ScopedSetting>>;
|
|
2081
2031
|
create(request: ScopedSetting, options?: IThrowingRepoOptions): Promise<ScopedSetting>;
|
|
2082
|
-
/** Performs the given operation on each existing ScopedSetting that satisfies the given criteria. */
|
|
2083
|
-
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<ScopedSetting, ScopedSettingCriteria>, options?: IRepoOptions): Promise<BatchResult<ScopedSetting>>;
|
|
2084
|
-
UpdatePartialWhere(request: UpdatePartialWhereRequest<ScopedSetting, ScopedSettingCriteria>, options?: IThrowingRepoOptions): Promise<ScopedSetting[]>;
|
|
2085
2032
|
/** Overwrites the given properties for each existing ScopedSetting. */
|
|
2086
2033
|
tryUpdatePartialMany(request: Array<ScopedSetting>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<ScopedSetting>>>;
|
|
2087
2034
|
updatePartialMany(request: Array<ScopedSetting>, options?: IThrowingRepoOptions): Promise<PartialWithId<ScopedSetting>[]>;
|
|
2088
|
-
/**
|
|
2089
|
-
|
|
2090
|
-
|
|
2035
|
+
/** Performs the given operation on each existing ScopedSetting that satisfies the given criteria. */
|
|
2036
|
+
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<ScopedSetting, ScopedSettingCriteria>, options?: IRepoOptions): Promise<BatchResult<ScopedSetting>>;
|
|
2037
|
+
UpdatePartialWhere(request: UpdatePartialWhereRequest<ScopedSetting, ScopedSettingCriteria>, options?: IThrowingRepoOptions): Promise<ScopedSetting[]>;
|
|
2091
2038
|
/** 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). */
|
|
2092
2039
|
tryUpsert(request: ScopedSetting, options?: IRepoOptions): Promise<SingleResult<ScopedSetting>>;
|
|
2093
2040
|
upsert(request: ScopedSetting, options?: IThrowingRepoOptions): Promise<ScopedSetting>;
|
|
2041
|
+
/** 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). */
|
|
2042
|
+
tryUpsertMany(request: Array<ScopedSetting>, options?: IRepoOptions): Promise<BatchResult<ScopedSetting>>;
|
|
2043
|
+
upsertMany(request: Array<ScopedSetting>, options?: IThrowingRepoOptions): Promise<ScopedSetting[]>;
|
|
2044
|
+
}
|
|
2045
|
+
import { SetupJournal, SetupJournalCriteria } from "../contracts";
|
|
2046
|
+
declare class SetupJournalCruds {
|
|
2047
|
+
private core;
|
|
2048
|
+
constructor(core: ApiClientBase);
|
|
2049
|
+
/** Deletes each existing SetupJournal that satisfies the given criteria. */
|
|
2050
|
+
tryDeleteWhere(request: SetupJournalCriteria, options?: IRepoOptions): Promise<BatchResult<SetupJournal>>;
|
|
2051
|
+
deleteWhere(request: SetupJournalCriteria, options?: IThrowingRepoOptions): Promise<SetupJournal[]>;
|
|
2052
|
+
/** Retrieves all the existing SetupJournal that satisfy the given criteria. */
|
|
2053
|
+
tryReadMany(request: SetupJournalCriteria, options?: IRepoOptions): Promise<ListResult<SetupJournal>>;
|
|
2054
|
+
readMany(request: SetupJournalCriteria, options?: IThrowingRepoOptions): Promise<SetupJournal[]>;
|
|
2055
|
+
/** Performs the given operations on each existing SetupJournal that satisfies the given criteria. */
|
|
2056
|
+
tryPatchWhere(request: PatchSpecForMany<SetupJournal, SetupJournalCriteria>, options?: IRepoOptions): Promise<BatchResult<SetupJournal>>;
|
|
2057
|
+
patchWhere(request: PatchSpecForMany<SetupJournal, SetupJournalCriteria>, options?: IThrowingRepoOptions): Promise<SetupJournal[]>;
|
|
2058
|
+
/** Saves each given input as a new SetupJournal. */
|
|
2059
|
+
tryCreateMany(request: Array<SetupJournal>, options?: IRepoOptions): Promise<BatchResult<SetupJournal>>;
|
|
2060
|
+
createMany(request: Array<SetupJournal>, options?: IThrowingRepoOptions): Promise<SetupJournal[]>;
|
|
2061
|
+
/** Overwrites each existing SetupJournal. */
|
|
2062
|
+
tryUpdateMany(request: Array<SetupJournal>, options?: IRepoOptions): Promise<BatchResult<SetupJournal>>;
|
|
2063
|
+
updateMany(request: Array<SetupJournal>, options?: IThrowingRepoOptions): Promise<SetupJournal[]>;
|
|
2064
|
+
/** Deletes the existing SetupJournal. */
|
|
2065
|
+
tryDelete(request: IdSpecFor<SetupJournal>, options?: IRepoOptions): Promise<SingleResult<SetupJournal>>;
|
|
2066
|
+
delete(request: IdSpecFor<SetupJournal>, options?: IThrowingRepoOptions): Promise<SetupJournal>;
|
|
2067
|
+
/** Retrieves the single, uniquely identified SetupJournal. */
|
|
2068
|
+
tryRead(request: IdSpecFor<SetupJournal>, options?: IRepoOptions): Promise<SingleResult<SetupJournal>>;
|
|
2069
|
+
read(request: IdSpecFor<SetupJournal>, options?: IThrowingRepoOptions): Promise<SetupJournal>;
|
|
2070
|
+
/** Performs the given operations on the existing SetupJournal. */
|
|
2071
|
+
tryPatch(request: PatchSpecForOne<SetupJournal>, options?: IRepoOptions): Promise<SingleResult<SetupJournal>>;
|
|
2072
|
+
patch(request: PatchSpecForOne<SetupJournal>, options?: IThrowingRepoOptions): Promise<SetupJournal>;
|
|
2073
|
+
/** Overwrites the existing SetupJournal. */
|
|
2074
|
+
tryUpdate(request: SetupJournal, options?: IRepoOptions): Promise<SingleResult<SetupJournal>>;
|
|
2075
|
+
update(request: SetupJournal, options?: IThrowingRepoOptions): Promise<SetupJournal>;
|
|
2076
|
+
/** Overwrites the given properties of the existing SetupJournal. */
|
|
2077
|
+
tryUpdatePartial(request: SetupJournal, options?: IRepoOptions): Promise<SingleResult<PartialWithId<SetupJournal>>>;
|
|
2078
|
+
updatePartial(request: SetupJournal, options?: IThrowingRepoOptions): Promise<PartialWithId<SetupJournal>>;
|
|
2079
|
+
/** Saves the input as a new SetupJournal. */
|
|
2080
|
+
tryCreate(request: SetupJournal, options?: IRepoOptions): Promise<SingleResult<SetupJournal>>;
|
|
2081
|
+
create(request: SetupJournal, options?: IThrowingRepoOptions): Promise<SetupJournal>;
|
|
2082
|
+
/** Overwrites the given properties for each existing SetupJournal. */
|
|
2083
|
+
tryUpdatePartialMany(request: Array<SetupJournal>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<SetupJournal>>>;
|
|
2084
|
+
updatePartialMany(request: Array<SetupJournal>, options?: IThrowingRepoOptions): Promise<PartialWithId<SetupJournal>[]>;
|
|
2085
|
+
/** Performs the given operation on each existing SetupJournal that satisfies the given criteria. */
|
|
2086
|
+
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<SetupJournal, SetupJournalCriteria>, options?: IRepoOptions): Promise<BatchResult<SetupJournal>>;
|
|
2087
|
+
UpdatePartialWhere(request: UpdatePartialWhereRequest<SetupJournal, SetupJournalCriteria>, options?: IThrowingRepoOptions): Promise<SetupJournal[]>;
|
|
2088
|
+
/** 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). */
|
|
2089
|
+
tryUpsert(request: SetupJournal, options?: IRepoOptions): Promise<SingleResult<SetupJournal>>;
|
|
2090
|
+
upsert(request: SetupJournal, options?: IThrowingRepoOptions): Promise<SetupJournal>;
|
|
2091
|
+
/** 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). */
|
|
2092
|
+
tryUpsertMany(request: Array<SetupJournal>, options?: IRepoOptions): Promise<BatchResult<SetupJournal>>;
|
|
2093
|
+
upsertMany(request: Array<SetupJournal>, options?: IThrowingRepoOptions): Promise<SetupJournal[]>;
|
|
2094
2094
|
}
|
|
2095
2095
|
import { Snapshot, SnapshotCriteria } from "../contracts";
|
|
2096
2096
|
declare class SnapshotCruds {
|
|
2097
2097
|
private core;
|
|
2098
2098
|
constructor(core: ApiClientBase);
|
|
2099
|
-
/**
|
|
2100
|
-
|
|
2101
|
-
|
|
2099
|
+
/** Deletes each existing Snapshot that satisfies the given criteria. */
|
|
2100
|
+
tryDeleteWhere(request: SnapshotCriteria, options?: IRepoOptions): Promise<BatchResult<Snapshot>>;
|
|
2101
|
+
deleteWhere(request: SnapshotCriteria, options?: IThrowingRepoOptions): Promise<Snapshot[]>;
|
|
2102
2102
|
/** Retrieves all the existing Snapshot that satisfy the given criteria. */
|
|
2103
2103
|
tryReadMany(request: SnapshotCriteria, options?: IRepoOptions): Promise<ListResult<Snapshot>>;
|
|
2104
2104
|
readMany(request: SnapshotCriteria, options?: IThrowingRepoOptions): Promise<Snapshot[]>;
|
|
2105
|
-
/** Overwrites each existing Snapshot. */
|
|
2106
|
-
tryUpdateMany(request: Array<Snapshot>, options?: IRepoOptions): Promise<BatchResult<Snapshot>>;
|
|
2107
|
-
updateMany(request: Array<Snapshot>, options?: IThrowingRepoOptions): Promise<Snapshot[]>;
|
|
2108
2105
|
/** Performs the given operations on each existing Snapshot that satisfies the given criteria. */
|
|
2109
2106
|
tryPatchWhere(request: PatchSpecForMany<Snapshot, SnapshotCriteria>, options?: IRepoOptions): Promise<BatchResult<Snapshot>>;
|
|
2110
2107
|
patchWhere(request: PatchSpecForMany<Snapshot, SnapshotCriteria>, options?: IThrowingRepoOptions): Promise<Snapshot[]>;
|
|
2111
|
-
/**
|
|
2112
|
-
|
|
2113
|
-
|
|
2108
|
+
/** Saves each given input as a new Snapshot. */
|
|
2109
|
+
tryCreateMany(request: Array<Snapshot>, options?: IRepoOptions): Promise<BatchResult<Snapshot>>;
|
|
2110
|
+
createMany(request: Array<Snapshot>, options?: IThrowingRepoOptions): Promise<Snapshot[]>;
|
|
2111
|
+
/** Overwrites each existing Snapshot. */
|
|
2112
|
+
tryUpdateMany(request: Array<Snapshot>, options?: IRepoOptions): Promise<BatchResult<Snapshot>>;
|
|
2113
|
+
updateMany(request: Array<Snapshot>, options?: IThrowingRepoOptions): Promise<Snapshot[]>;
|
|
2114
|
+
/** Deletes the existing Snapshot. */
|
|
2115
|
+
tryDelete(request: IdSpecFor<Snapshot>, options?: IRepoOptions): Promise<SingleResult<Snapshot>>;
|
|
2116
|
+
delete(request: IdSpecFor<Snapshot>, options?: IThrowingRepoOptions): Promise<Snapshot>;
|
|
2114
2117
|
/** Retrieves the single, uniquely identified Snapshot. */
|
|
2115
2118
|
tryRead(request: IdSpecFor<Snapshot>, options?: IRepoOptions): Promise<SingleResult<Snapshot>>;
|
|
2116
2119
|
read(request: IdSpecFor<Snapshot>, options?: IThrowingRepoOptions): Promise<Snapshot>;
|
|
2117
|
-
/** Overwrites the existing Snapshot. */
|
|
2118
|
-
tryUpdate(request: Snapshot, options?: IRepoOptions): Promise<SingleResult<Snapshot>>;
|
|
2119
|
-
update(request: Snapshot, options?: IThrowingRepoOptions): Promise<Snapshot>;
|
|
2120
2120
|
/** Performs the given operations on the existing Snapshot. */
|
|
2121
2121
|
tryPatch(request: PatchSpecForOne<Snapshot>, options?: IRepoOptions): Promise<SingleResult<Snapshot>>;
|
|
2122
2122
|
patch(request: PatchSpecForOne<Snapshot>, options?: IThrowingRepoOptions): Promise<Snapshot>;
|
|
2123
|
-
/**
|
|
2124
|
-
|
|
2125
|
-
|
|
2123
|
+
/** Overwrites the existing Snapshot. */
|
|
2124
|
+
tryUpdate(request: Snapshot, options?: IRepoOptions): Promise<SingleResult<Snapshot>>;
|
|
2125
|
+
update(request: Snapshot, options?: IThrowingRepoOptions): Promise<Snapshot>;
|
|
2126
2126
|
/** Overwrites the given properties of the existing Snapshot. */
|
|
2127
2127
|
tryUpdatePartial(request: Snapshot, options?: IRepoOptions): Promise<SingleResult<PartialWithId<Snapshot>>>;
|
|
2128
2128
|
updatePartial(request: Snapshot, options?: IThrowingRepoOptions): Promise<PartialWithId<Snapshot>>;
|
|
2129
2129
|
/** Saves the input as a new Snapshot. */
|
|
2130
2130
|
tryCreate(request: Snapshot, options?: IRepoOptions): Promise<SingleResult<Snapshot>>;
|
|
2131
2131
|
create(request: Snapshot, options?: IThrowingRepoOptions): Promise<Snapshot>;
|
|
2132
|
-
/** Performs the given operation on each existing Snapshot that satisfies the given criteria. */
|
|
2133
|
-
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<Snapshot, SnapshotCriteria>, options?: IRepoOptions): Promise<BatchResult<Snapshot>>;
|
|
2134
|
-
UpdatePartialWhere(request: UpdatePartialWhereRequest<Snapshot, SnapshotCriteria>, options?: IThrowingRepoOptions): Promise<Snapshot[]>;
|
|
2135
2132
|
/** Overwrites the given properties for each existing Snapshot. */
|
|
2136
2133
|
tryUpdatePartialMany(request: Array<Snapshot>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<Snapshot>>>;
|
|
2137
2134
|
updatePartialMany(request: Array<Snapshot>, options?: IThrowingRepoOptions): Promise<PartialWithId<Snapshot>[]>;
|
|
2138
|
-
/**
|
|
2139
|
-
|
|
2140
|
-
|
|
2135
|
+
/** Performs the given operation on each existing Snapshot that satisfies the given criteria. */
|
|
2136
|
+
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<Snapshot, SnapshotCriteria>, options?: IRepoOptions): Promise<BatchResult<Snapshot>>;
|
|
2137
|
+
UpdatePartialWhere(request: UpdatePartialWhereRequest<Snapshot, SnapshotCriteria>, options?: IThrowingRepoOptions): Promise<Snapshot[]>;
|
|
2141
2138
|
/** 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). */
|
|
2142
2139
|
tryUpsert(request: Snapshot, options?: IRepoOptions): Promise<SingleResult<Snapshot>>;
|
|
2143
2140
|
upsert(request: Snapshot, options?: IThrowingRepoOptions): Promise<Snapshot>;
|
|
2141
|
+
/** 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). */
|
|
2142
|
+
tryUpsertMany(request: Array<Snapshot>, options?: IRepoOptions): Promise<BatchResult<Snapshot>>;
|
|
2143
|
+
upsertMany(request: Array<Snapshot>, options?: IThrowingRepoOptions): Promise<Snapshot[]>;
|
|
2144
2144
|
}
|
|
2145
2145
|
import { SourceRepo, SourceRepoCriteria } from "../contracts";
|
|
2146
2146
|
declare class SourceRepoCruds {
|
|
2147
2147
|
private core;
|
|
2148
2148
|
constructor(core: ApiClientBase);
|
|
2149
|
-
/**
|
|
2150
|
-
|
|
2151
|
-
|
|
2149
|
+
/** Deletes each existing SourceRepo that satisfies the given criteria. */
|
|
2150
|
+
tryDeleteWhere(request: SourceRepoCriteria, options?: IRepoOptions): Promise<BatchResult<SourceRepo>>;
|
|
2151
|
+
deleteWhere(request: SourceRepoCriteria, options?: IThrowingRepoOptions): Promise<SourceRepo[]>;
|
|
2152
2152
|
/** Retrieves all the existing SourceRepo that satisfy the given criteria. */
|
|
2153
2153
|
tryReadMany(request: SourceRepoCriteria, options?: IRepoOptions): Promise<ListResult<SourceRepo>>;
|
|
2154
2154
|
readMany(request: SourceRepoCriteria, options?: IThrowingRepoOptions): Promise<SourceRepo[]>;
|
|
2155
|
-
/** Overwrites each existing SourceRepo. */
|
|
2156
|
-
tryUpdateMany(request: Array<SourceRepo>, options?: IRepoOptions): Promise<BatchResult<SourceRepo>>;
|
|
2157
|
-
updateMany(request: Array<SourceRepo>, options?: IThrowingRepoOptions): Promise<SourceRepo[]>;
|
|
2158
2155
|
/** Performs the given operations on each existing SourceRepo that satisfies the given criteria. */
|
|
2159
2156
|
tryPatchWhere(request: PatchSpecForMany<SourceRepo, SourceRepoCriteria>, options?: IRepoOptions): Promise<BatchResult<SourceRepo>>;
|
|
2160
2157
|
patchWhere(request: PatchSpecForMany<SourceRepo, SourceRepoCriteria>, options?: IThrowingRepoOptions): Promise<SourceRepo[]>;
|
|
2161
|
-
/**
|
|
2162
|
-
|
|
2163
|
-
|
|
2158
|
+
/** Saves each given input as a new SourceRepo. */
|
|
2159
|
+
tryCreateMany(request: Array<SourceRepo>, options?: IRepoOptions): Promise<BatchResult<SourceRepo>>;
|
|
2160
|
+
createMany(request: Array<SourceRepo>, options?: IThrowingRepoOptions): Promise<SourceRepo[]>;
|
|
2161
|
+
/** Overwrites each existing SourceRepo. */
|
|
2162
|
+
tryUpdateMany(request: Array<SourceRepo>, options?: IRepoOptions): Promise<BatchResult<SourceRepo>>;
|
|
2163
|
+
updateMany(request: Array<SourceRepo>, options?: IThrowingRepoOptions): Promise<SourceRepo[]>;
|
|
2164
|
+
/** Deletes the existing SourceRepo. */
|
|
2165
|
+
tryDelete(request: IdSpecFor<SourceRepo>, options?: IRepoOptions): Promise<SingleResult<SourceRepo>>;
|
|
2166
|
+
delete(request: IdSpecFor<SourceRepo>, options?: IThrowingRepoOptions): Promise<SourceRepo>;
|
|
2164
2167
|
/** Retrieves the single, uniquely identified SourceRepo. */
|
|
2165
2168
|
tryRead(request: IdSpecFor<SourceRepo>, options?: IRepoOptions): Promise<SingleResult<SourceRepo>>;
|
|
2166
2169
|
read(request: IdSpecFor<SourceRepo>, options?: IThrowingRepoOptions): Promise<SourceRepo>;
|
|
2167
|
-
/** Overwrites the existing SourceRepo. */
|
|
2168
|
-
tryUpdate(request: SourceRepo, options?: IRepoOptions): Promise<SingleResult<SourceRepo>>;
|
|
2169
|
-
update(request: SourceRepo, options?: IThrowingRepoOptions): Promise<SourceRepo>;
|
|
2170
2170
|
/** Performs the given operations on the existing SourceRepo. */
|
|
2171
2171
|
tryPatch(request: PatchSpecForOne<SourceRepo>, options?: IRepoOptions): Promise<SingleResult<SourceRepo>>;
|
|
2172
2172
|
patch(request: PatchSpecForOne<SourceRepo>, options?: IThrowingRepoOptions): Promise<SourceRepo>;
|
|
2173
|
-
/**
|
|
2174
|
-
|
|
2175
|
-
|
|
2173
|
+
/** Overwrites the existing SourceRepo. */
|
|
2174
|
+
tryUpdate(request: SourceRepo, options?: IRepoOptions): Promise<SingleResult<SourceRepo>>;
|
|
2175
|
+
update(request: SourceRepo, options?: IThrowingRepoOptions): Promise<SourceRepo>;
|
|
2176
2176
|
/** Overwrites the given properties of the existing SourceRepo. */
|
|
2177
2177
|
tryUpdatePartial(request: SourceRepo, options?: IRepoOptions): Promise<SingleResult<PartialWithId<SourceRepo>>>;
|
|
2178
2178
|
updatePartial(request: SourceRepo, options?: IThrowingRepoOptions): Promise<PartialWithId<SourceRepo>>;
|
|
2179
2179
|
/** Saves the input as a new SourceRepo. */
|
|
2180
2180
|
tryCreate(request: SourceRepo, options?: IRepoOptions): Promise<SingleResult<SourceRepo>>;
|
|
2181
2181
|
create(request: SourceRepo, options?: IThrowingRepoOptions): Promise<SourceRepo>;
|
|
2182
|
-
/** Performs the given operation on each existing SourceRepo that satisfies the given criteria. */
|
|
2183
|
-
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<SourceRepo, SourceRepoCriteria>, options?: IRepoOptions): Promise<BatchResult<SourceRepo>>;
|
|
2184
|
-
UpdatePartialWhere(request: UpdatePartialWhereRequest<SourceRepo, SourceRepoCriteria>, options?: IThrowingRepoOptions): Promise<SourceRepo[]>;
|
|
2185
2182
|
/** Overwrites the given properties for each existing SourceRepo. */
|
|
2186
2183
|
tryUpdatePartialMany(request: Array<SourceRepo>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<SourceRepo>>>;
|
|
2187
2184
|
updatePartialMany(request: Array<SourceRepo>, options?: IThrowingRepoOptions): Promise<PartialWithId<SourceRepo>[]>;
|
|
2188
|
-
/**
|
|
2189
|
-
|
|
2190
|
-
|
|
2185
|
+
/** Performs the given operation on each existing SourceRepo that satisfies the given criteria. */
|
|
2186
|
+
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<SourceRepo, SourceRepoCriteria>, options?: IRepoOptions): Promise<BatchResult<SourceRepo>>;
|
|
2187
|
+
UpdatePartialWhere(request: UpdatePartialWhereRequest<SourceRepo, SourceRepoCriteria>, options?: IThrowingRepoOptions): Promise<SourceRepo[]>;
|
|
2191
2188
|
/** 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). */
|
|
2192
2189
|
tryUpsert(request: SourceRepo, options?: IRepoOptions): Promise<SingleResult<SourceRepo>>;
|
|
2193
2190
|
upsert(request: SourceRepo, options?: IThrowingRepoOptions): Promise<SourceRepo>;
|
|
2191
|
+
/** 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). */
|
|
2192
|
+
tryUpsertMany(request: Array<SourceRepo>, options?: IRepoOptions): Promise<BatchResult<SourceRepo>>;
|
|
2193
|
+
upsertMany(request: Array<SourceRepo>, options?: IThrowingRepoOptions): Promise<SourceRepo[]>;
|
|
2194
2194
|
}
|
|
2195
2195
|
import { Subscription, SubscriptionCriteria } from "../contracts";
|
|
2196
2196
|
declare class SubscriptionCruds {
|
|
2197
2197
|
private core;
|
|
2198
2198
|
constructor(core: ApiClientBase);
|
|
2199
|
-
/**
|
|
2200
|
-
|
|
2201
|
-
|
|
2199
|
+
/** Deletes each existing Subscription that satisfies the given criteria. */
|
|
2200
|
+
tryDeleteWhere(request: SubscriptionCriteria, options?: IRepoOptions): Promise<BatchResult<Subscription>>;
|
|
2201
|
+
deleteWhere(request: SubscriptionCriteria, options?: IThrowingRepoOptions): Promise<Subscription[]>;
|
|
2202
2202
|
/** Retrieves all the existing Subscription that satisfy the given criteria. */
|
|
2203
2203
|
tryReadMany(request: SubscriptionCriteria, options?: IRepoOptions): Promise<ListResult<Subscription>>;
|
|
2204
2204
|
readMany(request: SubscriptionCriteria, options?: IThrowingRepoOptions): Promise<Subscription[]>;
|
|
2205
|
-
/** Overwrites each existing Subscription. */
|
|
2206
|
-
tryUpdateMany(request: Array<Subscription>, options?: IRepoOptions): Promise<BatchResult<Subscription>>;
|
|
2207
|
-
updateMany(request: Array<Subscription>, options?: IThrowingRepoOptions): Promise<Subscription[]>;
|
|
2208
2205
|
/** Performs the given operations on each existing Subscription that satisfies the given criteria. */
|
|
2209
2206
|
tryPatchWhere(request: PatchSpecForMany<Subscription, SubscriptionCriteria>, options?: IRepoOptions): Promise<BatchResult<Subscription>>;
|
|
2210
2207
|
patchWhere(request: PatchSpecForMany<Subscription, SubscriptionCriteria>, options?: IThrowingRepoOptions): Promise<Subscription[]>;
|
|
2211
|
-
/**
|
|
2212
|
-
|
|
2213
|
-
|
|
2208
|
+
/** Saves each given input as a new Subscription. */
|
|
2209
|
+
tryCreateMany(request: Array<Subscription>, options?: IRepoOptions): Promise<BatchResult<Subscription>>;
|
|
2210
|
+
createMany(request: Array<Subscription>, options?: IThrowingRepoOptions): Promise<Subscription[]>;
|
|
2211
|
+
/** Overwrites each existing Subscription. */
|
|
2212
|
+
tryUpdateMany(request: Array<Subscription>, options?: IRepoOptions): Promise<BatchResult<Subscription>>;
|
|
2213
|
+
updateMany(request: Array<Subscription>, options?: IThrowingRepoOptions): Promise<Subscription[]>;
|
|
2214
|
+
/** Deletes the existing Subscription. */
|
|
2215
|
+
tryDelete(request: IdSpecFor<Subscription>, options?: IRepoOptions): Promise<SingleResult<Subscription>>;
|
|
2216
|
+
delete(request: IdSpecFor<Subscription>, options?: IThrowingRepoOptions): Promise<Subscription>;
|
|
2214
2217
|
/** Retrieves the single, uniquely identified Subscription. */
|
|
2215
2218
|
tryRead(request: IdSpecFor<Subscription>, options?: IRepoOptions): Promise<SingleResult<Subscription>>;
|
|
2216
2219
|
read(request: IdSpecFor<Subscription>, options?: IThrowingRepoOptions): Promise<Subscription>;
|
|
2217
|
-
/** Overwrites the existing Subscription. */
|
|
2218
|
-
tryUpdate(request: Subscription, options?: IRepoOptions): Promise<SingleResult<Subscription>>;
|
|
2219
|
-
update(request: Subscription, options?: IThrowingRepoOptions): Promise<Subscription>;
|
|
2220
2220
|
/** Performs the given operations on the existing Subscription. */
|
|
2221
2221
|
tryPatch(request: PatchSpecForOne<Subscription>, options?: IRepoOptions): Promise<SingleResult<Subscription>>;
|
|
2222
2222
|
patch(request: PatchSpecForOne<Subscription>, options?: IThrowingRepoOptions): Promise<Subscription>;
|
|
2223
|
-
/**
|
|
2224
|
-
|
|
2225
|
-
|
|
2223
|
+
/** Overwrites the existing Subscription. */
|
|
2224
|
+
tryUpdate(request: Subscription, options?: IRepoOptions): Promise<SingleResult<Subscription>>;
|
|
2225
|
+
update(request: Subscription, options?: IThrowingRepoOptions): Promise<Subscription>;
|
|
2226
2226
|
/** Overwrites the given properties of the existing Subscription. */
|
|
2227
2227
|
tryUpdatePartial(request: Subscription, options?: IRepoOptions): Promise<SingleResult<PartialWithId<Subscription>>>;
|
|
2228
2228
|
updatePartial(request: Subscription, options?: IThrowingRepoOptions): Promise<PartialWithId<Subscription>>;
|
|
2229
2229
|
/** Saves the input as a new Subscription. */
|
|
2230
2230
|
tryCreate(request: Subscription, options?: IRepoOptions): Promise<SingleResult<Subscription>>;
|
|
2231
2231
|
create(request: Subscription, options?: IThrowingRepoOptions): Promise<Subscription>;
|
|
2232
|
-
/** Performs the given operation on each existing Subscription that satisfies the given criteria. */
|
|
2233
|
-
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<Subscription, SubscriptionCriteria>, options?: IRepoOptions): Promise<BatchResult<Subscription>>;
|
|
2234
|
-
UpdatePartialWhere(request: UpdatePartialWhereRequest<Subscription, SubscriptionCriteria>, options?: IThrowingRepoOptions): Promise<Subscription[]>;
|
|
2235
2232
|
/** Overwrites the given properties for each existing Subscription. */
|
|
2236
2233
|
tryUpdatePartialMany(request: Array<Subscription>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<Subscription>>>;
|
|
2237
2234
|
updatePartialMany(request: Array<Subscription>, options?: IThrowingRepoOptions): Promise<PartialWithId<Subscription>[]>;
|
|
2238
|
-
/**
|
|
2239
|
-
|
|
2240
|
-
|
|
2235
|
+
/** Performs the given operation on each existing Subscription that satisfies the given criteria. */
|
|
2236
|
+
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<Subscription, SubscriptionCriteria>, options?: IRepoOptions): Promise<BatchResult<Subscription>>;
|
|
2237
|
+
UpdatePartialWhere(request: UpdatePartialWhereRequest<Subscription, SubscriptionCriteria>, options?: IThrowingRepoOptions): Promise<Subscription[]>;
|
|
2241
2238
|
/** 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). */
|
|
2242
2239
|
tryUpsert(request: Subscription, options?: IRepoOptions): Promise<SingleResult<Subscription>>;
|
|
2243
2240
|
upsert(request: Subscription, options?: IThrowingRepoOptions): Promise<Subscription>;
|
|
2241
|
+
/** 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). */
|
|
2242
|
+
tryUpsertMany(request: Array<Subscription>, options?: IRepoOptions): Promise<BatchResult<Subscription>>;
|
|
2243
|
+
upsertMany(request: Array<Subscription>, options?: IThrowingRepoOptions): Promise<Subscription[]>;
|
|
2244
2244
|
}
|
|
2245
2245
|
import { Tag, TagCriteria } from "../contracts";
|
|
2246
2246
|
declare class TagCruds {
|
|
2247
2247
|
private core;
|
|
2248
2248
|
constructor(core: ApiClientBase);
|
|
2249
|
-
/**
|
|
2250
|
-
|
|
2251
|
-
|
|
2249
|
+
/** Deletes each existing Tag that satisfies the given criteria. */
|
|
2250
|
+
tryDeleteWhere(request: TagCriteria, options?: IRepoOptions): Promise<BatchResult<Tag>>;
|
|
2251
|
+
deleteWhere(request: TagCriteria, options?: IThrowingRepoOptions): Promise<Tag[]>;
|
|
2252
2252
|
/** Retrieves all the existing Tag that satisfy the given criteria. */
|
|
2253
2253
|
tryReadMany(request: TagCriteria, options?: IRepoOptions): Promise<ListResult<Tag>>;
|
|
2254
2254
|
readMany(request: TagCriteria, options?: IThrowingRepoOptions): Promise<Tag[]>;
|
|
2255
|
-
/** Overwrites each existing Tag. */
|
|
2256
|
-
tryUpdateMany(request: Array<Tag>, options?: IRepoOptions): Promise<BatchResult<Tag>>;
|
|
2257
|
-
updateMany(request: Array<Tag>, options?: IThrowingRepoOptions): Promise<Tag[]>;
|
|
2258
2255
|
/** Performs the given operations on each existing Tag that satisfies the given criteria. */
|
|
2259
2256
|
tryPatchWhere(request: PatchSpecForMany<Tag, TagCriteria>, options?: IRepoOptions): Promise<BatchResult<Tag>>;
|
|
2260
2257
|
patchWhere(request: PatchSpecForMany<Tag, TagCriteria>, options?: IThrowingRepoOptions): Promise<Tag[]>;
|
|
2261
|
-
/**
|
|
2262
|
-
|
|
2263
|
-
|
|
2258
|
+
/** Saves each given input as a new Tag. */
|
|
2259
|
+
tryCreateMany(request: Array<Tag>, options?: IRepoOptions): Promise<BatchResult<Tag>>;
|
|
2260
|
+
createMany(request: Array<Tag>, options?: IThrowingRepoOptions): Promise<Tag[]>;
|
|
2261
|
+
/** Overwrites each existing Tag. */
|
|
2262
|
+
tryUpdateMany(request: Array<Tag>, options?: IRepoOptions): Promise<BatchResult<Tag>>;
|
|
2263
|
+
updateMany(request: Array<Tag>, options?: IThrowingRepoOptions): Promise<Tag[]>;
|
|
2264
|
+
/** Deletes the existing Tag. */
|
|
2265
|
+
tryDelete(request: IdSpecFor<Tag>, options?: IRepoOptions): Promise<SingleResult<Tag>>;
|
|
2266
|
+
delete(request: IdSpecFor<Tag>, options?: IThrowingRepoOptions): Promise<Tag>;
|
|
2264
2267
|
/** Retrieves the single, uniquely identified Tag. */
|
|
2265
2268
|
tryRead(request: IdSpecFor<Tag>, options?: IRepoOptions): Promise<SingleResult<Tag>>;
|
|
2266
2269
|
read(request: IdSpecFor<Tag>, options?: IThrowingRepoOptions): Promise<Tag>;
|
|
2267
|
-
/** Overwrites the existing Tag. */
|
|
2268
|
-
tryUpdate(request: Tag, options?: IRepoOptions): Promise<SingleResult<Tag>>;
|
|
2269
|
-
update(request: Tag, options?: IThrowingRepoOptions): Promise<Tag>;
|
|
2270
2270
|
/** Performs the given operations on the existing Tag. */
|
|
2271
2271
|
tryPatch(request: PatchSpecForOne<Tag>, options?: IRepoOptions): Promise<SingleResult<Tag>>;
|
|
2272
2272
|
patch(request: PatchSpecForOne<Tag>, options?: IThrowingRepoOptions): Promise<Tag>;
|
|
2273
|
-
/**
|
|
2274
|
-
|
|
2275
|
-
|
|
2273
|
+
/** Overwrites the existing Tag. */
|
|
2274
|
+
tryUpdate(request: Tag, options?: IRepoOptions): Promise<SingleResult<Tag>>;
|
|
2275
|
+
update(request: Tag, options?: IThrowingRepoOptions): Promise<Tag>;
|
|
2276
2276
|
/** Overwrites the given properties of the existing Tag. */
|
|
2277
2277
|
tryUpdatePartial(request: Tag, options?: IRepoOptions): Promise<SingleResult<PartialWithId<Tag>>>;
|
|
2278
2278
|
updatePartial(request: Tag, options?: IThrowingRepoOptions): Promise<PartialWithId<Tag>>;
|
|
2279
2279
|
/** Saves the input as a new Tag. */
|
|
2280
2280
|
tryCreate(request: Tag, options?: IRepoOptions): Promise<SingleResult<Tag>>;
|
|
2281
2281
|
create(request: Tag, options?: IThrowingRepoOptions): Promise<Tag>;
|
|
2282
|
-
/** Performs the given operation on each existing Tag that satisfies the given criteria. */
|
|
2283
|
-
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<Tag, TagCriteria>, options?: IRepoOptions): Promise<BatchResult<Tag>>;
|
|
2284
|
-
UpdatePartialWhere(request: UpdatePartialWhereRequest<Tag, TagCriteria>, options?: IThrowingRepoOptions): Promise<Tag[]>;
|
|
2285
2282
|
/** Overwrites the given properties for each existing Tag. */
|
|
2286
2283
|
tryUpdatePartialMany(request: Array<Tag>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<Tag>>>;
|
|
2287
2284
|
updatePartialMany(request: Array<Tag>, options?: IThrowingRepoOptions): Promise<PartialWithId<Tag>[]>;
|
|
2288
|
-
/**
|
|
2289
|
-
|
|
2290
|
-
|
|
2285
|
+
/** Performs the given operation on each existing Tag that satisfies the given criteria. */
|
|
2286
|
+
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<Tag, TagCriteria>, options?: IRepoOptions): Promise<BatchResult<Tag>>;
|
|
2287
|
+
UpdatePartialWhere(request: UpdatePartialWhereRequest<Tag, TagCriteria>, options?: IThrowingRepoOptions): Promise<Tag[]>;
|
|
2291
2288
|
/** 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). */
|
|
2292
2289
|
tryUpsert(request: Tag, options?: IRepoOptions): Promise<SingleResult<Tag>>;
|
|
2293
2290
|
upsert(request: Tag, options?: IThrowingRepoOptions): Promise<Tag>;
|
|
2294
|
-
|
|
2295
|
-
|
|
2296
|
-
|
|
2297
|
-
private core;
|
|
2298
|
-
constructor(core: ApiClientBase);
|
|
2299
|
-
/** Saves each given input as a new CodiacTenant. */
|
|
2300
|
-
tryCreateMany(request: Array<CodiacTenant>, options?: IRepoOptions): Promise<BatchResult<CodiacTenant>>;
|
|
2301
|
-
createMany(request: Array<CodiacTenant>, options?: IThrowingRepoOptions): Promise<CodiacTenant[]>;
|
|
2302
|
-
/** Retrieves all the existing CodiacTenant that satisfy the given criteria. */
|
|
2303
|
-
tryReadMany(request: CodiacTenantCriteria, options?: IRepoOptions): Promise<ListResult<CodiacTenant>>;
|
|
2304
|
-
readMany(request: CodiacTenantCriteria, options?: IThrowingRepoOptions): Promise<CodiacTenant[]>;
|
|
2305
|
-
/** Overwrites each existing CodiacTenant. */
|
|
2306
|
-
tryUpdateMany(request: Array<CodiacTenant>, options?: IRepoOptions): Promise<BatchResult<CodiacTenant>>;
|
|
2307
|
-
updateMany(request: Array<CodiacTenant>, options?: IThrowingRepoOptions): Promise<CodiacTenant[]>;
|
|
2308
|
-
/** Performs the given operations on each existing CodiacTenant that satisfies the given criteria. */
|
|
2309
|
-
tryPatchWhere(request: PatchSpecForMany<CodiacTenant, CodiacTenantCriteria>, options?: IRepoOptions): Promise<BatchResult<CodiacTenant>>;
|
|
2310
|
-
patchWhere(request: PatchSpecForMany<CodiacTenant, CodiacTenantCriteria>, options?: IThrowingRepoOptions): Promise<CodiacTenant[]>;
|
|
2311
|
-
/** Deletes each existing CodiacTenant that satisfies the given criteria. */
|
|
2312
|
-
tryDeleteWhere(request: CodiacTenantCriteria, options?: IRepoOptions): Promise<BatchResult<CodiacTenant>>;
|
|
2313
|
-
deleteWhere(request: CodiacTenantCriteria, options?: IThrowingRepoOptions): Promise<CodiacTenant[]>;
|
|
2314
|
-
/** Retrieves the single, uniquely identified CodiacTenant. */
|
|
2315
|
-
tryRead(request: IdSpecFor<CodiacTenant>, options?: IRepoOptions): Promise<SingleResult<CodiacTenant>>;
|
|
2316
|
-
read(request: IdSpecFor<CodiacTenant>, options?: IThrowingRepoOptions): Promise<CodiacTenant>;
|
|
2317
|
-
/** Overwrites the existing CodiacTenant. */
|
|
2318
|
-
tryUpdate(request: CodiacTenant, options?: IRepoOptions): Promise<SingleResult<CodiacTenant>>;
|
|
2319
|
-
update(request: CodiacTenant, options?: IThrowingRepoOptions): Promise<CodiacTenant>;
|
|
2320
|
-
/** Performs the given operations on the existing CodiacTenant. */
|
|
2321
|
-
tryPatch(request: PatchSpecForOne<CodiacTenant>, options?: IRepoOptions): Promise<SingleResult<CodiacTenant>>;
|
|
2322
|
-
patch(request: PatchSpecForOne<CodiacTenant>, options?: IThrowingRepoOptions): Promise<CodiacTenant>;
|
|
2323
|
-
/** Deletes the existing CodiacTenant. */
|
|
2324
|
-
tryDelete(request: IdSpecFor<CodiacTenant>, options?: IRepoOptions): Promise<SingleResult<CodiacTenant>>;
|
|
2325
|
-
delete(request: IdSpecFor<CodiacTenant>, options?: IThrowingRepoOptions): Promise<CodiacTenant>;
|
|
2326
|
-
/** Overwrites the given properties of the existing CodiacTenant. */
|
|
2327
|
-
tryUpdatePartial(request: CodiacTenant, options?: IRepoOptions): Promise<SingleResult<PartialWithId<CodiacTenant>>>;
|
|
2328
|
-
updatePartial(request: CodiacTenant, options?: IThrowingRepoOptions): Promise<PartialWithId<CodiacTenant>>;
|
|
2329
|
-
/** Saves the input as a new CodiacTenant. */
|
|
2330
|
-
tryCreate(request: CodiacTenant, options?: IRepoOptions): Promise<SingleResult<CodiacTenant>>;
|
|
2331
|
-
create(request: CodiacTenant, options?: IThrowingRepoOptions): Promise<CodiacTenant>;
|
|
2332
|
-
/** Performs the given operation on each existing CodiacTenant that satisfies the given criteria. */
|
|
2333
|
-
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<CodiacTenant, CodiacTenantCriteria>, options?: IRepoOptions): Promise<BatchResult<CodiacTenant>>;
|
|
2334
|
-
UpdatePartialWhere(request: UpdatePartialWhereRequest<CodiacTenant, CodiacTenantCriteria>, options?: IThrowingRepoOptions): Promise<CodiacTenant[]>;
|
|
2335
|
-
/** Overwrites the given properties for each existing CodiacTenant. */
|
|
2336
|
-
tryUpdatePartialMany(request: Array<CodiacTenant>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<CodiacTenant>>>;
|
|
2337
|
-
updatePartialMany(request: Array<CodiacTenant>, options?: IThrowingRepoOptions): Promise<PartialWithId<CodiacTenant>[]>;
|
|
2338
|
-
/** 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). */
|
|
2339
|
-
tryUpsertMany(request: Array<CodiacTenant>, options?: IRepoOptions): Promise<BatchResult<CodiacTenant>>;
|
|
2340
|
-
upsertMany(request: Array<CodiacTenant>, options?: IThrowingRepoOptions): Promise<CodiacTenant[]>;
|
|
2341
|
-
/** 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). */
|
|
2342
|
-
tryUpsert(request: CodiacTenant, options?: IRepoOptions): Promise<SingleResult<CodiacTenant>>;
|
|
2343
|
-
upsert(request: CodiacTenant, options?: IThrowingRepoOptions): Promise<CodiacTenant>;
|
|
2291
|
+
/** 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). */
|
|
2292
|
+
tryUpsertMany(request: Array<Tag>, options?: IRepoOptions): Promise<BatchResult<Tag>>;
|
|
2293
|
+
upsertMany(request: Array<Tag>, options?: IThrowingRepoOptions): Promise<Tag[]>;
|
|
2344
2294
|
}
|
|
2345
2295
|
import { VersionConfig, VersionConfigCriteria } from "../contracts";
|
|
2346
2296
|
declare class VersionConfigCruds {
|
|
2347
2297
|
private core;
|
|
2348
2298
|
constructor(core: ApiClientBase);
|
|
2349
|
-
/**
|
|
2350
|
-
|
|
2351
|
-
|
|
2299
|
+
/** Deletes each existing VersionConfig that satisfies the given criteria. */
|
|
2300
|
+
tryDeleteWhere(request: VersionConfigCriteria, options?: IRepoOptions): Promise<BatchResult<VersionConfig>>;
|
|
2301
|
+
deleteWhere(request: VersionConfigCriteria, options?: IThrowingRepoOptions): Promise<VersionConfig[]>;
|
|
2352
2302
|
/** Retrieves all the existing VersionConfig that satisfy the given criteria. */
|
|
2353
2303
|
tryReadMany(request: VersionConfigCriteria, options?: IRepoOptions): Promise<ListResult<VersionConfig>>;
|
|
2354
2304
|
readMany(request: VersionConfigCriteria, options?: IThrowingRepoOptions): Promise<VersionConfig[]>;
|
|
2355
|
-
/** Overwrites each existing VersionConfig. */
|
|
2356
|
-
tryUpdateMany(request: Array<VersionConfig>, options?: IRepoOptions): Promise<BatchResult<VersionConfig>>;
|
|
2357
|
-
updateMany(request: Array<VersionConfig>, options?: IThrowingRepoOptions): Promise<VersionConfig[]>;
|
|
2358
2305
|
/** Performs the given operations on each existing VersionConfig that satisfies the given criteria. */
|
|
2359
2306
|
tryPatchWhere(request: PatchSpecForMany<VersionConfig, VersionConfigCriteria>, options?: IRepoOptions): Promise<BatchResult<VersionConfig>>;
|
|
2360
2307
|
patchWhere(request: PatchSpecForMany<VersionConfig, VersionConfigCriteria>, options?: IThrowingRepoOptions): Promise<VersionConfig[]>;
|
|
2361
|
-
/**
|
|
2362
|
-
|
|
2363
|
-
|
|
2308
|
+
/** Saves each given input as a new VersionConfig. */
|
|
2309
|
+
tryCreateMany(request: Array<VersionConfig>, options?: IRepoOptions): Promise<BatchResult<VersionConfig>>;
|
|
2310
|
+
createMany(request: Array<VersionConfig>, options?: IThrowingRepoOptions): Promise<VersionConfig[]>;
|
|
2311
|
+
/** Overwrites each existing VersionConfig. */
|
|
2312
|
+
tryUpdateMany(request: Array<VersionConfig>, options?: IRepoOptions): Promise<BatchResult<VersionConfig>>;
|
|
2313
|
+
updateMany(request: Array<VersionConfig>, options?: IThrowingRepoOptions): Promise<VersionConfig[]>;
|
|
2314
|
+
/** Deletes the existing VersionConfig. */
|
|
2315
|
+
tryDelete(request: IdSpecFor<VersionConfig>, options?: IRepoOptions): Promise<SingleResult<VersionConfig>>;
|
|
2316
|
+
delete(request: IdSpecFor<VersionConfig>, options?: IThrowingRepoOptions): Promise<VersionConfig>;
|
|
2364
2317
|
/** Retrieves the single, uniquely identified VersionConfig. */
|
|
2365
2318
|
tryRead(request: IdSpecFor<VersionConfig>, options?: IRepoOptions): Promise<SingleResult<VersionConfig>>;
|
|
2366
2319
|
read(request: IdSpecFor<VersionConfig>, options?: IThrowingRepoOptions): Promise<VersionConfig>;
|
|
2367
|
-
/** Overwrites the existing VersionConfig. */
|
|
2368
|
-
tryUpdate(request: VersionConfig, options?: IRepoOptions): Promise<SingleResult<VersionConfig>>;
|
|
2369
|
-
update(request: VersionConfig, options?: IThrowingRepoOptions): Promise<VersionConfig>;
|
|
2370
2320
|
/** Performs the given operations on the existing VersionConfig. */
|
|
2371
2321
|
tryPatch(request: PatchSpecForOne<VersionConfig>, options?: IRepoOptions): Promise<SingleResult<VersionConfig>>;
|
|
2372
2322
|
patch(request: PatchSpecForOne<VersionConfig>, options?: IThrowingRepoOptions): Promise<VersionConfig>;
|
|
2373
|
-
/**
|
|
2374
|
-
|
|
2375
|
-
|
|
2323
|
+
/** Overwrites the existing VersionConfig. */
|
|
2324
|
+
tryUpdate(request: VersionConfig, options?: IRepoOptions): Promise<SingleResult<VersionConfig>>;
|
|
2325
|
+
update(request: VersionConfig, options?: IThrowingRepoOptions): Promise<VersionConfig>;
|
|
2376
2326
|
/** Overwrites the given properties of the existing VersionConfig. */
|
|
2377
2327
|
tryUpdatePartial(request: VersionConfig, options?: IRepoOptions): Promise<SingleResult<PartialWithId<VersionConfig>>>;
|
|
2378
2328
|
updatePartial(request: VersionConfig, options?: IThrowingRepoOptions): Promise<PartialWithId<VersionConfig>>;
|
|
2379
2329
|
/** Saves the input as a new VersionConfig. */
|
|
2380
2330
|
tryCreate(request: VersionConfig, options?: IRepoOptions): Promise<SingleResult<VersionConfig>>;
|
|
2381
2331
|
create(request: VersionConfig, options?: IThrowingRepoOptions): Promise<VersionConfig>;
|
|
2382
|
-
/** Performs the given operation on each existing VersionConfig that satisfies the given criteria. */
|
|
2383
|
-
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<VersionConfig, VersionConfigCriteria>, options?: IRepoOptions): Promise<BatchResult<VersionConfig>>;
|
|
2384
|
-
UpdatePartialWhere(request: UpdatePartialWhereRequest<VersionConfig, VersionConfigCriteria>, options?: IThrowingRepoOptions): Promise<VersionConfig[]>;
|
|
2385
2332
|
/** Overwrites the given properties for each existing VersionConfig. */
|
|
2386
2333
|
tryUpdatePartialMany(request: Array<VersionConfig>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<VersionConfig>>>;
|
|
2387
2334
|
updatePartialMany(request: Array<VersionConfig>, options?: IThrowingRepoOptions): Promise<PartialWithId<VersionConfig>[]>;
|
|
2388
|
-
/**
|
|
2389
|
-
|
|
2390
|
-
|
|
2335
|
+
/** Performs the given operation on each existing VersionConfig that satisfies the given criteria. */
|
|
2336
|
+
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<VersionConfig, VersionConfigCriteria>, options?: IRepoOptions): Promise<BatchResult<VersionConfig>>;
|
|
2337
|
+
UpdatePartialWhere(request: UpdatePartialWhereRequest<VersionConfig, VersionConfigCriteria>, options?: IThrowingRepoOptions): Promise<VersionConfig[]>;
|
|
2391
2338
|
/** 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). */
|
|
2392
2339
|
tryUpsert(request: VersionConfig, options?: IRepoOptions): Promise<SingleResult<VersionConfig>>;
|
|
2393
2340
|
upsert(request: VersionConfig, options?: IThrowingRepoOptions): Promise<VersionConfig>;
|
|
2341
|
+
/** 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). */
|
|
2342
|
+
tryUpsertMany(request: Array<VersionConfig>, options?: IRepoOptions): Promise<BatchResult<VersionConfig>>;
|
|
2343
|
+
upsertMany(request: Array<VersionConfig>, options?: IThrowingRepoOptions): Promise<VersionConfig[]>;
|
|
2344
|
+
}
|
|
2345
|
+
import { VersionCreateActivity, VersionCreateActivityCriteria } from "../contracts";
|
|
2346
|
+
declare class VersionCreateActivityCruds {
|
|
2347
|
+
private core;
|
|
2348
|
+
constructor(core: ApiClientBase);
|
|
2349
|
+
/** Deletes each existing VersionCreateActivity that satisfies the given criteria. */
|
|
2350
|
+
tryDeleteWhere(request: VersionCreateActivityCriteria, options?: IRepoOptions): Promise<BatchResult<VersionCreateActivity>>;
|
|
2351
|
+
deleteWhere(request: VersionCreateActivityCriteria, options?: IThrowingRepoOptions): Promise<VersionCreateActivity[]>;
|
|
2352
|
+
/** Retrieves all the existing VersionCreateActivity that satisfy the given criteria. */
|
|
2353
|
+
tryReadMany(request: VersionCreateActivityCriteria, options?: IRepoOptions): Promise<ListResult<VersionCreateActivity>>;
|
|
2354
|
+
readMany(request: VersionCreateActivityCriteria, options?: IThrowingRepoOptions): Promise<VersionCreateActivity[]>;
|
|
2355
|
+
/** Performs the given operations on each existing VersionCreateActivity that satisfies the given criteria. */
|
|
2356
|
+
tryPatchWhere(request: PatchSpecForMany<VersionCreateActivity, VersionCreateActivityCriteria>, options?: IRepoOptions): Promise<BatchResult<VersionCreateActivity>>;
|
|
2357
|
+
patchWhere(request: PatchSpecForMany<VersionCreateActivity, VersionCreateActivityCriteria>, options?: IThrowingRepoOptions): Promise<VersionCreateActivity[]>;
|
|
2358
|
+
/** Saves each given input as a new VersionCreateActivity. */
|
|
2359
|
+
tryCreateMany(request: Array<VersionCreateActivity>, options?: IRepoOptions): Promise<BatchResult<VersionCreateActivity>>;
|
|
2360
|
+
createMany(request: Array<VersionCreateActivity>, options?: IThrowingRepoOptions): Promise<VersionCreateActivity[]>;
|
|
2361
|
+
/** Overwrites each existing VersionCreateActivity. */
|
|
2362
|
+
tryUpdateMany(request: Array<VersionCreateActivity>, options?: IRepoOptions): Promise<BatchResult<VersionCreateActivity>>;
|
|
2363
|
+
updateMany(request: Array<VersionCreateActivity>, options?: IThrowingRepoOptions): Promise<VersionCreateActivity[]>;
|
|
2364
|
+
/** Deletes the existing VersionCreateActivity. */
|
|
2365
|
+
tryDelete(request: IdSpecFor<VersionCreateActivity>, options?: IRepoOptions): Promise<SingleResult<VersionCreateActivity>>;
|
|
2366
|
+
delete(request: IdSpecFor<VersionCreateActivity>, options?: IThrowingRepoOptions): Promise<VersionCreateActivity>;
|
|
2367
|
+
/** Retrieves the single, uniquely identified VersionCreateActivity. */
|
|
2368
|
+
tryRead(request: IdSpecFor<VersionCreateActivity>, options?: IRepoOptions): Promise<SingleResult<VersionCreateActivity>>;
|
|
2369
|
+
read(request: IdSpecFor<VersionCreateActivity>, options?: IThrowingRepoOptions): Promise<VersionCreateActivity>;
|
|
2370
|
+
/** Performs the given operations on the existing VersionCreateActivity. */
|
|
2371
|
+
tryPatch(request: PatchSpecForOne<VersionCreateActivity>, options?: IRepoOptions): Promise<SingleResult<VersionCreateActivity>>;
|
|
2372
|
+
patch(request: PatchSpecForOne<VersionCreateActivity>, options?: IThrowingRepoOptions): Promise<VersionCreateActivity>;
|
|
2373
|
+
/** Overwrites the existing VersionCreateActivity. */
|
|
2374
|
+
tryUpdate(request: VersionCreateActivity, options?: IRepoOptions): Promise<SingleResult<VersionCreateActivity>>;
|
|
2375
|
+
update(request: VersionCreateActivity, options?: IThrowingRepoOptions): Promise<VersionCreateActivity>;
|
|
2376
|
+
/** Overwrites the given properties of the existing VersionCreateActivity. */
|
|
2377
|
+
tryUpdatePartial(request: VersionCreateActivity, options?: IRepoOptions): Promise<SingleResult<PartialWithId<VersionCreateActivity>>>;
|
|
2378
|
+
updatePartial(request: VersionCreateActivity, options?: IThrowingRepoOptions): Promise<PartialWithId<VersionCreateActivity>>;
|
|
2379
|
+
/** Saves the input as a new VersionCreateActivity. */
|
|
2380
|
+
tryCreate(request: VersionCreateActivity, options?: IRepoOptions): Promise<SingleResult<VersionCreateActivity>>;
|
|
2381
|
+
create(request: VersionCreateActivity, options?: IThrowingRepoOptions): Promise<VersionCreateActivity>;
|
|
2382
|
+
/** Overwrites the given properties for each existing VersionCreateActivity. */
|
|
2383
|
+
tryUpdatePartialMany(request: Array<VersionCreateActivity>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<VersionCreateActivity>>>;
|
|
2384
|
+
updatePartialMany(request: Array<VersionCreateActivity>, options?: IThrowingRepoOptions): Promise<PartialWithId<VersionCreateActivity>[]>;
|
|
2385
|
+
/** Performs the given operation on each existing VersionCreateActivity that satisfies the given criteria. */
|
|
2386
|
+
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<VersionCreateActivity, VersionCreateActivityCriteria>, options?: IRepoOptions): Promise<BatchResult<VersionCreateActivity>>;
|
|
2387
|
+
UpdatePartialWhere(request: UpdatePartialWhereRequest<VersionCreateActivity, VersionCreateActivityCriteria>, options?: IThrowingRepoOptions): Promise<VersionCreateActivity[]>;
|
|
2388
|
+
/** 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). */
|
|
2389
|
+
tryUpsert(request: VersionCreateActivity, options?: IRepoOptions): Promise<SingleResult<VersionCreateActivity>>;
|
|
2390
|
+
upsert(request: VersionCreateActivity, options?: IThrowingRepoOptions): Promise<VersionCreateActivity>;
|
|
2391
|
+
/** 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). */
|
|
2392
|
+
tryUpsertMany(request: Array<VersionCreateActivity>, options?: IRepoOptions): Promise<BatchResult<VersionCreateActivity>>;
|
|
2393
|
+
upsertMany(request: Array<VersionCreateActivity>, options?: IThrowingRepoOptions): Promise<VersionCreateActivity[]>;
|
|
2394
2394
|
}
|
|
2395
2395
|
import { WorkFlowStrategy, WorkFlowStrategyCriteria } from "../contracts";
|
|
2396
2396
|
declare class WorkFlowStrategyCruds {
|
|
2397
2397
|
private core;
|
|
2398
2398
|
constructor(core: ApiClientBase);
|
|
2399
|
-
/**
|
|
2400
|
-
|
|
2401
|
-
|
|
2399
|
+
/** Deletes each existing WorkFlowStrategy that satisfies the given criteria. */
|
|
2400
|
+
tryDeleteWhere(request: WorkFlowStrategyCriteria, options?: IRepoOptions): Promise<BatchResult<WorkFlowStrategy>>;
|
|
2401
|
+
deleteWhere(request: WorkFlowStrategyCriteria, options?: IThrowingRepoOptions): Promise<WorkFlowStrategy[]>;
|
|
2402
2402
|
/** Retrieves all the existing WorkFlowStrategy that satisfy the given criteria. */
|
|
2403
2403
|
tryReadMany(request: WorkFlowStrategyCriteria, options?: IRepoOptions): Promise<ListResult<WorkFlowStrategy>>;
|
|
2404
2404
|
readMany(request: WorkFlowStrategyCriteria, options?: IThrowingRepoOptions): Promise<WorkFlowStrategy[]>;
|
|
2405
|
-
/** Overwrites each existing WorkFlowStrategy. */
|
|
2406
|
-
tryUpdateMany(request: Array<WorkFlowStrategy>, options?: IRepoOptions): Promise<BatchResult<WorkFlowStrategy>>;
|
|
2407
|
-
updateMany(request: Array<WorkFlowStrategy>, options?: IThrowingRepoOptions): Promise<WorkFlowStrategy[]>;
|
|
2408
2405
|
/** Performs the given operations on each existing WorkFlowStrategy that satisfies the given criteria. */
|
|
2409
2406
|
tryPatchWhere(request: PatchSpecForMany<WorkFlowStrategy, WorkFlowStrategyCriteria>, options?: IRepoOptions): Promise<BatchResult<WorkFlowStrategy>>;
|
|
2410
2407
|
patchWhere(request: PatchSpecForMany<WorkFlowStrategy, WorkFlowStrategyCriteria>, options?: IThrowingRepoOptions): Promise<WorkFlowStrategy[]>;
|
|
2411
|
-
/**
|
|
2412
|
-
|
|
2413
|
-
|
|
2408
|
+
/** Saves each given input as a new WorkFlowStrategy. */
|
|
2409
|
+
tryCreateMany(request: Array<WorkFlowStrategy>, options?: IRepoOptions): Promise<BatchResult<WorkFlowStrategy>>;
|
|
2410
|
+
createMany(request: Array<WorkFlowStrategy>, options?: IThrowingRepoOptions): Promise<WorkFlowStrategy[]>;
|
|
2411
|
+
/** Overwrites each existing WorkFlowStrategy. */
|
|
2412
|
+
tryUpdateMany(request: Array<WorkFlowStrategy>, options?: IRepoOptions): Promise<BatchResult<WorkFlowStrategy>>;
|
|
2413
|
+
updateMany(request: Array<WorkFlowStrategy>, options?: IThrowingRepoOptions): Promise<WorkFlowStrategy[]>;
|
|
2414
|
+
/** Deletes the existing WorkFlowStrategy. */
|
|
2415
|
+
tryDelete(request: IdSpecFor<WorkFlowStrategy>, options?: IRepoOptions): Promise<SingleResult<WorkFlowStrategy>>;
|
|
2416
|
+
delete(request: IdSpecFor<WorkFlowStrategy>, options?: IThrowingRepoOptions): Promise<WorkFlowStrategy>;
|
|
2414
2417
|
/** Retrieves the single, uniquely identified WorkFlowStrategy. */
|
|
2415
2418
|
tryRead(request: IdSpecFor<WorkFlowStrategy>, options?: IRepoOptions): Promise<SingleResult<WorkFlowStrategy>>;
|
|
2416
2419
|
read(request: IdSpecFor<WorkFlowStrategy>, options?: IThrowingRepoOptions): Promise<WorkFlowStrategy>;
|
|
2417
|
-
/** Overwrites the existing WorkFlowStrategy. */
|
|
2418
|
-
tryUpdate(request: WorkFlowStrategy, options?: IRepoOptions): Promise<SingleResult<WorkFlowStrategy>>;
|
|
2419
|
-
update(request: WorkFlowStrategy, options?: IThrowingRepoOptions): Promise<WorkFlowStrategy>;
|
|
2420
2420
|
/** Performs the given operations on the existing WorkFlowStrategy. */
|
|
2421
2421
|
tryPatch(request: PatchSpecForOne<WorkFlowStrategy>, options?: IRepoOptions): Promise<SingleResult<WorkFlowStrategy>>;
|
|
2422
2422
|
patch(request: PatchSpecForOne<WorkFlowStrategy>, options?: IThrowingRepoOptions): Promise<WorkFlowStrategy>;
|
|
2423
|
-
/**
|
|
2424
|
-
|
|
2425
|
-
|
|
2423
|
+
/** Overwrites the existing WorkFlowStrategy. */
|
|
2424
|
+
tryUpdate(request: WorkFlowStrategy, options?: IRepoOptions): Promise<SingleResult<WorkFlowStrategy>>;
|
|
2425
|
+
update(request: WorkFlowStrategy, options?: IThrowingRepoOptions): Promise<WorkFlowStrategy>;
|
|
2426
2426
|
/** Overwrites the given properties of the existing WorkFlowStrategy. */
|
|
2427
2427
|
tryUpdatePartial(request: WorkFlowStrategy, options?: IRepoOptions): Promise<SingleResult<PartialWithId<WorkFlowStrategy>>>;
|
|
2428
2428
|
updatePartial(request: WorkFlowStrategy, options?: IThrowingRepoOptions): Promise<PartialWithId<WorkFlowStrategy>>;
|
|
2429
2429
|
/** Saves the input as a new WorkFlowStrategy. */
|
|
2430
2430
|
tryCreate(request: WorkFlowStrategy, options?: IRepoOptions): Promise<SingleResult<WorkFlowStrategy>>;
|
|
2431
2431
|
create(request: WorkFlowStrategy, options?: IThrowingRepoOptions): Promise<WorkFlowStrategy>;
|
|
2432
|
-
/** Performs the given operation on each existing WorkFlowStrategy that satisfies the given criteria. */
|
|
2433
|
-
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<WorkFlowStrategy, WorkFlowStrategyCriteria>, options?: IRepoOptions): Promise<BatchResult<WorkFlowStrategy>>;
|
|
2434
|
-
UpdatePartialWhere(request: UpdatePartialWhereRequest<WorkFlowStrategy, WorkFlowStrategyCriteria>, options?: IThrowingRepoOptions): Promise<WorkFlowStrategy[]>;
|
|
2435
2432
|
/** Overwrites the given properties for each existing WorkFlowStrategy. */
|
|
2436
2433
|
tryUpdatePartialMany(request: Array<WorkFlowStrategy>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<WorkFlowStrategy>>>;
|
|
2437
2434
|
updatePartialMany(request: Array<WorkFlowStrategy>, options?: IThrowingRepoOptions): Promise<PartialWithId<WorkFlowStrategy>[]>;
|
|
2438
|
-
/**
|
|
2439
|
-
|
|
2440
|
-
|
|
2435
|
+
/** Performs the given operation on each existing WorkFlowStrategy that satisfies the given criteria. */
|
|
2436
|
+
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<WorkFlowStrategy, WorkFlowStrategyCriteria>, options?: IRepoOptions): Promise<BatchResult<WorkFlowStrategy>>;
|
|
2437
|
+
UpdatePartialWhere(request: UpdatePartialWhereRequest<WorkFlowStrategy, WorkFlowStrategyCriteria>, options?: IThrowingRepoOptions): Promise<WorkFlowStrategy[]>;
|
|
2441
2438
|
/** 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). */
|
|
2442
2439
|
tryUpsert(request: WorkFlowStrategy, options?: IRepoOptions): Promise<SingleResult<WorkFlowStrategy>>;
|
|
2443
2440
|
upsert(request: WorkFlowStrategy, options?: IThrowingRepoOptions): Promise<WorkFlowStrategy>;
|
|
2441
|
+
/** 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). */
|
|
2442
|
+
tryUpsertMany(request: Array<WorkFlowStrategy>, options?: IRepoOptions): Promise<BatchResult<WorkFlowStrategy>>;
|
|
2443
|
+
upsertMany(request: Array<WorkFlowStrategy>, options?: IThrowingRepoOptions): Promise<WorkFlowStrategy[]>;
|
|
2444
2444
|
}
|
|
2445
2445
|
import { ZombiePeriod, ZombiePeriodCriteria } from "../contracts";
|
|
2446
2446
|
declare class ZombiePeriodCruds {
|
|
2447
2447
|
private core;
|
|
2448
2448
|
constructor(core: ApiClientBase);
|
|
2449
|
-
/**
|
|
2450
|
-
|
|
2451
|
-
|
|
2449
|
+
/** Deletes each existing ZombiePeriod that satisfies the given criteria. */
|
|
2450
|
+
tryDeleteWhere(request: ZombiePeriodCriteria, options?: IRepoOptions): Promise<BatchResult<ZombiePeriod>>;
|
|
2451
|
+
deleteWhere(request: ZombiePeriodCriteria, options?: IThrowingRepoOptions): Promise<ZombiePeriod[]>;
|
|
2452
2452
|
/** Retrieves all the existing ZombiePeriod that satisfy the given criteria. */
|
|
2453
2453
|
tryReadMany(request: ZombiePeriodCriteria, options?: IRepoOptions): Promise<ListResult<ZombiePeriod>>;
|
|
2454
2454
|
readMany(request: ZombiePeriodCriteria, options?: IThrowingRepoOptions): Promise<ZombiePeriod[]>;
|
|
2455
|
-
/** Overwrites each existing ZombiePeriod. */
|
|
2456
|
-
tryUpdateMany(request: Array<ZombiePeriod>, options?: IRepoOptions): Promise<BatchResult<ZombiePeriod>>;
|
|
2457
|
-
updateMany(request: Array<ZombiePeriod>, options?: IThrowingRepoOptions): Promise<ZombiePeriod[]>;
|
|
2458
2455
|
/** Performs the given operations on each existing ZombiePeriod that satisfies the given criteria. */
|
|
2459
2456
|
tryPatchWhere(request: PatchSpecForMany<ZombiePeriod, ZombiePeriodCriteria>, options?: IRepoOptions): Promise<BatchResult<ZombiePeriod>>;
|
|
2460
2457
|
patchWhere(request: PatchSpecForMany<ZombiePeriod, ZombiePeriodCriteria>, options?: IThrowingRepoOptions): Promise<ZombiePeriod[]>;
|
|
2461
|
-
/**
|
|
2462
|
-
|
|
2463
|
-
|
|
2458
|
+
/** Saves each given input as a new ZombiePeriod. */
|
|
2459
|
+
tryCreateMany(request: Array<ZombiePeriod>, options?: IRepoOptions): Promise<BatchResult<ZombiePeriod>>;
|
|
2460
|
+
createMany(request: Array<ZombiePeriod>, options?: IThrowingRepoOptions): Promise<ZombiePeriod[]>;
|
|
2461
|
+
/** Overwrites each existing ZombiePeriod. */
|
|
2462
|
+
tryUpdateMany(request: Array<ZombiePeriod>, options?: IRepoOptions): Promise<BatchResult<ZombiePeriod>>;
|
|
2463
|
+
updateMany(request: Array<ZombiePeriod>, options?: IThrowingRepoOptions): Promise<ZombiePeriod[]>;
|
|
2464
|
+
/** Deletes the existing ZombiePeriod. */
|
|
2465
|
+
tryDelete(request: IdSpecFor<ZombiePeriod>, options?: IRepoOptions): Promise<SingleResult<ZombiePeriod>>;
|
|
2466
|
+
delete(request: IdSpecFor<ZombiePeriod>, options?: IThrowingRepoOptions): Promise<ZombiePeriod>;
|
|
2464
2467
|
/** Retrieves the single, uniquely identified ZombiePeriod. */
|
|
2465
2468
|
tryRead(request: IdSpecFor<ZombiePeriod>, options?: IRepoOptions): Promise<SingleResult<ZombiePeriod>>;
|
|
2466
2469
|
read(request: IdSpecFor<ZombiePeriod>, options?: IThrowingRepoOptions): Promise<ZombiePeriod>;
|
|
2467
|
-
/** Overwrites the existing ZombiePeriod. */
|
|
2468
|
-
tryUpdate(request: ZombiePeriod, options?: IRepoOptions): Promise<SingleResult<ZombiePeriod>>;
|
|
2469
|
-
update(request: ZombiePeriod, options?: IThrowingRepoOptions): Promise<ZombiePeriod>;
|
|
2470
2470
|
/** Performs the given operations on the existing ZombiePeriod. */
|
|
2471
2471
|
tryPatch(request: PatchSpecForOne<ZombiePeriod>, options?: IRepoOptions): Promise<SingleResult<ZombiePeriod>>;
|
|
2472
2472
|
patch(request: PatchSpecForOne<ZombiePeriod>, options?: IThrowingRepoOptions): Promise<ZombiePeriod>;
|
|
2473
|
-
/**
|
|
2474
|
-
|
|
2475
|
-
|
|
2473
|
+
/** Overwrites the existing ZombiePeriod. */
|
|
2474
|
+
tryUpdate(request: ZombiePeriod, options?: IRepoOptions): Promise<SingleResult<ZombiePeriod>>;
|
|
2475
|
+
update(request: ZombiePeriod, options?: IThrowingRepoOptions): Promise<ZombiePeriod>;
|
|
2476
2476
|
/** Overwrites the given properties of the existing ZombiePeriod. */
|
|
2477
2477
|
tryUpdatePartial(request: ZombiePeriod, options?: IRepoOptions): Promise<SingleResult<PartialWithId<ZombiePeriod>>>;
|
|
2478
2478
|
updatePartial(request: ZombiePeriod, options?: IThrowingRepoOptions): Promise<PartialWithId<ZombiePeriod>>;
|
|
2479
2479
|
/** Saves the input as a new ZombiePeriod. */
|
|
2480
2480
|
tryCreate(request: ZombiePeriod, options?: IRepoOptions): Promise<SingleResult<ZombiePeriod>>;
|
|
2481
2481
|
create(request: ZombiePeriod, options?: IThrowingRepoOptions): Promise<ZombiePeriod>;
|
|
2482
|
-
/** Performs the given operation on each existing ZombiePeriod that satisfies the given criteria. */
|
|
2483
|
-
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<ZombiePeriod, ZombiePeriodCriteria>, options?: IRepoOptions): Promise<BatchResult<ZombiePeriod>>;
|
|
2484
|
-
UpdatePartialWhere(request: UpdatePartialWhereRequest<ZombiePeriod, ZombiePeriodCriteria>, options?: IThrowingRepoOptions): Promise<ZombiePeriod[]>;
|
|
2485
2482
|
/** Overwrites the given properties for each existing ZombiePeriod. */
|
|
2486
2483
|
tryUpdatePartialMany(request: Array<ZombiePeriod>, options?: IRepoOptions): Promise<BatchResult<PartialWithId<ZombiePeriod>>>;
|
|
2487
2484
|
updatePartialMany(request: Array<ZombiePeriod>, options?: IThrowingRepoOptions): Promise<PartialWithId<ZombiePeriod>[]>;
|
|
2488
|
-
/**
|
|
2489
|
-
|
|
2490
|
-
|
|
2485
|
+
/** Performs the given operation on each existing ZombiePeriod that satisfies the given criteria. */
|
|
2486
|
+
tryUpdatePartialWhere(request: UpdatePartialWhereRequest<ZombiePeriod, ZombiePeriodCriteria>, options?: IRepoOptions): Promise<BatchResult<ZombiePeriod>>;
|
|
2487
|
+
UpdatePartialWhere(request: UpdatePartialWhereRequest<ZombiePeriod, ZombiePeriodCriteria>, options?: IThrowingRepoOptions): Promise<ZombiePeriod[]>;
|
|
2491
2488
|
/** 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). */
|
|
2492
2489
|
tryUpsert(request: ZombiePeriod, options?: IRepoOptions): Promise<SingleResult<ZombiePeriod>>;
|
|
2493
2490
|
upsert(request: ZombiePeriod, options?: IThrowingRepoOptions): Promise<ZombiePeriod>;
|
|
2491
|
+
/** 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). */
|
|
2492
|
+
tryUpsertMany(request: Array<ZombiePeriod>, options?: IRepoOptions): Promise<BatchResult<ZombiePeriod>>;
|
|
2493
|
+
upsertMany(request: Array<ZombiePeriod>, options?: IThrowingRepoOptions): Promise<ZombiePeriod[]>;
|
|
2494
2494
|
}
|
|
2495
|
-
import {
|
|
2495
|
+
import { ApiReadyState, Buffer, CabinetConfigState, CabinetConfigStateRequest, CabinetHostNameConfig, CabinetHostNameConfigCriteria, CabinetScopesCriteria, ClusterAttachRequest, ClusterDetachRequest, ConfigDef, ConfigDefCriteria, ConfigDoc, ConfigDocSpecForOne, EnterpriseScope, FileRequest, ReadyStateRequest, RootMap, RootMapCriteria, ScopedConfig, ScopedConfigCriteria, VersionGetsertRequest } from "../contracts";
|
|
2496
2496
|
declare class OtherOperations {
|
|
2497
2497
|
private core;
|
|
2498
2498
|
constructor(core: ApiClientBase);
|
|
2499
|
+
/** Includes the given cluster within the given environment. */
|
|
2500
|
+
EnvironmentClusterAttach(request: ClusterAttachRequest, options?: IRepoOptions): Promise<Result>;
|
|
2501
|
+
/** Removes the linkage between the given environment and the given cluster. */
|
|
2502
|
+
EnvironmentClusterDetach(request: ClusterDetachRequest, options?: IRepoOptions): Promise<Result>;
|
|
2499
2503
|
GetCabinetHostNameConfig(request: CabinetHostNameConfigCriteria, options?: IRepoOptions): Promise<ListResult<CabinetHostNameConfig>>;
|
|
2500
|
-
/** Retrieves the list of currently declared config files for the given enterprise asset. */
|
|
2501
|
-
getConfigDefs(request: ConfigDefCriteria, options?: IRepoOptions): Promise<ListResult<ConfigDef>>;
|
|
2502
|
-
getConfigDoc(request: ConfigDocSpecForOne, options?: IRepoOptions): Promise<ConfigDoc>;
|
|
2503
2504
|
/** Retrieves the enterprise configuration currently in play in a single given cabinet,
|
|
2504
2505
|
in terms of versions of the enterprise and its assets.
|
|
2505
2506
|
This is a composite/hybrid object made up of a Cabinet, EnterpriseVersionConfig and an EnterpriseRunState.
|
|
2506
2507
|
Compares versions of each asset between the version specified in the assigned enterprise version config
|
|
2507
2508
|
and the version that is actually physically running in the cabinet. */
|
|
2508
2509
|
getCabinetConfigState(request: CabinetConfigStateRequest, options?: IRepoOptions): Promise<CabinetConfigState>;
|
|
2509
|
-
|
|
2510
|
-
|
|
2511
|
-
|
|
2510
|
+
/** Retrieves all available enterprises, environments, cabinets, and clusters for the given tenant. */
|
|
2511
|
+
getCabinetScopes(request: CabinetScopesCriteria, options?: IRepoOptions): Promise<ListResult<EnterpriseScope>>;
|
|
2512
|
+
/** Retrieves the list of currently declared config files for the given enterprise asset. */
|
|
2513
|
+
getConfigDefs(request: ConfigDefCriteria, options?: IRepoOptions): Promise<ListResult<ConfigDef>>;
|
|
2514
|
+
getConfigDoc(request: ConfigDocSpecForOne, options?: IRepoOptions): Promise<ConfigDoc>;
|
|
2512
2515
|
/** All the enterprises, assets, cabinets, environments, and clusters for the current tenant. That is, retrieves a semi-detailed list of all the primary entities of a tenant's software organization. Originally designed for use in ingress routing. */
|
|
2513
2516
|
getRootMap(request: RootMapCriteria, options?: IRepoOptions): Promise<SingleResult<RootMap>>;
|
|
2514
2517
|
/** Assembles (via smashMerge) a single config doc for the given enterprise asset, scoped for the given cabinet. */
|
|
2515
2518
|
getScopedConfigs(request: ScopedConfigCriteria, options?: IRepoOptions): Promise<ScopedConfig>;
|
|
2516
|
-
/** Retrieves all available enterprises, environments, cabinets, and clusters for the given tenant. */
|
|
2517
|
-
getCabinetScopes(request: CabinetScopesCriteria, options?: IRepoOptions): Promise<ListResult<EnterpriseScope>>;
|
|
2518
2519
|
/** (generated operationId) */
|
|
2519
2520
|
getSwaggerUiPath(request: FileRequest, options?: IRepoOptions): Promise<Buffer>;
|
|
2520
2521
|
/** Assembles an enterprise version configuration by overlaying the given assets onto an optional existing enterprise version, and either creates a new version record for it or retrieves one if that configuration already exists. Assets are automatically placed within their respective products if applicable. */
|
|
2521
2522
|
getsertVersion(request: VersionGetsertRequest, options?: IRepoOptions): Promise<SingleResult<EnterpriseVersionConfig>>;
|
|
2523
|
+
readyState(request: ReadyStateRequest, options?: IRepoOptions): Promise<ApiReadyState>;
|
|
2524
|
+
/** File serve for the relay service. */
|
|
2525
|
+
relayResources(request: FileRequest, options?: IRepoOptions): Promise<Buffer>;
|
|
2522
2526
|
}
|
|
2523
2527
|
export {};
|