sailpoint-api-client 1.4.16 → 1.5.0
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/beta/README.md +2 -2
- package/beta/api.ts +135 -71
- package/beta/common.ts +2 -2
- package/beta/package.json +1 -1
- package/dist/beta/api.d.ts +127 -65
- package/dist/beta/api.js +33 -26
- package/dist/beta/api.js.map +1 -1
- package/dist/beta/common.js +1 -1
- package/dist/beta/common.js.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.js +6 -3
- package/dist/index.js.map +1 -1
- package/dist/v2024/api.d.ts +4054 -1040
- package/dist/v2024/api.js +4959 -1781
- package/dist/v2024/api.js.map +1 -1
- package/dist/v2024/common.js +1 -1
- package/dist/v2024/common.js.map +1 -1
- package/dist/v2025/api.d.ts +84517 -0
- package/dist/v2025/api.js +81956 -0
- package/dist/v2025/api.js.map +1 -0
- package/dist/v2025/base.d.ts +66 -0
- package/dist/v2025/base.js +89 -0
- package/dist/v2025/base.js.map +1 -0
- package/dist/v2025/common.d.ts +65 -0
- package/dist/v2025/common.js +266 -0
- package/dist/v2025/common.js.map +1 -0
- package/dist/v2025/configuration.d.ts +91 -0
- package/dist/v2025/configuration.js +46 -0
- package/dist/v2025/configuration.js.map +1 -0
- package/dist/v2025/index.d.ts +13 -0
- package/dist/v2025/index.js +32 -0
- package/dist/v2025/index.js.map +1 -0
- package/dist/v3/api.d.ts +135 -40
- package/dist/v3/api.js +8 -4
- package/dist/v3/api.js.map +1 -1
- package/dist/v3/common.js +1 -1
- package/dist/v3/common.js.map +1 -1
- package/index.ts +3 -0
- package/package.json +1 -1
- package/v2024/README.md +2 -2
- package/v2024/api.ts +33494 -29148
- package/v2024/common.ts +2 -2
- package/v2024/package.json +1 -1
- package/v2025/.openapi-generator/FILES +12 -0
- package/v2025/.openapi-generator/VERSION +1 -0
- package/v2025/.openapi-generator-ignore +23 -0
- package/v2025/README.md +46 -0
- package/v2025/api.ts +124435 -0
- package/v2025/base.ts +86 -0
- package/v2025/common.ts +165 -0
- package/v2025/configuration.ts +110 -0
- package/v2025/git_push.sh +57 -0
- package/v2025/index.ts +18 -0
- package/v2025/package.json +34 -0
- package/v2025/tsconfig.json +21 -0
- package/v3/README.md +2 -2
- package/v3/api.ts +141 -44
- package/v3/common.ts +2 -2
- package/v3/package.json +1 -1
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Identity Security Cloud V2025 API
|
|
6
|
+
* Use these APIs to interact with the Identity Security Cloud platform to achieve repeatable, automated processes with greater scalability. We encourage you to join the SailPoint Developer Community forum at https://developer.sailpoint.com/discuss to connect with other developers using our APIs.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: v2025
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
16
|
+
if (k2 === undefined) k2 = k;
|
|
17
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
18
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
19
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
20
|
+
}
|
|
21
|
+
Object.defineProperty(o, k2, desc);
|
|
22
|
+
}) : (function(o, m, k, k2) {
|
|
23
|
+
if (k2 === undefined) k2 = k;
|
|
24
|
+
o[k2] = m[k];
|
|
25
|
+
}));
|
|
26
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
27
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
28
|
+
};
|
|
29
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30
|
+
__exportStar(require("./api"), exports);
|
|
31
|
+
__exportStar(require("../configuration"), exports);
|
|
32
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../v2025/index.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;;;;;;;;;;;;;;;AAGH,wCAAsB;AACtB,mDAAiC"}
|
package/dist/v3/api.d.ts
CHANGED
|
@@ -5041,7 +5041,7 @@ export interface CampaignFilterDetails {
|
|
|
5041
5041
|
'owner': string | null;
|
|
5042
5042
|
/**
|
|
5043
5043
|
* Mode/type of filter, either the INCLUSION or EXCLUSION type. The INCLUSION type includes the data in generated campaigns as per specified in the criteria, whereas the EXCLUSION type excludes the data in generated campaigns as per specified in criteria.
|
|
5044
|
-
* @type {
|
|
5044
|
+
* @type {string}
|
|
5045
5045
|
* @memberof CampaignFilterDetails
|
|
5046
5046
|
*/
|
|
5047
5047
|
'mode': CampaignFilterDetailsModeV3;
|
|
@@ -5077,10 +5077,10 @@ export interface CampaignFilterDetailsCriteriaListInner {
|
|
|
5077
5077
|
'type': CriteriaType;
|
|
5078
5078
|
/**
|
|
5079
5079
|
*
|
|
5080
|
-
* @type {Operation
|
|
5080
|
+
* @type {Operation}
|
|
5081
5081
|
* @memberof CampaignFilterDetailsCriteriaListInner
|
|
5082
5082
|
*/
|
|
5083
|
-
'operation'
|
|
5083
|
+
'operation'?: Operation | null;
|
|
5084
5084
|
/**
|
|
5085
5085
|
* Specified key from the type of criteria.
|
|
5086
5086
|
* @type {string}
|
|
@@ -5093,6 +5093,42 @@ export interface CampaignFilterDetailsCriteriaListInner {
|
|
|
5093
5093
|
* @memberof CampaignFilterDetailsCriteriaListInner
|
|
5094
5094
|
*/
|
|
5095
5095
|
'value': string | null;
|
|
5096
|
+
/**
|
|
5097
|
+
* If true, the filter will negate the result of the criteria.
|
|
5098
|
+
* @type {boolean}
|
|
5099
|
+
* @memberof CampaignFilterDetailsCriteriaListInner
|
|
5100
|
+
*/
|
|
5101
|
+
'negateResult'?: boolean;
|
|
5102
|
+
/**
|
|
5103
|
+
* If true, the filter will short circuit the evaluation of the criteria.
|
|
5104
|
+
* @type {boolean}
|
|
5105
|
+
* @memberof CampaignFilterDetailsCriteriaListInner
|
|
5106
|
+
*/
|
|
5107
|
+
'shortCircuit'?: boolean;
|
|
5108
|
+
/**
|
|
5109
|
+
* If true, the filter will record child matches for the criteria.
|
|
5110
|
+
* @type {boolean}
|
|
5111
|
+
* @memberof CampaignFilterDetailsCriteriaListInner
|
|
5112
|
+
*/
|
|
5113
|
+
'recordChildMatches'?: boolean;
|
|
5114
|
+
/**
|
|
5115
|
+
* The unique ID of the criteria.
|
|
5116
|
+
* @type {string}
|
|
5117
|
+
* @memberof CampaignFilterDetailsCriteriaListInner
|
|
5118
|
+
*/
|
|
5119
|
+
'id'?: string | null;
|
|
5120
|
+
/**
|
|
5121
|
+
* If this value is true, then matched items will not only be excluded from the campaign, they will also not have archived certification items created. Such items will not appear in the exclusion report.
|
|
5122
|
+
* @type {boolean}
|
|
5123
|
+
* @memberof CampaignFilterDetailsCriteriaListInner
|
|
5124
|
+
*/
|
|
5125
|
+
'suppressMatchedItems'?: boolean;
|
|
5126
|
+
/**
|
|
5127
|
+
* List of child criteria.
|
|
5128
|
+
* @type {Array<object>}
|
|
5129
|
+
* @memberof CampaignFilterDetailsCriteriaListInner
|
|
5130
|
+
*/
|
|
5131
|
+
'children'?: Array<object>;
|
|
5096
5132
|
}
|
|
5097
5133
|
/**
|
|
5098
5134
|
*
|
|
@@ -6025,6 +6061,12 @@ export interface CompletedApproval {
|
|
|
6025
6061
|
'clientMetadata'?: {
|
|
6026
6062
|
[key: string]: string;
|
|
6027
6063
|
};
|
|
6064
|
+
/**
|
|
6065
|
+
* The accounts selected by the user for the access to be provisioned on, in case they have multiple accounts on one or more sources.
|
|
6066
|
+
* @type {Array<RequestedAccountRef>}
|
|
6067
|
+
* @memberof CompletedApproval
|
|
6068
|
+
*/
|
|
6069
|
+
'requestedAccounts'?: Array<RequestedAccountRef> | null;
|
|
6028
6070
|
}
|
|
6029
6071
|
/**
|
|
6030
6072
|
* If the access request submitted event trigger is configured and this access request was intercepted by it, then this is the result of the trigger\'s decision to either approve or deny the request.
|
|
@@ -6874,6 +6916,7 @@ export declare const CriteriaType: {
|
|
|
6874
6916
|
readonly Account: "ACCOUNT";
|
|
6875
6917
|
readonly AggregatedEntitlement: "AGGREGATED_ENTITLEMENT";
|
|
6876
6918
|
readonly InvalidCertifiableEntity: "INVALID_CERTIFIABLE_ENTITY";
|
|
6919
|
+
readonly InvalidCertifiableBundle: "INVALID_CERTIFIABLE_BUNDLE";
|
|
6877
6920
|
};
|
|
6878
6921
|
export type CriteriaType = typeof CriteriaType[keyof typeof CriteriaType];
|
|
6879
6922
|
/**
|
|
@@ -8442,31 +8485,31 @@ export interface EventAttributes {
|
|
|
8442
8485
|
* @type {string}
|
|
8443
8486
|
* @memberof EventAttributes
|
|
8444
8487
|
*/
|
|
8445
|
-
'id': string;
|
|
8488
|
+
'id': string | null;
|
|
8446
8489
|
/**
|
|
8447
8490
|
* JSON path expression that will limit which events the trigger will fire on
|
|
8448
8491
|
* @type {string}
|
|
8449
8492
|
* @memberof EventAttributes
|
|
8450
8493
|
*/
|
|
8451
|
-
'filter.$'?: string;
|
|
8494
|
+
'filter.$'?: string | null;
|
|
8452
8495
|
/**
|
|
8453
8496
|
* Description of the event trigger
|
|
8454
8497
|
* @type {string}
|
|
8455
8498
|
* @memberof EventAttributes
|
|
8456
8499
|
*/
|
|
8457
|
-
'description'?: string;
|
|
8500
|
+
'description'?: string | null;
|
|
8458
8501
|
/**
|
|
8459
8502
|
* The attribute to filter on
|
|
8460
8503
|
* @type {string}
|
|
8461
8504
|
* @memberof EventAttributes
|
|
8462
8505
|
*/
|
|
8463
|
-
'attributeToFilter'?: string;
|
|
8506
|
+
'attributeToFilter'?: string | null;
|
|
8464
8507
|
/**
|
|
8465
8508
|
* Form definition\'s unique identifier.
|
|
8466
8509
|
* @type {string}
|
|
8467
8510
|
* @memberof EventAttributes
|
|
8468
8511
|
*/
|
|
8469
|
-
'formDefinitionId'?: string;
|
|
8512
|
+
'formDefinitionId'?: string | null;
|
|
8470
8513
|
}
|
|
8471
8514
|
/**
|
|
8472
8515
|
* Event
|
|
@@ -8969,25 +9012,25 @@ export interface ExternalAttributes {
|
|
|
8969
9012
|
* @type {string}
|
|
8970
9013
|
* @memberof ExternalAttributes
|
|
8971
9014
|
*/
|
|
8972
|
-
'name'?: string;
|
|
9015
|
+
'name'?: string | null;
|
|
8973
9016
|
/**
|
|
8974
|
-
*
|
|
9017
|
+
* Additional context about the external trigger
|
|
8975
9018
|
* @type {string}
|
|
8976
9019
|
* @memberof ExternalAttributes
|
|
8977
9020
|
*/
|
|
8978
|
-
'description'?: string;
|
|
9021
|
+
'description'?: string | null;
|
|
8979
9022
|
/**
|
|
8980
9023
|
* OAuth Client ID to authenticate with this trigger
|
|
8981
9024
|
* @type {string}
|
|
8982
9025
|
* @memberof ExternalAttributes
|
|
8983
9026
|
*/
|
|
8984
|
-
'clientId'?: string;
|
|
9027
|
+
'clientId'?: string | null;
|
|
8985
9028
|
/**
|
|
8986
9029
|
* URL to invoke this workflow
|
|
8987
9030
|
* @type {string}
|
|
8988
9031
|
* @memberof ExternalAttributes
|
|
8989
9032
|
*/
|
|
8990
|
-
'url'?: string;
|
|
9033
|
+
'url'?: string | null;
|
|
8991
9034
|
}
|
|
8992
9035
|
/**
|
|
8993
9036
|
*
|
|
@@ -11745,6 +11788,7 @@ export interface LifecyclestateDeleted {
|
|
|
11745
11788
|
}
|
|
11746
11789
|
export declare const LifecyclestateDeletedTypeV3: {
|
|
11747
11790
|
readonly LifecycleState: "LIFECYCLE_STATE";
|
|
11791
|
+
readonly TaskResult: "TASK_RESULT";
|
|
11748
11792
|
};
|
|
11749
11793
|
export type LifecyclestateDeletedTypeV3 = typeof LifecyclestateDeletedTypeV3[keyof typeof LifecyclestateDeletedTypeV3];
|
|
11750
11794
|
/**
|
|
@@ -15185,6 +15229,12 @@ export interface PendingApproval {
|
|
|
15185
15229
|
'clientMetadata'?: {
|
|
15186
15230
|
[key: string]: string;
|
|
15187
15231
|
} | null;
|
|
15232
|
+
/**
|
|
15233
|
+
* The accounts selected by the user for the access to be provisioned on, in case they have multiple accounts on one or more sources.
|
|
15234
|
+
* @type {Array<RequestedAccountRef>}
|
|
15235
|
+
* @memberof PendingApproval
|
|
15236
|
+
*/
|
|
15237
|
+
'requestedAccounts'?: Array<RequestedAccountRef> | null;
|
|
15188
15238
|
}
|
|
15189
15239
|
/**
|
|
15190
15240
|
* Enum represents action that is being processed on an approval.
|
|
@@ -16675,6 +16725,43 @@ export declare const RequestableObjectType: {
|
|
|
16675
16725
|
readonly Entitlement: "ENTITLEMENT";
|
|
16676
16726
|
};
|
|
16677
16727
|
export type RequestableObjectType = typeof RequestableObjectType[keyof typeof RequestableObjectType];
|
|
16728
|
+
/**
|
|
16729
|
+
*
|
|
16730
|
+
* @export
|
|
16731
|
+
* @interface RequestedAccountRef
|
|
16732
|
+
*/
|
|
16733
|
+
export interface RequestedAccountRef {
|
|
16734
|
+
/**
|
|
16735
|
+
* Display name of the account for the user
|
|
16736
|
+
* @type {string}
|
|
16737
|
+
* @memberof RequestedAccountRef
|
|
16738
|
+
*/
|
|
16739
|
+
'name'?: string;
|
|
16740
|
+
/**
|
|
16741
|
+
*
|
|
16742
|
+
* @type {DtoType}
|
|
16743
|
+
* @memberof RequestedAccountRef
|
|
16744
|
+
*/
|
|
16745
|
+
'type'?: DtoType;
|
|
16746
|
+
/**
|
|
16747
|
+
* The uuid for the account
|
|
16748
|
+
* @type {string}
|
|
16749
|
+
* @memberof RequestedAccountRef
|
|
16750
|
+
*/
|
|
16751
|
+
'accountUuid'?: string | null;
|
|
16752
|
+
/**
|
|
16753
|
+
* The native identity for the account
|
|
16754
|
+
* @type {string}
|
|
16755
|
+
* @memberof RequestedAccountRef
|
|
16756
|
+
*/
|
|
16757
|
+
'accountId'?: string | null;
|
|
16758
|
+
/**
|
|
16759
|
+
* Display name of the source for the account
|
|
16760
|
+
* @type {string}
|
|
16761
|
+
* @memberof RequestedAccountRef
|
|
16762
|
+
*/
|
|
16763
|
+
'sourceName'?: string;
|
|
16764
|
+
}
|
|
16678
16765
|
/**
|
|
16679
16766
|
*
|
|
16680
16767
|
* @export
|
|
@@ -16858,6 +16945,12 @@ export interface RequestedItemStatus {
|
|
|
16858
16945
|
'clientMetadata'?: {
|
|
16859
16946
|
[key: string]: string;
|
|
16860
16947
|
} | null;
|
|
16948
|
+
/**
|
|
16949
|
+
* The accounts selected by the user for the access to be provisioned on, in case they have multiple accounts on one or more sources.
|
|
16950
|
+
* @type {Array<RequestedAccountRef>}
|
|
16951
|
+
* @memberof RequestedItemStatus
|
|
16952
|
+
*/
|
|
16953
|
+
'requestedAccounts'?: Array<RequestedAccountRef> | null;
|
|
16861
16954
|
}
|
|
16862
16955
|
export declare const RequestedItemStatusTypeV3: {
|
|
16863
16956
|
readonly AccessProfile: "ACCESS_PROFILE";
|
|
@@ -19036,41 +19129,41 @@ export type ScheduleType = typeof ScheduleType[keyof typeof ScheduleType];
|
|
|
19036
19129
|
*/
|
|
19037
19130
|
export interface ScheduledAttributes {
|
|
19038
19131
|
/**
|
|
19039
|
-
*
|
|
19132
|
+
* Frequency of execution
|
|
19040
19133
|
* @type {string}
|
|
19041
19134
|
* @memberof ScheduledAttributes
|
|
19042
19135
|
*/
|
|
19043
|
-
'
|
|
19136
|
+
'frequency': ScheduledAttributesFrequencyV3 | null;
|
|
19044
19137
|
/**
|
|
19045
|
-
*
|
|
19138
|
+
* Time zone identifier
|
|
19046
19139
|
* @type {string}
|
|
19047
19140
|
* @memberof ScheduledAttributes
|
|
19048
19141
|
*/
|
|
19049
|
-
'
|
|
19142
|
+
'timeZone'?: string | null;
|
|
19050
19143
|
/**
|
|
19051
|
-
*
|
|
19144
|
+
* A valid CRON expression
|
|
19052
19145
|
* @type {string}
|
|
19053
19146
|
* @memberof ScheduledAttributes
|
|
19054
19147
|
*/
|
|
19055
|
-
'
|
|
19148
|
+
'cronString'?: string | null;
|
|
19056
19149
|
/**
|
|
19057
19150
|
* Scheduled days of the week for execution
|
|
19058
19151
|
* @type {Array<string>}
|
|
19059
19152
|
* @memberof ScheduledAttributes
|
|
19060
19153
|
*/
|
|
19061
|
-
'weeklyDays'?: Array<string
|
|
19154
|
+
'weeklyDays'?: Array<string> | null;
|
|
19062
19155
|
/**
|
|
19063
19156
|
* Scheduled execution times
|
|
19064
19157
|
* @type {Array<string>}
|
|
19065
19158
|
* @memberof ScheduledAttributes
|
|
19066
19159
|
*/
|
|
19067
|
-
'weeklyTimes'?: Array<string
|
|
19160
|
+
'weeklyTimes'?: Array<string> | null;
|
|
19068
19161
|
/**
|
|
19069
19162
|
* Scheduled execution times
|
|
19070
19163
|
* @type {Array<string>}
|
|
19071
19164
|
* @memberof ScheduledAttributes
|
|
19072
19165
|
*/
|
|
19073
|
-
'yearlyTimes'?: Array<string
|
|
19166
|
+
'yearlyTimes'?: Array<string> | null;
|
|
19074
19167
|
}
|
|
19075
19168
|
export declare const ScheduledAttributesFrequencyV3: {
|
|
19076
19169
|
readonly Daily: "daily";
|
|
@@ -19319,6 +19412,7 @@ export declare const SchemaFeaturesV3: {
|
|
|
19319
19412
|
readonly ArmUtilizationExtract: "ARM_UTILIZATION_EXTRACT";
|
|
19320
19413
|
readonly ArmChangelogExtract: "ARM_CHANGELOG_EXTRACT";
|
|
19321
19414
|
readonly UsesUuid: "USES_UUID";
|
|
19415
|
+
readonly ApplicationDiscovery: "APPLICATION_DISCOVERY";
|
|
19322
19416
|
};
|
|
19323
19417
|
export type SchemaFeaturesV3 = typeof SchemaFeaturesV3[keyof typeof SchemaFeaturesV3];
|
|
19324
19418
|
/**
|
|
@@ -20996,6 +21090,7 @@ export declare const SourceFeaturesV3: {
|
|
|
20996
21090
|
readonly ArmUtilizationExtract: "ARM_UTILIZATION_EXTRACT";
|
|
20997
21091
|
readonly ArmChangelogExtract: "ARM_CHANGELOG_EXTRACT";
|
|
20998
21092
|
readonly UsesUuid: "USES_UUID";
|
|
21093
|
+
readonly ApplicationDiscovery: "APPLICATION_DISCOVERY";
|
|
20999
21094
|
};
|
|
21000
21095
|
export type SourceFeaturesV3 = typeof SourceFeaturesV3[keyof typeof SourceFeaturesV3];
|
|
21001
21096
|
export declare const SourceStatusV3: {
|
|
@@ -23944,85 +24039,85 @@ export interface WorkflowTriggerAttributes {
|
|
|
23944
24039
|
* @type {string}
|
|
23945
24040
|
* @memberof WorkflowTriggerAttributes
|
|
23946
24041
|
*/
|
|
23947
|
-
'id': string;
|
|
24042
|
+
'id': string | null;
|
|
23948
24043
|
/**
|
|
23949
24044
|
* JSON path expression that will limit which events the trigger will fire on
|
|
23950
24045
|
* @type {string}
|
|
23951
24046
|
* @memberof WorkflowTriggerAttributes
|
|
23952
24047
|
*/
|
|
23953
|
-
'filter.$'?: string;
|
|
24048
|
+
'filter.$'?: string | null;
|
|
23954
24049
|
/**
|
|
23955
|
-
*
|
|
24050
|
+
* Additional context about the external trigger
|
|
23956
24051
|
* @type {string}
|
|
23957
24052
|
* @memberof WorkflowTriggerAttributes
|
|
23958
24053
|
*/
|
|
23959
|
-
'description'?: string;
|
|
24054
|
+
'description'?: string | null;
|
|
23960
24055
|
/**
|
|
23961
24056
|
* The attribute to filter on
|
|
23962
24057
|
* @type {string}
|
|
23963
24058
|
* @memberof WorkflowTriggerAttributes
|
|
23964
24059
|
*/
|
|
23965
|
-
'attributeToFilter'?: string;
|
|
24060
|
+
'attributeToFilter'?: string | null;
|
|
23966
24061
|
/**
|
|
23967
24062
|
* Form definition\'s unique identifier.
|
|
23968
24063
|
* @type {string}
|
|
23969
24064
|
* @memberof WorkflowTriggerAttributes
|
|
23970
24065
|
*/
|
|
23971
|
-
'formDefinitionId'?: string;
|
|
24066
|
+
'formDefinitionId'?: string | null;
|
|
23972
24067
|
/**
|
|
23973
24068
|
* A unique name for the external trigger
|
|
23974
24069
|
* @type {string}
|
|
23975
24070
|
* @memberof WorkflowTriggerAttributes
|
|
23976
24071
|
*/
|
|
23977
|
-
'name'?: string;
|
|
24072
|
+
'name'?: string | null;
|
|
23978
24073
|
/**
|
|
23979
24074
|
* OAuth Client ID to authenticate with this trigger
|
|
23980
24075
|
* @type {string}
|
|
23981
24076
|
* @memberof WorkflowTriggerAttributes
|
|
23982
24077
|
*/
|
|
23983
|
-
'clientId'?: string;
|
|
24078
|
+
'clientId'?: string | null;
|
|
23984
24079
|
/**
|
|
23985
24080
|
* URL to invoke this workflow
|
|
23986
24081
|
* @type {string}
|
|
23987
24082
|
* @memberof WorkflowTriggerAttributes
|
|
23988
24083
|
*/
|
|
23989
|
-
'url'?: string;
|
|
24084
|
+
'url'?: string | null;
|
|
23990
24085
|
/**
|
|
23991
|
-
*
|
|
24086
|
+
* Frequency of execution
|
|
23992
24087
|
* @type {string}
|
|
23993
24088
|
* @memberof WorkflowTriggerAttributes
|
|
23994
24089
|
*/
|
|
23995
|
-
'
|
|
24090
|
+
'frequency': WorkflowTriggerAttributesFrequencyV3 | null;
|
|
23996
24091
|
/**
|
|
23997
|
-
*
|
|
24092
|
+
* Time zone identifier
|
|
23998
24093
|
* @type {string}
|
|
23999
24094
|
* @memberof WorkflowTriggerAttributes
|
|
24000
24095
|
*/
|
|
24001
|
-
'
|
|
24096
|
+
'timeZone'?: string | null;
|
|
24002
24097
|
/**
|
|
24003
|
-
*
|
|
24098
|
+
* A valid CRON expression
|
|
24004
24099
|
* @type {string}
|
|
24005
24100
|
* @memberof WorkflowTriggerAttributes
|
|
24006
24101
|
*/
|
|
24007
|
-
'
|
|
24102
|
+
'cronString'?: string | null;
|
|
24008
24103
|
/**
|
|
24009
24104
|
* Scheduled days of the week for execution
|
|
24010
24105
|
* @type {Array<string>}
|
|
24011
24106
|
* @memberof WorkflowTriggerAttributes
|
|
24012
24107
|
*/
|
|
24013
|
-
'weeklyDays'?: Array<string
|
|
24108
|
+
'weeklyDays'?: Array<string> | null;
|
|
24014
24109
|
/**
|
|
24015
24110
|
* Scheduled execution times
|
|
24016
24111
|
* @type {Array<string>}
|
|
24017
24112
|
* @memberof WorkflowTriggerAttributes
|
|
24018
24113
|
*/
|
|
24019
|
-
'weeklyTimes'?: Array<string
|
|
24114
|
+
'weeklyTimes'?: Array<string> | null;
|
|
24020
24115
|
/**
|
|
24021
24116
|
* Scheduled execution times
|
|
24022
24117
|
* @type {Array<string>}
|
|
24023
24118
|
* @memberof WorkflowTriggerAttributes
|
|
24024
24119
|
*/
|
|
24025
|
-
'yearlyTimes'?: Array<string
|
|
24120
|
+
'yearlyTimes'?: Array<string> | null;
|
|
24026
24121
|
}
|
|
24027
24122
|
export declare const WorkflowTriggerAttributesFrequencyV3: {
|
|
24028
24123
|
readonly Daily: "daily";
|
package/dist/v3/api.js
CHANGED
|
@@ -567,7 +567,8 @@ exports.CriteriaType = {
|
|
|
567
567
|
Source: 'SOURCE',
|
|
568
568
|
Account: 'ACCOUNT',
|
|
569
569
|
AggregatedEntitlement: 'AGGREGATED_ENTITLEMENT',
|
|
570
|
-
InvalidCertifiableEntity: 'INVALID_CERTIFIABLE_ENTITY'
|
|
570
|
+
InvalidCertifiableEntity: 'INVALID_CERTIFIABLE_ENTITY',
|
|
571
|
+
InvalidCertifiableBundle: 'INVALID_CERTIFIABLE_BUNDLE'
|
|
571
572
|
};
|
|
572
573
|
exports.DateCompareOperatorV3 = {
|
|
573
574
|
Lt: 'LT',
|
|
@@ -800,7 +801,8 @@ exports.KbaAuthResponseStatusV3 = {
|
|
|
800
801
|
NotEnoughData: 'NOT_ENOUGH_DATA'
|
|
801
802
|
};
|
|
802
803
|
exports.LifecyclestateDeletedTypeV3 = {
|
|
803
|
-
LifecycleState: 'LIFECYCLE_STATE'
|
|
804
|
+
LifecycleState: 'LIFECYCLE_STATE',
|
|
805
|
+
TaskResult: 'TASK_RESULT'
|
|
804
806
|
};
|
|
805
807
|
/**
|
|
806
808
|
* An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.
|
|
@@ -1376,7 +1378,8 @@ exports.SchemaFeaturesV3 = {
|
|
|
1376
1378
|
ArmSecurityExtract: 'ARM_SECURITY_EXTRACT',
|
|
1377
1379
|
ArmUtilizationExtract: 'ARM_UTILIZATION_EXTRACT',
|
|
1378
1380
|
ArmChangelogExtract: 'ARM_CHANGELOG_EXTRACT',
|
|
1379
|
-
UsesUuid: 'USES_UUID'
|
|
1381
|
+
UsesUuid: 'USES_UUID',
|
|
1382
|
+
ApplicationDiscovery: 'APPLICATION_DISCOVERY'
|
|
1380
1383
|
};
|
|
1381
1384
|
/**
|
|
1382
1385
|
* Enum representing the currently supported filter aggregation types. Additional values may be added in the future without notice.
|
|
@@ -1491,7 +1494,8 @@ exports.SourceFeaturesV3 = {
|
|
|
1491
1494
|
ArmSecurityExtract: 'ARM_SECURITY_EXTRACT',
|
|
1492
1495
|
ArmUtilizationExtract: 'ARM_UTILIZATION_EXTRACT',
|
|
1493
1496
|
ArmChangelogExtract: 'ARM_CHANGELOG_EXTRACT',
|
|
1494
|
-
UsesUuid: 'USES_UUID'
|
|
1497
|
+
UsesUuid: 'USES_UUID',
|
|
1498
|
+
ApplicationDiscovery: 'APPLICATION_DISCOVERY'
|
|
1495
1499
|
};
|
|
1496
1500
|
exports.SourceStatusV3 = {
|
|
1497
1501
|
SourceStateErrorAccountFileImport: 'SOURCE_STATE_ERROR_ACCOUNT_FILE_IMPORT',
|