@sailpoint/api-client 2.2.8 → 2.2.10

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.
@@ -100,6 +100,36 @@ export declare const AccessItemRequesterDtoTypeEnum: {
100
100
  readonly Identity: "IDENTITY";
101
101
  };
102
102
  export type AccessItemRequesterDtoTypeEnum = typeof AccessItemRequesterDtoTypeEnum[keyof typeof AccessItemRequesterDtoTypeEnum];
103
+ /**
104
+ *
105
+ * @export
106
+ * @interface AccessRequestDynamicApprovalResponse
107
+ */
108
+ export interface AccessRequestDynamicApprovalResponse {
109
+ /**
110
+ * Unique identifier of the approver to add to the approval process. If there is none, send an empty value \"\".
111
+ * @type {string}
112
+ * @memberof AccessRequestDynamicApprovalResponse
113
+ */
114
+ 'id': string;
115
+ /**
116
+ * Type of approver to add to the approval process. If there is none, send an empty value \"\".
117
+ * @type {string}
118
+ * @memberof AccessRequestDynamicApprovalResponse
119
+ */
120
+ 'type': AccessRequestDynamicApprovalResponseTypeEnum;
121
+ /**
122
+ * Name of the approver to add to the approval process. If there is none, send an empty value \"\".
123
+ * @type {string}
124
+ * @memberof AccessRequestDynamicApprovalResponse
125
+ */
126
+ 'name': string;
127
+ }
128
+ export declare const AccessRequestDynamicApprovalResponseTypeEnum: {
129
+ readonly Identity: "IDENTITY";
130
+ readonly GovernanceGroup: "GOVERNANCE_GROUP";
131
+ };
132
+ export type AccessRequestDynamicApprovalResponseTypeEnum = typeof AccessRequestDynamicApprovalResponseTypeEnum[keyof typeof AccessRequestDynamicApprovalResponseTypeEnum];
103
133
  /**
104
134
  *
105
135
  * @export
@@ -610,6 +640,31 @@ export declare const AccessRequestPreApprovalRequestedItemsInnerOperationEnum: {
610
640
  readonly Remove: "Remove";
611
641
  };
612
642
  export type AccessRequestPreApprovalRequestedItemsInnerOperationEnum = typeof AccessRequestPreApprovalRequestedItemsInnerOperationEnum[keyof typeof AccessRequestPreApprovalRequestedItemsInnerOperationEnum];
643
+ /**
644
+ *
645
+ * @export
646
+ * @interface AccessRequestSubmittedResponse
647
+ */
648
+ export interface AccessRequestSubmittedResponse {
649
+ /**
650
+ * Approval or denial of the request by the subscribing service.
651
+ * @type {boolean}
652
+ * @memberof AccessRequestSubmittedResponse
653
+ */
654
+ 'approved': boolean;
655
+ /**
656
+ * Comment from the subscribing service approving or denying the request.
657
+ * @type {string}
658
+ * @memberof AccessRequestSubmittedResponse
659
+ */
660
+ 'comment': string;
661
+ /**
662
+ * Name of the subscribing service approving the request. This doesn\'t normally have to be the name of an existing identity in ISC, but it does if you have an active subscription to the [Access Request Decision trigger](https://developer.sailpoint.com/docs/extensibility/event-triggers/triggers/access-request-decision). If you don\'t provide the `username` of an existing identity in your tenant, your Access Request Decision subscriptions will never trigger.
663
+ * @type {string}
664
+ * @memberof AccessRequestSubmittedResponse
665
+ */
666
+ 'approver': string;
667
+ }
613
668
  /**
614
669
  *
615
670
  * @export
@@ -2558,6 +2613,116 @@ export interface EventBridgeConfig {
2558
2613
  */
2559
2614
  'awsRegion': string;
2560
2615
  }
