@aws-sdk/client-bedrock-agentcore-control 3.1027.0 → 3.1028.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 +84 -0
- package/dist-cjs/index.js +223 -0
- package/dist-cjs/schemas/schemas_0.js +502 -56
- package/dist-es/BedrockAgentCoreControl.js +28 -0
- package/dist-es/commands/CreateRegistryCommand.js +16 -0
- package/dist-es/commands/CreateRegistryRecordCommand.js +16 -0
- package/dist-es/commands/DeleteRegistryCommand.js +16 -0
- package/dist-es/commands/DeleteRegistryRecordCommand.js +16 -0
- package/dist-es/commands/GetRegistryCommand.js +16 -0
- package/dist-es/commands/GetRegistryRecordCommand.js +16 -0
- package/dist-es/commands/ListRegistriesCommand.js +16 -0
- package/dist-es/commands/ListRegistryRecordsCommand.js +16 -0
- package/dist-es/commands/SubmitRegistryRecordForApprovalCommand.js +16 -0
- package/dist-es/commands/UpdateRegistryCommand.js +16 -0
- package/dist-es/commands/UpdateRegistryRecordCommand.js +16 -0
- package/dist-es/commands/UpdateRegistryRecordStatusCommand.js +16 -0
- package/dist-es/commands/index.js +12 -0
- package/dist-es/models/enums.js +40 -0
- package/dist-es/pagination/ListRegistriesPaginator.js +4 -0
- package/dist-es/pagination/ListRegistryRecordsPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/schemas/schemas_0.js +491 -46
- package/dist-types/BedrockAgentCoreControl.d.ts +99 -0
- package/dist-types/BedrockAgentCoreControlClient.d.ts +14 -2
- package/dist-types/commands/CreatePolicyEngineCommand.d.ts +1 -2
- package/dist-types/commands/CreateRegistryCommand.d.ts +127 -0
- package/dist-types/commands/CreateRegistryRecordCommand.d.ts +159 -0
- package/dist-types/commands/DeleteRegistryCommand.d.ts +92 -0
- package/dist-types/commands/DeleteRegistryRecordCommand.d.ts +91 -0
- package/dist-types/commands/GetRegistryCommand.d.ts +129 -0
- package/dist-types/commands/GetRegistryRecordCommand.d.ts +161 -0
- package/dist-types/commands/ListOnlineEvaluationConfigsCommand.d.ts +2 -1
- package/dist-types/commands/ListRegistriesCommand.d.ts +101 -0
- package/dist-types/commands/ListRegistryRecordsCommand.d.ts +111 -0
- package/dist-types/commands/SubmitRegistryRecordForApprovalCommand.d.ts +97 -0
- package/dist-types/commands/UpdateOnlineEvaluationConfigCommand.d.ts +1 -1
- package/dist-types/commands/UpdateRegistryCommand.d.ts +175 -0
- package/dist-types/commands/UpdateRegistryRecordCommand.d.ts +248 -0
- package/dist-types/commands/UpdateRegistryRecordStatusCommand.d.ts +100 -0
- package/dist-types/commands/index.d.ts +12 -0
- package/dist-types/models/enums.d.ts +96 -0
- package/dist-types/models/models_0.d.ts +70 -176
- package/dist-types/models/models_1.d.ts +1438 -6
- package/dist-types/pagination/ListRegistriesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListRegistryRecordsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/schemas/schemas_0.d.ts +71 -0
- package/dist-types/ts3.4/BedrockAgentCoreControl.d.ts +219 -0
- package/dist-types/ts3.4/BedrockAgentCoreControlClient.d.ts +72 -0
- package/dist-types/ts3.4/commands/CreatePolicyEngineCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/CreateRegistryCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/CreateRegistryRecordCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteRegistryCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DeleteRegistryRecordCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetRegistryCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetRegistryRecordCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListOnlineEvaluationConfigsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListRegistriesCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListRegistryRecordsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/SubmitRegistryRecordForApprovalCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateOnlineEvaluationConfigCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateRegistryCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateRegistryRecordCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateRegistryRecordStatusCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +12 -0
- package/dist-types/ts3.4/models/enums.d.ts +54 -0
- package/dist-types/ts3.4/models/models_0.d.ts +18 -40
- package/dist-types/ts3.4/models/models_1.d.ts +378 -0
- package/dist-types/ts3.4/pagination/ListRegistriesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListRegistryRecordsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +71 -0
- package/package.json +1 -1
|
@@ -1,24 +1,81 @@
|
|
|
1
1
|
import {
|
|
2
|
+
DescriptorType,
|
|
2
3
|
FindingType,
|
|
4
|
+
OnlineEvaluationConfigStatus,
|
|
5
|
+
OnlineEvaluationExecutionStatus,
|
|
3
6
|
PolicyEngineStatus,
|
|
4
7
|
PolicyGenerationStatus,
|
|
5
8
|
PolicyStatus,
|
|
6
9
|
PolicyValidationMode,
|
|
10
|
+
RegistryAuthorizerType,
|
|
11
|
+
RegistryRecordCredentialProviderType,
|
|
12
|
+
RegistryRecordOAuthGrantType,
|
|
13
|
+
RegistryRecordStatus,
|
|
14
|
+
RegistryStatus,
|
|
7
15
|
SchemaType,
|
|
16
|
+
SynchronizationType,
|
|
8
17
|
TargetStatus,
|
|
9
18
|
} from "./enums";
|
|
10
19
|
import {
|
|
20
|
+
A2aDescriptor,
|
|
21
|
+
AgentSkillsDescriptor,
|
|
11
22
|
ApiGatewayTargetConfiguration,
|
|
12
23
|
ApiSchemaConfiguration,
|
|
13
24
|
AuthorizationData,
|
|
25
|
+
AuthorizerConfiguration,
|
|
14
26
|
CredentialProviderConfiguration,
|
|
27
|
+
DataSourceConfig,
|
|
28
|
+
EvaluatorReference,
|
|
15
29
|
KmsConfiguration,
|
|
16
30
|
ManagedResourceDetails,
|
|
17
31
|
McpServerTargetConfiguration,
|
|
18
32
|
MetadataConfiguration,
|
|
19
33
|
PrivateEndpoint,
|
|
34
|
+
Rule,
|
|
20
35
|
S3Configuration,
|
|
36
|
+
SkillDefinition,
|
|
37
|
+
SkillMdDefinition,
|
|
21
38
|
} from "./models_0";
|
|
39
|
+
export interface OnlineEvaluationConfigSummary {
|
|
40
|
+
onlineEvaluationConfigArn: string | undefined;
|
|
41
|
+
onlineEvaluationConfigId: string | undefined;
|
|
42
|
+
onlineEvaluationConfigName: string | undefined;
|
|
43
|
+
description?: string | undefined;
|
|
44
|
+
status: OnlineEvaluationConfigStatus | undefined;
|
|
45
|
+
executionStatus: OnlineEvaluationExecutionStatus | undefined;
|
|
46
|
+
createdAt: Date | undefined;
|
|
47
|
+
updatedAt: Date | undefined;
|
|
48
|
+
failureReason?: string | undefined;
|
|
49
|
+
}
|
|
50
|
+
export interface ListOnlineEvaluationConfigsResponse {
|
|
51
|
+
onlineEvaluationConfigs: OnlineEvaluationConfigSummary[] | undefined;
|
|
52
|
+
nextToken?: string | undefined;
|
|
53
|
+
}
|
|
54
|
+
export interface UpdateOnlineEvaluationConfigRequest {
|
|
55
|
+
clientToken?: string | undefined;
|
|
56
|
+
onlineEvaluationConfigId: string | undefined;
|
|
57
|
+
description?: string | undefined;
|
|
58
|
+
rule?: Rule | undefined;
|
|
59
|
+
dataSourceConfig?: DataSourceConfig | undefined;
|
|
60
|
+
evaluators?: EvaluatorReference[] | undefined;
|
|
61
|
+
evaluationExecutionRoleArn?: string | undefined;
|
|
62
|
+
executionStatus?: OnlineEvaluationExecutionStatus | undefined;
|
|
63
|
+
}
|
|
64
|
+
export interface UpdateOnlineEvaluationConfigResponse {
|
|
65
|
+
onlineEvaluationConfigArn: string | undefined;
|
|
66
|
+
onlineEvaluationConfigId: string | undefined;
|
|
67
|
+
updatedAt: Date | undefined;
|
|
68
|
+
status: OnlineEvaluationConfigStatus | undefined;
|
|
69
|
+
executionStatus: OnlineEvaluationExecutionStatus | undefined;
|
|
70
|
+
failureReason?: string | undefined;
|
|
71
|
+
}
|
|
72
|
+
export interface CreatePolicyEngineRequest {
|
|
73
|
+
name: string | undefined;
|
|
74
|
+
description?: string | undefined;
|
|
75
|
+
clientToken?: string | undefined;
|
|
76
|
+
encryptionKeyArn?: string | undefined;
|
|
77
|
+
tags?: Record<string, string> | undefined;
|
|
78
|
+
}
|
|
22
79
|
export interface CreatePolicyEngineResponse {
|
|
23
80
|
policyEngineId: string | undefined;
|
|
24
81
|
name: string | undefined;
|
|
@@ -334,6 +391,327 @@ export interface PutResourcePolicyRequest {
|
|
|
334
391
|
export interface PutResourcePolicyResponse {
|
|
335
392
|
policy: string | undefined;
|
|
336
393
|
}
|
|
394
|
+
export interface CustomDescriptor {
|
|
395
|
+
inlineContent?: string | undefined;
|
|
396
|
+
}
|
|
397
|
+
export interface ServerDefinition {
|
|
398
|
+
schemaVersion?: string | undefined;
|
|
399
|
+
inlineContent?: string | undefined;
|
|
400
|
+
}
|
|
401
|
+
export interface ToolsDefinition {
|
|
402
|
+
protocolVersion?: string | undefined;
|
|
403
|
+
inlineContent?: string | undefined;
|
|
404
|
+
}
|
|
405
|
+
export interface McpDescriptor {
|
|
406
|
+
server?: ServerDefinition | undefined;
|
|
407
|
+
tools?: ToolsDefinition | undefined;
|
|
408
|
+
}
|
|
409
|
+
export interface Descriptors {
|
|
410
|
+
mcp?: McpDescriptor | undefined;
|
|
411
|
+
a2a?: A2aDescriptor | undefined;
|
|
412
|
+
custom?: CustomDescriptor | undefined;
|
|
413
|
+
agentSkills?: AgentSkillsDescriptor | undefined;
|
|
414
|
+
}
|
|
415
|
+
export interface RegistryRecordIamCredentialProvider {
|
|
416
|
+
roleArn?: string | undefined;
|
|
417
|
+
service?: string | undefined;
|
|
418
|
+
region?: string | undefined;
|
|
419
|
+
}
|
|
420
|
+
export interface RegistryRecordOAuthCredentialProvider {
|
|
421
|
+
providerArn: string | undefined;
|
|
422
|
+
grantType?: RegistryRecordOAuthGrantType | undefined;
|
|
423
|
+
scopes?: string[] | undefined;
|
|
424
|
+
customParameters?: Record<string, string> | undefined;
|
|
425
|
+
}
|
|
426
|
+
export type RegistryRecordCredentialProviderUnion =
|
|
427
|
+
| RegistryRecordCredentialProviderUnion.IamCredentialProviderMember
|
|
428
|
+
| RegistryRecordCredentialProviderUnion.OauthCredentialProviderMember
|
|
429
|
+
| RegistryRecordCredentialProviderUnion.$UnknownMember;
|
|
430
|
+
export declare namespace RegistryRecordCredentialProviderUnion {
|
|
431
|
+
interface OauthCredentialProviderMember {
|
|
432
|
+
oauthCredentialProvider: RegistryRecordOAuthCredentialProvider;
|
|
433
|
+
iamCredentialProvider?: never;
|
|
434
|
+
$unknown?: never;
|
|
435
|
+
}
|
|
436
|
+
interface IamCredentialProviderMember {
|
|
437
|
+
oauthCredentialProvider?: never;
|
|
438
|
+
iamCredentialProvider: RegistryRecordIamCredentialProvider;
|
|
439
|
+
$unknown?: never;
|
|
440
|
+
}
|
|
441
|
+
interface $UnknownMember {
|
|
442
|
+
oauthCredentialProvider?: never;
|
|
443
|
+
iamCredentialProvider?: never;
|
|
444
|
+
$unknown: [string, any];
|
|
445
|
+
}
|
|
446
|
+
interface Visitor<T> {
|
|
447
|
+
oauthCredentialProvider: (
|
|
448
|
+
value: RegistryRecordOAuthCredentialProvider
|
|
449
|
+
) => T;
|
|
450
|
+
iamCredentialProvider: (value: RegistryRecordIamCredentialProvider) => T;
|
|
451
|
+
_: (name: string, value: any) => T;
|
|
452
|
+
}
|
|
453
|
+
}
|
|
454
|
+
export interface RegistryRecordCredentialProviderConfiguration {
|
|
455
|
+
credentialProviderType: RegistryRecordCredentialProviderType | undefined;
|
|
456
|
+
credentialProvider: RegistryRecordCredentialProviderUnion | undefined;
|
|
457
|
+
}
|
|
458
|
+
export interface FromUrlSynchronizationConfiguration {
|
|
459
|
+
url: string | undefined;
|
|
460
|
+
credentialProviderConfigurations?:
|
|
461
|
+
| RegistryRecordCredentialProviderConfiguration[]
|
|
462
|
+
| undefined;
|
|
463
|
+
}
|
|
464
|
+
export interface SynchronizationConfiguration {
|
|
465
|
+
fromUrl?: FromUrlSynchronizationConfiguration | undefined;
|
|
466
|
+
}
|
|
467
|
+
export interface CreateRegistryRecordRequest {
|
|
468
|
+
registryId: string | undefined;
|
|
469
|
+
name: string | undefined;
|
|
470
|
+
description?: string | undefined;
|
|
471
|
+
descriptorType: DescriptorType | undefined;
|
|
472
|
+
descriptors?: Descriptors | undefined;
|
|
473
|
+
recordVersion?: string | undefined;
|
|
474
|
+
synchronizationType?: SynchronizationType | undefined;
|
|
475
|
+
synchronizationConfiguration?: SynchronizationConfiguration | undefined;
|
|
476
|
+
clientToken?: string | undefined;
|
|
477
|
+
}
|
|
478
|
+
export interface CreateRegistryRecordResponse {
|
|
479
|
+
recordArn: string | undefined;
|
|
480
|
+
status: RegistryRecordStatus | undefined;
|
|
481
|
+
}
|
|
482
|
+
export interface DeleteRegistryRecordRequest {
|
|
483
|
+
registryId: string | undefined;
|
|
484
|
+
recordId: string | undefined;
|
|
485
|
+
}
|
|
486
|
+
export interface DeleteRegistryRecordResponse {}
|
|
487
|
+
export interface GetRegistryRecordRequest {
|
|
488
|
+
registryId: string | undefined;
|
|
489
|
+
recordId: string | undefined;
|
|
490
|
+
}
|
|
491
|
+
export interface GetRegistryRecordResponse {
|
|
492
|
+
registryArn: string | undefined;
|
|
493
|
+
recordArn: string | undefined;
|
|
494
|
+
recordId: string | undefined;
|
|
495
|
+
name: string | undefined;
|
|
496
|
+
description?: string | undefined;
|
|
497
|
+
descriptorType: DescriptorType | undefined;
|
|
498
|
+
descriptors: Descriptors | undefined;
|
|
499
|
+
recordVersion?: string | undefined;
|
|
500
|
+
status: RegistryRecordStatus | undefined;
|
|
501
|
+
createdAt: Date | undefined;
|
|
502
|
+
updatedAt: Date | undefined;
|
|
503
|
+
statusReason?: string | undefined;
|
|
504
|
+
synchronizationType?: SynchronizationType | undefined;
|
|
505
|
+
synchronizationConfiguration?: SynchronizationConfiguration | undefined;
|
|
506
|
+
}
|
|
507
|
+
export interface ListRegistryRecordsRequest {
|
|
508
|
+
registryId: string | undefined;
|
|
509
|
+
maxResults?: number | undefined;
|
|
510
|
+
nextToken?: string | undefined;
|
|
511
|
+
name?: string | undefined;
|
|
512
|
+
status?: RegistryRecordStatus | undefined;
|
|
513
|
+
descriptorType?: DescriptorType | undefined;
|
|
514
|
+
}
|
|
515
|
+
export interface RegistryRecordSummary {
|
|
516
|
+
registryArn: string | undefined;
|
|
517
|
+
recordArn: string | undefined;
|
|
518
|
+
recordId: string | undefined;
|
|
519
|
+
name: string | undefined;
|
|
520
|
+
description?: string | undefined;
|
|
521
|
+
descriptorType: DescriptorType | undefined;
|
|
522
|
+
recordVersion: string | undefined;
|
|
523
|
+
status: RegistryRecordStatus | undefined;
|
|
524
|
+
createdAt: Date | undefined;
|
|
525
|
+
updatedAt: Date | undefined;
|
|
526
|
+
}
|
|
527
|
+
export interface ListRegistryRecordsResponse {
|
|
528
|
+
registryRecords: RegistryRecordSummary[] | undefined;
|
|
529
|
+
nextToken?: string | undefined;
|
|
530
|
+
}
|
|
531
|
+
export interface SubmitRegistryRecordForApprovalRequest {
|
|
532
|
+
registryId: string | undefined;
|
|
533
|
+
recordId: string | undefined;
|
|
534
|
+
}
|
|
535
|
+
export interface SubmitRegistryRecordForApprovalResponse {
|
|
536
|
+
registryArn: string | undefined;
|
|
537
|
+
recordArn: string | undefined;
|
|
538
|
+
recordId: string | undefined;
|
|
539
|
+
status: RegistryRecordStatus | undefined;
|
|
540
|
+
updatedAt: Date | undefined;
|
|
541
|
+
}
|
|
542
|
+
export interface UpdatedA2aDescriptor {
|
|
543
|
+
optionalValue?: A2aDescriptor | undefined;
|
|
544
|
+
}
|
|
545
|
+
export interface UpdatedSkillDefinition {
|
|
546
|
+
optionalValue?: SkillDefinition | undefined;
|
|
547
|
+
}
|
|
548
|
+
export interface UpdatedSkillMdDefinition {
|
|
549
|
+
optionalValue?: SkillMdDefinition | undefined;
|
|
550
|
+
}
|
|
551
|
+
export interface UpdatedAgentSkillsDescriptorFields {
|
|
552
|
+
skillMd?: UpdatedSkillMdDefinition | undefined;
|
|
553
|
+
skillDefinition?: UpdatedSkillDefinition | undefined;
|
|
554
|
+
}
|
|
555
|
+
export interface UpdatedAgentSkillsDescriptor {
|
|
556
|
+
optionalValue?: UpdatedAgentSkillsDescriptorFields | undefined;
|
|
557
|
+
}
|
|
558
|
+
export interface UpdatedCustomDescriptor {
|
|
559
|
+
optionalValue?: CustomDescriptor | undefined;
|
|
560
|
+
}
|
|
561
|
+
export interface UpdatedServerDefinition {
|
|
562
|
+
optionalValue?: ServerDefinition | undefined;
|
|
563
|
+
}
|
|
564
|
+
export interface UpdatedToolsDefinition {
|
|
565
|
+
optionalValue?: ToolsDefinition | undefined;
|
|
566
|
+
}
|
|
567
|
+
export interface UpdatedMcpDescriptorFields {
|
|
568
|
+
server?: UpdatedServerDefinition | undefined;
|
|
569
|
+
tools?: UpdatedToolsDefinition | undefined;
|
|
570
|
+
}
|
|
571
|
+
export interface UpdatedMcpDescriptor {
|
|
572
|
+
optionalValue?: UpdatedMcpDescriptorFields | undefined;
|
|
573
|
+
}
|
|
574
|
+
export interface UpdatedDescriptorsUnion {
|
|
575
|
+
mcp?: UpdatedMcpDescriptor | undefined;
|
|
576
|
+
a2a?: UpdatedA2aDescriptor | undefined;
|
|
577
|
+
custom?: UpdatedCustomDescriptor | undefined;
|
|
578
|
+
agentSkills?: UpdatedAgentSkillsDescriptor | undefined;
|
|
579
|
+
}
|
|
580
|
+
export interface UpdatedDescriptors {
|
|
581
|
+
optionalValue?: UpdatedDescriptorsUnion | undefined;
|
|
582
|
+
}
|
|
583
|
+
export interface UpdatedSynchronizationConfiguration {
|
|
584
|
+
optionalValue?: SynchronizationConfiguration | undefined;
|
|
585
|
+
}
|
|
586
|
+
export interface UpdatedSynchronizationType {
|
|
587
|
+
optionalValue?: SynchronizationType | undefined;
|
|
588
|
+
}
|
|
589
|
+
export interface UpdateRegistryRecordRequest {
|
|
590
|
+
registryId: string | undefined;
|
|
591
|
+
recordId: string | undefined;
|
|
592
|
+
name?: string | undefined;
|
|
593
|
+
description?: UpdatedDescription | undefined;
|
|
594
|
+
descriptorType?: DescriptorType | undefined;
|
|
595
|
+
descriptors?: UpdatedDescriptors | undefined;
|
|
596
|
+
recordVersion?: string | undefined;
|
|
597
|
+
synchronizationType?: UpdatedSynchronizationType | undefined;
|
|
598
|
+
synchronizationConfiguration?:
|
|
599
|
+
| UpdatedSynchronizationConfiguration
|
|
600
|
+
| undefined;
|
|
601
|
+
triggerSynchronization?: boolean | undefined;
|
|
602
|
+
}
|
|
603
|
+
export interface UpdateRegistryRecordResponse {
|
|
604
|
+
registryArn: string | undefined;
|
|
605
|
+
recordArn: string | undefined;
|
|
606
|
+
recordId: string | undefined;
|
|
607
|
+
name: string | undefined;
|
|
608
|
+
description?: string | undefined;
|
|
609
|
+
descriptorType: DescriptorType | undefined;
|
|
610
|
+
descriptors: Descriptors | undefined;
|
|
611
|
+
recordVersion?: string | undefined;
|
|
612
|
+
status: RegistryRecordStatus | undefined;
|
|
613
|
+
createdAt: Date | undefined;
|
|
614
|
+
updatedAt: Date | undefined;
|
|
615
|
+
statusReason?: string | undefined;
|
|
616
|
+
synchronizationType?: SynchronizationType | undefined;
|
|
617
|
+
synchronizationConfiguration?: SynchronizationConfiguration | undefined;
|
|
618
|
+
}
|
|
619
|
+
export interface UpdateRegistryRecordStatusRequest {
|
|
620
|
+
registryId: string | undefined;
|
|
621
|
+
recordId: string | undefined;
|
|
622
|
+
status: RegistryRecordStatus | undefined;
|
|
623
|
+
statusReason: string | undefined;
|
|
624
|
+
}
|
|
625
|
+
export interface UpdateRegistryRecordStatusResponse {
|
|
626
|
+
registryArn: string | undefined;
|
|
627
|
+
recordArn: string | undefined;
|
|
628
|
+
recordId: string | undefined;
|
|
629
|
+
status: RegistryRecordStatus | undefined;
|
|
630
|
+
statusReason: string | undefined;
|
|
631
|
+
updatedAt: Date | undefined;
|
|
632
|
+
}
|
|
633
|
+
export interface ApprovalConfiguration {
|
|
634
|
+
autoApproval?: boolean | undefined;
|
|
635
|
+
}
|
|
636
|
+
export interface CreateRegistryRequest {
|
|
637
|
+
name: string | undefined;
|
|
638
|
+
description?: string | undefined;
|
|
639
|
+
authorizerType?: RegistryAuthorizerType | undefined;
|
|
640
|
+
authorizerConfiguration?: AuthorizerConfiguration | undefined;
|
|
641
|
+
clientToken?: string | undefined;
|
|
642
|
+
approvalConfiguration?: ApprovalConfiguration | undefined;
|
|
643
|
+
}
|
|
644
|
+
export interface CreateRegistryResponse {
|
|
645
|
+
registryArn: string | undefined;
|
|
646
|
+
}
|
|
647
|
+
export interface DeleteRegistryRequest {
|
|
648
|
+
registryId: string | undefined;
|
|
649
|
+
}
|
|
650
|
+
export interface DeleteRegistryResponse {
|
|
651
|
+
status: RegistryStatus | undefined;
|
|
652
|
+
}
|
|
653
|
+
export interface GetRegistryRequest {
|
|
654
|
+
registryId: string | undefined;
|
|
655
|
+
}
|
|
656
|
+
export interface GetRegistryResponse {
|
|
657
|
+
name: string | undefined;
|
|
658
|
+
description?: string | undefined;
|
|
659
|
+
registryId: string | undefined;
|
|
660
|
+
registryArn: string | undefined;
|
|
661
|
+
authorizerType?: RegistryAuthorizerType | undefined;
|
|
662
|
+
authorizerConfiguration?: AuthorizerConfiguration | undefined;
|
|
663
|
+
approvalConfiguration?: ApprovalConfiguration | undefined;
|
|
664
|
+
status: RegistryStatus | undefined;
|
|
665
|
+
statusReason?: string | undefined;
|
|
666
|
+
createdAt: Date | undefined;
|
|
667
|
+
updatedAt: Date | undefined;
|
|
668
|
+
}
|
|
669
|
+
export interface ListRegistriesRequest {
|
|
670
|
+
maxResults?: number | undefined;
|
|
671
|
+
nextToken?: string | undefined;
|
|
672
|
+
status?: RegistryStatus | undefined;
|
|
673
|
+
}
|
|
674
|
+
export interface RegistrySummary {
|
|
675
|
+
name: string | undefined;
|
|
676
|
+
description?: string | undefined;
|
|
677
|
+
registryId: string | undefined;
|
|
678
|
+
registryArn: string | undefined;
|
|
679
|
+
authorizerType?: RegistryAuthorizerType | undefined;
|
|
680
|
+
status: RegistryStatus | undefined;
|
|
681
|
+
statusReason?: string | undefined;
|
|
682
|
+
createdAt: Date | undefined;
|
|
683
|
+
updatedAt: Date | undefined;
|
|
684
|
+
}
|
|
685
|
+
export interface ListRegistriesResponse {
|
|
686
|
+
registries: RegistrySummary[] | undefined;
|
|
687
|
+
nextToken?: string | undefined;
|
|
688
|
+
}
|
|
689
|
+
export interface UpdatedApprovalConfiguration {
|
|
690
|
+
optionalValue?: ApprovalConfiguration | undefined;
|
|
691
|
+
}
|
|
692
|
+
export interface UpdatedAuthorizerConfiguration {
|
|
693
|
+
optionalValue?: AuthorizerConfiguration | undefined;
|
|
694
|
+
}
|
|
695
|
+
export interface UpdateRegistryRequest {
|
|
696
|
+
registryId: string | undefined;
|
|
697
|
+
name?: string | undefined;
|
|
698
|
+
description?: UpdatedDescription | undefined;
|
|
699
|
+
authorizerConfiguration?: UpdatedAuthorizerConfiguration | undefined;
|
|
700
|
+
approvalConfiguration?: UpdatedApprovalConfiguration | undefined;
|
|
701
|
+
}
|
|
702
|
+
export interface UpdateRegistryResponse {
|
|
703
|
+
name: string | undefined;
|
|
704
|
+
description?: string | undefined;
|
|
705
|
+
registryId: string | undefined;
|
|
706
|
+
registryArn: string | undefined;
|
|
707
|
+
authorizerType?: RegistryAuthorizerType | undefined;
|
|
708
|
+
authorizerConfiguration?: AuthorizerConfiguration | undefined;
|
|
709
|
+
approvalConfiguration?: ApprovalConfiguration | undefined;
|
|
710
|
+
status: RegistryStatus | undefined;
|
|
711
|
+
statusReason?: string | undefined;
|
|
712
|
+
createdAt: Date | undefined;
|
|
713
|
+
updatedAt: Date | undefined;
|
|
714
|
+
}
|
|
337
715
|
export interface SetTokenVaultCMKRequest {
|
|
338
716
|
tokenVaultId?: string | undefined;
|
|
339
717
|
kmsConfiguration: KmsConfiguration | undefined;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListRegistriesCommandInput,
|
|
4
|
+
ListRegistriesCommandOutput,
|
|
5
|
+
} from "../commands/ListRegistriesCommand";
|
|
6
|
+
import { BedrockAgentCoreControlPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListRegistries: (
|
|
8
|
+
config: BedrockAgentCoreControlPaginationConfiguration,
|
|
9
|
+
input: ListRegistriesCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListRegistriesCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListRegistryRecordsCommandInput,
|
|
4
|
+
ListRegistryRecordsCommandOutput,
|
|
5
|
+
} from "../commands/ListRegistryRecordsCommand";
|
|
6
|
+
import { BedrockAgentCoreControlPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListRegistryRecords: (
|
|
8
|
+
config: BedrockAgentCoreControlPaginationConfiguration,
|
|
9
|
+
input: ListRegistryRecordsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListRegistryRecordsCommandOutput>;
|
|
@@ -16,4 +16,6 @@ export * from "./ListPoliciesPaginator";
|
|
|
16
16
|
export * from "./ListPolicyEnginesPaginator";
|
|
17
17
|
export * from "./ListPolicyGenerationAssetsPaginator";
|
|
18
18
|
export * from "./ListPolicyGenerationsPaginator";
|
|
19
|
+
export * from "./ListRegistriesPaginator";
|
|
20
|
+
export * from "./ListRegistryRecordsPaginator";
|
|
19
21
|
export * from "./ListWorkloadIdentitiesPaginator";
|
|
@@ -21,13 +21,17 @@ export declare var ThrottlingException$: StaticErrorSchema;
|
|
|
21
21
|
export declare var UnauthorizedException$: StaticErrorSchema;
|
|
22
22
|
export declare var ValidationException$: StaticErrorSchema;
|
|
23
23
|
export declare const errorTypeRegistries: TypeRegistry[];
|
|
24
|
+
export declare var A2aDescriptor$: StaticStructureSchema;
|
|
25
|
+
export declare var AgentCardDefinition$: StaticStructureSchema;
|
|
24
26
|
export declare var AgentRuntime$: StaticStructureSchema;
|
|
25
27
|
export declare var AgentRuntimeEndpoint$: StaticStructureSchema;
|
|
28
|
+
export declare var AgentSkillsDescriptor$: StaticStructureSchema;
|
|
26
29
|
export declare var ApiGatewayTargetConfiguration$: StaticStructureSchema;
|
|
27
30
|
export declare var ApiGatewayToolConfiguration$: StaticStructureSchema;
|
|
28
31
|
export declare var ApiGatewayToolFilter$: StaticStructureSchema;
|
|
29
32
|
export declare var ApiGatewayToolOverride$: StaticStructureSchema;
|
|
30
33
|
export declare var ApiKeyCredentialProviderItem$: StaticStructureSchema;
|
|
34
|
+
export declare var ApprovalConfiguration$: StaticStructureSchema;
|
|
31
35
|
export declare var AtlassianOauth2ProviderConfigInput$: StaticStructureSchema;
|
|
32
36
|
export declare var AtlassianOauth2ProviderConfigOutput$: StaticStructureSchema;
|
|
33
37
|
export declare var AuthorizingClaimMatchValueType$: StaticStructureSchema;
|
|
@@ -76,10 +80,15 @@ export declare var CreatePolicyEngineRequest$: StaticStructureSchema;
|
|
|
76
80
|
export declare var CreatePolicyEngineResponse$: StaticStructureSchema;
|
|
77
81
|
export declare var CreatePolicyRequest$: StaticStructureSchema;
|
|
78
82
|
export declare var CreatePolicyResponse$: StaticStructureSchema;
|
|
83
|
+
export declare var CreateRegistryRecordRequest$: StaticStructureSchema;
|
|
84
|
+
export declare var CreateRegistryRecordResponse$: StaticStructureSchema;
|
|
85
|
+
export declare var CreateRegistryRequest$: StaticStructureSchema;
|
|
86
|
+
export declare var CreateRegistryResponse$: StaticStructureSchema;
|
|
79
87
|
export declare var CreateWorkloadIdentityRequest$: StaticStructureSchema;
|
|
80
88
|
export declare var CreateWorkloadIdentityResponse$: StaticStructureSchema;
|
|
81
89
|
export declare var CredentialProviderConfiguration$: StaticStructureSchema;
|
|
82
90
|
export declare var CustomClaimValidationType$: StaticStructureSchema;
|
|
91
|
+
export declare var CustomDescriptor$: StaticStructureSchema;
|
|
83
92
|
export declare var CustomJWTAuthorizerConfiguration$: StaticStructureSchema;
|
|
84
93
|
export declare var CustomMemoryStrategyInput$: StaticStructureSchema;
|
|
85
94
|
export declare var CustomOauth2ProviderConfigInput$: StaticStructureSchema;
|
|
@@ -113,10 +122,15 @@ export declare var DeletePolicyEngineRequest$: StaticStructureSchema;
|
|
|
113
122
|
export declare var DeletePolicyEngineResponse$: StaticStructureSchema;
|
|
114
123
|
export declare var DeletePolicyRequest$: StaticStructureSchema;
|
|
115
124
|
export declare var DeletePolicyResponse$: StaticStructureSchema;
|
|
125
|
+
export declare var DeleteRegistryRecordRequest$: StaticStructureSchema;
|
|
126
|
+
export declare var DeleteRegistryRecordResponse$: StaticStructureSchema;
|
|
127
|
+
export declare var DeleteRegistryRequest$: StaticStructureSchema;
|
|
128
|
+
export declare var DeleteRegistryResponse$: StaticStructureSchema;
|
|
116
129
|
export declare var DeleteResourcePolicyRequest$: StaticStructureSchema;
|
|
117
130
|
export declare var DeleteResourcePolicyResponse$: StaticStructureSchema;
|
|
118
131
|
export declare var DeleteWorkloadIdentityRequest$: StaticStructureSchema;
|
|
119
132
|
export declare var DeleteWorkloadIdentityResponse$: StaticStructureSchema;
|
|
133
|
+
export declare var Descriptors$: StaticStructureSchema;
|
|
120
134
|
export declare var EpisodicConsolidationOverride$: StaticStructureSchema;
|
|
121
135
|
export declare var EpisodicExtractionOverride$: StaticStructureSchema;
|
|
122
136
|
export declare var EpisodicMemoryStrategyInput$: StaticStructureSchema;
|
|
@@ -130,6 +144,7 @@ export declare var EpisodicReflectionOverride$: StaticStructureSchema;
|
|
|
130
144
|
export declare var EvaluatorSummary$: StaticStructureSchema;
|
|
131
145
|
export declare var Filter$: StaticStructureSchema;
|
|
132
146
|
export declare var Finding$: StaticStructureSchema;
|
|
147
|
+
export declare var FromUrlSynchronizationConfiguration$: StaticStructureSchema;
|
|
133
148
|
export declare var GatewayApiKeyCredentialProvider$: StaticStructureSchema;
|
|
134
149
|
export declare var GatewayInterceptorConfiguration$: StaticStructureSchema;
|
|
135
150
|
export declare var GatewayPolicyEngineConfiguration$: StaticStructureSchema;
|
|
@@ -165,6 +180,10 @@ export declare var GetPolicyGenerationRequest$: StaticStructureSchema;
|
|
|
165
180
|
export declare var GetPolicyGenerationResponse$: StaticStructureSchema;
|
|
166
181
|
export declare var GetPolicyRequest$: StaticStructureSchema;
|
|
167
182
|
export declare var GetPolicyResponse$: StaticStructureSchema;
|
|
183
|
+
export declare var GetRegistryRecordRequest$: StaticStructureSchema;
|
|
184
|
+
export declare var GetRegistryRecordResponse$: StaticStructureSchema;
|
|
185
|
+
export declare var GetRegistryRequest$: StaticStructureSchema;
|
|
186
|
+
export declare var GetRegistryResponse$: StaticStructureSchema;
|
|
168
187
|
export declare var GetResourcePolicyRequest$: StaticStructureSchema;
|
|
169
188
|
export declare var GetResourcePolicyResponse$: StaticStructureSchema;
|
|
170
189
|
export declare var GetTokenVaultRequest$: StaticStructureSchema;
|
|
@@ -223,6 +242,10 @@ export declare var ListPolicyGenerationAssetsRequest$: StaticStructureSchema;
|
|
|
223
242
|
export declare var ListPolicyGenerationAssetsResponse$: StaticStructureSchema;
|
|
224
243
|
export declare var ListPolicyGenerationsRequest$: StaticStructureSchema;
|
|
225
244
|
export declare var ListPolicyGenerationsResponse$: StaticStructureSchema;
|
|
245
|
+
export declare var ListRegistriesRequest$: StaticStructureSchema;
|
|
246
|
+
export declare var ListRegistriesResponse$: StaticStructureSchema;
|
|
247
|
+
export declare var ListRegistryRecordsRequest$: StaticStructureSchema;
|
|
248
|
+
export declare var ListRegistryRecordsResponse$: StaticStructureSchema;
|
|
226
249
|
export declare var ListTagsForResourceRequest$: StaticStructureSchema;
|
|
227
250
|
export declare var ListTagsForResourceResponse$: StaticStructureSchema;
|
|
228
251
|
export declare var ListWorkloadIdentitiesRequest$: StaticStructureSchema;
|
|
@@ -230,6 +253,7 @@ export declare var ListWorkloadIdentitiesResponse$: StaticStructureSchema;
|
|
|
230
253
|
export declare var LlmAsAJudgeEvaluatorConfig$: StaticStructureSchema;
|
|
231
254
|
export declare var ManagedLatticeResource$: StaticStructureSchema;
|
|
232
255
|
export declare var ManagedResourceDetails$: StaticStructureSchema;
|
|
256
|
+
export declare var McpDescriptor$: StaticStructureSchema;
|
|
233
257
|
export declare var MCPGatewayConfiguration$: StaticStructureSchema;
|
|
234
258
|
export declare var McpLambdaTargetConfiguration$: StaticStructureSchema;
|
|
235
259
|
export declare var McpServerTargetConfiguration$: StaticStructureSchema;
|
|
@@ -263,6 +287,11 @@ export declare var ProtocolConfiguration$: StaticStructureSchema;
|
|
|
263
287
|
export declare var PutResourcePolicyRequest$: StaticStructureSchema;
|
|
264
288
|
export declare var PutResourcePolicyResponse$: StaticStructureSchema;
|
|
265
289
|
export declare var RecordingConfig$: StaticStructureSchema;
|
|
290
|
+
export declare var RegistryRecordCredentialProviderConfiguration$: StaticStructureSchema;
|
|
291
|
+
export declare var RegistryRecordIamCredentialProvider$: StaticStructureSchema;
|
|
292
|
+
export declare var RegistryRecordOAuthCredentialProvider$: StaticStructureSchema;
|
|
293
|
+
export declare var RegistryRecordSummary$: StaticStructureSchema;
|
|
294
|
+
export declare var RegistrySummary$: StaticStructureSchema;
|
|
266
295
|
export declare var Rule$: StaticStructureSchema;
|
|
267
296
|
export declare var RuntimeMetadataConfiguration$: StaticStructureSchema;
|
|
268
297
|
export declare var S3Configuration$: StaticStructureSchema;
|
|
@@ -281,20 +310,26 @@ export declare var SemanticMemoryStrategyInput$: StaticStructureSchema;
|
|
|
281
310
|
export declare var SemanticOverrideConfigurationInput$: StaticStructureSchema;
|
|
282
311
|
export declare var SemanticOverrideConsolidationConfigurationInput$: StaticStructureSchema;
|
|
283
312
|
export declare var SemanticOverrideExtractionConfigurationInput$: StaticStructureSchema;
|
|
313
|
+
export declare var ServerDefinition$: StaticStructureSchema;
|
|
284
314
|
export declare var SessionConfig$: StaticStructureSchema;
|
|
285
315
|
export declare var SessionStorageConfiguration$: StaticStructureSchema;
|
|
286
316
|
export declare var SetTokenVaultCMKRequest$: StaticStructureSchema;
|
|
287
317
|
export declare var SetTokenVaultCMKResponse$: StaticStructureSchema;
|
|
318
|
+
export declare var SkillDefinition$: StaticStructureSchema;
|
|
319
|
+
export declare var SkillMdDefinition$: StaticStructureSchema;
|
|
288
320
|
export declare var SlackOauth2ProviderConfigInput$: StaticStructureSchema;
|
|
289
321
|
export declare var SlackOauth2ProviderConfigOutput$: StaticStructureSchema;
|
|
290
322
|
export declare var StartPolicyGenerationRequest$: StaticStructureSchema;
|
|
291
323
|
export declare var StartPolicyGenerationResponse$: StaticStructureSchema;
|
|
292
324
|
export declare var StrategyConfiguration$: StaticStructureSchema;
|
|
293
325
|
export declare var StreamDeliveryResources$: StaticStructureSchema;
|
|
326
|
+
export declare var SubmitRegistryRecordForApprovalRequest$: StaticStructureSchema;
|
|
327
|
+
export declare var SubmitRegistryRecordForApprovalResponse$: StaticStructureSchema;
|
|
294
328
|
export declare var SummaryConsolidationOverride$: StaticStructureSchema;
|
|
295
329
|
export declare var SummaryMemoryStrategyInput$: StaticStructureSchema;
|
|
296
330
|
export declare var SummaryOverrideConfigurationInput$: StaticStructureSchema;
|
|
297
331
|
export declare var SummaryOverrideConsolidationConfigurationInput$: StaticStructureSchema;
|
|
332
|
+
export declare var SynchronizationConfiguration$: StaticStructureSchema;
|
|
298
333
|
export declare var SynchronizeGatewayTargetsRequest$: StaticStructureSchema;
|
|
299
334
|
export declare var SynchronizeGatewayTargetsResponse$: StaticStructureSchema;
|
|
300
335
|
export declare var TagResourceRequest$: StaticStructureSchema;
|
|
@@ -305,6 +340,7 @@ export declare var TimeBasedTriggerInput$: StaticStructureSchema;
|
|
|
305
340
|
export declare var TokenBasedTrigger$: StaticStructureSchema;
|
|
306
341
|
export declare var TokenBasedTriggerInput$: StaticStructureSchema;
|
|
307
342
|
export declare var ToolDefinition$: StaticStructureSchema;
|
|
343
|
+
export declare var ToolsDefinition$: StaticStructureSchema;
|
|
308
344
|
export declare var UntagResourceRequest$: StaticStructureSchema;
|
|
309
345
|
export declare var UntagResourceResponse$: StaticStructureSchema;
|
|
310
346
|
export declare var UpdateAgentRuntimeEndpointRequest$: StaticStructureSchema;
|
|
@@ -313,7 +349,23 @@ export declare var UpdateAgentRuntimeRequest$: StaticStructureSchema;
|
|
|
313
349
|
export declare var UpdateAgentRuntimeResponse$: StaticStructureSchema;
|
|
314
350
|
export declare var UpdateApiKeyCredentialProviderRequest$: StaticStructureSchema;
|
|
315
351
|
export declare var UpdateApiKeyCredentialProviderResponse$: StaticStructureSchema;
|
|
352
|
+
export declare var UpdatedA2aDescriptor$: StaticStructureSchema;
|
|
353
|
+
export declare var UpdatedAgentSkillsDescriptor$: StaticStructureSchema;
|
|
354
|
+
export declare var UpdatedAgentSkillsDescriptorFields$: StaticStructureSchema;
|
|
355
|
+
export declare var UpdatedApprovalConfiguration$: StaticStructureSchema;
|
|
356
|
+
export declare var UpdatedAuthorizerConfiguration$: StaticStructureSchema;
|
|
357
|
+
export declare var UpdatedCustomDescriptor$: StaticStructureSchema;
|
|
316
358
|
export declare var UpdatedDescription$: StaticStructureSchema;
|
|
359
|
+
export declare var UpdatedDescriptors$: StaticStructureSchema;
|
|
360
|
+
export declare var UpdatedDescriptorsUnion$: StaticStructureSchema;
|
|
361
|
+
export declare var UpdatedMcpDescriptor$: StaticStructureSchema;
|
|
362
|
+
export declare var UpdatedMcpDescriptorFields$: StaticStructureSchema;
|
|
363
|
+
export declare var UpdatedServerDefinition$: StaticStructureSchema;
|
|
364
|
+
export declare var UpdatedSkillDefinition$: StaticStructureSchema;
|
|
365
|
+
export declare var UpdatedSkillMdDefinition$: StaticStructureSchema;
|
|
366
|
+
export declare var UpdatedSynchronizationConfiguration$: StaticStructureSchema;
|
|
367
|
+
export declare var UpdatedSynchronizationType$: StaticStructureSchema;
|
|
368
|
+
export declare var UpdatedToolsDefinition$: StaticStructureSchema;
|
|
317
369
|
export declare var UpdateEvaluatorRequest$: StaticStructureSchema;
|
|
318
370
|
export declare var UpdateEvaluatorResponse$: StaticStructureSchema;
|
|
319
371
|
export declare var UpdateGatewayRequest$: StaticStructureSchema;
|
|
@@ -330,6 +382,12 @@ export declare var UpdatePolicyEngineRequest$: StaticStructureSchema;
|
|
|
330
382
|
export declare var UpdatePolicyEngineResponse$: StaticStructureSchema;
|
|
331
383
|
export declare var UpdatePolicyRequest$: StaticStructureSchema;
|
|
332
384
|
export declare var UpdatePolicyResponse$: StaticStructureSchema;
|
|
385
|
+
export declare var UpdateRegistryRecordRequest$: StaticStructureSchema;
|
|
386
|
+
export declare var UpdateRegistryRecordResponse$: StaticStructureSchema;
|
|
387
|
+
export declare var UpdateRegistryRecordStatusRequest$: StaticStructureSchema;
|
|
388
|
+
export declare var UpdateRegistryRecordStatusResponse$: StaticStructureSchema;
|
|
389
|
+
export declare var UpdateRegistryRequest$: StaticStructureSchema;
|
|
390
|
+
export declare var UpdateRegistryResponse$: StaticStructureSchema;
|
|
333
391
|
export declare var UpdateWorkloadIdentityRequest$: StaticStructureSchema;
|
|
334
392
|
export declare var UpdateWorkloadIdentityResponse$: StaticStructureSchema;
|
|
335
393
|
export declare var UserPreferenceConsolidationOverride$: StaticStructureSchema;
|
|
@@ -382,6 +440,7 @@ export declare var PolicyDefinition$: StaticUnionSchema;
|
|
|
382
440
|
export declare var PrivateEndpoint$: StaticUnionSchema;
|
|
383
441
|
export declare var RatingScale$: StaticUnionSchema;
|
|
384
442
|
export declare var ReflectionConfiguration$: StaticUnionSchema;
|
|
443
|
+
export declare var RegistryRecordCredentialProviderUnion$: StaticUnionSchema;
|
|
385
444
|
export declare var RequestHeaderConfiguration$: StaticUnionSchema;
|
|
386
445
|
export declare var Resource$: StaticUnionSchema;
|
|
387
446
|
export declare var ResourceLocation$: StaticUnionSchema;
|
|
@@ -405,6 +464,8 @@ export declare var CreateOauth2CredentialProvider$: StaticOperationSchema;
|
|
|
405
464
|
export declare var CreateOnlineEvaluationConfig$: StaticOperationSchema;
|
|
406
465
|
export declare var CreatePolicy$: StaticOperationSchema;
|
|
407
466
|
export declare var CreatePolicyEngine$: StaticOperationSchema;
|
|
467
|
+
export declare var CreateRegistry$: StaticOperationSchema;
|
|
468
|
+
export declare var CreateRegistryRecord$: StaticOperationSchema;
|
|
408
469
|
export declare var CreateWorkloadIdentity$: StaticOperationSchema;
|
|
409
470
|
export declare var DeleteAgentRuntime$: StaticOperationSchema;
|
|
410
471
|
export declare var DeleteAgentRuntimeEndpoint$: StaticOperationSchema;
|
|
@@ -420,6 +481,8 @@ export declare var DeleteOauth2CredentialProvider$: StaticOperationSchema;
|
|
|
420
481
|
export declare var DeleteOnlineEvaluationConfig$: StaticOperationSchema;
|
|
421
482
|
export declare var DeletePolicy$: StaticOperationSchema;
|
|
422
483
|
export declare var DeletePolicyEngine$: StaticOperationSchema;
|
|
484
|
+
export declare var DeleteRegistry$: StaticOperationSchema;
|
|
485
|
+
export declare var DeleteRegistryRecord$: StaticOperationSchema;
|
|
423
486
|
export declare var DeleteResourcePolicy$: StaticOperationSchema;
|
|
424
487
|
export declare var DeleteWorkloadIdentity$: StaticOperationSchema;
|
|
425
488
|
export declare var GetAgentRuntime$: StaticOperationSchema;
|
|
@@ -437,6 +500,8 @@ export declare var GetOnlineEvaluationConfig$: StaticOperationSchema;
|
|
|
437
500
|
export declare var GetPolicy$: StaticOperationSchema;
|
|
438
501
|
export declare var GetPolicyEngine$: StaticOperationSchema;
|
|
439
502
|
export declare var GetPolicyGeneration$: StaticOperationSchema;
|
|
503
|
+
export declare var GetRegistry$: StaticOperationSchema;
|
|
504
|
+
export declare var GetRegistryRecord$: StaticOperationSchema;
|
|
440
505
|
export declare var GetResourcePolicy$: StaticOperationSchema;
|
|
441
506
|
export declare var GetTokenVault$: StaticOperationSchema;
|
|
442
507
|
export declare var GetWorkloadIdentity$: StaticOperationSchema;
|
|
@@ -457,11 +522,14 @@ export declare var ListPolicies$: StaticOperationSchema;
|
|
|
457
522
|
export declare var ListPolicyEngines$: StaticOperationSchema;
|
|
458
523
|
export declare var ListPolicyGenerationAssets$: StaticOperationSchema;
|
|
459
524
|
export declare var ListPolicyGenerations$: StaticOperationSchema;
|
|
525
|
+
export declare var ListRegistries$: StaticOperationSchema;
|
|
526
|
+
export declare var ListRegistryRecords$: StaticOperationSchema;
|
|
460
527
|
export declare var ListTagsForResource$: StaticOperationSchema;
|
|
461
528
|
export declare var ListWorkloadIdentities$: StaticOperationSchema;
|
|
462
529
|
export declare var PutResourcePolicy$: StaticOperationSchema;
|
|
463
530
|
export declare var SetTokenVaultCMK$: StaticOperationSchema;
|
|
464
531
|
export declare var StartPolicyGeneration$: StaticOperationSchema;
|
|
532
|
+
export declare var SubmitRegistryRecordForApproval$: StaticOperationSchema;
|
|
465
533
|
export declare var SynchronizeGatewayTargets$: StaticOperationSchema;
|
|
466
534
|
export declare var TagResource$: StaticOperationSchema;
|
|
467
535
|
export declare var UntagResource$: StaticOperationSchema;
|
|
@@ -476,4 +544,7 @@ export declare var UpdateOauth2CredentialProvider$: StaticOperationSchema;
|
|
|
476
544
|
export declare var UpdateOnlineEvaluationConfig$: StaticOperationSchema;
|
|
477
545
|
export declare var UpdatePolicy$: StaticOperationSchema;
|
|
478
546
|
export declare var UpdatePolicyEngine$: StaticOperationSchema;
|
|
547
|
+
export declare var UpdateRegistry$: StaticOperationSchema;
|
|
548
|
+
export declare var UpdateRegistryRecord$: StaticOperationSchema;
|
|
549
|
+
export declare var UpdateRegistryRecordStatus$: StaticOperationSchema;
|
|
479
550
|
export declare var UpdateWorkloadIdentity$: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-bedrock-agentcore-control",
|
|
3
3
|
"description": "AWS SDK for JavaScript Bedrock Agentcore Control Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1028.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-bedrock-agentcore-control",
|