@aws-sdk/client-pca-connector-ad 3.928.0 → 3.929.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +1196 -1118
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/PcaConnectorAdClient.js +2 -0
- package/dist-es/commands/CreateConnectorCommand.js +3 -9
- package/dist-es/commands/CreateDirectoryRegistrationCommand.js +3 -9
- package/dist-es/commands/CreateServicePrincipalNameCommand.js +3 -9
- package/dist-es/commands/CreateTemplateCommand.js +3 -9
- package/dist-es/commands/CreateTemplateGroupAccessControlEntryCommand.js +3 -9
- package/dist-es/commands/DeleteConnectorCommand.js +3 -9
- package/dist-es/commands/DeleteDirectoryRegistrationCommand.js +3 -9
- package/dist-es/commands/DeleteServicePrincipalNameCommand.js +3 -9
- package/dist-es/commands/DeleteTemplateCommand.js +3 -9
- package/dist-es/commands/DeleteTemplateGroupAccessControlEntryCommand.js +3 -9
- package/dist-es/commands/GetConnectorCommand.js +3 -9
- package/dist-es/commands/GetDirectoryRegistrationCommand.js +3 -9
- package/dist-es/commands/GetServicePrincipalNameCommand.js +3 -9
- package/dist-es/commands/GetTemplateCommand.js +3 -9
- package/dist-es/commands/GetTemplateGroupAccessControlEntryCommand.js +3 -9
- package/dist-es/commands/ListConnectorsCommand.js +3 -9
- package/dist-es/commands/ListDirectoryRegistrationsCommand.js +3 -9
- package/dist-es/commands/ListServicePrincipalNamesCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/ListTemplateGroupAccessControlEntriesCommand.js +3 -9
- package/dist-es/commands/ListTemplatesCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateTemplateCommand.js +3 -9
- package/dist-es/commands/UpdateTemplateGroupAccessControlEntryCommand.js +3 -9
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +1132 -0
- package/dist-types/PcaConnectorAdClient.d.ts +10 -1
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +128 -0
- package/dist-types/ts3.4/PcaConnectorAdClient.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +133 -0
- package/package.json +2 -3
- package/dist-es/protocols/Aws_restJson1.js +0 -927
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -227
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -305
|
@@ -5,7 +5,7 @@ import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/middleware-
|
|
|
5
5
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry";
|
|
6
6
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client";
|
|
8
|
-
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
8
|
+
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, ClientProtocol, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, HttpRequest, HttpResponse, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
9
9
|
import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
10
10
|
import { CreateConnectorCommandInput, CreateConnectorCommandOutput } from "./commands/CreateConnectorCommand";
|
|
11
11
|
import { CreateDirectoryRegistrationCommandInput, CreateDirectoryRegistrationCommandOutput } from "./commands/CreateDirectoryRegistrationCommand";
|
|
@@ -166,6 +166,15 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
166
166
|
* Optional extensions
|
|
167
167
|
*/
|
|
168
168
|
extensions?: RuntimeExtension[];
|
|
169
|
+
/**
|
|
170
|
+
* The protocol controlling the message type (e.g. HTTP) and format (e.g. JSON)
|
|
171
|
+
* may be overridden. A default will always be set by the client.
|
|
172
|
+
* Available options depend on the service's supported protocols and will not be validated by
|
|
173
|
+
* the client.
|
|
174
|
+
* @alpha
|
|
175
|
+
*
|
|
176
|
+
*/
|
|
177
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
169
178
|
/**
|
|
170
179
|
* The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
171
180
|
*/
|
|
@@ -29,6 +29,7 @@ export declare const getRuntimeConfig: (config: PcaConnectorAdClientConfig) => {
|
|
|
29
29
|
profile?: string;
|
|
30
30
|
logger: import("@smithy/types").Logger;
|
|
31
31
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
32
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
32
33
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
33
34
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
34
35
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
@@ -31,6 +31,7 @@ export declare const getRuntimeConfig: (config: PcaConnectorAdClientConfig) => {
|
|
|
31
31
|
profile?: string;
|
|
32
32
|
logger: import("@smithy/types").Logger;
|
|
33
33
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
34
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
34
35
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
35
36
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
36
37
|
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
@@ -27,6 +27,7 @@ export declare const getRuntimeConfig: (config: PcaConnectorAdClientConfig) => {
|
|
|
27
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
29
29
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
30
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
30
31
|
defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
|
|
31
32
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
32
33
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
@@ -14,6 +14,7 @@ export declare const getRuntimeConfig: (config: PcaConnectorAdClientConfig) => {
|
|
|
14
14
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").PcaConnectorAdHttpAuthSchemeProvider;
|
|
15
15
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
16
16
|
logger: import("@smithy/types").Logger;
|
|
17
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
17
18
|
serviceId: string;
|
|
18
19
|
urlParser: import("@smithy/types").UrlParser;
|
|
19
20
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types";
|
|
2
|
+
export declare var AccessControlEntry: StaticStructureSchema;
|
|
3
|
+
export declare var AccessControlEntrySummary: StaticStructureSchema;
|
|
4
|
+
export declare var AccessDeniedException: StaticErrorSchema;
|
|
5
|
+
export declare var AccessRights: StaticStructureSchema;
|
|
6
|
+
export declare var ApplicationPolicies: StaticStructureSchema;
|
|
7
|
+
export declare var CertificateValidity: StaticStructureSchema;
|
|
8
|
+
export declare var ConflictException: StaticErrorSchema;
|
|
9
|
+
export declare var Connector: StaticStructureSchema;
|
|
10
|
+
export declare var ConnectorSummary: StaticStructureSchema;
|
|
11
|
+
export declare var CreateConnectorRequest: StaticStructureSchema;
|
|
12
|
+
export declare var CreateConnectorResponse: StaticStructureSchema;
|
|
13
|
+
export declare var CreateDirectoryRegistrationRequest: StaticStructureSchema;
|
|
14
|
+
export declare var CreateDirectoryRegistrationResponse: StaticStructureSchema;
|
|
15
|
+
export declare var CreateServicePrincipalNameRequest: StaticStructureSchema;
|
|
16
|
+
export declare var CreateTemplateGroupAccessControlEntryRequest: StaticStructureSchema;
|
|
17
|
+
export declare var CreateTemplateRequest: StaticStructureSchema;
|
|
18
|
+
export declare var CreateTemplateResponse: StaticStructureSchema;
|
|
19
|
+
export declare var DeleteConnectorRequest: StaticStructureSchema;
|
|
20
|
+
export declare var DeleteDirectoryRegistrationRequest: StaticStructureSchema;
|
|
21
|
+
export declare var DeleteServicePrincipalNameRequest: StaticStructureSchema;
|
|
22
|
+
export declare var DeleteTemplateGroupAccessControlEntryRequest: StaticStructureSchema;
|
|
23
|
+
export declare var DeleteTemplateRequest: StaticStructureSchema;
|
|
24
|
+
export declare var DirectoryRegistration: StaticStructureSchema;
|
|
25
|
+
export declare var DirectoryRegistrationSummary: StaticStructureSchema;
|
|
26
|
+
export declare var EnrollmentFlagsV2: StaticStructureSchema;
|
|
27
|
+
export declare var EnrollmentFlagsV3: StaticStructureSchema;
|
|
28
|
+
export declare var EnrollmentFlagsV4: StaticStructureSchema;
|
|
29
|
+
export declare var ExtensionsV2: StaticStructureSchema;
|
|
30
|
+
export declare var ExtensionsV3: StaticStructureSchema;
|
|
31
|
+
export declare var ExtensionsV4: StaticStructureSchema;
|
|
32
|
+
export declare var GeneralFlagsV2: StaticStructureSchema;
|
|
33
|
+
export declare var GeneralFlagsV3: StaticStructureSchema;
|
|
34
|
+
export declare var GeneralFlagsV4: StaticStructureSchema;
|
|
35
|
+
export declare var GetConnectorRequest: StaticStructureSchema;
|
|
36
|
+
export declare var GetConnectorResponse: StaticStructureSchema;
|
|
37
|
+
export declare var GetDirectoryRegistrationRequest: StaticStructureSchema;
|
|
38
|
+
export declare var GetDirectoryRegistrationResponse: StaticStructureSchema;
|
|
39
|
+
export declare var GetServicePrincipalNameRequest: StaticStructureSchema;
|
|
40
|
+
export declare var GetServicePrincipalNameResponse: StaticStructureSchema;
|
|
41
|
+
export declare var GetTemplateGroupAccessControlEntryRequest: StaticStructureSchema;
|
|
42
|
+
export declare var GetTemplateGroupAccessControlEntryResponse: StaticStructureSchema;
|
|
43
|
+
export declare var GetTemplateRequest: StaticStructureSchema;
|
|
44
|
+
export declare var GetTemplateResponse: StaticStructureSchema;
|
|
45
|
+
export declare var InternalServerException: StaticErrorSchema;
|
|
46
|
+
export declare var KeyUsage: StaticStructureSchema;
|
|
47
|
+
export declare var KeyUsageFlags: StaticStructureSchema;
|
|
48
|
+
export declare var KeyUsagePropertyFlags: StaticStructureSchema;
|
|
49
|
+
export declare var ListConnectorsRequest: StaticStructureSchema;
|
|
50
|
+
export declare var ListConnectorsResponse: StaticStructureSchema;
|
|
51
|
+
export declare var ListDirectoryRegistrationsRequest: StaticStructureSchema;
|
|
52
|
+
export declare var ListDirectoryRegistrationsResponse: StaticStructureSchema;
|
|
53
|
+
export declare var ListServicePrincipalNamesRequest: StaticStructureSchema;
|
|
54
|
+
export declare var ListServicePrincipalNamesResponse: StaticStructureSchema;
|
|
55
|
+
export declare var ListTagsForResourceRequest: StaticStructureSchema;
|
|
56
|
+
export declare var ListTagsForResourceResponse: StaticStructureSchema;
|
|
57
|
+
export declare var ListTemplateGroupAccessControlEntriesRequest: StaticStructureSchema;
|
|
58
|
+
export declare var ListTemplateGroupAccessControlEntriesResponse: StaticStructureSchema;
|
|
59
|
+
export declare var ListTemplatesRequest: StaticStructureSchema;
|
|
60
|
+
export declare var ListTemplatesResponse: StaticStructureSchema;
|
|
61
|
+
export declare var PrivateKeyAttributesV2: StaticStructureSchema;
|
|
62
|
+
export declare var PrivateKeyAttributesV3: StaticStructureSchema;
|
|
63
|
+
export declare var PrivateKeyAttributesV4: StaticStructureSchema;
|
|
64
|
+
export declare var PrivateKeyFlagsV2: StaticStructureSchema;
|
|
65
|
+
export declare var PrivateKeyFlagsV3: StaticStructureSchema;
|
|
66
|
+
export declare var PrivateKeyFlagsV4: StaticStructureSchema;
|
|
67
|
+
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
68
|
+
export declare var ServicePrincipalName: StaticStructureSchema;
|
|
69
|
+
export declare var ServicePrincipalNameSummary: StaticStructureSchema;
|
|
70
|
+
export declare var ServiceQuotaExceededException: StaticErrorSchema;
|
|
71
|
+
export declare var SubjectNameFlagsV2: StaticStructureSchema;
|
|
72
|
+
export declare var SubjectNameFlagsV3: StaticStructureSchema;
|
|
73
|
+
export declare var SubjectNameFlagsV4: StaticStructureSchema;
|
|
74
|
+
export declare var TagResourceRequest: StaticStructureSchema;
|
|
75
|
+
export declare var Template: StaticStructureSchema;
|
|
76
|
+
export declare var TemplateRevision: StaticStructureSchema;
|
|
77
|
+
export declare var TemplateSummary: StaticStructureSchema;
|
|
78
|
+
export declare var TemplateV2: StaticStructureSchema;
|
|
79
|
+
export declare var TemplateV3: StaticStructureSchema;
|
|
80
|
+
export declare var TemplateV4: StaticStructureSchema;
|
|
81
|
+
export declare var ThrottlingException: StaticErrorSchema;
|
|
82
|
+
export declare var UntagResourceRequest: StaticStructureSchema;
|
|
83
|
+
export declare var UpdateTemplateGroupAccessControlEntryRequest: StaticStructureSchema;
|
|
84
|
+
export declare var UpdateTemplateRequest: StaticStructureSchema;
|
|
85
|
+
export declare var ValidationException: StaticErrorSchema;
|
|
86
|
+
export declare var ValidityPeriod: StaticStructureSchema;
|
|
87
|
+
export declare var VpcInformation: StaticStructureSchema;
|
|
88
|
+
export declare var __Unit: "unit";
|
|
89
|
+
export declare var PcaConnectorAdServiceException: StaticErrorSchema;
|
|
90
|
+
export declare var AccessControlEntryList: StaticListSchema;
|
|
91
|
+
export declare var ApplicationPolicyList: StaticListSchema;
|
|
92
|
+
export declare var ConnectorList: StaticListSchema;
|
|
93
|
+
export declare var CryptoProvidersList: number;
|
|
94
|
+
export declare var DirectoryRegistrationList: StaticListSchema;
|
|
95
|
+
export declare var SecurityGroupIdList: number;
|
|
96
|
+
export declare var ServicePrincipalNameList: StaticListSchema;
|
|
97
|
+
export declare var TagKeyList: number;
|
|
98
|
+
export declare var TemplateList: StaticListSchema;
|
|
99
|
+
export declare var TemplateNameList: number;
|
|
100
|
+
export declare var Tags: number;
|
|
101
|
+
export declare var ApplicationPolicy: StaticStructureSchema;
|
|
102
|
+
export declare var KeyUsageProperty: StaticStructureSchema;
|
|
103
|
+
export declare var TemplateDefinition: StaticStructureSchema;
|
|
104
|
+
export declare var CreateConnector: StaticOperationSchema;
|
|
105
|
+
export declare var CreateDirectoryRegistration: StaticOperationSchema;
|
|
106
|
+
export declare var CreateServicePrincipalName: StaticOperationSchema;
|
|
107
|
+
export declare var CreateTemplate: StaticOperationSchema;
|
|
108
|
+
export declare var CreateTemplateGroupAccessControlEntry: StaticOperationSchema;
|
|
109
|
+
export declare var DeleteConnector: StaticOperationSchema;
|
|
110
|
+
export declare var DeleteDirectoryRegistration: StaticOperationSchema;
|
|
111
|
+
export declare var DeleteServicePrincipalName: StaticOperationSchema;
|
|
112
|
+
export declare var DeleteTemplate: StaticOperationSchema;
|
|
113
|
+
export declare var DeleteTemplateGroupAccessControlEntry: StaticOperationSchema;
|
|
114
|
+
export declare var GetConnector: StaticOperationSchema;
|
|
115
|
+
export declare var GetDirectoryRegistration: StaticOperationSchema;
|
|
116
|
+
export declare var GetServicePrincipalName: StaticOperationSchema;
|
|
117
|
+
export declare var GetTemplate: StaticOperationSchema;
|
|
118
|
+
export declare var GetTemplateGroupAccessControlEntry: StaticOperationSchema;
|
|
119
|
+
export declare var ListConnectors: StaticOperationSchema;
|
|
120
|
+
export declare var ListDirectoryRegistrations: StaticOperationSchema;
|
|
121
|
+
export declare var ListServicePrincipalNames: StaticOperationSchema;
|
|
122
|
+
export declare var ListTagsForResource: StaticOperationSchema;
|
|
123
|
+
export declare var ListTemplateGroupAccessControlEntries: StaticOperationSchema;
|
|
124
|
+
export declare var ListTemplates: StaticOperationSchema;
|
|
125
|
+
export declare var TagResource: StaticOperationSchema;
|
|
126
|
+
export declare var UntagResource: StaticOperationSchema;
|
|
127
|
+
export declare var UpdateTemplate: StaticOperationSchema;
|
|
128
|
+
export declare var UpdateTemplateGroupAccessControlEntry: StaticOperationSchema;
|
|
@@ -30,10 +30,13 @@ import {
|
|
|
30
30
|
BodyLengthCalculator as __BodyLengthCalculator,
|
|
31
31
|
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
32
32
|
ChecksumConstructor as __ChecksumConstructor,
|
|
33
|
+
ClientProtocol,
|
|
33
34
|
Decoder as __Decoder,
|
|
34
35
|
Encoder as __Encoder,
|
|
35
36
|
HashConstructor as __HashConstructor,
|
|
36
37
|
HttpHandlerOptions as __HttpHandlerOptions,
|
|
38
|
+
HttpRequest,
|
|
39
|
+
HttpResponse,
|
|
37
40
|
Logger as __Logger,
|
|
38
41
|
Provider as __Provider,
|
|
39
42
|
Provider,
|
|
@@ -228,6 +231,7 @@ export interface ClientDefaults
|
|
|
228
231
|
retryMode?: string | __Provider<string>;
|
|
229
232
|
logger?: __Logger;
|
|
230
233
|
extensions?: RuntimeExtension[];
|
|
234
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
231
235
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
232
236
|
}
|
|
233
237
|
export type PcaConnectorAdClientConfigType = Partial<
|
|
@@ -38,6 +38,10 @@ export declare const getRuntimeConfig: (config: PcaConnectorAdClientConfig) => {
|
|
|
38
38
|
profile?: string;
|
|
39
39
|
logger: import("@smithy/types").Logger;
|
|
40
40
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
41
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
42
|
+
import("@smithy/types").HttpRequest,
|
|
43
|
+
import("@smithy/types").HttpResponse
|
|
44
|
+
>;
|
|
41
45
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
42
46
|
userAgentAppId?:
|
|
43
47
|
| string
|
|
@@ -38,6 +38,10 @@ export declare const getRuntimeConfig: (config: PcaConnectorAdClientConfig) => {
|
|
|
38
38
|
profile?: string;
|
|
39
39
|
logger: import("@smithy/types").Logger;
|
|
40
40
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
41
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
42
|
+
import("@smithy/types").HttpRequest,
|
|
43
|
+
import("@smithy/types").HttpResponse
|
|
44
|
+
>;
|
|
41
45
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
42
46
|
retryStrategy?:
|
|
43
47
|
| import("@smithy/types").RetryStrategy
|
|
@@ -37,6 +37,10 @@ export declare const getRuntimeConfig: (config: PcaConnectorAdClientConfig) => {
|
|
|
37
37
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
38
38
|
logger: import("@smithy/types").Logger;
|
|
39
39
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
40
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
41
|
+
import("@smithy/types").HttpRequest,
|
|
42
|
+
import("@smithy/types").HttpResponse
|
|
43
|
+
>;
|
|
40
44
|
defaultsMode:
|
|
41
45
|
| import("@smithy/smithy-client").DefaultsMode
|
|
42
46
|
| import("@smithy/types").Provider<
|
|
@@ -14,6 +14,10 @@ export declare const getRuntimeConfig: (config: PcaConnectorAdClientConfig) => {
|
|
|
14
14
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").PcaConnectorAdHttpAuthSchemeProvider;
|
|
15
15
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
16
16
|
logger: import("@smithy/types").Logger;
|
|
17
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
18
|
+
import("@smithy/types").HttpRequest,
|
|
19
|
+
import("@smithy/types").HttpResponse
|
|
20
|
+
>;
|
|
17
21
|
serviceId: string;
|
|
18
22
|
urlParser: import("@smithy/types").UrlParser;
|
|
19
23
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
import {
|
|
2
|
+
StaticErrorSchema,
|
|
3
|
+
StaticListSchema,
|
|
4
|
+
StaticOperationSchema,
|
|
5
|
+
StaticStructureSchema,
|
|
6
|
+
} from "@smithy/types";
|
|
7
|
+
export declare var AccessControlEntry: StaticStructureSchema;
|
|
8
|
+
export declare var AccessControlEntrySummary: StaticStructureSchema;
|
|
9
|
+
export declare var AccessDeniedException: StaticErrorSchema;
|
|
10
|
+
export declare var AccessRights: StaticStructureSchema;
|
|
11
|
+
export declare var ApplicationPolicies: StaticStructureSchema;
|
|
12
|
+
export declare var CertificateValidity: StaticStructureSchema;
|
|
13
|
+
export declare var ConflictException: StaticErrorSchema;
|
|
14
|
+
export declare var Connector: StaticStructureSchema;
|
|
15
|
+
export declare var ConnectorSummary: StaticStructureSchema;
|
|
16
|
+
export declare var CreateConnectorRequest: StaticStructureSchema;
|
|
17
|
+
export declare var CreateConnectorResponse: StaticStructureSchema;
|
|
18
|
+
export declare var CreateDirectoryRegistrationRequest: StaticStructureSchema;
|
|
19
|
+
export declare var CreateDirectoryRegistrationResponse: StaticStructureSchema;
|
|
20
|
+
export declare var CreateServicePrincipalNameRequest: StaticStructureSchema;
|
|
21
|
+
export declare var CreateTemplateGroupAccessControlEntryRequest: StaticStructureSchema;
|
|
22
|
+
export declare var CreateTemplateRequest: StaticStructureSchema;
|
|
23
|
+
export declare var CreateTemplateResponse: StaticStructureSchema;
|
|
24
|
+
export declare var DeleteConnectorRequest: StaticStructureSchema;
|
|
25
|
+
export declare var DeleteDirectoryRegistrationRequest: StaticStructureSchema;
|
|
26
|
+
export declare var DeleteServicePrincipalNameRequest: StaticStructureSchema;
|
|
27
|
+
export declare var DeleteTemplateGroupAccessControlEntryRequest: StaticStructureSchema;
|
|
28
|
+
export declare var DeleteTemplateRequest: StaticStructureSchema;
|
|
29
|
+
export declare var DirectoryRegistration: StaticStructureSchema;
|
|
30
|
+
export declare var DirectoryRegistrationSummary: StaticStructureSchema;
|
|
31
|
+
export declare var EnrollmentFlagsV2: StaticStructureSchema;
|
|
32
|
+
export declare var EnrollmentFlagsV3: StaticStructureSchema;
|
|
33
|
+
export declare var EnrollmentFlagsV4: StaticStructureSchema;
|
|
34
|
+
export declare var ExtensionsV2: StaticStructureSchema;
|
|
35
|
+
export declare var ExtensionsV3: StaticStructureSchema;
|
|
36
|
+
export declare var ExtensionsV4: StaticStructureSchema;
|
|
37
|
+
export declare var GeneralFlagsV2: StaticStructureSchema;
|
|
38
|
+
export declare var GeneralFlagsV3: StaticStructureSchema;
|
|
39
|
+
export declare var GeneralFlagsV4: StaticStructureSchema;
|
|
40
|
+
export declare var GetConnectorRequest: StaticStructureSchema;
|
|
41
|
+
export declare var GetConnectorResponse: StaticStructureSchema;
|
|
42
|
+
export declare var GetDirectoryRegistrationRequest: StaticStructureSchema;
|
|
43
|
+
export declare var GetDirectoryRegistrationResponse: StaticStructureSchema;
|
|
44
|
+
export declare var GetServicePrincipalNameRequest: StaticStructureSchema;
|
|
45
|
+
export declare var GetServicePrincipalNameResponse: StaticStructureSchema;
|
|
46
|
+
export declare var GetTemplateGroupAccessControlEntryRequest: StaticStructureSchema;
|
|
47
|
+
export declare var GetTemplateGroupAccessControlEntryResponse: StaticStructureSchema;
|
|
48
|
+
export declare var GetTemplateRequest: StaticStructureSchema;
|
|
49
|
+
export declare var GetTemplateResponse: StaticStructureSchema;
|
|
50
|
+
export declare var InternalServerException: StaticErrorSchema;
|
|
51
|
+
export declare var KeyUsage: StaticStructureSchema;
|
|
52
|
+
export declare var KeyUsageFlags: StaticStructureSchema;
|
|
53
|
+
export declare var KeyUsagePropertyFlags: StaticStructureSchema;
|
|
54
|
+
export declare var ListConnectorsRequest: StaticStructureSchema;
|
|
55
|
+
export declare var ListConnectorsResponse: StaticStructureSchema;
|
|
56
|
+
export declare var ListDirectoryRegistrationsRequest: StaticStructureSchema;
|
|
57
|
+
export declare var ListDirectoryRegistrationsResponse: StaticStructureSchema;
|
|
58
|
+
export declare var ListServicePrincipalNamesRequest: StaticStructureSchema;
|
|
59
|
+
export declare var ListServicePrincipalNamesResponse: StaticStructureSchema;
|
|
60
|
+
export declare var ListTagsForResourceRequest: StaticStructureSchema;
|
|
61
|
+
export declare var ListTagsForResourceResponse: StaticStructureSchema;
|
|
62
|
+
export declare var ListTemplateGroupAccessControlEntriesRequest: StaticStructureSchema;
|
|
63
|
+
export declare var ListTemplateGroupAccessControlEntriesResponse: StaticStructureSchema;
|
|
64
|
+
export declare var ListTemplatesRequest: StaticStructureSchema;
|
|
65
|
+
export declare var ListTemplatesResponse: StaticStructureSchema;
|
|
66
|
+
export declare var PrivateKeyAttributesV2: StaticStructureSchema;
|
|
67
|
+
export declare var PrivateKeyAttributesV3: StaticStructureSchema;
|
|
68
|
+
export declare var PrivateKeyAttributesV4: StaticStructureSchema;
|
|
69
|
+
export declare var PrivateKeyFlagsV2: StaticStructureSchema;
|
|
70
|
+
export declare var PrivateKeyFlagsV3: StaticStructureSchema;
|
|
71
|
+
export declare var PrivateKeyFlagsV4: StaticStructureSchema;
|
|
72
|
+
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
73
|
+
export declare var ServicePrincipalName: StaticStructureSchema;
|
|
74
|
+
export declare var ServicePrincipalNameSummary: StaticStructureSchema;
|
|
75
|
+
export declare var ServiceQuotaExceededException: StaticErrorSchema;
|
|
76
|
+
export declare var SubjectNameFlagsV2: StaticStructureSchema;
|
|
77
|
+
export declare var SubjectNameFlagsV3: StaticStructureSchema;
|
|
78
|
+
export declare var SubjectNameFlagsV4: StaticStructureSchema;
|
|
79
|
+
export declare var TagResourceRequest: StaticStructureSchema;
|
|
80
|
+
export declare var Template: StaticStructureSchema;
|
|
81
|
+
export declare var TemplateRevision: StaticStructureSchema;
|
|
82
|
+
export declare var TemplateSummary: StaticStructureSchema;
|
|
83
|
+
export declare var TemplateV2: StaticStructureSchema;
|
|
84
|
+
export declare var TemplateV3: StaticStructureSchema;
|
|
85
|
+
export declare var TemplateV4: StaticStructureSchema;
|
|
86
|
+
export declare var ThrottlingException: StaticErrorSchema;
|
|
87
|
+
export declare var UntagResourceRequest: StaticStructureSchema;
|
|
88
|
+
export declare var UpdateTemplateGroupAccessControlEntryRequest: StaticStructureSchema;
|
|
89
|
+
export declare var UpdateTemplateRequest: StaticStructureSchema;
|
|
90
|
+
export declare var ValidationException: StaticErrorSchema;
|
|
91
|
+
export declare var ValidityPeriod: StaticStructureSchema;
|
|
92
|
+
export declare var VpcInformation: StaticStructureSchema;
|
|
93
|
+
export declare var __Unit: "unit";
|
|
94
|
+
export declare var PcaConnectorAdServiceException: StaticErrorSchema;
|
|
95
|
+
export declare var AccessControlEntryList: StaticListSchema;
|
|
96
|
+
export declare var ApplicationPolicyList: StaticListSchema;
|
|
97
|
+
export declare var ConnectorList: StaticListSchema;
|
|
98
|
+
export declare var CryptoProvidersList: number;
|
|
99
|
+
export declare var DirectoryRegistrationList: StaticListSchema;
|
|
100
|
+
export declare var SecurityGroupIdList: number;
|
|
101
|
+
export declare var ServicePrincipalNameList: StaticListSchema;
|
|
102
|
+
export declare var TagKeyList: number;
|
|
103
|
+
export declare var TemplateList: StaticListSchema;
|
|
104
|
+
export declare var TemplateNameList: number;
|
|
105
|
+
export declare var Tags: number;
|
|
106
|
+
export declare var ApplicationPolicy: StaticStructureSchema;
|
|
107
|
+
export declare var KeyUsageProperty: StaticStructureSchema;
|
|
108
|
+
export declare var TemplateDefinition: StaticStructureSchema;
|
|
109
|
+
export declare var CreateConnector: StaticOperationSchema;
|
|
110
|
+
export declare var CreateDirectoryRegistration: StaticOperationSchema;
|
|
111
|
+
export declare var CreateServicePrincipalName: StaticOperationSchema;
|
|
112
|
+
export declare var CreateTemplate: StaticOperationSchema;
|
|
113
|
+
export declare var CreateTemplateGroupAccessControlEntry: StaticOperationSchema;
|
|
114
|
+
export declare var DeleteConnector: StaticOperationSchema;
|
|
115
|
+
export declare var DeleteDirectoryRegistration: StaticOperationSchema;
|
|
116
|
+
export declare var DeleteServicePrincipalName: StaticOperationSchema;
|
|
117
|
+
export declare var DeleteTemplate: StaticOperationSchema;
|
|
118
|
+
export declare var DeleteTemplateGroupAccessControlEntry: StaticOperationSchema;
|
|
119
|
+
export declare var GetConnector: StaticOperationSchema;
|
|
120
|
+
export declare var GetDirectoryRegistration: StaticOperationSchema;
|
|
121
|
+
export declare var GetServicePrincipalName: StaticOperationSchema;
|
|
122
|
+
export declare var GetTemplate: StaticOperationSchema;
|
|
123
|
+
export declare var GetTemplateGroupAccessControlEntry: StaticOperationSchema;
|
|
124
|
+
export declare var ListConnectors: StaticOperationSchema;
|
|
125
|
+
export declare var ListDirectoryRegistrations: StaticOperationSchema;
|
|
126
|
+
export declare var ListServicePrincipalNames: StaticOperationSchema;
|
|
127
|
+
export declare var ListTagsForResource: StaticOperationSchema;
|
|
128
|
+
export declare var ListTemplateGroupAccessControlEntries: StaticOperationSchema;
|
|
129
|
+
export declare var ListTemplates: StaticOperationSchema;
|
|
130
|
+
export declare var TagResource: StaticOperationSchema;
|
|
131
|
+
export declare var UntagResource: StaticOperationSchema;
|
|
132
|
+
export declare var UpdateTemplate: StaticOperationSchema;
|
|
133
|
+
export declare var UpdateTemplateGroupAccessControlEntry: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-pca-connector-ad",
|
|
3
3
|
"description": "AWS SDK for JavaScript Pca Connector Ad Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.929.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-pca-connector-ad",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
23
|
"@aws-sdk/core": "3.928.0",
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.929.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.922.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.922.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.922.0",
|
|
@@ -56,7 +56,6 @@
|
|
|
56
56
|
"@smithy/util-middleware": "^4.2.4",
|
|
57
57
|
"@smithy/util-retry": "^4.2.4",
|
|
58
58
|
"@smithy/util-utf8": "^4.2.0",
|
|
59
|
-
"@smithy/uuid": "^1.1.0",
|
|
60
59
|
"tslib": "^2.6.2"
|
|
61
60
|
},
|
|
62
61
|
"devDependencies": {
|