2616
+ /**
2617
+ *
2618
+ * @export
2619
+ * @interface FormSubmitted
2620
+ */
2621
+ export interface FormSubmitted {
2622
+ /**
2623
+ * Date and time when the user submitted the form.
2624
+ * @type {string}
2625
+ * @memberof FormSubmitted
2626
+ */
2627
+ 'submittedAt': string;
2628
+ /**
2629
+ * ISC tenant\'s unique identifier.
2630
+ * @type {string}
2631
+ * @memberof FormSubmitted
2632
+ */
2633
+ 'tenantId': string;
2634
+ /**
2635
+ * Form instance\'s unique identifier.
2636
+ * @type {string}
2637
+ * @memberof FormSubmitted
2638
+ */
2639
+ 'formInstanceId': string;
2640
+ /**
2641
+ * Form definition\'s unique identifier.
2642
+ * @type {string}
2643
+ * @memberof FormSubmitted
2644
+ */
2645
+ 'formDefinitionId': string;
2646
+ /**
2647
+ * Form\'s name.
2648
+ * @type {string}
2649
+ * @memberof FormSubmitted
2650
+ */
2651
+ 'name': string;
2652
+ /**
2653
+ *
2654
+ * @type {FormSubmittedCreatedBy}
2655
+ * @memberof FormSubmitted
2656
+ */
2657
+ 'createdBy': FormSubmittedCreatedBy;
2658
+ /**
2659
+ *
2660
+ * @type {FormSubmittedSubmittedBy}
2661
+ * @memberof FormSubmitted
2662
+ */
2663
+ 'submittedBy': FormSubmittedSubmittedBy;
2664
+ /**
2665
+ * Data in the submitted form.
2666
+ * @type {{ [key: string]: any; }}
2667
+ * @memberof FormSubmitted
2668
+ */
2669
+ 'formData': {
2670
+ [key: string]: any;
2671
+ } | null;
2672
+ }
2673
+ /**
2674
+ * Origin of the form creation.
2675
+ * @export
2676
+ * @interface FormSubmittedCreatedBy
2677
+ */
2678
+ export interface FormSubmittedCreatedBy {
2679
+ /**
2680
+ * Form creation origin\'s type.
2681
+ * @type {string}
2682
+ * @memberof FormSubmittedCreatedBy
2683
+ */
2684
+ 'type': FormSubmittedCreatedByTypeEnum;
2685
+ /**
2686
+ * Unique identifier of the origin of the form creation.
2687
+ * @type {string}
2688
+ * @memberof FormSubmittedCreatedBy
2689
+ */
2690
+ 'id': string;
2691
+ }
2692
+ export declare const FormSubmittedCreatedByTypeEnum: {
2693
+ readonly WorkflowExecution: "WORKFLOW_EXECUTION";
2694
+ readonly Source: "SOURCE";
2695
+ };
2696
+ export type FormSubmittedCreatedByTypeEnum = typeof FormSubmittedCreatedByTypeEnum[keyof typeof FormSubmittedCreatedByTypeEnum];
2697
+ /**
2698
+ * Identity who submitted the form.
2699
+ * @export
2700
+ * @interface FormSubmittedSubmittedBy
2701
+ */
2702
+ export interface FormSubmittedSubmittedBy {
2703
+ /**
2704
+ * DTO type of the identity who submitted the form.
2705
+ * @type {string}
2706
+ * @memberof FormSubmittedSubmittedBy
2707
+ */
2708
+ 'type': FormSubmittedSubmittedByTypeEnum;
2709
+ /**
2710
+ * Unique identifier of the identity who submitted the form.
2711
+ * @type {string}
2712
+ * @memberof FormSubmittedSubmittedBy
2713
+ */
2714
+ 'id': string;
2715
+ /**
2716
+ * Name of the identity who submitted the form.
2717
+ * @type {string}
2718
+ * @memberof FormSubmittedSubmittedBy
2719
+ */
2720
+ 'name': string;
2721
+ }
2722
+ export declare const FormSubmittedSubmittedByTypeEnum: {
2723
+ readonly Identity: "IDENTITY";
2724
+ };
2725
+ export type FormSubmittedSubmittedByTypeEnum = typeof FormSubmittedSubmittedByTypeEnum[keyof typeof FormSubmittedSubmittedByTypeEnum];
2561
2726
  /**
2562
2727
  * Defines the HTTP Authentication type. Additional values may be added in the future. If *NO_AUTH* is selected, no extra information will be in HttpConfig. If *BASIC_AUTH* is selected, HttpConfig will include BasicAuthConfig with Username and Password as strings. If *BEARER_TOKEN* is selected, HttpConfig will include BearerTokenAuthConfig with Token as string.
2563
2728
  * @export
@@ -3637,6 +3802,64 @@ export interface MachineIdentityUserEntitlements {
3637
3802
  */
3638
3803
  'source': MachineIdentitySourceReference;
3639
3804
  }
