@sailpoint/api-client 2.2.18 → 2.2.19

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.
@@ -457,6 +457,56 @@ export interface CreateIdentityCollectorV1200Response {
457
457
  */
458
458
  'name'?: string;
459
459
  }
460
+ /**
461
+ *
462
+ * @export
463
+ * @interface CreateIdentityCollectorV1409Response
464
+ */
465
+ export interface CreateIdentityCollectorV1409Response {
466
+ /**
467
+ * Fine-grained error code providing more detail of the error.
468
+ * @type {string}
469
+ * @memberof CreateIdentityCollectorV1409Response
470
+ */
471
+ 'detailCode'?: string;
472
+ /**
473
+ * Unique tracking id for the error.
474
+ * @type {string}
475
+ * @memberof CreateIdentityCollectorV1409Response
476
+ */
477
+ 'trackingId'?: string;
478
+ /**
479
+ * Generic localized reason for error.
480
+ * @type {Array<CreateIdentityCollectorV1409ResponseMessagesInner>}
481
+ * @memberof CreateIdentityCollectorV1409Response
482
+ */
483
+ 'messages'?: Array<CreateIdentityCollectorV1409ResponseMessagesInner>;
484
+ }
485
+ /**
486
+ *
487
+ * @export
488
+ * @interface CreateIdentityCollectorV1409ResponseMessagesInner
489
+ */
490
+ export interface CreateIdentityCollectorV1409ResponseMessagesInner {
491
+ /**
492
+ * The locale for the message text, a BCP 47 language tag.
493
+ * @type {string}
494
+ * @memberof CreateIdentityCollectorV1409ResponseMessagesInner
495
+ */
496
+ 'locale'?: string;
497
+ /**
498
+ * An indicator of how the locale was selected.
499
+ * @type {string}
500
+ * @memberof CreateIdentityCollectorV1409ResponseMessagesInner
501
+ */
502
+ 'localeOrigin'?: string;
503
+ /**
504
+ * Actual text of the error message in the indicated locale.
505
+ * @type {string}
506
+ * @memberof CreateIdentityCollectorV1409ResponseMessagesInner
507
+ */
508
+ 'text'?: string;
509
+ }
460
510
  /**
461
511
  *
462
512
  * @export
@@ -802,6 +852,93 @@ export interface Identitycollectorcollectionsettings {
802
852
  */
803
853
  'fieldMappings': Array<Identitycollectorfieldmapping>;
804
854
  }
855
+ /**
856
+ * Conflict response returned when an identity collector cannot be deleted because it is in use.
857
+ * @export
858
+ * @interface Identitycollectordependenciesconflicterror
859
+ */
860
+ export interface Identitycollectordependenciesconflicterror {
861
+ /**
862
+ * Fine-grained error code providing more detail of the error.
863
+ * @type {string}
864
+ * @memberof Identitycollectordependenciesconflicterror
865
+ */
866
+ 'detailCode'?: string;
867
+ /**
868
+ * Unique tracking id for the error.
869
+ * @type {string}
870
+ * @memberof Identitycollectordependenciesconflicterror
871
+ */
872
+ 'trackingId'?: string;
873
+ /**
874
+ * Generic localized reason for error.
875
+ * @type {Array<IdentitycollectordependenciesconflicterrorMessagesInner>}
876
+ * @memberof Identitycollectordependenciesconflicterror
877
+ */
878
+ 'messages'?: Array<IdentitycollectordependenciesconflicterrorMessagesInner>;
879
+ /**
880
+ * Dependent objects blocking deletion. At most three items are returned.
881
+ * @type {Array<Identitycollectordependency>}
882
+ * @memberof Identitycollectordependenciesconflicterror
883
+ */
884
+ 'dependencies'?: Array<Identitycollectordependency>;
885
+ /**
886
+ * Number of additional dependent objects not included in `dependencies`.
887
+ * @type {number}
888
+ * @memberof Identitycollectordependenciesconflicterror
889
+ */
890
+ 'extendedDependenciesCount'?: number;
891
+ }
892
+ /**
893
+ *
894
+ * @export
895
+ * @interface IdentitycollectordependenciesconflicterrorMessagesInner
896
+ */
897
+ export interface IdentitycollectordependenciesconflicterrorMessagesInner {
898
+ /**
899
+ * The locale for the message text, a BCP 47 language tag.
900
+ * @type {string}
901
+ * @memberof IdentitycollectordependenciesconflicterrorMessagesInner
902
+ */
903
+ 'locale'?: string;
904
+ /**
905
+ * An indicator of how the locale was selected.
906
+ * @type {string}
907
+ * @memberof IdentitycollectordependenciesconflicterrorMessagesInner
908
+ */
909
+ 'localeOrigin'?: string;
910
+ /**
911
+ * Actual text of the error message in the indicated locale.
912
+ * @type {string}
913
+ * @memberof IdentitycollectordependenciesconflicterrorMessagesInner
914
+ */
915
+ 'text'?: string;
916
+ }
917
+ /**
918
+ * A dependent object blocking deletion of an identity collector.
919
+ * @export
920
+ * @interface Identitycollectordependency
921
+ */
922
+ export interface Identitycollectordependency {
923
+ /**
924
+ * The display name of the dependent object. For applications, the platform dependency query may prefix the object name (for example, `Application - Finance SharePoint`).
925
+ * @type {string}
926
+ * @memberof Identitycollectordependency
927
+ */
928
+ 'name'?: string;
929
+ /**
930
+ * The internal dependent object type identifier (fully qualified type name).
931
+ * @type {string}
932
+ * @memberof Identitycollectordependency
933
+ */
934
+ 'type'?: string;
935
+ /**
936
+ * The human-readable display name of the dependent object type.
937
+ * @type {string}
938
+ * @memberof Identitycollectordependency
939
+ */
940
+ 'typeDisplayName'?: string;
941
+ }
805
942
  /**
806
943
  *
807
944
  * @export
@@ -936,56 +1073,6 @@ export interface PermissionCollectorSettings {
936
1073
  */
