@aws-sdk/client-rolesanywhere 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 +843 -1264
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/RolesAnywhereClient.js +2 -0
- package/dist-es/commands/CreateProfileCommand.js +3 -10
- package/dist-es/commands/CreateTrustAnchorCommand.js +3 -10
- package/dist-es/commands/DeleteAttributeMappingCommand.js +3 -9
- package/dist-es/commands/DeleteCrlCommand.js +3 -9
- package/dist-es/commands/DeleteProfileCommand.js +3 -9
- package/dist-es/commands/DeleteTrustAnchorCommand.js +3 -9
- package/dist-es/commands/DisableCrlCommand.js +3 -9
- package/dist-es/commands/DisableProfileCommand.js +3 -9
- package/dist-es/commands/DisableTrustAnchorCommand.js +3 -9
- package/dist-es/commands/EnableCrlCommand.js +3 -9
- package/dist-es/commands/EnableProfileCommand.js +3 -9
- package/dist-es/commands/EnableTrustAnchorCommand.js +3 -9
- package/dist-es/commands/GetCrlCommand.js +3 -9
- package/dist-es/commands/GetProfileCommand.js +3 -9
- package/dist-es/commands/GetSubjectCommand.js +3 -9
- package/dist-es/commands/GetTrustAnchorCommand.js +3 -9
- package/dist-es/commands/ImportCrlCommand.js +3 -10
- package/dist-es/commands/ListCrlsCommand.js +3 -9
- package/dist-es/commands/ListProfilesCommand.js +3 -9
- package/dist-es/commands/ListSubjectsCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -10
- package/dist-es/commands/ListTrustAnchorsCommand.js +3 -9
- package/dist-es/commands/PutAttributeMappingCommand.js +3 -9
- package/dist-es/commands/PutNotificationSettingsCommand.js +3 -9
- package/dist-es/commands/ResetNotificationSettingsCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -10
- package/dist-es/commands/UntagResourceCommand.js +3 -10
- package/dist-es/commands/UpdateCrlCommand.js +3 -9
- package/dist-es/commands/UpdateProfileCommand.js +3 -9
- package/dist-es/commands/UpdateTrustAnchorCommand.js +3 -9
- package/dist-es/models/models_0.js +0 -31
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +776 -0
- package/dist-types/RolesAnywhereClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +0 -28
- 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 +103 -0
- package/dist-types/ts3.4/RolesAnywhereClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -19
- 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 +109 -0
- package/package.json +2 -2
- package/dist-es/protocols/Aws_restJson1.js +0 -1009
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -272
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -365
|
@@ -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 { CreateProfileCommandInput, CreateProfileCommandOutput } from "./commands/CreateProfileCommand";
|
|
11
11
|
import { CreateTrustAnchorCommandInput, CreateTrustAnchorCommandOutput } from "./commands/CreateTrustAnchorCommand";
|
|
@@ -171,6 +171,15 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
171
171
|
* Optional extensions
|
|
172
172
|
*/
|
|
173
173
|
extensions?: RuntimeExtension[];
|
|
174
|
+
/**
|
|
175
|
+
* The protocol controlling the message type (e.g. HTTP) and format (e.g. JSON)
|
|
176
|
+
* may be overridden. A default will always be set by the client.
|
|
177
|
+
* Available options depend on the service's supported protocols and will not be validated by
|
|
178
|
+
* the client.
|
|
179
|
+
* @alpha
|
|
180
|
+
*
|
|
181
|
+
*/
|
|
182
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
174
183
|
/**
|
|
175
184
|
* The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
176
185
|
*/
|
|
@@ -1133,31 +1133,3 @@ export interface UntagResourceRequest {
|
|
|
1133
1133
|
*/
|
|
1134
1134
|
export interface UntagResourceResponse {
|
|
1135
1135
|
}
|
|
1136
|
-
/**
|
|
1137
|
-
* @internal
|
|
1138
|
-
*/
|
|
1139
|
-
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
1140
|
-
/**
|
|
1141
|
-
* @internal
|
|
1142
|
-
*/
|
|
1143
|
-
export declare const CreateProfileRequestFilterSensitiveLog: (obj: CreateProfileRequest) => any;
|
|
1144
|
-
/**
|
|
1145
|
-
* @internal
|
|
1146
|
-
*/
|
|
1147
|
-
export declare const CreateTrustAnchorRequestFilterSensitiveLog: (obj: CreateTrustAnchorRequest) => any;
|
|
1148
|
-
/**
|
|
1149
|
-
* @internal
|
|
1150
|
-
*/
|
|
1151
|
-
export declare const ImportCrlRequestFilterSensitiveLog: (obj: ImportCrlRequest) => any;
|
|
1152
|
-
/**
|
|
1153
|
-
* @internal
|
|
1154
|
-
*/
|
|
1155
|
-
export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
1156
|
-
/**
|
|
1157
|
-
* @internal
|
|
1158
|
-
*/
|
|
1159
|
-
export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
1160
|
-
/**
|
|
1161
|
-
* @internal
|
|
1162
|
-
*/
|
|
1163
|
-
export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
@@ -29,6 +29,7 @@ export declare const getRuntimeConfig: (config: RolesAnywhereClientConfig) => {
|
|
|
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: RolesAnywhereClientConfig) => {
|
|
|
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: RolesAnywhereClientConfig) => {
|
|
|
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: RolesAnywhereClientConfig) => {
|
|
|
14
14
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").RolesAnywhereHttpAuthSchemeProvider;
|
|
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,103 @@
|
|
|
1
|
+
import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticSimpleSchema, StaticStructureSchema } from "@smithy/types";
|
|
2
|
+
export declare var TagKey: StaticSimpleSchema;
|
|
3
|
+
export declare var TagValue: StaticSimpleSchema;
|
|
4
|
+
export declare var AccessDeniedException: StaticErrorSchema;
|
|
5
|
+
export declare var AttributeMapping: StaticStructureSchema;
|
|
6
|
+
export declare var CreateProfileRequest: StaticStructureSchema;
|
|
7
|
+
export declare var CreateTrustAnchorRequest: StaticStructureSchema;
|
|
8
|
+
export declare var CredentialSummary: StaticStructureSchema;
|
|
9
|
+
export declare var CrlDetail: StaticStructureSchema;
|
|
10
|
+
export declare var CrlDetailResponse: StaticStructureSchema;
|
|
11
|
+
export declare var DeleteAttributeMappingRequest: StaticStructureSchema;
|
|
12
|
+
export declare var DeleteAttributeMappingResponse: StaticStructureSchema;
|
|
13
|
+
export declare var ImportCrlRequest: StaticStructureSchema;
|
|
14
|
+
export declare var InstanceProperty: StaticStructureSchema;
|
|
15
|
+
export declare var ListCrlsResponse: StaticStructureSchema;
|
|
16
|
+
export declare var ListProfilesResponse: StaticStructureSchema;
|
|
17
|
+
export declare var ListRequest: StaticStructureSchema;
|
|
18
|
+
export declare var ListSubjectsResponse: StaticStructureSchema;
|
|
19
|
+
export declare var ListTagsForResourceRequest: StaticStructureSchema;
|
|
20
|
+
export declare var ListTagsForResourceResponse: StaticStructureSchema;
|
|
21
|
+
export declare var ListTrustAnchorsResponse: StaticStructureSchema;
|
|
22
|
+
export declare var MappingRule: StaticStructureSchema;
|
|
23
|
+
export declare var NotificationSetting: StaticStructureSchema;
|
|
24
|
+
export declare var NotificationSettingDetail: StaticStructureSchema;
|
|
25
|
+
export declare var NotificationSettingKey: StaticStructureSchema;
|
|
26
|
+
export declare var ProfileDetail: StaticStructureSchema;
|
|
27
|
+
export declare var ProfileDetailResponse: StaticStructureSchema;
|
|
28
|
+
export declare var PutAttributeMappingRequest: StaticStructureSchema;
|
|
29
|
+
export declare var PutAttributeMappingResponse: StaticStructureSchema;
|
|
30
|
+
export declare var PutNotificationSettingsRequest: StaticStructureSchema;
|
|
31
|
+
export declare var PutNotificationSettingsResponse: StaticStructureSchema;
|
|
32
|
+
export declare var ResetNotificationSettingsRequest: StaticStructureSchema;
|
|
33
|
+
export declare var ResetNotificationSettingsResponse: StaticStructureSchema;
|
|
34
|
+
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
35
|
+
export declare var ScalarCrlRequest: StaticStructureSchema;
|
|
36
|
+
export declare var ScalarProfileRequest: StaticStructureSchema;
|
|
37
|
+
export declare var ScalarSubjectRequest: StaticStructureSchema;
|
|
38
|
+
export declare var ScalarTrustAnchorRequest: StaticStructureSchema;
|
|
39
|
+
export declare var Source: StaticStructureSchema;
|
|
40
|
+
export declare var SubjectDetail: StaticStructureSchema;
|
|
41
|
+
export declare var SubjectDetailResponse: StaticStructureSchema;
|
|
42
|
+
export declare var SubjectSummary: StaticStructureSchema;
|
|
43
|
+
export declare var Tag: StaticStructureSchema;
|
|
44
|
+
export declare var TagResourceRequest: StaticStructureSchema;
|
|
45
|
+
export declare var TagResourceResponse: StaticStructureSchema;
|
|
46
|
+
export declare var TooManyTagsException: StaticErrorSchema;
|
|
47
|
+
export declare var TrustAnchorDetail: StaticStructureSchema;
|
|
48
|
+
export declare var TrustAnchorDetailResponse: StaticStructureSchema;
|
|
49
|
+
export declare var UntagResourceRequest: StaticStructureSchema;
|
|
50
|
+
export declare var UntagResourceResponse: StaticStructureSchema;
|
|
51
|
+
export declare var UpdateCrlRequest: StaticStructureSchema;
|
|
52
|
+
export declare var UpdateProfileRequest: StaticStructureSchema;
|
|
53
|
+
export declare var UpdateTrustAnchorRequest: StaticStructureSchema;
|
|
54
|
+
export declare var ValidationException: StaticErrorSchema;
|
|
55
|
+
export declare var RolesAnywhereServiceException: StaticErrorSchema;
|
|
56
|
+
export declare var AttributeMappings: StaticListSchema;
|
|
57
|
+
export declare var CredentialSummaries: StaticListSchema;
|
|
58
|
+
export declare var CrlDetails: StaticListSchema;
|
|
59
|
+
export declare var InstanceProperties: StaticListSchema;
|
|
60
|
+
export declare var ManagedPolicyList: number;
|
|
61
|
+
export declare var MappingRules: StaticListSchema;
|
|
62
|
+
export declare var NotificationSettingDetails: StaticListSchema;
|
|
63
|
+
export declare var NotificationSettingKeys: StaticListSchema;
|
|
64
|
+
export declare var NotificationSettings: StaticListSchema;
|
|
65
|
+
export declare var ProfileDetails: StaticListSchema;
|
|
66
|
+
export declare var RoleArnList: number;
|
|
67
|
+
export declare var SpecifierList: number;
|
|
68
|
+
export declare var SubjectSummaries: StaticListSchema;
|
|
69
|
+
export declare var TagKeyList: StaticListSchema;
|
|
70
|
+
export declare var TagList: StaticListSchema;
|
|
71
|
+
export declare var TrustAnchorDetails: StaticListSchema;
|
|
72
|
+
export declare var InstancePropertyMap: number;
|
|
73
|
+
export declare var SourceData: StaticStructureSchema;
|
|
74
|
+
export declare var CreateProfile: StaticOperationSchema;
|
|
75
|
+
export declare var CreateTrustAnchor: StaticOperationSchema;
|
|
76
|
+
export declare var DeleteAttributeMapping: StaticOperationSchema;
|
|
77
|
+
export declare var DeleteCrl: StaticOperationSchema;
|
|
78
|
+
export declare var DeleteProfile: StaticOperationSchema;
|
|
79
|
+
export declare var DeleteTrustAnchor: StaticOperationSchema;
|
|
80
|
+
export declare var DisableCrl: StaticOperationSchema;
|
|
81
|
+
export declare var DisableProfile: StaticOperationSchema;
|
|
82
|
+
export declare var DisableTrustAnchor: StaticOperationSchema;
|
|
83
|
+
export declare var EnableCrl: StaticOperationSchema;
|
|
84
|
+
export declare var EnableProfile: StaticOperationSchema;
|
|
85
|
+
export declare var EnableTrustAnchor: StaticOperationSchema;
|
|
86
|
+
export declare var GetCrl: StaticOperationSchema;
|
|
87
|
+
export declare var GetProfile: StaticOperationSchema;
|
|
88
|
+
export declare var GetSubject: StaticOperationSchema;
|
|
89
|
+
export declare var GetTrustAnchor: StaticOperationSchema;
|
|
90
|
+
export declare var ImportCrl: StaticOperationSchema;
|
|
91
|
+
export declare var ListCrls: StaticOperationSchema;
|
|
92
|
+
export declare var ListProfiles: StaticOperationSchema;
|
|
93
|
+
export declare var ListSubjects: StaticOperationSchema;
|
|
94
|
+
export declare var ListTagsForResource: StaticOperationSchema;
|
|
95
|
+
export declare var ListTrustAnchors: StaticOperationSchema;
|
|
96
|
+
export declare var PutAttributeMapping: StaticOperationSchema;
|
|
97
|
+
export declare var PutNotificationSettings: StaticOperationSchema;
|
|
98
|
+
export declare var ResetNotificationSettings: StaticOperationSchema;
|
|
99
|
+
export declare var TagResource: StaticOperationSchema;
|
|
100
|
+
export declare var UntagResource: StaticOperationSchema;
|
|
101
|
+
export declare var UpdateCrl: StaticOperationSchema;
|
|
102
|
+
export declare var UpdateProfile: StaticOperationSchema;
|
|
103
|
+
export declare var UpdateTrustAnchor: 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,
|
|
@@ -258,6 +261,7 @@ export interface ClientDefaults
|
|
|
258
261
|
retryMode?: string | __Provider<string>;
|
|
259
262
|
logger?: __Logger;
|
|
260
263
|
extensions?: RuntimeExtension[];
|
|
264
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
261
265
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
262
266
|
}
|
|
263
267
|
export type RolesAnywhereClientConfigType = Partial<
|
|
@@ -315,22 +315,3 @@ export interface UntagResourceRequest {
|
|
|
315
315
|
tagKeys: string[] | undefined;
|
|
316
316
|
}
|
|
317
317
|
export interface UntagResourceResponse {}
|
|
318
|
-
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
319
|
-
export declare const CreateProfileRequestFilterSensitiveLog: (
|
|
320
|
-
obj: CreateProfileRequest
|
|
321
|
-
) => any;
|
|
322
|
-
export declare const CreateTrustAnchorRequestFilterSensitiveLog: (
|
|
323
|
-
obj: CreateTrustAnchorRequest
|
|
324
|
-
) => any;
|
|
325
|
-
export declare const ImportCrlRequestFilterSensitiveLog: (
|
|
326
|
-
obj: ImportCrlRequest
|
|
327
|
-
) => any;
|
|
328
|
-
export declare const ListTagsForResourceResponseFilterSensitiveLog: (
|
|
329
|
-
obj: ListTagsForResourceResponse
|
|
330
|
-
) => any;
|
|
331
|
-
export declare const TagResourceRequestFilterSensitiveLog: (
|
|
332
|
-
obj: TagResourceRequest
|
|
333
|
-
) => any;
|
|
334
|
-
export declare const UntagResourceRequestFilterSensitiveLog: (
|
|
335
|
-
obj: UntagResourceRequest
|
|
336
|
-
) => any;
|
|
@@ -38,6 +38,10 @@ export declare const getRuntimeConfig: (config: RolesAnywhereClientConfig) => {
|
|
|
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: RolesAnywhereClientConfig) => {
|
|
|
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: RolesAnywhereClientConfig) => {
|
|
|
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: RolesAnywhereClientConfig) => {
|
|
|
14
14
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").RolesAnywhereHttpAuthSchemeProvider;
|
|
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,109 @@
|
|
|
1
|
+
import {
|
|
2
|
+
StaticErrorSchema,
|
|
3
|
+
StaticListSchema,
|
|
4
|
+
StaticOperationSchema,
|
|
5
|
+
StaticSimpleSchema,
|
|
6
|
+
StaticStructureSchema,
|
|
7
|
+
} from "@smithy/types";
|
|
8
|
+
export declare var TagKey: StaticSimpleSchema;
|
|
9
|
+
export declare var TagValue: StaticSimpleSchema;
|
|
10
|
+
export declare var AccessDeniedException: StaticErrorSchema;
|
|
11
|
+
export declare var AttributeMapping: StaticStructureSchema;
|
|
12
|
+
export declare var CreateProfileRequest: StaticStructureSchema;
|
|
13
|
+
export declare var CreateTrustAnchorRequest: StaticStructureSchema;
|
|
14
|
+
export declare var CredentialSummary: StaticStructureSchema;
|
|
15
|
+
export declare var CrlDetail: StaticStructureSchema;
|
|
16
|
+
export declare var CrlDetailResponse: StaticStructureSchema;
|
|
17
|
+
export declare var DeleteAttributeMappingRequest: StaticStructureSchema;
|
|
18
|
+
export declare var DeleteAttributeMappingResponse: StaticStructureSchema;
|
|
19
|
+
export declare var ImportCrlRequest: StaticStructureSchema;
|
|
20
|
+
export declare var InstanceProperty: StaticStructureSchema;
|
|
21
|
+
export declare var ListCrlsResponse: StaticStructureSchema;
|
|
22
|
+
export declare var ListProfilesResponse: StaticStructureSchema;
|
|
23
|
+
export declare var ListRequest: StaticStructureSchema;
|
|
24
|
+
export declare var ListSubjectsResponse: StaticStructureSchema;
|
|
25
|
+
export declare var ListTagsForResourceRequest: StaticStructureSchema;
|
|
26
|
+
export declare var ListTagsForResourceResponse: StaticStructureSchema;
|
|
27
|
+
export declare var ListTrustAnchorsResponse: StaticStructureSchema;
|
|
28
|
+
export declare var MappingRule: StaticStructureSchema;
|
|
29
|
+
export declare var NotificationSetting: StaticStructureSchema;
|
|
30
|
+
export declare var NotificationSettingDetail: StaticStructureSchema;
|
|
31
|
+
export declare var NotificationSettingKey: StaticStructureSchema;
|
|
32
|
+
export declare var ProfileDetail: StaticStructureSchema;
|
|
33
|
+
export declare var ProfileDetailResponse: StaticStructureSchema;
|
|
34
|
+
export declare var PutAttributeMappingRequest: StaticStructureSchema;
|
|
35
|
+
export declare var PutAttributeMappingResponse: StaticStructureSchema;
|
|
36
|
+
export declare var PutNotificationSettingsRequest: StaticStructureSchema;
|
|
37
|
+
export declare var PutNotificationSettingsResponse: StaticStructureSchema;
|
|
38
|
+
export declare var ResetNotificationSettingsRequest: StaticStructureSchema;
|
|
39
|
+
export declare var ResetNotificationSettingsResponse: StaticStructureSchema;
|
|
40
|
+
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
41
|
+
export declare var ScalarCrlRequest: StaticStructureSchema;
|
|
42
|
+
export declare var ScalarProfileRequest: StaticStructureSchema;
|
|
43
|
+
export declare var ScalarSubjectRequest: StaticStructureSchema;
|
|
44
|
+
export declare var ScalarTrustAnchorRequest: StaticStructureSchema;
|
|
45
|
+
export declare var Source: StaticStructureSchema;
|
|
46
|
+
export declare var SubjectDetail: StaticStructureSchema;
|
|
47
|
+
export declare var SubjectDetailResponse: StaticStructureSchema;
|
|
48
|
+
export declare var SubjectSummary: StaticStructureSchema;
|
|
49
|
+
export declare var Tag: StaticStructureSchema;
|
|
50
|
+
export declare var TagResourceRequest: StaticStructureSchema;
|
|
51
|
+
export declare var TagResourceResponse: StaticStructureSchema;
|
|
52
|
+
export declare var TooManyTagsException: StaticErrorSchema;
|
|
53
|
+
export declare var TrustAnchorDetail: StaticStructureSchema;
|
|
54
|
+
export declare var TrustAnchorDetailResponse: StaticStructureSchema;
|
|
55
|
+
export declare var UntagResourceRequest: StaticStructureSchema;
|
|
56
|
+
export declare var UntagResourceResponse: StaticStructureSchema;
|
|
57
|
+
export declare var UpdateCrlRequest: StaticStructureSchema;
|
|
58
|
+
export declare var UpdateProfileRequest: StaticStructureSchema;
|
|
59
|
+
export declare var UpdateTrustAnchorRequest: StaticStructureSchema;
|
|
60
|
+
export declare var ValidationException: StaticErrorSchema;
|
|
61
|
+
export declare var RolesAnywhereServiceException: StaticErrorSchema;
|
|
62
|
+
export declare var AttributeMappings: StaticListSchema;
|
|
63
|
+
export declare var CredentialSummaries: StaticListSchema;
|
|
64
|
+
export declare var CrlDetails: StaticListSchema;
|
|
65
|
+
export declare var InstanceProperties: StaticListSchema;
|
|
66
|
+
export declare var ManagedPolicyList: number;
|
|
67
|
+
export declare var MappingRules: StaticListSchema;
|
|
68
|
+
export declare var NotificationSettingDetails: StaticListSchema;
|
|
69
|
+
export declare var NotificationSettingKeys: StaticListSchema;
|
|
70
|
+
export declare var NotificationSettings: StaticListSchema;
|
|
71
|
+
export declare var ProfileDetails: StaticListSchema;
|
|
72
|
+
export declare var RoleArnList: number;
|
|
73
|
+
export declare var SpecifierList: number;
|
|
74
|
+
export declare var SubjectSummaries: StaticListSchema;
|
|
75
|
+
export declare var TagKeyList: StaticListSchema;
|
|
76
|
+
export declare var TagList: StaticListSchema;
|
|
77
|
+
export declare var TrustAnchorDetails: StaticListSchema;
|
|
78
|
+
export declare var InstancePropertyMap: number;
|
|
79
|
+
export declare var SourceData: StaticStructureSchema;
|
|
80
|
+
export declare var CreateProfile: StaticOperationSchema;
|
|
81
|
+
export declare var CreateTrustAnchor: StaticOperationSchema;
|
|
82
|
+
export declare var DeleteAttributeMapping: StaticOperationSchema;
|
|
83
|
+
export declare var DeleteCrl: StaticOperationSchema;
|
|
84
|
+
export declare var DeleteProfile: StaticOperationSchema;
|
|
85
|
+
export declare var DeleteTrustAnchor: StaticOperationSchema;
|
|
86
|
+
export declare var DisableCrl: StaticOperationSchema;
|
|
87
|
+
export declare var DisableProfile: StaticOperationSchema;
|
|
88
|
+
export declare var DisableTrustAnchor: StaticOperationSchema;
|
|
89
|
+
export declare var EnableCrl: StaticOperationSchema;
|
|
90
|
+
export declare var EnableProfile: StaticOperationSchema;
|
|
91
|
+
export declare var EnableTrustAnchor: StaticOperationSchema;
|
|
92
|
+
export declare var GetCrl: StaticOperationSchema;
|
|
93
|
+
export declare var GetProfile: StaticOperationSchema;
|
|
94
|
+
export declare var GetSubject: StaticOperationSchema;
|
|
95
|
+
export declare var GetTrustAnchor: StaticOperationSchema;
|
|
96
|
+
export declare var ImportCrl: StaticOperationSchema;
|
|
97
|
+
export declare var ListCrls: StaticOperationSchema;
|
|
98
|
+
export declare var ListProfiles: StaticOperationSchema;
|
|
99
|
+
export declare var ListSubjects: StaticOperationSchema;
|
|
100
|
+
export declare var ListTagsForResource: StaticOperationSchema;
|
|
101
|
+
export declare var ListTrustAnchors: StaticOperationSchema;
|
|
102
|
+
export declare var PutAttributeMapping: StaticOperationSchema;
|
|
103
|
+
export declare var PutNotificationSettings: StaticOperationSchema;
|
|
104
|
+
export declare var ResetNotificationSettings: StaticOperationSchema;
|
|
105
|
+
export declare var TagResource: StaticOperationSchema;
|
|
106
|
+
export declare var UntagResource: StaticOperationSchema;
|
|
107
|
+
export declare var UpdateCrl: StaticOperationSchema;
|
|
108
|
+
export declare var UpdateProfile: StaticOperationSchema;
|
|
109
|
+
export declare var UpdateTrustAnchor: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-rolesanywhere",
|
|
3
3
|
"description": "AWS SDK for JavaScript Rolesanywhere 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-rolesanywhere",
|
|
@@ -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",
|