@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.
Files changed (133) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +286 -0
  3. package/dist-cjs/index.js +1536 -0
  4. package/dist-es/AgentRegistryControl.js +49 -0
  5. package/dist-es/AgentRegistryControlClient.js +47 -0
  6. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  7. package/dist-es/auth/httpAuthSchemeProvider.js +40 -0
  8. package/dist-es/commandBuilder.js +6 -0
  9. package/dist-es/commands/CreateRegistryCommand.js +4 -0
  10. package/dist-es/commands/CreateRegistryRecordCommand.js +4 -0
  11. package/dist-es/commands/DeleteRegistryCommand.js +4 -0
  12. package/dist-es/commands/DeleteRegistryRecordCommand.js +4 -0
  13. package/dist-es/commands/GetRegistryCommand.js +4 -0
  14. package/dist-es/commands/GetRegistryRecordCommand.js +4 -0
  15. package/dist-es/commands/ListRegistriesCommand.js +4 -0
  16. package/dist-es/commands/ListRegistryRecordsCommand.js +4 -0
  17. package/dist-es/commands/ListTagsForResourceCommand.js +4 -0
  18. package/dist-es/commands/SubmitRegistryRecordForApprovalCommand.js +4 -0
  19. package/dist-es/commands/TagResourceCommand.js +4 -0
  20. package/dist-es/commands/UntagResourceCommand.js +4 -0
  21. package/dist-es/commands/UpdateRegistryCommand.js +4 -0
  22. package/dist-es/commands/UpdateRegistryRecordCommand.js +4 -0
  23. package/dist-es/commands/UpdateRegistryRecordStatusCommand.js +4 -0
  24. package/dist-es/commands/index.js +15 -0
  25. package/dist-es/endpoint/EndpointParameters.js +9 -0
  26. package/dist-es/endpoint/bdd.js +22 -0
  27. package/dist-es/endpoint/endpointResolver.js +14 -0
  28. package/dist-es/extensionConfiguration.js +1 -0
  29. package/dist-es/index.js +11 -0
  30. package/dist-es/models/AgentRegistryControlServiceException.js +8 -0
  31. package/dist-es/models/enums.js +69 -0
  32. package/dist-es/models/errors.js +89 -0
  33. package/dist-es/models/models_0.js +1 -0
  34. package/dist-es/pagination/Interfaces.js +1 -0
  35. package/dist-es/pagination/ListRegistriesPaginator.js +4 -0
  36. package/dist-es/pagination/ListRegistryRecordsPaginator.js +4 -0
  37. package/dist-es/pagination/index.js +3 -0
  38. package/dist-es/runtimeConfig.browser.js +29 -0
  39. package/dist-es/runtimeConfig.js +43 -0
  40. package/dist-es/runtimeConfig.native.js +9 -0
  41. package/dist-es/runtimeConfig.shared.js +40 -0
  42. package/dist-es/runtimeExtensions.js +9 -0
  43. package/dist-es/schemas/schemas_0.js +783 -0
  44. package/dist-es/waiters/index.js +2 -0
  45. package/dist-es/waiters/waitForRegistryReady.js +58 -0
  46. package/dist-es/waiters/waitForRegistryRecordApproved.js +58 -0
  47. package/dist-types/AgentRegistryControl.d.ts +143 -0
  48. package/dist-types/AgentRegistryControlClient.d.ts +201 -0
  49. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  50. package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
  51. package/dist-types/commandBuilder.d.ts +18 -0
  52. package/dist-types/commands/CreateRegistryCommand.d.ts +172 -0
  53. package/dist-types/commands/CreateRegistryRecordCommand.d.ts +212 -0
  54. package/dist-types/commands/DeleteRegistryCommand.d.ts +89 -0
  55. package/dist-types/commands/DeleteRegistryRecordCommand.d.ts +88 -0
  56. package/dist-types/commands/GetRegistryCommand.d.ts +173 -0
  57. package/dist-types/commands/GetRegistryRecordCommand.d.ts +211 -0
  58. package/dist-types/commands/ListRegistriesCommand.d.ts +179 -0
  59. package/dist-types/commands/ListRegistryRecordsCommand.d.ts +114 -0
  60. package/dist-types/commands/ListTagsForResourceCommand.d.ts +88 -0
  61. package/dist-types/commands/SubmitRegistryRecordForApprovalCommand.d.ts +94 -0
  62. package/dist-types/commands/TagResourceCommand.d.ts +90 -0
  63. package/dist-types/commands/UntagResourceCommand.d.ts +87 -0
  64. package/dist-types/commands/UpdateRegistryCommand.d.ts +266 -0
  65. package/dist-types/commands/UpdateRegistryRecordCommand.d.ts +375 -0
  66. package/dist-types/commands/UpdateRegistryRecordStatusCommand.d.ts +97 -0
  67. package/dist-types/commands/index.d.ts +15 -0
  68. package/dist-types/endpoint/EndpointParameters.d.ts +38 -0
  69. package/dist-types/endpoint/bdd.d.ts +2 -0
  70. package/dist-types/endpoint/endpointResolver.d.ts +8 -0
  71. package/dist-types/extensionConfiguration.d.ts +9 -0
  72. package/dist-types/index.d.ts +19 -0
  73. package/dist-types/models/AgentRegistryControlServiceException.d.ts +14 -0
  74. package/dist-types/models/enums.d.ts +173 -0
  75. package/dist-types/models/errors.d.ts +98 -0
  76. package/dist-types/models/models_0.d.ts +1886 -0
  77. package/dist-types/pagination/Interfaces.d.ts +8 -0
  78. package/dist-types/pagination/ListRegistriesPaginator.d.ts +7 -0
  79. package/dist-types/pagination/ListRegistryRecordsPaginator.d.ts +7 -0
  80. package/dist-types/pagination/index.d.ts +3 -0
  81. package/dist-types/runtimeConfig.browser.d.ts +57 -0
  82. package/dist-types/runtimeConfig.d.ts +57 -0
  83. package/dist-types/runtimeConfig.native.d.ts +56 -0
  84. package/dist-types/runtimeConfig.shared.d.ts +28 -0
  85. package/dist-types/runtimeExtensions.d.ts +17 -0
  86. package/dist-types/schemas/schemas_0.d.ts +118 -0
  87. package/dist-types/ts3.4/AgentRegistryControl.d.ts +295 -0
  88. package/dist-types/ts3.4/AgentRegistryControlClient.d.ts +187 -0
  89. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +27 -0
  90. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +43 -0
  91. package/dist-types/ts3.4/commandBuilder.d.ts +40 -0
  92. package/dist-types/ts3.4/commands/CreateRegistryCommand.d.ts +38 -0
  93. package/dist-types/ts3.4/commands/CreateRegistryRecordCommand.d.ts +39 -0
  94. package/dist-types/ts3.4/commands/DeleteRegistryCommand.d.ts +38 -0
  95. package/dist-types/ts3.4/commands/DeleteRegistryRecordCommand.d.ts +39 -0
  96. package/dist-types/ts3.4/commands/GetRegistryCommand.d.ts +38 -0
  97. package/dist-types/ts3.4/commands/GetRegistryRecordCommand.d.ts +39 -0
  98. package/dist-types/ts3.4/commands/ListRegistriesCommand.d.ts +38 -0
  99. package/dist-types/ts3.4/commands/ListRegistryRecordsCommand.d.ts +39 -0
  100. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +39 -0
  101. package/dist-types/ts3.4/commands/SubmitRegistryRecordForApprovalCommand.d.ts +42 -0
  102. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +38 -0
  103. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +38 -0
  104. package/dist-types/ts3.4/commands/UpdateRegistryCommand.d.ts +38 -0
  105. package/dist-types/ts3.4/commands/UpdateRegistryRecordCommand.d.ts +39 -0
  106. package/dist-types/ts3.4/commands/UpdateRegistryRecordStatusCommand.d.ts +42 -0
  107. package/dist-types/ts3.4/commands/index.d.ts +15 -0
  108. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +39 -0
  109. package/dist-types/ts3.4/endpoint/bdd.d.ts +2 -0
  110. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  111. package/dist-types/ts3.4/extensionConfiguration.d.ts +10 -0
  112. package/dist-types/ts3.4/index.d.ts +14 -0
  113. package/dist-types/ts3.4/models/AgentRegistryControlServiceException.d.ts +9 -0
  114. package/dist-types/ts3.4/models/enums.d.ts +90 -0
  115. package/dist-types/ts3.4/models/errors.d.ts +41 -0
  116. package/dist-types/ts3.4/models/models_0.d.ts +528 -0
  117. package/dist-types/ts3.4/pagination/Interfaces.d.ts +5 -0
  118. package/dist-types/ts3.4/pagination/ListRegistriesPaginator.d.ts +11 -0
  119. package/dist-types/ts3.4/pagination/ListRegistryRecordsPaginator.d.ts +11 -0
  120. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  121. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +95 -0
  122. package/dist-types/ts3.4/runtimeConfig.d.ts +95 -0
  123. package/dist-types/ts3.4/runtimeConfig.native.d.ts +99 -0
  124. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +31 -0
  125. package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
  126. package/dist-types/ts3.4/schemas/schemas_0.d.ts +118 -0
  127. package/dist-types/ts3.4/waiters/index.d.ts +2 -0
  128. package/dist-types/ts3.4/waiters/waitForRegistryReady.d.ts +12 -0
  129. package/dist-types/ts3.4/waiters/waitForRegistryRecordApproved.d.ts +15 -0
  130. package/dist-types/waiters/index.d.ts +2 -0
  131. package/dist-types/waiters/waitForRegistryReady.d.ts +15 -0
  132. package/dist-types/waiters/waitForRegistryRecordApproved.d.ts +15 -0
  133. package/package.json +69 -0