937
1074
  'effectivePermissionsSource'?: string | null;
938
1075
  }
939
- /**
940
- *
941
- * @export
942
- * @interface PutIdentityCollectorV1409Response
943
- */
944
- export interface PutIdentityCollectorV1409Response {
945
- /**
946
- * Fine-grained error code providing more detail of the error.
947
- * @type {string}
948
- * @memberof PutIdentityCollectorV1409Response
949
- */
950
- 'detailCode'?: string;
951
- /**
952
- * Unique tracking id for the error.
953
- * @type {string}
954
- * @memberof PutIdentityCollectorV1409Response
955
- */
956
- 'trackingId'?: string;
957
- /**
958
- * Generic localized reason for error.
959
- * @type {Array<PutIdentityCollectorV1409ResponseMessagesInner>}
960
- * @memberof PutIdentityCollectorV1409Response
961
- */
962
- 'messages'?: Array<PutIdentityCollectorV1409ResponseMessagesInner>;
963
- }
964
- /**
965
- *
966
- * @export
967
- * @interface PutIdentityCollectorV1409ResponseMessagesInner
968
- */
969
- export interface PutIdentityCollectorV1409ResponseMessagesInner {
970
- /**
971
- * The locale for the message text, a BCP 47 language tag.
972
- * @type {string}
973
- * @memberof PutIdentityCollectorV1409ResponseMessagesInner
974
- */
975
- 'locale'?: string;
976
- /**
977
- * An indicator of how the locale was selected.
978
- * @type {string}
979
- * @memberof PutIdentityCollectorV1409ResponseMessagesInner
980
- */
981
- 'localeOrigin'?: string;
982
- /**
983
- * Actual text of the error message in the indicated locale.
984
- * @type {string}
985
- * @memberof PutIdentityCollectorV1409ResponseMessagesInner
986
- */
987
- 'text'?: string;
988
- }
989
1076
  /**
990
1077
  *
991
1078
  * @export
@@ -1607,7 +1694,7 @@ export declare const DataAccessSecurityApiAxiosParamCreator: (configuration?: Co
1607
1694
  /**
1608
1695
  * This endpoint lists the identity collectors in Data Access Security with optional filtering and pagination. Sorting is not supported for this endpoint; supplying the `sorters` query parameter results in a validation error.
1609
1696
  * @summary List identity collectors
1610
- * @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: **sourceId**: *eq* **type**: *eq, in* **id**: *eq, in* Supported composite operators are *and, or*
1697
+ * @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: **sourceId**: *eq* **type**: *eq, in* **id**: *eq, in* **name**: *eq, co* For &#x60;name&#x60;, &#x60;eq&#x60; performs an exact match and &#x60;co&#x60; performs a contains (substring) match. Use public type display names from [List Identity Collector Types](https://developer.sailpoint.com/docs/api/get-identity-collector-types-v-1) with &#x60;type&#x60; filters (for example, &#x60;AWS&#x60;, not &#x60;AWS SaaS&#x60;). Supported composite operators are *and, or*
1611
1698
  * @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.
1612
1699
  * @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.
1613
1700
  * @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&#x3D;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.
@@ -1888,7 +1975,7 @@ export declare const DataAccessSecurityApiFp: (configuration?: Configuration) =>
1888
1975
  /**
1889
1976
  * This endpoint lists the identity collectors in Data Access Security with optional filtering and pagination. Sorting is not supported for this endpoint; supplying the `sorters` query parameter results in a validation error.
1890
1977
  * @summary List identity collectors
1891
- * @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: **sourceId**: *eq* **type**: *eq, in* **id**: *eq, in* Supported composite operators are *and, or*
1978
+ * @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: **sourceId**: *eq* **type**: *eq, in* **id**: *eq, in* **name**: *eq, co* For &#x60;name&#x60;, &#x60;eq&#x60; performs an exact match and &#x60;co&#x60; performs a contains (substring) match. Use public type display names from [List Identity Collector Types](https://developer.sailpoint.com/docs/api/get-identity-collector-types-v-1) with &#x60;type&#x60; filters (for example, &#x60;AWS&#x60;, not &#x60;AWS SaaS&#x60;). Supported composite operators are *and, or*
1892
1979
  * @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.
1893
1980
  * @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.
1894
1981
  * @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&#x3D;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.
@@ -2647,7 +2734,7 @@ export interface DataAccessSecurityApiListDataDictionaryFieldsV1Request {
2647
2734
  */
