@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,95 @@
|
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
|
|
2
|
+
import { AgentRegistryControlClientConfig } from "./AgentRegistryControlClient";
|
|
3
|
+
export declare const getRuntimeConfig: (config: AgentRegistryControlClientConfig) => {
|
|
4
|
+
runtime: string;
|
|
5
|
+
defaultsMode: import("@smithy/types").Provider<
|
|
6
|
+
import("@smithy/core/client").ResolvedDefaultsMode
|
|
7
|
+
>;
|
|
8
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
+
credentialDefaultProvider:
|
|
10
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
+
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
12
|
+
defaultUserAgentProvider: (
|
|
13
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
14
|
+
) => Promise<import("@smithy/types").UserAgent>;
|
|
15
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
16
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
17
|
+
requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
|
|
18
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
19
|
+
streamCollector: (
|
|
20
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
21
|
+
) => Promise<Uint8Array>;
|
|
22
|
+
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
23
|
+
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
24
|
+
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
25
|
+
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
26
|
+
cacheMiddleware?: boolean | undefined;
|
|
27
|
+
protocol:
|
|
28
|
+
| import("@smithy/types").ClientProtocol<any, any>
|
|
29
|
+
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
30
|
+
| typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
31
|
+
protocolSettings: {
|
|
32
|
+
defaultNamespace?: string;
|
|
33
|
+
[setting: string]: unknown;
|
|
34
|
+
};
|
|
35
|
+
apiVersion: string;
|
|
36
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
37
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
38
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
39
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
40
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
41
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
42
|
+
disableHostPrefix: boolean;
|
|
43
|
+
serviceId: string;
|
|
44
|
+
profile?: string;
|
|
45
|
+
logger: import("@smithy/types").Logger;
|
|
46
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
47
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
48
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
49
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
50
|
+
endpoint?:
|
|
51
|
+
| ((
|
|
52
|
+
| string
|
|
53
|
+
| import("@smithy/types").Endpoint
|
|
54
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
55
|
+
| import("@smithy/types").EndpointV2
|
|
56
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
57
|
+
) &
|
|
58
|
+
(
|
|
59
|
+
| string
|
|
60
|
+
| import("@smithy/types").Provider<string>
|
|
61
|
+
| import("@smithy/types").Endpoint
|
|
62
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
63
|
+
| import("@smithy/types").EndpointV2
|
|
64
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
65
|
+
))
|
|
66
|
+
| undefined;
|
|
67
|
+
endpointProvider: (
|
|
68
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
69
|
+
context?: {
|
|
70
|
+
logger?: import("@smithy/types").Logger;
|
|
71
|
+
},
|
|
72
|
+
) => import("@smithy/types").EndpointV2;
|
|
73
|
+
tls?: boolean;
|
|
74
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
75
|
+
serviceConfiguredEndpoint?: never;
|
|
76
|
+
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
77
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
78
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").AgentRegistryControlHttpAuthSchemeProvider;
|
|
79
|
+
credentials?:
|
|
80
|
+
| import("@smithy/types").AwsCredentialIdentity
|
|
81
|
+
| import("@smithy/types").AwsCredentialIdentityProvider;
|
|
82
|
+
signer?:
|
|
83
|
+
| import("@smithy/types").RequestSigner
|
|
84
|
+
| ((
|
|
85
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
86
|
+
) => Promise<import("@smithy/types").RequestSigner>);
|
|
87
|
+
signingEscapePath?: boolean;
|
|
88
|
+
systemClockOffset?: number;
|
|
89
|
+
signingRegion?: string;
|
|
90
|
+
signerConstructor?: new (
|
|
91
|
+
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
92
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
93
|
+
) => import("@smithy/types").RequestSigner;
|
|
94
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
95
|
+
};
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
|
|
2
|
+
import { AgentRegistryControlClientConfig } from "./AgentRegistryControlClient";
|
|
3
|
+
export declare const getRuntimeConfig: (config: AgentRegistryControlClientConfig) => {
|
|
4
|
+
runtime: string;
|
|
5
|
+
defaultsMode: import("@smithy/types").Provider<
|
|
6
|
+
import("@smithy/core/client").ResolvedDefaultsMode
|
|
7
|
+
>;
|
|
8
|
+
authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
|
|
9
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
+
credentialDefaultProvider:
|
|
11
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
12
|
+
| ((
|
|
13
|
+
init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit,
|
|
14
|
+
) => import("@aws-sdk/credential-provider-node").MemoizedRuntimeConfigAwsCredentialIdentityProvider);
|
|
15
|
+
defaultUserAgentProvider: (
|
|
16
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
17
|
+
) => Promise<import("@smithy/types").UserAgent>;
|
|
18
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
19
|
+
region: string | import("@smithy/types").Provider<string>;
|
|
20
|
+
requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
|
|
21
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
22
|
+
streamCollector: (
|
|
23
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
24
|
+
) => Promise<Uint8Array>;
|
|
25
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
26
|
+
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
27
|
+
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
28
|
+
cacheMiddleware?: boolean | undefined;
|
|
29
|
+
protocol:
|
|
30
|
+
| import("@smithy/types").ClientProtocol<any, any>
|
|
31
|
+
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
32
|
+
| typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
33
|
+
protocolSettings: {
|
|
34
|
+
defaultNamespace?: string;
|
|
35
|
+
[setting: string]: unknown;
|
|
36
|
+
};
|
|
37
|
+
apiVersion: string;
|
|
38
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
39
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
40
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
41
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
42
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
43
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
44
|
+
disableHostPrefix: boolean;
|
|
45
|
+
serviceId: string;
|
|
46
|
+
profile?: string;
|
|
47
|
+
logger: import("@smithy/types").Logger;
|
|
48
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
49
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
50
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
51
|
+
endpoint?:
|
|
52
|
+
| ((
|
|
53
|
+
| string
|
|
54
|
+
| import("@smithy/types").Endpoint
|
|
55
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
56
|
+
| import("@smithy/types").EndpointV2
|
|
57
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
58
|
+
) &
|
|
59
|
+
(
|
|
60
|
+
| string
|
|
61
|
+
| import("@smithy/types").Provider<string>
|
|
62
|
+
| import("@smithy/types").Endpoint
|
|
63
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
64
|
+
| import("@smithy/types").EndpointV2
|
|
65
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
66
|
+
))
|
|
67
|
+
| undefined;
|
|
68
|
+
endpointProvider: (
|
|
69
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
70
|
+
context?: {
|
|
71
|
+
logger?: import("@smithy/types").Logger;
|
|
72
|
+
},
|
|
73
|
+
) => import("@smithy/types").EndpointV2;
|
|
74
|
+
tls?: boolean;
|
|
75
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
76
|
+
serviceConfiguredEndpoint?: never;
|
|
77
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
78
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").AgentRegistryControlHttpAuthSchemeProvider;
|
|
79
|
+
credentials?:
|
|
80
|
+
| import("@smithy/types").AwsCredentialIdentity
|
|
81
|
+
| import("@smithy/types").AwsCredentialIdentityProvider;
|
|
82
|
+
signer?:
|
|
83
|
+
| import("@smithy/types").RequestSigner
|
|
84
|
+
| ((
|
|
85
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
86
|
+
) => Promise<import("@smithy/types").RequestSigner>);
|
|
87
|
+
signingEscapePath?: boolean;
|
|
88
|
+
systemClockOffset?: number;
|
|
89
|
+
signingRegion?: string;
|
|
90
|
+
signerConstructor?: new (
|
|
91
|
+
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
92
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
93
|
+
) => import("@smithy/types").RequestSigner;
|
|
94
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
95
|
+
};
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
import { AgentRegistryControlClientConfig } from "./AgentRegistryControlClient";
|
|
2
|
+
export declare const getRuntimeConfig: (config: AgentRegistryControlClientConfig) => {
|
|
3
|
+
runtime: string;
|
|
4
|
+
requestHandler:
|
|
5
|
+
| import("@smithy/types").NodeHttpHandlerOptions
|
|
6
|
+
| import("@smithy/types").FetchHttpHandlerOptions
|
|
7
|
+
| Record<string, unknown>
|
|
8
|
+
| import("@smithy/core/protocols").HttpHandler<any>
|
|
9
|
+
| import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
10
|
+
cacheMiddleware?: boolean;
|
|
11
|
+
protocol:
|
|
12
|
+
| import("@smithy/types").ClientProtocol<any, any>
|
|
13
|
+
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
14
|
+
| typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
15
|
+
protocolSettings: {
|
|
16
|
+
defaultNamespace?: string;
|
|
17
|
+
[setting: string]: unknown;
|
|
18
|
+
};
|
|
19
|
+
apiVersion: string;
|
|
20
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
21
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
22
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
23
|
+
streamCollector: (
|
|
24
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
25
|
+
) => Promise<Uint8Array>;
|
|
26
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
27
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
28
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
29
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
30
|
+
disableHostPrefix: boolean;
|
|
31
|
+
serviceId: string;
|
|
32
|
+
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
33
|
+
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
34
|
+
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
35
|
+
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
36
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
37
|
+
profile?: string;
|
|
38
|
+
defaultUserAgentProvider: (
|
|
39
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
40
|
+
) => Promise<import("@smithy/types").UserAgent>;
|
|
41
|
+
credentialDefaultProvider:
|
|
42
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
43
|
+
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
44
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
45
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
46
|
+
logger: import("@smithy/types").Logger;
|
|
47
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
48
|
+
defaultsMode:
|
|
49
|
+
| import("@smithy/core/client").DefaultsMode
|
|
50
|
+
| import("@smithy/types").Provider<import("@smithy/core/client").DefaultsMode>;
|
|
51
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
52
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
53
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
54
|
+
endpoint?:
|
|
55
|
+
| ((
|
|
56
|
+
| string
|
|
57
|
+
| import("@smithy/types").Endpoint
|
|
58
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
59
|
+
| import("@smithy/types").EndpointV2
|
|
60
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
61
|
+
) &
|
|
62
|
+
(
|
|
63
|
+
| string
|
|
64
|
+
| import("@smithy/types").Provider<string>
|
|
65
|
+
| import("@smithy/types").Endpoint
|
|
66
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
67
|
+
| import("@smithy/types").EndpointV2
|
|
68
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
69
|
+
))
|
|
70
|
+
| undefined;
|
|
71
|
+
endpointProvider: (
|
|
72
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
73
|
+
context?: {
|
|
74
|
+
logger?: import("@smithy/types").Logger;
|
|
75
|
+
},
|
|
76
|
+
) => import("@smithy/types").EndpointV2;
|
|
77
|
+
tls?: boolean;
|
|
78
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
79
|
+
serviceConfiguredEndpoint?: never;
|
|
80
|
+
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
81
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
82
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").AgentRegistryControlHttpAuthSchemeProvider;
|
|
83
|
+
credentials?:
|
|
84
|
+
| import("@smithy/types").AwsCredentialIdentity
|
|
85
|
+
| import("@smithy/types").AwsCredentialIdentityProvider;
|
|
86
|
+
signer?:
|
|
87
|
+
| import("@smithy/types").RequestSigner
|
|
88
|
+
| ((
|
|
89
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
90
|
+
) => Promise<import("@smithy/types").RequestSigner>);
|
|
91
|
+
signingEscapePath?: boolean;
|
|
92
|
+
systemClockOffset?: number;
|
|
93
|
+
signingRegion?: string;
|
|
94
|
+
signerConstructor?: new (
|
|
95
|
+
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
96
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
97
|
+
) => import("@smithy/types").RequestSigner;
|
|
98
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
99
|
+
};
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols";
|
|
2
|
+
import { AgentRegistryControlClientConfig } from "./AgentRegistryControlClient";
|
|
3
|
+
export declare const getRuntimeConfig: (config: AgentRegistryControlClientConfig) => {
|
|
4
|
+
apiVersion: string;
|
|
5
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
6
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
7
|
+
disableHostPrefix: boolean;
|
|
8
|
+
endpointProvider: (
|
|
9
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
10
|
+
context?: {
|
|
11
|
+
logger?: import("@smithy/types").Logger;
|
|
12
|
+
},
|
|
13
|
+
) => import("@smithy/types").EndpointV2;
|
|
14
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
15
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").AgentRegistryControlHttpAuthSchemeProvider;
|
|
16
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
17
|
+
logger: import("@smithy/types").Logger;
|
|
18
|
+
protocol:
|
|
19
|
+
| import("@smithy/types").ClientProtocol<any, any>
|
|
20
|
+
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
21
|
+
| typeof AwsRestJsonProtocol;
|
|
22
|
+
protocolSettings: {
|
|
23
|
+
[setting: string]: unknown;
|
|
24
|
+
defaultNamespace?: string;
|
|
25
|
+
};
|
|
26
|
+
serviceId: string;
|
|
27
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
28
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
29
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
30
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
31
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { AgentRegistryControlExtensionConfiguration } from "./extensionConfiguration";
|
|
2
|
+
export interface RuntimeExtension {
|
|
3
|
+
configure(extensionConfiguration: AgentRegistryControlExtensionConfiguration): void;
|
|
4
|
+
}
|
|
5
|
+
export interface RuntimeExtensionsConfig {
|
|
6
|
+
extensions: RuntimeExtension[];
|
|
7
|
+
}
|
|
8
|
+
export declare const resolveRuntimeExtensions: (
|
|
9
|
+
runtimeConfig: any,
|
|
10
|
+
extensions: RuntimeExtension[],
|
|
11
|
+
) => any;
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
import { TypeRegistry } from "@smithy/core/schema";
|
|
2
|
+
import {
|
|
3
|
+
StaticErrorSchema,
|
|
4
|
+
StaticOperationSchema,
|
|
5
|
+
StaticStructureSchema,
|
|
6
|
+
StaticUnionSchema,
|
|
7
|
+
} from "@smithy/types";
|
|
8
|
+
export declare var AgentRegistryControlServiceException$: StaticErrorSchema;
|
|
9
|
+
export declare var AccessDeniedException$: StaticErrorSchema;
|
|
10
|
+
export declare var ConflictException$: StaticErrorSchema;
|
|
11
|
+
export declare var InternalServerException$: StaticErrorSchema;
|
|
12
|
+
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
13
|
+
export declare var ServiceQuotaExceededException$: StaticErrorSchema;
|
|
14
|
+
export declare var ThrottlingException$: StaticErrorSchema;
|
|
15
|
+
export declare var ValidationException$: StaticErrorSchema;
|
|
16
|
+
export declare const errorTypeRegistries: TypeRegistry[];
|
|
17
|
+
export declare var A2aAgentCardDescriptor$: StaticStructureSchema;
|
|
18
|
+
export declare var AgentSkillsAdditionalData$: StaticStructureSchema;
|
|
19
|
+
export declare var AgentSkillsDefinitionDescriptor$: StaticStructureSchema;
|
|
20
|
+
export declare var AgentSkillsMdDescriptor$: StaticStructureSchema;
|
|
21
|
+
export declare var ApprovalConfiguration$: StaticStructureSchema;
|
|
22
|
+
export declare var AuthorizingClaimMatchValueType$: StaticStructureSchema;
|
|
23
|
+
export declare var CreateRegistryRecordRequest$: StaticStructureSchema;
|
|
24
|
+
export declare var CreateRegistryRecordResponse$: StaticStructureSchema;
|
|
25
|
+
export declare var CreateRegistryRequest$: StaticStructureSchema;
|
|
26
|
+
export declare var CreateRegistryResponse$: StaticStructureSchema;
|
|
27
|
+
export declare var CustomClaimValidationType$: StaticStructureSchema;
|
|
28
|
+
export declare var CustomDescriptor$: StaticStructureSchema;
|
|
29
|
+
export declare var CustomJWTAuthorizerConfiguration$: StaticStructureSchema;
|
|
30
|
+
export declare var DeleteRegistryRecordRequest$: StaticStructureSchema;
|
|
31
|
+
export declare var DeleteRegistryRecordResponse$: StaticStructureSchema;
|
|
32
|
+
export declare var DeleteRegistryRequest$: StaticStructureSchema;
|
|
33
|
+
export declare var DeleteRegistryResponse$: StaticStructureSchema;
|
|
34
|
+
export declare var Descriptors$: StaticStructureSchema;
|
|
35
|
+
export declare var DescriptorSource$: StaticStructureSchema;
|
|
36
|
+
export declare var DescriptorSourceFromUrl$: StaticStructureSchema;
|
|
37
|
+
export declare var DiscoveryConfiguration$: StaticStructureSchema;
|
|
38
|
+
export declare var GetRegistryRecordRequest$: StaticStructureSchema;
|
|
39
|
+
export declare var GetRegistryRecordResponse$: StaticStructureSchema;
|
|
40
|
+
export declare var GetRegistryRequest$: StaticStructureSchema;
|
|
41
|
+
export declare var GetRegistryResponse$: StaticStructureSchema;
|
|
42
|
+
export declare var ListRegistriesRequest$: StaticStructureSchema;
|
|
43
|
+
export declare var ListRegistriesResponse$: StaticStructureSchema;
|
|
44
|
+
export declare var ListRegistryRecordsRequest$: StaticStructureSchema;
|
|
45
|
+
export declare var ListRegistryRecordsResponse$: StaticStructureSchema;
|
|
46
|
+
export declare var ListTagsForResourceRequest$: StaticStructureSchema;
|
|
47
|
+
export declare var ListTagsForResourceResponse$: StaticStructureSchema;
|
|
48
|
+
export declare var ManagedVpcResource$: StaticStructureSchema;
|
|
49
|
+
export declare var McpServerAdditionalData$: StaticStructureSchema;
|
|
50
|
+
export declare var McpServerDescriptor$: StaticStructureSchema;
|
|
51
|
+
export declare var McpToolsDescriptor$: StaticStructureSchema;
|
|
52
|
+
export declare var PrivateEndpointOverride$: StaticStructureSchema;
|
|
53
|
+
export declare var RegistryFilter$: StaticStructureSchema;
|
|
54
|
+
export declare var RegistryRecordCredentialProviderConfiguration$: StaticStructureSchema;
|
|
55
|
+
export declare var RegistryRecordFilter$: StaticStructureSchema;
|
|
56
|
+
export declare var RegistryRecordIamCredentialProvider$: StaticStructureSchema;
|
|
57
|
+
export declare var RegistryRecordOAuthCredentialProvider$: StaticStructureSchema;
|
|
58
|
+
export declare var RegistryRecordSummary$: StaticStructureSchema;
|
|
59
|
+
export declare var RegistrySummary$: StaticStructureSchema;
|
|
60
|
+
export declare var SubmitRegistryRecordForApprovalRequest$: StaticStructureSchema;
|
|
61
|
+
export declare var SubmitRegistryRecordForApprovalResponse$: StaticStructureSchema;
|
|
62
|
+
export declare var TagResourceRequest$: StaticStructureSchema;
|
|
63
|
+
export declare var TagResourceResponse$: StaticStructureSchema;
|
|
64
|
+
export declare var UntagResourceRequest$: StaticStructureSchema;
|
|
65
|
+
export declare var UntagResourceResponse$: StaticStructureSchema;
|
|
66
|
+
export declare var UpdatedA2aAgentCardDescriptor$: StaticStructureSchema;
|
|
67
|
+
export declare var UpdatedA2aAgentCardDescriptorFields$: StaticStructureSchema;
|
|
68
|
+
export declare var UpdatedAgentSkillsAdditionalData$: StaticStructureSchema;
|
|
69
|
+
export declare var UpdatedAgentSkillsAdditionalDataFields$: StaticStructureSchema;
|
|
70
|
+
export declare var UpdatedAgentSkillsDefinitionDescriptor$: StaticStructureSchema;
|
|
71
|
+
export declare var UpdatedAgentSkillsDefinitionDescriptorFields$: StaticStructureSchema;
|
|
72
|
+
export declare var UpdatedAgentSkillsMdDescriptor$: StaticStructureSchema;
|
|
73
|
+
export declare var UpdatedAgentSkillsMdDescriptorFields$: StaticStructureSchema;
|
|
74
|
+
export declare var UpdatedApprovalConfiguration$: StaticStructureSchema;
|
|
75
|
+
export declare var UpdatedAuthorizerConfiguration$: StaticStructureSchema;
|
|
76
|
+
export declare var UpdatedCustomDescriptor$: StaticStructureSchema;
|
|
77
|
+
export declare var UpdatedCustomDescriptorFields$: StaticStructureSchema;
|
|
78
|
+
export declare var UpdatedDataSchemaVersion$: StaticStructureSchema;
|
|
79
|
+
export declare var UpdatedDescription$: StaticStructureSchema;
|
|
80
|
+
export declare var UpdatedDescriptorData$: StaticStructureSchema;
|
|
81
|
+
export declare var UpdatedDescriptors$: StaticStructureSchema;
|
|
82
|
+
export declare var UpdatedDescriptorsFields$: StaticStructureSchema;
|
|
83
|
+
export declare var UpdatedDescriptorSource$: StaticStructureSchema;
|
|
84
|
+
export declare var UpdatedDiscoveryConfiguration$: StaticStructureSchema;
|
|
85
|
+
export declare var UpdatedDisplayName$: StaticStructureSchema;
|
|
86
|
+
export declare var UpdatedMcpServerAdditionalData$: StaticStructureSchema;
|
|
87
|
+
export declare var UpdatedMcpServerAdditionalDataFields$: StaticStructureSchema;
|
|
88
|
+
export declare var UpdatedMcpServerDescriptor$: StaticStructureSchema;
|
|
89
|
+
export declare var UpdatedMcpServerDescriptorFields$: StaticStructureSchema;
|
|
90
|
+
export declare var UpdatedMcpToolsDescriptor$: StaticStructureSchema;
|
|
91
|
+
export declare var UpdatedMcpToolsDescriptorFields$: StaticStructureSchema;
|
|
92
|
+
export declare var UpdateRegistryRecordRequest$: StaticStructureSchema;
|
|
93
|
+
export declare var UpdateRegistryRecordResponse$: StaticStructureSchema;
|
|
94
|
+
export declare var UpdateRegistryRecordStatusRequest$: StaticStructureSchema;
|
|
95
|
+
export declare var UpdateRegistryRecordStatusResponse$: StaticStructureSchema;
|
|
96
|
+
export declare var UpdateRegistryRequest$: StaticStructureSchema;
|
|
97
|
+
export declare var UpdateRegistryResponse$: StaticStructureSchema;
|
|
98
|
+
export declare var ValidationExceptionField$: StaticStructureSchema;
|
|
99
|
+
export declare var AuthorizerConfiguration$: StaticUnionSchema;
|
|
100
|
+
export declare var ClaimMatchValueType$: StaticUnionSchema;
|
|
101
|
+
export declare var PrivateEndpoint$: StaticUnionSchema;
|
|
102
|
+
export declare var RegistryRecordCredentialProviderUnion$: StaticUnionSchema;
|
|
103
|
+
export declare var SelfManagedLatticeResource$: StaticUnionSchema;
|
|
104
|
+
export declare var CreateRegistry$: StaticOperationSchema;
|
|
105
|
+
export declare var CreateRegistryRecord$: StaticOperationSchema;
|
|
106
|
+
export declare var DeleteRegistry$: StaticOperationSchema;
|
|
107
|
+
export declare var DeleteRegistryRecord$: StaticOperationSchema;
|
|
108
|
+
export declare var GetRegistry$: StaticOperationSchema;
|
|
109
|
+
export declare var GetRegistryRecord$: StaticOperationSchema;
|
|
110
|
+
export declare var ListRegistries$: StaticOperationSchema;
|
|
111
|
+
export declare var ListRegistryRecords$: StaticOperationSchema;
|
|
112
|
+
export declare var ListTagsForResource$: StaticOperationSchema;
|
|
113
|
+
export declare var SubmitRegistryRecordForApproval$: StaticOperationSchema;
|
|
114
|
+
export declare var TagResource$: StaticOperationSchema;
|
|
115
|
+
export declare var UntagResource$: StaticOperationSchema;
|
|
116
|
+
export declare var UpdateRegistry$: StaticOperationSchema;
|
|
117
|
+
export declare var UpdateRegistryRecord$: StaticOperationSchema;
|
|
118
|
+
export declare var UpdateRegistryRecordStatus$: StaticOperationSchema;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@smithy/core/client";
|
|
2
|
+
import { AgentRegistryControlClient } from "../AgentRegistryControlClient";
|
|
3
|
+
import { GetRegistryCommandInput, GetRegistryCommandOutput } from "../commands/GetRegistryCommand";
|
|
4
|
+
import { AgentRegistryControlServiceException } from "../models/AgentRegistryControlServiceException";
|
|
5
|
+
export declare const waitForRegistryReady: (
|
|
6
|
+
params: WaiterConfiguration<AgentRegistryControlClient>,
|
|
7
|
+
input: GetRegistryCommandInput,
|
|
8
|
+
) => Promise<WaiterResult<GetRegistryCommandOutput | AgentRegistryControlServiceException>>;
|
|
9
|
+
export declare const waitUntilRegistryReady: (
|
|
10
|
+
params: WaiterConfiguration<AgentRegistryControlClient>,
|
|
11
|
+
input: GetRegistryCommandInput,
|
|
12
|
+
) => Promise<WaiterResult<GetRegistryCommandOutput>>;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@smithy/core/client";
|
|
2
|
+
import { AgentRegistryControlClient } from "../AgentRegistryControlClient";
|
|
3
|
+
import {
|
|
4
|
+
GetRegistryRecordCommandInput,
|
|
5
|
+
GetRegistryRecordCommandOutput,
|
|
6
|
+
} from "../commands/GetRegistryRecordCommand";
|
|
7
|
+
import { AgentRegistryControlServiceException } from "../models/AgentRegistryControlServiceException";
|
|
8
|
+
export declare const waitForRegistryRecordApproved: (
|
|
9
|
+
params: WaiterConfiguration<AgentRegistryControlClient>,
|
|
10
|
+
input: GetRegistryRecordCommandInput,
|
|
11
|
+
) => Promise<WaiterResult<GetRegistryRecordCommandOutput | AgentRegistryControlServiceException>>;
|
|
12
|
+
export declare const waitUntilRegistryRecordApproved: (
|
|
13
|
+
params: WaiterConfiguration<AgentRegistryControlClient>,
|
|
14
|
+
input: GetRegistryRecordCommandInput,
|
|
15
|
+
) => Promise<WaiterResult<GetRegistryRecordCommandOutput>>;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { type WaiterConfiguration, type WaiterResult } from "@smithy/core/client";
|
|
2
|
+
import type { AgentRegistryControlClient } from "../AgentRegistryControlClient";
|
|
3
|
+
import { type GetRegistryCommandInput, type GetRegistryCommandOutput } from "../commands/GetRegistryCommand";
|
|
4
|
+
import type { AgentRegistryControlServiceException } from "../models/AgentRegistryControlServiceException";
|
|
5
|
+
/**
|
|
6
|
+
*
|
|
7
|
+
* @deprecated Use waitUntilRegistryReady instead. waitForRegistryReady does not throw error in non-success cases.
|
|
8
|
+
*/
|
|
9
|
+
export declare const waitForRegistryReady: (params: WaiterConfiguration<AgentRegistryControlClient>, input: GetRegistryCommandInput) => Promise<WaiterResult<GetRegistryCommandOutput | AgentRegistryControlServiceException>>;
|
|
10
|
+
/**
|
|
11
|
+
*
|
|
12
|
+
* @param params - Waiter configuration options.
|
|
13
|
+
* @param input - The input to GetRegistryCommand for polling.
|
|
14
|
+
*/
|
|
15
|
+
export declare const waitUntilRegistryReady: (params: WaiterConfiguration<AgentRegistryControlClient>, input: GetRegistryCommandInput) => Promise<WaiterResult<GetRegistryCommandOutput>>;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { type WaiterConfiguration, type WaiterResult } from "@smithy/core/client";
|
|
2
|
+
import type { AgentRegistryControlClient } from "../AgentRegistryControlClient";
|
|
3
|
+
import { type GetRegistryRecordCommandInput, type GetRegistryRecordCommandOutput } from "../commands/GetRegistryRecordCommand";
|
|
4
|
+
import type { AgentRegistryControlServiceException } from "../models/AgentRegistryControlServiceException";
|
|
5
|
+
/**
|
|
6
|
+
*
|
|
7
|
+
* @deprecated Use waitUntilRegistryRecordApproved instead. waitForRegistryRecordApproved does not throw error in non-success cases.
|
|
8
|
+
*/
|
|
9
|
+
export declare const waitForRegistryRecordApproved: (params: WaiterConfiguration<AgentRegistryControlClient>, input: GetRegistryRecordCommandInput) => Promise<WaiterResult<GetRegistryRecordCommandOutput | AgentRegistryControlServiceException>>;
|
|
10
|
+
/**
|
|
11
|
+
*
|
|
12
|
+
* @param params - Waiter configuration options.
|
|
13
|
+
* @param input - The input to GetRegistryRecordCommand for polling.
|
|
14
|
+
*/
|
|
15
|
+
export declare const waitUntilRegistryRecordApproved: (params: WaiterConfiguration<AgentRegistryControlClient>, input: GetRegistryRecordCommandInput) => Promise<WaiterResult<GetRegistryRecordCommandOutput>>;
|
package/package.json
ADDED
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@aws-sdk/client-agent-registry-control",
|
|
3
|
+
"version": "3.1105.0",
|
|
4
|
+
"description": "AWS SDK for JavaScript Agent Registry Control Client for Node.js, Browser and React Native",
|
|
5
|
+
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-agent-registry-control",
|
|
6
|
+
"license": "Apache-2.0",
|
|
7
|
+
"author": {
|
|
8
|
+
"name": "AWS SDK for JavaScript Team",
|
|
9
|
+
"url": "https://aws.amazon.com/sdk-for-javascript/"
|
|
10
|
+
},
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "https://github.com/aws/aws-sdk-js-v3.git",
|
|
14
|
+
"directory": "clients/client-agent-registry-control"
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist-*/**"
|
|
18
|
+
],
|
|
19
|
+
"sideEffects": false,
|
|
20
|
+
"main": "./dist-cjs/index.js",
|
|
21
|
+
"module": "./dist-es/index.js",
|
|
22
|
+
"browser": {
|
|
23
|
+
"./dist-es/runtimeConfig": "./dist-es/runtimeConfig.browser"
|
|
24
|
+
},
|
|
25
|
+
"types": "./dist-types/index.d.ts",
|
|
26
|
+
"typesVersions": {
|
|
27
|
+
"<4.5": {
|
|
28
|
+
"dist-types/*": [
|
|
29
|
+
"dist-types/ts3.4/*"
|
|
30
|
+
]
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"react-native": {
|
|
34
|
+
"./dist-es/runtimeConfig": "./dist-es/runtimeConfig.native"
|
|
35
|
+
},
|
|
36
|
+
"scripts": {
|
|
37
|
+
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
38
|
+
"build:cjs": "node ../../scripts/compilation/inline",
|
|
39
|
+
"build:es": "premove dist-es && tsc -p tsconfig.es.json",
|
|
40
|
+
"build:include:deps": "yarn g:turbo run build -F=\"$npm_package_name\"",
|
|
41
|
+
"build:types": "premove dist-types && tsc -p tsconfig.types.json",
|
|
42
|
+
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
43
|
+
"clean": "premove dist-cjs dist-es dist-types",
|
|
44
|
+
"extract:docs": "api-extractor run --local",
|
|
45
|
+
"generate:client": "node ../../scripts/generate-clients/single-service",
|
|
46
|
+
"test:index": "tsc --noEmit ./test/index-types.ts && node ./test/index-objects.spec.mjs"
|
|
47
|
+
},
|
|
48
|
+
"dependencies": {
|
|
49
|
+
"@aws-sdk/core": "^3.977.6",
|
|
50
|
+
"@aws-sdk/credential-provider-node": "^3.972.78",
|
|
51
|
+
"@aws-sdk/types": "^3.974.2",
|
|
52
|
+
"@smithy/core": "^3.31.1",
|
|
53
|
+
"@smithy/fetch-http-handler": "^5.6.13",
|
|
54
|
+
"@smithy/node-http-handler": "^4.9.13",
|
|
55
|
+
"@smithy/types": "^4.16.1",
|
|
56
|
+
"tslib": "^2.6.2"
|
|
57
|
+
},
|
|
58
|
+
"devDependencies": {
|
|
59
|
+
"@tsconfig/node20": "20.1.8",
|
|
60
|
+
"@types/node": "^20.14.8",
|
|
61
|
+
"concurrently": "7.0.0",
|
|
62
|
+
"downlevel-dts": "0.10.1",
|
|
63
|
+
"premove": "4.0.0",
|
|
64
|
+
"typescript": "~5.8.3"
|
|
65
|
+
},
|
|
66
|
+
"engines": {
|
|
67
|
+
"node": ">=20.0.0"
|
|
68
|
+
}
|
|
69
|
+
}
|