@aws-sdk/client-resource-groups 3.490.0 → 3.495.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/ResourceGroups.js +1 -47
- package/dist-cjs/ResourceGroupsClient.js +1 -43
- package/dist-cjs/commands/CreateGroupCommand.js +1 -28
- package/dist-cjs/commands/DeleteGroupCommand.js +1 -28
- package/dist-cjs/commands/GetAccountSettingsCommand.js +1 -28
- package/dist-cjs/commands/GetGroupCommand.js +1 -28
- package/dist-cjs/commands/GetGroupConfigurationCommand.js +1 -28
- package/dist-cjs/commands/GetGroupQueryCommand.js +1 -28
- package/dist-cjs/commands/GetTagsCommand.js +1 -28
- package/dist-cjs/commands/GroupResourcesCommand.js +1 -28
- package/dist-cjs/commands/ListGroupResourcesCommand.js +1 -28
- package/dist-cjs/commands/ListGroupsCommand.js +1 -28
- package/dist-cjs/commands/PutGroupConfigurationCommand.js +1 -28
- package/dist-cjs/commands/SearchResourcesCommand.js +1 -28
- package/dist-cjs/commands/TagCommand.js +1 -28
- package/dist-cjs/commands/UngroupResourcesCommand.js +1 -28
- package/dist-cjs/commands/UntagCommand.js +1 -28
- package/dist-cjs/commands/UpdateAccountSettingsCommand.js +1 -28
- package/dist-cjs/commands/UpdateGroupCommand.js +1 -28
- package/dist-cjs/commands/UpdateGroupQueryCommand.js +1 -28
- package/dist-cjs/commands/index.js +1 -21
- package/dist-cjs/endpoint/EndpointParameters.js +1 -18
- package/dist-cjs/extensionConfiguration.js +1 -2
- package/dist-cjs/index.js +2024 -11
- package/dist-cjs/models/ResourceGroupsServiceException.js +1 -12
- package/dist-cjs/models/index.js +1 -4
- package/dist-cjs/models/models_0.js +1 -136
- package/dist-cjs/pagination/Interfaces.js +1 -2
- package/dist-cjs/pagination/ListGroupResourcesPaginator.js +1 -7
- package/dist-cjs/pagination/ListGroupsPaginator.js +1 -7
- package/dist-cjs/pagination/SearchResourcesPaginator.js +1 -7
- package/dist-cjs/pagination/index.js +1 -7
- package/dist-cjs/protocols/Aws_restJson1.js +1 -1313
- package/dist-cjs/runtimeExtensions.js +1 -22
- package/package.json +40 -40
|
@@ -1,12 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ResourceGroupsServiceException = exports.__ServiceException = void 0;
|
|
4
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
5
|
-
Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return smithy_client_1.ServiceException; } });
|
|
6
|
-
class ResourceGroupsServiceException extends smithy_client_1.ServiceException {
|
|
7
|
-
constructor(options) {
|
|
8
|
-
super(options);
|
|
9
|
-
Object.setPrototypeOf(this, ResourceGroupsServiceException.prototype);
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
|
-
exports.ResourceGroupsServiceException = ResourceGroupsServiceException;
|
|
1
|
+
module.exports = require("../index.js");
|
package/dist-cjs/models/index.js
CHANGED
|
@@ -1,136 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.GroupFilterName = exports.UnauthorizedException = exports.ResourceStatusValue = exports.QueryErrorCode = exports.ResourceFilterName = exports.NotFoundException = exports.TooManyRequestsException = exports.MethodNotAllowedException = exports.InternalServerErrorException = exports.ForbiddenException = exports.GroupConfigurationStatus = exports.QueryType = exports.BadRequestException = exports.GroupLifecycleEventsStatus = exports.GroupLifecycleEventsDesiredStatus = void 0;
|
|
4
|
-
const ResourceGroupsServiceException_1 = require("./ResourceGroupsServiceException");
|
|
5
|
-
exports.GroupLifecycleEventsDesiredStatus = {
|
|
6
|
-
ACTIVE: "ACTIVE",
|
|
7
|
-
INACTIVE: "INACTIVE",
|
|
8
|
-
};
|
|
9
|
-
exports.GroupLifecycleEventsStatus = {
|
|
10
|
-
ACTIVE: "ACTIVE",
|
|
11
|
-
ERROR: "ERROR",
|
|
12
|
-
INACTIVE: "INACTIVE",
|
|
13
|
-
IN_PROGRESS: "IN_PROGRESS",
|
|
14
|
-
};
|
|
15
|
-
class BadRequestException extends ResourceGroupsServiceException_1.ResourceGroupsServiceException {
|
|
16
|
-
constructor(opts) {
|
|
17
|
-
super({
|
|
18
|
-
name: "BadRequestException",
|
|
19
|
-
$fault: "client",
|
|
20
|
-
...opts,
|
|
21
|
-
});
|
|
22
|
-
this.name = "BadRequestException";
|
|
23
|
-
this.$fault = "client";
|
|
24
|
-
Object.setPrototypeOf(this, BadRequestException.prototype);
|
|
25
|
-
this.Message = opts.Message;
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
exports.BadRequestException = BadRequestException;
|
|
29
|
-
exports.QueryType = {
|
|
30
|
-
CLOUDFORMATION_STACK_1_0: "CLOUDFORMATION_STACK_1_0",
|
|
31
|
-
TAG_FILTERS_1_0: "TAG_FILTERS_1_0",
|
|
32
|
-
};
|
|
33
|
-
exports.GroupConfigurationStatus = {
|
|
34
|
-
UPDATE_COMPLETE: "UPDATE_COMPLETE",
|
|
35
|
-
UPDATE_FAILED: "UPDATE_FAILED",
|
|
36
|
-
UPDATING: "UPDATING",
|
|
37
|
-
};
|
|
38
|
-
class ForbiddenException extends ResourceGroupsServiceException_1.ResourceGroupsServiceException {
|
|
39
|
-
constructor(opts) {
|
|
40
|
-
super({
|
|
41
|
-
name: "ForbiddenException",
|
|
42
|
-
$fault: "client",
|
|
43
|
-
...opts,
|
|
44
|
-
});
|
|
45
|
-
this.name = "ForbiddenException";
|
|
46
|
-
this.$fault = "client";
|
|
47
|
-
Object.setPrototypeOf(this, ForbiddenException.prototype);
|
|
48
|
-
this.Message = opts.Message;
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
-
exports.ForbiddenException = ForbiddenException;
|
|
52
|
-
class InternalServerErrorException extends ResourceGroupsServiceException_1.ResourceGroupsServiceException {
|
|
53
|
-
constructor(opts) {
|
|
54
|
-
super({
|
|
55
|
-
name: "InternalServerErrorException",
|
|
56
|
-
$fault: "server",
|
|
57
|
-
...opts,
|
|
58
|
-
});
|
|
59
|
-
this.name = "InternalServerErrorException";
|
|
60
|
-
this.$fault = "server";
|
|
61
|
-
Object.setPrototypeOf(this, InternalServerErrorException.prototype);
|
|
62
|
-
this.Message = opts.Message;
|
|
63
|
-
}
|
|
64
|
-
}
|
|
65
|
-
exports.InternalServerErrorException = InternalServerErrorException;
|
|
66
|
-
class MethodNotAllowedException extends ResourceGroupsServiceException_1.ResourceGroupsServiceException {
|
|
67
|
-
constructor(opts) {
|
|
68
|
-
super({
|
|
69
|
-
name: "MethodNotAllowedException",
|
|
70
|
-
$fault: "client",
|
|
71
|
-
...opts,
|
|
72
|
-
});
|
|
73
|
-
this.name = "MethodNotAllowedException";
|
|
74
|
-
this.$fault = "client";
|
|
75
|
-
Object.setPrototypeOf(this, MethodNotAllowedException.prototype);
|
|
76
|
-
this.Message = opts.Message;
|
|
77
|
-
}
|
|
78
|
-
}
|
|
79
|
-
exports.MethodNotAllowedException = MethodNotAllowedException;
|
|
80
|
-
class TooManyRequestsException extends ResourceGroupsServiceException_1.ResourceGroupsServiceException {
|
|
81
|
-
constructor(opts) {
|
|
82
|
-
super({
|
|
83
|
-
name: "TooManyRequestsException",
|
|
84
|
-
$fault: "client",
|
|
85
|
-
...opts,
|
|
86
|
-
});
|
|
87
|
-
this.name = "TooManyRequestsException";
|
|
88
|
-
this.$fault = "client";
|
|
89
|
-
Object.setPrototypeOf(this, TooManyRequestsException.prototype);
|
|
90
|
-
this.Message = opts.Message;
|
|
91
|
-
}
|
|
92
|
-
}
|
|
93
|
-
exports.TooManyRequestsException = TooManyRequestsException;
|
|
94
|
-
class NotFoundException extends ResourceGroupsServiceException_1.ResourceGroupsServiceException {
|
|
95
|
-
constructor(opts) {
|
|
96
|
-
super({
|
|
97
|
-
name: "NotFoundException",
|
|
98
|
-
$fault: "client",
|
|
99
|
-
...opts,
|
|
100
|
-
});
|
|
101
|
-
this.name = "NotFoundException";
|
|
102
|
-
this.$fault = "client";
|
|
103
|
-
Object.setPrototypeOf(this, NotFoundException.prototype);
|
|
104
|
-
this.Message = opts.Message;
|
|
105
|
-
}
|
|
106
|
-
}
|
|
107
|
-
exports.NotFoundException = NotFoundException;
|
|
108
|
-
exports.ResourceFilterName = {
|
|
109
|
-
ResourceType: "resource-type",
|
|
110
|
-
};
|
|
111
|
-
exports.QueryErrorCode = {
|
|
112
|
-
CLOUDFORMATION_STACK_INACTIVE: "CLOUDFORMATION_STACK_INACTIVE",
|
|
113
|
-
CLOUDFORMATION_STACK_NOT_EXISTING: "CLOUDFORMATION_STACK_NOT_EXISTING",
|
|
114
|
-
CLOUDFORMATION_STACK_UNASSUMABLE_ROLE: "CLOUDFORMATION_STACK_UNASSUMABLE_ROLE",
|
|
115
|
-
};
|
|
116
|
-
exports.ResourceStatusValue = {
|
|
117
|
-
Pending: "PENDING",
|
|
118
|
-
};
|
|
119
|
-
class UnauthorizedException extends ResourceGroupsServiceException_1.ResourceGroupsServiceException {
|
|
120
|
-
constructor(opts) {
|
|
121
|
-
super({
|
|
122
|
-
name: "UnauthorizedException",
|
|
123
|
-
$fault: "client",
|
|
124
|
-
...opts,
|
|
125
|
-
});
|
|
126
|
-
this.name = "UnauthorizedException";
|
|
127
|
-
this.$fault = "client";
|
|
128
|
-
Object.setPrototypeOf(this, UnauthorizedException.prototype);
|
|
129
|
-
this.Message = opts.Message;
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
exports.UnauthorizedException = UnauthorizedException;
|
|
133
|
-
exports.GroupFilterName = {
|
|
134
|
-
ConfigurationType: "configuration-type",
|
|
135
|
-
ResourceType: "resource-type",
|
|
136
|
-
};
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateListGroupResources = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const ListGroupResourcesCommand_1 = require("../commands/ListGroupResourcesCommand");
|
|
6
|
-
const ResourceGroupsClient_1 = require("../ResourceGroupsClient");
|
|
7
|
-
exports.paginateListGroupResources = (0, core_1.createPaginator)(ResourceGroupsClient_1.ResourceGroupsClient, ListGroupResourcesCommand_1.ListGroupResourcesCommand, "NextToken", "NextToken", "MaxResults");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateListGroups = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const ListGroupsCommand_1 = require("../commands/ListGroupsCommand");
|
|
6
|
-
const ResourceGroupsClient_1 = require("../ResourceGroupsClient");
|
|
7
|
-
exports.paginateListGroups = (0, core_1.createPaginator)(ResourceGroupsClient_1.ResourceGroupsClient, ListGroupsCommand_1.ListGroupsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateSearchResources = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const SearchResourcesCommand_1 = require("../commands/SearchResourcesCommand");
|
|
6
|
-
const ResourceGroupsClient_1 = require("../ResourceGroupsClient");
|
|
7
|
-
exports.paginateSearchResources = (0, core_1.createPaginator)(ResourceGroupsClient_1.ResourceGroupsClient, SearchResourcesCommand_1.SearchResourcesCommand, "NextToken", "NextToken", "MaxResults");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const tslib_1 = require("tslib");
|
|
4
|
-
tslib_1.__exportStar(require("./Interfaces"), exports);
|
|
5
|
-
tslib_1.__exportStar(require("./ListGroupResourcesPaginator"), exports);
|
|
6
|
-
tslib_1.__exportStar(require("./ListGroupsPaginator"), exports);
|
|
7
|
-
tslib_1.__exportStar(require("./SearchResourcesPaginator"), exports);
|
|
1
|
+
module.exports = require("../index.js");
|