@aws-sdk/client-pca-connector-ad 3.403.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 (199) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +407 -0
  3. package/dist-cjs/PcaConnectorAd.js +61 -0
  4. package/dist-cjs/PcaConnectorAdClient.js +43 -0
  5. package/dist-cjs/commands/CreateConnectorCommand.js +46 -0
  6. package/dist-cjs/commands/CreateDirectoryRegistrationCommand.js +46 -0
  7. package/dist-cjs/commands/CreateServicePrincipalNameCommand.js +46 -0
  8. package/dist-cjs/commands/CreateTemplateCommand.js +46 -0
  9. package/dist-cjs/commands/CreateTemplateGroupAccessControlEntryCommand.js +46 -0
  10. package/dist-cjs/commands/DeleteConnectorCommand.js +46 -0
  11. package/dist-cjs/commands/DeleteDirectoryRegistrationCommand.js +46 -0
  12. package/dist-cjs/commands/DeleteServicePrincipalNameCommand.js +46 -0
  13. package/dist-cjs/commands/DeleteTemplateCommand.js +46 -0
  14. package/dist-cjs/commands/DeleteTemplateGroupAccessControlEntryCommand.js +46 -0
  15. package/dist-cjs/commands/GetConnectorCommand.js +46 -0
  16. package/dist-cjs/commands/GetDirectoryRegistrationCommand.js +46 -0
  17. package/dist-cjs/commands/GetServicePrincipalNameCommand.js +46 -0
  18. package/dist-cjs/commands/GetTemplateCommand.js +46 -0
  19. package/dist-cjs/commands/GetTemplateGroupAccessControlEntryCommand.js +46 -0
  20. package/dist-cjs/commands/ListConnectorsCommand.js +46 -0
  21. package/dist-cjs/commands/ListDirectoryRegistrationsCommand.js +46 -0
  22. package/dist-cjs/commands/ListServicePrincipalNamesCommand.js +46 -0
  23. package/dist-cjs/commands/ListTagsForResourceCommand.js +46 -0
  24. package/dist-cjs/commands/ListTemplateGroupAccessControlEntriesCommand.js +46 -0
  25. package/dist-cjs/commands/ListTemplatesCommand.js +46 -0
  26. package/dist-cjs/commands/TagResourceCommand.js +46 -0
  27. package/dist-cjs/commands/UntagResourceCommand.js +46 -0
  28. package/dist-cjs/commands/UpdateTemplateCommand.js +46 -0
  29. package/dist-cjs/commands/UpdateTemplateGroupAccessControlEntryCommand.js +46 -0
  30. package/dist-cjs/commands/index.js +28 -0
  31. package/dist-cjs/endpoint/EndpointParameters.js +12 -0
  32. package/dist-cjs/endpoint/endpointResolver.js +12 -0
  33. package/dist-cjs/endpoint/ruleset.js +7 -0
  34. package/dist-cjs/extensionConfiguration.js +2 -0
  35. package/dist-cjs/index.js +11 -0
  36. package/dist-cjs/models/PcaConnectorAdServiceException.js +12 -0
  37. package/dist-cjs/models/index.js +4 -0
  38. package/dist-cjs/models/models_0.js +324 -0
  39. package/dist-cjs/pagination/Interfaces.js +2 -0
  40. package/dist-cjs/pagination/ListConnectorsPaginator.js +29 -0
  41. package/dist-cjs/pagination/ListDirectoryRegistrationsPaginator.js +29 -0
  42. package/dist-cjs/pagination/ListServicePrincipalNamesPaginator.js +29 -0
  43. package/dist-cjs/pagination/ListTemplateGroupAccessControlEntriesPaginator.js +29 -0
  44. package/dist-cjs/pagination/ListTemplatesPaginator.js +29 -0
  45. package/dist-cjs/pagination/index.js +9 -0
  46. package/dist-cjs/protocols/Aws_restJson1.js +1985 -0
  47. package/dist-cjs/runtimeConfig.browser.js +39 -0
  48. package/dist-cjs/runtimeConfig.js +48 -0
  49. package/dist-cjs/runtimeConfig.native.js +15 -0
  50. package/dist-cjs/runtimeConfig.shared.js +22 -0
  51. package/dist-cjs/runtimeExtensions.js +16 -0
  52. package/dist-es/PcaConnectorAd.js +57 -0
  53. package/dist-es/PcaConnectorAdClient.js +39 -0
  54. package/dist-es/commands/CreateConnectorCommand.js +42 -0
  55. package/dist-es/commands/CreateDirectoryRegistrationCommand.js +42 -0
  56. package/dist-es/commands/CreateServicePrincipalNameCommand.js +42 -0
  57. package/dist-es/commands/CreateTemplateCommand.js +42 -0
  58. package/dist-es/commands/CreateTemplateGroupAccessControlEntryCommand.js +42 -0
  59. package/dist-es/commands/DeleteConnectorCommand.js +42 -0
  60. package/dist-es/commands/DeleteDirectoryRegistrationCommand.js +42 -0
  61. package/dist-es/commands/DeleteServicePrincipalNameCommand.js +42 -0
  62. package/dist-es/commands/DeleteTemplateCommand.js +42 -0
  63. package/dist-es/commands/DeleteTemplateGroupAccessControlEntryCommand.js +42 -0
  64. package/dist-es/commands/GetConnectorCommand.js +42 -0
  65. package/dist-es/commands/GetDirectoryRegistrationCommand.js +42 -0
  66. package/dist-es/commands/GetServicePrincipalNameCommand.js +42 -0
  67. package/dist-es/commands/GetTemplateCommand.js +42 -0
  68. package/dist-es/commands/GetTemplateGroupAccessControlEntryCommand.js +42 -0
  69. package/dist-es/commands/ListConnectorsCommand.js +42 -0
  70. package/dist-es/commands/ListDirectoryRegistrationsCommand.js +42 -0
  71. package/dist-es/commands/ListServicePrincipalNamesCommand.js +42 -0
  72. package/dist-es/commands/ListTagsForResourceCommand.js +42 -0
  73. package/dist-es/commands/ListTemplateGroupAccessControlEntriesCommand.js +42 -0
  74. package/dist-es/commands/ListTemplatesCommand.js +42 -0
  75. package/dist-es/commands/TagResourceCommand.js +42 -0
  76. package/dist-es/commands/UntagResourceCommand.js +42 -0
  77. package/dist-es/commands/UpdateTemplateCommand.js +42 -0
  78. package/dist-es/commands/UpdateTemplateGroupAccessControlEntryCommand.js +42 -0
  79. package/dist-es/commands/index.js +25 -0
  80. package/dist-es/endpoint/EndpointParameters.js +8 -0
  81. package/dist-es/endpoint/endpointResolver.js +8 -0
  82. package/dist-es/endpoint/ruleset.js +4 -0
  83. package/dist-es/extensionConfiguration.js +1 -0
  84. package/dist-es/index.js +6 -0
  85. package/dist-es/models/PcaConnectorAdServiceException.js +8 -0
  86. package/dist-es/models/index.js +1 -0
  87. package/dist-es/models/models_0.js +314 -0
  88. package/dist-es/pagination/Interfaces.js +1 -0
  89. package/dist-es/pagination/ListConnectorsPaginator.js +25 -0
  90. package/dist-es/pagination/ListDirectoryRegistrationsPaginator.js +25 -0
  91. package/dist-es/pagination/ListServicePrincipalNamesPaginator.js +25 -0
  92. package/dist-es/pagination/ListTemplateGroupAccessControlEntriesPaginator.js +25 -0
  93. package/dist-es/pagination/ListTemplatesPaginator.js +25 -0
  94. package/dist-es/pagination/index.js +6 -0
  95. package/dist-es/protocols/Aws_restJson1.js +1932 -0
  96. package/dist-es/runtimeConfig.browser.js +34 -0
  97. package/dist-es/runtimeConfig.js +43 -0
  98. package/dist-es/runtimeConfig.native.js +11 -0
  99. package/dist-es/runtimeConfig.shared.js +18 -0
  100. package/dist-es/runtimeExtensions.js +12 -0
  101. package/dist-types/PcaConnectorAd.d.ts +187 -0
  102. package/dist-types/PcaConnectorAdClient.d.ts +194 -0
  103. package/dist-types/commands/CreateConnectorCommand.d.ts +113 -0
  104. package/dist-types/commands/CreateDirectoryRegistrationCommand.d.ts +104 -0
  105. package/dist-types/commands/CreateServicePrincipalNameCommand.d.ts +101 -0
  106. package/dist-types/commands/CreateTemplateCommand.d.ts +344 -0
  107. package/dist-types/commands/CreateTemplateGroupAccessControlEntryCommand.d.ts +108 -0
  108. package/dist-types/commands/DeleteConnectorCommand.d.ts +101 -0
  109. package/dist-types/commands/DeleteDirectoryRegistrationCommand.d.ts +94 -0
  110. package/dist-types/commands/DeleteServicePrincipalNameCommand.d.ts +95 -0
  111. package/dist-types/commands/DeleteTemplateCommand.d.ts +98 -0
  112. package/dist-types/commands/DeleteTemplateGroupAccessControlEntryCommand.d.ts +98 -0
  113. package/dist-types/commands/GetConnectorCommand.d.ts +110 -0
  114. package/dist-types/commands/GetDirectoryRegistrationCommand.d.ts +102 -0
  115. package/dist-types/commands/GetServicePrincipalNameCommand.d.ts +104 -0
  116. package/dist-types/commands/GetTemplateCommand.d.ts +345 -0
  117. package/dist-types/commands/GetTemplateGroupAccessControlEntryCommand.d.ts +106 -0
  118. package/dist-types/commands/ListConnectorsCommand.d.ts +109 -0
  119. package/dist-types/commands/ListDirectoryRegistrationsCommand.d.ts +103 -0
  120. package/dist-types/commands/ListServicePrincipalNamesCommand.d.ts +108 -0
  121. package/dist-types/commands/ListTagsForResourceCommand.d.ts +97 -0
  122. package/dist-types/commands/ListTemplateGroupAccessControlEntriesCommand.d.ts +110 -0
  123. package/dist-types/commands/ListTemplatesCommand.d.ts +349 -0
  124. package/dist-types/commands/TagResourceCommand.d.ts +96 -0
  125. package/dist-types/commands/UntagResourceCommand.d.ts +96 -0
  126. package/dist-types/commands/UpdateTemplateCommand.d.ts +334 -0
  127. package/dist-types/commands/UpdateTemplateGroupAccessControlEntryCommand.d.ts +103 -0
  128. package/dist-types/commands/index.d.ts +25 -0
  129. package/dist-types/endpoint/EndpointParameters.d.ts +22 -0
  130. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  131. package/dist-types/endpoint/ruleset.d.ts +2 -0
  132. package/dist-types/extensionConfiguration.d.ts +6 -0
  133. package/dist-types/index.d.ts +14 -0
  134. package/dist-types/models/PcaConnectorAdServiceException.d.ts +13 -0
  135. package/dist-types/models/index.d.ts +1 -0
  136. package/dist-types/models/models_0.d.ts +2690 -0
  137. package/dist-types/pagination/Interfaces.d.ts +8 -0
  138. package/dist-types/pagination/ListConnectorsPaginator.d.ts +7 -0
  139. package/dist-types/pagination/ListDirectoryRegistrationsPaginator.d.ts +7 -0
  140. package/dist-types/pagination/ListServicePrincipalNamesPaginator.d.ts +7 -0
  141. package/dist-types/pagination/ListTemplateGroupAccessControlEntriesPaginator.d.ts +7 -0
  142. package/dist-types/pagination/ListTemplatesPaginator.d.ts +7 -0
  143. package/dist-types/pagination/index.d.ts +6 -0
  144. package/dist-types/protocols/Aws_restJson1.d.ts +227 -0
  145. package/dist-types/runtimeConfig.browser.d.ts +43 -0
  146. package/dist-types/runtimeConfig.d.ts +43 -0
  147. package/dist-types/runtimeConfig.native.d.ts +42 -0
  148. package/dist-types/runtimeConfig.shared.d.ts +19 -0
  149. package/dist-types/runtimeExtensions.d.ts +17 -0
  150. package/dist-types/ts3.4/PcaConnectorAd.d.ts +462 -0
  151. package/dist-types/ts3.4/PcaConnectorAdClient.d.ts +269 -0
  152. package/dist-types/ts3.4/commands/CreateConnectorCommand.d.ts +38 -0
  153. package/dist-types/ts3.4/commands/CreateDirectoryRegistrationCommand.d.ts +42 -0
  154. package/dist-types/ts3.4/commands/CreateServicePrincipalNameCommand.d.ts +38 -0
  155. package/dist-types/ts3.4/commands/CreateTemplateCommand.d.ts +38 -0
  156. package/dist-types/ts3.4/commands/CreateTemplateGroupAccessControlEntryCommand.d.ts +38 -0
  157. package/dist-types/ts3.4/commands/DeleteConnectorCommand.d.ts +33 -0
  158. package/dist-types/ts3.4/commands/DeleteDirectoryRegistrationCommand.d.ts +38 -0
  159. package/dist-types/ts3.4/commands/DeleteServicePrincipalNameCommand.d.ts +38 -0
  160. package/dist-types/ts3.4/commands/DeleteTemplateCommand.d.ts +33 -0
  161. package/dist-types/ts3.4/commands/DeleteTemplateGroupAccessControlEntryCommand.d.ts +38 -0
  162. package/dist-types/ts3.4/commands/GetConnectorCommand.d.ts +35 -0
  163. package/dist-types/ts3.4/commands/GetDirectoryRegistrationCommand.d.ts +42 -0
  164. package/dist-types/ts3.4/commands/GetServicePrincipalNameCommand.d.ts +42 -0
  165. package/dist-types/ts3.4/commands/GetTemplateCommand.d.ts +35 -0
  166. package/dist-types/ts3.4/commands/GetTemplateGroupAccessControlEntryCommand.d.ts +42 -0
  167. package/dist-types/ts3.4/commands/ListConnectorsCommand.d.ts +38 -0
  168. package/dist-types/ts3.4/commands/ListDirectoryRegistrationsCommand.d.ts +42 -0
  169. package/dist-types/ts3.4/commands/ListServicePrincipalNamesCommand.d.ts +42 -0
  170. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +39 -0
  171. package/dist-types/ts3.4/commands/ListTemplateGroupAccessControlEntriesCommand.d.ts +42 -0
  172. package/dist-types/ts3.4/commands/ListTemplatesCommand.d.ts +38 -0
  173. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +33 -0
  174. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +33 -0
  175. package/dist-types/ts3.4/commands/UpdateTemplateCommand.d.ts +33 -0
  176. package/dist-types/ts3.4/commands/UpdateTemplateGroupAccessControlEntryCommand.d.ts +38 -0
  177. package/dist-types/ts3.4/commands/index.d.ts +25 -0
  178. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +33 -0
  179. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  180. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  181. package/dist-types/ts3.4/extensionConfiguration.d.ts +3 -0
  182. package/dist-types/ts3.4/index.d.ts +7 -0
  183. package/dist-types/ts3.4/models/PcaConnectorAdServiceException.d.ts +8 -0
  184. package/dist-types/ts3.4/models/index.d.ts +1 -0
  185. package/dist-types/ts3.4/models/models_0.d.ts +812 -0
  186. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  187. package/dist-types/ts3.4/pagination/ListConnectorsPaginator.d.ts +11 -0
  188. package/dist-types/ts3.4/pagination/ListDirectoryRegistrationsPaginator.d.ts +11 -0
  189. package/dist-types/ts3.4/pagination/ListServicePrincipalNamesPaginator.d.ts +11 -0
  190. package/dist-types/ts3.4/pagination/ListTemplateGroupAccessControlEntriesPaginator.d.ts +11 -0
  191. package/dist-types/ts3.4/pagination/ListTemplatesPaginator.d.ts +11 -0
  192. package/dist-types/ts3.4/pagination/index.d.ts +6 -0
  193. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +305 -0
  194. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +90 -0
  195. package/dist-types/ts3.4/runtimeConfig.d.ts +90 -0
  196. package/dist-types/ts3.4/runtimeConfig.native.d.ts +81 -0
  197. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +19 -0
  198. package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
  199. package/package.json +101 -0
