@aws-sdk/client-agent-registry-control 3.1105.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/LICENSE +201 -0
- package/README.md +286 -0
- package/dist-cjs/index.js +1536 -0
- package/dist-es/AgentRegistryControl.js +49 -0
- package/dist-es/AgentRegistryControlClient.js +47 -0
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +40 -0
- package/dist-es/commandBuilder.js +6 -0
- package/dist-es/commands/CreateRegistryCommand.js +4 -0
- package/dist-es/commands/CreateRegistryRecordCommand.js +4 -0
- package/dist-es/commands/DeleteRegistryCommand.js +4 -0
- package/dist-es/commands/DeleteRegistryRecordCommand.js +4 -0
- package/dist-es/commands/GetRegistryCommand.js +4 -0
- package/dist-es/commands/GetRegistryRecordCommand.js +4 -0
- package/dist-es/commands/ListRegistriesCommand.js +4 -0
- package/dist-es/commands/ListRegistryRecordsCommand.js +4 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +4 -0
- package/dist-es/commands/SubmitRegistryRecordForApprovalCommand.js +4 -0
- package/dist-es/commands/TagResourceCommand.js +4 -0
- package/dist-es/commands/UntagResourceCommand.js +4 -0
- package/dist-es/commands/UpdateRegistryCommand.js +4 -0
- package/dist-es/commands/UpdateRegistryRecordCommand.js +4 -0
- package/dist-es/commands/UpdateRegistryRecordStatusCommand.js +4 -0
- package/dist-es/commands/index.js +15 -0
- package/dist-es/endpoint/EndpointParameters.js +9 -0
- package/dist-es/endpoint/bdd.js +22 -0
- package/dist-es/endpoint/endpointResolver.js +14 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +11 -0
- package/dist-es/models/AgentRegistryControlServiceException.js +8 -0
- package/dist-es/models/enums.js +69 -0
- package/dist-es/models/errors.js +89 -0
- package/dist-es/models/models_0.js +1 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListRegistriesPaginator.js +4 -0
- package/dist-es/pagination/ListRegistryRecordsPaginator.js +4 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/runtimeConfig.browser.js +29 -0
- package/dist-es/runtimeConfig.js +43 -0
- package/dist-es/runtimeConfig.native.js +9 -0
- package/dist-es/runtimeConfig.shared.js +40 -0
- package/dist-es/runtimeExtensions.js +9 -0
- package/dist-es/schemas/schemas_0.js +783 -0
- package/dist-es/waiters/index.js +2 -0
- package/dist-es/waiters/waitForRegistryReady.js +58 -0
- package/dist-es/waiters/waitForRegistryRecordApproved.js +58 -0
- package/dist-types/AgentRegistryControl.d.ts +143 -0
- package/dist-types/AgentRegistryControlClient.d.ts +201 -0
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/dist-types/commandBuilder.d.ts +18 -0
- package/dist-types/commands/CreateRegistryCommand.d.ts +172 -0
- package/dist-types/commands/CreateRegistryRecordCommand.d.ts +212 -0
- package/dist-types/commands/DeleteRegistryCommand.d.ts +89 -0
- package/dist-types/commands/DeleteRegistryRecordCommand.d.ts +88 -0
- package/dist-types/commands/GetRegistryCommand.d.ts +173 -0
- package/dist-types/commands/GetRegistryRecordCommand.d.ts +211 -0
- package/dist-types/commands/ListRegistriesCommand.d.ts +179 -0
- package/dist-types/commands/ListRegistryRecordsCommand.d.ts +114 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +88 -0
- package/dist-types/commands/SubmitRegistryRecordForApprovalCommand.d.ts +94 -0
- package/dist-types/commands/TagResourceCommand.d.ts +90 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +87 -0
- package/dist-types/commands/UpdateRegistryCommand.d.ts +266 -0
- package/dist-types/commands/UpdateRegistryRecordCommand.d.ts +375 -0
- package/dist-types/commands/UpdateRegistryRecordStatusCommand.d.ts +97 -0
- package/dist-types/commands/index.d.ts +15 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +38 -0
- package/dist-types/endpoint/bdd.d.ts +2 -0
- package/dist-types/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/extensionConfiguration.d.ts +9 -0
- package/dist-types/index.d.ts +19 -0
- package/dist-types/models/AgentRegistryControlServiceException.d.ts +14 -0
- package/dist-types/models/enums.d.ts +173 -0
- package/dist-types/models/errors.d.ts +98 -0
- package/dist-types/models/models_0.d.ts +1886 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- 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 +3 -0
- package/dist-types/runtimeConfig.browser.d.ts +57 -0
- package/dist-types/runtimeConfig.d.ts +57 -0
- package/dist-types/runtimeConfig.native.d.ts +56 -0
- package/dist-types/runtimeConfig.shared.d.ts +28 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/schemas/schemas_0.d.ts +118 -0
- package/dist-types/ts3.4/AgentRegistryControl.d.ts +295 -0
- package/dist-types/ts3.4/AgentRegistryControlClient.d.ts +187 -0
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +27 -0
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +43 -0
- package/dist-types/ts3.4/commandBuilder.d.ts +40 -0
- package/dist-types/ts3.4/commands/CreateRegistryCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreateRegistryRecordCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DeleteRegistryCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteRegistryRecordCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetRegistryCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetRegistryRecordCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListRegistriesCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListRegistryRecordsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/SubmitRegistryRecordForApprovalCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateRegistryCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateRegistryRecordCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/UpdateRegistryRecordStatusCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/index.d.ts +15 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +39 -0
- package/dist-types/ts3.4/endpoint/bdd.d.ts +2 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +10 -0
- package/dist-types/ts3.4/index.d.ts +14 -0
- package/dist-types/ts3.4/models/AgentRegistryControlServiceException.d.ts +9 -0
- package/dist-types/ts3.4/models/enums.d.ts +90 -0
- package/dist-types/ts3.4/models/errors.d.ts +41 -0
- package/dist-types/ts3.4/models/models_0.d.ts +528 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +5 -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 +3 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +95 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +95 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +99 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +31 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +118 -0
- package/dist-types/ts3.4/waiters/index.d.ts +2 -0
- package/dist-types/ts3.4/waiters/waitForRegistryReady.d.ts +12 -0
- package/dist-types/ts3.4/waiters/waitForRegistryRecordApproved.d.ts +15 -0
- package/dist-types/waiters/index.d.ts +2 -0
- package/dist-types/waiters/waitForRegistryReady.d.ts +15 -0
- package/dist-types/waiters/waitForRegistryRecordApproved.d.ts +15 -0
- package/package.json +69 -0
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
export declare const RegistryRecordOAuthGrantType: {
|
|
2
|
+
readonly CLIENT_CREDENTIALS: "CLIENT_CREDENTIALS";
|
|
3
|
+
};
|
|
4
|
+
export type RegistryRecordOAuthGrantType =
|
|
5
|
+
(typeof RegistryRecordOAuthGrantType)[keyof typeof RegistryRecordOAuthGrantType];
|
|
6
|
+
export declare const RegistryRecordCredentialProviderType: {
|
|
7
|
+
readonly IAM: "IAM";
|
|
8
|
+
readonly OAUTH: "OAUTH";
|
|
9
|
+
};
|
|
10
|
+
export type RegistryRecordCredentialProviderType =
|
|
11
|
+
(typeof RegistryRecordCredentialProviderType)[keyof typeof RegistryRecordCredentialProviderType];
|
|
12
|
+
export declare const ValidationExceptionReason: {
|
|
13
|
+
readonly CANNOT_PARSE: "CannotParse";
|
|
14
|
+
readonly FIELD_VALIDATION_FAILED: "FieldValidationFailed";
|
|
15
|
+
readonly IDEMPOTENT_PARAMETER_MISMATCH_EXCEPTION: "IdempotentParameterMismatchException";
|
|
16
|
+
readonly RESOURCE_CONFLICT: "ResourceConflict";
|
|
17
|
+
readonly ROOT_EVENT_IN_OTHER_SESSION: "EventInOtherSession";
|
|
18
|
+
};
|
|
19
|
+
export type ValidationExceptionReason =
|
|
20
|
+
(typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
21
|
+
export declare const RecordType: {
|
|
22
|
+
readonly AGENT: "AGENT";
|
|
23
|
+
readonly CUSTOM: "CUSTOM";
|
|
24
|
+
readonly MCP: "MCP";
|
|
25
|
+
readonly SKILL: "SKILL";
|
|
26
|
+
};
|
|
27
|
+
export type RecordType = (typeof RecordType)[keyof typeof RecordType];
|
|
28
|
+
export declare const RegistryRecordStatus: {
|
|
29
|
+
readonly APPROVED: "APPROVED";
|
|
30
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
31
|
+
readonly CREATING: "CREATING";
|
|
32
|
+
readonly DEPRECATED: "DEPRECATED";
|
|
33
|
+
readonly DRAFT: "DRAFT";
|
|
34
|
+
readonly PENDING_APPROVAL: "PENDING_APPROVAL";
|
|
35
|
+
readonly REJECTED: "REJECTED";
|
|
36
|
+
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
37
|
+
readonly UPDATING: "UPDATING";
|
|
38
|
+
};
|
|
39
|
+
export type RegistryRecordStatus = (typeof RegistryRecordStatus)[keyof typeof RegistryRecordStatus];
|
|
40
|
+
export declare const RegistryRecordFilterName: {
|
|
41
|
+
readonly NAME: "name";
|
|
42
|
+
readonly RECORD_TYPE: "recordType";
|
|
43
|
+
readonly STATUS: "status";
|
|
44
|
+
};
|
|
45
|
+
export type RegistryRecordFilterName =
|
|
46
|
+
(typeof RegistryRecordFilterName)[keyof typeof RegistryRecordFilterName];
|
|
47
|
+
export declare const AutoApprovalRule: {
|
|
48
|
+
readonly APPROVE_ALL: "APPROVE_ALL";
|
|
49
|
+
};
|
|
50
|
+
export type AutoApprovalRule = (typeof AutoApprovalRule)[keyof typeof AutoApprovalRule];
|
|
51
|
+
export declare const ClaimMatchOperatorType: {
|
|
52
|
+
readonly CONTAINS: "CONTAINS";
|
|
53
|
+
readonly CONTAINS_ANY: "CONTAINS_ANY";
|
|
54
|
+
readonly EQUALS: "EQUALS";
|
|
55
|
+
};
|
|
56
|
+
export type ClaimMatchOperatorType =
|
|
57
|
+
(typeof ClaimMatchOperatorType)[keyof typeof ClaimMatchOperatorType];
|
|
58
|
+
export declare const InboundTokenClaimValueType: {
|
|
59
|
+
readonly STRING: "STRING";
|
|
60
|
+
readonly STRING_ARRAY: "STRING_ARRAY";
|
|
61
|
+
};
|
|
62
|
+
export type InboundTokenClaimValueType =
|
|
63
|
+
(typeof InboundTokenClaimValueType)[keyof typeof InboundTokenClaimValueType];
|
|
64
|
+
export declare const EndpointIpAddressType: {
|
|
65
|
+
readonly IPV4: "IPV4";
|
|
66
|
+
readonly IPV6: "IPV6";
|
|
67
|
+
};
|
|
68
|
+
export type EndpointIpAddressType =
|
|
69
|
+
(typeof EndpointIpAddressType)[keyof typeof EndpointIpAddressType];
|
|
70
|
+
export declare const RegistryAuthorizerType: {
|
|
71
|
+
readonly AWS_IAM: "AWS_IAM";
|
|
72
|
+
readonly CUSTOM_JWT: "CUSTOM_JWT";
|
|
73
|
+
};
|
|
74
|
+
export type RegistryAuthorizerType =
|
|
75
|
+
(typeof RegistryAuthorizerType)[keyof typeof RegistryAuthorizerType];
|
|
76
|
+
export declare const RegistryStatus: {
|
|
77
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
78
|
+
readonly CREATING: "CREATING";
|
|
79
|
+
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
80
|
+
readonly DELETING: "DELETING";
|
|
81
|
+
readonly READY: "READY";
|
|
82
|
+
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
83
|
+
readonly UPDATING: "UPDATING";
|
|
84
|
+
};
|
|
85
|
+
export type RegistryStatus = (typeof RegistryStatus)[keyof typeof RegistryStatus];
|
|
86
|
+
export declare const RegistryFilterName: {
|
|
87
|
+
readonly DISCOVERY_CONFIGURATION_AUTHORIZER_TYPE: "discoveryConfiguration.authorizerType";
|
|
88
|
+
readonly STATUS: "status";
|
|
89
|
+
};
|
|
90
|
+
export type RegistryFilterName = (typeof RegistryFilterName)[keyof typeof RegistryFilterName];
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/core/client";
|
|
2
|
+
import { AgentRegistryControlServiceException as __BaseException } from "./AgentRegistryControlServiceException";
|
|
3
|
+
import { ValidationExceptionReason } from "./enums";
|
|
4
|
+
import { ValidationExceptionField } from "./models_0";
|
|
5
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
6
|
+
readonly name: "AccessDeniedException";
|
|
7
|
+
readonly $fault: "client";
|
|
8
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
9
|
+
}
|
|
10
|
+
export declare class InternalServerException extends __BaseException {
|
|
11
|
+
readonly name: "InternalServerException";
|
|
12
|
+
readonly $fault: "server";
|
|
13
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
14
|
+
}
|
|
15
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
16
|
+
readonly name: "ResourceNotFoundException";
|
|
17
|
+
readonly $fault: "client";
|
|
18
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
19
|
+
}
|
|
20
|
+
export declare class ThrottlingException extends __BaseException {
|
|
21
|
+
readonly name: "ThrottlingException";
|
|
22
|
+
readonly $fault: "client";
|
|
23
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
24
|
+
}
|
|
25
|
+
export declare class ValidationException extends __BaseException {
|
|
26
|
+
readonly name: "ValidationException";
|
|
27
|
+
readonly $fault: "client";
|
|
28
|
+
reason: ValidationExceptionReason | undefined;
|
|
29
|
+
fieldList?: ValidationExceptionField[] | undefined;
|
|
30
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
31
|
+
}
|
|
32
|
+
export declare class ConflictException extends __BaseException {
|
|
33
|
+
readonly name: "ConflictException";
|
|
34
|
+
readonly $fault: "client";
|
|
35
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
36
|
+
}
|
|
37
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
38
|
+
readonly name: "ServiceQuotaExceededException";
|
|
39
|
+
readonly $fault: "client";
|
|
40
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
41
|
+
}
|
|
@@ -0,0 +1,528 @@
|
|
|
1
|
+
import {
|
|
2
|
+
AutoApprovalRule,
|
|
3
|
+
ClaimMatchOperatorType,
|
|
4
|
+
EndpointIpAddressType,
|
|
5
|
+
InboundTokenClaimValueType,
|
|
6
|
+
RecordType,
|
|
7
|
+
RegistryAuthorizerType,
|
|
8
|
+
RegistryFilterName,
|
|
9
|
+
RegistryRecordCredentialProviderType,
|
|
10
|
+
RegistryRecordFilterName,
|
|
11
|
+
RegistryRecordOAuthGrantType,
|
|
12
|
+
RegistryRecordStatus,
|
|
13
|
+
RegistryStatus,
|
|
14
|
+
} from "./enums";
|
|
15
|
+
export interface RegistryRecordIamCredentialProvider {
|
|
16
|
+
roleArn?: string | undefined;
|
|
17
|
+
service?: string | undefined;
|
|
18
|
+
region?: string | undefined;
|
|
19
|
+
}
|
|
20
|
+
export interface RegistryRecordOAuthCredentialProvider {
|
|
21
|
+
providerArn: string | undefined;
|
|
22
|
+
grantType?: RegistryRecordOAuthGrantType | undefined;
|
|
23
|
+
scopes?: string[] | undefined;
|
|
24
|
+
customParameters?: Record<string, string> | undefined;
|
|
25
|
+
}
|
|
26
|
+
export type RegistryRecordCredentialProviderUnion =
|
|
27
|
+
| RegistryRecordCredentialProviderUnion.IamCredentialProviderMember
|
|
28
|
+
| RegistryRecordCredentialProviderUnion.OauthCredentialProviderMember
|
|
29
|
+
| RegistryRecordCredentialProviderUnion.$UnknownMember;
|
|
30
|
+
export declare namespace RegistryRecordCredentialProviderUnion {
|
|
31
|
+
interface OauthCredentialProviderMember {
|
|
32
|
+
oauthCredentialProvider: RegistryRecordOAuthCredentialProvider;
|
|
33
|
+
iamCredentialProvider?: never;
|
|
34
|
+
$unknown?: never;
|
|
35
|
+
}
|
|
36
|
+
interface IamCredentialProviderMember {
|
|
37
|
+
oauthCredentialProvider?: never;
|
|
38
|
+
iamCredentialProvider: RegistryRecordIamCredentialProvider;
|
|
39
|
+
$unknown?: never;
|
|
40
|
+
}
|
|
41
|
+
interface $UnknownMember {
|
|
42
|
+
oauthCredentialProvider?: never;
|
|
43
|
+
iamCredentialProvider?: never;
|
|
44
|
+
$unknown: [string, any];
|
|
45
|
+
}
|
|
46
|
+
interface Visitor<T> {
|
|
47
|
+
oauthCredentialProvider: (value: RegistryRecordOAuthCredentialProvider) => T;
|
|
48
|
+
iamCredentialProvider: (value: RegistryRecordIamCredentialProvider) => T;
|
|
49
|
+
_: (name: string, value: any) => T;
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
export interface RegistryRecordCredentialProviderConfiguration {
|
|
53
|
+
credentialProviderType: RegistryRecordCredentialProviderType | undefined;
|
|
54
|
+
credentialProvider: RegistryRecordCredentialProviderUnion | undefined;
|
|
55
|
+
}
|
|
56
|
+
export interface DescriptorSourceFromUrl {
|
|
57
|
+
url: string | undefined;
|
|
58
|
+
credentialProviderConfigurations?: RegistryRecordCredentialProviderConfiguration[] | undefined;
|
|
59
|
+
}
|
|
60
|
+
export interface DescriptorSource {
|
|
61
|
+
fromUrl?: DescriptorSourceFromUrl | undefined;
|
|
62
|
+
}
|
|
63
|
+
export interface A2aAgentCardDescriptor {
|
|
64
|
+
data?: string | undefined;
|
|
65
|
+
dataSchemaVersion?: string | undefined;
|
|
66
|
+
source?: DescriptorSource | undefined;
|
|
67
|
+
}
|
|
68
|
+
export interface ListTagsForResourceRequest {
|
|
69
|
+
resourceArn: string | undefined;
|
|
70
|
+
}
|
|
71
|
+
export interface ListTagsForResourceResponse {
|
|
72
|
+
tags?: Record<string, string> | undefined;
|
|
73
|
+
}
|
|
74
|
+
export interface ValidationExceptionField {
|
|
75
|
+
name: string | undefined;
|
|
76
|
+
message: string | undefined;
|
|
77
|
+
}
|
|
78
|
+
export interface AgentSkillsMdDescriptor {
|
|
79
|
+
data?: string | undefined;
|
|
80
|
+
dataSchemaVersion?: string | undefined;
|
|
81
|
+
source?: DescriptorSource | undefined;
|
|
82
|
+
}
|
|
83
|
+
export interface AgentSkillsAdditionalData {
|
|
84
|
+
skillMd?: AgentSkillsMdDescriptor | undefined;
|
|
85
|
+
}
|
|
86
|
+
export interface AgentSkillsDefinitionDescriptor {
|
|
87
|
+
data?: string | undefined;
|
|
88
|
+
dataSchemaVersion?: string | undefined;
|
|
89
|
+
additionalData?: AgentSkillsAdditionalData | undefined;
|
|
90
|
+
}
|
|
91
|
+
export interface CustomDescriptor {
|
|
92
|
+
data?: string | undefined;
|
|
93
|
+
}
|
|
94
|
+
export interface McpToolsDescriptor {
|
|
95
|
+
data?: string | undefined;
|
|
96
|
+
dataSchemaVersion?: string | undefined;
|
|
97
|
+
}
|
|
98
|
+
export interface McpServerAdditionalData {
|
|
99
|
+
tools?: McpToolsDescriptor | undefined;
|
|
100
|
+
}
|
|
101
|
+
export interface McpServerDescriptor {
|
|
102
|
+
data?: string | undefined;
|
|
103
|
+
dataSchemaVersion?: string | undefined;
|
|
104
|
+
additionalData?: McpServerAdditionalData | undefined;
|
|
105
|
+
source?: DescriptorSource | undefined;
|
|
106
|
+
}
|
|
107
|
+
export interface Descriptors {
|
|
108
|
+
mcpServer?: McpServerDescriptor | undefined;
|
|
109
|
+
a2aAgentCard?: A2aAgentCardDescriptor | undefined;
|
|
110
|
+
agentSkillsDefinition?: AgentSkillsDefinitionDescriptor | undefined;
|
|
111
|
+
custom?: CustomDescriptor | undefined;
|
|
112
|
+
}
|
|
113
|
+
export interface CreateRegistryRecordRequest {
|
|
114
|
+
registryId: string | undefined;
|
|
115
|
+
name: string | undefined;
|
|
116
|
+
displayName?: string | undefined;
|
|
117
|
+
description?: string | undefined;
|
|
118
|
+
recordType: RecordType | undefined;
|
|
119
|
+
descriptors: Descriptors | undefined;
|
|
120
|
+
recordVersion?: string | undefined;
|
|
121
|
+
clientToken?: string | undefined;
|
|
122
|
+
tags?: Record<string, string> | undefined;
|
|
123
|
+
}
|
|
124
|
+
export interface CreateRegistryRecordResponse {
|
|
125
|
+
recordArn: string | undefined;
|
|
126
|
+
status: RegistryRecordStatus | undefined;
|
|
127
|
+
}
|
|
128
|
+
export interface DeleteRegistryRecordRequest {
|
|
129
|
+
registryId: string | undefined;
|
|
130
|
+
recordId: string | undefined;
|
|
131
|
+
}
|
|
132
|
+
export interface DeleteRegistryRecordResponse {}
|
|
133
|
+
export interface GetRegistryRecordRequest {
|
|
134
|
+
registryId: string | undefined;
|
|
135
|
+
recordId: string | undefined;
|
|
136
|
+
}
|
|
137
|
+
export interface GetRegistryRecordResponse {
|
|
138
|
+
registryArn: string | undefined;
|
|
139
|
+
recordArn: string | undefined;
|
|
140
|
+
recordId: string | undefined;
|
|
141
|
+
name: string | undefined;
|
|
142
|
+
displayName?: string | undefined;
|
|
143
|
+
description?: string | undefined;
|
|
144
|
+
recordType: RecordType | undefined;
|
|
145
|
+
descriptors?: Descriptors | undefined;
|
|
146
|
+
recordVersion?: string | undefined;
|
|
147
|
+
status: RegistryRecordStatus | undefined;
|
|
148
|
+
createdAt: Date | undefined;
|
|
149
|
+
updatedAt: Date | undefined;
|
|
150
|
+
statusReason?: string | undefined;
|
|
151
|
+
}
|
|
152
|
+
export interface RegistryRecordFilter {
|
|
153
|
+
name: RegistryRecordFilterName | undefined;
|
|
154
|
+
values: string[] | undefined;
|
|
155
|
+
}
|
|
156
|
+
export interface ListRegistryRecordsRequest {
|
|
157
|
+
registryId: string | undefined;
|
|
158
|
+
maxResults?: number | undefined;
|
|
159
|
+
nextToken?: string | undefined;
|
|
160
|
+
filters?: RegistryRecordFilter[] | undefined;
|
|
161
|
+
}
|
|
162
|
+
export interface RegistryRecordSummary {
|
|
163
|
+
registryArn: string | undefined;
|
|
164
|
+
recordArn: string | undefined;
|
|
165
|
+
recordId: string | undefined;
|
|
166
|
+
name: string | undefined;
|
|
167
|
+
displayName?: string | undefined;
|
|
168
|
+
description?: string | undefined;
|
|
169
|
+
recordType: RecordType | undefined;
|
|
170
|
+
recordVersion: string | undefined;
|
|
171
|
+
status: RegistryRecordStatus | undefined;
|
|
172
|
+
createdAt: Date | undefined;
|
|
173
|
+
updatedAt: Date | undefined;
|
|
174
|
+
}
|
|
175
|
+
export interface ListRegistryRecordsResponse {
|
|
176
|
+
registryRecords: RegistryRecordSummary[] | undefined;
|
|
177
|
+
nextToken?: string | undefined;
|
|
178
|
+
}
|
|
179
|
+
export interface SubmitRegistryRecordForApprovalRequest {
|
|
180
|
+
registryId: string | undefined;
|
|
181
|
+
recordId: string | undefined;
|
|
182
|
+
}
|
|
183
|
+
export interface SubmitRegistryRecordForApprovalResponse {
|
|
184
|
+
registryArn: string | undefined;
|
|
185
|
+
recordArn: string | undefined;
|
|
186
|
+
recordId: string | undefined;
|
|
187
|
+
status: RegistryRecordStatus | undefined;
|
|
188
|
+
updatedAt: Date | undefined;
|
|
189
|
+
}
|
|
190
|
+
export interface UpdatedDescription {
|
|
191
|
+
optionalValue?: string | undefined;
|
|
192
|
+
}
|
|
193
|
+
export interface UpdatedDescriptorData {
|
|
194
|
+
optionalValue?: string | undefined;
|
|
195
|
+
}
|
|
196
|
+
export interface UpdatedDataSchemaVersion {
|
|
197
|
+
optionalValue?: string | undefined;
|
|
198
|
+
}
|
|
199
|
+
export interface UpdatedDescriptorSource {
|
|
200
|
+
optionalValue?: DescriptorSource | undefined;
|
|
201
|
+
}
|
|
202
|
+
export interface UpdatedA2aAgentCardDescriptorFields {
|
|
203
|
+
data?: UpdatedDescriptorData | undefined;
|
|
204
|
+
dataSchemaVersion?: UpdatedDataSchemaVersion | undefined;
|
|
205
|
+
source?: UpdatedDescriptorSource | undefined;
|
|
206
|
+
}
|
|
207
|
+
export interface UpdatedA2aAgentCardDescriptor {
|
|
208
|
+
optionalValue?: UpdatedA2aAgentCardDescriptorFields | undefined;
|
|
209
|
+
}
|
|
210
|
+
export interface UpdatedAgentSkillsMdDescriptorFields {
|
|
211
|
+
data?: UpdatedDescriptorData | undefined;
|
|
212
|
+
dataSchemaVersion?: UpdatedDataSchemaVersion | undefined;
|
|
213
|
+
source?: UpdatedDescriptorSource | undefined;
|
|
214
|
+
}
|
|
215
|
+
export interface UpdatedAgentSkillsMdDescriptor {
|
|
216
|
+
optionalValue?: UpdatedAgentSkillsMdDescriptorFields | undefined;
|
|
217
|
+
}
|
|
218
|
+
export interface UpdatedAgentSkillsAdditionalDataFields {
|
|
219
|
+
skillMd?: UpdatedAgentSkillsMdDescriptor | undefined;
|
|
220
|
+
}
|
|
221
|
+
export interface UpdatedAgentSkillsAdditionalData {
|
|
222
|
+
optionalValue?: UpdatedAgentSkillsAdditionalDataFields | undefined;
|
|
223
|
+
}
|
|
224
|
+
export interface UpdatedAgentSkillsDefinitionDescriptorFields {
|
|
225
|
+
data?: UpdatedDescriptorData | undefined;
|
|
226
|
+
dataSchemaVersion?: UpdatedDataSchemaVersion | undefined;
|
|
227
|
+
additionalData?: UpdatedAgentSkillsAdditionalData | undefined;
|
|
228
|
+
}
|
|
229
|
+
export interface UpdatedAgentSkillsDefinitionDescriptor {
|
|
230
|
+
optionalValue?: UpdatedAgentSkillsDefinitionDescriptorFields | undefined;
|
|
231
|
+
}
|
|
232
|
+
export interface UpdatedCustomDescriptorFields {
|
|
233
|
+
data?: UpdatedDescriptorData | undefined;
|
|
234
|
+
}
|
|
235
|
+
export interface UpdatedCustomDescriptor {
|
|
236
|
+
optionalValue?: UpdatedCustomDescriptorFields | undefined;
|
|
237
|
+
}
|
|
238
|
+
export interface UpdatedMcpToolsDescriptorFields {
|
|
239
|
+
data?: UpdatedDescriptorData | undefined;
|
|
240
|
+
dataSchemaVersion?: UpdatedDataSchemaVersion | undefined;
|
|
241
|
+
}
|
|
242
|
+
export interface UpdatedMcpToolsDescriptor {
|
|
243
|
+
optionalValue?: UpdatedMcpToolsDescriptorFields | undefined;
|
|
244
|
+
}
|
|
245
|
+
export interface UpdatedMcpServerAdditionalDataFields {
|
|
246
|
+
tools?: UpdatedMcpToolsDescriptor | undefined;
|
|
247
|
+
}
|
|
248
|
+
export interface UpdatedMcpServerAdditionalData {
|
|
249
|
+
optionalValue?: UpdatedMcpServerAdditionalDataFields | undefined;
|
|
250
|
+
}
|
|
251
|
+
export interface UpdatedMcpServerDescriptorFields {
|
|
252
|
+
data?: UpdatedDescriptorData | undefined;
|
|
253
|
+
dataSchemaVersion?: UpdatedDataSchemaVersion | undefined;
|
|
254
|
+
source?: UpdatedDescriptorSource | undefined;
|
|
255
|
+
additionalData?: UpdatedMcpServerAdditionalData | undefined;
|
|
256
|
+
}
|
|
257
|
+
export interface UpdatedMcpServerDescriptor {
|
|
258
|
+
optionalValue?: UpdatedMcpServerDescriptorFields | undefined;
|
|
259
|
+
}
|
|
260
|
+
export interface UpdatedDescriptorsFields {
|
|
261
|
+
mcpServer?: UpdatedMcpServerDescriptor | undefined;
|
|
262
|
+
a2aAgentCard?: UpdatedA2aAgentCardDescriptor | undefined;
|
|
263
|
+
agentSkillsDefinition?: UpdatedAgentSkillsDefinitionDescriptor | undefined;
|
|
264
|
+
custom?: UpdatedCustomDescriptor | undefined;
|
|
265
|
+
}
|
|
266
|
+
export interface UpdatedDescriptors {
|
|
267
|
+
optionalValue?: UpdatedDescriptorsFields | undefined;
|
|
268
|
+
}
|
|
269
|
+
export interface UpdatedDisplayName {
|
|
270
|
+
optionalValue?: string | undefined;
|
|
271
|
+
}
|
|
272
|
+
export interface UpdateRegistryRecordRequest {
|
|
273
|
+
registryId: string | undefined;
|
|
274
|
+
recordId: string | undefined;
|
|
275
|
+
name?: string | undefined;
|
|
276
|
+
displayName?: UpdatedDisplayName | undefined;
|
|
277
|
+
description?: UpdatedDescription | undefined;
|
|
278
|
+
recordType?: RecordType | undefined;
|
|
279
|
+
descriptors?: UpdatedDescriptors | undefined;
|
|
280
|
+
recordVersion?: string | undefined;
|
|
281
|
+
triggerSynchronization?: boolean | undefined;
|
|
282
|
+
}
|
|
283
|
+
export interface UpdateRegistryRecordResponse {
|
|
284
|
+
registryArn: string | undefined;
|
|
285
|
+
recordArn: string | undefined;
|
|
286
|
+
recordId: string | undefined;
|
|
287
|
+
name: string | undefined;
|
|
288
|
+
displayName?: string | undefined;
|
|
289
|
+
description?: string | undefined;
|
|
290
|
+
recordType: RecordType | undefined;
|
|
291
|
+
descriptors?: Descriptors | undefined;
|
|
292
|
+
recordVersion?: string | undefined;
|
|
293
|
+
status: RegistryRecordStatus | undefined;
|
|
294
|
+
createdAt: Date | undefined;
|
|
295
|
+
updatedAt: Date | undefined;
|
|
296
|
+
statusReason?: string | undefined;
|
|
297
|
+
}
|
|
298
|
+
export interface UpdateRegistryRecordStatusRequest {
|
|
299
|
+
registryId: string | undefined;
|
|
300
|
+
recordId: string | undefined;
|
|
301
|
+
status: RegistryRecordStatus | undefined;
|
|
302
|
+
statusReason: string | undefined;
|
|
303
|
+
}
|
|
304
|
+
export interface UpdateRegistryRecordStatusResponse {
|
|
305
|
+
registryArn: string | undefined;
|
|
306
|
+
recordArn: string | undefined;
|
|
307
|
+
recordId: string | undefined;
|
|
308
|
+
status: RegistryRecordStatus | undefined;
|
|
309
|
+
statusReason: string | undefined;
|
|
310
|
+
updatedAt: Date | undefined;
|
|
311
|
+
}
|
|
312
|
+
export interface ApprovalConfiguration {
|
|
313
|
+
autoApprovalRules?: AutoApprovalRule[] | undefined;
|
|
314
|
+
}
|
|
315
|
+
export type ClaimMatchValueType =
|
|
316
|
+
| ClaimMatchValueType.MatchValueStringMember
|
|
317
|
+
| ClaimMatchValueType.MatchValueStringListMember
|
|
318
|
+
| ClaimMatchValueType.$UnknownMember;
|
|
319
|
+
export declare namespace ClaimMatchValueType {
|
|
320
|
+
interface MatchValueStringMember {
|
|
321
|
+
matchValueString: string;
|
|
322
|
+
matchValueStringList?: never;
|
|
323
|
+
$unknown?: never;
|
|
324
|
+
}
|
|
325
|
+
interface MatchValueStringListMember {
|
|
326
|
+
matchValueString?: never;
|
|
327
|
+
matchValueStringList: string[];
|
|
328
|
+
$unknown?: never;
|
|
329
|
+
}
|
|
330
|
+
interface $UnknownMember {
|
|
331
|
+
matchValueString?: never;
|
|
332
|
+
matchValueStringList?: never;
|
|
333
|
+
$unknown: [string, any];
|
|
334
|
+
}
|
|
335
|
+
interface Visitor<T> {
|
|
336
|
+
matchValueString: (value: string) => T;
|
|
337
|
+
matchValueStringList: (value: string[]) => T;
|
|
338
|
+
_: (name: string, value: any) => T;
|
|
339
|
+
}
|
|
340
|
+
}
|
|
341
|
+
export interface AuthorizingClaimMatchValueType {
|
|
342
|
+
claimMatchValue: ClaimMatchValueType | undefined;
|
|
343
|
+
claimMatchOperator: ClaimMatchOperatorType | undefined;
|
|
344
|
+
}
|
|
345
|
+
export interface CustomClaimValidationType {
|
|
346
|
+
inboundTokenClaimName: string | undefined;
|
|
347
|
+
inboundTokenClaimValueType: InboundTokenClaimValueType | undefined;
|
|
348
|
+
authorizingClaimMatchValue: AuthorizingClaimMatchValueType | undefined;
|
|
349
|
+
}
|
|
350
|
+
export interface ManagedVpcResource {
|
|
351
|
+
vpcIdentifier: string | undefined;
|
|
352
|
+
subnetIds: string[] | undefined;
|
|
353
|
+
endpointIpAddressType: EndpointIpAddressType | undefined;
|
|
354
|
+
securityGroupIds?: string[] | undefined;
|
|
355
|
+
tags?: Record<string, string> | undefined;
|
|
356
|
+
routingDomain?: string | undefined;
|
|
357
|
+
}
|
|
358
|
+
export type SelfManagedLatticeResource =
|
|
359
|
+
| SelfManagedLatticeResource.ResourceConfigurationIdentifierMember
|
|
360
|
+
| SelfManagedLatticeResource.$UnknownMember;
|
|
361
|
+
export declare namespace SelfManagedLatticeResource {
|
|
362
|
+
interface ResourceConfigurationIdentifierMember {
|
|
363
|
+
resourceConfigurationIdentifier: string;
|
|
364
|
+
$unknown?: never;
|
|
365
|
+
}
|
|
366
|
+
interface $UnknownMember {
|
|
367
|
+
resourceConfigurationIdentifier?: never;
|
|
368
|
+
$unknown: [string, any];
|
|
369
|
+
}
|
|
370
|
+
interface Visitor<T> {
|
|
371
|
+
resourceConfigurationIdentifier: (value: string) => T;
|
|
372
|
+
_: (name: string, value: any) => T;
|
|
373
|
+
}
|
|
374
|
+
}
|
|
375
|
+
export type PrivateEndpoint =
|
|
376
|
+
| PrivateEndpoint.ManagedVpcResourceMember
|
|
377
|
+
| PrivateEndpoint.SelfManagedLatticeResourceMember
|
|
378
|
+
| PrivateEndpoint.$UnknownMember;
|
|
379
|
+
export declare namespace PrivateEndpoint {
|
|
380
|
+
interface SelfManagedLatticeResourceMember {
|
|
381
|
+
selfManagedLatticeResource: SelfManagedLatticeResource;
|
|
382
|
+
managedVpcResource?: never;
|
|
383
|
+
$unknown?: never;
|
|
384
|
+
}
|
|
385
|
+
interface ManagedVpcResourceMember {
|
|
386
|
+
selfManagedLatticeResource?: never;
|
|
387
|
+
managedVpcResource: ManagedVpcResource;
|
|
388
|
+
$unknown?: never;
|
|
389
|
+
}
|
|
390
|
+
interface $UnknownMember {
|
|
391
|
+
selfManagedLatticeResource?: never;
|
|
392
|
+
managedVpcResource?: never;
|
|
393
|
+
$unknown: [string, any];
|
|
394
|
+
}
|
|
395
|
+
interface Visitor<T> {
|
|
396
|
+
selfManagedLatticeResource: (value: SelfManagedLatticeResource) => T;
|
|
397
|
+
managedVpcResource: (value: ManagedVpcResource) => T;
|
|
398
|
+
_: (name: string, value: any) => T;
|
|
399
|
+
}
|
|
400
|
+
}
|
|
401
|
+
export interface PrivateEndpointOverride {
|
|
402
|
+
domain: string | undefined;
|
|
403
|
+
privateEndpoint: PrivateEndpoint | undefined;
|
|
404
|
+
}
|
|
405
|
+
export interface CustomJWTAuthorizerConfiguration {
|
|
406
|
+
discoveryUrl: string | undefined;
|
|
407
|
+
allowedAudience?: string[] | undefined;
|
|
408
|
+
allowedClients?: string[] | undefined;
|
|
409
|
+
allowedScopes?: string[] | undefined;
|
|
410
|
+
customClaims?: CustomClaimValidationType[] | undefined;
|
|
411
|
+
privateEndpoint?: PrivateEndpoint | undefined;
|
|
412
|
+
privateEndpointOverrides?: PrivateEndpointOverride[] | undefined;
|
|
413
|
+
}
|
|
414
|
+
export type AuthorizerConfiguration =
|
|
415
|
+
| AuthorizerConfiguration.CustomJWTAuthorizerMember
|
|
416
|
+
| AuthorizerConfiguration.$UnknownMember;
|
|
417
|
+
export declare namespace AuthorizerConfiguration {
|
|
418
|
+
interface CustomJWTAuthorizerMember {
|
|
419
|
+
customJWTAuthorizer: CustomJWTAuthorizerConfiguration;
|
|
420
|
+
$unknown?: never;
|
|
421
|
+
}
|
|
422
|
+
interface $UnknownMember {
|
|
423
|
+
customJWTAuthorizer?: never;
|
|
424
|
+
$unknown: [string, any];
|
|
425
|
+
}
|
|
426
|
+
interface Visitor<T> {
|
|
427
|
+
customJWTAuthorizer: (value: CustomJWTAuthorizerConfiguration) => T;
|
|
428
|
+
_: (name: string, value: any) => T;
|
|
429
|
+
}
|
|
430
|
+
}
|
|
431
|
+
export interface DiscoveryConfiguration {
|
|
432
|
+
authorizerConfiguration?: AuthorizerConfiguration | undefined;
|
|
433
|
+
authorizerType?: RegistryAuthorizerType | undefined;
|
|
434
|
+
}
|
|
435
|
+
export interface CreateRegistryRequest {
|
|
436
|
+
name: string | undefined;
|
|
437
|
+
description?: string | undefined;
|
|
438
|
+
discoveryConfiguration?: DiscoveryConfiguration | undefined;
|
|
439
|
+
clientToken?: string | undefined;
|
|
440
|
+
tags?: Record<string, string> | undefined;
|
|
441
|
+
approvalConfiguration?: ApprovalConfiguration | undefined;
|
|
442
|
+
}
|
|
443
|
+
export interface CreateRegistryResponse {
|
|
444
|
+
registryArn: string | undefined;
|
|
445
|
+
}
|
|
446
|
+
export interface DeleteRegistryRequest {
|
|
447
|
+
registryId: string | undefined;
|
|
448
|
+
}
|
|
449
|
+
export interface DeleteRegistryResponse {
|
|
450
|
+
status: RegistryStatus | undefined;
|
|
451
|
+
}
|
|
452
|
+
export interface GetRegistryRequest {
|
|
453
|
+
registryId: string | undefined;
|
|
454
|
+
}
|
|
455
|
+
export interface GetRegistryResponse {
|
|
456
|
+
name: string | undefined;
|
|
457
|
+
description?: string | undefined;
|
|
458
|
+
registryId: string | undefined;
|
|
459
|
+
registryArn: string | undefined;
|
|
460
|
+
discoveryConfiguration?: DiscoveryConfiguration | undefined;
|
|
461
|
+
approvalConfiguration?: ApprovalConfiguration | undefined;
|
|
462
|
+
status: RegistryStatus | undefined;
|
|
463
|
+
statusReason?: string | undefined;
|
|
464
|
+
createdAt: Date | undefined;
|
|
465
|
+
updatedAt: Date | undefined;
|
|
466
|
+
}
|
|
467
|
+
export interface RegistryFilter {
|
|
468
|
+
name: RegistryFilterName | undefined;
|
|
469
|
+
values: string[] | undefined;
|
|
470
|
+
}
|
|
471
|
+
export interface ListRegistriesRequest {
|
|
472
|
+
maxResults?: number | undefined;
|
|
473
|
+
nextToken?: string | undefined;
|
|
474
|
+
filters?: RegistryFilter[] | undefined;
|
|
475
|
+
}
|
|
476
|
+
export interface RegistrySummary {
|
|
477
|
+
name: string | undefined;
|
|
478
|
+
description?: string | undefined;
|
|
479
|
+
registryId: string | undefined;
|
|
480
|
+
registryArn: string | undefined;
|
|
481
|
+
discoveryConfiguration?: DiscoveryConfiguration | undefined;
|
|
482
|
+
status: RegistryStatus | undefined;
|
|
483
|
+
statusReason?: string | undefined;
|
|
484
|
+
createdAt: Date | undefined;
|
|
485
|
+
updatedAt: Date | undefined;
|
|
486
|
+
}
|
|
487
|
+
export interface ListRegistriesResponse {
|
|
488
|
+
registries: RegistrySummary[] | undefined;
|
|
489
|
+
nextToken?: string | undefined;
|
|
490
|
+
}
|
|
491
|
+
export interface UpdatedApprovalConfiguration {
|
|
492
|
+
optionalValue?: ApprovalConfiguration | undefined;
|
|
493
|
+
}
|
|
494
|
+
export interface UpdatedAuthorizerConfiguration {
|
|
495
|
+
optionalValue?: AuthorizerConfiguration | undefined;
|
|
496
|
+
}
|
|
497
|
+
export interface UpdatedDiscoveryConfiguration {
|
|
498
|
+
authorizerConfiguration?: UpdatedAuthorizerConfiguration | undefined;
|
|
499
|
+
}
|
|
500
|
+
export interface UpdateRegistryRequest {
|
|
501
|
+
registryId: string | undefined;
|
|
502
|
+
name?: string | undefined;
|
|
503
|
+
description?: UpdatedDescription | undefined;
|
|
504
|
+
discoveryConfiguration?: UpdatedDiscoveryConfiguration | undefined;
|
|
505
|
+
approvalConfiguration?: UpdatedApprovalConfiguration | undefined;
|
|
506
|
+
}
|
|
507
|
+
export interface UpdateRegistryResponse {
|
|
508
|
+
name: string | undefined;
|
|
509
|
+
description?: string | undefined;
|
|
510
|
+
registryId: string | undefined;
|
|
511
|
+
registryArn: string | undefined;
|
|
512
|
+
discoveryConfiguration?: DiscoveryConfiguration | undefined;
|
|
513
|
+
approvalConfiguration?: ApprovalConfiguration | undefined;
|
|
514
|
+
status: RegistryStatus | undefined;
|
|
515
|
+
statusReason?: string | undefined;
|
|
516
|
+
createdAt: Date | undefined;
|
|
517
|
+
updatedAt: Date | undefined;
|
|
518
|
+
}
|
|
519
|
+
export interface TagResourceRequest {
|
|
520
|
+
resourceArn: string | undefined;
|
|
521
|
+
tags: Record<string, string> | undefined;
|
|
522
|
+
}
|
|
523
|
+
export interface TagResourceResponse {}
|
|
524
|
+
export interface UntagResourceRequest {
|
|
525
|
+
resourceArn: string | undefined;
|
|
526
|
+
tagKeys: string[] | undefined;
|
|
527
|
+
}
|
|
528
|
+
export interface UntagResourceResponse {}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { PaginationConfiguration } from "@smithy/types";
|
|
2
|
+
import { AgentRegistryControlClient } from "../AgentRegistryControlClient";
|
|
3
|
+
export interface AgentRegistryControlPaginationConfiguration extends PaginationConfiguration {
|
|
4
|
+
client: AgentRegistryControlClient;
|
|
5
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListRegistriesCommandInput,
|
|
4
|
+
ListRegistriesCommandOutput,
|
|
5
|
+
} from "../commands/ListRegistriesCommand";
|
|
6
|
+
import { AgentRegistryControlPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListRegistries: (
|
|
8
|
+
config: AgentRegistryControlPaginationConfiguration,
|
|
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 { AgentRegistryControlPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListRegistryRecords: (
|
|
8
|
+
config: AgentRegistryControlPaginationConfiguration,
|
|
9
|
+
input: ListRegistryRecordsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListRegistryRecordsCommandOutput>;
|