@cdot65/prisma-airs-sdk 0.17.0 → 0.18.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/README.md +22 -0
- package/dist/index.cjs +310 -13
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +198 -18
- package/dist/index.d.ts +198 -18
- package/dist/index.js +304 -12
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -31414,6 +31414,78 @@ declare class AISecSDKException extends Error {
|
|
|
31414
31414
|
constructor(message: string, errorType?: ErrorType, metadata?: AISecSDKExceptionMetadata);
|
|
31415
31415
|
}
|
|
31416
31416
|
|
|
31417
|
+
/**
|
|
31418
|
+
* Pagination + search options shared by every list endpoint across the OAuth domains.
|
|
31419
|
+
* Sub-clients extend this with endpoint-specific filter fields and merge their additions
|
|
31420
|
+
* into the params record returned by the internal `serializeListing` helper.
|
|
31421
|
+
*/
|
|
31422
|
+
interface ListingOptions {
|
|
31423
|
+
/** Number of records to skip from the start. */
|
|
31424
|
+
skip?: number;
|
|
31425
|
+
/** Max records to return. */
|
|
31426
|
+
limit?: number;
|
|
31427
|
+
/** Free-text search filter. */
|
|
31428
|
+
search?: string;
|
|
31429
|
+
}
|
|
31430
|
+
/** A page returned to the generic pagination helper. */
|
|
31431
|
+
interface PaginationPage<T, Cursor> {
|
|
31432
|
+
/** Records in this page. */
|
|
31433
|
+
items: T[];
|
|
31434
|
+
/** Cursor for the next page. Omit when this is the last page. */
|
|
31435
|
+
next?: Cursor;
|
|
31436
|
+
}
|
|
31437
|
+
/** Options controlling collection of an async listing. */
|
|
31438
|
+
interface CollectAllOptions {
|
|
31439
|
+
/** Maximum records to collect. Defaults to 10,000. Use `0` for no limit. */
|
|
31440
|
+
max?: number;
|
|
31441
|
+
}
|
|
31442
|
+
/**
|
|
31443
|
+
* Yield records from a cursor-based page fetcher until it has no next cursor.
|
|
31444
|
+
*
|
|
31445
|
+
* @example
|
|
31446
|
+
* ```ts
|
|
31447
|
+
* import { collectAll, paginate } from '@cdot65/prisma-airs-sdk';
|
|
31448
|
+
* const records = await collectAll(paginate(async (offset: number) => {
|
|
31449
|
+
* const page = await api.list({ offset, limit: 100 });
|
|
31450
|
+
* return { items: page.items, next: page.next_offset };
|
|
31451
|
+
* }, 0));
|
|
31452
|
+
* ```
|
|
31453
|
+
*/
|
|
31454
|
+
declare function paginate<T, Cursor>(fetchPage: (cursor: Cursor) => Promise<PaginationPage<T, Cursor>>, initialCursor: Cursor): AsyncGenerator<T>;
|
|
31455
|
+
/**
|
|
31456
|
+
* Collect an async listing into an array with a runaway-walk safety cap.
|
|
31457
|
+
*
|
|
31458
|
+
* @example
|
|
31459
|
+
* ```ts
|
|
31460
|
+
* import { collectAll } from '@cdot65/prisma-airs-sdk';
|
|
31461
|
+
* const firstThousand = await collectAll(client.listAllIter(), { max: 1_000 });
|
|
31462
|
+
* ```
|
|
31463
|
+
*/
|
|
31464
|
+
declare function collectAll<T>(iterable: AsyncIterable<T>, opts?: CollectAllOptions): Promise<T[]>;
|
|
31465
|
+
/** @internal Options shared by all-page dialect adapters. */
|
|
31466
|
+
interface WalkAllOptions extends CollectAllOptions {
|
|
31467
|
+
limit?: number;
|
|
31468
|
+
}
|
|
31469
|
+
/** @internal Walk a skip/limit API using its normalized total when available. */
|
|
31470
|
+
declare function collectSkipPages<T>(fetchPage: (skip: number, limit: number) => Promise<{
|
|
31471
|
+
items: T[];
|
|
31472
|
+
total?: number | null;
|
|
31473
|
+
}>, opts?: WalkAllOptions): Promise<T[]>;
|
|
31474
|
+
/** @internal Walk a zero-indexed Spring page/size API until its `last` page. */
|
|
31475
|
+
declare function collectSpringPages<T>(fetchPage: (page: number, size: number) => Promise<{
|
|
31476
|
+
items: T[];
|
|
31477
|
+
last: boolean;
|
|
31478
|
+
}>, opts?: {
|
|
31479
|
+
size?: number;
|
|
31480
|
+
max?: number;
|
|
31481
|
+
}): Promise<T[]>;
|
|
31482
|
+
/**
|
|
31483
|
+
* @internal
|
|
31484
|
+
* Serialize the canonical listing fields into a string-keyed params record. Extra fields on
|
|
31485
|
+
* the input are ignored — callers add their own endpoint-specific filters to the result.
|
|
31486
|
+
*/
|
|
31487
|
+
declare function serializeListing(opts?: ListingOptions): Record<string, string>;
|
|
31488
|
+
|
|
31417
31489
|
/** Scan result verdict classification. */
|
|
31418
31490
|
declare const Verdict: {
|
|
31419
31491
|
readonly BENIGN: "benign";
|
|
@@ -107150,6 +107222,11 @@ interface PaginationOptions {
|
|
|
107150
107222
|
offset?: number;
|
|
107151
107223
|
/** Max items to return. Defaults to 100. */
|
|
107152
107224
|
limit?: number;
|
|
107225
|
+
/** Return only the latest revision of each profile when supported by the endpoint. */
|
|
107226
|
+
latest?: boolean;
|
|
107227
|
+
}
|
|
107228
|
+
/** Options for walking all security profile pages. */
|
|
107229
|
+
interface ProfileListAllOptions extends Omit<PaginationOptions, 'offset'>, CollectAllOptions {
|
|
107153
107230
|
}
|
|
107154
107231
|
/** @internal */
|
|
107155
107232
|
interface ProfilesClientOptions {
|
|
@@ -107201,6 +107278,14 @@ declare class ProfilesClient {
|
|
|
107201
107278
|
* ```
|
|
107202
107279
|
*/
|
|
107203
107280
|
list(opts?: PaginationOptions): Promise<SecurityProfileListResponse>;
|
|
107281
|
+
/**
|
|
107282
|
+
* List security profiles across every response page.
|
|
107283
|
+
* @example
|
|
107284
|
+
* ```ts
|
|
107285
|
+
* const profiles = await mgmt.profiles.listAll({ latest: true });
|
|
107286
|
+
* ```
|
|
107287
|
+
*/
|
|
107288
|
+
listAll(opts?: ProfileListAllOptions): Promise<SecurityProfile[]>;
|
|
107204
107289
|
/**
|
|
107205
107290
|
* Get a security profile by UUID.
|
|
107206
107291
|
* Fetches all profiles and filters — no dedicated API endpoint exists.
|
|
@@ -107288,6 +107373,14 @@ declare class ProfilesClient {
|
|
|
107288
107373
|
forceDelete(profileId: string, updatedBy: string): Promise<DeleteProfileResponse>;
|
|
107289
107374
|
}
|
|
107290
107375
|
|
|
107376
|
+
/** Options for listing topics, including client-side latest-revision grouping. */
|
|
107377
|
+
interface TopicListOptions extends Omit<PaginationOptions, 'latest'> {
|
|
107378
|
+
/** Walk all pages and return the highest revision for each topic name. */
|
|
107379
|
+
latestOnly?: boolean;
|
|
107380
|
+
}
|
|
107381
|
+
/** Options for walking all custom-topic pages. */
|
|
107382
|
+
interface TopicListAllOptions extends Omit<TopicListOptions, 'offset' | 'latestOnly'>, CollectAllOptions {
|
|
107383
|
+
}
|
|
107291
107384
|
/** @internal */
|
|
107292
107385
|
interface TopicsClientOptions {
|
|
107293
107386
|
baseUrl: string;
|
|
@@ -107338,7 +107431,31 @@ declare class TopicsClient {
|
|
|
107338
107431
|
* // revision: 1, active: true } ], next_offset: 20 }
|
|
107339
107432
|
* ```
|
|
107340
107433
|
*/
|
|
107341
|
-
list(opts?:
|
|
107434
|
+
list(opts?: TopicListOptions): Promise<CustomTopicListResponse>;
|
|
107435
|
+
/**
|
|
107436
|
+
* List custom topics across every response page.
|
|
107437
|
+
* @example
|
|
107438
|
+
* ```ts
|
|
107439
|
+
* const topics = await mgmt.topics.listAll({ limit: 200 });
|
|
107440
|
+
* ```
|
|
107441
|
+
*/
|
|
107442
|
+
listAll(opts?: TopicListAllOptions): Promise<CustomTopic[]>;
|
|
107443
|
+
/**
|
|
107444
|
+
* Get an exact custom-topic revision by UUID.
|
|
107445
|
+
* @example
|
|
107446
|
+
* ```ts
|
|
107447
|
+
* const topic = await mgmt.topics.get('550e8400-e29b-41d4-a716-446655440000');
|
|
107448
|
+
* ```
|
|
107449
|
+
*/
|
|
107450
|
+
get(topicId: string): Promise<CustomTopic>;
|
|
107451
|
+
/**
|
|
107452
|
+
* Get the highest revision of a custom topic by name.
|
|
107453
|
+
* @example
|
|
107454
|
+
* ```ts
|
|
107455
|
+
* const topic = await mgmt.topics.getByName('credit-cards');
|
|
107456
|
+
* ```
|
|
107457
|
+
*/
|
|
107458
|
+
getByName(topicName: string): Promise<CustomTopic>;
|
|
107342
107459
|
/**
|
|
107343
107460
|
* Update an existing custom topic.
|
|
107344
107461
|
* @param topicId - UUID of the topic to update.
|
|
@@ -107393,6 +107510,9 @@ declare class TopicsClient {
|
|
|
107393
107510
|
forceDelete(topicId: string, updatedBy?: string): Promise<DeleteTopicResponse>;
|
|
107394
107511
|
}
|
|
107395
107512
|
|
|
107513
|
+
interface ApiKeyListAllOptions extends Omit<PaginationOptions, 'offset' | 'latest'>, CollectAllOptions {
|
|
107514
|
+
}
|
|
107515
|
+
|
|
107396
107516
|
/** @internal */
|
|
107397
107517
|
interface ApiKeysClientOptions {
|
|
107398
107518
|
baseUrl: string;
|
|
@@ -107447,6 +107567,8 @@ declare class ApiKeysClient {
|
|
|
107447
107567
|
* ```
|
|
107448
107568
|
*/
|
|
107449
107569
|
list(opts?: PaginationOptions): Promise<ApiKeyListResponse>;
|
|
107570
|
+
/** List all API keys. @example `const keys = await mgmt.apiKeys.listAll();` */
|
|
107571
|
+
listAll(opts?: ApiKeyListAllOptions): Promise<ApiKey[]>;
|
|
107450
107572
|
/**
|
|
107451
107573
|
* Delete an API key by name.
|
|
107452
107574
|
* @param apiKeyName - Name of the API key to delete.
|
|
@@ -107484,6 +107606,9 @@ declare class ApiKeysClient {
|
|
|
107484
107606
|
regenerate(apiKeyId: string, body: ApiKeyRegenerateRequest): Promise<ApiKey>;
|
|
107485
107607
|
}
|
|
107486
107608
|
|
|
107609
|
+
interface CustomerAppListAllOptions extends Omit<PaginationOptions, 'offset' | 'latest'>, CollectAllOptions {
|
|
107610
|
+
}
|
|
107611
|
+
|
|
107487
107612
|
/** @internal */
|
|
107488
107613
|
interface CustomerAppsClientOptions {
|
|
107489
107614
|
baseUrl: string;
|
|
@@ -107529,6 +107654,8 @@ declare class CustomerAppsClient {
|
|
|
107529
107654
|
* ```
|
|
107530
107655
|
*/
|
|
107531
107656
|
list(opts?: PaginationOptions): Promise<CustomerAppListResponse>;
|
|
107657
|
+
/** List all customer applications. @example `const apps = await mgmt.customerApps.listAll();` */
|
|
107658
|
+
listAll(opts?: CustomerAppListAllOptions): Promise<CustomerApp[]>;
|
|
107532
107659
|
/**
|
|
107533
107660
|
* Update a customer app.
|
|
107534
107661
|
* @param customerAppId - UUID of the customer app to update.
|
|
@@ -107756,8 +107883,8 @@ interface DashboardClientOptions {
|
|
|
107756
107883
|
*/
|
|
107757
107884
|
interface DashboardAppQuery {
|
|
107758
107885
|
/**
|
|
107759
|
-
* Customer application UUID. Source it from
|
|
107760
|
-
*
|
|
107886
|
+
* Customer application UUID. Source it from `CustomerAppsClient.list()`'s
|
|
107887
|
+
* `customer_appId` field.
|
|
107761
107888
|
*/
|
|
107762
107889
|
appId: string;
|
|
107763
107890
|
/**
|
|
@@ -107950,6 +108077,8 @@ interface DataFilteringProfileListParams {
|
|
|
107950
108077
|
/** Partial-match filter on profile name. */
|
|
107951
108078
|
name?: string;
|
|
107952
108079
|
}
|
|
108080
|
+
interface DataFilteringProfileListAllParams extends Omit<DataFilteringProfileListParams, 'page'>, CollectAllOptions {
|
|
108081
|
+
}
|
|
107953
108082
|
/** @internal */
|
|
107954
108083
|
interface DataFilteringProfilesClientOptions {
|
|
107955
108084
|
baseUrl: string;
|
|
@@ -107983,6 +108112,8 @@ declare class DataFilteringProfilesClient {
|
|
|
107983
108112
|
* ```
|
|
107984
108113
|
*/
|
|
107985
108114
|
list(params?: DataFilteringProfileListParams): Promise<PageDataFilteringProfileResponse>;
|
|
108115
|
+
/** List all filtering profiles. @example `const profiles = await mgmt.dlp.dataFilteringProfiles.listAll();` */
|
|
108116
|
+
listAll(params?: DataFilteringProfileListAllParams): Promise<PageDataFilteringProfileResponse['content']>;
|
|
107986
108117
|
/**
|
|
107987
108118
|
* Get a single data filtering profile by resource ID.
|
|
107988
108119
|
* @example
|
|
@@ -108028,6 +108159,8 @@ interface DataPatternListParams {
|
|
|
108028
108159
|
*/
|
|
108029
108160
|
sort?: string[];
|
|
108030
108161
|
}
|
|
108162
|
+
interface DataPatternListAllParams extends Omit<DataPatternListParams, 'page'>, CollectAllOptions {
|
|
108163
|
+
}
|
|
108031
108164
|
/** @internal */
|
|
108032
108165
|
interface DataPatternsClientOptions {
|
|
108033
108166
|
baseUrl: string;
|
|
@@ -108062,6 +108195,8 @@ declare class DataPatternsClient {
|
|
|
108062
108195
|
* ```
|
|
108063
108196
|
*/
|
|
108064
108197
|
list(params?: DataPatternListParams): Promise<PageDataPatternResponse>;
|
|
108198
|
+
/** List all data patterns. @example `const patterns = await mgmt.dlp.dataPatterns.listAll();` */
|
|
108199
|
+
listAll(params?: DataPatternListAllParams): Promise<PageDataPatternResponse['content']>;
|
|
108065
108200
|
/**
|
|
108066
108201
|
* Create a new custom data pattern.
|
|
108067
108202
|
* @example
|
|
@@ -108158,6 +108293,8 @@ interface DataProfileListParams {
|
|
|
108158
108293
|
*/
|
|
108159
108294
|
sort?: string[];
|
|
108160
108295
|
}
|
|
108296
|
+
interface DataProfileListAllParams extends Omit<DataProfileListParams, 'page'>, CollectAllOptions {
|
|
108297
|
+
}
|
|
108161
108298
|
/** @internal */
|
|
108162
108299
|
interface DataProfilesClientOptions {
|
|
108163
108300
|
baseUrl: string;
|
|
@@ -108193,6 +108330,8 @@ declare class DataProfilesClient {
|
|
|
108193
108330
|
* ```
|
|
108194
108331
|
*/
|
|
108195
108332
|
list(params?: DataProfileListParams): Promise<PageDataProfileResponse>;
|
|
108333
|
+
/** List all data profiles. @example `const profiles = await mgmt.dlp.dataProfiles.listAll();` */
|
|
108334
|
+
listAll(params?: DataProfileListAllParams): Promise<PageDataProfileResponse['content']>;
|
|
108196
108335
|
/**
|
|
108197
108336
|
* Create a new data profile.
|
|
108198
108337
|
* @example
|
|
@@ -108286,6 +108425,8 @@ interface DictionaryListParams {
|
|
|
108286
108425
|
/** When true, the API includes the `keywords` array in each response entry. */
|
|
108287
108426
|
keywords?: boolean;
|
|
108288
108427
|
}
|
|
108428
|
+
interface DictionaryListAllParams extends Omit<DictionaryListParams, 'page'>, CollectAllOptions {
|
|
108429
|
+
}
|
|
108289
108430
|
/** Parameters accepted by {@link DictionariesClient.get}. */
|
|
108290
108431
|
interface DictionaryGetParams {
|
|
108291
108432
|
/** When true, request that the response include the dictionary's keyword list. */
|
|
@@ -108333,6 +108474,8 @@ declare class DictionariesClient {
|
|
|
108333
108474
|
* ```
|
|
108334
108475
|
*/
|
|
108335
108476
|
list(params?: DictionaryListParams): Promise<PageDictionaryResponse>;
|
|
108477
|
+
/** List all dictionaries. @example `const dictionaries = await mgmt.dlp.dictionaries.listAll();` */
|
|
108478
|
+
listAll(params?: DictionaryListAllParams): Promise<PageDictionaryResponse['content']>;
|
|
108336
108479
|
/**
|
|
108337
108480
|
* Create a dictionary by uploading a keyword file. Sends a multipart body — the SDK does
|
|
108338
108481
|
* not set Content-Type so the runtime can write the correct boundary.
|
|
@@ -108654,20 +108797,6 @@ declare class OAuthClient {
|
|
|
108654
108797
|
private fetchToken;
|
|
108655
108798
|
}
|
|
108656
108799
|
|
|
108657
|
-
/**
|
|
108658
|
-
* Pagination + search options shared by every list endpoint across the OAuth domains.
|
|
108659
|
-
* Sub-clients extend this with endpoint-specific filter fields and merge their additions
|
|
108660
|
-
* into the params record returned by the internal `serializeListing` helper.
|
|
108661
|
-
*/
|
|
108662
|
-
interface ListingOptions {
|
|
108663
|
-
/** Number of records to skip from the start. */
|
|
108664
|
-
skip?: number;
|
|
108665
|
-
/** Max records to return. */
|
|
108666
|
-
limit?: number;
|
|
108667
|
-
/** Free-text search filter. */
|
|
108668
|
-
search?: string;
|
|
108669
|
-
}
|
|
108670
|
-
|
|
108671
108800
|
/** Pagination + filter options for model security scan listing. */
|
|
108672
108801
|
interface ModelSecurityScanListOptions extends ListingOptions {
|
|
108673
108802
|
/** Sort field: 'created_at' or 'updated_at'. */
|
|
@@ -108689,6 +108818,8 @@ interface ModelSecurityScanListOptions extends ListingOptions {
|
|
|
108689
108818
|
/** Labels query filter (max 4096 chars). */
|
|
108690
108819
|
labels_query?: string;
|
|
108691
108820
|
}
|
|
108821
|
+
interface ModelSecurityScanListAllOptions extends Omit<ModelSecurityScanListOptions, 'skip'>, CollectAllOptions {
|
|
108822
|
+
}
|
|
108692
108823
|
/** Options for listing rule evaluations within a scan. */
|
|
108693
108824
|
interface ModelSecurityEvaluationListOptions extends ListingOptions {
|
|
108694
108825
|
/** Sort field: 'created_at' or 'updated_at'. */
|
|
@@ -108763,6 +108894,8 @@ declare class ModelSecurityScansClient {
|
|
|
108763
108894
|
* ```
|
|
108764
108895
|
*/
|
|
108765
108896
|
list(opts?: ModelSecurityScanListOptions): Promise<ScanList>;
|
|
108897
|
+
/** List every model-security scan page. @example `const scans = await ms.scans.listAll();` */
|
|
108898
|
+
listAll(opts?: ModelSecurityScanListAllOptions): Promise<ScanList['scans']>;
|
|
108766
108899
|
/**
|
|
108767
108900
|
* Get a single scan by UUID.
|
|
108768
108901
|
* @param uuid - Scan UUID.
|
|
@@ -108955,6 +109088,8 @@ interface ModelSecurityGroupListOptions extends ListingOptions {
|
|
|
108955
109088
|
/** Filter by rule UUIDs with ALLOWING or BLOCKING state. */
|
|
108956
109089
|
enabled_rules?: string[];
|
|
108957
109090
|
}
|
|
109091
|
+
interface ModelSecurityGroupListAllOptions extends Omit<ModelSecurityGroupListOptions, 'skip'>, CollectAllOptions {
|
|
109092
|
+
}
|
|
108958
109093
|
/** Options for listing rule instances within a security group. */
|
|
108959
109094
|
interface ModelSecurityRuleInstanceListOptions extends ListingOptions {
|
|
108960
109095
|
/** Filter by security rule UUID. */
|
|
@@ -109013,6 +109148,8 @@ declare class ModelSecurityGroupsClient {
|
|
|
109013
109148
|
* ```
|
|
109014
109149
|
*/
|
|
109015
109150
|
list(opts?: ModelSecurityGroupListOptions): Promise<ListModelSecurityGroupsResponse>;
|
|
109151
|
+
/** List every security-group page. @example `const groups = await ms.securityGroups.listAll();` */
|
|
109152
|
+
listAll(opts?: ModelSecurityGroupListAllOptions): Promise<ListModelSecurityGroupsResponse['security_groups']>;
|
|
109016
109153
|
/**
|
|
109017
109154
|
* Get a single security group by UUID.
|
|
109018
109155
|
* @param uuid - Security group UUID.
|
|
@@ -109129,6 +109266,8 @@ interface ModelSecurityRuleListOptions extends ListingOptions {
|
|
|
109129
109266
|
/** Search term (matches UUID or Name, 3-1000 chars). */
|
|
109130
109267
|
search_query?: string;
|
|
109131
109268
|
}
|
|
109269
|
+
interface ModelSecurityRuleListAllOptions extends Omit<ModelSecurityRuleListOptions, 'skip'>, CollectAllOptions {
|
|
109270
|
+
}
|
|
109132
109271
|
/** @internal */
|
|
109133
109272
|
interface ModelSecurityRulesClientOptions {
|
|
109134
109273
|
baseUrl: string;
|
|
@@ -109160,6 +109299,8 @@ declare class ModelSecurityRulesClient {
|
|
|
109160
109299
|
* ```
|
|
109161
109300
|
*/
|
|
109162
109301
|
list(opts?: ModelSecurityRuleListOptions): Promise<ListModelSecurityRulesResponse>;
|
|
109302
|
+
/** List every security-rule page. @example `const rules = await ms.securityRules.listAll();` */
|
|
109303
|
+
listAll(opts?: ModelSecurityRuleListAllOptions): Promise<ListModelSecurityRulesResponse['rules']>;
|
|
109163
109304
|
/**
|
|
109164
109305
|
* Get a single security rule by UUID.
|
|
109165
109306
|
* @param uuid - Security rule UUID.
|
|
@@ -109205,6 +109346,12 @@ interface ModelSecurityModelVersionListOptions extends ListingOptions {
|
|
|
109205
109346
|
}
|
|
109206
109347
|
/** Pagination options for listing a model version's files. */
|
|
109207
109348
|
type ModelSecurityModelVersionFileListOptions = ListingOptions;
|
|
109349
|
+
interface ModelSecurityModelListAllOptions extends Omit<ModelSecurityModelListOptions, 'skip'>, CollectAllOptions {
|
|
109350
|
+
}
|
|
109351
|
+
interface ModelSecurityModelVersionListAllOptions extends Omit<ModelSecurityModelVersionListOptions, 'skip'>, CollectAllOptions {
|
|
109352
|
+
}
|
|
109353
|
+
interface ModelSecurityModelVersionFileListAllOptions extends Omit<ModelSecurityModelVersionFileListOptions, 'skip'>, CollectAllOptions {
|
|
109354
|
+
}
|
|
109208
109355
|
/** @internal */
|
|
109209
109356
|
interface ModelSecurityModelsClientOptions {
|
|
109210
109357
|
baseUrl: string;
|
|
@@ -109232,6 +109379,8 @@ declare class ModelSecurityModelsClient {
|
|
|
109232
109379
|
* ```
|
|
109233
109380
|
*/
|
|
109234
109381
|
listModels(opts?: ModelSecurityModelListOptions): Promise<ModelList>;
|
|
109382
|
+
/** List every model page. @example `const models = await ms.models.listAllModels();` */
|
|
109383
|
+
listAllModels(opts?: ModelSecurityModelListAllOptions): Promise<ModelList['models']>;
|
|
109235
109384
|
/**
|
|
109236
109385
|
* Get a single model by UUID.
|
|
109237
109386
|
* @param uuid - Model UUID.
|
|
@@ -109265,6 +109414,8 @@ declare class ModelSecurityModelsClient {
|
|
|
109265
109414
|
* ```
|
|
109266
109415
|
*/
|
|
109267
109416
|
listModelVersions(modelUuid: string, opts?: ModelSecurityModelVersionListOptions): Promise<ModelVersionList>;
|
|
109417
|
+
/** List every version of a model. @example `const versions = await ms.models.listAllModelVersions(modelUuid);` */
|
|
109418
|
+
listAllModelVersions(modelUuid: string, opts?: ModelSecurityModelVersionListAllOptions): Promise<ModelVersionList['model_versions']>;
|
|
109268
109419
|
/**
|
|
109269
109420
|
* Get a single model version by UUID.
|
|
109270
109421
|
* @param uuid - Model version UUID.
|
|
@@ -109298,6 +109449,8 @@ declare class ModelSecurityModelsClient {
|
|
|
109298
109449
|
* ```
|
|
109299
109450
|
*/
|
|
109300
109451
|
listModelVersionFiles(modelVersionUuid: string, opts?: ModelSecurityModelVersionFileListOptions): Promise<FileList>;
|
|
109452
|
+
/** List every file in a model version. @example `const files = await ms.models.listAllModelVersionFiles(versionUuid);` */
|
|
109453
|
+
listAllModelVersionFiles(modelVersionUuid: string, opts?: ModelSecurityModelVersionFileListAllOptions): Promise<FileList['files']>;
|
|
109301
109454
|
}
|
|
109302
109455
|
|
|
109303
109456
|
/** Options for constructing a {@link ModelSecurityClient}. */
|
|
@@ -109369,6 +109522,8 @@ interface RedTeamScanListOptions extends RedTeamListOptions {
|
|
|
109369
109522
|
job_type?: string;
|
|
109370
109523
|
target_id?: string;
|
|
109371
109524
|
}
|
|
109525
|
+
interface RedTeamScanListAllOptions extends Omit<RedTeamScanListOptions, 'skip'>, CollectAllOptions {
|
|
109526
|
+
}
|
|
109372
109527
|
/** @internal */
|
|
109373
109528
|
interface RedTeamScansClientOptions {
|
|
109374
109529
|
baseUrl: string;
|
|
@@ -109416,6 +109571,8 @@ declare class RedTeamScansClient {
|
|
|
109416
109571
|
* ```
|
|
109417
109572
|
*/
|
|
109418
109573
|
list(opts?: RedTeamScanListOptions): Promise<JobListResponse>;
|
|
109574
|
+
/** List every scan page. @example `const scans = await rt.scans.listAll({ status: 'COMPLETED' });` */
|
|
109575
|
+
listAll(opts?: RedTeamScanListAllOptions): Promise<JobListResponse['data']>;
|
|
109419
109576
|
/**
|
|
109420
109577
|
* Get a single scan job by ID.
|
|
109421
109578
|
* @param jobId - The job UUID.
|
|
@@ -109870,6 +110027,9 @@ interface TargetListOptions extends RedTeamListOptions {
|
|
|
109870
110027
|
target_type?: string;
|
|
109871
110028
|
status?: string;
|
|
109872
110029
|
}
|
|
110030
|
+
/** Options for walking every target page. */
|
|
110031
|
+
interface TargetListAllOptions extends Omit<TargetListOptions, 'skip'>, CollectAllOptions {
|
|
110032
|
+
}
|
|
109873
110033
|
/** Options for target create/update operations. */
|
|
109874
110034
|
interface TargetOperationOptions {
|
|
109875
110035
|
/** Validate the target connection before saving. */
|
|
@@ -109928,6 +110088,14 @@ declare class RedTeamTargetsClient {
|
|
|
109928
110088
|
* ```
|
|
109929
110089
|
*/
|
|
109930
110090
|
list(opts?: TargetListOptions): Promise<TargetList>;
|
|
110091
|
+
/**
|
|
110092
|
+
* List targets across every page while preserving the supplied filters.
|
|
110093
|
+
* @example
|
|
110094
|
+
* ```ts
|
|
110095
|
+
* const targets = await rt.targets.listAll({ limit: 100, status: 'READY' });
|
|
110096
|
+
* ```
|
|
110097
|
+
*/
|
|
110098
|
+
listAll(opts?: TargetListAllOptions): Promise<TargetListItem[]>;
|
|
109931
110099
|
/**
|
|
109932
110100
|
* Get a target by UUID.
|
|
109933
110101
|
* @param uuid - The target UUID.
|
|
@@ -110091,6 +110259,10 @@ interface PromptListOptions extends RedTeamListOptions {
|
|
|
110091
110259
|
status?: string;
|
|
110092
110260
|
active?: boolean;
|
|
110093
110261
|
}
|
|
110262
|
+
interface PromptSetListAllOptions extends Omit<PromptSetListOptions, 'skip'>, CollectAllOptions {
|
|
110263
|
+
}
|
|
110264
|
+
interface PromptListAllOptions extends Omit<PromptListOptions, 'skip'>, CollectAllOptions {
|
|
110265
|
+
}
|
|
110094
110266
|
/** @internal */
|
|
110095
110267
|
interface RedTeamCustomAttacksClientOptions {
|
|
110096
110268
|
baseUrl: string;
|
|
@@ -110136,6 +110308,8 @@ declare class RedTeamCustomAttacksClient {
|
|
|
110136
110308
|
* ```
|
|
110137
110309
|
*/
|
|
110138
110310
|
listPromptSets(opts?: PromptSetListOptions): Promise<CustomPromptSetList>;
|
|
110311
|
+
/** List every custom prompt-set page. @example `const sets = await rt.customAttacks.listAllPromptSets();` */
|
|
110312
|
+
listAllPromptSets(opts?: PromptSetListAllOptions): Promise<NonNullable<CustomPromptSetList['data']>>;
|
|
110139
110313
|
/**
|
|
110140
110314
|
* Get a prompt set by UUID.
|
|
110141
110315
|
* @param uuid - The prompt set UUID.
|
|
@@ -110309,6 +110483,8 @@ declare class RedTeamCustomAttacksClient {
|
|
|
110309
110483
|
* ```
|
|
110310
110484
|
*/
|
|
110311
110485
|
listPrompts(promptSetUuid: string, opts?: PromptListOptions): Promise<CustomPromptList>;
|
|
110486
|
+
/** List every prompt page for a set. @example `const prompts = await rt.customAttacks.listAllPrompts(promptSetUuid);` */
|
|
110487
|
+
listAllPrompts(promptSetUuid: string, opts?: PromptListAllOptions): Promise<NonNullable<CustomPromptList['data']>>;
|
|
110312
110488
|
/**
|
|
110313
110489
|
* Get a prompt by UUID.
|
|
110314
110490
|
* @param promptSetUuid - The prompt set UUID.
|
|
@@ -110762,6 +110938,8 @@ declare class RedTeamNetworkBrokerClient {
|
|
|
110762
110938
|
updateChannel(channelId: string, body: UpdateChannelRequest): Promise<Channel>;
|
|
110763
110939
|
}
|
|
110764
110940
|
|
|
110941
|
+
interface AdapterListAllOptions extends Omit<RedTeamListOptions, 'skip'>, CollectAllOptions {
|
|
110942
|
+
}
|
|
110765
110943
|
/** Options for adapter create/update operations. */
|
|
110766
110944
|
interface AdapterOperationOptions {
|
|
110767
110945
|
/**
|
|
@@ -110837,6 +111015,8 @@ declare class RedTeamAdaptersClient {
|
|
|
110837
111015
|
* ```
|
|
110838
111016
|
*/
|
|
110839
111017
|
list(opts?: RedTeamListOptions): Promise<AdapterList>;
|
|
111018
|
+
/** List every adapter page. @example `const adapters = await rt.adapters.listAll();` */
|
|
111019
|
+
listAll(opts?: AdapterListAllOptions): Promise<NonNullable<AdapterList['data']>>;
|
|
110840
111020
|
/**
|
|
110841
111021
|
* Get a single adapter by UUID.
|
|
110842
111022
|
* @param uuid - Adapter UUID.
|
|
@@ -112745,4 +112925,4 @@ declare class AIGatewayClient {
|
|
|
112745
112925
|
constructor(opts?: AIGatewayClientOptions);
|
|
112746
112926
|
}
|
|
112747
112927
|
|
|
112748
|
-
export { AIGatewayApiKeysClient, type AIGatewayAuditLogListOptions, AIGatewayAuditLogsClient, AIGatewayClient, type AIGatewayClientOptions, AIGatewayConfigsClient, AIGatewayDeploymentsClient, type AIGatewayGroupOptions, AIGatewayGuardrailsClient, AIGatewayIntegrationsClient, type AIGatewayLogsOptions, AIGatewayMcpIntegrationsClient, AIGatewayOrganisationsClient, type AIGatewayPlane, AIGatewayPluginsClient, AIGatewayProvidersClient, type AIGatewaySubClientOptions, AIGatewayTelemetryClient, type AIGatewayTelemetryClientOptions, type AIGatewayWindowOptions, type AIGatewayWorkspaceGetOptions, type AIGatewayWorkspaceListOptions, type AIGatewayWorkspaceScopedListOptions, AIGatewayWorkspacesClient, type AIGatewayWorkspacesClientOptions, AIRS_ENDPOINTS, AISecSDKException, type AISecSDKExceptionMetadata, AI_GW_ADMIN_ENDPOINT, AI_GW_API_KEYS_SERVICE_PATH, AI_GW_API_KEYS_USER_PATH, AI_GW_AUDIT_LOGS_PATH, AI_GW_CHARTS_PATH, AI_GW_CHART_METRICS, AI_GW_CONFIGS_PATH, AI_GW_DATA_ENDPOINT, AI_GW_DEPLOYMENTS_PATH, AI_GW_GROUPS_PATH, AI_GW_GROUP_COLUMNS, AI_GW_GROUP_DIMENSIONS, AI_GW_GUARDRAILS_PATH, AI_GW_INTEGRATIONS_PATH, AI_GW_LOGS_PATH, AI_GW_MCP_INTEGRATIONS_PATH, AI_GW_ORGANISATIONS_SELF_PATH, AI_GW_PLUGINS_PATH, AI_GW_PROVIDERS_PATH, AI_GW_WORKSPACES_PATH, AI_SEC_API_ENDPOINT, AI_SEC_API_KEY, AI_SEC_API_TOKEN, ASYNC_SCAN_PATH, Action, Action as ActionType, type AdapterCreateRequest, AdapterCreateRequestSchema, type AdapterList, type AdapterListItem, AdapterListItemSchema, AdapterListSchema, type AdapterOperationOptions, type AdapterResponse, AdapterResponseSchema, type AdapterUpdateRequest, AdapterUpdateRequestSchema, type AdapterValidateRequest, AdapterValidateRequestSchema, type AdapterValidateResponse, AdapterValidateResponseSchema, type AdapterVar, type AdapterVarResponse, AdapterVarResponseSchema, AdapterVarSchema, type AdapterVarType, AdapterVarTypeSchema, type AdvancedDataProfileRequest, AdvancedDataProfileRequestSchema, type AgentEntry, AgentEntrySchema, type AgentMeta, AgentMetaSchema, type AgentProtectionItem, AgentProtectionItemSchema, type AgentReport, AgentReportSchema, type AiProfile, AiProfileSchema, type AiSecurityProfile, AiSecurityProfileSchema, ApiEndpointType, type ApiKey, type ApiKeyCreateRequest, ApiKeyCreateRequestSchema, type ApiKeyDPInfo, ApiKeyDPInfoSchema, type ApiKeyDeleteResponse, ApiKeyDeleteResponseSchema, type ApiKeyListResponse, ApiKeyListResponseSchema, type ApiKeyRegenerateRequest, ApiKeyRegenerateRequestSchema, ApiKeySchema, ApiKeysClient, type ApiKeysClientOptions, type AppExclusion, AppExclusionSchema, type AsyncScanObject, AsyncScanObjectSchema, type AsyncScanResponse, AsyncScanResponseSchema, type AttackDetailResponse, AttackDetailResponseSchema, type AttackListItem, AttackListItemSchema, type AttackListOptions, type AttackListResponse, AttackListResponseSchema, type AttackMultiTurnDetailResponse, AttackMultiTurnDetailResponseSchema, type AttackMultiTurnOutput, AttackMultiTurnOutputSchema, type AttackOutput, AttackOutputSchema, AttackStatus, AttackType, type AuditResponse, AuditResponseSchema, type AuthConfig, AuthConfigSchema, type AuthSettingsResponse, AuthSettingsResponseSchema, AuthType, BEARER, type BaseResponse, BaseResponseSchema, type BasicAuthAuthConfig, BasicAuthAuthConfigSchema, BasicAuthLocation, type BedrockAccessConnectionParams, BedrockAccessConnectionParamsSchema, BrandSubCategory, type CacheHitTrendResponse, CacheHitTrendResponseSchema, type CacheSummaryResponse, CacheSummaryResponseSchema, Category, type CategoryModel, CategoryModelSchema, type CategoryReport, CategoryReportSchema, Category as CategoryType, type CgReport, CgReportSchema, type Channel, type ChannelListOptions, type ChannelListPagination, ChannelListPaginationSchema, type ChannelListResponse, ChannelListResponseSchema, ChannelSchema, type ChannelStats, ChannelStatsSchema, ChannelStatus, ChannelStatusSchema, type ChannelStatusType, type ClientIdAndCustomerApp, ClientIdAndCustomerAppSchema, type CmdEntry, CmdEntrySchema, type CmdInjectReport, CmdInjectReportSchema, type ComparisonOperatorType, ComparisonOperatorTypeSchema, type ComplianceReport, ComplianceReportSchema, ComplianceSubCategory, type ComplianceTechnique, ComplianceTechniqueSchema, type ConnectionParams, ConnectionParamsSchema, Content, type ContentError, ContentErrorSchema, ContentErrorType, ContentErrorType as ContentErrorTypeType, type ContentOptions, type CostChartResponse, CostChartResponseSchema, type CountByName, CountByNameSchema, type CountChartResponse, CountChartResponseSchema, CountedQuotaEnum, type CreateChannelRequest, CreateChannelRequestSchema, type CreateCustomTopicRequest, CreateCustomTopicRequestSchema, type CreateSecurityProfileRequest, CreateSecurityProfileRequestSchema, type CustomAttackOutput, CustomAttackOutputSchema, type CustomAttackReportResponse, CustomAttackReportResponseSchema, type CustomAttacksListResponse, CustomAttacksListResponseSchema, type CustomAttacksReportListOptions, type CustomJobMetadata, CustomJobMetadataSchema, type CustomPromptCreateRequest, CustomPromptCreateRequestSchema, type CustomPromptList, type CustomPromptListItem, CustomPromptListItemSchema, CustomPromptListSchema, type CustomPromptResponse, CustomPromptResponseSchema, type CustomPromptSetArchiveRequest, CustomPromptSetArchiveRequestSchema, type CustomPromptSetCreateRequest, CustomPromptSetCreateRequestSchema, type CustomPromptSetList, type CustomPromptSetListActive, CustomPromptSetListActiveSchema, type CustomPromptSetListItem, CustomPromptSetListItemSchema, CustomPromptSetListSchema, type CustomPromptSetReference, CustomPromptSetReferenceSchema, type CustomPromptSetResponse, CustomPromptSetResponseSchema, type CustomPromptSetUpdateRequest, CustomPromptSetUpdateRequestSchema, type CustomPromptSetVersionInfo, CustomPromptSetVersionInfoSchema, type CustomPromptUpdateRequest, CustomPromptUpdateRequestSchema, type CustomTopic, type CustomTopicListResponse, CustomTopicListResponseSchema, CustomTopicSchema, type CustomerApp, type CustomerAppDeleteResponse, CustomerAppDeleteResponseSchema, type CustomerAppListResponse, CustomerAppListResponseSchema, CustomerAppSchema, type CustomerAppWithKeys, CustomerAppWithKeysSchema, CustomerAppsClient, type CustomerAppsClientOptions, DEFAULT_AI_GW_ADMIN_ENDPOINT, DEFAULT_AI_GW_DATA_ENDPOINT, DEFAULT_DLP_ENDPOINT, DEFAULT_ENDPOINT, DEFAULT_MGMT_ENDPOINT, DEFAULT_MODEL_SEC_DATA_ENDPOINT, DEFAULT_MODEL_SEC_MGMT_ENDPOINT, DEFAULT_RED_TEAM_DATA_ENDPOINT, DEFAULT_RED_TEAM_MGMT_ENDPOINT, DEFAULT_RED_TEAM_NETWORK_BROKER_ENDPOINT, DEFAULT_TOKEN_ENDPOINT, DLP_DATA_FILTERING_PROFILES_PATH, DLP_DATA_PATTERNS_PATH, DLP_DATA_PROFILES_PATH, DLP_DICTIONARIES_PATH, type DSDetailResult, DSDetailResultSchema, type DSResultMetadata, DSResultMetadataSchema, type DashboardAppQuery, type DashboardApplication, DashboardApplicationSchema, type DashboardApplicationSessionsBucket, DashboardApplicationSessionsBucketSchema, type DashboardApplicationViolationBreakdown, DashboardApplicationViolationBreakdownSchema, type DashboardApplicationsOverview, type DashboardApplicationsOverviewItem, DashboardApplicationsOverviewItemSchema, type DashboardApplicationsOverviewQuery, DashboardApplicationsOverviewSchema, DashboardClient, type DashboardClientOptions, type DashboardOverviewResponse, DashboardOverviewResponseSchema, type DashboardPagination, DashboardPaginationSchema, type DashboardSessionStats, DashboardSessionStatsSchema, type DataFilteringDetails, DataFilteringDetailsSchema, type DataFilteringProfileListParams, type DataFilteringProfileRequest, DataFilteringProfileRequestSchema, type DataFilteringProfileResponse, DataFilteringProfileResponseSchema, DataFilteringProfilesClient, type DataFilteringProfilesClientOptions, type DataFilteringRuleDTO, DataFilteringRuleDTOSchema, type DataLeakDetectionMember, DataLeakDetectionMemberSchema, type DataPatternConfidenceLevel, DataPatternConfidenceLevelSchema, type DataPatternDetectionConfig, DataPatternDetectionConfigSchema, type DataPatternLicenseType, DataPatternLicenseTypeSchema, type DataPatternListParams, type DataPatternMatchingRules, DataPatternMatchingRulesSchema, type DataPatternPatchRequest, DataPatternPatchRequestSchema, type DataPatternRequest, DataPatternRequestSchema, type DataPatternResponse, DataPatternResponseSchema, type DataPatternStatus, DataPatternStatusSchema, type DataPatternTags, DataPatternTagsSchema, type DataPatternTechnique, DataPatternTechniqueSchema, type DataPatternType, DataPatternTypeSchema, DataPatternsClient, type DataPatternsClientOptions, type DataProfileListParams, type DataProfilePatchRequest, DataProfilePatchRequestSchema, type DataProfileResponse, DataProfileResponseSchema, type DataProfileStatus, DataProfileStatusSchema, type DataProfileSubtype, DataProfileSubtypeSchema, type DataProfileType, DataProfileTypeSchema, DataProfilesClient, type DataProfilesClientOptions, type DataProtection, DataProtectionSchema, type DatabaseSecurityItem, DatabaseSecurityItemSchema, type DatabricksConnectionParams, DatabricksConnectionParamsSchema, DateRangeFilter, type DbsEntry, DbsEntrySchema, type DbsReport, DbsReportSchema, type DefaultTreeDetectionRule, DefaultTreeDetectionRuleSchema, type DeleteProfileConflict, DeleteProfileConflictSchema, type DeleteProfileResponse, DeleteProfileResponseSchema, type DeleteTopicConflict, DeleteTopicConflictSchema, type DeleteTopicResponse, DeleteTopicResponseSchema, type DeploymentProfileAttribute, DeploymentProfileAttributeSchema, type DeploymentProfileEntry, DeploymentProfileEntrySchema, type DeploymentProfileListOptions, type DeploymentProfileRequest, DeploymentProfileRequestSchema, DeploymentProfilesClient, type DeploymentProfilesClientOptions, type DeploymentProfilesResponse, DeploymentProfilesResponseSchema, type DestinationAttributes, DestinationAttributesSchema, type DetectionRule, type DetectionRuleItem, DetectionRuleItemSchema, DetectionRuleSchema, DetectionServiceName, DetectionServiceName as DetectionServiceNameType, type DetectionServiceResult, DetectionServiceResultSchema, type DetectorViolationBreakdownEntry, DetectorViolationBreakdownEntrySchema, type Device, type DeviceInstance, DeviceInstanceSchema, type DeviceLicense, DeviceLicenseSchema, type DeviceRequest, DeviceRequestSchema, type DeviceResponse, DeviceResponseSchema, DeviceSchema, type DeviceStatus, DeviceStatusSchema, DictionariesClient, type DictionariesClientOptions, type DictionaryCategory, DictionaryCategorySchema, type DictionaryClassification, DictionaryClassificationSchema, type DictionaryDetectionSubTechnique, DictionaryDetectionSubTechniqueSchema, type DictionaryDetectionTechnique, DictionaryDetectionTechniqueSchema, type DictionaryFileInput, type DictionaryGetParams, type DictionaryListParams, type DictionaryMetaDataDTO, DictionaryMetaDataDTOSchema, type DictionaryPatchRequest, DictionaryPatchRequestSchema, type DictionaryRequest, DictionaryRequestSchema, type DictionaryResponse, DictionaryResponseSchema, type DictionaryTags, DictionaryTagsSchema, type DictionaryType, DictionaryTypeSchema, type DictionaryUploadParams, type DlpDataProfile, type DlpDataProfilePolicy, DlpDataProfilePolicySchema, DlpDataProfileSchema, DlpNamespace, type DlpNamespaceOptions, type DlpPatternDetection, DlpPatternDetectionSchema, type DlpProfileListResponse, DlpProfileListResponseSchema, DlpProfilesClient, type DlpProfilesClientOptions, type DlpReport, DlpReportSchema, type DlpRule, DlpRuleSchema, type DynamicJobMetadata, DynamicJobMetadataSchema, type DynamicJobReport, DynamicJobReportSchema, type DynamicJobReportStats, DynamicJobReportStatsSchema, ErrorCodes, type ErrorLog, type ErrorLogListResponse, ErrorLogListResponseSchema, ErrorLogSchema, type ErrorResponse, ErrorResponseSchema, ErrorSource, ErrorStatus, ErrorStatus as ErrorStatusType, type ErrorTrendsResponse, ErrorTrendsResponseSchema, ErrorType, type EulaAcceptRequest, EulaAcceptRequestSchema, type EulaContentResponse, EulaContentResponseSchema, type EulaResponse, EulaResponseSchema, EvalOutcome, type EvalSummary, EvalSummarySchema, type ExceptionRuleDTO, ExceptionRuleDTOSchema, type Exclusions, ExclusionsSchema, type ExpressionOperatorType, ExpressionOperatorTypeSchema, type ExpressionTreeNode, ExpressionTreeNodeSchema, type FeedbackModelsResponse, FeedbackModelsResponseSchema, type FeedbackScoreDistributionResponse, FeedbackScoreDistributionResponseSchema, FileFormat, type FileList, FileListSchema, type FileResponse, FileResponseSchema, type FileScanData, FileScanDataSchema, FileScanResult, FileType, type GatewayApiKey, type GatewayApiKeyCreateRequest, GatewayApiKeySchema, type GatewayAuditLogRecord, GatewayAuditLogRecordSchema, type GatewayAuditLogsResponse, GatewayAuditLogsResponseSchema, type GatewayChartRecord, GatewayChartRecordSchema, type GatewayConfig, type GatewayConfigCreateRequest, type GatewayConfigCreateResponse, GatewayConfigCreateResponseSchema, type GatewayConfigDetail, GatewayConfigDetailSchema, GatewayConfigSchema, type GatewayDeployment, type GatewayDeploymentCreateRequest, type GatewayDeploymentCreateResponse, GatewayDeploymentCreateResponseSchema, type GatewayDeploymentDetail, GatewayDeploymentDetailSchema, GatewayDeploymentSchema, type GatewayGlobalWorkspaceAccess, GatewayGlobalWorkspaceAccessSchema, type GatewayGroupRow, GatewayGroupRowSchema, type GatewayGuardrail, type GatewayGuardrailCheck, type GatewayGuardrailCreateRequest, type GatewayGuardrailCreateResponse, GatewayGuardrailCreateResponseSchema, type GatewayGuardrailDetail, GatewayGuardrailDetailSchema, GatewayGuardrailSchema, type GatewayIntegration, type GatewayIntegrationCreateRequest, type GatewayIntegrationModelsRequest, type GatewayIntegrationModelsResponse, GatewayIntegrationModelsResponseSchema, GatewayIntegrationSchema, type GatewayIntegrationWorkspace, GatewayIntegrationWorkspaceSchema, type GatewayIntegrationWorkspacesRequest, type GatewayIntegrationWorkspacesResponse, GatewayIntegrationWorkspacesResponseSchema, type GatewayLogRecord, GatewayLogRecordSchema, type GatewayLogsResponse, GatewayLogsResponseSchema, type GatewayPlugin, type GatewayPluginCreateRequest, GatewayPluginSchema, type GatewayProvider, type GatewayProviderCreateRequest, type GatewayProviderCreateResponse, GatewayProviderCreateResponseSchema, GatewayProviderSchema, type GatewayRateLimit, GatewayRateLimitSchema, type GatewayUsageLimit, GatewayUsageLimitSchema, type GatewayWorkspace, type GatewayWorkspaceCreateRequest, type GatewayWorkspaceCreateResponse, GatewayWorkspaceCreateResponseSchema, type GatewayWorkspaceDetail, GatewayWorkspaceDetailSchema, GatewayWorkspaceSchema, type GatewayWorkspaceUpdateRequest, type GatewayWriteResponse, GatewayWriteResponseSchema, type GetTokenOptions, type Goal, type GoalListOptions, type GoalListResponse, GoalListResponseSchema, GoalSchema, GoalType, GoalTypeQueryParam, type GroupListResponse, GroupListResponseSchema, GuardrailAction, HEADER_API_KEY, HEADER_AUTH_TOKEN, type HTTPValidationError, HTTPValidationErrorSchema, HTTP_FORCE_RETRY_STATUS_CODES, type HeadersAuthConfig, HeadersAuthConfigSchema, type HuggingfaceConnectionParams, HuggingfaceConnectionParamsSchema, type IODetected, IODetectedSchema, type InitOptions, type InstanceExtraDetails, InstanceExtraDetailsSchema, type InstanceGetResponse, InstanceGetResponseSchema, type InstanceRequest, InstanceRequestSchema, type InstanceResponse, InstanceResponseSchema, type JobAbortResponse, JobAbortResponseSchema, type JobCreateRequest, JobCreateRequestSchema, type JobListResponse, JobListResponseSchema, type JobResponse, JobResponseSchema, JobStatus, JobStatusFilter, type JobTimeRecord, JobTimeRecordSchema, JobType, type JsonNullable, type Label, type LabelKeyList, LabelKeyListSchema, LabelSchema, type LabelValueList, LabelValueListSchema, type LabelsCreateRequest, LabelsCreateRequestSchema, type LabelsResponse, LabelsResponseSchema, type LanguageOption, LanguageOptionSchema, type LatencyChartResponse, LatencyChartResponseSchema, type ListApiKeysResponse, ListApiKeysResponseSchema, type ListConfigsResponse, ListConfigsResponseSchema, type ListDeploymentsResponse, ListDeploymentsResponseSchema, type ListGuardrailsResponse, ListGuardrailsResponseSchema, type ListIntegrationsResponse, ListIntegrationsResponseSchema, type ListMcpIntegrationsResponse, ListMcpIntegrationsResponseSchema, type ListModelSecurityGroupsResponse, ListModelSecurityGroupsResponseSchema, type ListModelSecurityRuleInstancesResponse, ListModelSecurityRuleInstancesResponseSchema, type ListModelSecurityRulesResponse, ListModelSecurityRulesResponseSchema, type ListPluginsResponse, ListPluginsResponseSchema, type ListProvidersResponse, ListProvidersResponseSchema, type ListWorkspacesResponse, ListWorkspacesResponseSchema, type ListingOptions, MAX_AI_PROFILE_NAME_LENGTH, MAX_API_KEY_LENGTH, MAX_CONNECTION_POOL_SIZE, MAX_CONTENT_CONTEXT_LENGTH, MAX_CONTENT_PROMPT_LENGTH, MAX_CONTENT_RESPONSE_LENGTH, MAX_NUMBER_OF_BATCH_SCAN_OBJECTS, MAX_NUMBER_OF_REPORT_IDS, MAX_NUMBER_OF_RETRIES, MAX_NUMBER_OF_SCAN_IDS, MAX_REPORT_ID_STR_LENGTH, MAX_SCAN_ID_STR_LENGTH, MAX_SESSION_ID_STR_LENGTH, MAX_TOKEN_LENGTH, MAX_TRANSACTION_ID_STR_LENGTH, MGMT_API_KEYS_TSG_PATH, MGMT_API_KEY_PATH, MGMT_CLIENT_ID, MGMT_CLIENT_SECRET, MGMT_CUSTOMER_APPS_TSG_PATH, MGMT_CUSTOMER_APP_PATH, MGMT_DASHBOARD_APPLICATIONS_OVERVIEW_PATH, MGMT_DASHBOARD_APPLICATION_PATH, MGMT_DASHBOARD_APPLICATION_VIOLATION_BREAKDOWN_PATH, MGMT_DEPLOYMENT_PROFILES_PATH, MGMT_DLP_PROFILES_PATH, MGMT_ENDPOINT, MGMT_OAUTH_INVALIDATE_PATH, MGMT_OAUTH_TOKEN_PATH, MGMT_PROFILES_TSG_PATH, MGMT_PROFILE_PATH, MGMT_SCAN_LOGS_PATH, MGMT_TOKEN_ENDPOINT, MGMT_TOPICS_TSG_PATH, MGMT_TOPIC_FORCE_PATH, MGMT_TOPIC_PATH, MGMT_TSG_ID, MODEL_SEC_CLIENT_ID, MODEL_SEC_CLIENT_SECRET, MODEL_SEC_DATA_ENDPOINT, MODEL_SEC_EVALUATIONS_PATH, MODEL_SEC_MGMT_ENDPOINT, MODEL_SEC_MODELS_PATH, MODEL_SEC_MODEL_VERSIONS_PATH, MODEL_SEC_PYPI_AUTH_PATH, MODEL_SEC_SCANS_PATH, MODEL_SEC_SECURITY_GROUPS_PATH, MODEL_SEC_SECURITY_RULES_PATH, MODEL_SEC_TOKEN_ENDPOINT, MODEL_SEC_TSG_ID, MODEL_SEC_VIOLATIONS_PATH, type MaliciousCodeProtection, MaliciousCodeProtectionSchema, type MalwareReport, MalwareReportSchema, ManagementClient, type ManagementClientOptions, type MaskedData, MaskedDataSchema, type McEntry, McEntrySchema, type McReport, McReportSchema, type McpIntegration, type McpIntegrationCreateRequest, McpIntegrationSchema, type McpIntegrationWorkspacesRequest, type Metadata, type MetadataCriterion, MetadataCriterionSchema, MetadataSchema, type Model, type ModelConfiguration, ModelConfigurationSchema, type ModelList, ModelListSchema, type ModelProtectionItem, ModelProtectionItemSchema, ModelResponseSchema, type ModelScanIssue, ModelScanIssueSchema, ModelScanStatus, ModelSecurityClient, type ModelSecurityClientOptions, type ModelSecurityEvaluationListOptions, type ModelSecurityFileListOptions, type ModelSecurityGroupCreateRequest, ModelSecurityGroupCreateRequestSchema, type ModelSecurityGroupListOptions, type ModelSecurityGroupResponse, ModelSecurityGroupResponseSchema, ModelSecurityGroupState, type ModelSecurityGroupUpdateRequest, ModelSecurityGroupUpdateRequestSchema, ModelSecurityGroupsClient, type ModelSecurityGroupsClientOptions, type ModelSecurityLabelListOptions, type ModelSecurityModelListOptions, type ModelSecurityModelVersionFileListOptions, type ModelSecurityModelVersionListOptions, ModelSecurityModelsClient, type ModelSecurityModelsClientOptions, type ModelSecurityPagination, ModelSecurityPaginationSchema, type ModelSecurityRuleInstanceListOptions, type ModelSecurityRuleInstanceResponse, ModelSecurityRuleInstanceResponseSchema, type ModelSecurityRuleInstanceUpdateRequest, ModelSecurityRuleInstanceUpdateRequestSchema, type ModelSecurityRuleListOptions, type ModelSecurityRuleResponse, ModelSecurityRuleResponseSchema, ModelSecurityRulesClient, type ModelSecurityRulesClientOptions, type ModelSecurityScanListOptions, ModelSecurityScansClient, type ModelSecurityScansClientOptions, type ModelSecurityViolationListOptions, type ModelVersion, type ModelVersionList, ModelVersionListSchema, ModelVersionResponseSchema, type MultiProfileDataNode, MultiProfileDataNodeSchema, type MultiProfileDetectionRule, MultiProfileDetectionRuleSchema, type MultiTurnStatefulConfig, MultiTurnStatefulConfigSchema, type MultiTurnStatelessConfig, MultiTurnStatelessConfigSchema, type OAuth2AuthConfig, OAuth2AuthConfigSchema, OAuthClient, type OAuthClientOptions, OAuthManagementClient, type OAuthManagementClientOptions, type Oauth2Token, Oauth2TokenSchema, type Offset, OffsetSchema, type OpenAIConnectionParams, OpenAIConnectionParamsSchema, type OrganisationSelfResponse, OrganisationSelfResponseSchema, PAYLOAD_HASH, type Page, type PageDataFilteringProfileResponse, PageDataFilteringProfileResponseSchema, type PageDataPatternResponse, PageDataPatternResponseSchema, type PageDataProfileResponse, PageDataProfileResponseSchema, type PageDictionaryResponse, PageDictionaryResponseSchema, type PageableObject, PageableObjectSchema, type PaginatedScanResults, PaginatedScanResultsSchema, type PaginationOptions, type PatternDetection, PatternDetectionSchema, type Policy, type PolicyAppProtection, PolicyAppProtectionSchema, type PolicyLatency, PolicyLatencySchema, PolicySchema, PolicyType, type PrerequisiteModel, PrerequisiteModelSchema, ProfilesClient, type ProfilesClientOptions, ProfilingStatus, type PromptDetailResponse, PromptDetailResponseSchema, type PromptDetected, PromptDetectedSchema, type PromptDetectionDetails, PromptDetectionDetailsSchema, type PromptListOptions, type PromptSetListOptions, type PromptSetStats, PromptSetStatsSchema, type PromptSetSummary, PromptSetSummarySchema, type PromptSetsReportResponse, PromptSetsReportResponseSchema, type PromptsBySetListOptions, type PropertyAssignment, PropertyAssignmentSchema, type PropertyDefinition, PropertyDefinitionSchema, type PropertyNameCreateRequest, PropertyNameCreateRequestSchema, type PropertyNamesListResponse, PropertyNamesListResponseSchema, type PropertyStatistic, PropertyStatisticSchema, type PropertyValueCreateRequest, PropertyValueCreateRequestSchema, type PropertyValueStatistic, PropertyValueStatisticSchema, type PropertyValuesMultipleResponse, PropertyValuesMultipleResponseSchema, type PropertyValuesResponse, PropertyValuesResponseSchema, type PyPIAuthResponse, PyPIAuthResponseSchema, type QuotaDetails, QuotaDetailsSchema, type QuotaSummary, QuotaSummarySchema, RED_TEAM_ADAPTER_PATH, RED_TEAM_ADAPTER_VALIDATE_PATH, RED_TEAM_CATEGORIES_PATH, RED_TEAM_CHANNELS_PATH, RED_TEAM_CHANNELS_STATS_PATH, RED_TEAM_CLIENT_ID, RED_TEAM_CLIENT_SECRET, RED_TEAM_CUSTOM_ATTACKS_REPORT_PATH, RED_TEAM_CUSTOM_ATTACK_PATH, RED_TEAM_DASHBOARD_PATH, RED_TEAM_DATA_ENDPOINT, RED_TEAM_ERROR_LOG_PATH, RED_TEAM_ERROR_LOG_TARGET_PROFILE_PATH, RED_TEAM_EULA_PATH, RED_TEAM_INSTANCES_PATH, RED_TEAM_LANGUAGES_PATH, RED_TEAM_MGMT_DASHBOARD_PATH, RED_TEAM_MGMT_ENDPOINT, RED_TEAM_NETWORK_BROKER_ENDPOINT, RED_TEAM_QUOTA_PATH, RED_TEAM_REGISTRY_CREDENTIALS_PATH, RED_TEAM_REPORT_DYNAMIC_PATH, RED_TEAM_REPORT_PATH, RED_TEAM_REPORT_STATIC_PATH, RED_TEAM_SCAN_PATH, RED_TEAM_SENTIMENT_PATH, RED_TEAM_TARGET_PATH, RED_TEAM_TARGET_VALIDATE_AUTH_PATH, RED_TEAM_TEMPLATE_PATH, RED_TEAM_TOKEN_ENDPOINT, RED_TEAM_TSG_ID, RedTeamAdaptersClient, type RedTeamAdaptersClientOptions, RedTeamCategory, RedTeamClient, type RedTeamClientOptions, RedTeamCustomAttackReportsClient, type RedTeamCustomAttackReportsClientOptions, RedTeamCustomAttacksClient, type RedTeamCustomAttacksClientOptions, RedTeamErrorType, RedTeamEulaClient, type RedTeamEulaClientOptions, RedTeamInstancesClient, type RedTeamInstancesClientOptions, type RedTeamListOptions, RedTeamNetworkBrokerClient, type RedTeamNetworkBrokerClientOptions, type RedTeamPagination, RedTeamPaginationSchema, RedTeamReportsClient, type RedTeamReportsClientOptions, type RedTeamScanListOptions, RedTeamScansClient, type RedTeamScansClientOptions, RedTeamTargetsClient, type RedTeamTargetsClientOptions, type RegistryCredentials, RegistryCredentialsSchema, type RemediationDetail, RemediationDetailSchema, type RemediationResponse, RemediationResponseSchema, type RescuedRetriesResponse, RescuedRetriesResponseSchema, type ResourceModelExtension, ResourceModelExtensionSchema, type ResponseDetected, ResponseDetectedSchema, type ResponseDetectionDetails, ResponseDetectionDetailsSchema, ResponseMode, type RestConnectionParams, RestConnectionParamsSchema, type RiskLevel, RiskLevelSchema, RiskRating, type RuleConfiguration, RuleConfigurationSchema, type RuleEditableField, type RuleEditableFieldDropdown, RuleEditableFieldDropdownSchema, RuleEditableFieldSchema, RuleEditableFieldType, type RuleEvaluationList, RuleEvaluationListSchema, type RuleEvaluationResponse, RuleEvaluationResponseSchema, RuleEvaluationResult, RuleFieldValueKey, type RuleItemConfidenceLevel, RuleItemConfidenceLevelSchema, type RuleItemDetectionTechnique, RuleItemDetectionTechniqueSchema, type RuleItemEdmMatchCriteria, RuleItemEdmMatchCriteriaSchema, type RuleItemMatchType, RuleItemMatchTypeSchema, type RuleItemOccurrenceOperatorType, RuleItemOccurrenceOperatorTypeSchema, type RuleRemediation, RuleRemediationSchema, RuleState, RuleType, type RuntimeSecurityPolicy, RuntimeSecurityPolicySchema, type RuntimeSecurityProfileResponse, RuntimeSecurityProfileResponseSchema, SCAN_REPORTS_PATH, SCAN_RESULTS_PATH, SDK_VERSION, SYNC_SCAN_PATH, SafetySubCategory, type ScanBaseResponse, ScanBaseResponseSchema, type ScanCallOptions, type ScanCreateRequest, ScanCreateRequestSchema, type ScanDetails, ScanDetailsSchema, type ScanIdResult, ScanIdResultSchema, type ScanList, ScanListSchema, type ScanLogQueryOptions, ScanLogsClient, type ScanLogsClientOptions, ScanOrigin, type ScanRequest, type ScanRequestContentsInner, ScanRequestContentsInnerSchema, ScanRequestSchema, type ScanResponse, ScanResponseSchema, type ScanResultEntry, ScanResultEntrySchema, type ScanResultForDashboard, ScanResultForDashboardSchema, type ScanStatisticsResponse, ScanStatisticsResponseSchema, type ScanSummary, ScanSummarySchema, Scanner, type ScoreTrendResponse, ScoreTrendResponseSchema, type ScoreTrendSeries, ScoreTrendSeriesSchema, type SecurityProfile, type SecurityProfileListResponse, SecurityProfileListResponseSchema, SecurityProfileSchema, SecuritySubCategory, type SentimentRequest, SentimentRequestSchema, type SentimentResponse, SentimentResponseSchema, SeverityFilter, type SeverityReport, SeverityReportSchema, type SeverityStats, SeverityStatsSchema, SortByDateField, SortByFileField, SortDirection, type SortObject, SortObjectSchema, type SourceAttributes, SourceAttributesSchema, SourceType, type StaticJobMetadata, StaticJobMetadataSchema, type StaticJobRemediation, type StaticJobRemediationRecommendation, StaticJobRemediationRecommendationSchema, StaticJobRemediationSchema, type StaticJobReport, StaticJobReportSchema, type StaticJobReportStats, StaticJobReportStatsSchema, StatusQueryParam, type StreamDetailResponse, StreamDetailResponseSchema, type StreamIterationData, StreamIterationDataSchema, type StreamListResponse, StreamListResponseSchema, StreamType, type StreamingConnectionParams, StreamingConnectionParamsSchema, type SubCategoryModel, SubCategoryModelSchema, type SubCategoryStats, SubCategoryStatsSchema, type SyncScanOptions, TSG_ID_HEADER, type TargetAdditionalContext, TargetAdditionalContextSchema, TargetAuthType, type TargetAuthValidationRequest, TargetAuthValidationRequestSchema, type TargetAuthValidationResponse, TargetAuthValidationResponseSchema, type TargetBackground, TargetBackgroundSchema, TargetConnectionType, type TargetContextUpdate, TargetContextUpdateSchema, type TargetCreateRequest, TargetCreateRequestSchema, type TargetJobRequest, TargetJobRequestSchema, type TargetList, type TargetListItem, TargetListItemSchema, type TargetListOptions, TargetListSchema, type TargetMetadata, TargetMetadataSchema, type TargetOperationOptions, type TargetProbeRequest, TargetProbeRequestSchema, type TargetProfileResponse, TargetProfileResponseSchema, type TargetReference, TargetReferenceSchema, type TargetResponse, TargetResponseSchema, TargetStatus, type TargetTemplateCollection, TargetTemplateCollectionSchema, TargetType, type TargetUpdateRequest, TargetUpdateRequestSchema, type TcReport, TcReportSchema, type TenantLanguagesResponse, TenantLanguagesResponseSchema, type TgReport, TgReportSchema, ThreatCategory, type ThreatScanReport, ThreatScanReportSchema, type TokenInfo, type TokenStats, TokenStatsSchema, type TokensChartResponse, TokensChartResponseSchema, type ToolDetected, ToolDetectedSchema, type ToolDetectionDetails, ToolDetectionDetailsSchema, type ToolDetectionEntry, ToolDetectionEntrySchema, type ToolDetectionFlags, ToolDetectionFlagsSchema, type ToolEvent, type ToolEventMetadata, ToolEventMetadataSchema, ToolEventSchema, type TopicArray, TopicArraySchema, type TopicObject, TopicObjectSchema, TopicsClient, type TopicsClientOptions, type URLExclusion, URLExclusionSchema, USER_AGENT, type UpdateChannelRequest, UpdateChannelRequestSchema, type UrlCategory, UrlCategorySchema, type UrlfEntry, UrlfEntrySchema, type UserGroupResponse, UserGroupResponseSchema, type UserTrendsResponse, UserTrendsResponseSchema, type ValidationError, ValidationErrorSchema, Verdict, Verdict as VerdictType, type ViolationList, ViolationListSchema, type ViolationRemediation, ViolationRemediationSchema, type ViolationResponse, ViolationResponseSchema, type ViolationSeverityCounts, ViolationSeverityCountsSchema, type WebSocketConnectionParams, WebSocketConnectionParamsSchema, type WeightedRegex, WeightedRegexSchema, aiGwOrganisationsAuthSettingsPath, globalConfiguration, init, jsonNullable, pageSchema };
|
|
112928
|
+
export { AIGatewayApiKeysClient, type AIGatewayAuditLogListOptions, AIGatewayAuditLogsClient, AIGatewayClient, type AIGatewayClientOptions, AIGatewayConfigsClient, AIGatewayDeploymentsClient, type AIGatewayGroupOptions, AIGatewayGuardrailsClient, AIGatewayIntegrationsClient, type AIGatewayLogsOptions, AIGatewayMcpIntegrationsClient, AIGatewayOrganisationsClient, type AIGatewayPlane, AIGatewayPluginsClient, AIGatewayProvidersClient, type AIGatewaySubClientOptions, AIGatewayTelemetryClient, type AIGatewayTelemetryClientOptions, type AIGatewayWindowOptions, type AIGatewayWorkspaceGetOptions, type AIGatewayWorkspaceListOptions, type AIGatewayWorkspaceScopedListOptions, AIGatewayWorkspacesClient, type AIGatewayWorkspacesClientOptions, AIRS_ENDPOINTS, AISecSDKException, type AISecSDKExceptionMetadata, AI_GW_ADMIN_ENDPOINT, AI_GW_API_KEYS_SERVICE_PATH, AI_GW_API_KEYS_USER_PATH, AI_GW_AUDIT_LOGS_PATH, AI_GW_CHARTS_PATH, AI_GW_CHART_METRICS, AI_GW_CONFIGS_PATH, AI_GW_DATA_ENDPOINT, AI_GW_DEPLOYMENTS_PATH, AI_GW_GROUPS_PATH, AI_GW_GROUP_COLUMNS, AI_GW_GROUP_DIMENSIONS, AI_GW_GUARDRAILS_PATH, AI_GW_INTEGRATIONS_PATH, AI_GW_LOGS_PATH, AI_GW_MCP_INTEGRATIONS_PATH, AI_GW_ORGANISATIONS_SELF_PATH, AI_GW_PLUGINS_PATH, AI_GW_PROVIDERS_PATH, AI_GW_WORKSPACES_PATH, AI_SEC_API_ENDPOINT, AI_SEC_API_KEY, AI_SEC_API_TOKEN, ASYNC_SCAN_PATH, Action, Action as ActionType, type AdapterCreateRequest, AdapterCreateRequestSchema, type AdapterList, type AdapterListAllOptions, type AdapterListItem, AdapterListItemSchema, AdapterListSchema, type AdapterOperationOptions, type AdapterResponse, AdapterResponseSchema, type AdapterUpdateRequest, AdapterUpdateRequestSchema, type AdapterValidateRequest, AdapterValidateRequestSchema, type AdapterValidateResponse, AdapterValidateResponseSchema, type AdapterVar, type AdapterVarResponse, AdapterVarResponseSchema, AdapterVarSchema, type AdapterVarType, AdapterVarTypeSchema, type AdvancedDataProfileRequest, AdvancedDataProfileRequestSchema, type AgentEntry, AgentEntrySchema, type AgentMeta, AgentMetaSchema, type AgentProtectionItem, AgentProtectionItemSchema, type AgentReport, AgentReportSchema, type AiProfile, AiProfileSchema, type AiSecurityProfile, AiSecurityProfileSchema, ApiEndpointType, type ApiKey, type ApiKeyCreateRequest, ApiKeyCreateRequestSchema, type ApiKeyDPInfo, ApiKeyDPInfoSchema, type ApiKeyDeleteResponse, ApiKeyDeleteResponseSchema, type ApiKeyListAllOptions, type ApiKeyListResponse, ApiKeyListResponseSchema, type ApiKeyRegenerateRequest, ApiKeyRegenerateRequestSchema, ApiKeySchema, ApiKeysClient, type ApiKeysClientOptions, type AppExclusion, AppExclusionSchema, type AsyncScanObject, AsyncScanObjectSchema, type AsyncScanResponse, AsyncScanResponseSchema, type AttackDetailResponse, AttackDetailResponseSchema, type AttackListItem, AttackListItemSchema, type AttackListOptions, type AttackListResponse, AttackListResponseSchema, type AttackMultiTurnDetailResponse, AttackMultiTurnDetailResponseSchema, type AttackMultiTurnOutput, AttackMultiTurnOutputSchema, type AttackOutput, AttackOutputSchema, AttackStatus, AttackType, type AuditResponse, AuditResponseSchema, type AuthConfig, AuthConfigSchema, type AuthSettingsResponse, AuthSettingsResponseSchema, AuthType, BEARER, type BaseResponse, BaseResponseSchema, type BasicAuthAuthConfig, BasicAuthAuthConfigSchema, BasicAuthLocation, type BedrockAccessConnectionParams, BedrockAccessConnectionParamsSchema, BrandSubCategory, type CacheHitTrendResponse, CacheHitTrendResponseSchema, type CacheSummaryResponse, CacheSummaryResponseSchema, Category, type CategoryModel, CategoryModelSchema, type CategoryReport, CategoryReportSchema, Category as CategoryType, type CgReport, CgReportSchema, type Channel, type ChannelListOptions, type ChannelListPagination, ChannelListPaginationSchema, type ChannelListResponse, ChannelListResponseSchema, ChannelSchema, type ChannelStats, ChannelStatsSchema, ChannelStatus, ChannelStatusSchema, type ChannelStatusType, type ClientIdAndCustomerApp, ClientIdAndCustomerAppSchema, type CmdEntry, CmdEntrySchema, type CmdInjectReport, CmdInjectReportSchema, type CollectAllOptions, type ComparisonOperatorType, ComparisonOperatorTypeSchema, type ComplianceReport, ComplianceReportSchema, ComplianceSubCategory, type ComplianceTechnique, ComplianceTechniqueSchema, type ConnectionParams, ConnectionParamsSchema, Content, type ContentError, ContentErrorSchema, ContentErrorType, ContentErrorType as ContentErrorTypeType, type ContentOptions, type CostChartResponse, CostChartResponseSchema, type CountByName, CountByNameSchema, type CountChartResponse, CountChartResponseSchema, CountedQuotaEnum, type CreateChannelRequest, CreateChannelRequestSchema, type CreateCustomTopicRequest, CreateCustomTopicRequestSchema, type CreateSecurityProfileRequest, CreateSecurityProfileRequestSchema, type CustomAttackOutput, CustomAttackOutputSchema, type CustomAttackReportResponse, CustomAttackReportResponseSchema, type CustomAttacksListResponse, CustomAttacksListResponseSchema, type CustomAttacksReportListOptions, type CustomJobMetadata, CustomJobMetadataSchema, type CustomPromptCreateRequest, CustomPromptCreateRequestSchema, type CustomPromptList, type CustomPromptListItem, CustomPromptListItemSchema, CustomPromptListSchema, type CustomPromptResponse, CustomPromptResponseSchema, type CustomPromptSetArchiveRequest, CustomPromptSetArchiveRequestSchema, type CustomPromptSetCreateRequest, CustomPromptSetCreateRequestSchema, type CustomPromptSetList, type CustomPromptSetListActive, CustomPromptSetListActiveSchema, type CustomPromptSetListItem, CustomPromptSetListItemSchema, CustomPromptSetListSchema, type CustomPromptSetReference, CustomPromptSetReferenceSchema, type CustomPromptSetResponse, CustomPromptSetResponseSchema, type CustomPromptSetUpdateRequest, CustomPromptSetUpdateRequestSchema, type CustomPromptSetVersionInfo, CustomPromptSetVersionInfoSchema, type CustomPromptUpdateRequest, CustomPromptUpdateRequestSchema, type CustomTopic, type CustomTopicListResponse, CustomTopicListResponseSchema, CustomTopicSchema, type CustomerApp, type CustomerAppDeleteResponse, CustomerAppDeleteResponseSchema, type CustomerAppListAllOptions, type CustomerAppListResponse, CustomerAppListResponseSchema, CustomerAppSchema, type CustomerAppWithKeys, CustomerAppWithKeysSchema, CustomerAppsClient, type CustomerAppsClientOptions, DEFAULT_AI_GW_ADMIN_ENDPOINT, DEFAULT_AI_GW_DATA_ENDPOINT, DEFAULT_DLP_ENDPOINT, DEFAULT_ENDPOINT, DEFAULT_MGMT_ENDPOINT, DEFAULT_MODEL_SEC_DATA_ENDPOINT, DEFAULT_MODEL_SEC_MGMT_ENDPOINT, DEFAULT_RED_TEAM_DATA_ENDPOINT, DEFAULT_RED_TEAM_MGMT_ENDPOINT, DEFAULT_RED_TEAM_NETWORK_BROKER_ENDPOINT, DEFAULT_TOKEN_ENDPOINT, DLP_DATA_FILTERING_PROFILES_PATH, DLP_DATA_PATTERNS_PATH, DLP_DATA_PROFILES_PATH, DLP_DICTIONARIES_PATH, type DSDetailResult, DSDetailResultSchema, type DSResultMetadata, DSResultMetadataSchema, type DashboardAppQuery, type DashboardApplication, DashboardApplicationSchema, type DashboardApplicationSessionsBucket, DashboardApplicationSessionsBucketSchema, type DashboardApplicationViolationBreakdown, DashboardApplicationViolationBreakdownSchema, type DashboardApplicationsOverview, type DashboardApplicationsOverviewItem, DashboardApplicationsOverviewItemSchema, type DashboardApplicationsOverviewQuery, DashboardApplicationsOverviewSchema, DashboardClient, type DashboardClientOptions, type DashboardOverviewResponse, DashboardOverviewResponseSchema, type DashboardPagination, DashboardPaginationSchema, type DashboardSessionStats, DashboardSessionStatsSchema, type DataFilteringDetails, DataFilteringDetailsSchema, type DataFilteringProfileListAllParams, type DataFilteringProfileListParams, type DataFilteringProfileRequest, DataFilteringProfileRequestSchema, type DataFilteringProfileResponse, DataFilteringProfileResponseSchema, DataFilteringProfilesClient, type DataFilteringProfilesClientOptions, type DataFilteringRuleDTO, DataFilteringRuleDTOSchema, type DataLeakDetectionMember, DataLeakDetectionMemberSchema, type DataPatternConfidenceLevel, DataPatternConfidenceLevelSchema, type DataPatternDetectionConfig, DataPatternDetectionConfigSchema, type DataPatternLicenseType, DataPatternLicenseTypeSchema, type DataPatternListAllParams, type DataPatternListParams, type DataPatternMatchingRules, DataPatternMatchingRulesSchema, type DataPatternPatchRequest, DataPatternPatchRequestSchema, type DataPatternRequest, DataPatternRequestSchema, type DataPatternResponse, DataPatternResponseSchema, type DataPatternStatus, DataPatternStatusSchema, type DataPatternTags, DataPatternTagsSchema, type DataPatternTechnique, DataPatternTechniqueSchema, type DataPatternType, DataPatternTypeSchema, DataPatternsClient, type DataPatternsClientOptions, type DataProfileListAllParams, type DataProfileListParams, type DataProfilePatchRequest, DataProfilePatchRequestSchema, type DataProfileResponse, DataProfileResponseSchema, type DataProfileStatus, DataProfileStatusSchema, type DataProfileSubtype, DataProfileSubtypeSchema, type DataProfileType, DataProfileTypeSchema, DataProfilesClient, type DataProfilesClientOptions, type DataProtection, DataProtectionSchema, type DatabaseSecurityItem, DatabaseSecurityItemSchema, type DatabricksConnectionParams, DatabricksConnectionParamsSchema, DateRangeFilter, type DbsEntry, DbsEntrySchema, type DbsReport, DbsReportSchema, type DefaultTreeDetectionRule, DefaultTreeDetectionRuleSchema, type DeleteProfileConflict, DeleteProfileConflictSchema, type DeleteProfileResponse, DeleteProfileResponseSchema, type DeleteTopicConflict, DeleteTopicConflictSchema, type DeleteTopicResponse, DeleteTopicResponseSchema, type DeploymentProfileAttribute, DeploymentProfileAttributeSchema, type DeploymentProfileEntry, DeploymentProfileEntrySchema, type DeploymentProfileListOptions, type DeploymentProfileRequest, DeploymentProfileRequestSchema, DeploymentProfilesClient, type DeploymentProfilesClientOptions, type DeploymentProfilesResponse, DeploymentProfilesResponseSchema, type DestinationAttributes, DestinationAttributesSchema, type DetectionRule, type DetectionRuleItem, DetectionRuleItemSchema, DetectionRuleSchema, DetectionServiceName, DetectionServiceName as DetectionServiceNameType, type DetectionServiceResult, DetectionServiceResultSchema, type DetectorViolationBreakdownEntry, DetectorViolationBreakdownEntrySchema, type Device, type DeviceInstance, DeviceInstanceSchema, type DeviceLicense, DeviceLicenseSchema, type DeviceRequest, DeviceRequestSchema, type DeviceResponse, DeviceResponseSchema, DeviceSchema, type DeviceStatus, DeviceStatusSchema, DictionariesClient, type DictionariesClientOptions, type DictionaryCategory, DictionaryCategorySchema, type DictionaryClassification, DictionaryClassificationSchema, type DictionaryDetectionSubTechnique, DictionaryDetectionSubTechniqueSchema, type DictionaryDetectionTechnique, DictionaryDetectionTechniqueSchema, type DictionaryFileInput, type DictionaryGetParams, type DictionaryListAllParams, type DictionaryListParams, type DictionaryMetaDataDTO, DictionaryMetaDataDTOSchema, type DictionaryPatchRequest, DictionaryPatchRequestSchema, type DictionaryRequest, DictionaryRequestSchema, type DictionaryResponse, DictionaryResponseSchema, type DictionaryTags, DictionaryTagsSchema, type DictionaryType, DictionaryTypeSchema, type DictionaryUploadParams, type DlpDataProfile, type DlpDataProfilePolicy, DlpDataProfilePolicySchema, DlpDataProfileSchema, DlpNamespace, type DlpNamespaceOptions, type DlpPatternDetection, DlpPatternDetectionSchema, type DlpProfileListResponse, DlpProfileListResponseSchema, DlpProfilesClient, type DlpProfilesClientOptions, type DlpReport, DlpReportSchema, type DlpRule, DlpRuleSchema, type DynamicJobMetadata, DynamicJobMetadataSchema, type DynamicJobReport, DynamicJobReportSchema, type DynamicJobReportStats, DynamicJobReportStatsSchema, ErrorCodes, type ErrorLog, type ErrorLogListResponse, ErrorLogListResponseSchema, ErrorLogSchema, type ErrorResponse, ErrorResponseSchema, ErrorSource, ErrorStatus, ErrorStatus as ErrorStatusType, type ErrorTrendsResponse, ErrorTrendsResponseSchema, ErrorType, type EulaAcceptRequest, EulaAcceptRequestSchema, type EulaContentResponse, EulaContentResponseSchema, type EulaResponse, EulaResponseSchema, EvalOutcome, type EvalSummary, EvalSummarySchema, type ExceptionRuleDTO, ExceptionRuleDTOSchema, type Exclusions, ExclusionsSchema, type ExpressionOperatorType, ExpressionOperatorTypeSchema, type ExpressionTreeNode, ExpressionTreeNodeSchema, type FeedbackModelsResponse, FeedbackModelsResponseSchema, type FeedbackScoreDistributionResponse, FeedbackScoreDistributionResponseSchema, FileFormat, type FileList, FileListSchema, type FileResponse, FileResponseSchema, type FileScanData, FileScanDataSchema, FileScanResult, FileType, type GatewayApiKey, type GatewayApiKeyCreateRequest, GatewayApiKeySchema, type GatewayAuditLogRecord, GatewayAuditLogRecordSchema, type GatewayAuditLogsResponse, GatewayAuditLogsResponseSchema, type GatewayChartRecord, GatewayChartRecordSchema, type GatewayConfig, type GatewayConfigCreateRequest, type GatewayConfigCreateResponse, GatewayConfigCreateResponseSchema, type GatewayConfigDetail, GatewayConfigDetailSchema, GatewayConfigSchema, type GatewayDeployment, type GatewayDeploymentCreateRequest, type GatewayDeploymentCreateResponse, GatewayDeploymentCreateResponseSchema, type GatewayDeploymentDetail, GatewayDeploymentDetailSchema, GatewayDeploymentSchema, type GatewayGlobalWorkspaceAccess, GatewayGlobalWorkspaceAccessSchema, type GatewayGroupRow, GatewayGroupRowSchema, type GatewayGuardrail, type GatewayGuardrailCheck, type GatewayGuardrailCreateRequest, type GatewayGuardrailCreateResponse, GatewayGuardrailCreateResponseSchema, type GatewayGuardrailDetail, GatewayGuardrailDetailSchema, GatewayGuardrailSchema, type GatewayIntegration, type GatewayIntegrationCreateRequest, type GatewayIntegrationModelsRequest, type GatewayIntegrationModelsResponse, GatewayIntegrationModelsResponseSchema, GatewayIntegrationSchema, type GatewayIntegrationWorkspace, GatewayIntegrationWorkspaceSchema, type GatewayIntegrationWorkspacesRequest, type GatewayIntegrationWorkspacesResponse, GatewayIntegrationWorkspacesResponseSchema, type GatewayLogRecord, GatewayLogRecordSchema, type GatewayLogsResponse, GatewayLogsResponseSchema, type GatewayPlugin, type GatewayPluginCreateRequest, GatewayPluginSchema, type GatewayProvider, type GatewayProviderCreateRequest, type GatewayProviderCreateResponse, GatewayProviderCreateResponseSchema, GatewayProviderSchema, type GatewayRateLimit, GatewayRateLimitSchema, type GatewayUsageLimit, GatewayUsageLimitSchema, type GatewayWorkspace, type GatewayWorkspaceCreateRequest, type GatewayWorkspaceCreateResponse, GatewayWorkspaceCreateResponseSchema, type GatewayWorkspaceDetail, GatewayWorkspaceDetailSchema, GatewayWorkspaceSchema, type GatewayWorkspaceUpdateRequest, type GatewayWriteResponse, GatewayWriteResponseSchema, type GetTokenOptions, type Goal, type GoalListOptions, type GoalListResponse, GoalListResponseSchema, GoalSchema, GoalType, GoalTypeQueryParam, type GroupListResponse, GroupListResponseSchema, GuardrailAction, HEADER_API_KEY, HEADER_AUTH_TOKEN, type HTTPValidationError, HTTPValidationErrorSchema, HTTP_FORCE_RETRY_STATUS_CODES, type HeadersAuthConfig, HeadersAuthConfigSchema, type HuggingfaceConnectionParams, HuggingfaceConnectionParamsSchema, type IODetected, IODetectedSchema, type InitOptions, type InstanceExtraDetails, InstanceExtraDetailsSchema, type InstanceGetResponse, InstanceGetResponseSchema, type InstanceRequest, InstanceRequestSchema, type InstanceResponse, InstanceResponseSchema, type JobAbortResponse, JobAbortResponseSchema, type JobCreateRequest, JobCreateRequestSchema, type JobListResponse, JobListResponseSchema, type JobResponse, JobResponseSchema, JobStatus, JobStatusFilter, type JobTimeRecord, JobTimeRecordSchema, JobType, type JsonNullable, type Label, type LabelKeyList, LabelKeyListSchema, LabelSchema, type LabelValueList, LabelValueListSchema, type LabelsCreateRequest, LabelsCreateRequestSchema, type LabelsResponse, LabelsResponseSchema, type LanguageOption, LanguageOptionSchema, type LatencyChartResponse, LatencyChartResponseSchema, type ListApiKeysResponse, ListApiKeysResponseSchema, type ListConfigsResponse, ListConfigsResponseSchema, type ListDeploymentsResponse, ListDeploymentsResponseSchema, type ListGuardrailsResponse, ListGuardrailsResponseSchema, type ListIntegrationsResponse, ListIntegrationsResponseSchema, type ListMcpIntegrationsResponse, ListMcpIntegrationsResponseSchema, type ListModelSecurityGroupsResponse, ListModelSecurityGroupsResponseSchema, type ListModelSecurityRuleInstancesResponse, ListModelSecurityRuleInstancesResponseSchema, type ListModelSecurityRulesResponse, ListModelSecurityRulesResponseSchema, type ListPluginsResponse, ListPluginsResponseSchema, type ListProvidersResponse, ListProvidersResponseSchema, type ListWorkspacesResponse, ListWorkspacesResponseSchema, type ListingOptions, MAX_AI_PROFILE_NAME_LENGTH, MAX_API_KEY_LENGTH, MAX_CONNECTION_POOL_SIZE, MAX_CONTENT_CONTEXT_LENGTH, MAX_CONTENT_PROMPT_LENGTH, MAX_CONTENT_RESPONSE_LENGTH, MAX_NUMBER_OF_BATCH_SCAN_OBJECTS, MAX_NUMBER_OF_REPORT_IDS, MAX_NUMBER_OF_RETRIES, MAX_NUMBER_OF_SCAN_IDS, MAX_REPORT_ID_STR_LENGTH, MAX_SCAN_ID_STR_LENGTH, MAX_SESSION_ID_STR_LENGTH, MAX_TOKEN_LENGTH, MAX_TRANSACTION_ID_STR_LENGTH, MGMT_API_KEYS_TSG_PATH, MGMT_API_KEY_PATH, MGMT_CLIENT_ID, MGMT_CLIENT_SECRET, MGMT_CUSTOMER_APPS_TSG_PATH, MGMT_CUSTOMER_APP_PATH, MGMT_DASHBOARD_APPLICATIONS_OVERVIEW_PATH, MGMT_DASHBOARD_APPLICATION_PATH, MGMT_DASHBOARD_APPLICATION_VIOLATION_BREAKDOWN_PATH, MGMT_DEPLOYMENT_PROFILES_PATH, MGMT_DLP_PROFILES_PATH, MGMT_ENDPOINT, MGMT_OAUTH_INVALIDATE_PATH, MGMT_OAUTH_TOKEN_PATH, MGMT_PROFILES_TSG_PATH, MGMT_PROFILE_PATH, MGMT_SCAN_LOGS_PATH, MGMT_TOKEN_ENDPOINT, MGMT_TOPICS_TSG_PATH, MGMT_TOPIC_FORCE_PATH, MGMT_TOPIC_PATH, MGMT_TSG_ID, MODEL_SEC_CLIENT_ID, MODEL_SEC_CLIENT_SECRET, MODEL_SEC_DATA_ENDPOINT, MODEL_SEC_EVALUATIONS_PATH, MODEL_SEC_MGMT_ENDPOINT, MODEL_SEC_MODELS_PATH, MODEL_SEC_MODEL_VERSIONS_PATH, MODEL_SEC_PYPI_AUTH_PATH, MODEL_SEC_SCANS_PATH, MODEL_SEC_SECURITY_GROUPS_PATH, MODEL_SEC_SECURITY_RULES_PATH, MODEL_SEC_TOKEN_ENDPOINT, MODEL_SEC_TSG_ID, MODEL_SEC_VIOLATIONS_PATH, type MaliciousCodeProtection, MaliciousCodeProtectionSchema, type MalwareReport, MalwareReportSchema, ManagementClient, type ManagementClientOptions, type MaskedData, MaskedDataSchema, type McEntry, McEntrySchema, type McReport, McReportSchema, type McpIntegration, type McpIntegrationCreateRequest, McpIntegrationSchema, type McpIntegrationWorkspacesRequest, type Metadata, type MetadataCriterion, MetadataCriterionSchema, MetadataSchema, type Model, type ModelConfiguration, ModelConfigurationSchema, type ModelList, ModelListSchema, type ModelProtectionItem, ModelProtectionItemSchema, ModelResponseSchema, type ModelScanIssue, ModelScanIssueSchema, ModelScanStatus, ModelSecurityClient, type ModelSecurityClientOptions, type ModelSecurityEvaluationListOptions, type ModelSecurityFileListOptions, type ModelSecurityGroupCreateRequest, ModelSecurityGroupCreateRequestSchema, type ModelSecurityGroupListAllOptions, type ModelSecurityGroupListOptions, type ModelSecurityGroupResponse, ModelSecurityGroupResponseSchema, ModelSecurityGroupState, type ModelSecurityGroupUpdateRequest, ModelSecurityGroupUpdateRequestSchema, ModelSecurityGroupsClient, type ModelSecurityGroupsClientOptions, type ModelSecurityLabelListOptions, type ModelSecurityModelListAllOptions, type ModelSecurityModelListOptions, type ModelSecurityModelVersionFileListAllOptions, type ModelSecurityModelVersionFileListOptions, type ModelSecurityModelVersionListAllOptions, type ModelSecurityModelVersionListOptions, ModelSecurityModelsClient, type ModelSecurityModelsClientOptions, type ModelSecurityPagination, ModelSecurityPaginationSchema, type ModelSecurityRuleInstanceListOptions, type ModelSecurityRuleInstanceResponse, ModelSecurityRuleInstanceResponseSchema, type ModelSecurityRuleInstanceUpdateRequest, ModelSecurityRuleInstanceUpdateRequestSchema, type ModelSecurityRuleListAllOptions, type ModelSecurityRuleListOptions, type ModelSecurityRuleResponse, ModelSecurityRuleResponseSchema, ModelSecurityRulesClient, type ModelSecurityRulesClientOptions, type ModelSecurityScanListAllOptions, type ModelSecurityScanListOptions, ModelSecurityScansClient, type ModelSecurityScansClientOptions, type ModelSecurityViolationListOptions, type ModelVersion, type ModelVersionList, ModelVersionListSchema, ModelVersionResponseSchema, type MultiProfileDataNode, MultiProfileDataNodeSchema, type MultiProfileDetectionRule, MultiProfileDetectionRuleSchema, type MultiTurnStatefulConfig, MultiTurnStatefulConfigSchema, type MultiTurnStatelessConfig, MultiTurnStatelessConfigSchema, type OAuth2AuthConfig, OAuth2AuthConfigSchema, OAuthClient, type OAuthClientOptions, OAuthManagementClient, type OAuthManagementClientOptions, type Oauth2Token, Oauth2TokenSchema, type Offset, OffsetSchema, type OpenAIConnectionParams, OpenAIConnectionParamsSchema, type OrganisationSelfResponse, OrganisationSelfResponseSchema, PAYLOAD_HASH, type Page, type PageDataFilteringProfileResponse, PageDataFilteringProfileResponseSchema, type PageDataPatternResponse, PageDataPatternResponseSchema, type PageDataProfileResponse, PageDataProfileResponseSchema, type PageDictionaryResponse, PageDictionaryResponseSchema, type PageableObject, PageableObjectSchema, type PaginatedScanResults, PaginatedScanResultsSchema, type PaginationOptions, type PaginationPage, type PatternDetection, PatternDetectionSchema, type Policy, type PolicyAppProtection, PolicyAppProtectionSchema, type PolicyLatency, PolicyLatencySchema, PolicySchema, PolicyType, type PrerequisiteModel, PrerequisiteModelSchema, type ProfileListAllOptions, ProfilesClient, type ProfilesClientOptions, ProfilingStatus, type PromptDetailResponse, PromptDetailResponseSchema, type PromptDetected, PromptDetectedSchema, type PromptDetectionDetails, PromptDetectionDetailsSchema, type PromptListAllOptions, type PromptListOptions, type PromptSetListAllOptions, type PromptSetListOptions, type PromptSetStats, PromptSetStatsSchema, type PromptSetSummary, PromptSetSummarySchema, type PromptSetsReportResponse, PromptSetsReportResponseSchema, type PromptsBySetListOptions, type PropertyAssignment, PropertyAssignmentSchema, type PropertyDefinition, PropertyDefinitionSchema, type PropertyNameCreateRequest, PropertyNameCreateRequestSchema, type PropertyNamesListResponse, PropertyNamesListResponseSchema, type PropertyStatistic, PropertyStatisticSchema, type PropertyValueCreateRequest, PropertyValueCreateRequestSchema, type PropertyValueStatistic, PropertyValueStatisticSchema, type PropertyValuesMultipleResponse, PropertyValuesMultipleResponseSchema, type PropertyValuesResponse, PropertyValuesResponseSchema, type PyPIAuthResponse, PyPIAuthResponseSchema, type QuotaDetails, QuotaDetailsSchema, type QuotaSummary, QuotaSummarySchema, RED_TEAM_ADAPTER_PATH, RED_TEAM_ADAPTER_VALIDATE_PATH, RED_TEAM_CATEGORIES_PATH, RED_TEAM_CHANNELS_PATH, RED_TEAM_CHANNELS_STATS_PATH, RED_TEAM_CLIENT_ID, RED_TEAM_CLIENT_SECRET, RED_TEAM_CUSTOM_ATTACKS_REPORT_PATH, RED_TEAM_CUSTOM_ATTACK_PATH, RED_TEAM_DASHBOARD_PATH, RED_TEAM_DATA_ENDPOINT, RED_TEAM_ERROR_LOG_PATH, RED_TEAM_ERROR_LOG_TARGET_PROFILE_PATH, RED_TEAM_EULA_PATH, RED_TEAM_INSTANCES_PATH, RED_TEAM_LANGUAGES_PATH, RED_TEAM_MGMT_DASHBOARD_PATH, RED_TEAM_MGMT_ENDPOINT, RED_TEAM_NETWORK_BROKER_ENDPOINT, RED_TEAM_QUOTA_PATH, RED_TEAM_REGISTRY_CREDENTIALS_PATH, RED_TEAM_REPORT_DYNAMIC_PATH, RED_TEAM_REPORT_PATH, RED_TEAM_REPORT_STATIC_PATH, RED_TEAM_SCAN_PATH, RED_TEAM_SENTIMENT_PATH, RED_TEAM_TARGET_PATH, RED_TEAM_TARGET_VALIDATE_AUTH_PATH, RED_TEAM_TEMPLATE_PATH, RED_TEAM_TOKEN_ENDPOINT, RED_TEAM_TSG_ID, RedTeamAdaptersClient, type RedTeamAdaptersClientOptions, RedTeamCategory, RedTeamClient, type RedTeamClientOptions, RedTeamCustomAttackReportsClient, type RedTeamCustomAttackReportsClientOptions, RedTeamCustomAttacksClient, type RedTeamCustomAttacksClientOptions, RedTeamErrorType, RedTeamEulaClient, type RedTeamEulaClientOptions, RedTeamInstancesClient, type RedTeamInstancesClientOptions, type RedTeamListOptions, RedTeamNetworkBrokerClient, type RedTeamNetworkBrokerClientOptions, type RedTeamPagination, RedTeamPaginationSchema, RedTeamReportsClient, type RedTeamReportsClientOptions, type RedTeamScanListAllOptions, type RedTeamScanListOptions, RedTeamScansClient, type RedTeamScansClientOptions, RedTeamTargetsClient, type RedTeamTargetsClientOptions, type RegistryCredentials, RegistryCredentialsSchema, type RemediationDetail, RemediationDetailSchema, type RemediationResponse, RemediationResponseSchema, type RescuedRetriesResponse, RescuedRetriesResponseSchema, type ResourceModelExtension, ResourceModelExtensionSchema, type ResponseDetected, ResponseDetectedSchema, type ResponseDetectionDetails, ResponseDetectionDetailsSchema, ResponseMode, type RestConnectionParams, RestConnectionParamsSchema, type RiskLevel, RiskLevelSchema, RiskRating, type RuleConfiguration, RuleConfigurationSchema, type RuleEditableField, type RuleEditableFieldDropdown, RuleEditableFieldDropdownSchema, RuleEditableFieldSchema, RuleEditableFieldType, type RuleEvaluationList, RuleEvaluationListSchema, type RuleEvaluationResponse, RuleEvaluationResponseSchema, RuleEvaluationResult, RuleFieldValueKey, type RuleItemConfidenceLevel, RuleItemConfidenceLevelSchema, type RuleItemDetectionTechnique, RuleItemDetectionTechniqueSchema, type RuleItemEdmMatchCriteria, RuleItemEdmMatchCriteriaSchema, type RuleItemMatchType, RuleItemMatchTypeSchema, type RuleItemOccurrenceOperatorType, RuleItemOccurrenceOperatorTypeSchema, type RuleRemediation, RuleRemediationSchema, RuleState, RuleType, type RuntimeSecurityPolicy, RuntimeSecurityPolicySchema, type RuntimeSecurityProfileResponse, RuntimeSecurityProfileResponseSchema, SCAN_REPORTS_PATH, SCAN_RESULTS_PATH, SDK_VERSION, SYNC_SCAN_PATH, SafetySubCategory, type ScanBaseResponse, ScanBaseResponseSchema, type ScanCallOptions, type ScanCreateRequest, ScanCreateRequestSchema, type ScanDetails, ScanDetailsSchema, type ScanIdResult, ScanIdResultSchema, type ScanList, ScanListSchema, type ScanLogQueryOptions, ScanLogsClient, type ScanLogsClientOptions, ScanOrigin, type ScanRequest, type ScanRequestContentsInner, ScanRequestContentsInnerSchema, ScanRequestSchema, type ScanResponse, ScanResponseSchema, type ScanResultEntry, ScanResultEntrySchema, type ScanResultForDashboard, ScanResultForDashboardSchema, type ScanStatisticsResponse, ScanStatisticsResponseSchema, type ScanSummary, ScanSummarySchema, Scanner, type ScoreTrendResponse, ScoreTrendResponseSchema, type ScoreTrendSeries, ScoreTrendSeriesSchema, type SecurityProfile, type SecurityProfileListResponse, SecurityProfileListResponseSchema, SecurityProfileSchema, SecuritySubCategory, type SentimentRequest, SentimentRequestSchema, type SentimentResponse, SentimentResponseSchema, SeverityFilter, type SeverityReport, SeverityReportSchema, type SeverityStats, SeverityStatsSchema, SortByDateField, SortByFileField, SortDirection, type SortObject, SortObjectSchema, type SourceAttributes, SourceAttributesSchema, SourceType, type StaticJobMetadata, StaticJobMetadataSchema, type StaticJobRemediation, type StaticJobRemediationRecommendation, StaticJobRemediationRecommendationSchema, StaticJobRemediationSchema, type StaticJobReport, StaticJobReportSchema, type StaticJobReportStats, StaticJobReportStatsSchema, StatusQueryParam, type StreamDetailResponse, StreamDetailResponseSchema, type StreamIterationData, StreamIterationDataSchema, type StreamListResponse, StreamListResponseSchema, StreamType, type StreamingConnectionParams, StreamingConnectionParamsSchema, type SubCategoryModel, SubCategoryModelSchema, type SubCategoryStats, SubCategoryStatsSchema, type SyncScanOptions, TSG_ID_HEADER, type TargetAdditionalContext, TargetAdditionalContextSchema, TargetAuthType, type TargetAuthValidationRequest, TargetAuthValidationRequestSchema, type TargetAuthValidationResponse, TargetAuthValidationResponseSchema, type TargetBackground, TargetBackgroundSchema, TargetConnectionType, type TargetContextUpdate, TargetContextUpdateSchema, type TargetCreateRequest, TargetCreateRequestSchema, type TargetJobRequest, TargetJobRequestSchema, type TargetList, type TargetListAllOptions, type TargetListItem, TargetListItemSchema, type TargetListOptions, TargetListSchema, type TargetMetadata, TargetMetadataSchema, type TargetOperationOptions, type TargetProbeRequest, TargetProbeRequestSchema, type TargetProfileResponse, TargetProfileResponseSchema, type TargetReference, TargetReferenceSchema, type TargetResponse, TargetResponseSchema, TargetStatus, type TargetTemplateCollection, TargetTemplateCollectionSchema, TargetType, type TargetUpdateRequest, TargetUpdateRequestSchema, type TcReport, TcReportSchema, type TenantLanguagesResponse, TenantLanguagesResponseSchema, type TgReport, TgReportSchema, ThreatCategory, type ThreatScanReport, ThreatScanReportSchema, type TokenInfo, type TokenStats, TokenStatsSchema, type TokensChartResponse, TokensChartResponseSchema, type ToolDetected, ToolDetectedSchema, type ToolDetectionDetails, ToolDetectionDetailsSchema, type ToolDetectionEntry, ToolDetectionEntrySchema, type ToolDetectionFlags, ToolDetectionFlagsSchema, type ToolEvent, type ToolEventMetadata, ToolEventMetadataSchema, ToolEventSchema, type TopicArray, TopicArraySchema, type TopicListAllOptions, type TopicListOptions, type TopicObject, TopicObjectSchema, TopicsClient, type TopicsClientOptions, type URLExclusion, URLExclusionSchema, USER_AGENT, type UpdateChannelRequest, UpdateChannelRequestSchema, type UrlCategory, UrlCategorySchema, type UrlfEntry, UrlfEntrySchema, type UserGroupResponse, UserGroupResponseSchema, type UserTrendsResponse, UserTrendsResponseSchema, type ValidationError, ValidationErrorSchema, Verdict, Verdict as VerdictType, type ViolationList, ViolationListSchema, type ViolationRemediation, ViolationRemediationSchema, type ViolationResponse, ViolationResponseSchema, type ViolationSeverityCounts, ViolationSeverityCountsSchema, type WalkAllOptions, type WebSocketConnectionParams, WebSocketConnectionParamsSchema, type WeightedRegex, WeightedRegexSchema, aiGwOrganisationsAuthSettingsPath, collectAll, collectSkipPages, collectSpringPages, globalConfiguration, init, jsonNullable, pageSchema, paginate, serializeListing };
|