@aws-sdk/client-ram 3.46.0 → 3.48.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/CHANGELOG.md +38 -0
- package/dist-cjs/RAM.js +15 -0
- package/dist-cjs/commands/ListPermissionVersionsCommand.js +36 -0
- package/dist-cjs/commands/index.js +1 -0
- package/dist-cjs/endpoints.js +0 -20
- package/dist-cjs/models/models_0.js +14 -134
- package/dist-cjs/pagination/ListPermissionVersionsPaginator.js +35 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_restJson1.js +124 -1
- package/dist-cjs/runtimeConfig.browser.js +7 -2
- package/dist-cjs/runtimeConfig.js +10 -2
- package/dist-es/RAM.js +15 -0
- package/dist-es/commands/ListPermissionVersionsCommand.js +39 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/endpoints.js +0 -20
- package/dist-es/models/models_0.js +8 -88
- package/dist-es/pagination/ListPermissionVersionsPaginator.js +74 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +138 -0
- package/dist-es/runtimeConfig.browser.js +12 -3
- package/dist-es/runtimeConfig.js +13 -4
- package/dist-types/RAM.d.ts +7 -0
- package/dist-types/RAMClient.d.ts +8 -3
- package/dist-types/commands/ListPermissionVersionsCommand.d.ts +35 -0
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +57 -133
- package/dist-types/pagination/ListPermissionVersionsPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +3 -0
- package/dist-types/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/runtimeConfig.d.ts +4 -3
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/ts3.4/RAM.d.ts +5 -0
- package/dist-types/ts3.4/RAMClient.d.ts +6 -3
- package/dist-types/ts3.4/commands/ListPermissionVersionsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +22 -88
- package/dist-types/ts3.4/pagination/ListPermissionVersionsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +3 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -3
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -0
- package/package.json +35 -35
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { ListPermissionVersionsRequest, ListPermissionVersionsResponse } from "../models/models_0";
|
|
4
|
+
import { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient";
|
|
5
|
+
export interface ListPermissionVersionsCommandInput extends ListPermissionVersionsRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListPermissionVersionsCommandOutput extends ListPermissionVersionsResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ListPermissionVersionsCommand extends $Command<ListPermissionVersionsCommandInput, ListPermissionVersionsCommandOutput, RAMClientResolvedConfig> {
|
|
11
|
+
readonly input: ListPermissionVersionsCommandInput;
|
|
12
|
+
constructor(input: ListPermissionVersionsCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RAMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListPermissionVersionsCommandInput, ListPermissionVersionsCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -12,6 +12,7 @@ export * from "./GetResourceShareAssociationsCommand";
|
|
|
12
12
|
export * from "./GetResourceShareInvitationsCommand";
|
|
13
13
|
export * from "./GetResourceSharesCommand";
|
|
14
14
|
export * from "./ListPendingInvitationResourcesCommand";
|
|
15
|
+
export * from "./ListPermissionVersionsCommand";
|
|
15
16
|
export * from "./ListPermissionsCommand";
|
|
16
17
|
export * from "./ListPrincipalsCommand";
|
|
17
18
|
export * from "./ListResourceSharePermissionsCommand";
|
|
@@ -78,100 +78,60 @@ export interface IdempotentParameterMismatchException extends __SmithyException,
|
|
|
78
78
|
$fault: "client";
|
|
79
79
|
message: string | undefined;
|
|
80
80
|
}
|
|
81
|
-
export declare namespace IdempotentParameterMismatchException {
|
|
82
|
-
|
|
83
|
-
const filterSensitiveLog: (obj: IdempotentParameterMismatchException) => any;
|
|
84
|
-
}
|
|
85
81
|
|
|
86
82
|
export interface InvalidClientTokenException extends __SmithyException, $MetadataBearer {
|
|
87
83
|
name: "InvalidClientTokenException";
|
|
88
84
|
$fault: "client";
|
|
89
85
|
message: string | undefined;
|
|
90
86
|
}
|
|
91
|
-
export declare namespace InvalidClientTokenException {
|
|
92
|
-
|
|
93
|
-
const filterSensitiveLog: (obj: InvalidClientTokenException) => any;
|
|
94
|
-
}
|
|
95
87
|
|
|
96
88
|
export interface MalformedArnException extends __SmithyException, $MetadataBearer {
|
|
97
89
|
name: "MalformedArnException";
|
|
98
90
|
$fault: "client";
|
|
99
91
|
message: string | undefined;
|
|
100
92
|
}
|
|
101
|
-
export declare namespace MalformedArnException {
|
|
102
|
-
|
|
103
|
-
const filterSensitiveLog: (obj: MalformedArnException) => any;
|
|
104
|
-
}
|
|
105
93
|
|
|
106
94
|
export interface OperationNotPermittedException extends __SmithyException, $MetadataBearer {
|
|
107
95
|
name: "OperationNotPermittedException";
|
|
108
96
|
$fault: "client";
|
|
109
97
|
message: string | undefined;
|
|
110
98
|
}
|
|
111
|
-
export declare namespace OperationNotPermittedException {
|
|
112
|
-
|
|
113
|
-
const filterSensitiveLog: (obj: OperationNotPermittedException) => any;
|
|
114
|
-
}
|
|
115
99
|
|
|
116
100
|
export interface ResourceShareInvitationAlreadyAcceptedException extends __SmithyException, $MetadataBearer {
|
|
117
101
|
name: "ResourceShareInvitationAlreadyAcceptedException";
|
|
118
102
|
$fault: "client";
|
|
119
103
|
message: string | undefined;
|
|
120
104
|
}
|
|
121
|
-
export declare namespace ResourceShareInvitationAlreadyAcceptedException {
|
|
122
|
-
|
|
123
|
-
const filterSensitiveLog: (obj: ResourceShareInvitationAlreadyAcceptedException) => any;
|
|
124
|
-
}
|
|
125
105
|
|
|
126
106
|
export interface ResourceShareInvitationAlreadyRejectedException extends __SmithyException, $MetadataBearer {
|
|
127
107
|
name: "ResourceShareInvitationAlreadyRejectedException";
|
|
128
108
|
$fault: "client";
|
|
129
109
|
message: string | undefined;
|
|
130
110
|
}
|
|
131
|
-
export declare namespace ResourceShareInvitationAlreadyRejectedException {
|
|
132
|
-
|
|
133
|
-
const filterSensitiveLog: (obj: ResourceShareInvitationAlreadyRejectedException) => any;
|
|
134
|
-
}
|
|
135
111
|
|
|
136
112
|
export interface ResourceShareInvitationArnNotFoundException extends __SmithyException, $MetadataBearer {
|
|
137
113
|
name: "ResourceShareInvitationArnNotFoundException";
|
|
138
114
|
$fault: "client";
|
|
139
115
|
message: string | undefined;
|
|
140
116
|
}
|
|
141
|
-
export declare namespace ResourceShareInvitationArnNotFoundException {
|
|
142
|
-
|
|
143
|
-
const filterSensitiveLog: (obj: ResourceShareInvitationArnNotFoundException) => any;
|
|
144
|
-
}
|
|
145
117
|
|
|
146
118
|
export interface ResourceShareInvitationExpiredException extends __SmithyException, $MetadataBearer {
|
|
147
119
|
name: "ResourceShareInvitationExpiredException";
|
|
148
120
|
$fault: "client";
|
|
149
121
|
message: string | undefined;
|
|
150
122
|
}
|
|
151
|
-
export declare namespace ResourceShareInvitationExpiredException {
|
|
152
|
-
|
|
153
|
-
const filterSensitiveLog: (obj: ResourceShareInvitationExpiredException) => any;
|
|
154
|
-
}
|
|
155
123
|
|
|
156
124
|
export interface ServerInternalException extends __SmithyException, $MetadataBearer {
|
|
157
125
|
name: "ServerInternalException";
|
|
158
126
|
$fault: "server";
|
|
159
127
|
message: string | undefined;
|
|
160
128
|
}
|
|
161
|
-
export declare namespace ServerInternalException {
|
|
162
|
-
|
|
163
|
-
const filterSensitiveLog: (obj: ServerInternalException) => any;
|
|
164
|
-
}
|
|
165
129
|
|
|
166
130
|
export interface ServiceUnavailableException extends __SmithyException, $MetadataBearer {
|
|
167
131
|
name: "ServiceUnavailableException";
|
|
168
132
|
$fault: "server";
|
|
169
133
|
message: string | undefined;
|
|
170
134
|
}
|
|
171
|
-
export declare namespace ServiceUnavailableException {
|
|
172
|
-
|
|
173
|
-
const filterSensitiveLog: (obj: ServiceUnavailableException) => any;
|
|
174
|
-
}
|
|
175
135
|
export interface AssociateResourceShareRequest {
|
|
176
136
|
|
|
177
137
|
resourceShareArn: string | undefined;
|
|
@@ -202,50 +162,30 @@ export interface InvalidParameterException extends __SmithyException, $MetadataB
|
|
|
202
162
|
$fault: "client";
|
|
203
163
|
message: string | undefined;
|
|
204
164
|
}
|
|
205
|
-
export declare namespace InvalidParameterException {
|
|
206
|
-
|
|
207
|
-
const filterSensitiveLog: (obj: InvalidParameterException) => any;
|
|
208
|
-
}
|
|
209
165
|
|
|
210
166
|
export interface InvalidStateTransitionException extends __SmithyException, $MetadataBearer {
|
|
211
167
|
name: "InvalidStateTransitionException";
|
|
212
168
|
$fault: "client";
|
|
213
169
|
message: string | undefined;
|
|
214
170
|
}
|
|
215
|
-
export declare namespace InvalidStateTransitionException {
|
|
216
|
-
|
|
217
|
-
const filterSensitiveLog: (obj: InvalidStateTransitionException) => any;
|
|
218
|
-
}
|
|
219
171
|
|
|
220
172
|
export interface ResourceShareLimitExceededException extends __SmithyException, $MetadataBearer {
|
|
221
173
|
name: "ResourceShareLimitExceededException";
|
|
222
174
|
$fault: "client";
|
|
223
175
|
message: string | undefined;
|
|
224
176
|
}
|
|
225
|
-
export declare namespace ResourceShareLimitExceededException {
|
|
226
|
-
|
|
227
|
-
const filterSensitiveLog: (obj: ResourceShareLimitExceededException) => any;
|
|
228
|
-
}
|
|
229
177
|
|
|
230
178
|
export interface ThrottlingException extends __SmithyException, $MetadataBearer {
|
|
231
179
|
name: "ThrottlingException";
|
|
232
180
|
$fault: "client";
|
|
233
181
|
message: string | undefined;
|
|
234
182
|
}
|
|
235
|
-
export declare namespace ThrottlingException {
|
|
236
|
-
|
|
237
|
-
const filterSensitiveLog: (obj: ThrottlingException) => any;
|
|
238
|
-
}
|
|
239
183
|
|
|
240
184
|
export interface UnknownResourceException extends __SmithyException, $MetadataBearer {
|
|
241
185
|
name: "UnknownResourceException";
|
|
242
186
|
$fault: "client";
|
|
243
187
|
message: string | undefined;
|
|
244
188
|
}
|
|
245
|
-
export declare namespace UnknownResourceException {
|
|
246
|
-
|
|
247
|
-
const filterSensitiveLog: (obj: UnknownResourceException) => any;
|
|
248
|
-
}
|
|
249
189
|
export interface AssociateResourceSharePermissionRequest {
|
|
250
190
|
|
|
251
191
|
resourceShareArn: string | undefined;
|
|
@@ -348,10 +288,6 @@ export interface TagPolicyViolationException extends __SmithyException, $Metadat
|
|
|
348
288
|
$fault: "client";
|
|
349
289
|
message: string | undefined;
|
|
350
290
|
}
|
|
351
|
-
export declare namespace TagPolicyViolationException {
|
|
352
|
-
|
|
353
|
-
const filterSensitiveLog: (obj: TagPolicyViolationException) => any;
|
|
354
|
-
}
|
|
355
291
|
export interface DeleteResourceShareRequest {
|
|
356
292
|
|
|
357
293
|
resourceShareArn: string | undefined;
|
|
@@ -505,20 +441,12 @@ export interface InvalidNextTokenException extends __SmithyException, $MetadataB
|
|
|
505
441
|
$fault: "client";
|
|
506
442
|
message: string | undefined;
|
|
507
443
|
}
|
|
508
|
-
export declare namespace InvalidNextTokenException {
|
|
509
|
-
|
|
510
|
-
const filterSensitiveLog: (obj: InvalidNextTokenException) => any;
|
|
511
|
-
}
|
|
512
444
|
|
|
513
445
|
export interface ResourceArnNotFoundException extends __SmithyException, $MetadataBearer {
|
|
514
446
|
name: "ResourceArnNotFoundException";
|
|
515
447
|
$fault: "client";
|
|
516
448
|
message: string | undefined;
|
|
517
449
|
}
|
|
518
|
-
export declare namespace ResourceArnNotFoundException {
|
|
519
|
-
|
|
520
|
-
const filterSensitiveLog: (obj: ResourceArnNotFoundException) => any;
|
|
521
|
-
}
|
|
522
450
|
export interface GetResourceShareAssociationsRequest {
|
|
523
451
|
|
|
524
452
|
associationType: ResourceShareAssociationType | string | undefined;
|
|
@@ -579,10 +507,6 @@ export interface InvalidMaxResultsException extends __SmithyException, $Metadata
|
|
|
579
507
|
$fault: "client";
|
|
580
508
|
message: string | undefined;
|
|
581
509
|
}
|
|
582
|
-
export declare namespace InvalidMaxResultsException {
|
|
583
|
-
|
|
584
|
-
const filterSensitiveLog: (obj: InvalidMaxResultsException) => any;
|
|
585
|
-
}
|
|
586
510
|
export declare enum ResourceOwner {
|
|
587
511
|
OTHER_ACCOUNTS = "OTHER-ACCOUNTS",
|
|
588
512
|
SELF = "SELF"
|
|
@@ -695,10 +619,6 @@ export interface MissingRequiredParameterException extends __SmithyException, $M
|
|
|
695
619
|
$fault: "client";
|
|
696
620
|
message: string | undefined;
|
|
697
621
|
}
|
|
698
|
-
export declare namespace MissingRequiredParameterException {
|
|
699
|
-
|
|
700
|
-
const filterSensitiveLog: (obj: MissingRequiredParameterException) => any;
|
|
701
|
-
}
|
|
702
622
|
export interface ListPermissionsRequest {
|
|
703
623
|
|
|
704
624
|
resourceType?: string;
|
|
@@ -746,6 +666,28 @@ export declare namespace ListPermissionsResponse {
|
|
|
746
666
|
|
|
747
667
|
const filterSensitiveLog: (obj: ListPermissionsResponse) => any;
|
|
748
668
|
}
|
|
669
|
+
export interface ListPermissionVersionsRequest {
|
|
670
|
+
|
|
671
|
+
permissionArn: string | undefined;
|
|
672
|
+
|
|
673
|
+
nextToken?: string;
|
|
674
|
+
|
|
675
|
+
maxResults?: number;
|
|
676
|
+
}
|
|
677
|
+
export declare namespace ListPermissionVersionsRequest {
|
|
678
|
+
|
|
679
|
+
const filterSensitiveLog: (obj: ListPermissionVersionsRequest) => any;
|
|
680
|
+
}
|
|
681
|
+
export interface ListPermissionVersionsResponse {
|
|
682
|
+
|
|
683
|
+
permissions?: ResourceSharePermissionSummary[];
|
|
684
|
+
|
|
685
|
+
nextToken?: string;
|
|
686
|
+
}
|
|
687
|
+
export declare namespace ListPermissionVersionsResponse {
|
|
688
|
+
|
|
689
|
+
const filterSensitiveLog: (obj: ListPermissionVersionsResponse) => any;
|
|
690
|
+
}
|
|
749
691
|
export interface ListPrincipalsRequest {
|
|
750
692
|
|
|
751
693
|
resourceOwner: ResourceOwner | string | undefined;
|
|
@@ -799,10 +741,6 @@ export interface InvalidResourceTypeException extends __SmithyException, $Metada
|
|
|
799
741
|
$fault: "client";
|
|
800
742
|
message: string | undefined;
|
|
801
743
|
}
|
|
802
|
-
export declare namespace InvalidResourceTypeException {
|
|
803
|
-
|
|
804
|
-
const filterSensitiveLog: (obj: InvalidResourceTypeException) => any;
|
|
805
|
-
}
|
|
806
744
|
export interface ListResourcesRequest {
|
|
807
745
|
|
|
808
746
|
resourceOwner: ResourceOwner | string | undefined;
|
|
@@ -934,10 +872,6 @@ export interface TagLimitExceededException extends __SmithyException, $MetadataB
|
|
|
934
872
|
$fault: "client";
|
|
935
873
|
message: string | undefined;
|
|
936
874
|
}
|
|
937
|
-
export declare namespace TagLimitExceededException {
|
|
938
|
-
|
|
939
|
-
const filterSensitiveLog: (obj: TagLimitExceededException) => any;
|
|
940
|
-
}
|
|
941
875
|
export interface TagResourceRequest {
|
|
942
876
|
|
|
943
877
|
resourceShareArn: string | undefined;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListPermissionVersionsCommandInput, ListPermissionVersionsCommandOutput } from "../commands/ListPermissionVersionsCommand";
|
|
3
|
+
import { RAMPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListPermissionVersions(config: RAMPaginationConfiguration, input: ListPermissionVersionsCommandInput, ...additionalArguments: any): Paginator<ListPermissionVersionsCommandOutput>;
|
|
@@ -4,6 +4,7 @@ export * from "./GetResourceShareInvitationsPaginator";
|
|
|
4
4
|
export * from "./GetResourceSharesPaginator";
|
|
5
5
|
export * from "./Interfaces";
|
|
6
6
|
export * from "./ListPendingInvitationResourcesPaginator";
|
|
7
|
+
export * from "./ListPermissionVersionsPaginator";
|
|
7
8
|
export * from "./ListPermissionsPaginator";
|
|
8
9
|
export * from "./ListPrincipalsPaginator";
|
|
9
10
|
export * from "./ListResourceSharePermissionsPaginator";
|
|
@@ -15,6 +15,7 @@ import { GetResourceShareInvitationsCommandInput, GetResourceShareInvitationsCom
|
|
|
15
15
|
import { GetResourceSharesCommandInput, GetResourceSharesCommandOutput } from "../commands/GetResourceSharesCommand";
|
|
16
16
|
import { ListPendingInvitationResourcesCommandInput, ListPendingInvitationResourcesCommandOutput } from "../commands/ListPendingInvitationResourcesCommand";
|
|
17
17
|
import { ListPermissionsCommandInput, ListPermissionsCommandOutput } from "../commands/ListPermissionsCommand";
|
|
18
|
+
import { ListPermissionVersionsCommandInput, ListPermissionVersionsCommandOutput } from "../commands/ListPermissionVersionsCommand";
|
|
18
19
|
import { ListPrincipalsCommandInput, ListPrincipalsCommandOutput } from "../commands/ListPrincipalsCommand";
|
|
19
20
|
import { ListResourcesCommandInput, ListResourcesCommandOutput } from "../commands/ListResourcesCommand";
|
|
20
21
|
import { ListResourceSharePermissionsCommandInput, ListResourceSharePermissionsCommandOutput } from "../commands/ListResourceSharePermissionsCommand";
|
|
@@ -39,6 +40,7 @@ export declare const serializeAws_restJson1GetResourceShareInvitationsCommand: (
|
|
|
39
40
|
export declare const serializeAws_restJson1GetResourceSharesCommand: (input: GetResourceSharesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
40
41
|
export declare const serializeAws_restJson1ListPendingInvitationResourcesCommand: (input: ListPendingInvitationResourcesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
41
42
|
export declare const serializeAws_restJson1ListPermissionsCommand: (input: ListPermissionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
43
|
+
export declare const serializeAws_restJson1ListPermissionVersionsCommand: (input: ListPermissionVersionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
42
44
|
export declare const serializeAws_restJson1ListPrincipalsCommand: (input: ListPrincipalsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
43
45
|
export declare const serializeAws_restJson1ListResourcesCommand: (input: ListResourcesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
44
46
|
export declare const serializeAws_restJson1ListResourceSharePermissionsCommand: (input: ListResourceSharePermissionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -63,6 +65,7 @@ export declare const deserializeAws_restJson1GetResourceShareInvitationsCommand:
|
|
|
63
65
|
export declare const deserializeAws_restJson1GetResourceSharesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetResourceSharesCommandOutput>;
|
|
64
66
|
export declare const deserializeAws_restJson1ListPendingInvitationResourcesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListPendingInvitationResourcesCommandOutput>;
|
|
65
67
|
export declare const deserializeAws_restJson1ListPermissionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListPermissionsCommandOutput>;
|
|
68
|
+
export declare const deserializeAws_restJson1ListPermissionVersionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListPermissionVersionsCommandOutput>;
|
|
66
69
|
export declare const deserializeAws_restJson1ListPrincipalsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListPrincipalsCommandOutput>;
|
|
67
70
|
export declare const deserializeAws_restJson1ListResourcesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListResourcesCommandOutput>;
|
|
68
71
|
export declare const deserializeAws_restJson1ListResourceSharePermissionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListResourceSharePermissionsCommandOutput>;
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
import { FetchHttpHandler } from "@aws-sdk/fetch-http-handler";
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
2
|
import { RAMClientConfig } from "./RAMClient";
|
|
3
3
|
|
|
4
4
|
export declare const getRuntimeConfig: (config: RAMClientConfig) => {
|
|
5
5
|
runtime: string;
|
|
6
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
6
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
7
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
8
9
|
bodyLengthChecker: (body: any) => number | undefined;
|
|
@@ -10,7 +11,7 @@ export declare const getRuntimeConfig: (config: RAMClientConfig) => {
|
|
|
10
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
11
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
12
13
|
region: string | import("@aws-sdk/types").Provider<any>;
|
|
13
|
-
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) |
|
|
14
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
14
15
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
15
16
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
16
17
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
@@ -1,16 +1,17 @@
|
|
|
1
|
-
import { NodeHttpHandler } from "@aws-sdk/node-http-handler";
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
2
|
import { RAMClientConfig } from "./RAMClient";
|
|
3
3
|
|
|
4
4
|
export declare const getRuntimeConfig: (config: RAMClientConfig) => {
|
|
5
5
|
runtime: string;
|
|
6
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
6
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
7
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
8
9
|
bodyLengthChecker: (body: any) => number | undefined;
|
|
9
|
-
credentialDefaultProvider: import("@aws-sdk/
|
|
10
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
10
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
11
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
12
13
|
region: string | import("@aws-sdk/types").Provider<string>;
|
|
13
|
-
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) |
|
|
14
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
14
15
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
15
16
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
16
17
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
@@ -23,6 +23,7 @@ export declare const getRuntimeConfig: (config: RAMClientConfig) => {
|
|
|
23
23
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
24
24
|
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
25
25
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
26
|
+
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode> | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
26
27
|
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
27
28
|
tls?: boolean | undefined;
|
|
28
29
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
package/package.json
CHANGED
|
@@ -1,17 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ram",
|
|
3
3
|
"description": "AWS SDK for JavaScript Ram Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.48.0",
|
|
5
5
|
"scripts": {
|
|
6
|
-
"build": "yarn
|
|
7
|
-
"build:cjs": "tsc -p tsconfig.json",
|
|
6
|
+
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
|
+
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
8
8
|
"build:docs": "typedoc",
|
|
9
9
|
"build:es": "tsc -p tsconfig.es.json",
|
|
10
10
|
"build:types": "tsc -p tsconfig.types.json",
|
|
11
11
|
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
12
|
-
"clean": "
|
|
13
|
-
"clean:dist": "rimraf ./dist-*",
|
|
14
|
-
"clean:docs": "rimraf ./docs"
|
|
12
|
+
"clean": "rimraf ./dist-*"
|
|
15
13
|
},
|
|
16
14
|
"main": "./dist-cjs/index.js",
|
|
17
15
|
"types": "./dist-types/index.d.ts",
|
|
@@ -20,38 +18,40 @@
|
|
|
20
18
|
"dependencies": {
|
|
21
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
22
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/config-resolver": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
27
|
-
"@aws-sdk/hash-node": "3.
|
|
28
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
29
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
30
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
31
|
-
"@aws-sdk/middleware-logger": "3.
|
|
32
|
-
"@aws-sdk/middleware-retry": "3.
|
|
33
|
-
"@aws-sdk/middleware-serde": "3.
|
|
34
|
-
"@aws-sdk/middleware-signing": "3.
|
|
35
|
-
"@aws-sdk/middleware-stack": "3.
|
|
36
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
37
|
-
"@aws-sdk/node-config-provider": "3.
|
|
38
|
-
"@aws-sdk/node-http-handler": "3.
|
|
39
|
-
"@aws-sdk/protocol-http": "3.
|
|
40
|
-
"@aws-sdk/smithy-client": "3.
|
|
41
|
-
"@aws-sdk/types": "3.
|
|
42
|
-
"@aws-sdk/url-parser": "3.
|
|
43
|
-
"@aws-sdk/util-base64-browser": "3.
|
|
44
|
-
"@aws-sdk/util-base64-node": "3.
|
|
45
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
46
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
47
|
-
"@aws-sdk/util-
|
|
48
|
-
"@aws-sdk/util-
|
|
49
|
-
"@aws-sdk/util-
|
|
50
|
-
"@aws-sdk/util-
|
|
21
|
+
"@aws-sdk/client-sts": "3.48.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.47.2",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.48.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.47.2",
|
|
25
|
+
"@aws-sdk/hash-node": "3.47.2",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.47.2",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.47.2",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.47.2",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.47.2",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.47.2",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.47.2",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.47.2",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.47.2",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.47.2",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.47.2",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.47.2",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.47.2",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.47.2",
|
|
39
|
+
"@aws-sdk/types": "3.47.1",
|
|
40
|
+
"@aws-sdk/url-parser": "3.47.2",
|
|
41
|
+
"@aws-sdk/util-base64-browser": "3.47.1",
|
|
42
|
+
"@aws-sdk/util-base64-node": "3.47.2",
|
|
43
|
+
"@aws-sdk/util-body-length-browser": "3.47.1",
|
|
44
|
+
"@aws-sdk/util-body-length-node": "3.47.1",
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.47.2",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.47.2",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.47.2",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.47.2",
|
|
49
|
+
"@aws-sdk/util-utf8-browser": "3.47.1",
|
|
50
|
+
"@aws-sdk/util-utf8-node": "3.47.2",
|
|
51
51
|
"tslib": "^2.3.0"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
54
|
+
"@aws-sdk/service-client-documentation-generator": "3.47.1",
|
|
55
55
|
"@types/node": "^12.7.5"
|
|
56
56
|
},
|
|
57
57
|
"engines": {
|