3805
+ /**
3806
+ *
3807
+ * @export
3808
+ * @interface OutlierDetected
3809
+ */
3810
+ export interface OutlierDetected {
3811
+ /**
3812
+ *
3813
+ * @type {OutlierDetectedIdentity}
3814
+ * @memberof OutlierDetected
3815
+ */
3816
+ 'identity': OutlierDetectedIdentity;
3817
+ /**
3818
+ * Identity\'s outlier type.
3819
+ * @type {string}
3820
+ * @memberof OutlierDetected
3821
+ */
3822
+ 'outlierType': OutlierDetectedOutlierTypeEnum;
3823
+ /**
3824
+ * Dissimilarity score that determines whether the identity is an outlier, ranging from `0.0` to `1.0`. The higher the score, the more likely the identity is an outlier.
3825
+ * @type {number}
3826
+ * @memberof OutlierDetected
3827
+ */
3828
+ 'score': number;
3829
+ }
3830
+ export declare const OutlierDetectedOutlierTypeEnum: {
3831
+ readonly LowSimilarity: "LOW_SIMILARITY";
3832
+ };
3833
+ export type OutlierDetectedOutlierTypeEnum = typeof OutlierDetectedOutlierTypeEnum[keyof typeof OutlierDetectedOutlierTypeEnum];
3834
+ /**
3835
+ * Identity with unusual access, relative to its peers.
3836
+ * @export
3837
+ * @interface OutlierDetectedIdentity
3838
+ */
3839
+ export interface OutlierDetectedIdentity {
3840
+ /**
3841
+ * Identity\'s DTO type.
3842
+ * @type {string}
3843
+ * @memberof OutlierDetectedIdentity
3844
+ */
3845
+ 'type': OutlierDetectedIdentityTypeEnum;
3846
+ /**
3847
+ * Identity\'s unique ID.
3848
+ * @type {string}
3849
+ * @memberof OutlierDetectedIdentity
3850
+ */
3851
+ 'id': string;
3852
+ /**
3853
+ * Identity\'s name.
3854
+ * @type {string}
3855
+ * @memberof OutlierDetectedIdentity
3856
+ */
3857
+ 'name': string;
3858
+ }
3859
+ export declare const OutlierDetectedIdentityTypeEnum: {
3860
+ readonly Identity: "IDENTITY";
3861
+ };
3862
+ export type OutlierDetectedIdentityTypeEnum = typeof OutlierDetectedIdentityTypeEnum[keyof typeof OutlierDetectedIdentityTypeEnum];
3640
3863
  /**
3641
3864
  *
3642
3865
  * @export
@@ -3932,6 +4155,583 @@ export declare const ReviewerTypeEnum: {
3932
4155
  readonly GovernanceGroup: "GOVERNANCE_GROUP";
3933
4156
  };
3934
4157
  export type ReviewerTypeEnum = typeof ReviewerTypeEnum[keyof typeof ReviewerTypeEnum];
4158
+ /**
4159
+ * JSON body delivered for the **SODViolationClosed** webhook.
4160
+ * @export
4161
+ * @interface SODViolationClosedPayload
4162
+ */
4163
+ export interface SODViolationClosedPayload {
4164
+ /**
4165
+ * When the violation record was created.
4166
+ * @type {string}
4167
+ * @memberof SODViolationClosedPayload
4168
+ */
4169
+ 'created'?: string;
4170
+ /**
4171
+ * When the violation was last modified.
4172
+ * @type {string}
4173
+ * @memberof SODViolationClosedPayload
4174
+ */
4175
+ 'modified'?: string;
4176
+ /**
4177
+ * Violation ID.
4178
+ * @type {string}
4179
+ * @memberof SODViolationClosedPayload
4180
+ */
4181
+ 'id'?: string;
4182
+ /**
4183
+ * When the violation was last evaluated.
4184
+ * @type {string}
4185
+ * @memberof SODViolationClosedPayload
4186
+ */
4187
+ 'lastEvaluatedDate'?: string;
4188
+ /**
4189
+ * Violation severity level.
4190
+ * @type {string}
4191
+ * @memberof SODViolationClosedPayload
4192
+ */
4193
+ 'level'?: string;
4194
+ /**
4195
+ * Human-readable violation name.
4196
+ * @type {string}
4197
+ * @memberof SODViolationClosedPayload
4198
+ */
4199
+ 'name'?: string;
4200
+ /**
4201
+ *
4202
+ * @type {SODViolationClosedPayloadOwner}
4203
+ * @memberof SODViolationClosedPayload
4204
+ */
4205
+ 'owner'?: SODViolationClosedPayloadOwner;
4206
+ /**
4207
+ *
4208
+ * @type {SODViolationClosedPayloadPolicy}
4209
+ * @memberof SODViolationClosedPayload
4210
+ */
4211
+ 'policy'?: SODViolationClosedPayloadPolicy;
4212
+ /**
4213
+ * Violation status before closure (**Open** or **Mitigated**).
4214
+ * @type {string}
4215
+ * @memberof SODViolationClosedPayload
4216
+ */
4217
+ 'previousStatus'?: SODViolationClosedPayloadPreviousStatusEnum;
4218
+ /**
4219
+ * Violation status after the event (always **Closed** for this webhook).
4220
+ * @type {string}
4221
+ * @memberof SODViolationClosedPayload
4222
+ */
4223
+ 'currentStatus'?: SODViolationClosedPayloadCurrentStatusEnum;
4224
+ /**
4225
+ *
4226
+ * @type {SODViolationClosedPayloadTarget}
4227
+ * @memberof SODViolationClosedPayload
4228
+ */
4229
+ 'target'?: SODViolationClosedPayloadTarget;
4230
+ }
4231
+ export declare const SODViolationClosedPayloadPreviousStatusEnum: {
4232
+ readonly Open: "Open";
4233
+ readonly Mitigated: "Mitigated";
4234
+ };
4235
+ export type SODViolationClosedPayloadPreviousStatusEnum = typeof SODViolationClosedPayloadPreviousStatusEnum[keyof typeof SODViolationClosedPayloadPreviousStatusEnum];
4236
+ export declare const SODViolationClosedPayloadCurrentStatusEnum: {
4237
+ readonly Closed: "Closed";
4238
+ };
4239
+ export type SODViolationClosedPayloadCurrentStatusEnum = typeof SODViolationClosedPayloadCurrentStatusEnum[keyof typeof SODViolationClosedPayloadCurrentStatusEnum];
4240
+ /**
4241
+ * Owner of the violation (e.g. assigned identity).
4242
+ * @export
4243
+ * @interface SODViolationClosedPayloadOwner
4244
+ */
4245
+ export interface SODViolationClosedPayloadOwner {
4246
+ /**
4247
+ * Owner ID.
4248
+ * @type {string}
4249
+ * @memberof SODViolationClosedPayloadOwner
4250
+ */
4251
+ 'id'?: string;
4252
+ /**
4253
+ * Owner type.
4254
+ * @type {string}
4255
+ * @memberof SODViolationClosedPayloadOwner
4256
+ */
4257
+ 'type'?: SODViolationClosedPayloadOwnerTypeEnum;
4258
+ }
4259
+ export declare const SODViolationClosedPayloadOwnerTypeEnum: {
4260
+ readonly Identity: "IDENTITY";
4261
+ readonly GovernanceGroup: "GOVERNANCE_GROUP";
4262
+ };
4263
+ export type SODViolationClosedPayloadOwnerTypeEnum = typeof SODViolationClosedPayloadOwnerTypeEnum[keyof typeof SODViolationClosedPayloadOwnerTypeEnum];
4264
+ /**
4265
+ * SOD policy associated with the violation.
4266
+ * @export
4267
+ * @interface SODViolationClosedPayloadPolicy
4268
+ */
4269
+ export interface SODViolationClosedPayloadPolicy {
4270
+ /**
4271
+ * Policy ID.
4272
+ * @type {string}
4273
+ * @memberof SODViolationClosedPayloadPolicy
4274
+ */
4275
+ 'id'?: string;
4276
+ /**
4277
+ * Policy type (always **SOD** for this webhook).
4278
+ * @type {string}
4279
+ * @memberof SODViolationClosedPayloadPolicy
4280
+ */
4281
+ 'type'?: SODViolationClosedPayloadPolicyTypeEnum;
4282
+ }
4283
+ export declare const SODViolationClosedPayloadPolicyTypeEnum: {
4284
+ readonly Sod: "SOD";
4285
+ };
4286
+ export type SODViolationClosedPayloadPolicyTypeEnum = typeof SODViolationClosedPayloadPolicyTypeEnum[keyof typeof SODViolationClosedPayloadPolicyTypeEnum];
4287
+ /**
4288
+ * Identity or entity the violation applied to.
4289
+ * @export
4290
+ * @interface SODViolationClosedPayloadTarget
4291
+ */
4292
+ export interface SODViolationClosedPayloadTarget {
4293
+ /**
4294
+ * Target ID.
4295
+ * @type {string}
4296
+ * @memberof SODViolationClosedPayloadTarget
4297
+ */
4298
+ 'id'?: string;
4299
+ /**
4300
+ * Target type.
4301
+ * @type {string}
4302
+ * @memberof SODViolationClosedPayloadTarget
4303
+ */
4304
+ 'type'?: SODViolationClosedPayloadTargetTypeEnum;
4305
+ }
4306
+ export declare const SODViolationClosedPayloadTargetTypeEnum: {
4307
+ readonly Identity: "IDENTITY";
4308
+ };
4309
+ export type SODViolationClosedPayloadTargetTypeEnum = typeof SODViolationClosedPayloadTargetTypeEnum[keyof typeof SODViolationClosedPayloadTargetTypeEnum];
4310
+ /**
4311
+ * JSON body delivered for the **SODViolationCreated** webhook.
4312
+ * @export
4313
+ * @interface SODViolationCreatedPayload
4314
+ */
4315
+ export interface SODViolationCreatedPayload {
4316
+ /**
4317
+ * When the violation record was created.
4318
+ * @type {string}
4319
+ * @memberof SODViolationCreatedPayload
4320
+ */
4321
+ 'created'?: string;
4322
+ /**
4323
+ * Violation ID.
4324
+ * @type {string}
4325
+ * @memberof SODViolationCreatedPayload
4326
+ */
4327
+ 'id'?: string;
4328
+ /**
4329
+ * When the violation was last evaluated.
4330
+ * @type {string}
4331
+ * @memberof SODViolationCreatedPayload
4332
+ */
4333
+ 'lastEvaluatedDate'?: string;
4334
+ /**
4335
+ * Violation severity level.
4336
+ * @type {string}
4337
+ * @memberof SODViolationCreatedPayload
4338
+ */
4339
+ 'level'?: string;
4340
+ /**
4341
+ * Human-readable violation name.
4342
+ * @type {string}
4343
+ * @memberof SODViolationCreatedPayload
4344
+ */
4345
+ 'name'?: string;
4346
+ /**
4347
+ *
4348
+ * @type {SODViolationCreatedPayloadOwner}
4349
+ * @memberof SODViolationCreatedPayload
4350
+ */
4351
+ 'owner'?: SODViolationCreatedPayloadOwner;
4352
+ /**
4353
+ *
4354
+ * @type {SODViolationCreatedPayloadPolicy}
4355
+ * @memberof SODViolationCreatedPayload
4356
+ */
4357
+ 'policy'?: SODViolationCreatedPayloadPolicy;
4358
+ /**
4359
+ * Violation lifecycle status.
4360
+ * @type {string}
4361
+ * @memberof SODViolationCreatedPayload
4362
+ */
4363
+ 'status'?: string;
4364
+ /**
4365
+ *
4366
+ * @type {SODViolationCreatedPayloadTarget}
4367
+ * @memberof SODViolationCreatedPayload
4368
+ */
4369
+ 'target'?: SODViolationCreatedPayloadTarget;
4370
+ }
4371
+ /**
4372
+ * Owner of the violation (e.g. assigned identity).
4373
+ * @export
4374
+ * @interface SODViolationCreatedPayloadOwner
4375
+ */
4376
+ export interface SODViolationCreatedPayloadOwner {
4377
+ /**
4378
+ * Owner ID.
4379
+ * @type {string}
4380
+ * @memberof SODViolationCreatedPayloadOwner
4381
+ */
4382
+ 'id'?: string;
4383
+ /**
4384
+ * DTO type of the owner reference.
4385
+ * @type {string}
4386
+ * @memberof SODViolationCreatedPayloadOwner
4387
+ */
4388
+ 'type'?: SODViolationCreatedPayloadOwnerTypeEnum;
4389
+ }
4390
+ export declare const SODViolationCreatedPayloadOwnerTypeEnum: {
4391
+ readonly Identity: "IDENTITY";
4392
+ readonly GovernanceGroup: "GOVERNANCE_GROUP";
4393
+ };
4394
+ export type SODViolationCreatedPayloadOwnerTypeEnum = typeof SODViolationCreatedPayloadOwnerTypeEnum[keyof typeof SODViolationCreatedPayloadOwnerTypeEnum];
4395
+ /**
4396
+ * SOD policy associated with the violation.
4397
+ * @export
4398
+ * @interface SODViolationCreatedPayloadPolicy
4399
+ */
4400
+ export interface SODViolationCreatedPayloadPolicy {
4401
+ /**
4402
+ * Policy ID.
4403
+ * @type {string}
4404
+ * @memberof SODViolationCreatedPayloadPolicy
4405
+ */
4406
+ 'id'?: string;
4407
+ /**
4408
+ * Policy type (always **SOD** for this webhook).
4409
+ * @type {string}
4410
+ * @memberof SODViolationCreatedPayloadPolicy
4411
+ */
4412
+ 'type'?: SODViolationCreatedPayloadPolicyTypeEnum;
4413
+ }
4414
+ export declare const SODViolationCreatedPayloadPolicyTypeEnum: {
4415
+ readonly Sod: "SOD";
4416
+ };
4417
+ export type SODViolationCreatedPayloadPolicyTypeEnum = typeof SODViolationCreatedPayloadPolicyTypeEnum[keyof typeof SODViolationCreatedPayloadPolicyTypeEnum];
4418
+ /**
4419
+ * Identity or entity the violation applies to.
4420
+ * @export
4421
+ * @interface SODViolationCreatedPayloadTarget
4422
+ */
4423
+ export interface SODViolationCreatedPayloadTarget {
4424
+ /**
4425
+ * Target ID.
4426
+ * @type {string}
4427
+ * @memberof SODViolationCreatedPayloadTarget
4428
+ */
4429
+ 'id'?: string;
4430
+ /**
4431
+ * DTO type of the target reference.
4432
+ * @type {string}
4433
+ * @memberof SODViolationCreatedPayloadTarget
4434
+ */
4435
+ 'type'?: SODViolationCreatedPayloadTargetTypeEnum;
4436
+ }
4437
+ export declare const SODViolationCreatedPayloadTargetTypeEnum: {
4438
+ readonly Identity: "IDENTITY";
4439
+ };
4440
+ export type SODViolationCreatedPayloadTargetTypeEnum = typeof SODViolationCreatedPayloadTargetTypeEnum[keyof typeof SODViolationCreatedPayloadTargetTypeEnum];
4441
+ /**
4442
+ * JSON body delivered for the **SODViolationMitigated** webhook.
4443
+ * @export
4444
+ * @interface SODViolationMitigatedPayload
4445
+ */
4446
+ export interface SODViolationMitigatedPayload {
4447
+ /**
4448
+ * Controls applied to mitigate the violation. For now this lists the currently active application(s).
4449
+ * @type {Array<SODViolationMitigatedPayloadAppliedControlsInner>}
4450
+ * @memberof SODViolationMitigatedPayload
4451
+ */
4452
+ 'appliedControls'?: Array<SODViolationMitigatedPayloadAppliedControlsInner>;
4453
+ /**
4454
+ * When the violation record was created.
4455
+ * @type {string}
4456
+ * @memberof SODViolationMitigatedPayload
4457
+ */
4458
+ 'created'?: string;
4459
+ /**
4460
+ * Violation-level expiration (may be a sentinel when not set).
4461
+ * @type {string}
4462
+ * @memberof SODViolationMitigatedPayload
4463
+ */
4464
+ 'expiration'?: string;
4465
+ /**
4466
+ * Violation ID.
4467
+ * @type {string}
4468
+ * @memberof SODViolationMitigatedPayload
4469
+ */
4470
+ 'id'?: string;
4471
+ /**
4472
+ * When the violation was last evaluated.
4473
+ * @type {string}
4474
+ * @memberof SODViolationMitigatedPayload
4475
+ */
4476
+ 'lastEvaluatedDate'?: string;
4477
+ /**
4478
+ * Violation severity level.
4479
+ * @type {string}
4480
+ * @memberof SODViolationMitigatedPayload
4481
+ */
4482
+ 'level'?: string;
4483
+ /**
4484
+ * When the violation was last modified.
4485
+ * @type {string}
4486
+ * @memberof SODViolationMitigatedPayload
4487
+ */
4488
+ 'modified'?: string;
4489
+ /**
4490
+ * Human-readable violation name.
4491
+ * @type {string}
4492
+ * @memberof SODViolationMitigatedPayload
4493
+ */
4494
+ 'name'?: string;
4495
+ /**
4496
+ *
4497
+ * @type {SODViolationMitigatedPayloadOwner}
4498
+ * @memberof SODViolationMitigatedPayload
4499
+ */
4500
+ 'owner'?: SODViolationMitigatedPayloadOwner;
4501
+ /**
4502
+ *
4503
+ * @type {SODViolationCreatedPayloadPolicy}
4504
+ * @memberof SODViolationMitigatedPayload
4505
+ */
4506
+ 'policy'?: SODViolationCreatedPayloadPolicy;
4507
+ /**
4508
+ * Violation lifecycle status after mitigation.
4509
+ * @type {string}
4510
+ * @memberof SODViolationMitigatedPayload
4511
+ */
4512
+ 'status'?: string;
4513
+ /**
4514
+ *
4515
+ * @type {SODViolationCreatedPayloadTarget}
4516
+ * @memberof SODViolationMitigatedPayload
4517
+ */
4518
+ 'target'?: SODViolationCreatedPayloadTarget;
4519
+ }
4520
+ /**
4521
+ *
4522
+ * @export
4523
+ * @interface SODViolationMitigatedPayloadAppliedControlsInner
4524
+ */
4525
+ export interface SODViolationMitigatedPayloadAppliedControlsInner {
4526
+ /**
4527
+ * When the control was applied.
4528
+ * @type {string}
4529
+ * @memberof SODViolationMitigatedPayloadAppliedControlsInner
4530
+ */
4531
+ 'appliedDate'?: string;
4532
+ /**
4533
+ *
4534
+ * @type {SODViolationMitigatedPayloadAppliedControlsInnerApplier}
4535
+ * @memberof SODViolationMitigatedPayloadAppliedControlsInner
4536
+ */
4537
+ 'applier'?: SODViolationMitigatedPayloadAppliedControlsInnerApplier;
4538
+ /**
4539
+ * Optional comments from the applier.
4540
+ * @type {string}
4541
+ * @memberof SODViolationMitigatedPayloadAppliedControlsInner
4542
+ */
4543
+ 'comments'?: string | null;
4544
+ /**
4545
+ *
4546
+ * @type {SODViolationMitigatedPayloadAppliedControlsInnerControl}
4547
+ * @memberof SODViolationMitigatedPayloadAppliedControlsInner
4548
+ */
4549
+ 'control'?: SODViolationMitigatedPayloadAppliedControlsInnerControl;
4550
+ /**
4551
+ * When this application of the control expires.
4552
+ * @type {string}
4553
+ * @memberof SODViolationMitigatedPayloadAppliedControlsInner
4554
+ */
4555
+ 'expiration'?: string;
4556
+ /**
4557
+ * ID of the control application record.
4558
+ * @type {string}
4559
+ * @memberof SODViolationMitigatedPayloadAppliedControlsInner
4560
+ */
4561
+ 'id'?: string;
4562
+ /**
4563
+ *
4564
+ * @type {ViolationAppliedControlStatus}
4565
+ * @memberof SODViolationMitigatedPayloadAppliedControlsInner
4566
+ */
4567
+ 'status'?: ViolationAppliedControlStatus;
4568
+ /**
4569
+ * ID of the violation this application belongs to.
4570
+ * @type {string}
4571
+ * @memberof SODViolationMitigatedPayloadAppliedControlsInner
4572
+ */
4573
+ 'violation'?: string;
4574
+ /**
4575
+ * Optional workflow correlation ID.
4576
+ * @type {string}
4577
+ * @memberof SODViolationMitigatedPayloadAppliedControlsInner
4578
+ */
4579
+ 'workflowId'?: string | null;
4580
+ }
4581
+ /**
4582
+ * Identity that applied the control.
4583
+ * @export
4584
+ * @interface SODViolationMitigatedPayloadAppliedControlsInnerApplier
4585
+ */
4586
+ export interface SODViolationMitigatedPayloadAppliedControlsInnerApplier {
4587
+ /**
4588
+ * Applier ID.
4589
+ * @type {string}
4590
+ * @memberof SODViolationMitigatedPayloadAppliedControlsInnerApplier
4591
+ */
4592
+ 'id'?: string;
4593
+ /**
4594
+ * DTO type of the applier reference.
4595
+ * @type {string}
4596
+ * @memberof SODViolationMitigatedPayloadAppliedControlsInnerApplier
4597
+ */
4598
+ 'type'?: SODViolationMitigatedPayloadAppliedControlsInnerApplierTypeEnum;
4599
+ }
4600
+ export declare const SODViolationMitigatedPayloadAppliedControlsInnerApplierTypeEnum: {
4601
+ readonly Identity: "IDENTITY";
4602
+ };
4603
+ export type SODViolationMitigatedPayloadAppliedControlsInnerApplierTypeEnum = typeof SODViolationMitigatedPayloadAppliedControlsInnerApplierTypeEnum[keyof typeof SODViolationMitigatedPayloadAppliedControlsInnerApplierTypeEnum];
4604
+ /**
4605
+ * Reference to the compensating control definition.
4606
+ * @export
4607
+ * @interface SODViolationMitigatedPayloadAppliedControlsInnerControl
4608
+ */
4609
+ export interface SODViolationMitigatedPayloadAppliedControlsInnerControl {
4610
+ /**
4611
+ * Control ID.
4612
+ * @type {string}
4613
+ * @memberof SODViolationMitigatedPayloadAppliedControlsInnerControl
4614
+ */
4615
+ 'id'?: string;
4616
+ /**
4617
+ * Control type (always **COMPENSATING_CONTROL** for this webhook).
4618
+ * @type {string}
4619
+ * @memberof SODViolationMitigatedPayloadAppliedControlsInnerControl
4620
+ */
4621
+ 'type'?: SODViolationMitigatedPayloadAppliedControlsInnerControlTypeEnum;
4622
+ }
4623
+ export declare const SODViolationMitigatedPayloadAppliedControlsInnerControlTypeEnum: {
4624
+ readonly CompensatingControl: "COMPENSATING_CONTROL";
4625
+ };
4626
+ export type SODViolationMitigatedPayloadAppliedControlsInnerControlTypeEnum = typeof SODViolationMitigatedPayloadAppliedControlsInnerControlTypeEnum[keyof typeof SODViolationMitigatedPayloadAppliedControlsInnerControlTypeEnum];
4627
+ /**
4628
+ * Owner of the violation.
4629
+ * @export
4630
+ * @interface SODViolationMitigatedPayloadOwner
4631
+ */
4632
+ export interface SODViolationMitigatedPayloadOwner {
4633
+ /**
4634
+ * Owner ID.
4635
+ * @type {string}
4636
+ * @memberof SODViolationMitigatedPayloadOwner
4637
+ */
4638
+ 'id'?: string;
4639
+ /**
4640
+ * DTO type of the owner reference.
4641
+ * @type {string}
4642
+ * @memberof SODViolationMitigatedPayloadOwner
4643
+ */
4644
+ 'type'?: SODViolationMitigatedPayloadOwnerTypeEnum;
4645
+ }
4646
+ export declare const SODViolationMitigatedPayloadOwnerTypeEnum: {
4647
+ readonly Identity: "IDENTITY";
4648
+ readonly GovernanceGroup: "GOVERNANCE_GROUP";
4649
+ };
4650
+ export type SODViolationMitigatedPayloadOwnerTypeEnum = typeof SODViolationMitigatedPayloadOwnerTypeEnum[keyof typeof SODViolationMitigatedPayloadOwnerTypeEnum];
4651
+ /**
4652
+ * JSON body delivered for the **SODViolationReopened** webhook.
4653
+ * @export
4654
+ * @interface SODViolationReopenedPayload
4655
+ */
4656
+ export interface SODViolationReopenedPayload {
4657
+ /**
4658
+ * When the violation record was created.
4659
+ * @type {string}
4660
+ * @memberof SODViolationReopenedPayload
4661
+ */
4662
+ 'created'?: string;
4663
+ /**
4664
+ * When the violation was last modified.
4665
+ * @type {string}
4666
+ * @memberof SODViolationReopenedPayload
4667
+ */
4668
+ 'modified'?: string;
4669
+ /**
4670
+ * Violation ID.
4671
+ * @type {string}
4672
+ * @memberof SODViolationReopenedPayload
4673
+ */
4674
+ 'id'?: string;
4675
+ /**
4676
+ * When the violation was last evaluated.
4677
+ * @type {string}
4678
+ * @memberof SODViolationReopenedPayload
4679
+ */
4680
+ 'lastEvaluatedDate'?: string;
4681
+ /**
4682
+ * Violation severity level.
4683
+ * @type {string}
4684
+ * @memberof SODViolationReopenedPayload
4685
+ */
4686
+ 'level'?: string;
4687
+ /**
4688
+ * Human-readable violation name.
4689
+ * @type {string}
4690
+ * @memberof SODViolationReopenedPayload
4691
+ */
4692
+ 'name'?: string;
4693
+ /**
4694
+ *
4695
+ * @type {SODViolationCreatedPayloadOwner}
4696
+ * @memberof SODViolationReopenedPayload
4697
+ */
4698
+ 'owner'?: SODViolationCreatedPayloadOwner;
4699
+ /**
4700
+ *
4701
+ * @type {SODViolationCreatedPayloadPolicy}
4702
+ * @memberof SODViolationReopenedPayload
4703
+ */
4704
+ 'policy'?: SODViolationCreatedPayloadPolicy;
4705
+ /**
4706
+ * Violation status before the reopen.
4707
+ * @type {string}
4708
+ * @memberof SODViolationReopenedPayload
4709
+ */
4710
+ 'previousStatus'?: string;
4711
+ /**
4712
+ * Violation status after the reopen.
4713
+ * @type {string}
4714
+ * @memberof SODViolationReopenedPayload
4715
+ */
4716
+ 'currentStatus'?: string;
4717
+ /**
4718
+ *
4719
+ * @type {SODViolationCreatedPayloadTarget}
4720
+ * @memberof SODViolationReopenedPayload
4721
+ */
4722
+ 'target'?: SODViolationCreatedPayloadTarget;
4723
+ /**
4724
+ * Why the violation was reopened.
4725
+ * @type {string}
4726
+ * @memberof SODViolationReopenedPayload
4727
+ */
4728
+ 'reason'?: SODViolationReopenedPayloadReasonEnum;
4729
+ }
4730
+ export declare const SODViolationReopenedPayloadReasonEnum: {
4731
+ readonly ConflictingCriteriaUpdated: "Conflicting Criteria Updated";
4732
+ readonly AppliedControlExpired: "Applied Control Expired";
4733
+ };
4734
+ export type SODViolationReopenedPayloadReasonEnum = typeof SODViolationReopenedPayloadReasonEnum[keyof typeof SODViolationReopenedPayloadReasonEnum];
3935
4735
  /**
3936
4736
  *
3937
4737
  * @export
@@ -5023,6 +5823,19 @@ export interface ValidateFilterOutputDto {
5023
5823
  */
5024
5824
  'isPathExist'?: boolean;
5025
5825
  }
5826
+ /**
5827
+ * Lifecycle status of a compensating control application on a violation. **Pending** - not yet in effect; **Active** - currently mitigating the violation; **Completed** - finished successfully; **Canceled** - withdrawn before completion; **Failed** - could not be completed successfully.
5828
+ * @export
5829
+ * @enum {string}
5830
+ */
5831
+ export declare const ViolationAppliedControlStatus: {
5832
+ readonly Pending: "Pending";
5833
+ readonly Active: "Active";
5834
+ readonly Completed: "Completed";
5835
+ readonly Canceled: "Canceled";
5836
+ readonly Failed: "Failed";
5837
+ };
5838
+ export type ViolationAppliedControlStatus = typeof ViolationAppliedControlStatus[keyof typeof ViolationAppliedControlStatus];
5026
5839
  /**
5027
5840
  * TriggersApi - axios parameter creator
5028
5841
  * @export