@sailpoint/api-client 2.2.1 → 2.2.2
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/dist/access_model_metadata/api.d.ts +270 -35
- package/dist/access_model_metadata/api.js +220 -35
- package/dist/access_model_metadata/api.js.map +1 -1
- package/dist/access_profiles/api.d.ts +22 -5
- package/dist/access_profiles/api.js +5 -1
- package/dist/access_profiles/api.js.map +1 -1
- package/dist/dimensions/api.d.ts +22 -5
- package/dist/dimensions/api.js +5 -1
- package/dist/dimensions/api.js.map +1 -1
- package/dist/esm/access_model_metadata/api.js +219 -34
- package/dist/esm/access_profiles/api.js +4 -0
- package/dist/esm/dimensions/api.js +4 -0
- package/dist/esm/nerm/common.js +2 -2
- package/dist/esm/nermv2025/common.js +2 -2
- package/dist/esm/roles/api.js +4 -0
- package/dist/nerm/common.js +2 -2
- package/dist/nerm/common.js.map +1 -1
- package/dist/nermv2025/common.js +2 -2
- package/dist/nermv2025/common.js.map +1 -1
- package/dist/roles/api.d.ts +22 -5
- package/dist/roles/api.js +5 -1
- package/dist/roles/api.js.map +1 -1
- package/package.json +1 -1
|
@@ -468,13 +468,13 @@ export interface ArrayInner {
|
|
|
468
468
|
*/
|
|
469
469
|
export interface AttributeDTO {
|
|
470
470
|
/**
|
|
471
|
-
* Technical name of the Attribute. This is unique and cannot be changed after creation.
|
|
471
|
+
* Technical name of the Attribute. This is unique and cannot be changed after creation. Allowed characters are letters, numbers, dashes (-), and underscores (_); the value cannot start or end with a dash or underscore.
|
|
472
472
|
* @type {string}
|
|
473
473
|
* @memberof AttributeDTO
|
|
474
474
|
*/
|
|
475
475
|
'key'?: string;
|
|
476
476
|
/**
|
|
477
|
-
* The display name of the key.
|
|
477
|
+
* The display name of the key. Allowed characters are letters, numbers, whitespace, and the following special characters: . / | , ( ) & _ -
|
|
478
478
|
* @type {string}
|
|
479
479
|
* @memberof AttributeDTO
|
|
480
480
|
*/
|
|
@@ -485,6 +485,12 @@ export interface AttributeDTO {
|
|
|
485
485
|
* @memberof AttributeDTO
|
|
486
486
|
*/
|
|
487
487
|
'multiselect'?: boolean;
|
|
488
|
+
/**
|
|
489
|
+
* Indicates whether this Attribute supports ad-hoc (dynamically created) values, in addition to pre-defined static values. Ad-hoc values are created dynamically through an internal service-to-service flow rather than through the public create-value API. This field can be set when creating an Attribute; if omitted, it defaults to false.
|
|
490
|
+
* @type {boolean}
|
|
491
|
+
* @memberof AttributeDTO
|
|
492
|
+
*/
|
|
493
|
+
'isAdhoc'?: boolean | null;
|
|
488
494
|
/**
|
|
489
495
|
* The status of the Attribute.
|
|
490
496
|
* @type {string}
|
|
@@ -504,7 +510,7 @@ export interface AttributeDTO {
|
|
|
504
510
|
*/
|
|
505
511
|
'objectTypes'?: Array<string> | null;
|
|
506
512
|
/**
|
|
507
|
-
* The description of the Attribute.
|
|
513
|
+
* The description of the Attribute. Allowed characters are letters, numbers, whitespace, and the following special characters: . / | , ( ) & _ : -
|
|
508
514
|
* @type {string}
|
|
509
515
|
* @memberof AttributeDTO
|
|
510
516
|
*/
|
|
@@ -536,13 +542,13 @@ export interface AttributeDTOList {
|
|
|
536
542
|
*/
|
|
537
543
|
export interface AttributeValueDTO {
|
|
538
544
|
/**
|
|
539
|
-
* Technical name of the Attribute value. This is unique and cannot be changed after creation.
|
|
545
|
+
* Technical name of the Attribute value. This is unique and cannot be changed after creation. Allowed characters are letters, numbers, dashes (-), and underscores (_); the value cannot start or end with a dash or underscore.
|
|
540
546
|
* @type {string}
|
|
541
547
|
* @memberof AttributeValueDTO
|
|
542
548
|
*/
|
|
543
549
|
'value'?: string;
|
|
544
550
|
/**
|
|
545
|
-
* The display name of the Attribute value.
|
|
551
|
+
* The display name of the Attribute value. Allowed characters are letters, numbers, whitespace, and the following special characters: . / | , ( ) & _ -
|
|
546
552
|
* @type {string}
|
|
547
553
|
* @memberof AttributeValueDTO
|
|
548
554
|
*/
|
|
@@ -553,7 +559,18 @@ export interface AttributeValueDTO {
|
|
|
553
559
|
* @memberof AttributeValueDTO
|
|
554
560
|
*/
|
|
555
561
|
'status'?: string;
|
|
562
|
+
/**
|
|
563
|
+
* Indicates how this Attribute value was created. static values are pre-defined and created directly through this API. adhoc values are created dynamically through an internal service-to-service flow when the parent Attribute has isAdhoc set to true, and cannot be created directly through the public create-value API.
|
|
564
|
+
* @type {string}
|
|
565
|
+
* @memberof AttributeValueDTO
|
|
566
|
+
*/
|
|
567
|
+
'type'?: AttributeValueDTOTypeEnum | null;
|
|
556
568
|
}
|
|
569
|
+
export declare const AttributeValueDTOTypeEnum: {
|
|
570
|
+
readonly Static: "static";
|
|
571
|
+
readonly Adhoc: "adhoc";
|
|
572
|
+
};
|
|
573
|
+
export type AttributeValueDTOTypeEnum = typeof AttributeValueDTOTypeEnum[keyof typeof AttributeValueDTOTypeEnum];
|
|
557
574
|
/**
|
|
558
575
|
*
|
|
559
576
|
* @export
|
|
@@ -78,7 +78,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
78
78
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
79
79
|
};
|
|
80
80
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
81
|
-
exports.AccessProfilesApi = exports.AccessProfilesApiFactory = exports.AccessProfilesApiFp = exports.AccessProfilesApiAxiosParamCreator = exports.ProvisioningCriteriaOperation = exports.OwnerReferenceTypeEnum = exports.LocaleOrigin = exports.JsonPatchOperationOpEnum = exports.EntitlementRefTypeEnum = exports.EntitlementOwnerTypeEnum = exports.AdditionalOwnerRefTypeEnum = exports.AccessProfileUsageUsedByInnerTypeEnum = exports.AccessProfileSourceRefTypeEnum = exports.AccessProfileApprovalSchemeApproverTypeEnum = exports.AccessDurationTimeUnitEnum = void 0;
|
|
81
|
+
exports.AccessProfilesApi = exports.AccessProfilesApiFactory = exports.AccessProfilesApiFp = exports.AccessProfilesApiAxiosParamCreator = exports.ProvisioningCriteriaOperation = exports.OwnerReferenceTypeEnum = exports.LocaleOrigin = exports.JsonPatchOperationOpEnum = exports.EntitlementRefTypeEnum = exports.EntitlementOwnerTypeEnum = exports.AttributeValueDTOTypeEnum = exports.AdditionalOwnerRefTypeEnum = exports.AccessProfileUsageUsedByInnerTypeEnum = exports.AccessProfileSourceRefTypeEnum = exports.AccessProfileApprovalSchemeApproverTypeEnum = exports.AccessDurationTimeUnitEnum = void 0;
|
|
82
82
|
var axios_1 = __importDefault(require("axios"));
|
|
83
83
|
// Some imports not used depending on template conditions
|
|
84
84
|
// @ts-ignore
|
|
@@ -112,6 +112,10 @@ exports.AdditionalOwnerRefTypeEnum = {
|
|
|
112
112
|
Identity: 'IDENTITY',
|
|
113
113
|
GovernanceGroup: 'GOVERNANCE_GROUP'
|
|
114
114
|
};
|
|
115
|
+
exports.AttributeValueDTOTypeEnum = {
|
|
116
|
+
Static: 'static',
|
|
117
|
+
Adhoc: 'adhoc'
|
|
118
|
+
};
|
|
115
119
|
exports.EntitlementOwnerTypeEnum = {
|
|
116
120
|
Identity: 'IDENTITY'
|
|
117
121
|
};
|