@@ -0,0 +1,6 @@
1
+ import { PaginationConfiguration } from "@smithy/types";
2
+ import { PcaConnectorAdClient } from "../PcaConnectorAdClient";
3
+ export interface PcaConnectorAdPaginationConfiguration
4
+ extends PaginationConfiguration {
5
+ client: PcaConnectorAdClient;
6
+ }
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListConnectorsCommandInput,
4
+ ListConnectorsCommandOutput,
5
+ } from "../commands/ListConnectorsCommand";
6
+ import { PcaConnectorAdPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListConnectors(
8
+ config: PcaConnectorAdPaginationConfiguration,
9
+ input: ListConnectorsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListConnectorsCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListDirectoryRegistrationsCommandInput,
4
+ ListDirectoryRegistrationsCommandOutput,
5
+ } from "../commands/ListDirectoryRegistrationsCommand";
6
+ import { PcaConnectorAdPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListDirectoryRegistrations(
8
+ config: PcaConnectorAdPaginationConfiguration,
9
+ input: ListDirectoryRegistrationsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListDirectoryRegistrationsCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListServicePrincipalNamesCommandInput,
4
+ ListServicePrincipalNamesCommandOutput,
5
+ } from "../commands/ListServicePrincipalNamesCommand";
6
+ import { PcaConnectorAdPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListServicePrincipalNames(
8
+ config: PcaConnectorAdPaginationConfiguration,
9
+ input: ListServicePrincipalNamesCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListServicePrincipalNamesCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListTemplateGroupAccessControlEntriesCommandInput,
4
+ ListTemplateGroupAccessControlEntriesCommandOutput,
5
+ } from "../commands/ListTemplateGroupAccessControlEntriesCommand";
6
+ import { PcaConnectorAdPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListTemplateGroupAccessControlEntries(
8
+ config: PcaConnectorAdPaginationConfiguration,
9
+ input: ListTemplateGroupAccessControlEntriesCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListTemplateGroupAccessControlEntriesCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListTemplatesCommandInput,
4
+ ListTemplatesCommandOutput,
5
+ } from "../commands/ListTemplatesCommand";
6
+ import { PcaConnectorAdPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListTemplates(
8
+ config: PcaConnectorAdPaginationConfiguration,
9
+ input: ListTemplatesCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListTemplatesCommandOutput>;
@@ -0,0 +1,6 @@
1
+ export * from "./Interfaces";
2
+ export * from "./ListConnectorsPaginator";
3
+ export * from "./ListDirectoryRegistrationsPaginator";
4
+ export * from "./ListServicePrincipalNamesPaginator";
5
+ export * from "./ListTemplateGroupAccessControlEntriesPaginator";
6
+ export * from "./ListTemplatesPaginator";
@@ -0,0 +1,305 @@
1
+ import {
2
+ HttpRequest as __HttpRequest,
3
+ HttpResponse as __HttpResponse,
4
+ } from "@smithy/protocol-http";
5
+ import { SerdeContext as __SerdeContext } from "@smithy/types";
6
+ import {
7
+ CreateConnectorCommandInput,
8
+ CreateConnectorCommandOutput,
9
+ } from "../commands/CreateConnectorCommand";
10
+ import {
11
+ CreateDirectoryRegistrationCommandInput,
12
+ CreateDirectoryRegistrationCommandOutput,
13
+ } from "../commands/CreateDirectoryRegistrationCommand";
14
+ import {
15
+ CreateServicePrincipalNameCommandInput,
16
+ CreateServicePrincipalNameCommandOutput,
17
+ } from "../commands/CreateServicePrincipalNameCommand";
18
+ import {
19
+ CreateTemplateCommandInput,
20
+ CreateTemplateCommandOutput,
21
+ } from "../commands/CreateTemplateCommand";
22
+ import {
23
+ CreateTemplateGroupAccessControlEntryCommandInput,
24
+ CreateTemplateGroupAccessControlEntryCommandOutput,
25
+ } from "../commands/CreateTemplateGroupAccessControlEntryCommand";
26
+ import {
27
+ DeleteConnectorCommandInput,
28
+ DeleteConnectorCommandOutput,
29
+ } from "../commands/DeleteConnectorCommand";
30
+ import {
31
+ DeleteDirectoryRegistrationCommandInput,
32
+ DeleteDirectoryRegistrationCommandOutput,
33
+ } from "../commands/DeleteDirectoryRegistrationCommand";
34
+ import {
35
+ DeleteServicePrincipalNameCommandInput,
36
+ DeleteServicePrincipalNameCommandOutput,
37
+ } from "../commands/DeleteServicePrincipalNameCommand";
38
+ import {
39
+ DeleteTemplateCommandInput,
40
+ DeleteTemplateCommandOutput,
41
+ } from "../commands/DeleteTemplateCommand";
42
+ import {
43
+ DeleteTemplateGroupAccessControlEntryCommandInput,
44
+ DeleteTemplateGroupAccessControlEntryCommandOutput,
45
+ } from "../commands/DeleteTemplateGroupAccessControlEntryCommand";
46
+ import {
47
+ GetConnectorCommandInput,
48
+ GetConnectorCommandOutput,
49
+ } from "../commands/GetConnectorCommand";
50
+ import {
51
+ GetDirectoryRegistrationCommandInput,
52
+ GetDirectoryRegistrationCommandOutput,
53
+ } from "../commands/GetDirectoryRegistrationCommand";
54
+ import {
55
+ GetServicePrincipalNameCommandInput,
56
+ GetServicePrincipalNameCommandOutput,
57
+ } from "../commands/GetServicePrincipalNameCommand";
58
+ import {
59
+ GetTemplateCommandInput,
60
+ GetTemplateCommandOutput,
61
+ } from "../commands/GetTemplateCommand";
62
+ import {
63
+ GetTemplateGroupAccessControlEntryCommandInput,
64
+ GetTemplateGroupAccessControlEntryCommandOutput,
65
+ } from "../commands/GetTemplateGroupAccessControlEntryCommand";
66
+ import {
67
+ ListConnectorsCommandInput,
68
+ ListConnectorsCommandOutput,
69
+ } from "../commands/ListConnectorsCommand";
70
+ import {
71
+ ListDirectoryRegistrationsCommandInput,
72
+ ListDirectoryRegistrationsCommandOutput,
73
+ } from "../commands/ListDirectoryRegistrationsCommand";
74
+ import {
75
+ ListServicePrincipalNamesCommandInput,
76
+ ListServicePrincipalNamesCommandOutput,
77
+ } from "../commands/ListServicePrincipalNamesCommand";
78
+ import {
79
+ ListTagsForResourceCommandInput,
80
+ ListTagsForResourceCommandOutput,
81
+ } from "../commands/ListTagsForResourceCommand";
82
+ import {
83
+ ListTemplateGroupAccessControlEntriesCommandInput,
84
+ ListTemplateGroupAccessControlEntriesCommandOutput,
85
+ } from "../commands/ListTemplateGroupAccessControlEntriesCommand";
86
+ import {
87
+ ListTemplatesCommandInput,
88
+ ListTemplatesCommandOutput,
89
+ } from "../commands/ListTemplatesCommand";
90
+ import {
91
+ TagResourceCommandInput,
92
+ TagResourceCommandOutput,
93
+ } from "../commands/TagResourceCommand";
94
+ import {
95
+ UntagResourceCommandInput,
96
+ UntagResourceCommandOutput,
97
+ } from "../commands/UntagResourceCommand";
98
+ import {
99
+ UpdateTemplateCommandInput,
100
+ UpdateTemplateCommandOutput,
101
+ } from "../commands/UpdateTemplateCommand";
102
+ import {
103
+ UpdateTemplateGroupAccessControlEntryCommandInput,
104
+ UpdateTemplateGroupAccessControlEntryCommandOutput,
105
+ } from "../commands/UpdateTemplateGroupAccessControlEntryCommand";
106
+ export declare const se_CreateConnectorCommand: (
107
+ input: CreateConnectorCommandInput,
108
+ context: __SerdeContext
109
+ ) => Promise<__HttpRequest>;
110
+ export declare const se_CreateDirectoryRegistrationCommand: (
111
+ input: CreateDirectoryRegistrationCommandInput,
112
+ context: __SerdeContext
113
+ ) => Promise<__HttpRequest>;
114
+ export declare const se_CreateServicePrincipalNameCommand: (
115
+ input: CreateServicePrincipalNameCommandInput,
116
+ context: __SerdeContext
117
+ ) => Promise<__HttpRequest>;
118
+ export declare const se_CreateTemplateCommand: (
119
+ input: CreateTemplateCommandInput,
120
+ context: __SerdeContext
121
+ ) => Promise<__HttpRequest>;
122
+ export declare const se_CreateTemplateGroupAccessControlEntryCommand: (
123
+ input: CreateTemplateGroupAccessControlEntryCommandInput,
124
+ context: __SerdeContext
125
+ ) => Promise<__HttpRequest>;
126
+ export declare const se_DeleteConnectorCommand: (
127
+ input: DeleteConnectorCommandInput,
128
+ context: __SerdeContext
129
+ ) => Promise<__HttpRequest>;
130
+ export declare const se_DeleteDirectoryRegistrationCommand: (
131
+ input: DeleteDirectoryRegistrationCommandInput,
132
+ context: __SerdeContext
133
+ ) => Promise<__HttpRequest>;
134
+ export declare const se_DeleteServicePrincipalNameCommand: (
135
+ input: DeleteServicePrincipalNameCommandInput,
136
+ context: __SerdeContext
137
+ ) => Promise<__HttpRequest>;
138
+ export declare const se_DeleteTemplateCommand: (
139
+ input: DeleteTemplateCommandInput,
140
+ context: __SerdeContext
141
+ ) => Promise<__HttpRequest>;
142
+ export declare const se_DeleteTemplateGroupAccessControlEntryCommand: (
143
+ input: DeleteTemplateGroupAccessControlEntryCommandInput,
144
+ context: __SerdeContext
145
+ ) => Promise<__HttpRequest>;
146
+ export declare const se_GetConnectorCommand: (
147
+ input: GetConnectorCommandInput,
148
+ context: __SerdeContext
149
+ ) => Promise<__HttpRequest>;
150
+ export declare const se_GetDirectoryRegistrationCommand: (
151
+ input: GetDirectoryRegistrationCommandInput,
152
+ context: __SerdeContext
153
+ ) => Promise<__HttpRequest>;
154
+ export declare const se_GetServicePrincipalNameCommand: (
155
+ input: GetServicePrincipalNameCommandInput,
156
+ context: __SerdeContext
157
+ ) => Promise<__HttpRequest>;
158
+ export declare const se_GetTemplateCommand: (
159
+ input: GetTemplateCommandInput,
160
+ context: __SerdeContext
161
+ ) => Promise<__HttpRequest>;
162
+ export declare const se_GetTemplateGroupAccessControlEntryCommand: (
163
+ input: GetTemplateGroupAccessControlEntryCommandInput,
164
+ context: __SerdeContext
165
+ ) => Promise<__HttpRequest>;
166
+ export declare const se_ListConnectorsCommand: (
167
+ input: ListConnectorsCommandInput,
168
+ context: __SerdeContext
169
+ ) => Promise<__HttpRequest>;
170
+ export declare const se_ListDirectoryRegistrationsCommand: (
171
+ input: ListDirectoryRegistrationsCommandInput,
172
+ context: __SerdeContext
173
+ ) => Promise<__HttpRequest>;
174
+ export declare const se_ListServicePrincipalNamesCommand: (
175
+ input: ListServicePrincipalNamesCommandInput,
176
+ context: __SerdeContext
177
+ ) => Promise<__HttpRequest>;
178
+ export declare const se_ListTagsForResourceCommand: (
179
+ input: ListTagsForResourceCommandInput,
180
+ context: __SerdeContext
181
+ ) => Promise<__HttpRequest>;
182
+ export declare const se_ListTemplateGroupAccessControlEntriesCommand: (
183
+ input: ListTemplateGroupAccessControlEntriesCommandInput,
184
+ context: __SerdeContext
185
+ ) => Promise<__HttpRequest>;
186
+ export declare const se_ListTemplatesCommand: (
187
+ input: ListTemplatesCommandInput,
188
+ context: __SerdeContext
189
+ ) => Promise<__HttpRequest>;
190
+ export declare const se_TagResourceCommand: (
191
+ input: TagResourceCommandInput,
192
+ context: __SerdeContext
193
+ ) => Promise<__HttpRequest>;
194
+ export declare const se_UntagResourceCommand: (
195
+ input: UntagResourceCommandInput,
196
+ context: __SerdeContext
197
+ ) => Promise<__HttpRequest>;
198
+ export declare const se_UpdateTemplateCommand: (
199
+ input: UpdateTemplateCommandInput,
200
+ context: __SerdeContext
201
+ ) => Promise<__HttpRequest>;
202
+ export declare const se_UpdateTemplateGroupAccessControlEntryCommand: (
203
+ input: UpdateTemplateGroupAccessControlEntryCommandInput,
204
+ context: __SerdeContext
205
+ ) => Promise<__HttpRequest>;
206
+ export declare const de_CreateConnectorCommand: (
207
+ output: __HttpResponse,
208
+ context: __SerdeContext
209
+ ) => Promise<CreateConnectorCommandOutput>;
210
+ export declare const de_CreateDirectoryRegistrationCommand: (
211
+ output: __HttpResponse,
212
+ context: __SerdeContext
213
+ ) => Promise<CreateDirectoryRegistrationCommandOutput>;
214
+ export declare const de_CreateServicePrincipalNameCommand: (
215
+ output: __HttpResponse,
216
+ context: __SerdeContext
217
+ ) => Promise<CreateServicePrincipalNameCommandOutput>;
218
+ export declare const de_CreateTemplateCommand: (
219
+ output: __HttpResponse,
220
+ context: __SerdeContext
221
+ ) => Promise<CreateTemplateCommandOutput>;
222
+ export declare const de_CreateTemplateGroupAccessControlEntryCommand: (
223
+ output: __HttpResponse,
224
+ context: __SerdeContext
225
+ ) => Promise<CreateTemplateGroupAccessControlEntryCommandOutput>;
226
+ export declare const de_DeleteConnectorCommand: (
227
+ output: __HttpResponse,
228
+ context: __SerdeContext
229
+ ) => Promise<DeleteConnectorCommandOutput>;
230
+ export declare const de_DeleteDirectoryRegistrationCommand: (
231
+ output: __HttpResponse,
232
+ context: __SerdeContext
233
+ ) => Promise<DeleteDirectoryRegistrationCommandOutput>;
234
+ export declare const de_DeleteServicePrincipalNameCommand: (
235
+ output: __HttpResponse,
236
+ context: __SerdeContext
237
+ ) => Promise<DeleteServicePrincipalNameCommandOutput>;
238
+ export declare const de_DeleteTemplateCommand: (
239
+ output: __HttpResponse,
240
+ context: __SerdeContext
241
+ ) => Promise<DeleteTemplateCommandOutput>;
242
+ export declare const de_DeleteTemplateGroupAccessControlEntryCommand: (
243
+ output: __HttpResponse,
244
+ context: __SerdeContext
245
+ ) => Promise<DeleteTemplateGroupAccessControlEntryCommandOutput>;
246
+ export declare const de_GetConnectorCommand: (
247
+ output: __HttpResponse,
248
+ context: __SerdeContext
249
+ ) => Promise<GetConnectorCommandOutput>;
250
+ export declare const de_GetDirectoryRegistrationCommand: (
251
+ output: __HttpResponse,
252
+ context: __SerdeContext
253
+ ) => Promise<GetDirectoryRegistrationCommandOutput>;
254
+ export declare const de_GetServicePrincipalNameCommand: (
255
+ output: __HttpResponse,
256
+ context: __SerdeContext
257
+ ) => Promise<GetServicePrincipalNameCommandOutput>;
258
+ export declare const de_GetTemplateCommand: (
259
+ output: __HttpResponse,
260
+ context: __SerdeContext
261
+ ) => Promise<GetTemplateCommandOutput>;
262
+ export declare const de_GetTemplateGroupAccessControlEntryCommand: (
263
+ output: __HttpResponse,
264
+ context: __SerdeContext
265
+ ) => Promise<GetTemplateGroupAccessControlEntryCommandOutput>;
266
+ export declare const de_ListConnectorsCommand: (
267
+ output: __HttpResponse,
268
+ context: __SerdeContext
269
+ ) => Promise<ListConnectorsCommandOutput>;
270
+ export declare const de_ListDirectoryRegistrationsCommand: (
271
+ output: __HttpResponse,
272
+ context: __SerdeContext
273
+ ) => Promise<ListDirectoryRegistrationsCommandOutput>;
274
+ export declare const de_ListServicePrincipalNamesCommand: (
275
+ output: __HttpResponse,
276
+ context: __SerdeContext
277
+ ) => Promise<ListServicePrincipalNamesCommandOutput>;
278
+ export declare const de_ListTagsForResourceCommand: (
279
+ output: __HttpResponse,
280
+ context: __SerdeContext
281
+ ) => Promise<ListTagsForResourceCommandOutput>;
282
+ export declare const de_ListTemplateGroupAccessControlEntriesCommand: (
283
+ output: __HttpResponse,
284
+ context: __SerdeContext
285
+ ) => Promise<ListTemplateGroupAccessControlEntriesCommandOutput>;
286
+ export declare const de_ListTemplatesCommand: (
287
+ output: __HttpResponse,
288
+ context: __SerdeContext
289
+ ) => Promise<ListTemplatesCommandOutput>;
290
+ export declare const de_TagResourceCommand: (
291
+ output: __HttpResponse,
292
+ context: __SerdeContext
293
+ ) => Promise<TagResourceCommandOutput>;
294
+ export declare const de_UntagResourceCommand: (
295
+ output: __HttpResponse,
296
+ context: __SerdeContext
297
+ ) => Promise<UntagResourceCommandOutput>;
298
+ export declare const de_UpdateTemplateCommand: (
299
+ output: __HttpResponse,
300
+ context: __SerdeContext
301
+ ) => Promise<UpdateTemplateCommandOutput>;
302
+ export declare const de_UpdateTemplateGroupAccessControlEntryCommand: (
303
+ output: __HttpResponse,
304
+ context: __SerdeContext
305
+ ) => Promise<UpdateTemplateGroupAccessControlEntryCommandOutput>;
@@ -0,0 +1,90 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
2
+ import { PcaConnectorAdClientConfig } from "./PcaConnectorAdClient";
3
+ export declare const getRuntimeConfig: (config: PcaConnectorAdClientConfig) => {
4
+ runtime: string;
5
+ defaultsMode: import("@smithy/types").Provider<
6
+ import("@smithy/smithy-client").ResolvedDefaultsMode
7
+ >;
8
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
9
+ credentialDefaultProvider: (
10
+ input: any
11
+ ) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
12
+ defaultUserAgentProvider: import("@smithy/types").Provider<
13
+ import("@smithy/types").UserAgent
14
+ >;
15
+ maxAttempts: number | import("@smithy/types").Provider<number>;
16
+ region: string | import("@smithy/types").Provider<any>;
17
+ requestHandler:
18
+ | (import("@smithy/types").RequestHandler<
19
+ any,
20
+ any,
21
+ import("@smithy/types").HttpHandlerOptions
22
+ > &
23
+ import("@smithy/protocol-http").HttpHandler)
24
+ | RequestHandler;
25
+ retryMode: string | import("@smithy/types").Provider<string>;
26
+ sha256: import("@smithy/types").HashConstructor;
27
+ streamCollector: import("@smithy/types").StreamCollector;
28
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
29
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
30
+ apiVersion: string;
31
+ urlParser: import("@smithy/types").UrlParser;
32
+ base64Decoder: import("@smithy/types").Decoder;
33
+ base64Encoder: import("@smithy/types").Encoder;
34
+ utf8Decoder: import("@smithy/types").Decoder;
35
+ utf8Encoder: import("@smithy/types").Encoder;
36
+ disableHostPrefix: boolean;
37
+ serviceId: string;
38
+ logger: import("@smithy/types").Logger;
39
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
40
+ endpoint?:
41
+ | ((
42
+ | string
43
+ | import("@smithy/types").Endpoint
44
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
45
+ | import("@smithy/types").EndpointV2
46
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
47
+ ) &
48
+ (
49
+ | string
50
+ | import("@smithy/types").Provider<string>
51
+ | import("@smithy/types").Endpoint
52
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
53
+ | import("@smithy/types").EndpointV2
54
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
55
+ ))
56
+ | undefined;
57
+ endpointProvider: (
58
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
59
+ context?: {
60
+ logger?: import("@smithy/types").Logger | undefined;
61
+ }
62
+ ) => import("@smithy/types").EndpointV2;
63
+ tls?: boolean | undefined;
64
+ retryStrategy?:
65
+ | import("@smithy/types").RetryStrategy
66
+ | import("@smithy/types").RetryStrategyV2
67
+ | undefined;
68
+ credentials?:
69
+ | import("@smithy/types").AwsCredentialIdentity
70
+ | import("@smithy/types").Provider<
71
+ import("@smithy/types").AwsCredentialIdentity
72
+ >
73
+ | undefined;
74
+ signer?:
75
+ | import("@smithy/types").RequestSigner
76
+ | ((
77
+ authScheme?: import("@smithy/types").AuthScheme | undefined
78
+ ) => Promise<import("@smithy/types").RequestSigner>)
79
+ | undefined;
80
+ signingEscapePath?: boolean | undefined;
81
+ systemClockOffset?: number | undefined;
82
+ signingRegion?: string | undefined;
83
+ signerConstructor?:
84
+ | (new (
85
+ options: import("@smithy/signature-v4").SignatureV4Init &
86
+ import("@smithy/signature-v4").SignatureV4CryptoInit
87
+ ) => import("@smithy/types").RequestSigner)
88
+ | undefined;
89
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
90
+ };
@@ -0,0 +1,90 @@
1
+ import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
2
+ import { PcaConnectorAdClientConfig } from "./PcaConnectorAdClient";
3
+ export declare const getRuntimeConfig: (config: PcaConnectorAdClientConfig) => {
4
+ runtime: string;
5
+ defaultsMode: import("@smithy/types").Provider<
6
+ import("@smithy/smithy-client").ResolvedDefaultsMode
7
+ >;
8
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
9
+ credentialDefaultProvider: (
10
+ input: any
11
+ ) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
12
+ defaultUserAgentProvider: import("@smithy/types").Provider<
13
+ import("@smithy/types").UserAgent
14
+ >;
15
+ maxAttempts: number | import("@smithy/types").Provider<number>;
16
+ region: string | import("@smithy/types").Provider<string>;
17
+ requestHandler:
18
+ | (import("@smithy/types").RequestHandler<
19
+ any,
20
+ any,
21
+ import("@smithy/types").HttpHandlerOptions
22
+ > &
23
+ import("@smithy/protocol-http").HttpHandler)
24
+ | RequestHandler;
25
+ retryMode: string | import("@smithy/types").Provider<string>;
26
+ sha256: import("@smithy/types").HashConstructor;
27
+ streamCollector: import("@smithy/types").StreamCollector;
28
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
29
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
30
+ apiVersion: string;
31
+ urlParser: import("@smithy/types").UrlParser;
32
+ base64Decoder: import("@smithy/types").Decoder;
33
+ base64Encoder: import("@smithy/types").Encoder;
34
+ utf8Decoder: import("@smithy/types").Decoder;
35
+ utf8Encoder: import("@smithy/types").Encoder;
36
+ disableHostPrefix: boolean;
37
+ serviceId: string;
38
+ logger: import("@smithy/types").Logger;
39
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
40
+ endpoint?:
41
+ | ((
42
+ | string
43
+ | import("@smithy/types").Endpoint
44
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
45
+ | import("@smithy/types").EndpointV2
46
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
47
+ ) &
48
+ (
49
+ | string
50
+ | import("@smithy/types").Provider<string>
51
+ | import("@smithy/types").Endpoint
52
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
53
+ | import("@smithy/types").EndpointV2
54
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
55
+ ))
56
+ | undefined;
57
+ endpointProvider: (
58
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
59
+ context?: {
60
+ logger?: import("@smithy/types").Logger | undefined;
61
+ }
62
+ ) => import("@smithy/types").EndpointV2;
63
+ tls?: boolean | undefined;
64
+ retryStrategy?:
65
+ | import("@smithy/types").RetryStrategy
66
+ | import("@smithy/types").RetryStrategyV2
67
+ | undefined;
68
+ credentials?:
69
+ | import("@smithy/types").AwsCredentialIdentity
70
+ | import("@smithy/types").Provider<
71
+ import("@smithy/types").AwsCredentialIdentity
72
+ >
73
+ | undefined;
74
+ signer?:
75
+ | import("@smithy/types").RequestSigner
76
+ | ((
77
+ authScheme?: import("@smithy/types").AuthScheme | undefined
78
+ ) => Promise<import("@smithy/types").RequestSigner>)
79
+ | undefined;
80
+ signingEscapePath?: boolean | undefined;
81
+ systemClockOffset?: number | undefined;
82
+ signingRegion?: string | undefined;
83
+ signerConstructor?:
84
+ | (new (
85
+ options: import("@smithy/signature-v4").SignatureV4Init &
86
+ import("@smithy/signature-v4").SignatureV4CryptoInit
87
+ ) => import("@smithy/types").RequestSigner)
88
+ | undefined;
89
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
90
+ };
@@ -0,0 +1,81 @@
1
+ import { PcaConnectorAdClientConfig } from "./PcaConnectorAdClient";
2
+ export declare const getRuntimeConfig: (config: PcaConnectorAdClientConfig) => {
3
+ runtime: string;
4
+ sha256: import("@smithy/types").HashConstructor;
5
+ requestHandler:
6
+ | (import("@smithy/types").RequestHandler<
7
+ any,
8
+ any,
9
+ import("@smithy/types").HttpHandlerOptions
10
+ > &
11
+ import("@smithy/protocol-http").HttpHandler)
12
+ | import("@smithy/fetch-http-handler").FetchHttpHandler;
13
+ apiVersion: string;
14
+ urlParser: import("@smithy/types").UrlParser;
15
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
16
+ streamCollector: import("@smithy/types").StreamCollector;
17
+ base64Decoder: import("@smithy/types").Decoder;
18
+ base64Encoder: import("@smithy/types").Encoder;
19
+ utf8Decoder: import("@smithy/types").Decoder;
20
+ utf8Encoder: import("@smithy/types").Encoder;
21
+ disableHostPrefix: boolean;
22
+ serviceId: string;
23
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
24
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
25
+ region: string | import("@smithy/types").Provider<any>;
26
+ credentialDefaultProvider: (
27
+ input: any
28
+ ) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
29
+ defaultUserAgentProvider: import("@smithy/types").Provider<
30
+ import("@smithy/types").UserAgent
31
+ >;
32
+ maxAttempts: number | import("@smithy/types").Provider<number>;
33
+ retryMode: string | import("@smithy/types").Provider<string>;
34
+ logger: import("@smithy/types").Logger;
35
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
36
+ defaultsMode:
37
+ | import("@smithy/smithy-client").DefaultsMode
38
+ | import("@smithy/types").Provider<
39
+ import("@smithy/smithy-client").DefaultsMode
40
+ >;
41
+ endpoint?:
42
+ | string
43
+ | import("@smithy/types").Endpoint
44
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
45
+ | import("@smithy/types").EndpointV2
46
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
47
+ | undefined;
48
+ endpointProvider: (
49
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
50
+ context?: {
51
+ logger?: import("@smithy/types").Logger | undefined;
52
+ }
53
+ ) => import("@smithy/types").EndpointV2;
54
+ tls?: boolean | undefined;
55
+ retryStrategy?:
56
+ | import("@smithy/types").RetryStrategy
57
+ | import("@smithy/types").RetryStrategyV2
58
+ | undefined;
59
+ credentials?:
60
+ | import("@smithy/types").AwsCredentialIdentity
61
+ | import("@smithy/types").Provider<
62
+ import("@smithy/types").AwsCredentialIdentity
63
+ >
64
+ | undefined;
65
+ signer?:
66
+ | import("@smithy/types").RequestSigner
67
+ | ((
68
+ authScheme?: import("@smithy/types").AuthScheme | undefined
69
+ ) => Promise<import("@smithy/types").RequestSigner>)
70
+ | undefined;
71
+ signingEscapePath?: boolean | undefined;
72
+ systemClockOffset?: number | undefined;
73
+ signingRegion?: string | undefined;
74
+ signerConstructor?:
75
+ | (new (
76
+ options: import("@smithy/signature-v4").SignatureV4Init &
77
+ import("@smithy/signature-v4").SignatureV4CryptoInit
78
+ ) => import("@smithy/types").RequestSigner)
79
+ | undefined;
80
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
81
+ };
@@ -0,0 +1,19 @@
1
+ import { PcaConnectorAdClientConfig } from "./PcaConnectorAdClient";
2
+ export declare const getRuntimeConfig: (config: PcaConnectorAdClientConfig) => {
3
+ apiVersion: string;
4
+ base64Decoder: import("@smithy/types").Decoder;
5
+ base64Encoder: import("@smithy/types").Encoder;
6
+ disableHostPrefix: boolean;
7
+ endpointProvider: (
8
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
9
+ context?: {
10
+ logger?: import("@smithy/types").Logger | undefined;
11
+ }
12
+ ) => import("@smithy/types").EndpointV2;
13
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
14
+ logger: import("@smithy/types").Logger;
15
+ serviceId: string;
16
+ urlParser: import("@smithy/types").UrlParser;
17
+ utf8Decoder: import("@smithy/types").Decoder;
18
+ utf8Encoder: import("@smithy/types").Encoder;
19
+ };
@@ -0,0 +1,11 @@
1
+ import { PcaConnectorAdExtensionConfiguration } from "./extensionConfiguration";
2
+ export interface RuntimeExtension {
3
+ configure(clientConfiguration: PcaConnectorAdExtensionConfiguration): void;
4
+ }
5
+ export interface RuntimeExtensionsConfig {
6
+ extensions: RuntimeExtension[];
7
+ }
8
+ export declare const resolveRuntimeExtensions: (
9
+ runtimeConfig: any,
10
+ extensions: RuntimeExtension[]
11
+ ) => any;