sailpoint-api-client 1.8.21 → 1.8.23
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/common.ts +2 -2
- package/beta/package.json +1 -1
- package/dist/beta/common.js +2 -2
- package/dist/nerm/common.js +2 -2
- package/dist/nermv2025/common.js +2 -2
- package/dist/v2024/common.js +2 -2
- package/dist/v2025/common.js +2 -2
- package/dist/v2026/api.d.ts +248 -0
- package/dist/v2026/api.js +288 -16
- package/dist/v2026/api.js.map +1 -1
- package/dist/v2026/common.js +2 -2
- package/dist/v3/common.js +2 -2
- package/nerm/README.md +2 -2
- package/nerm/common.ts +2 -2
- package/nerm/package.json +1 -1
- package/nermv2025/README.md +2 -2
- package/nermv2025/common.ts +2 -2
- package/nermv2025/package.json +1 -1
- package/package.json +1 -1
- package/v2024/README.md +2 -2
- package/v2024/common.ts +2 -2
- package/v2024/package.json +1 -1
- package/v2025/README.md +2 -2
- package/v2025/common.ts +2 -2
- package/v2025/package.json +1 -1
- package/v2026/README.md +2 -2
- package/v2026/api.ts +362 -0
- package/v2026/common.ts +2 -2
- package/v2026/package.json +1 -1
- package/v3/README.md +2 -2
- package/v3/common.ts +2 -2
- package/v3/package.json +1 -1
package/beta/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## sailpoint-sdk@1.8.
|
|
1
|
+
## sailpoint-sdk@1.8.23
|
|
2
2
|
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
|
|
4
4
|
|
|
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
|
36
36
|
_published:_
|
|
37
37
|
|
|
38
38
|
```
|
|
39
|
-
npm install sailpoint-sdk@1.8.
|
|
39
|
+
npm install sailpoint-sdk@1.8.23 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/beta/common.ts
CHANGED
|
@@ -146,14 +146,14 @@ export const toPathString = function (url: URL) {
|
|
|
146
146
|
export const createRequestFunction = function (axiosArgs: RequestArgs, globalAxios: AxiosInstance, BASE_PATH: string, configuration?: Configuration) {
|
|
147
147
|
return <T = unknown, R = AxiosResponse<T>>(axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
|
|
148
148
|
axiosRetry(axios, configuration.retriesConfig)
|
|
149
|
-
let userAgent = `SailPoint-SDK-TypeScript/1.8.
|
|
149
|
+
let userAgent = `SailPoint-SDK-TypeScript/1.8.23`;
|
|
150
150
|
if (configuration?.consumerIdentifier && configuration?.consumerVersion) {
|
|
151
151
|
userAgent += ` (${configuration.consumerIdentifier}/${configuration.consumerVersion})`;
|
|
152
152
|
}
|
|
153
153
|
userAgent += ` (${process.platform}; ${process.arch}) Node/${process.versions.node} (openapi-generator/7.12.0)`;
|
|
154
154
|
const headers = {
|
|
155
155
|
...axiosArgs.axiosOptions.headers,
|
|
156
|
-
...{'X-SailPoint-SDK':'typescript-1.8.
|
|
156
|
+
...{'X-SailPoint-SDK':'typescript-1.8.23'},
|
|
157
157
|
...{'User-Agent': userAgent},
|
|
158
158
|
}
|
|
159
159
|
|
package/beta/package.json
CHANGED
package/dist/beta/common.js
CHANGED
|
@@ -250,12 +250,12 @@ var createRequestFunction = function (axiosArgs, globalAxios, BASE_PATH, configu
|
|
|
250
250
|
if (axios === void 0) { axios = globalAxios; }
|
|
251
251
|
if (basePath === void 0) { basePath = BASE_PATH; }
|
|
252
252
|
(0, axios_retry_1.default)(axios, configuration.retriesConfig);
|
|
253
|
-
var userAgent = "SailPoint-SDK-TypeScript/1.8.
|
|
253
|
+
var userAgent = "SailPoint-SDK-TypeScript/1.8.23";
|
|
254
254
|
if ((configuration === null || configuration === void 0 ? void 0 : configuration.consumerIdentifier) && (configuration === null || configuration === void 0 ? void 0 : configuration.consumerVersion)) {
|
|
255
255
|
userAgent += " (".concat(configuration.consumerIdentifier, "/").concat(configuration.consumerVersion, ")");
|
|
256
256
|
}
|
|
257
257
|
userAgent += " (".concat(process.platform, "; ").concat(process.arch, ") Node/").concat(process.versions.node, " (openapi-generator/7.12.0)");
|
|
258
|
-
var headers = __assign(__assign(__assign({}, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.8.
|
|
258
|
+
var headers = __assign(__assign(__assign({}, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.8.23' }), { 'User-Agent': userAgent });
|
|
259
259
|
if (!configuration.experimental && ("X-SailPoint-Experimental" in headers)) {
|
|
260
260
|
throw new Error("You are using Experimental APIs. Set configuration.experimental = True to enable these APIs in the SDK.");
|
|
261
261
|
}
|
package/dist/nerm/common.js
CHANGED
|
@@ -250,12 +250,12 @@ var createRequestFunction = function (axiosArgs, globalAxios, BASE_PATH, configu
|
|
|
250
250
|
if (axios === void 0) { axios = globalAxios; }
|
|
251
251
|
if (basePath === void 0) { basePath = BASE_PATH; }
|
|
252
252
|
(0, axios_retry_1.default)(axios, configuration.retriesConfig);
|
|
253
|
-
var userAgent = "SailPoint-SDK-TypeScript/1.8.
|
|
253
|
+
var userAgent = "SailPoint-SDK-TypeScript/1.8.23";
|
|
254
254
|
if ((configuration === null || configuration === void 0 ? void 0 : configuration.consumerIdentifier) && (configuration === null || configuration === void 0 ? void 0 : configuration.consumerVersion)) {
|
|
255
255
|
userAgent += " (".concat(configuration.consumerIdentifier, "/").concat(configuration.consumerVersion, ")");
|
|
256
256
|
}
|
|
257
257
|
userAgent += " (".concat(process.platform, "; ").concat(process.arch, ") Node/").concat(process.versions.node, " (openapi-generator/7.12.0)");
|
|
258
|
-
var headers = __assign(__assign(__assign({ 'Accept': 'application/json' }, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.8.
|
|
258
|
+
var headers = __assign(__assign(__assign({ 'Accept': 'application/json' }, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.8.23' }), { 'User-Agent': userAgent });
|
|
259
259
|
if (!configuration.experimental && ("X-SailPoint-Experimental" in headers)) {
|
|
260
260
|
throw new Error("You are using Experimental APIs. Set configuration.experimental = True to enable these APIs in the SDK.");
|
|
261
261
|
}
|
package/dist/nermv2025/common.js
CHANGED
|
@@ -250,12 +250,12 @@ var createRequestFunction = function (axiosArgs, globalAxios, BASE_PATH, configu
|
|
|
250
250
|
if (axios === void 0) { axios = globalAxios; }
|
|
251
251
|
if (basePath === void 0) { basePath = BASE_PATH; }
|
|
252
252
|
(0, axios_retry_1.default)(axios, configuration.retriesConfig);
|
|
253
|
-
var userAgent = "SailPoint-SDK-TypeScript/1.8.
|
|
253
|
+
var userAgent = "SailPoint-SDK-TypeScript/1.8.23";
|
|
254
254
|
if ((configuration === null || configuration === void 0 ? void 0 : configuration.consumerIdentifier) && (configuration === null || configuration === void 0 ? void 0 : configuration.consumerVersion)) {
|
|
255
255
|
userAgent += " (".concat(configuration.consumerIdentifier, "/").concat(configuration.consumerVersion, ")");
|
|
256
256
|
}
|
|
257
257
|
userAgent += " (".concat(process.platform, "; ").concat(process.arch, ") Node/").concat(process.versions.node, " (openapi-generator/7.12.0)");
|
|
258
|
-
var headers = __assign(__assign(__assign({ 'Accept': 'application/json' }, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.8.
|
|
258
|
+
var headers = __assign(__assign(__assign({ 'Accept': 'application/json' }, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.8.23' }), { 'User-Agent': userAgent });
|
|
259
259
|
if (!configuration.experimental && ("X-SailPoint-Experimental" in headers)) {
|
|
260
260
|
throw new Error("You are using Experimental APIs. Set configuration.experimental = True to enable these APIs in the SDK.");
|
|
261
261
|
}
|
package/dist/v2024/common.js
CHANGED
|
@@ -250,12 +250,12 @@ var createRequestFunction = function (axiosArgs, globalAxios, BASE_PATH, configu
|
|
|
250
250
|
if (axios === void 0) { axios = globalAxios; }
|
|
251
251
|
if (basePath === void 0) { basePath = BASE_PATH; }
|
|
252
252
|
(0, axios_retry_1.default)(axios, configuration.retriesConfig);
|
|
253
|
-
var userAgent = "SailPoint-SDK-TypeScript/1.8.
|
|
253
|
+
var userAgent = "SailPoint-SDK-TypeScript/1.8.23";
|
|
254
254
|
if ((configuration === null || configuration === void 0 ? void 0 : configuration.consumerIdentifier) && (configuration === null || configuration === void 0 ? void 0 : configuration.consumerVersion)) {
|
|
255
255
|
userAgent += " (".concat(configuration.consumerIdentifier, "/").concat(configuration.consumerVersion, ")");
|
|
256
256
|
}
|
|
257
257
|
userAgent += " (".concat(process.platform, "; ").concat(process.arch, ") Node/").concat(process.versions.node, " (openapi-generator/7.12.0)");
|
|
258
|
-
var headers = __assign(__assign(__assign({}, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.8.
|
|
258
|
+
var headers = __assign(__assign(__assign({}, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.8.23' }), { 'User-Agent': userAgent });
|
|
259
259
|
if (!configuration.experimental && ("X-SailPoint-Experimental" in headers)) {
|
|
260
260
|
throw new Error("You are using Experimental APIs. Set configuration.experimental = True to enable these APIs in the SDK.");
|
|
261
261
|
}
|
package/dist/v2025/common.js
CHANGED
|
@@ -250,12 +250,12 @@ var createRequestFunction = function (axiosArgs, globalAxios, BASE_PATH, configu
|
|
|
250
250
|
if (axios === void 0) { axios = globalAxios; }
|
|
251
251
|
if (basePath === void 0) { basePath = BASE_PATH; }
|
|
252
252
|
(0, axios_retry_1.default)(axios, configuration.retriesConfig);
|
|
253
|
-
var userAgent = "SailPoint-SDK-TypeScript/1.8.
|
|
253
|
+
var userAgent = "SailPoint-SDK-TypeScript/1.8.23";
|
|
254
254
|
if ((configuration === null || configuration === void 0 ? void 0 : configuration.consumerIdentifier) && (configuration === null || configuration === void 0 ? void 0 : configuration.consumerVersion)) {
|
|
255
255
|
userAgent += " (".concat(configuration.consumerIdentifier, "/").concat(configuration.consumerVersion, ")");
|
|
256
256
|
}
|
|
257
257
|
userAgent += " (".concat(process.platform, "; ").concat(process.arch, ") Node/").concat(process.versions.node, " (openapi-generator/7.12.0)");
|
|
258
|
-
var headers = __assign(__assign(__assign({}, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.8.
|
|
258
|
+
var headers = __assign(__assign(__assign({}, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.8.23' }), { 'User-Agent': userAgent });
|
|
259
259
|
if (!configuration.experimental && ("X-SailPoint-Experimental" in headers)) {
|
|
260
260
|
throw new Error("You are using Experimental APIs. Set configuration.experimental = True to enable these APIs in the SDK.");
|
|
261
261
|
}
|
package/dist/v2026/api.d.ts
CHANGED
|
@@ -9889,6 +9889,7 @@ export declare const AuthUserV2026CapabilitiesV2026: {
|
|
|
9889
9889
|
readonly CloudGovUser: "CLOUD_GOV_USER";
|
|
9890
9890
|
readonly Helpdesk: "HELPDESK";
|
|
9891
9891
|
readonly OrgAdmin: "ORG_ADMIN";
|
|
9892
|
+
readonly PolicyAdmin: "POLICY_ADMIN";
|
|
9892
9893
|
readonly ReportAdmin: "REPORT_ADMIN";
|
|
9893
9894
|
readonly RoleAdmin: "ROLE_ADMIN";
|
|
9894
9895
|
readonly RoleSubadmin: "ROLE_SUBADMIN";
|
|
@@ -25503,6 +25504,67 @@ export interface InvocationV2026 {
|
|
|
25503
25504
|
*/
|
|
25504
25505
|
'contentJson'?: object;
|
|
25505
25506
|
}
|
|
25507
|
+
/**
|
|
25508
|
+
*
|
|
25509
|
+
* @export
|
|
25510
|
+
* @interface JITActivationConfigResponseV2026
|
|
25511
|
+
*/
|
|
25512
|
+
export interface JITActivationConfigResponseV2026 {
|
|
25513
|
+
/**
|
|
25514
|
+
* Unique identifier of this JIT activation configuration instance (persisted config id).
|
|
25515
|
+
* @type {string}
|
|
25516
|
+
* @memberof JITActivationConfigResponseV2026
|
|
25517
|
+
*/
|
|
25518
|
+
'id': string;
|
|
25519
|
+
/**
|
|
25520
|
+
* Entitlement IDs governed by JIT activation policy. May be a single-element array when only one entitlement is in scope.
|
|
25521
|
+
* @type {Array<string>}
|
|
25522
|
+
* @memberof JITActivationConfigResponseV2026
|
|
25523
|
+
*/
|
|
25524
|
+
'entitlementIds'?: Array<string>;
|
|
25525
|
+
/**
|
|
25526
|
+
* Maximum allowed JIT activation duration for a single grant, in minutes; null if unset.
|
|
25527
|
+
* @type {number}
|
|
25528
|
+
* @memberof JITActivationConfigResponseV2026
|
|
25529
|
+
*/
|
|
25530
|
+
'maxActivationPeriodMins'?: number | null;
|
|
25531
|
+
/**
|
|
25532
|
+
* Maximum allowed extension of an active JIT activation, in minutes; null if unset.
|
|
25533
|
+
* @type {number}
|
|
25534
|
+
* @memberof JITActivationConfigResponseV2026
|
|
25535
|
+
*/
|
|
25536
|
+
'maxActivationPeriodExtensionMins'?: number | null;
|
|
25537
|
+
/**
|
|
25538
|
+
* Default activation duration offered when a user requests JIT access, in minutes; null if unset.
|
|
25539
|
+
* @type {number}
|
|
25540
|
+
* @memberof JITActivationConfigResponseV2026
|
|
25541
|
+
*/
|
|
25542
|
+
'defaultMaxActivationPeriodMins'?: number | null;
|
|
25543
|
+
/**
|
|
25544
|
+
* Default extension duration offered for an active JIT activation, in minutes; null if unset.
|
|
25545
|
+
* @type {number}
|
|
25546
|
+
* @memberof JITActivationConfigResponseV2026
|
|
25547
|
+
*/
|
|
25548
|
+
'defaultMaxActivationPeriodExtensionMins'?: number | null;
|
|
25549
|
+
/**
|
|
25550
|
+
* Email addresses notified for JIT activation events (for example policy owners or a shared mailbox).
|
|
25551
|
+
* @type {Array<string>}
|
|
25552
|
+
* @memberof JITActivationConfigResponseV2026
|
|
25553
|
+
*/
|
|
25554
|
+
'notificationRecipients'?: Array<string>;
|
|
25555
|
+
/**
|
|
25556
|
+
* Name or key of the email template used for JIT activation notifications; null if unset.
|
|
25557
|
+
* @type {string}
|
|
25558
|
+
* @memberof JITActivationConfigResponseV2026
|
|
25559
|
+
*/
|
|
25560
|
+
'notificationTemplate'?: string | null;
|
|
25561
|
+
/**
|
|
25562
|
+
* Whether the policy applies to future entitlement assignments.
|
|
25563
|
+
* @type {boolean}
|
|
25564
|
+
* @memberof JITActivationConfigResponseV2026
|
|
25565
|
+
*/
|
|
25566
|
+
'applyToFutureAssignments': boolean;
|
|
25567
|
+
}
|
|
25506
25568
|
/**
|
|
25507
25569
|
*
|
|
25508
25570
|
* @export
|
|
@@ -25586,6 +25648,52 @@ export interface JWKV2026 {
|
|
|
25586
25648
|
*/
|
|
25587
25649
|
'use'?: string;
|
|
25588
25650
|
}
|
|
25651
|
+
/**
|
|
25652
|
+
* A single replace operation applied to JIT activation configuration. Only **replace** is supported. **path** must be one of the allowed JSON Pointer-style paths.
|
|
25653
|
+
* @export
|
|
25654
|
+
* @interface JitAccessOperationRequestV2026
|
|
25655
|
+
*/
|
|
25656
|
+
export interface JitAccessOperationRequestV2026 {
|
|
25657
|
+
/**
|
|
25658
|
+
* Operation type. Defaults to `replace` if omitted.
|
|
25659
|
+
* @type {string}
|
|
25660
|
+
* @memberof JitAccessOperationRequestV2026
|
|
25661
|
+
*/
|
|
25662
|
+
'op'?: JitAccessOperationRequestV2026OpV2026;
|
|
25663
|
+
/**
|
|
25664
|
+
* Path to replace. Only the following JSON Pointer-style paths are supported.
|
|
25665
|
+
* @type {string}
|
|
25666
|
+
* @memberof JitAccessOperationRequestV2026
|
|
25667
|
+
*/
|
|
25668
|
+
'path': JitAccessOperationRequestV2026PathV2026;
|
|
25669
|
+
/**
|
|
25670
|
+
*
|
|
25671
|
+
* @type {JitAccessOperationRequestValueV2026}
|
|
25672
|
+
* @memberof JitAccessOperationRequestV2026
|
|
25673
|
+
*/
|
|
25674
|
+
'value': JitAccessOperationRequestValueV2026 | null;
|
|
25675
|
+
}
|
|
25676
|
+
export declare const JitAccessOperationRequestV2026OpV2026: {
|
|
25677
|
+
readonly Replace: "replace";
|
|
25678
|
+
};
|
|
25679
|
+
export type JitAccessOperationRequestV2026OpV2026 = typeof JitAccessOperationRequestV2026OpV2026[keyof typeof JitAccessOperationRequestV2026OpV2026];
|
|
25680
|
+
export declare const JitAccessOperationRequestV2026PathV2026: {
|
|
25681
|
+
readonly EntitlementIds: "/entitlementIds";
|
|
25682
|
+
readonly MaxActivationPeriodMins: "/maxActivationPeriodMins";
|
|
25683
|
+
readonly MaxActivationPeriodExtensionMins: "/maxActivationPeriodExtensionMins";
|
|
25684
|
+
readonly DefaultMaxActivationPeriodMins: "/defaultMaxActivationPeriodMins";
|
|
25685
|
+
readonly DefaultMaxActivationPeriodExtensionMins: "/defaultMaxActivationPeriodExtensionMins";
|
|
25686
|
+
readonly NotificationRecipients: "/notificationRecipients";
|
|
25687
|
+
readonly NotificationTemplate: "/notificationTemplate";
|
|
25688
|
+
readonly ApplyToFutureAssignments: "/applyToFutureAssignments";
|
|
25689
|
+
};
|
|
25690
|
+
export type JitAccessOperationRequestV2026PathV2026 = typeof JitAccessOperationRequestV2026PathV2026[keyof typeof JitAccessOperationRequestV2026PathV2026];
|
|
25691
|
+
/**
|
|
25692
|
+
* @type JitAccessOperationRequestValueV2026
|
|
25693
|
+
* New value. Type depends on **path**: arrays of strings for `/entitlementIds` and `/notificationRecipients`, integer for `*Mins` paths, string for `/notificationTemplate`, boolean for `/applyToFutureAssignments`. Use `null` when clearing nullable fields (for example `/notificationTemplate` or `*Mins` paths).
|
|
25694
|
+
* @export
|
|
25695
|
+
*/
|
|
25696
|
+
export type JitAccessOperationRequestValueV2026 = Array<string> | boolean | number | string;
|
|
25589
25697
|
/**
|
|
25590
25698
|
* A JSONPatch Operation for Role Mining endpoints, supporting only remove and replace operations as defined by [RFC 6902 - JSON Patch](https://tools.ietf.org/html/rfc6902)
|
|
25591
25699
|
* @export
|
|
@@ -77528,6 +77636,146 @@ export declare class IdentityProfilesV2026Api extends BaseAPI {
|
|
|
77528
77636
|
*/
|
|
77529
77637
|
updateIdentityProfile(requestParameters: IdentityProfilesV2026ApiUpdateIdentityProfileRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IdentityProfileV2026, any>>;
|
|
77530
77638
|
}
|
|
77639
|
+
/**
|
|
77640
|
+
* JITAccessV2026Api - axios parameter creator
|
|
77641
|
+
* @export
|
|
77642
|
+
*/
|
|
77643
|
+
export declare const JITAccessV2026ApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
77644
|
+
/**
|
|
77645
|
+
* Returns the tenant\'s current JIT activation policy configuration, including governed entitlement IDs, activation and extension time limits, default periods, notification settings, and whether the policy applies to future assignments. The tenant comes from the authenticated request context (not the URL). Use **configType** to select which configuration to read. Returns **404** if that configuration has not been stored yet. **User level:** POLICY_ADMIN (policy administrator).
|
|
77646
|
+
* @summary Get JIT activation policy configuration
|
|
77647
|
+
* @param {GetJitActivationConfigConfigTypeV2026} configType Configuration kind to read. Only **policy** (JIT activation policy) is supported today.
|
|
77648
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
77649
|
+
* @throws {RequiredError}
|
|
77650
|
+
*/
|
|
77651
|
+
getJitActivationConfig: (configType: GetJitActivationConfigConfigTypeV2026, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
77652
|
+
/**
|
|
77653
|
+
* Updates the tenant\'s JIT activation policy configuration by applying one or more **replace** operations (same shape as JSON Patch: **op**, **path**, **value**). Use this to change entitlement lists, max/default activation and extension durations, notification recipients or template, and the apply-to-future-assignments flag. The body must be a non-empty array. Only **replace** is supported; each **path** must be one of the values documented on the request item schema. The tenant is taken from the request context. **configType** selects which configuration to update. Returns **404** if the configuration does not exist, or **400** for an empty body, unknown **configType**, or invalid path/value. **User level:** POLICY_ADMIN (policy administrator).
|
|
77654
|
+
* @summary Update JIT activation policy configuration
|
|
77655
|
+
* @param {PatchJitActivationConfigConfigTypeV2026} configType Configuration kind to update. Only **policy** (JIT activation policy) is supported today.
|
|
77656
|
+
* @param {Array<JitAccessOperationRequestV2026>} jitAccessOperationRequestV2026
|
|
77657
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
77658
|
+
* @throws {RequiredError}
|
|
77659
|
+
*/
|
|
77660
|
+
patchJitActivationConfig: (configType: PatchJitActivationConfigConfigTypeV2026, jitAccessOperationRequestV2026: Array<JitAccessOperationRequestV2026>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
77661
|
+
};
|
|
77662
|
+
/**
|
|
77663
|
+
* JITAccessV2026Api - functional programming interface
|
|
77664
|
+
* @export
|
|
77665
|
+
*/
|
|
77666
|
+
export declare const JITAccessV2026ApiFp: (configuration?: Configuration) => {
|
|
77667
|
+
/**
|
|
77668
|
+
* Returns the tenant\'s current JIT activation policy configuration, including governed entitlement IDs, activation and extension time limits, default periods, notification settings, and whether the policy applies to future assignments. The tenant comes from the authenticated request context (not the URL). Use **configType** to select which configuration to read. Returns **404** if that configuration has not been stored yet. **User level:** POLICY_ADMIN (policy administrator).
|
|
77669
|
+
* @summary Get JIT activation policy configuration
|
|
77670
|
+
* @param {GetJitActivationConfigConfigTypeV2026} configType Configuration kind to read. Only **policy** (JIT activation policy) is supported today.
|
|
77671
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
77672
|
+
* @throws {RequiredError}
|
|
77673
|
+
*/
|
|
77674
|
+
getJitActivationConfig(configType: GetJitActivationConfigConfigTypeV2026, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JITActivationConfigResponseV2026>>;
|
|
77675
|
+
/**
|
|
77676
|
+
* Updates the tenant\'s JIT activation policy configuration by applying one or more **replace** operations (same shape as JSON Patch: **op**, **path**, **value**). Use this to change entitlement lists, max/default activation and extension durations, notification recipients or template, and the apply-to-future-assignments flag. The body must be a non-empty array. Only **replace** is supported; each **path** must be one of the values documented on the request item schema. The tenant is taken from the request context. **configType** selects which configuration to update. Returns **404** if the configuration does not exist, or **400** for an empty body, unknown **configType**, or invalid path/value. **User level:** POLICY_ADMIN (policy administrator).
|
|
77677
|
+
* @summary Update JIT activation policy configuration
|
|
77678
|
+
* @param {PatchJitActivationConfigConfigTypeV2026} configType Configuration kind to update. Only **policy** (JIT activation policy) is supported today.
|
|
77679
|
+
* @param {Array<JitAccessOperationRequestV2026>} jitAccessOperationRequestV2026
|
|
77680
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
77681
|
+
* @throws {RequiredError}
|
|
77682
|
+
*/
|
|
77683
|
+
patchJitActivationConfig(configType: PatchJitActivationConfigConfigTypeV2026, jitAccessOperationRequestV2026: Array<JitAccessOperationRequestV2026>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JITActivationConfigResponseV2026>>;
|
|
77684
|
+
};
|
|
77685
|
+
/**
|
|
77686
|
+
* JITAccessV2026Api - factory interface
|
|
77687
|
+
* @export
|
|
77688
|
+
*/
|
|
77689
|
+
export declare const JITAccessV2026ApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
77690
|
+
/**
|
|
77691
|
+
* Returns the tenant\'s current JIT activation policy configuration, including governed entitlement IDs, activation and extension time limits, default periods, notification settings, and whether the policy applies to future assignments. The tenant comes from the authenticated request context (not the URL). Use **configType** to select which configuration to read. Returns **404** if that configuration has not been stored yet. **User level:** POLICY_ADMIN (policy administrator).
|
|
77692
|
+
* @summary Get JIT activation policy configuration
|
|
77693
|
+
* @param {JITAccessV2026ApiGetJitActivationConfigRequest} requestParameters Request parameters.
|
|
77694
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
77695
|
+
* @throws {RequiredError}
|
|
77696
|
+
*/
|
|
77697
|
+
getJitActivationConfig(requestParameters: JITAccessV2026ApiGetJitActivationConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<JITActivationConfigResponseV2026>;
|
|
77698
|
+
/**
|
|
77699
|
+
* Updates the tenant\'s JIT activation policy configuration by applying one or more **replace** operations (same shape as JSON Patch: **op**, **path**, **value**). Use this to change entitlement lists, max/default activation and extension durations, notification recipients or template, and the apply-to-future-assignments flag. The body must be a non-empty array. Only **replace** is supported; each **path** must be one of the values documented on the request item schema. The tenant is taken from the request context. **configType** selects which configuration to update. Returns **404** if the configuration does not exist, or **400** for an empty body, unknown **configType**, or invalid path/value. **User level:** POLICY_ADMIN (policy administrator).
|
|
77700
|
+
* @summary Update JIT activation policy configuration
|
|
77701
|
+
* @param {JITAccessV2026ApiPatchJitActivationConfigRequest} requestParameters Request parameters.
|
|
77702
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
77703
|
+
* @throws {RequiredError}
|
|
77704
|
+
*/
|
|
77705
|
+
patchJitActivationConfig(requestParameters: JITAccessV2026ApiPatchJitActivationConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<JITActivationConfigResponseV2026>;
|
|
77706
|
+
};
|
|
77707
|
+
/**
|
|
77708
|
+
* Request parameters for getJitActivationConfig operation in JITAccessV2026Api.
|
|
77709
|
+
* @export
|
|
77710
|
+
* @interface JITAccessV2026ApiGetJitActivationConfigRequest
|
|
77711
|
+
*/
|
|
77712
|
+
export interface JITAccessV2026ApiGetJitActivationConfigRequest {
|
|
77713
|
+
/**
|
|
77714
|
+
* Configuration kind to read. Only **policy** (JIT activation policy) is supported today.
|
|
77715
|
+
* @type {'policy'}
|
|
77716
|
+
* @memberof JITAccessV2026ApiGetJitActivationConfig
|
|
77717
|
+
*/
|
|
77718
|
+
readonly configType: GetJitActivationConfigConfigTypeV2026;
|
|
77719
|
+
}
|
|
77720
|
+
/**
|
|
77721
|
+
* Request parameters for patchJitActivationConfig operation in JITAccessV2026Api.
|
|
77722
|
+
* @export
|
|
77723
|
+
* @interface JITAccessV2026ApiPatchJitActivationConfigRequest
|
|
77724
|
+
*/
|
|
77725
|
+
export interface JITAccessV2026ApiPatchJitActivationConfigRequest {
|
|
77726
|
+
/**
|
|
77727
|
+
* Configuration kind to update. Only **policy** (JIT activation policy) is supported today.
|
|
77728
|
+
* @type {'policy'}
|
|
77729
|
+
* @memberof JITAccessV2026ApiPatchJitActivationConfig
|
|
77730
|
+
*/
|
|
77731
|
+
readonly configType: PatchJitActivationConfigConfigTypeV2026;
|
|
77732
|
+
/**
|
|
77733
|
+
*
|
|
77734
|
+
* @type {Array<JitAccessOperationRequestV2026>}
|
|
77735
|
+
* @memberof JITAccessV2026ApiPatchJitActivationConfig
|
|
77736
|
+
*/
|
|
77737
|
+
readonly jitAccessOperationRequestV2026: Array<JitAccessOperationRequestV2026>;
|
|
77738
|
+
}
|
|
77739
|
+
/**
|
|
77740
|
+
* JITAccessV2026Api - object-oriented interface
|
|
77741
|
+
* @export
|
|
77742
|
+
* @class JITAccessV2026Api
|
|
77743
|
+
* @extends {BaseAPI}
|
|
77744
|
+
*/
|
|
77745
|
+
export declare class JITAccessV2026Api extends BaseAPI {
|
|
77746
|
+
/**
|
|
77747
|
+
* Returns the tenant\'s current JIT activation policy configuration, including governed entitlement IDs, activation and extension time limits, default periods, notification settings, and whether the policy applies to future assignments. The tenant comes from the authenticated request context (not the URL). Use **configType** to select which configuration to read. Returns **404** if that configuration has not been stored yet. **User level:** POLICY_ADMIN (policy administrator).
|
|
77748
|
+
* @summary Get JIT activation policy configuration
|
|
77749
|
+
* @param {JITAccessV2026ApiGetJitActivationConfigRequest} requestParameters Request parameters.
|
|
77750
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
77751
|
+
* @throws {RequiredError}
|
|
77752
|
+
* @memberof JITAccessV2026Api
|
|
77753
|
+
*/
|
|
77754
|
+
getJitActivationConfig(requestParameters: JITAccessV2026ApiGetJitActivationConfigRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JITActivationConfigResponseV2026, any>>;
|
|
77755
|
+
/**
|
|
77756
|
+
* Updates the tenant\'s JIT activation policy configuration by applying one or more **replace** operations (same shape as JSON Patch: **op**, **path**, **value**). Use this to change entitlement lists, max/default activation and extension durations, notification recipients or template, and the apply-to-future-assignments flag. The body must be a non-empty array. Only **replace** is supported; each **path** must be one of the values documented on the request item schema. The tenant is taken from the request context. **configType** selects which configuration to update. Returns **404** if the configuration does not exist, or **400** for an empty body, unknown **configType**, or invalid path/value. **User level:** POLICY_ADMIN (policy administrator).
|
|
77757
|
+
* @summary Update JIT activation policy configuration
|
|
77758
|
+
* @param {JITAccessV2026ApiPatchJitActivationConfigRequest} requestParameters Request parameters.
|
|
77759
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
77760
|
+
* @throws {RequiredError}
|
|
77761
|
+
* @memberof JITAccessV2026Api
|
|
77762
|
+
*/
|
|
77763
|
+
patchJitActivationConfig(requestParameters: JITAccessV2026ApiPatchJitActivationConfigRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JITActivationConfigResponseV2026, any>>;
|
|
77764
|
+
}
|
|
77765
|
+
/**
|
|
77766
|
+
* @export
|
|
77767
|
+
*/
|
|
77768
|
+
export declare const GetJitActivationConfigConfigTypeV2026: {
|
|
77769
|
+
readonly Policy: "policy";
|
|
77770
|
+
};
|
|
77771
|
+
export type GetJitActivationConfigConfigTypeV2026 = typeof GetJitActivationConfigConfigTypeV2026[keyof typeof GetJitActivationConfigConfigTypeV2026];
|
|
77772
|
+
/**
|
|
77773
|
+
* @export
|
|
77774
|
+
*/
|
|
77775
|
+
export declare const PatchJitActivationConfigConfigTypeV2026: {
|
|
77776
|
+
readonly Policy: "policy";
|
|
77777
|
+
};
|
|
77778
|
+
export type PatchJitActivationConfigConfigTypeV2026 = typeof PatchJitActivationConfigConfigTypeV2026[keyof typeof PatchJitActivationConfigConfigTypeV2026];
|
|
77531
77779
|
/**
|
|
77532
77780
|
* LaunchersV2026Api - axios parameter creator
|
|
77533
77781
|
* @export
|