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
package/dist/beta/api.d.ts
CHANGED
|
@@ -7090,6 +7090,12 @@ export interface CompletedApprovalBeta {
|
|
|
7090
7090
|
'clientMetadata'?: {
|
|
7091
7091
|
[key: string]: string;
|
|
7092
7092
|
};
|
|
7093
|
+
/**
|
|
7094
|
+
* The accounts selected by the user for the access to be provisioned on, in case they have multiple accounts on one or more sources.
|
|
7095
|
+
* @type {Array<RequestedAccountRefBeta>}
|
|
7096
|
+
* @memberof CompletedApprovalBeta
|
|
7097
|
+
*/
|
|
7098
|
+
'requestedAccounts'?: Array<RequestedAccountRefBeta> | null;
|
|
7093
7099
|
}
|
|
7094
7100
|
/**
|
|
7095
7101
|
* 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.
|
|
@@ -7729,6 +7735,7 @@ export declare const ConnectorRuleCreateRequestBetaTypeBeta: {
|
|
|
7729
7735
|
readonly SuccessFactorsOperationProvisioning: "SuccessFactorsOperationProvisioning";
|
|
7730
7736
|
readonly WebServiceAfterOperationRule: "WebServiceAfterOperationRule";
|
|
7731
7737
|
readonly WebServiceBeforeOperationRule: "WebServiceBeforeOperationRule";
|
|
7738
|
+
readonly ResourceObjectCustomization: "ResourceObjectCustomization";
|
|
7732
7739
|
};
|
|
7733
7740
|
export type ConnectorRuleCreateRequestBetaTypeBeta = typeof ConnectorRuleCreateRequestBetaTypeBeta[keyof typeof ConnectorRuleCreateRequestBetaTypeBeta];
|
|
7734
7741
|
/**
|
|
@@ -7833,6 +7840,7 @@ export declare const ConnectorRuleResponseBetaTypeBeta: {
|
|
|
7833
7840
|
readonly SuccessFactorsOperationProvisioning: "SuccessFactorsOperationProvisioning";
|
|
7834
7841
|
readonly WebServiceAfterOperationRule: "WebServiceAfterOperationRule";
|
|
7835
7842
|
readonly WebServiceBeforeOperationRule: "WebServiceBeforeOperationRule";
|
|
7843
|
+
readonly ResourceObjectCustomization: "ResourceObjectCustomization";
|
|
7836
7844
|
};
|
|
7837
7845
|
export type ConnectorRuleResponseBetaTypeBeta = typeof ConnectorRuleResponseBetaTypeBeta[keyof typeof ConnectorRuleResponseBetaTypeBeta];
|
|
7838
7846
|
/**
|
|
@@ -7906,6 +7914,7 @@ export declare const ConnectorRuleUpdateRequestBetaTypeBeta: {
|
|
|
7906
7914
|
readonly SuccessFactorsOperationProvisioning: "SuccessFactorsOperationProvisioning";
|
|
7907
7915
|
readonly WebServiceAfterOperationRule: "WebServiceAfterOperationRule";
|
|
7908
7916
|
readonly WebServiceBeforeOperationRule: "WebServiceBeforeOperationRule";
|
|
7917
|
+
readonly ResourceObjectCustomization: "ResourceObjectCustomization";
|
|
7909
7918
|
};
|
|
7910
7919
|
export type ConnectorRuleUpdateRequestBetaTypeBeta = typeof ConnectorRuleUpdateRequestBetaTypeBeta[keyof typeof ConnectorRuleUpdateRequestBetaTypeBeta];
|
|
7911
7920
|
/**
|
|
@@ -9683,31 +9692,31 @@ export interface EventAttributesBeta {
|
|
|
9683
9692
|
* @type {string}
|
|
9684
9693
|
* @memberof EventAttributesBeta
|
|
9685
9694
|
*/
|
|
9686
|
-
'id': string;
|
|
9695
|
+
'id': string | null;
|
|
9687
9696
|
/**
|
|
9688
9697
|
* JSON path expression that will limit which events the trigger will fire on
|
|
9689
9698
|
* @type {string}
|
|
9690
9699
|
* @memberof EventAttributesBeta
|
|
9691
9700
|
*/
|
|
9692
|
-
'filter.$'?: string;
|
|
9701
|
+
'filter.$'?: string | null;
|
|
9693
9702
|
/**
|
|
9694
9703
|
* Description of the event trigger
|
|
9695
9704
|
* @type {string}
|
|
9696
9705
|
* @memberof EventAttributesBeta
|
|
9697
9706
|
*/
|
|
9698
|
-
'description'?: string;
|
|
9707
|
+
'description'?: string | null;
|
|
9699
9708
|
/**
|
|
9700
9709
|
* The attribute to filter on
|
|
9701
9710
|
* @type {string}
|
|
9702
9711
|
* @memberof EventAttributesBeta
|
|
9703
9712
|
*/
|
|
9704
|
-
'attributeToFilter'?: string;
|
|
9713
|
+
'attributeToFilter'?: string | null;
|
|
9705
9714
|
/**
|
|
9706
9715
|
* Form definition\'s unique identifier.
|
|
9707
9716
|
* @type {string}
|
|
9708
9717
|
* @memberof EventAttributesBeta
|
|
9709
9718
|
*/
|
|
9710
|
-
'formDefinitionId'?: string;
|
|
9719
|
+
'formDefinitionId'?: string | null;
|
|
9711
9720
|
}
|
|
9712
9721
|
/**
|
|
9713
9722
|
*
|
|
@@ -10082,25 +10091,25 @@ export interface ExternalAttributesBeta {
|
|
|
10082
10091
|
* @type {string}
|
|
10083
10092
|
* @memberof ExternalAttributesBeta
|
|
10084
10093
|
*/
|
|
10085
|
-
'name'?: string;
|
|
10094
|
+
'name'?: string | null;
|
|
10086
10095
|
/**
|
|
10087
10096
|
* Additional context about the external trigger
|
|
10088
10097
|
* @type {string}
|
|
10089
10098
|
* @memberof ExternalAttributesBeta
|
|
10090
10099
|
*/
|
|
10091
|
-
'description'?: string;
|
|
10100
|
+
'description'?: string | null;
|
|
10092
10101
|
/**
|
|
10093
10102
|
* OAuth Client ID to authenticate with this trigger
|
|
10094
10103
|
* @type {string}
|
|
10095
10104
|
* @memberof ExternalAttributesBeta
|
|
10096
10105
|
*/
|
|
10097
|
-
'clientId'?: string;
|
|
10106
|
+
'clientId'?: string | null;
|
|
10098
10107
|
/**
|
|
10099
10108
|
* URL to invoke this workflow
|
|
10100
10109
|
* @type {string}
|
|
10101
10110
|
* @memberof ExternalAttributesBeta
|
|
10102
10111
|
*/
|
|
10103
|
-
'url'?: string;
|
|
10112
|
+
'url'?: string | null;
|
|
10104
10113
|
}
|
|
10105
10114
|
/**
|
|
10106
10115
|
*
|
|
@@ -17162,6 +17171,7 @@ export declare const MultiHostSourcesBetaFeaturesBeta: {
|
|
|
17162
17171
|
readonly ArmUtilizationExtract: "ARM_UTILIZATION_EXTRACT";
|
|
17163
17172
|
readonly ArmChangelogExtract: "ARM_CHANGELOG_EXTRACT";
|
|
17164
17173
|
readonly UsesUuid: "USES_UUID";
|
|
17174
|
+
readonly ApplicationDiscovery: "APPLICATION_DISCOVERY";
|
|
17165
17175
|
};
|
|
17166
17176
|
export type MultiHostSourcesBetaFeaturesBeta = typeof MultiHostSourcesBetaFeaturesBeta[keyof typeof MultiHostSourcesBetaFeaturesBeta];
|
|
17167
17177
|
export declare const MultiHostSourcesBetaStatusBeta: {
|
|
@@ -19885,6 +19895,12 @@ export interface PendingApprovalBeta {
|
|
|
19885
19895
|
'clientMetadata'?: {
|
|
19886
19896
|
[key: string]: string;
|
|
19887
19897
|
} | null;
|
|
19898
|
+
/**
|
|
19899
|
+
* The accounts selected by the user for the access to be provisioned on, in case they have multiple accounts on one or more sources.
|
|
19900
|
+
* @type {Array<RequestedAccountRefBeta>}
|
|
19901
|
+
* @memberof PendingApprovalBeta
|
|
19902
|
+
*/
|
|
19903
|
+
'requestedAccounts'?: Array<RequestedAccountRefBeta> | null;
|
|
19888
19904
|
}
|
|
19889
19905
|
/**
|
|
19890
19906
|
* Simplified DTO for the Permission objects stored in SailPoint\'s database. The data is aggregated from customer systems and is free-form, so its appearance can vary largely between different clients/customers.
|
|
@@ -21552,6 +21568,43 @@ export declare const RequestableObjectTypeBeta: {
|
|
|
21552
21568
|
readonly Entitlement: "ENTITLEMENT";
|
|
21553
21569
|
};
|
|
21554
21570
|
export type RequestableObjectTypeBeta = typeof RequestableObjectTypeBeta[keyof typeof RequestableObjectTypeBeta];
|
|
21571
|
+
/**
|
|
21572
|
+
*
|
|
21573
|
+
* @export
|
|
21574
|
+
* @interface RequestedAccountRefBeta
|
|
21575
|
+
*/
|
|
21576
|
+
export interface RequestedAccountRefBeta {
|
|
21577
|
+
/**
|
|
21578
|
+
* Display name of the account for the user
|
|
21579
|
+
* @type {string}
|
|
21580
|
+
* @memberof RequestedAccountRefBeta
|
|
21581
|
+
*/
|
|
21582
|
+
'name'?: string;
|
|
21583
|
+
/**
|
|
21584
|
+
*
|
|
21585
|
+
* @type {DtoTypeBeta}
|
|
21586
|
+
* @memberof RequestedAccountRefBeta
|
|
21587
|
+
*/
|
|
21588
|
+
'type'?: DtoTypeBeta;
|
|
21589
|
+
/**
|
|
21590
|
+
* The uuid for the account
|
|
21591
|
+
* @type {string}
|
|
21592
|
+
* @memberof RequestedAccountRefBeta
|
|
21593
|
+
*/
|
|
21594
|
+
'accountUuid'?: string | null;
|
|
21595
|
+
/**
|
|
21596
|
+
* The native identity for the account
|
|
21597
|
+
* @type {string}
|
|
21598
|
+
* @memberof RequestedAccountRefBeta
|
|
21599
|
+
*/
|
|
21600
|
+
'accountId'?: string | null;
|
|
21601
|
+
/**
|
|
21602
|
+
* Display name of the source for the account
|
|
21603
|
+
* @type {string}
|
|
21604
|
+
* @memberof RequestedAccountRefBeta
|
|
21605
|
+
*/
|
|
21606
|
+
'sourceName'?: string;
|
|
21607
|
+
}
|
|
21555
21608
|
/**
|
|
21556
21609
|
*
|
|
21557
21610
|
* @export
|
|
@@ -21735,6 +21788,12 @@ export interface RequestedItemStatusBeta {
|
|
|
21735
21788
|
'clientMetadata'?: {
|
|
21736
21789
|
[key: string]: string;
|
|
21737
21790
|
} | null;
|
|
21791
|
+
/**
|
|
21792
|
+
* The accounts selected by the user for the access to be provisioned on, in case they have multiple accounts on one or more sources.
|
|
21793
|
+
* @type {Array<RequestedAccountRefBeta>}
|
|
21794
|
+
* @memberof RequestedItemStatusBeta
|
|
21795
|
+
*/
|
|
21796
|
+
'requestedAccounts'?: Array<RequestedAccountRefBeta> | null;
|
|
21738
21797
|
}
|
|
21739
21798
|
export declare const RequestedItemStatusBetaTypeBeta: {
|
|
21740
21799
|
readonly AccessProfile: "ACCESS_PROFILE";
|
|
@@ -24443,37 +24502,37 @@ export interface ScheduledAttributesBeta {
|
|
|
24443
24502
|
* @type {string}
|
|
24444
24503
|
* @memberof ScheduledAttributesBeta
|
|
24445
24504
|
*/
|
|
24446
|
-
'frequency': ScheduledAttributesBetaFrequencyBeta;
|
|
24505
|
+
'frequency': ScheduledAttributesBetaFrequencyBeta | null;
|
|
24447
24506
|
/**
|
|
24448
24507
|
* Time zone identifier
|
|
24449
24508
|
* @type {string}
|
|
24450
24509
|
* @memberof ScheduledAttributesBeta
|
|
24451
24510
|
*/
|
|
24452
|
-
'timeZone'?: string;
|
|
24511
|
+
'timeZone'?: string | null;
|
|
24453
24512
|
/**
|
|
24454
24513
|
* A valid CRON expression
|
|
24455
24514
|
* @type {string}
|
|
24456
24515
|
* @memberof ScheduledAttributesBeta
|
|
24457
24516
|
*/
|
|
24458
|
-
'cronString'?: string;
|
|
24517
|
+
'cronString'?: string | null;
|
|
24459
24518
|
/**
|
|
24460
24519
|
* Scheduled days of the week for execution
|
|
24461
24520
|
* @type {Array<string>}
|
|
24462
24521
|
* @memberof ScheduledAttributesBeta
|
|
24463
24522
|
*/
|
|
24464
|
-
'weeklyDays'?: Array<string
|
|
24523
|
+
'weeklyDays'?: Array<string> | null;
|
|
24465
24524
|
/**
|
|
24466
24525
|
* Scheduled execution times
|
|
24467
24526
|
* @type {Array<string>}
|
|
24468
24527
|
* @memberof ScheduledAttributesBeta
|
|
24469
24528
|
*/
|
|
24470
|
-
'weeklyTimes'?: Array<string
|
|
24529
|
+
'weeklyTimes'?: Array<string> | null;
|
|
24471
24530
|
/**
|
|
24472
24531
|
* Scheduled execution times
|
|
24473
24532
|
* @type {Array<string>}
|
|
24474
24533
|
* @memberof ScheduledAttributesBeta
|
|
24475
24534
|
*/
|
|
24476
|
-
'yearlyTimes'?: Array<string
|
|
24535
|
+
'yearlyTimes'?: Array<string> | null;
|
|
24477
24536
|
}
|
|
24478
24537
|
export declare const ScheduledAttributesBetaFrequencyBeta: {
|
|
24479
24538
|
readonly Daily: "daily";
|
|
@@ -24594,6 +24653,7 @@ export declare const SchemaBetaFeaturesBeta: {
|
|
|
24594
24653
|
readonly ArmUtilizationExtract: "ARM_UTILIZATION_EXTRACT";
|
|
24595
24654
|
readonly ArmChangelogExtract: "ARM_CHANGELOG_EXTRACT";
|
|
24596
24655
|
readonly UsesUuid: "USES_UUID";
|
|
24656
|
+
readonly ApplicationDiscovery: "APPLICATION_DISCOVERY";
|
|
24597
24657
|
};
|
|
24598
24658
|
export type SchemaBetaFeaturesBeta = typeof SchemaBetaFeaturesBeta[keyof typeof SchemaBetaFeaturesBeta];
|
|
24599
24659
|
/**
|
|
@@ -27056,6 +27116,7 @@ export declare const SourceBetaFeaturesBeta: {
|
|
|
27056
27116
|
readonly ArmUtilizationExtract: "ARM_UTILIZATION_EXTRACT";
|
|
27057
27117
|
readonly ArmChangelogExtract: "ARM_CHANGELOG_EXTRACT";
|
|
27058
27118
|
readonly UsesUuid: "USES_UUID";
|
|
27119
|
+
readonly ApplicationDiscovery: "APPLICATION_DISCOVERY";
|
|
27059
27120
|
};
|
|
27060
27121
|
export type SourceBetaFeaturesBeta = typeof SourceBetaFeaturesBeta[keyof typeof SourceBetaFeaturesBeta];
|
|
27061
27122
|
export declare const SourceBetaStatusBeta: {
|
|
@@ -27826,49 +27887,49 @@ export interface SpConfigMessageBeta {
|
|
|
27826
27887
|
};
|
|
27827
27888
|
}
|
|
27828
27889
|
/**
|
|
27829
|
-
* Response model for
|
|
27890
|
+
* Response model for object configuration.
|
|
27830
27891
|
* @export
|
|
27831
27892
|
* @interface SpConfigObjectBeta
|
|
27832
27893
|
*/
|
|
27833
27894
|
export interface SpConfigObjectBeta {
|
|
27834
27895
|
/**
|
|
27835
|
-
*
|
|
27896
|
+
* Object type the configuration is for.
|
|
27836
27897
|
* @type {string}
|
|
27837
27898
|
* @memberof SpConfigObjectBeta
|
|
27838
27899
|
*/
|
|
27839
27900
|
'objectType'?: string;
|
|
27840
27901
|
/**
|
|
27841
|
-
* List of
|
|
27902
|
+
* List of JSON paths within an exported object of this type, representing references that must be resolved.
|
|
27842
27903
|
* @type {Array<string>}
|
|
27843
27904
|
* @memberof SpConfigObjectBeta
|
|
27844
27905
|
*/
|
|
27845
27906
|
'referenceExtractors'?: Array<string> | null;
|
|
27846
27907
|
/**
|
|
27847
|
-
*
|
|
27908
|
+
* Indicates whether this type of object will be JWS signed and cannot be modified before import.
|
|
27848
27909
|
* @type {boolean}
|
|
27849
27910
|
* @memberof SpConfigObjectBeta
|
|
27850
27911
|
*/
|
|
27851
27912
|
'signatureRequired'?: boolean;
|
|
27852
27913
|
/**
|
|
27853
|
-
*
|
|
27914
|
+
* Indicates whether this object type must be always be resolved by ID.
|
|
27854
27915
|
* @type {boolean}
|
|
27855
27916
|
* @memberof SpConfigObjectBeta
|
|
27856
27917
|
*/
|
|
27857
27918
|
'alwaysResolveById'?: boolean;
|
|
27858
27919
|
/**
|
|
27859
|
-
*
|
|
27920
|
+
* Indicates whether this is a legacy object.
|
|
27860
27921
|
* @type {boolean}
|
|
27861
27922
|
* @memberof SpConfigObjectBeta
|
|
27862
27923
|
*/
|
|
27863
27924
|
'legacyObject'?: boolean;
|
|
27864
27925
|
/**
|
|
27865
|
-
*
|
|
27926
|
+
* Indicates whether there is only one object of this type.
|
|
27866
27927
|
* @type {boolean}
|
|
27867
27928
|
* @memberof SpConfigObjectBeta
|
|
27868
27929
|
*/
|
|
27869
27930
|
'onePerTenant'?: boolean;
|
|
27870
27931
|
/**
|
|
27871
|
-
*
|
|
27932
|
+
* Indicates whether the object can be exported or is just a reference object.
|
|
27872
27933
|
* @type {boolean}
|
|
27873
27934
|
* @memberof SpConfigObjectBeta
|
|
27874
27935
|
*/
|
|
@@ -27881,13 +27942,13 @@ export interface SpConfigObjectBeta {
|
|
|
27881
27942
|
'rules'?: SpConfigRulesBeta;
|
|
27882
27943
|
}
|
|
27883
27944
|
/**
|
|
27884
|
-
* Format of Config Hub
|
|
27945
|
+
* Format of Config Hub object rules.
|
|
27885
27946
|
* @export
|
|
27886
27947
|
* @interface SpConfigRuleBeta
|
|
27887
27948
|
*/
|
|
27888
27949
|
export interface SpConfigRuleBeta {
|
|
27889
27950
|
/**
|
|
27890
|
-
* JSONPath expression denoting the path within the object where a value substitution should be applied
|
|
27951
|
+
* JSONPath expression denoting the path within the object where a value substitution should be applied.
|
|
27891
27952
|
* @type {string}
|
|
27892
27953
|
* @memberof SpConfigRuleBeta
|
|
27893
27954
|
*/
|
|
@@ -27899,7 +27960,7 @@ export interface SpConfigRuleBeta {
|
|
|
27899
27960
|
*/
|
|
27900
27961
|
'value'?: SpConfigRuleValueBeta | null;
|
|
27901
27962
|
/**
|
|
27902
|
-
* Draft modes
|
|
27963
|
+
* Draft modes the rule will apply to.
|
|
27903
27964
|
* @type {Array<string>}
|
|
27904
27965
|
* @memberof SpConfigRuleBeta
|
|
27905
27966
|
*/
|
|
@@ -27912,14 +27973,14 @@ export declare const SpConfigRuleBetaModesBeta: {
|
|
|
27912
27973
|
};
|
|
27913
27974
|
export type SpConfigRuleBetaModesBeta = typeof SpConfigRuleBetaModesBeta[keyof typeof SpConfigRuleBetaModesBeta];
|
|
27914
27975
|
/**
|
|
27915
|
-
* Value to be assigned at the jsonPath location within the object
|
|
27976
|
+
* Value to be assigned at the jsonPath location within the object.
|
|
27916
27977
|
* @export
|
|
27917
27978
|
* @interface SpConfigRuleValueBeta
|
|
27918
27979
|
*/
|
|
27919
27980
|
export interface SpConfigRuleValueBeta {
|
|
27920
27981
|
}
|
|
27921
27982
|
/**
|
|
27922
|
-
* Rules to be applied to the config object during draft process
|
|
27983
|
+
* Rules to be applied to the config object during the draft process.
|
|
27923
27984
|
* @export
|
|
27924
27985
|
* @interface SpConfigRulesBeta
|
|
27925
27986
|
*/
|
|
@@ -27937,7 +27998,7 @@ export interface SpConfigRulesBeta {
|
|
|
27937
27998
|
*/
|
|
27938
27999
|
'defaultRules'?: Array<SpConfigRuleBeta>;
|
|
27939
28000
|
/**
|
|
27940
|
-
*
|
|
28001
|
+
* Indicates whether the object can be edited.
|
|
27941
28002
|
* @type {boolean}
|
|
27942
28003
|
* @memberof SpConfigRulesBeta
|
|
27943
28004
|
*/
|
|
@@ -31350,6 +31411,7 @@ export declare const WorkflowExecutionBetaStatusBeta: {
|
|
|
31350
31411
|
readonly Completed: "Completed";
|
|
31351
31412
|
readonly Failed: "Failed";
|
|
31352
31413
|
readonly Canceled: "Canceled";
|
|
31414
|
+
readonly Queued: "Queued";
|
|
31353
31415
|
readonly Running: "Running";
|
|
31354
31416
|
};
|
|
31355
31417
|
export type WorkflowExecutionBetaStatusBeta = typeof WorkflowExecutionBetaStatusBeta[keyof typeof WorkflowExecutionBetaStatusBeta];
|
|
@@ -31753,85 +31815,85 @@ export interface WorkflowTriggerAttributesBeta {
|
|
|
31753
31815
|
* @type {string}
|
|
31754
31816
|
* @memberof WorkflowTriggerAttributesBeta
|
|
31755
31817
|
*/
|
|
31756
|
-
'id': string;
|
|
31818
|
+
'id': string | null;
|
|
31757
31819
|
/**
|
|
31758
31820
|
* JSON path expression that will limit which events the trigger will fire on
|
|
31759
31821
|
* @type {string}
|
|
31760
31822
|
* @memberof WorkflowTriggerAttributesBeta
|
|
31761
31823
|
*/
|
|
31762
|
-
'filter.$'?: string;
|
|
31824
|
+
'filter.$'?: string | null;
|
|
31763
31825
|
/**
|
|
31764
31826
|
* Additional context about the external trigger
|
|
31765
31827
|
* @type {string}
|
|
31766
31828
|
* @memberof WorkflowTriggerAttributesBeta
|
|
31767
31829
|
*/
|
|
31768
|
-
'description'?: string;
|
|
31830
|
+
'description'?: string | null;
|
|
31769
31831
|
/**
|
|
31770
31832
|
* The attribute to filter on
|
|
31771
31833
|
* @type {string}
|
|
31772
31834
|
* @memberof WorkflowTriggerAttributesBeta
|
|
31773
31835
|
*/
|
|
31774
|
-
'attributeToFilter'?: string;
|
|
31836
|
+
'attributeToFilter'?: string | null;
|
|
31775
31837
|
/**
|
|
31776
31838
|
* Form definition\'s unique identifier.
|
|
31777
31839
|
* @type {string}
|
|
31778
31840
|
* @memberof WorkflowTriggerAttributesBeta
|
|
31779
31841
|
*/
|
|
31780
|
-
'formDefinitionId'?: string;
|
|
31842
|
+
'formDefinitionId'?: string | null;
|
|
31781
31843
|
/**
|
|
31782
31844
|
* A unique name for the external trigger
|
|
31783
31845
|
* @type {string}
|
|
31784
31846
|
* @memberof WorkflowTriggerAttributesBeta
|
|
31785
31847
|
*/
|
|
31786
|
-
'name'?: string;
|
|
31848
|
+
'name'?: string | null;
|
|
31787
31849
|
/**
|
|
31788
31850
|
* OAuth Client ID to authenticate with this trigger
|
|
31789
31851
|
* @type {string}
|
|
31790
31852
|
* @memberof WorkflowTriggerAttributesBeta
|
|
31791
31853
|
*/
|
|
31792
|
-
'clientId'?: string;
|
|
31854
|
+
'clientId'?: string | null;
|
|
31793
31855
|
/**
|
|
31794
31856
|
* URL to invoke this workflow
|
|
31795
31857
|
* @type {string}
|
|
31796
31858
|
* @memberof WorkflowTriggerAttributesBeta
|
|
31797
31859
|
*/
|
|
31798
|
-
'url'?: string;
|
|
31860
|
+
'url'?: string | null;
|
|
31799
31861
|
/**
|
|
31800
31862
|
* Frequency of execution
|
|
31801
31863
|
* @type {string}
|
|
31802
31864
|
* @memberof WorkflowTriggerAttributesBeta
|
|
31803
31865
|
*/
|
|
31804
|
-
'frequency': WorkflowTriggerAttributesBetaFrequencyBeta;
|
|
31866
|
+
'frequency': WorkflowTriggerAttributesBetaFrequencyBeta | null;
|
|
31805
31867
|
/**
|
|
31806
31868
|
* Time zone identifier
|
|
31807
31869
|
* @type {string}
|
|
31808
31870
|
* @memberof WorkflowTriggerAttributesBeta
|
|
31809
31871
|
*/
|
|
31810
|
-
'timeZone'?: string;
|
|
31872
|
+
'timeZone'?: string | null;
|
|
31811
31873
|
/**
|
|
31812
31874
|
* A valid CRON expression
|
|
31813
31875
|
* @type {string}
|
|
31814
31876
|
* @memberof WorkflowTriggerAttributesBeta
|
|
31815
31877
|
*/
|
|
31816
|
-
'cronString'?: string;
|
|
31878
|
+
'cronString'?: string | null;
|
|
31817
31879
|
/**
|
|
31818
31880
|
* Scheduled days of the week for execution
|
|
31819
31881
|
* @type {Array<string>}
|
|
31820
31882
|
* @memberof WorkflowTriggerAttributesBeta
|
|
31821
31883
|
*/
|
|
31822
|
-
'weeklyDays'?: Array<string
|
|
31884
|
+
'weeklyDays'?: Array<string> | null;
|
|
31823
31885
|
/**
|
|
31824
31886
|
* Scheduled execution times
|
|
31825
31887
|
* @type {Array<string>}
|
|
31826
31888
|
* @memberof WorkflowTriggerAttributesBeta
|
|
31827
31889
|
*/
|
|
31828
|
-
'weeklyTimes'?: Array<string
|
|
31890
|
+
'weeklyTimes'?: Array<string> | null;
|
|
31829
31891
|
/**
|
|
31830
31892
|
* Scheduled execution times
|
|
31831
31893
|
* @type {Array<string>}
|
|
31832
31894
|
* @memberof WorkflowTriggerAttributesBeta
|
|
31833
31895
|
*/
|
|
31834
|
-
'yearlyTimes'?: Array<string
|
|
31896
|
+
'yearlyTimes'?: Array<string> | null;
|
|
31835
31897
|
}
|
|
31836
31898
|
export declare const WorkflowTriggerAttributesBetaFrequencyBeta: {
|
|
31837
31899
|
readonly Daily: "daily";
|
|
@@ -32306,7 +32368,7 @@ export declare class AccessModelMetadataBetaApi extends BaseAPI {
|
|
|
32306
32368
|
*/
|
|
32307
32369
|
export declare const AccessProfilesBetaApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
32308
32370
|
/**
|
|
32309
|
-
* Create an access profile. A user with
|
|
32371
|
+
* Create an access profile. A user with `ROLE_SUBADMIN` or `SOURCE_SUBADMIN` authority must be associated with the access profile\'s source. The maximum supported length for the description field is 2000 characters. Longer descriptions will be preserved for existing access profiles. However, any new access profiles as well as any updates to existing descriptions are limited to 2000 characters.
|
|
32310
32372
|
* @summary Create Access Profile
|
|
32311
32373
|
* @param {AccessProfileBeta} accessProfileBeta
|
|
32312
32374
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -32357,7 +32419,7 @@ export declare const AccessProfilesBetaApiAxiosParamCreator: (configuration?: Co
|
|
|
32357
32419
|
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
32358
32420
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
32359
32421
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
32360
|
-
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, sw* **created**: *gt,
|
|
32422
|
+
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, sw* **created**: *gt, ge, le* **modified**: *gt, lt, ge, le* **owner.id**: *eq, in* **requestable**: *eq* **source.id**: *eq, in* Filtering is not supported for access profiles and entitlements that have the \'+\' symbol in their names.
|
|
32361
32423
|
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **name, created, modified**
|
|
32362
32424
|
* @param {string} [forSegmentIds] Filters access profiles to only those assigned to the segment(s) with the specified IDs. If segmentation is currently unavailable, specifying this parameter results in an error.
|
|
32363
32425
|
* @param {boolean} [includeUnsegmented] Indicates whether the response list should contain unsegmented access profiles. If `for-segment-ids` is absent or empty, specifying *include-unsegmented* as `false` results in an error.
|
|
@@ -32389,7 +32451,7 @@ export declare const AccessProfilesBetaApiAxiosParamCreator: (configuration?: Co
|
|
|
32389
32451
|
*/
|
|
32390
32452
|
export declare const AccessProfilesBetaApiFp: (configuration?: Configuration) => {
|
|
32391
32453
|
/**
|
|
32392
|
-
* Create an access profile. A user with
|
|
32454
|
+
* Create an access profile. A user with `ROLE_SUBADMIN` or `SOURCE_SUBADMIN` authority must be associated with the access profile\'s source. The maximum supported length for the description field is 2000 characters. Longer descriptions will be preserved for existing access profiles. However, any new access profiles as well as any updates to existing descriptions are limited to 2000 characters.
|
|
32393
32455
|
* @summary Create Access Profile
|
|
32394
32456
|
* @param {AccessProfileBeta} accessProfileBeta
|
|
32395
32457
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -32440,7 +32502,7 @@ export declare const AccessProfilesBetaApiFp: (configuration?: Configuration) =>
|
|
|
32440
32502
|
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
32441
32503
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
32442
32504
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
32443
|
-
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, sw* **created**: *gt,
|
|
32505
|
+
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, sw* **created**: *gt, ge, le* **modified**: *gt, lt, ge, le* **owner.id**: *eq, in* **requestable**: *eq* **source.id**: *eq, in* Filtering is not supported for access profiles and entitlements that have the \'+\' symbol in their names.
|
|
32444
32506
|
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **name, created, modified**
|
|
32445
32507
|
* @param {string} [forSegmentIds] Filters access profiles to only those assigned to the segment(s) with the specified IDs. If segmentation is currently unavailable, specifying this parameter results in an error.
|
|
32446
32508
|
* @param {boolean} [includeUnsegmented] Indicates whether the response list should contain unsegmented access profiles. If `for-segment-ids` is absent or empty, specifying *include-unsegmented* as `false` results in an error.
|
|
@@ -32472,7 +32534,7 @@ export declare const AccessProfilesBetaApiFp: (configuration?: Configuration) =>
|
|
|
32472
32534
|
*/
|
|
32473
32535
|
export declare const AccessProfilesBetaApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
32474
32536
|
/**
|
|
32475
|
-
* Create an access profile. A user with
|
|
32537
|
+
* Create an access profile. A user with `ROLE_SUBADMIN` or `SOURCE_SUBADMIN` authority must be associated with the access profile\'s source. The maximum supported length for the description field is 2000 characters. Longer descriptions will be preserved for existing access profiles. However, any new access profiles as well as any updates to existing descriptions are limited to 2000 characters.
|
|
32476
32538
|
* @summary Create Access Profile
|
|
32477
32539
|
* @param {AccessProfilesBetaApiCreateAccessProfileRequest} requestParameters Request parameters.
|
|
32478
32540
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -32662,7 +32724,7 @@ export interface AccessProfilesBetaApiListAccessProfilesRequest {
|
|
|
32662
32724
|
*/
|
|
32663
32725
|
readonly count?: boolean;
|
|
32664
32726
|
/**
|
|
32665
|
-
* Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, sw* **created**: *gt,
|
|
32727
|
+
* Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, sw* **created**: *gt, ge, le* **modified**: *gt, lt, ge, le* **owner.id**: *eq, in* **requestable**: *eq* **source.id**: *eq, in* Filtering is not supported for access profiles and entitlements that have the \'+\' symbol in their names.
|
|
32666
32728
|
* @type {string}
|
|
32667
32729
|
* @memberof AccessProfilesBetaApiListAccessProfiles
|
|
32668
32730
|
*/
|
|
@@ -32726,7 +32788,7 @@ export interface AccessProfilesBetaApiUpdateAccessProfilesInBulkRequest {
|
|
|
32726
32788
|
*/
|
|
32727
32789
|
export declare class AccessProfilesBetaApi extends BaseAPI {
|
|
32728
32790
|
/**
|
|
32729
|
-
* Create an access profile. A user with
|
|
32791
|
+
* Create an access profile. A user with `ROLE_SUBADMIN` or `SOURCE_SUBADMIN` authority must be associated with the access profile\'s source. The maximum supported length for the description field is 2000 characters. Longer descriptions will be preserved for existing access profiles. However, any new access profiles as well as any updates to existing descriptions are limited to 2000 characters.
|
|
32730
32792
|
* @summary Create Access Profile
|
|
32731
32793
|
* @param {AccessProfilesBetaApiCreateAccessProfileRequest} requestParameters Request parameters.
|
|
32732
32794
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -54456,7 +54518,7 @@ export declare const RolesBetaApiAxiosParamCreator: (configuration?: Configurati
|
|
|
54456
54518
|
* @param {number} [limit] Note that for this API the maximum value for limit is 50. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
54457
54519
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
54458
54520
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
54459
|
-
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, sw* **created**: *gt,
|
|
54521
|
+
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, sw* **created**: *gt, ge, le* **modified**: *lt, ge, le* **owner.id**: *eq, in* **requestable**: *eq* **dimensional**: *eq*
|
|
54460
54522
|
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **name, created, modified**
|
|
54461
54523
|
* @param {string} [forSegmentIds] If present and not empty, additionally filters Roles to those which are assigned to the Segment(s) with the specified IDs. If segmentation is currently unavailable, specifying this parameter results in an error.
|
|
54462
54524
|
* @param {boolean} [includeUnsegmented] Whether or not the response list should contain unsegmented Roles. If *for-segment-ids* is absent or empty, specifying *include-unsegmented* as false results in an error.
|
|
@@ -54544,7 +54606,7 @@ export declare const RolesBetaApiFp: (configuration?: Configuration) => {
|
|
|
54544
54606
|
* @param {number} [limit] Note that for this API the maximum value for limit is 50. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
54545
54607
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
54546
54608
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
54547
|
-
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, sw* **created**: *gt,
|
|
54609
|
+
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, sw* **created**: *gt, ge, le* **modified**: *lt, ge, le* **owner.id**: *eq, in* **requestable**: *eq* **dimensional**: *eq*
|
|
54548
54610
|
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **name, created, modified**
|
|
54549
54611
|
* @param {string} [forSegmentIds] If present and not empty, additionally filters Roles to those which are assigned to the Segment(s) with the specified IDs. If segmentation is currently unavailable, specifying this parameter results in an error.
|
|
54550
54612
|
* @param {boolean} [includeUnsegmented] Whether or not the response list should contain unsegmented Roles. If *for-segment-ids* is absent or empty, specifying *include-unsegmented* as false results in an error.
|
|
@@ -54801,7 +54863,7 @@ export interface RolesBetaApiListRolesRequest {
|
|
|
54801
54863
|
*/
|
|
54802
54864
|
readonly count?: boolean;
|
|
54803
54865
|
/**
|
|
54804
|
-
* Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, sw* **created**: *gt,
|
|
54866
|
+
* Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, sw* **created**: *gt, ge, le* **modified**: *lt, ge, le* **owner.id**: *eq, in* **requestable**: *eq* **dimensional**: *eq*
|
|
54805
54867
|
* @type {string}
|
|
54806
54868
|
* @memberof RolesBetaApiListRoles
|
|
54807
54869
|
*/
|
|
@@ -56292,8 +56354,8 @@ export declare const SPConfigBetaApiAxiosParamCreator: (configuration?: Configur
|
|
|
56292
56354
|
*/
|
|
56293
56355
|
importSpConfig: (data: File, preview?: boolean, _options?: ImportOptionsBeta, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
56294
56356
|
/**
|
|
56295
|
-
*
|
|
56296
|
-
* @summary
|
|
56357
|
+
* Get a list of object configurations that the tenant export/import service knows.
|
|
56358
|
+
* @summary List Config Objects
|
|
56297
56359
|
* @param {*} [axiosOptions] Override http request option.
|
|
56298
56360
|
* @throws {RequiredError}
|
|
56299
56361
|
*/
|
|
@@ -56355,8 +56417,8 @@ export declare const SPConfigBetaApiFp: (configuration?: Configuration) => {
|
|
|
56355
56417
|
*/
|
|
56356
56418
|
importSpConfig(data: File, preview?: boolean, _options?: ImportOptionsBeta, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SpConfigJobBeta>>;
|
|
56357
56419
|
/**
|
|
56358
|
-
*
|
|
56359
|
-
* @summary
|
|
56420
|
+
* Get a list of object configurations that the tenant export/import service knows.
|
|
56421
|
+
* @summary List Config Objects
|
|
56360
56422
|
* @param {*} [axiosOptions] Override http request option.
|
|
56361
56423
|
* @throws {RequiredError}
|
|
56362
56424
|
*/
|
|
@@ -56416,8 +56478,8 @@ export declare const SPConfigBetaApiFactory: (configuration?: Configuration, bas
|
|
|
56416
56478
|
*/
|
|
56417
56479
|
importSpConfig(requestParameters: SPConfigBetaApiImportSpConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SpConfigJobBeta>;
|
|
56418
56480
|
/**
|
|
56419
|
-
*
|
|
56420
|
-
* @summary
|
|
56481
|
+
* Get a list of object configurations that the tenant export/import service knows.
|
|
56482
|
+
* @summary List Config Objects
|
|
56421
56483
|
* @param {*} [axiosOptions] Override http request option.
|
|
56422
56484
|
* @throws {RequiredError}
|
|
56423
56485
|
*/
|
|
@@ -56575,8 +56637,8 @@ export declare class SPConfigBetaApi extends BaseAPI {
|
|
|
56575
56637
|
*/
|
|
56576
56638
|
importSpConfig(requestParameters: SPConfigBetaApiImportSpConfigRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SpConfigJobBeta, any>>;
|
|
56577
56639
|
/**
|
|
56578
|
-
*
|
|
56579
|
-
* @summary
|
|
56640
|
+
* Get a list of object configurations that the tenant export/import service knows.
|
|
56641
|
+
* @summary List Config Objects
|
|
56580
56642
|
* @param {*} [axiosOptions] Override http request option.
|
|
56581
56643
|
* @throws {RequiredError}
|
|
56582
56644
|
* @memberof SPConfigBetaApi
|
|
@@ -64068,7 +64130,7 @@ export declare const WorkflowsBetaApiAxiosParamCreator: (configuration?: Configu
|
|
|
64068
64130
|
*/
|
|
64069
64131
|
getWorkflow: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
64070
64132
|
/**
|
|
64071
|
-
*
|
|
64133
|
+
* Get a single workflow execution. Workflow executions are available for up to 90 days before being archived. If you attempt to access a workflow execution that has been archived, you will receive a \"404 Not Found\" response.
|
|
64072
64134
|
* @summary Get Workflow Execution
|
|
64073
64135
|
* @param {string} id Workflow execution ID.
|
|
64074
64136
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -64230,7 +64292,7 @@ export declare const WorkflowsBetaApiFp: (configuration?: Configuration) => {
|
|
|
64230
64292
|
*/
|
|
64231
64293
|
getWorkflow(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WorkflowBeta>>;
|
|
64232
64294
|
/**
|
|
64233
|
-
*
|
|
64295
|
+
* Get a single workflow execution. Workflow executions are available for up to 90 days before being archived. If you attempt to access a workflow execution that has been archived, you will receive a \"404 Not Found\" response.
|
|
64234
64296
|
* @summary Get Workflow Execution
|
|
64235
64297
|
* @param {string} id Workflow execution ID.
|
|
64236
64298
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -64392,7 +64454,7 @@ export declare const WorkflowsBetaApiFactory: (configuration?: Configuration, ba
|
|
|
64392
64454
|
*/
|
|
64393
64455
|
getWorkflow(requestParameters: WorkflowsBetaApiGetWorkflowRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<WorkflowBeta>;
|
|
64394
64456
|
/**
|
|
64395
|
-
*
|
|
64457
|
+
* Get a single workflow execution. Workflow executions are available for up to 90 days before being archived. If you attempt to access a workflow execution that has been archived, you will receive a \"404 Not Found\" response.
|
|
64396
64458
|
* @summary Get Workflow Execution
|
|
64397
64459
|
* @param {WorkflowsBetaApiGetWorkflowExecutionRequest} requestParameters Request parameters.
|
|
64398
64460
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -64838,7 +64900,7 @@ export declare class WorkflowsBetaApi extends BaseAPI {
|
|
|
64838
64900
|
*/
|
|
64839
64901
|
getWorkflow(requestParameters: WorkflowsBetaApiGetWorkflowRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WorkflowBeta, any>>;
|
|
64840
64902
|
/**
|
|
64841
|
-
*
|
|
64903
|
+
* Get a single workflow execution. Workflow executions are available for up to 90 days before being archived. If you attempt to access a workflow execution that has been archived, you will receive a \"404 Not Found\" response.
|
|
64842
64904
|
* @summary Get Workflow Execution
|
|
64843
64905
|
* @param {WorkflowsBetaApiGetWorkflowExecutionRequest} requestParameters Request parameters.
|
|
64844
64906
|
* @param {*} [axiosOptions] Override http request option.
|