@@ -0,0 +1,38 @@
1
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import { DeleteRegistryRequest, DeleteRegistryResponse } from "../models/models_0";
3
+ export { __MetadataBearer };
4
+ export interface DeleteRegistryCommandInput extends DeleteRegistryRequest {}
5
+ export interface DeleteRegistryCommandOutput extends DeleteRegistryResponse, __MetadataBearer {}
6
+ declare const DeleteRegistryCommand_base: {
7
+ new (
8
+ input: DeleteRegistryCommandInput,
9
+ ): import("@smithy/core/client").CommandImpl<
10
+ DeleteRegistryCommandInput,
11
+ DeleteRegistryCommandOutput,
12
+ import("..").AgentRegistryControlClientResolvedConfig,
13
+ import("..").ServiceInputTypes,
14
+ import("..").ServiceOutputTypes
15
+ >;
16
+ new (
17
+ input: DeleteRegistryCommandInput,
18
+ ): import("@smithy/core/client").CommandImpl<
19
+ DeleteRegistryCommandInput,
20
+ DeleteRegistryCommandOutput,
21
+ import("..").AgentRegistryControlClientResolvedConfig,
22
+ import("..").ServiceInputTypes,
23
+ import("..").ServiceOutputTypes
24
+ >;
25
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
26
+ };
27
+ export declare class DeleteRegistryCommand extends DeleteRegistryCommand_base {
28
+ protected static __types: {
29
+ api: {
30
+ input: DeleteRegistryRequest;
31
+ output: DeleteRegistryResponse;
32
+ };
33
+ sdk: {
34
+ input: DeleteRegistryCommandInput;
35
+ output: DeleteRegistryCommandOutput;
36
+ };
37
+ };
38
+ }
@@ -0,0 +1,39 @@
1
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import { DeleteRegistryRecordRequest, DeleteRegistryRecordResponse } from "../models/models_0";
3
+ export { __MetadataBearer };
4
+ export interface DeleteRegistryRecordCommandInput extends DeleteRegistryRecordRequest {}
5
+ export interface DeleteRegistryRecordCommandOutput
6
+ extends DeleteRegistryRecordResponse, __MetadataBearer {}
7
+ declare const DeleteRegistryRecordCommand_base: {
8
+ new (
9
+ input: DeleteRegistryRecordCommandInput,
10
+ ): import("@smithy/core/client").CommandImpl<
11
+ DeleteRegistryRecordCommandInput,
12
+ DeleteRegistryRecordCommandOutput,
13
+ import("..").AgentRegistryControlClientResolvedConfig,
14
+ import("..").ServiceInputTypes,
15
+ import("..").ServiceOutputTypes
16
+ >;
17
+ new (
18
+ input: DeleteRegistryRecordCommandInput,
19
+ ): import("@smithy/core/client").CommandImpl<
20
+ DeleteRegistryRecordCommandInput,
21
+ DeleteRegistryRecordCommandOutput,
22
+ import("..").AgentRegistryControlClientResolvedConfig,
23
+ import("..").ServiceInputTypes,
24
+ import("..").ServiceOutputTypes
25
+ >;
26
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
27
+ };
28
+ export declare class DeleteRegistryRecordCommand extends DeleteRegistryRecordCommand_base {
29
+ protected static __types: {
30
+ api: {
31
+ input: DeleteRegistryRecordRequest;
32
+ output: {};
33
+ };
34
+ sdk: {
35
+ input: DeleteRegistryRecordCommandInput;
36
+ output: DeleteRegistryRecordCommandOutput;
37
+ };
38
+ };
39
+ }
@@ -0,0 +1,38 @@
1
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import { GetRegistryRequest, GetRegistryResponse } from "../models/models_0";
3
+ export { __MetadataBearer };
4
+ export interface GetRegistryCommandInput extends GetRegistryRequest {}
5
+ export interface GetRegistryCommandOutput extends GetRegistryResponse, __MetadataBearer {}
6
+ declare const GetRegistryCommand_base: {
7
+ new (
8
+ input: GetRegistryCommandInput,
9
+ ): import("@smithy/core/client").CommandImpl<
10
+ GetRegistryCommandInput,
11
+ GetRegistryCommandOutput,
12
+ import("..").AgentRegistryControlClientResolvedConfig,
13
+ import("..").ServiceInputTypes,
14
+ import("..").ServiceOutputTypes
15
+ >;
16
+ new (
17
+ input: GetRegistryCommandInput,
18
+ ): import("@smithy/core/client").CommandImpl<
19
+ GetRegistryCommandInput,
20
+ GetRegistryCommandOutput,
21
+ import("..").AgentRegistryControlClientResolvedConfig,
22
+ import("..").ServiceInputTypes,
23
+ import("..").ServiceOutputTypes
24
+ >;
25
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
26
+ };
27
+ export declare class GetRegistryCommand extends GetRegistryCommand_base {
28
+ protected static __types: {
29
+ api: {
30
+ input: GetRegistryRequest;
31
+ output: GetRegistryResponse;
32
+ };
33
+ sdk: {
34
+ input: GetRegistryCommandInput;
35
+ output: GetRegistryCommandOutput;
36
+ };
37
+ };
38
+ }
@@ -0,0 +1,39 @@
1
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import { GetRegistryRecordRequest, GetRegistryRecordResponse } from "../models/models_0";
3
+ export { __MetadataBearer };
4
+ export interface GetRegistryRecordCommandInput extends GetRegistryRecordRequest {}
5
+ export interface GetRegistryRecordCommandOutput
6
+ extends GetRegistryRecordResponse, __MetadataBearer {}
7
+ declare const GetRegistryRecordCommand_base: {
8
+ new (
9
+ input: GetRegistryRecordCommandInput,
10
+ ): import("@smithy/core/client").CommandImpl<
11
+ GetRegistryRecordCommandInput,
12
+ GetRegistryRecordCommandOutput,
13
+ import("..").AgentRegistryControlClientResolvedConfig,
14
+ import("..").ServiceInputTypes,
15
+ import("..").ServiceOutputTypes
16
+ >;
17
+ new (
18
+ input: GetRegistryRecordCommandInput,
19
+ ): import("@smithy/core/client").CommandImpl<
20
+ GetRegistryRecordCommandInput,
21
+ GetRegistryRecordCommandOutput,
22
+ import("..").AgentRegistryControlClientResolvedConfig,
23
+ import("..").ServiceInputTypes,
24
+ import("..").ServiceOutputTypes
25
+ >;
26
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
27
+ };
28
+ export declare class GetRegistryRecordCommand extends GetRegistryRecordCommand_base {
29
+ protected static __types: {
30
+ api: {
31
+ input: GetRegistryRecordRequest;
32
+ output: GetRegistryRecordResponse;
33
+ };
34
+ sdk: {
35
+ input: GetRegistryRecordCommandInput;
36
+ output: GetRegistryRecordCommandOutput;
37
+ };
38
+ };
39
+ }
@@ -0,0 +1,38 @@
1
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import { ListRegistriesRequest, ListRegistriesResponse } from "../models/models_0";
3
+ export { __MetadataBearer };
4
+ export interface ListRegistriesCommandInput extends ListRegistriesRequest {}
5
+ export interface ListRegistriesCommandOutput extends ListRegistriesResponse, __MetadataBearer {}
6
+ declare const ListRegistriesCommand_base: {
7
+ new (
8
+ input: ListRegistriesCommandInput,
9
+ ): import("@smithy/core/client").CommandImpl<
10
+ ListRegistriesCommandInput,
11
+ ListRegistriesCommandOutput,
12
+ import("..").AgentRegistryControlClientResolvedConfig,
13
+ import("..").ServiceInputTypes,
14
+ import("..").ServiceOutputTypes
15
+ >;
16
+ new (
17
+ ...[input]: [] | [ListRegistriesCommandInput]
18
+ ): import("@smithy/core/client").CommandImpl<
19
+ ListRegistriesCommandInput,
20
+ ListRegistriesCommandOutput,
21
+ import("..").AgentRegistryControlClientResolvedConfig,
22
+ import("..").ServiceInputTypes,
23
+ import("..").ServiceOutputTypes
24
+ >;
25
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
26
+ };
27
+ export declare class ListRegistriesCommand extends ListRegistriesCommand_base {
28
+ protected static __types: {
29
+ api: {
30
+ input: ListRegistriesRequest;
31
+ output: ListRegistriesResponse;
32
+ };
33
+ sdk: {
34
+ input: ListRegistriesCommandInput;
35
+ output: ListRegistriesCommandOutput;
36
+ };
37
+ };
38
+ }
@@ -0,0 +1,39 @@
1
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import { ListRegistryRecordsRequest, ListRegistryRecordsResponse } from "../models/models_0";
3
+ export { __MetadataBearer };
4
+ export interface ListRegistryRecordsCommandInput extends ListRegistryRecordsRequest {}
5
+ export interface ListRegistryRecordsCommandOutput
6
+ extends ListRegistryRecordsResponse, __MetadataBearer {}
7
+ declare const ListRegistryRecordsCommand_base: {
8
+ new (
9
+ input: ListRegistryRecordsCommandInput,
10
+ ): import("@smithy/core/client").CommandImpl<
11
+ ListRegistryRecordsCommandInput,
12
+ ListRegistryRecordsCommandOutput,
13
+ import("..").AgentRegistryControlClientResolvedConfig,
14
+ import("..").ServiceInputTypes,
15
+ import("..").ServiceOutputTypes
16
+ >;
17
+ new (
18
+ input: ListRegistryRecordsCommandInput,
19
+ ): import("@smithy/core/client").CommandImpl<
20
+ ListRegistryRecordsCommandInput,
21
+ ListRegistryRecordsCommandOutput,
22
+ import("..").AgentRegistryControlClientResolvedConfig,
23
+ import("..").ServiceInputTypes,
24
+ import("..").ServiceOutputTypes
25
+ >;
26
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
27
+ };
28
+ export declare class ListRegistryRecordsCommand extends ListRegistryRecordsCommand_base {
29
+ protected static __types: {
30
+ api: {
31
+ input: ListRegistryRecordsRequest;
32
+ output: ListRegistryRecordsResponse;
33
+ };
34
+ sdk: {
35
+ input: ListRegistryRecordsCommandInput;
36
+ output: ListRegistryRecordsCommandOutput;
37
+ };
38
+ };
39
+ }
@@ -0,0 +1,39 @@
1
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
3
+ export { __MetadataBearer };
4
+ export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {}
5
+ export interface ListTagsForResourceCommandOutput
6
+ extends ListTagsForResourceResponse, __MetadataBearer {}
7
+ declare const ListTagsForResourceCommand_base: {
8
+ new (
9
+ input: ListTagsForResourceCommandInput,
10
+ ): import("@smithy/core/client").CommandImpl<
11
+ ListTagsForResourceCommandInput,
12
+ ListTagsForResourceCommandOutput,
13
+ import("..").AgentRegistryControlClientResolvedConfig,
14
+ import("..").ServiceInputTypes,
15
+ import("..").ServiceOutputTypes
16
+ >;
17
+ new (
18
+ input: ListTagsForResourceCommandInput,
19
+ ): import("@smithy/core/client").CommandImpl<
20
+ ListTagsForResourceCommandInput,
21
+ ListTagsForResourceCommandOutput,
22
+ import("..").AgentRegistryControlClientResolvedConfig,
23
+ import("..").ServiceInputTypes,
24
+ import("..").ServiceOutputTypes
25
+ >;
26
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
27
+ };
28
+ export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
29
+ protected static __types: {
30
+ api: {
31
+ input: ListTagsForResourceRequest;
32
+ output: ListTagsForResourceResponse;
33
+ };
34
+ sdk: {
35
+ input: ListTagsForResourceCommandInput;
36
+ output: ListTagsForResourceCommandOutput;
37
+ };
38
+ };
39
+ }
@@ -0,0 +1,42 @@
1
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import {
3
+ SubmitRegistryRecordForApprovalRequest,
4
+ SubmitRegistryRecordForApprovalResponse,
5
+ } from "../models/models_0";
6
+ export { __MetadataBearer };
7
+ export interface SubmitRegistryRecordForApprovalCommandInput extends SubmitRegistryRecordForApprovalRequest {}
8
+ export interface SubmitRegistryRecordForApprovalCommandOutput
9
+ extends SubmitRegistryRecordForApprovalResponse, __MetadataBearer {}
10
+ declare const SubmitRegistryRecordForApprovalCommand_base: {
11
+ new (
12
+ input: SubmitRegistryRecordForApprovalCommandInput,
13
+ ): import("@smithy/core/client").CommandImpl<
14
+ SubmitRegistryRecordForApprovalCommandInput,
15
+ SubmitRegistryRecordForApprovalCommandOutput,
16
+ import("..").AgentRegistryControlClientResolvedConfig,
17
+ import("..").ServiceInputTypes,
18
+ import("..").ServiceOutputTypes
19
+ >;
20
+ new (
21
+ input: SubmitRegistryRecordForApprovalCommandInput,
22
+ ): import("@smithy/core/client").CommandImpl<
23
+ SubmitRegistryRecordForApprovalCommandInput,
24
+ SubmitRegistryRecordForApprovalCommandOutput,
25
+ import("..").AgentRegistryControlClientResolvedConfig,
26
+ import("..").ServiceInputTypes,
27
+ import("..").ServiceOutputTypes
28
+ >;
29
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
+ };
31
+ export declare class SubmitRegistryRecordForApprovalCommand extends SubmitRegistryRecordForApprovalCommand_base {
32
+ protected static __types: {
33
+ api: {
34
+ input: SubmitRegistryRecordForApprovalRequest;
35
+ output: SubmitRegistryRecordForApprovalResponse;
36
+ };
37
+ sdk: {
38
+ input: SubmitRegistryRecordForApprovalCommandInput;
39
+ output: SubmitRegistryRecordForApprovalCommandOutput;
40
+ };
41
+ };
42
+ }
@@ -0,0 +1,38 @@
1
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
3
+ export { __MetadataBearer };
4
+ export interface TagResourceCommandInput extends TagResourceRequest {}
5
+ export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {}
6
+ declare const TagResourceCommand_base: {
7
+ new (
8
+ input: TagResourceCommandInput,
9
+ ): import("@smithy/core/client").CommandImpl<
10
+ TagResourceCommandInput,
11
+ TagResourceCommandOutput,
12
+ import("..").AgentRegistryControlClientResolvedConfig,
13
+ import("..").ServiceInputTypes,
14
+ import("..").ServiceOutputTypes
15
+ >;
16
+ new (
17
+ input: TagResourceCommandInput,
18
+ ): import("@smithy/core/client").CommandImpl<
19
+ TagResourceCommandInput,
20
+ TagResourceCommandOutput,
21
+ import("..").AgentRegistryControlClientResolvedConfig,
22
+ import("..").ServiceInputTypes,
23
+ import("..").ServiceOutputTypes
24
+ >;
25
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
26
+ };
27
+ export declare class TagResourceCommand extends TagResourceCommand_base {
28
+ protected static __types: {
29
+ api: {
30
+ input: TagResourceRequest;
31
+ output: {};
32
+ };
33
+ sdk: {
34
+ input: TagResourceCommandInput;
35
+ output: TagResourceCommandOutput;
36
+ };
37
+ };
38
+ }
@@ -0,0 +1,38 @@
1
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
3
+ export { __MetadataBearer };
4
+ export interface UntagResourceCommandInput extends UntagResourceRequest {}
5
+ export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {}
6
+ declare const UntagResourceCommand_base: {
7
+ new (
8
+ input: UntagResourceCommandInput,
9
+ ): import("@smithy/core/client").CommandImpl<
10
+ UntagResourceCommandInput,
11
+ UntagResourceCommandOutput,
12
+ import("..").AgentRegistryControlClientResolvedConfig,
13
+ import("..").ServiceInputTypes,
14
+ import("..").ServiceOutputTypes
15
+ >;
16
+ new (
17
+ input: UntagResourceCommandInput,
18
+ ): import("@smithy/core/client").CommandImpl<
19
+ UntagResourceCommandInput,
20
+ UntagResourceCommandOutput,
21
+ import("..").AgentRegistryControlClientResolvedConfig,
22
+ import("..").ServiceInputTypes,
23
+ import("..").ServiceOutputTypes
24
+ >;
25
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
26
+ };
27
+ export declare class UntagResourceCommand extends UntagResourceCommand_base {
28
+ protected static __types: {
29
+ api: {
30
+ input: UntagResourceRequest;
31
+ output: {};
32
+ };
33
+ sdk: {
34
+ input: UntagResourceCommandInput;
35
+ output: UntagResourceCommandOutput;
36
+ };
37
+ };
38
+ }
@@ -0,0 +1,38 @@
1
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import { UpdateRegistryRequest, UpdateRegistryResponse } from "../models/models_0";
3
+ export { __MetadataBearer };
4
+ export interface UpdateRegistryCommandInput extends UpdateRegistryRequest {}
5
+ export interface UpdateRegistryCommandOutput extends UpdateRegistryResponse, __MetadataBearer {}
6
+ declare const UpdateRegistryCommand_base: {
7
+ new (
8
+ input: UpdateRegistryCommandInput,
9
+ ): import("@smithy/core/client").CommandImpl<
10
+ UpdateRegistryCommandInput,
11
+ UpdateRegistryCommandOutput,
12
+ import("..").AgentRegistryControlClientResolvedConfig,
13
+ import("..").ServiceInputTypes,
14
+ import("..").ServiceOutputTypes
15
+ >;
16
+ new (
17
+ input: UpdateRegistryCommandInput,
18
+ ): import("@smithy/core/client").CommandImpl<
19
+ UpdateRegistryCommandInput,
20
+ UpdateRegistryCommandOutput,
21
+ import("..").AgentRegistryControlClientResolvedConfig,
22
+ import("..").ServiceInputTypes,
23
+ import("..").ServiceOutputTypes
24
+ >;
25
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
26
+ };
27
+ export declare class UpdateRegistryCommand extends UpdateRegistryCommand_base {
28
+ protected static __types: {
29
+ api: {
30
+ input: UpdateRegistryRequest;
31
+ output: UpdateRegistryResponse;
32
+ };
33
+ sdk: {
34
+ input: UpdateRegistryCommandInput;
35
+ output: UpdateRegistryCommandOutput;
36
+ };
37
+ };
38
+ }
@@ -0,0 +1,39 @@
1
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import { UpdateRegistryRecordRequest, UpdateRegistryRecordResponse } from "../models/models_0";
3
+ export { __MetadataBearer };
4
+ export interface UpdateRegistryRecordCommandInput extends UpdateRegistryRecordRequest {}
5
+ export interface UpdateRegistryRecordCommandOutput
6
+ extends UpdateRegistryRecordResponse, __MetadataBearer {}
7
+ declare const UpdateRegistryRecordCommand_base: {
8
+ new (
9
+ input: UpdateRegistryRecordCommandInput,
10
+ ): import("@smithy/core/client").CommandImpl<
11
+ UpdateRegistryRecordCommandInput,
12
+ UpdateRegistryRecordCommandOutput,
13
+ import("..").AgentRegistryControlClientResolvedConfig,
14
+ import("..").ServiceInputTypes,
15
+ import("..").ServiceOutputTypes
16
+ >;
17
+ new (
18
+ input: UpdateRegistryRecordCommandInput,
19
+ ): import("@smithy/core/client").CommandImpl<
20
+ UpdateRegistryRecordCommandInput,
21
+ UpdateRegistryRecordCommandOutput,
22
+ import("..").AgentRegistryControlClientResolvedConfig,
23
+ import("..").ServiceInputTypes,
24
+ import("..").ServiceOutputTypes
25
+ >;
26
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
27
+ };
28
+ export declare class UpdateRegistryRecordCommand extends UpdateRegistryRecordCommand_base {
29
+ protected static __types: {
30
+ api: {
31
+ input: UpdateRegistryRecordRequest;
32
+ output: UpdateRegistryRecordResponse;
33
+ };
34
+ sdk: {
35
+ input: UpdateRegistryRecordCommandInput;
36
+ output: UpdateRegistryRecordCommandOutput;
37
+ };
38
+ };
39
+ }
@@ -0,0 +1,42 @@
1
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import {
3
+ UpdateRegistryRecordStatusRequest,
4
+ UpdateRegistryRecordStatusResponse,
5
+ } from "../models/models_0";
6
+ export { __MetadataBearer };
7
+ export interface UpdateRegistryRecordStatusCommandInput extends UpdateRegistryRecordStatusRequest {}
8
+ export interface UpdateRegistryRecordStatusCommandOutput
9
+ extends UpdateRegistryRecordStatusResponse, __MetadataBearer {}
10
+ declare const UpdateRegistryRecordStatusCommand_base: {
11
+ new (
12
+ input: UpdateRegistryRecordStatusCommandInput,
13
+ ): import("@smithy/core/client").CommandImpl<
14
+ UpdateRegistryRecordStatusCommandInput,
15
+ UpdateRegistryRecordStatusCommandOutput,
16
+ import("..").AgentRegistryControlClientResolvedConfig,
17
+ import("..").ServiceInputTypes,
18
+ import("..").ServiceOutputTypes
19
+ >;
20
+ new (
21
+ input: UpdateRegistryRecordStatusCommandInput,
22
+ ): import("@smithy/core/client").CommandImpl<
23
+ UpdateRegistryRecordStatusCommandInput,
24
+ UpdateRegistryRecordStatusCommandOutput,
25
+ import("..").AgentRegistryControlClientResolvedConfig,
26
+ import("..").ServiceInputTypes,
27
+ import("..").ServiceOutputTypes
28
+ >;
29
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
+ };
31
+ export declare class UpdateRegistryRecordStatusCommand extends UpdateRegistryRecordStatusCommand_base {
32
+ protected static __types: {
33
+ api: {
34
+ input: UpdateRegistryRecordStatusRequest;
35
+ output: UpdateRegistryRecordStatusResponse;
36
+ };
37
+ sdk: {
38
+ input: UpdateRegistryRecordStatusCommandInput;
39
+ output: UpdateRegistryRecordStatusCommandOutput;
40
+ };
41
+ };
42
+ }
@@ -0,0 +1,15 @@
1
+ export * from "./CreateRegistryCommand";
2
+ export * from "./CreateRegistryRecordCommand";
3
+ export * from "./DeleteRegistryCommand";
4
+ export * from "./DeleteRegistryRecordCommand";
5
+ export * from "./GetRegistryCommand";
6
+ export * from "./GetRegistryRecordCommand";
7
+ export * from "./ListRegistriesCommand";
8
+ export * from "./ListRegistryRecordsCommand";
9
+ export * from "./ListTagsForResourceCommand";
10
+ export * from "./SubmitRegistryRecordForApprovalCommand";
11
+ export * from "./TagResourceCommand";
12
+ export * from "./UntagResourceCommand";
13
+ export * from "./UpdateRegistryCommand";
14
+ export * from "./UpdateRegistryRecordCommand";
15
+ export * from "./UpdateRegistryRecordStatusCommand";
@@ -0,0 +1,39 @@
1
+ import {
2
+ Endpoint,
3
+ EndpointParameters as __EndpointParameters,
4
+ EndpointV2,
5
+ Provider,
6
+ } from "@smithy/types";
7
+ export interface ClientInputEndpointParameters {
8
+ region?: string | undefined | Provider<string | undefined>;
9
+ endpoint?:
10
+ | string
11
+ | Provider<string>
12
+ | Endpoint
13
+ | Provider<Endpoint>
14
+ | EndpointV2
15
+ | Provider<EndpointV2>;
16
+ }
17
+ export type ClientResolvedEndpointParameters = Pick<
18
+ ClientInputEndpointParameters,
19
+ Exclude<keyof ClientInputEndpointParameters, "endpoint">
20
+ > & {
21
+ defaultSigningName: string;
22
+ };
23
+ export declare const resolveClientEndpointParameters: <T>(
24
+ options: T & ClientInputEndpointParameters,
25
+ ) => T & ClientResolvedEndpointParameters;
26
+ export declare const commonParams: {
27
+ readonly Endpoint: {
28
+ readonly type: "builtInParams";
29
+ readonly name: "endpoint";
30
+ };
31
+ readonly Region: {
32
+ readonly type: "builtInParams";
33
+ readonly name: "region";
34
+ };
35
+ };
36
+ export interface EndpointParameters extends __EndpointParameters {
37
+ Region?: string | undefined;
38
+ Endpoint?: string | undefined;
39
+ }
@@ -0,0 +1,2 @@
1
+ import { BinaryDecisionDiagram } from "@smithy/core/endpoints";
2
+ export declare const bdd: BinaryDecisionDiagram;
@@ -0,0 +1,8 @@
1
+ import { EndpointV2, Logger } from "@smithy/types";
2
+ import { EndpointParameters } from "./EndpointParameters";
3
+ export declare const defaultEndpointResolver: (
4
+ endpointParams: EndpointParameters,
5
+ context?: {
6
+ logger?: Logger;
7
+ },
8
+ ) => EndpointV2;
@@ -0,0 +1,10 @@
1
+ import { AwsRegionExtensionConfiguration } from "@aws-sdk/types";
2
+ import { HttpHandlerExtensionConfiguration } from "@smithy/core/protocols";
3
+ import { DefaultExtensionConfiguration } from "@smithy/types";
4
+ import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
5
+ export interface AgentRegistryControlExtensionConfiguration
6
+ extends
7
+ HttpHandlerExtensionConfiguration,
8
+ DefaultExtensionConfiguration,
9
+ AwsRegionExtensionConfiguration,
10
+ HttpAuthExtensionConfiguration {}
@@ -0,0 +1,14 @@
1
+ export * from "./AgentRegistryControlClient";
2
+ export * from "./AgentRegistryControl";
3
+ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
4
+ export { RuntimeExtension } from "./runtimeExtensions";
5
+ export { AgentRegistryControlExtensionConfiguration } from "./extensionConfiguration";
6
+ export * from "./commands";
7
+ export { Command as $Command } from "@smithy/core/client";
8
+ export * from "./schemas/schemas_0";
9
+ export * from "./pagination";
10
+ export * from "./waiters";
11
+ export * from "./models/enums";
12
+ export * from "./models/errors";
13
+ export * from "./models/models_0";
14
+ export { AgentRegistryControlServiceException } from "./models/AgentRegistryControlServiceException";
@@ -0,0 +1,9 @@
1
+ import {
2
+ ServiceExceptionOptions as __ServiceExceptionOptions,
3
+ ServiceException as __ServiceException,
4
+ } from "@smithy/core/client";
5
+ export { __ServiceExceptionOptions };
6
+ export { __ServiceException };
7
+ export declare class AgentRegistryControlServiceException extends __ServiceException {
8
+ constructor(options: __ServiceExceptionOptions);
9
+ }