@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,269 @@
1
+ import {
2
+ HostHeaderInputConfig,
3
+ HostHeaderResolvedConfig,
4
+ } from "@aws-sdk/middleware-host-header";
5
+ import {
6
+ AwsAuthInputConfig,
7
+ AwsAuthResolvedConfig,
8
+ } from "@aws-sdk/middleware-signing";
9
+ import {
10
+ UserAgentInputConfig,
11
+ UserAgentResolvedConfig,
12
+ } from "@aws-sdk/middleware-user-agent";
13
+ import { Credentials as __Credentials } from "@aws-sdk/types";
14
+ import {
15
+ RegionInputConfig,
16
+ RegionResolvedConfig,
17
+ } from "@smithy/config-resolver";
18
+ import {
19
+ EndpointInputConfig,
20
+ EndpointResolvedConfig,
21
+ } from "@smithy/middleware-endpoint";
22
+ import {
23
+ RetryInputConfig,
24
+ RetryResolvedConfig,
25
+ } from "@smithy/middleware-retry";
26
+ import { HttpHandler as __HttpHandler } from "@smithy/protocol-http";
27
+ import {
28
+ Client as __Client,
29
+ DefaultsMode as __DefaultsMode,
30
+ SmithyConfiguration as __SmithyConfiguration,
31
+ SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
32
+ } from "@smithy/smithy-client";
33
+ import {
34
+ BodyLengthCalculator as __BodyLengthCalculator,
35
+ CheckOptionalClientConfig as __CheckOptionalClientConfig,
36
+ ChecksumConstructor as __ChecksumConstructor,
37
+ Decoder as __Decoder,
38
+ Encoder as __Encoder,
39
+ HashConstructor as __HashConstructor,
40
+ HttpHandlerOptions as __HttpHandlerOptions,
41
+ Logger as __Logger,
42
+ Provider as __Provider,
43
+ Provider,
44
+ StreamCollector as __StreamCollector,
45
+ UrlParser as __UrlParser,
46
+ UserAgent as __UserAgent,
47
+ } from "@smithy/types";
48
+ import {
49
+ CreateConnectorCommandInput,
50
+ CreateConnectorCommandOutput,
51
+ } from "./commands/CreateConnectorCommand";
52
+ import {
53
+ CreateDirectoryRegistrationCommandInput,
54
+ CreateDirectoryRegistrationCommandOutput,
55
+ } from "./commands/CreateDirectoryRegistrationCommand";
56
+ import {
57
+ CreateServicePrincipalNameCommandInput,
58
+ CreateServicePrincipalNameCommandOutput,
59
+ } from "./commands/CreateServicePrincipalNameCommand";
60
+ import {
61
+ CreateTemplateCommandInput,
62
+ CreateTemplateCommandOutput,
63
+ } from "./commands/CreateTemplateCommand";
64
+ import {
65
+ CreateTemplateGroupAccessControlEntryCommandInput,
66
+ CreateTemplateGroupAccessControlEntryCommandOutput,
67
+ } from "./commands/CreateTemplateGroupAccessControlEntryCommand";
68
+ import {
69
+ DeleteConnectorCommandInput,
70
+ DeleteConnectorCommandOutput,
71
+ } from "./commands/DeleteConnectorCommand";
72
+ import {
73
+ DeleteDirectoryRegistrationCommandInput,
74
+ DeleteDirectoryRegistrationCommandOutput,
75
+ } from "./commands/DeleteDirectoryRegistrationCommand";
76
+ import {
77
+ DeleteServicePrincipalNameCommandInput,
78
+ DeleteServicePrincipalNameCommandOutput,
79
+ } from "./commands/DeleteServicePrincipalNameCommand";
80
+ import {
81
+ DeleteTemplateCommandInput,
82
+ DeleteTemplateCommandOutput,
83
+ } from "./commands/DeleteTemplateCommand";
84
+ import {
85
+ DeleteTemplateGroupAccessControlEntryCommandInput,
86
+ DeleteTemplateGroupAccessControlEntryCommandOutput,
87
+ } from "./commands/DeleteTemplateGroupAccessControlEntryCommand";
88
+ import {
89
+ GetConnectorCommandInput,
90
+ GetConnectorCommandOutput,
91
+ } from "./commands/GetConnectorCommand";
92
+ import {
93
+ GetDirectoryRegistrationCommandInput,
94
+ GetDirectoryRegistrationCommandOutput,
95
+ } from "./commands/GetDirectoryRegistrationCommand";
96
+ import {
97
+ GetServicePrincipalNameCommandInput,
98
+ GetServicePrincipalNameCommandOutput,
99
+ } from "./commands/GetServicePrincipalNameCommand";
100
+ import {
101
+ GetTemplateCommandInput,
102
+ GetTemplateCommandOutput,
103
+ } from "./commands/GetTemplateCommand";
104
+ import {
105
+ GetTemplateGroupAccessControlEntryCommandInput,
106
+ GetTemplateGroupAccessControlEntryCommandOutput,
107
+ } from "./commands/GetTemplateGroupAccessControlEntryCommand";
108
+ import {
109
+ ListConnectorsCommandInput,
110
+ ListConnectorsCommandOutput,
111
+ } from "./commands/ListConnectorsCommand";
112
+ import {
113
+ ListDirectoryRegistrationsCommandInput,
114
+ ListDirectoryRegistrationsCommandOutput,
115
+ } from "./commands/ListDirectoryRegistrationsCommand";
116
+ import {
117
+ ListServicePrincipalNamesCommandInput,
118
+ ListServicePrincipalNamesCommandOutput,
119
+ } from "./commands/ListServicePrincipalNamesCommand";
120
+ import {
121
+ ListTagsForResourceCommandInput,
122
+ ListTagsForResourceCommandOutput,
123
+ } from "./commands/ListTagsForResourceCommand";
124
+ import {
125
+ ListTemplateGroupAccessControlEntriesCommandInput,
126
+ ListTemplateGroupAccessControlEntriesCommandOutput,
127
+ } from "./commands/ListTemplateGroupAccessControlEntriesCommand";
128
+ import {
129
+ ListTemplatesCommandInput,
130
+ ListTemplatesCommandOutput,
131
+ } from "./commands/ListTemplatesCommand";
132
+ import {
133
+ TagResourceCommandInput,
134
+ TagResourceCommandOutput,
135
+ } from "./commands/TagResourceCommand";
136
+ import {
137
+ UntagResourceCommandInput,
138
+ UntagResourceCommandOutput,
139
+ } from "./commands/UntagResourceCommand";
140
+ import {
141
+ UpdateTemplateCommandInput,
142
+ UpdateTemplateCommandOutput,
143
+ } from "./commands/UpdateTemplateCommand";
144
+ import {
145
+ UpdateTemplateGroupAccessControlEntryCommandInput,
146
+ UpdateTemplateGroupAccessControlEntryCommandOutput,
147
+ } from "./commands/UpdateTemplateGroupAccessControlEntryCommand";
148
+ import {
149
+ ClientInputEndpointParameters,
150
+ ClientResolvedEndpointParameters,
151
+ EndpointParameters,
152
+ } from "./endpoint/EndpointParameters";
153
+ import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
154
+ export { __Client };
155
+ export type ServiceInputTypes =
156
+ | CreateConnectorCommandInput
157
+ | CreateDirectoryRegistrationCommandInput
158
+ | CreateServicePrincipalNameCommandInput
159
+ | CreateTemplateCommandInput
160
+ | CreateTemplateGroupAccessControlEntryCommandInput
161
+ | DeleteConnectorCommandInput
162
+ | DeleteDirectoryRegistrationCommandInput
163
+ | DeleteServicePrincipalNameCommandInput
164
+ | DeleteTemplateCommandInput
165
+ | DeleteTemplateGroupAccessControlEntryCommandInput
166
+ | GetConnectorCommandInput
167
+ | GetDirectoryRegistrationCommandInput
168
+ | GetServicePrincipalNameCommandInput
169
+ | GetTemplateCommandInput
170
+ | GetTemplateGroupAccessControlEntryCommandInput
171
+ | ListConnectorsCommandInput
172
+ | ListDirectoryRegistrationsCommandInput
173
+ | ListServicePrincipalNamesCommandInput
174
+ | ListTagsForResourceCommandInput
175
+ | ListTemplateGroupAccessControlEntriesCommandInput
176
+ | ListTemplatesCommandInput
177
+ | TagResourceCommandInput
178
+ | UntagResourceCommandInput
179
+ | UpdateTemplateCommandInput
180
+ | UpdateTemplateGroupAccessControlEntryCommandInput;
181
+ export type ServiceOutputTypes =
182
+ | CreateConnectorCommandOutput
183
+ | CreateDirectoryRegistrationCommandOutput
184
+ | CreateServicePrincipalNameCommandOutput
185
+ | CreateTemplateCommandOutput
186
+ | CreateTemplateGroupAccessControlEntryCommandOutput
187
+ | DeleteConnectorCommandOutput
188
+ | DeleteDirectoryRegistrationCommandOutput
189
+ | DeleteServicePrincipalNameCommandOutput
190
+ | DeleteTemplateCommandOutput
191
+ | DeleteTemplateGroupAccessControlEntryCommandOutput
192
+ | GetConnectorCommandOutput
193
+ | GetDirectoryRegistrationCommandOutput
194
+ | GetServicePrincipalNameCommandOutput
195
+ | GetTemplateCommandOutput
196
+ | GetTemplateGroupAccessControlEntryCommandOutput
197
+ | ListConnectorsCommandOutput
198
+ | ListDirectoryRegistrationsCommandOutput
199
+ | ListServicePrincipalNamesCommandOutput
200
+ | ListTagsForResourceCommandOutput
201
+ | ListTemplateGroupAccessControlEntriesCommandOutput
202
+ | ListTemplatesCommandOutput
203
+ | TagResourceCommandOutput
204
+ | UntagResourceCommandOutput
205
+ | UpdateTemplateCommandOutput
206
+ | UpdateTemplateGroupAccessControlEntryCommandOutput;
207
+ export interface ClientDefaults
208
+ extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
209
+ requestHandler?: __HttpHandler;
210
+ sha256?: __ChecksumConstructor | __HashConstructor;
211
+ urlParser?: __UrlParser;
212
+ bodyLengthChecker?: __BodyLengthCalculator;
213
+ streamCollector?: __StreamCollector;
214
+ base64Decoder?: __Decoder;
215
+ base64Encoder?: __Encoder;
216
+ utf8Decoder?: __Decoder;
217
+ utf8Encoder?: __Encoder;
218
+ runtime?: string;
219
+ disableHostPrefix?: boolean;
220
+ serviceId?: string;
221
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
222
+ useFipsEndpoint?: boolean | __Provider<boolean>;
223
+ region?: string | __Provider<string>;
224
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
225
+ defaultUserAgentProvider?: Provider<__UserAgent>;
226
+ maxAttempts?: number | __Provider<number>;
227
+ retryMode?: string | __Provider<string>;
228
+ logger?: __Logger;
229
+ extensions?: RuntimeExtension[];
230
+ defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
231
+ }
232
+ export type PcaConnectorAdClientConfigType = Partial<
233
+ __SmithyConfiguration<__HttpHandlerOptions>
234
+ > &
235
+ ClientDefaults &
236
+ RegionInputConfig &
237
+ EndpointInputConfig<EndpointParameters> &
238
+ RetryInputConfig &
239
+ HostHeaderInputConfig &
240
+ AwsAuthInputConfig &
241
+ UserAgentInputConfig &
242
+ ClientInputEndpointParameters;
243
+ export interface PcaConnectorAdClientConfig
244
+ extends PcaConnectorAdClientConfigType {}
245
+ export type PcaConnectorAdClientResolvedConfigType =
246
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
247
+ Required<ClientDefaults> &
248
+ RuntimeExtensionsConfig &
249
+ RegionResolvedConfig &
250
+ EndpointResolvedConfig<EndpointParameters> &
251
+ RetryResolvedConfig &
252
+ HostHeaderResolvedConfig &
253
+ AwsAuthResolvedConfig &
254
+ UserAgentResolvedConfig &
255
+ ClientResolvedEndpointParameters;
256
+ export interface PcaConnectorAdClientResolvedConfig
257
+ extends PcaConnectorAdClientResolvedConfigType {}
258
+ export declare class PcaConnectorAdClient extends __Client<
259
+ __HttpHandlerOptions,
260
+ ServiceInputTypes,
261
+ ServiceOutputTypes,
262
+ PcaConnectorAdClientResolvedConfig
263
+ > {
264
+ readonly config: PcaConnectorAdClientResolvedConfig;
265
+ constructor(
266
+ ...[configuration]: __CheckOptionalClientConfig<PcaConnectorAdClientConfig>
267
+ );
268
+ destroy(): void;
269
+ }
@@ -0,0 +1,38 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ CreateConnectorRequest,
11
+ CreateConnectorResponse,
12
+ } from "../models/models_0";
13
+ import {
14
+ PcaConnectorAdClientResolvedConfig,
15
+ ServiceInputTypes,
16
+ ServiceOutputTypes,
17
+ } from "../PcaConnectorAdClient";
18
+ export { __MetadataBearer, $Command };
19
+ export interface CreateConnectorCommandInput extends CreateConnectorRequest {}
20
+ export interface CreateConnectorCommandOutput
21
+ extends CreateConnectorResponse,
22
+ __MetadataBearer {}
23
+ export declare class CreateConnectorCommand extends $Command<
24
+ CreateConnectorCommandInput,
25
+ CreateConnectorCommandOutput,
26
+ PcaConnectorAdClientResolvedConfig
27
+ > {
28
+ readonly input: CreateConnectorCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: CreateConnectorCommandInput);
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: PcaConnectorAdClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<CreateConnectorCommandInput, CreateConnectorCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ CreateDirectoryRegistrationRequest,
11
+ CreateDirectoryRegistrationResponse,
12
+ } from "../models/models_0";
13
+ import {
14
+ PcaConnectorAdClientResolvedConfig,
15
+ ServiceInputTypes,
16
+ ServiceOutputTypes,
17
+ } from "../PcaConnectorAdClient";
18
+ export { __MetadataBearer, $Command };
19
+ export interface CreateDirectoryRegistrationCommandInput
20
+ extends CreateDirectoryRegistrationRequest {}
21
+ export interface CreateDirectoryRegistrationCommandOutput
22
+ extends CreateDirectoryRegistrationResponse,
23
+ __MetadataBearer {}
24
+ export declare class CreateDirectoryRegistrationCommand extends $Command<
25
+ CreateDirectoryRegistrationCommandInput,
26
+ CreateDirectoryRegistrationCommandOutput,
27
+ PcaConnectorAdClientResolvedConfig
28
+ > {
29
+ readonly input: CreateDirectoryRegistrationCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: CreateDirectoryRegistrationCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: PcaConnectorAdClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ CreateDirectoryRegistrationCommandInput,
38
+ CreateDirectoryRegistrationCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -0,0 +1,38 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import { CreateServicePrincipalNameRequest } from "../models/models_0";
10
+ import {
11
+ PcaConnectorAdClientResolvedConfig,
12
+ ServiceInputTypes,
13
+ ServiceOutputTypes,
14
+ } from "../PcaConnectorAdClient";
15
+ export { __MetadataBearer, $Command };
16
+ export interface CreateServicePrincipalNameCommandInput
17
+ extends CreateServicePrincipalNameRequest {}
18
+ export interface CreateServicePrincipalNameCommandOutput
19
+ extends __MetadataBearer {}
20
+ export declare class CreateServicePrincipalNameCommand extends $Command<
21
+ CreateServicePrincipalNameCommandInput,
22
+ CreateServicePrincipalNameCommandOutput,
23
+ PcaConnectorAdClientResolvedConfig
24
+ > {
25
+ readonly input: CreateServicePrincipalNameCommandInput;
26
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
+ constructor(input: CreateServicePrincipalNameCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: PcaConnectorAdClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<
33
+ CreateServicePrincipalNameCommandInput,
34
+ CreateServicePrincipalNameCommandOutput
35
+ >;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -0,0 +1,38 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ CreateTemplateRequest,
11
+ CreateTemplateResponse,
12
+ } from "../models/models_0";
13
+ import {
14
+ PcaConnectorAdClientResolvedConfig,
15
+ ServiceInputTypes,
16
+ ServiceOutputTypes,
17
+ } from "../PcaConnectorAdClient";
18
+ export { __MetadataBearer, $Command };
19
+ export interface CreateTemplateCommandInput extends CreateTemplateRequest {}
20
+ export interface CreateTemplateCommandOutput
21
+ extends CreateTemplateResponse,
22
+ __MetadataBearer {}
23
+ export declare class CreateTemplateCommand extends $Command<
24
+ CreateTemplateCommandInput,
25
+ CreateTemplateCommandOutput,
26
+ PcaConnectorAdClientResolvedConfig
27
+ > {
28
+ readonly input: CreateTemplateCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: CreateTemplateCommandInput);
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: PcaConnectorAdClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<CreateTemplateCommandInput, CreateTemplateCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -0,0 +1,38 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import { CreateTemplateGroupAccessControlEntryRequest } from "../models/models_0";
10
+ import {
11
+ PcaConnectorAdClientResolvedConfig,
12
+ ServiceInputTypes,
13
+ ServiceOutputTypes,
14
+ } from "../PcaConnectorAdClient";
15
+ export { __MetadataBearer, $Command };
16
+ export interface CreateTemplateGroupAccessControlEntryCommandInput
17
+ extends CreateTemplateGroupAccessControlEntryRequest {}
18
+ export interface CreateTemplateGroupAccessControlEntryCommandOutput
19
+ extends __MetadataBearer {}
20
+ export declare class CreateTemplateGroupAccessControlEntryCommand extends $Command<
21
+ CreateTemplateGroupAccessControlEntryCommandInput,
22
+ CreateTemplateGroupAccessControlEntryCommandOutput,
23
+ PcaConnectorAdClientResolvedConfig
24
+ > {
25
+ readonly input: CreateTemplateGroupAccessControlEntryCommandInput;
26
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
+ constructor(input: CreateTemplateGroupAccessControlEntryCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: PcaConnectorAdClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<
33
+ CreateTemplateGroupAccessControlEntryCommandInput,
34
+ CreateTemplateGroupAccessControlEntryCommandOutput
35
+ >;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -0,0 +1,33 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import { DeleteConnectorRequest } from "../models/models_0";
10
+ import {
11
+ PcaConnectorAdClientResolvedConfig,
12
+ ServiceInputTypes,
13
+ ServiceOutputTypes,
14
+ } from "../PcaConnectorAdClient";
15
+ export { __MetadataBearer, $Command };
16
+ export interface DeleteConnectorCommandInput extends DeleteConnectorRequest {}
17
+ export interface DeleteConnectorCommandOutput extends __MetadataBearer {}
18
+ export declare class DeleteConnectorCommand extends $Command<
19
+ DeleteConnectorCommandInput,
20
+ DeleteConnectorCommandOutput,
21
+ PcaConnectorAdClientResolvedConfig
22
+ > {
23
+ readonly input: DeleteConnectorCommandInput;
24
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
25
+ constructor(input: DeleteConnectorCommandInput);
26
+ resolveMiddleware(
27
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
28
+ configuration: PcaConnectorAdClientResolvedConfig,
29
+ options?: __HttpHandlerOptions
30
+ ): Handler<DeleteConnectorCommandInput, DeleteConnectorCommandOutput>;
31
+ private serialize;
32
+ private deserialize;
33
+ }
@@ -0,0 +1,38 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import { DeleteDirectoryRegistrationRequest } from "../models/models_0";
10
+ import {
11
+ PcaConnectorAdClientResolvedConfig,
12
+ ServiceInputTypes,
13
+ ServiceOutputTypes,
14
+ } from "../PcaConnectorAdClient";
15
+ export { __MetadataBearer, $Command };
16
+ export interface DeleteDirectoryRegistrationCommandInput
17
+ extends DeleteDirectoryRegistrationRequest {}
18
+ export interface DeleteDirectoryRegistrationCommandOutput
19
+ extends __MetadataBearer {}
20
+ export declare class DeleteDirectoryRegistrationCommand extends $Command<
21
+ DeleteDirectoryRegistrationCommandInput,
22
+ DeleteDirectoryRegistrationCommandOutput,
23
+ PcaConnectorAdClientResolvedConfig
24
+ > {
25
+ readonly input: DeleteDirectoryRegistrationCommandInput;
26
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
+ constructor(input: DeleteDirectoryRegistrationCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: PcaConnectorAdClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<
33
+ DeleteDirectoryRegistrationCommandInput,
34
+ DeleteDirectoryRegistrationCommandOutput
35
+ >;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -0,0 +1,38 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import { DeleteServicePrincipalNameRequest } from "../models/models_0";
10
+ import {
11
+ PcaConnectorAdClientResolvedConfig,
12
+ ServiceInputTypes,
13
+ ServiceOutputTypes,
14
+ } from "../PcaConnectorAdClient";
15
+ export { __MetadataBearer, $Command };
16
+ export interface DeleteServicePrincipalNameCommandInput
17
+ extends DeleteServicePrincipalNameRequest {}
18
+ export interface DeleteServicePrincipalNameCommandOutput
19
+ extends __MetadataBearer {}
20
+ export declare class DeleteServicePrincipalNameCommand extends $Command<
21
+ DeleteServicePrincipalNameCommandInput,
22
+ DeleteServicePrincipalNameCommandOutput,
23
+ PcaConnectorAdClientResolvedConfig
24
+ > {
25
+ readonly input: DeleteServicePrincipalNameCommandInput;
26
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
+ constructor(input: DeleteServicePrincipalNameCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: PcaConnectorAdClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<
33
+ DeleteServicePrincipalNameCommandInput,
34
+ DeleteServicePrincipalNameCommandOutput
35
+ >;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -0,0 +1,33 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import { DeleteTemplateRequest } from "../models/models_0";
10
+ import {
11
+ PcaConnectorAdClientResolvedConfig,
12
+ ServiceInputTypes,
13
+ ServiceOutputTypes,
14
+ } from "../PcaConnectorAdClient";
15
+ export { __MetadataBearer, $Command };
16
+ export interface DeleteTemplateCommandInput extends DeleteTemplateRequest {}
17
+ export interface DeleteTemplateCommandOutput extends __MetadataBearer {}
18
+ export declare class DeleteTemplateCommand extends $Command<
19
+ DeleteTemplateCommandInput,
20
+ DeleteTemplateCommandOutput,
21
+ PcaConnectorAdClientResolvedConfig
22
+ > {
23
+ readonly input: DeleteTemplateCommandInput;
24
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
25
+ constructor(input: DeleteTemplateCommandInput);
26
+ resolveMiddleware(
27
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
28
+ configuration: PcaConnectorAdClientResolvedConfig,
29
+ options?: __HttpHandlerOptions
30
+ ): Handler<DeleteTemplateCommandInput, DeleteTemplateCommandOutput>;
31
+ private serialize;
32
+ private deserialize;
33
+ }
@@ -0,0 +1,38 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import { DeleteTemplateGroupAccessControlEntryRequest } from "../models/models_0";
10
+ import {
11
+ PcaConnectorAdClientResolvedConfig,
12
+ ServiceInputTypes,
13
+ ServiceOutputTypes,
14
+ } from "../PcaConnectorAdClient";
15
+ export { __MetadataBearer, $Command };
16
+ export interface DeleteTemplateGroupAccessControlEntryCommandInput
17
+ extends DeleteTemplateGroupAccessControlEntryRequest {}
18
+ export interface DeleteTemplateGroupAccessControlEntryCommandOutput
19
+ extends __MetadataBearer {}
20
+ export declare class DeleteTemplateGroupAccessControlEntryCommand extends $Command<
21
+ DeleteTemplateGroupAccessControlEntryCommandInput,
22
+ DeleteTemplateGroupAccessControlEntryCommandOutput,
23
+ PcaConnectorAdClientResolvedConfig
24
+ > {
25
+ readonly input: DeleteTemplateGroupAccessControlEntryCommandInput;
26
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
+ constructor(input: DeleteTemplateGroupAccessControlEntryCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: PcaConnectorAdClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<
33
+ DeleteTemplateGroupAccessControlEntryCommandInput,
34
+ DeleteTemplateGroupAccessControlEntryCommandOutput
35
+ >;
36
+ private serialize;
37
+ private deserialize;
38
+ }