@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.
@@ -355,13 +355,13 @@ export interface ArrayInner {
355
355
  */
356
356
  export interface AttributeDTO {
357
357
  /**
358
- * Technical name of the Attribute. This is unique and cannot be changed after creation.
358
+ * 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.
359
359
  * @type {string}
360
360
  * @memberof AttributeDTO
361
361
  */
362
362
  'key'?: string;
363
363
  /**
364
- * The display name of the key.
364
+ * The display name of the key. Allowed characters are letters, numbers, whitespace, and the following special characters: . / | , ( ) & _ -
365
365
  * @type {string}
366
366
  * @memberof AttributeDTO
367
367
  */
@@ -372,6 +372,12 @@ export interface AttributeDTO {
372
372
  * @memberof AttributeDTO
373
373
  */
374
374
  'multiselect'?: boolean;
375
+ /**
376
+ * 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.
377
+ * @type {boolean}
378
+ * @memberof AttributeDTO
379
+ */
380
+ 'isAdhoc'?: boolean | null;
375
381
  /**
376
382
  * The status of the Attribute.
377
383
  * @type {string}
@@ -391,7 +397,7 @@ export interface AttributeDTO {
391
397
  */
392
398
  'objectTypes'?: Array<string> | null;
393
399
  /**
394
- * The description of the Attribute.
400
+ * The description of the Attribute. Allowed characters are letters, numbers, whitespace, and the following special characters: . / | , ( ) & _ : -
395
401
  * @type {string}
396
402
  * @memberof AttributeDTO
397
403
  */
@@ -423,13 +429,13 @@ export interface AttributeDTOList {
423
429
  */
424
430
  export interface AttributeValueDTO {
425
431
  /**
426
- * Technical name of the Attribute value. This is unique and cannot be changed after creation.
432
+ * 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.
427
433
  * @type {string}
428
434
  * @memberof AttributeValueDTO
429
435
  */
430
436
  'value'?: string;
431
437
  /**
432
- * The display name of the Attribute value.
438
+ * The display name of the Attribute value. Allowed characters are letters, numbers, whitespace, and the following special characters: . / | , ( ) & _ -
433
439
  * @type {string}
434
440
  * @memberof AttributeValueDTO
435
441
  */
@@ -440,7 +446,18 @@ export interface AttributeValueDTO {
440
446
  * @memberof AttributeValueDTO
441
447
  */
442
448
  'status'?: string;
449
+ /**
450
+ * 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.
451
+ * @type {string}
452
+ * @memberof AttributeValueDTO
453
+ */
454
+ 'type'?: AttributeValueDTOTypeEnum | null;
443
455
  }
456
+ export declare const AttributeValueDTOTypeEnum: {
457
+ readonly Static: "static";
458
+ readonly Adhoc: "adhoc";
459
+ };
460
+ export type AttributeValueDTOTypeEnum = typeof AttributeValueDTOTypeEnum[keyof typeof AttributeValueDTOTypeEnum];
444
461
  /**
445
462
  * A Dimension
446
463
  * @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.DimensionsApi = exports.DimensionsApiFactory = exports.DimensionsApiFp = exports.DimensionsApiAxiosParamCreator = exports.TaskResultDtoTypeEnum = exports.ProvisioningCriteriaOperation = exports.OwnerReferenceTypeEnum = exports.LocaleOrigin = exports.JsonPatchOperationOpEnum = exports.EntitlementRefTypeEnum = exports.EntitlementOwnerTypeEnum = exports.DimensionMembershipSelectorType = exports.DimensionCriteriaOperation = exports.DimensionCriteriaKeyType = exports.AdditionalOwnerRefTypeEnum = exports.AccessProfileSourceRefTypeEnum = exports.AccessProfileRefTypeEnum = exports.AccessProfileApprovalSchemeApproverTypeEnum = exports.AccessDurationTimeUnitEnum = void 0;
81
+ exports.DimensionsApi = exports.DimensionsApiFactory = exports.DimensionsApiFp = exports.DimensionsApiAxiosParamCreator = exports.TaskResultDtoTypeEnum = exports.ProvisioningCriteriaOperation = exports.OwnerReferenceTypeEnum = exports.LocaleOrigin = exports.JsonPatchOperationOpEnum = exports.EntitlementRefTypeEnum = exports.EntitlementOwnerTypeEnum = exports.DimensionMembershipSelectorType = exports.DimensionCriteriaOperation = exports.DimensionCriteriaKeyType = exports.AttributeValueDTOTypeEnum = exports.AdditionalOwnerRefTypeEnum = exports.AccessProfileSourceRefTypeEnum = exports.AccessProfileRefTypeEnum = 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
  /**
116
120
  * Indicates whether the associated criteria represents an expression on identity attributes.
117
121
  * @export