2648
2735
  export interface DataAccessSecurityApiListIdentityCollectorsV1Request {
2649
2736
  /**
2650
- * 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: **sourceId**: *eq* **type**: *eq, in* **id**: *eq, in* Supported composite operators are *and, or*
2737
+ * 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: **sourceId**: *eq* **type**: *eq, in* **id**: *eq, in* **name**: *eq, co* For &#x60;name&#x60;, &#x60;eq&#x60; performs an exact match and &#x60;co&#x60; performs a contains (substring) match. Use public type display names from [List Identity Collector Types](https://developer.sailpoint.com/docs/api/get-identity-collector-types-v-1) with &#x60;type&#x60; filters (for example, &#x60;AWS&#x60;, not &#x60;AWS SaaS&#x60;). Supported composite operators are *and, or*
2651
2738
  * @type {string}
2652
2739
  * @memberof DataAccessSecurityApiListIdentityCollectorsV1
2653
2740
  */
@@ -1143,7 +1143,7 @@ var DataAccessSecurityApiAxiosParamCreator = function (configuration) {
1143
1143
  /**
1144
1144
  * This endpoint lists the identity collectors in Data Access Security with optional filtering and pagination. Sorting is not supported for this endpoint; supplying the `sorters` query parameter results in a validation error.
1145
1145
  * @summary List identity collectors
1146
- * @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: **sourceId**: *eq* **type**: *eq, in* **id**: *eq, in* Supported composite operators are *and, or*
1146
+ * @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: **sourceId**: *eq* **type**: *eq, in* **id**: *eq, in* **name**: *eq, co* For &#x60;name&#x60;, &#x60;eq&#x60; performs an exact match and &#x60;co&#x60; performs a contains (substring) match. Use public type display names from [List Identity Collector Types](https://developer.sailpoint.com/docs/api/get-identity-collector-types-v-1) with &#x60;type&#x60; filters (for example, &#x60;AWS&#x60;, not &#x60;AWS SaaS&#x60;). Supported composite operators are *and, or*
1147
1147
  * @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.
1148
1148
  * @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.
1149
1149
  * @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&#x3D;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.
@@ -1978,7 +1978,7 @@ var DataAccessSecurityApiFp = function (configuration) {
1978
1978
  /**
1979
1979
  * This endpoint lists the identity collectors in Data Access Security with optional filtering and pagination. Sorting is not supported for this endpoint; supplying the `sorters` query parameter results in a validation error.
1980
1980
  * @summary List identity collectors
1981
- * @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: **sourceId**: *eq* **type**: *eq, in* **id**: *eq, in* Supported composite operators are *and, or*
1981
+ * @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: **sourceId**: *eq* **type**: *eq, in* **id**: *eq, in* **name**: *eq, co* For &#x60;name&#x60;, &#x60;eq&#x60; performs an exact match and &#x60;co&#x60; performs a contains (substring) match. Use public type display names from [List Identity Collector Types](https://developer.sailpoint.com/docs/api/get-identity-collector-types-v-1) with &#x60;type&#x60; filters (for example, &#x60;AWS&#x60;, not &#x60;AWS SaaS&#x60;). Supported composite operators are *and, or*
1982
1982
  * @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.
1983
1983
  * @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.
1984
1984
  * @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&#x3D;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.