@aws-sdk/client-resource-groups 3.51.0 → 3.54.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 +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/ResourceGroupsServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +101 -2
- package/dist-cjs/protocols/Aws_restJson1.js +227 -791
- package/dist-es/index.js +1 -0
- package/dist-es/models/ResourceGroupsServiceException.js +12 -0
- package/dist-es/models/models_0.js +93 -1
- package/dist-es/protocols/Aws_restJson1.js +437 -863
- package/dist-types/ResourceGroupsClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/ResourceGroupsServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +51 -22
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/ResourceGroupsClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/ResourceGroupsServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +37 -22
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +33 -33
|
@@ -5,7 +5,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
|
|
|
5
5
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
6
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
|
-
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
8
|
+
import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
9
|
import { CreateGroupCommandInput, CreateGroupCommandOutput } from "./commands/CreateGroupCommand";
|
|
10
10
|
import { DeleteGroupCommandInput, DeleteGroupCommandOutput } from "./commands/DeleteGroupCommand";
|
|
11
11
|
import { GetGroupCommandInput, GetGroupCommandOutput } from "./commands/GetGroupCommand";
|
|
@@ -44,7 +44,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
44
44
|
* A function that can calculate the length of a request body.
|
|
45
45
|
* @internal
|
|
46
46
|
*/
|
|
47
|
-
bodyLengthChecker?:
|
|
47
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
48
48
|
/**
|
|
49
49
|
* A function that converts a stream into an array of bytes.
|
|
50
50
|
* @internal
|
package/dist-types/index.d.ts
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
/**
|
|
3
|
+
* Base exception class for all service exceptions from ResourceGroups service.
|
|
4
|
+
*/
|
|
5
|
+
export declare class ResourceGroupsServiceException extends __ServiceException {
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
constructor(options: __ServiceExceptionOptions);
|
|
10
|
+
}
|
|
@@ -1,11 +1,16 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { ResourceGroupsServiceException as __BaseException } from "./ResourceGroupsServiceException";
|
|
2
3
|
/**
|
|
3
4
|
* <p>The request includes one or more parameters that violate validation rules.</p>
|
|
4
5
|
*/
|
|
5
|
-
export
|
|
6
|
-
name: "BadRequestException";
|
|
7
|
-
$fault: "client";
|
|
6
|
+
export declare class BadRequestException extends __BaseException {
|
|
7
|
+
readonly name: "BadRequestException";
|
|
8
|
+
readonly $fault: "client";
|
|
8
9
|
Message?: string;
|
|
10
|
+
/**
|
|
11
|
+
* @internal
|
|
12
|
+
*/
|
|
13
|
+
constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
|
|
9
14
|
}
|
|
10
15
|
/**
|
|
11
16
|
* <p>A parameter for a group configuration item. For details about group service
|
|
@@ -407,35 +412,51 @@ export declare namespace CreateGroupOutput {
|
|
|
407
412
|
/**
|
|
408
413
|
* <p>The caller isn't authorized to make the request. Check permissions.</p>
|
|
409
414
|
*/
|
|
410
|
-
export
|
|
411
|
-
name: "ForbiddenException";
|
|
412
|
-
$fault: "client";
|
|
415
|
+
export declare class ForbiddenException extends __BaseException {
|
|
416
|
+
readonly name: "ForbiddenException";
|
|
417
|
+
readonly $fault: "client";
|
|
413
418
|
Message?: string;
|
|
419
|
+
/**
|
|
420
|
+
* @internal
|
|
421
|
+
*/
|
|
422
|
+
constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
|
|
414
423
|
}
|
|
415
424
|
/**
|
|
416
425
|
* <p>An internal error occurred while processing the request. Try again later.</p>
|
|
417
426
|
*/
|
|
418
|
-
export
|
|
419
|
-
name: "InternalServerErrorException";
|
|
420
|
-
$fault: "server";
|
|
427
|
+
export declare class InternalServerErrorException extends __BaseException {
|
|
428
|
+
readonly name: "InternalServerErrorException";
|
|
429
|
+
readonly $fault: "server";
|
|
421
430
|
Message?: string;
|
|
431
|
+
/**
|
|
432
|
+
* @internal
|
|
433
|
+
*/
|
|
434
|
+
constructor(opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>);
|
|
422
435
|
}
|
|
423
436
|
/**
|
|
424
437
|
* <p>The request uses an HTTP method that isn't allowed for the specified resource.</p>
|
|
425
438
|
*/
|
|
426
|
-
export
|
|
427
|
-
name: "MethodNotAllowedException";
|
|
428
|
-
$fault: "client";
|
|
439
|
+
export declare class MethodNotAllowedException extends __BaseException {
|
|
440
|
+
readonly name: "MethodNotAllowedException";
|
|
441
|
+
readonly $fault: "client";
|
|
429
442
|
Message?: string;
|
|
443
|
+
/**
|
|
444
|
+
* @internal
|
|
445
|
+
*/
|
|
446
|
+
constructor(opts: __ExceptionOptionType<MethodNotAllowedException, __BaseException>);
|
|
430
447
|
}
|
|
431
448
|
/**
|
|
432
449
|
* <p>You've exceeded throttling limits by making too many requests in a period of
|
|
433
450
|
* time.</p>
|
|
434
451
|
*/
|
|
435
|
-
export
|
|
436
|
-
name: "TooManyRequestsException";
|
|
437
|
-
$fault: "client";
|
|
452
|
+
export declare class TooManyRequestsException extends __BaseException {
|
|
453
|
+
readonly name: "TooManyRequestsException";
|
|
454
|
+
readonly $fault: "client";
|
|
438
455
|
Message?: string;
|
|
456
|
+
/**
|
|
457
|
+
* @internal
|
|
458
|
+
*/
|
|
459
|
+
constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
|
|
439
460
|
}
|
|
440
461
|
export interface DeleteGroupInput {
|
|
441
462
|
/**
|
|
@@ -470,10 +491,14 @@ export declare namespace DeleteGroupOutput {
|
|
|
470
491
|
/**
|
|
471
492
|
* <p>One or more of the specified resources don't exist.</p>
|
|
472
493
|
*/
|
|
473
|
-
export
|
|
474
|
-
name: "NotFoundException";
|
|
475
|
-
$fault: "client";
|
|
494
|
+
export declare class NotFoundException extends __BaseException {
|
|
495
|
+
readonly name: "NotFoundException";
|
|
496
|
+
readonly $fault: "client";
|
|
476
497
|
Message?: string;
|
|
498
|
+
/**
|
|
499
|
+
* @internal
|
|
500
|
+
*/
|
|
501
|
+
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
477
502
|
}
|
|
478
503
|
export interface GetGroupInput {
|
|
479
504
|
/**
|
|
@@ -941,10 +966,14 @@ export declare namespace ListGroupResourcesOutput {
|
|
|
941
966
|
* <p>The request was rejected because it doesn't have valid credentials for the target
|
|
942
967
|
* resource.</p>
|
|
943
968
|
*/
|
|
944
|
-
export
|
|
945
|
-
name: "UnauthorizedException";
|
|
946
|
-
$fault: "client";
|
|
969
|
+
export declare class UnauthorizedException extends __BaseException {
|
|
970
|
+
readonly name: "UnauthorizedException";
|
|
971
|
+
readonly $fault: "client";
|
|
947
972
|
Message?: string;
|
|
973
|
+
/**
|
|
974
|
+
* @internal
|
|
975
|
+
*/
|
|
976
|
+
constructor(opts: __ExceptionOptionType<UnauthorizedException, __BaseException>);
|
|
948
977
|
}
|
|
949
978
|
export declare enum GroupFilterName {
|
|
950
979
|
ConfigurationType = "configuration-type",
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: ResourceGroupsClientConfig) => {
|
|
|
8
8
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
10
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
13
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
14
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: ResourceGroupsClientConfig) => {
|
|
|
8
8
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
10
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
13
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
14
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: ResourceGroupsClientConfig) => {
|
|
|
8
8
|
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
9
9
|
apiVersion: string;
|
|
10
10
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
13
13
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
14
14
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
@@ -5,7 +5,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
|
|
|
5
5
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
6
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
|
-
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
8
|
+
import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
9
|
import { CreateGroupCommandInput, CreateGroupCommandOutput } from "./commands/CreateGroupCommand";
|
|
10
10
|
import { DeleteGroupCommandInput, DeleteGroupCommandOutput } from "./commands/DeleteGroupCommand";
|
|
11
11
|
import { GetGroupCommandInput, GetGroupCommandOutput } from "./commands/GetGroupCommand";
|
|
@@ -32,7 +32,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
32
32
|
|
|
33
33
|
urlParser?: __UrlParser;
|
|
34
34
|
|
|
35
|
-
bodyLengthChecker?:
|
|
35
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
36
36
|
|
|
37
37
|
streamCollector?: __StreamCollector;
|
|
38
38
|
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
|
|
3
|
+
export declare class ResourceGroupsServiceException extends __ServiceException {
|
|
4
|
+
|
|
5
|
+
constructor(options: __ServiceExceptionOptions);
|
|
6
|
+
}
|
|
@@ -1,9 +1,12 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { ResourceGroupsServiceException as __BaseException } from "./ResourceGroupsServiceException";
|
|
2
3
|
|
|
3
|
-
export
|
|
4
|
-
name: "BadRequestException";
|
|
5
|
-
$fault: "client";
|
|
4
|
+
export declare class BadRequestException extends __BaseException {
|
|
5
|
+
readonly name: "BadRequestException";
|
|
6
|
+
readonly $fault: "client";
|
|
6
7
|
Message?: string;
|
|
8
|
+
|
|
9
|
+
constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
|
|
7
10
|
}
|
|
8
11
|
|
|
9
12
|
export interface GroupConfigurationParameter {
|
|
@@ -110,28 +113,36 @@ export declare namespace CreateGroupOutput {
|
|
|
110
113
|
const filterSensitiveLog: (obj: CreateGroupOutput) => any;
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
export
|
|
114
|
-
name: "ForbiddenException";
|
|
115
|
-
$fault: "client";
|
|
116
|
+
export declare class ForbiddenException extends __BaseException {
|
|
117
|
+
readonly name: "ForbiddenException";
|
|
118
|
+
readonly $fault: "client";
|
|
116
119
|
Message?: string;
|
|
120
|
+
|
|
121
|
+
constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
|
|
117
122
|
}
|
|
118
123
|
|
|
119
|
-
export
|
|
120
|
-
name: "InternalServerErrorException";
|
|
121
|
-
$fault: "server";
|
|
124
|
+
export declare class InternalServerErrorException extends __BaseException {
|
|
125
|
+
readonly name: "InternalServerErrorException";
|
|
126
|
+
readonly $fault: "server";
|
|
122
127
|
Message?: string;
|
|
128
|
+
|
|
129
|
+
constructor(opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>);
|
|
123
130
|
}
|
|
124
131
|
|
|
125
|
-
export
|
|
126
|
-
name: "MethodNotAllowedException";
|
|
127
|
-
$fault: "client";
|
|
132
|
+
export declare class MethodNotAllowedException extends __BaseException {
|
|
133
|
+
readonly name: "MethodNotAllowedException";
|
|
134
|
+
readonly $fault: "client";
|
|
128
135
|
Message?: string;
|
|
136
|
+
|
|
137
|
+
constructor(opts: __ExceptionOptionType<MethodNotAllowedException, __BaseException>);
|
|
129
138
|
}
|
|
130
139
|
|
|
131
|
-
export
|
|
132
|
-
name: "TooManyRequestsException";
|
|
133
|
-
$fault: "client";
|
|
140
|
+
export declare class TooManyRequestsException extends __BaseException {
|
|
141
|
+
readonly name: "TooManyRequestsException";
|
|
142
|
+
readonly $fault: "client";
|
|
134
143
|
Message?: string;
|
|
144
|
+
|
|
145
|
+
constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
|
|
135
146
|
}
|
|
136
147
|
export interface DeleteGroupInput {
|
|
137
148
|
|
|
@@ -152,10 +163,12 @@ export declare namespace DeleteGroupOutput {
|
|
|
152
163
|
const filterSensitiveLog: (obj: DeleteGroupOutput) => any;
|
|
153
164
|
}
|
|
154
165
|
|
|
155
|
-
export
|
|
156
|
-
name: "NotFoundException";
|
|
157
|
-
$fault: "client";
|
|
166
|
+
export declare class NotFoundException extends __BaseException {
|
|
167
|
+
readonly name: "NotFoundException";
|
|
168
|
+
readonly $fault: "client";
|
|
158
169
|
Message?: string;
|
|
170
|
+
|
|
171
|
+
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
159
172
|
}
|
|
160
173
|
export interface GetGroupInput {
|
|
161
174
|
|
|
@@ -378,10 +391,12 @@ export declare namespace ListGroupResourcesOutput {
|
|
|
378
391
|
const filterSensitiveLog: (obj: ListGroupResourcesOutput) => any;
|
|
379
392
|
}
|
|
380
393
|
|
|
381
|
-
export
|
|
382
|
-
name: "UnauthorizedException";
|
|
383
|
-
$fault: "client";
|
|
394
|
+
export declare class UnauthorizedException extends __BaseException {
|
|
395
|
+
readonly name: "UnauthorizedException";
|
|
396
|
+
readonly $fault: "client";
|
|
384
397
|
Message?: string;
|
|
398
|
+
|
|
399
|
+
constructor(opts: __ExceptionOptionType<UnauthorizedException, __BaseException>);
|
|
385
400
|
}
|
|
386
401
|
export declare enum GroupFilterName {
|
|
387
402
|
ConfigurationType = "configuration-type",
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: ResourceGroupsClientConfig) => {
|
|
|
6
6
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: ResourceGroupsClientConfig) => {
|
|
|
6
6
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: ResourceGroupsClientConfig) => {
|
|
|
6
6
|
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
7
7
|
apiVersion: string;
|
|
8
8
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
11
11
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
12
12
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-resource-groups",
|
|
3
3
|
"description": "AWS SDK for JavaScript Resource Groups Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.54.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -9,7 +9,7 @@
|
|
|
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": "rimraf ./dist-*"
|
|
12
|
+
"clean": "rimraf ./dist-* && rimraf *.tsbuildinfo"
|
|
13
13
|
},
|
|
14
14
|
"main": "./dist-cjs/index.js",
|
|
15
15
|
"types": "./dist-types/index.d.ts",
|
|
@@ -18,40 +18,40 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-retry": "3.
|
|
31
|
-
"@aws-sdk/middleware-serde": "3.
|
|
32
|
-
"@aws-sdk/middleware-signing": "3.
|
|
33
|
-
"@aws-sdk/middleware-stack": "3.
|
|
34
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
35
|
-
"@aws-sdk/node-config-provider": "3.
|
|
36
|
-
"@aws-sdk/node-http-handler": "3.
|
|
37
|
-
"@aws-sdk/protocol-http": "3.
|
|
38
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
-
"@aws-sdk/types": "3.
|
|
40
|
-
"@aws-sdk/url-parser": "3.
|
|
41
|
-
"@aws-sdk/util-base64-browser": "3.
|
|
42
|
-
"@aws-sdk/util-base64-node": "3.
|
|
43
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
44
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
49
|
-
"@aws-sdk/util-utf8-browser": "3.
|
|
50
|
-
"@aws-sdk/util-utf8-node": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.54.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.54.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.54.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.54.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.54.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.54.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.54.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.54.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.54.0",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.54.0",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.54.0",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.54.0",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.54.0",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.54.0",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.54.0",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.54.0",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.54.0",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.54.0",
|
|
39
|
+
"@aws-sdk/types": "3.54.0",
|
|
40
|
+
"@aws-sdk/url-parser": "3.54.0",
|
|
41
|
+
"@aws-sdk/util-base64-browser": "3.52.0",
|
|
42
|
+
"@aws-sdk/util-base64-node": "3.52.0",
|
|
43
|
+
"@aws-sdk/util-body-length-browser": "3.54.0",
|
|
44
|
+
"@aws-sdk/util-body-length-node": "3.54.0",
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.54.0",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.54.0",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.54.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.54.0",
|
|
49
|
+
"@aws-sdk/util-utf8-browser": "3.52.0",
|
|
50
|
+
"@aws-sdk/util-utf8-node": "3.52.0",
|
|
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.52.0",
|
|
55
55
|
"@tsconfig/recommended": "1.0.1",
|
|
56
56
|
"@types/node": "^12.7.5",
|
|
57
57
|
"concurrently": "7.0.0",
|