@aws-sdk/client-resource-groups 3.952.0 → 3.953.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 +326 -217
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/CancelTagSyncTaskCommand.js +2 -2
- package/dist-es/commands/CreateGroupCommand.js +2 -2
- package/dist-es/commands/DeleteGroupCommand.js +2 -2
- package/dist-es/commands/GetAccountSettingsCommand.js +2 -2
- package/dist-es/commands/GetGroupCommand.js +2 -2
- package/dist-es/commands/GetGroupConfigurationCommand.js +2 -2
- package/dist-es/commands/GetGroupQueryCommand.js +2 -2
- package/dist-es/commands/GetTagSyncTaskCommand.js +2 -2
- package/dist-es/commands/GetTagsCommand.js +2 -2
- package/dist-es/commands/GroupResourcesCommand.js +2 -2
- package/dist-es/commands/ListGroupResourcesCommand.js +2 -2
- package/dist-es/commands/ListGroupingStatusesCommand.js +2 -2
- package/dist-es/commands/ListGroupsCommand.js +2 -2
- package/dist-es/commands/ListTagSyncTasksCommand.js +2 -2
- package/dist-es/commands/PutGroupConfigurationCommand.js +2 -2
- package/dist-es/commands/SearchResourcesCommand.js +2 -2
- package/dist-es/commands/StartTagSyncTaskCommand.js +2 -2
- package/dist-es/commands/TagCommand.js +2 -2
- package/dist-es/commands/UngroupResourcesCommand.js +2 -2
- package/dist-es/commands/UntagCommand.js +2 -2
- package/dist-es/commands/UpdateAccountSettingsCommand.js +2 -2
- package/dist-es/commands/UpdateGroupCommand.js +2 -2
- package/dist-es/commands/UpdateGroupQueryCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -1
- package/dist-es/schemas/schemas_0.js +198 -184
- package/dist-types/ResourceGroupsClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +96 -120
- package/dist-types/ts3.4/ResourceGroupsClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +95 -120
- package/package.json +34 -34
|
@@ -26,7 +26,12 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.resourcegroups",
|
|
32
|
+
version: "2017-11-27",
|
|
33
|
+
serviceTarget: "Ardi",
|
|
34
|
+
},
|
|
30
35
|
serviceId: config?.serviceId ?? "Resource Groups",
|
|
31
36
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
32
37
|
utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CancelTagSyncTask } from "../schemas/schemas_0";
|
|
4
|
+
import { CancelTagSyncTask$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CancelTagSyncTaskCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CancelTagSyncTaskCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Ardi", "CancelTagSyncTask", {})
|
|
13
13
|
.n("ResourceGroupsClient", "CancelTagSyncTaskCommand")
|
|
14
|
-
.sc(CancelTagSyncTask)
|
|
14
|
+
.sc(CancelTagSyncTask$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateGroup } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateGroup$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateGroupCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateGroupCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Ardi", "CreateGroup", {})
|
|
13
13
|
.n("ResourceGroupsClient", "CreateGroupCommand")
|
|
14
|
-
.sc(CreateGroup)
|
|
14
|
+
.sc(CreateGroup$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteGroup } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteGroup$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteGroupCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteGroupCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Ardi", "DeleteGroup", {})
|
|
13
13
|
.n("ResourceGroupsClient", "DeleteGroupCommand")
|
|
14
|
-
.sc(DeleteGroup)
|
|
14
|
+
.sc(DeleteGroup$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetAccountSettings } from "../schemas/schemas_0";
|
|
4
|
+
import { GetAccountSettings$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetAccountSettingsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetAccountSettingsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Ardi", "GetAccountSettings", {})
|
|
13
13
|
.n("ResourceGroupsClient", "GetAccountSettingsCommand")
|
|
14
|
-
.sc(GetAccountSettings)
|
|
14
|
+
.sc(GetAccountSettings$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetGroup } from "../schemas/schemas_0";
|
|
4
|
+
import { GetGroup$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetGroupCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetGroupCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Ardi", "GetGroup", {})
|
|
13
13
|
.n("ResourceGroupsClient", "GetGroupCommand")
|
|
14
|
-
.sc(GetGroup)
|
|
14
|
+
.sc(GetGroup$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetGroupConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { GetGroupConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetGroupConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetGroupConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Ardi", "GetGroupConfiguration", {})
|
|
13
13
|
.n("ResourceGroupsClient", "GetGroupConfigurationCommand")
|
|
14
|
-
.sc(GetGroupConfiguration)
|
|
14
|
+
.sc(GetGroupConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetGroupQuery } from "../schemas/schemas_0";
|
|
4
|
+
import { GetGroupQuery$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetGroupQueryCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetGroupQueryCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Ardi", "GetGroupQuery", {})
|
|
13
13
|
.n("ResourceGroupsClient", "GetGroupQueryCommand")
|
|
14
|
-
.sc(GetGroupQuery)
|
|
14
|
+
.sc(GetGroupQuery$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetTagSyncTask } from "../schemas/schemas_0";
|
|
4
|
+
import { GetTagSyncTask$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetTagSyncTaskCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetTagSyncTaskCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Ardi", "GetTagSyncTask", {})
|
|
13
13
|
.n("ResourceGroupsClient", "GetTagSyncTaskCommand")
|
|
14
|
-
.sc(GetTagSyncTask)
|
|
14
|
+
.sc(GetTagSyncTask$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetTags } from "../schemas/schemas_0";
|
|
4
|
+
import { GetTags$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetTagsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetTagsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Ardi", "GetTags", {})
|
|
13
13
|
.n("ResourceGroupsClient", "GetTagsCommand")
|
|
14
|
-
.sc(GetTags)
|
|
14
|
+
.sc(GetTags$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GroupResources } from "../schemas/schemas_0";
|
|
4
|
+
import { GroupResources$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GroupResourcesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GroupResourcesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Ardi", "GroupResources", {})
|
|
13
13
|
.n("ResourceGroupsClient", "GroupResourcesCommand")
|
|
14
|
-
.sc(GroupResources)
|
|
14
|
+
.sc(GroupResources$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListGroupResources } from "../schemas/schemas_0";
|
|
4
|
+
import { ListGroupResources$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListGroupResourcesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListGroupResourcesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Ardi", "ListGroupResources", {})
|
|
13
13
|
.n("ResourceGroupsClient", "ListGroupResourcesCommand")
|
|
14
|
-
.sc(ListGroupResources)
|
|
14
|
+
.sc(ListGroupResources$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListGroupingStatuses } from "../schemas/schemas_0";
|
|
4
|
+
import { ListGroupingStatuses$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListGroupingStatusesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListGroupingStatusesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Ardi", "ListGroupingStatuses", {})
|
|
13
13
|
.n("ResourceGroupsClient", "ListGroupingStatusesCommand")
|
|
14
|
-
.sc(ListGroupingStatuses)
|
|
14
|
+
.sc(ListGroupingStatuses$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListGroups } from "../schemas/schemas_0";
|
|
4
|
+
import { ListGroups$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListGroupsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListGroupsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Ardi", "ListGroups", {})
|
|
13
13
|
.n("ResourceGroupsClient", "ListGroupsCommand")
|
|
14
|
-
.sc(ListGroups)
|
|
14
|
+
.sc(ListGroups$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListTagSyncTasks } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTagSyncTasks$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTagSyncTasksCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTagSyncTasksCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Ardi", "ListTagSyncTasks", {})
|
|
13
13
|
.n("ResourceGroupsClient", "ListTagSyncTasksCommand")
|
|
14
|
-
.sc(ListTagSyncTasks)
|
|
14
|
+
.sc(ListTagSyncTasks$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { PutGroupConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { PutGroupConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class PutGroupConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class PutGroupConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Ardi", "PutGroupConfiguration", {})
|
|
13
13
|
.n("ResourceGroupsClient", "PutGroupConfigurationCommand")
|
|
14
|
-
.sc(PutGroupConfiguration)
|
|
14
|
+
.sc(PutGroupConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { SearchResources } from "../schemas/schemas_0";
|
|
4
|
+
import { SearchResources$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class SearchResourcesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class SearchResourcesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Ardi", "SearchResources", {})
|
|
13
13
|
.n("ResourceGroupsClient", "SearchResourcesCommand")
|
|
14
|
-
.sc(SearchResources)
|
|
14
|
+
.sc(SearchResources$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { StartTagSyncTask } from "../schemas/schemas_0";
|
|
4
|
+
import { StartTagSyncTask$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StartTagSyncTaskCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StartTagSyncTaskCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Ardi", "StartTagSyncTask", {})
|
|
13
13
|
.n("ResourceGroupsClient", "StartTagSyncTaskCommand")
|
|
14
|
-
.sc(StartTagSyncTask)
|
|
14
|
+
.sc(StartTagSyncTask$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { Tag } from "../schemas/schemas_0";
|
|
4
|
+
import { Tag$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class TagCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class TagCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Ardi", "Tag", {})
|
|
13
13
|
.n("ResourceGroupsClient", "TagCommand")
|
|
14
|
-
.sc(Tag)
|
|
14
|
+
.sc(Tag$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UngroupResources } from "../schemas/schemas_0";
|
|
4
|
+
import { UngroupResources$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UngroupResourcesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UngroupResourcesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Ardi", "UngroupResources", {})
|
|
13
13
|
.n("ResourceGroupsClient", "UngroupResourcesCommand")
|
|
14
|
-
.sc(UngroupResources)
|
|
14
|
+
.sc(UngroupResources$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { Untag } from "../schemas/schemas_0";
|
|
4
|
+
import { Untag$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UntagCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UntagCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Ardi", "Untag", {})
|
|
13
13
|
.n("ResourceGroupsClient", "UntagCommand")
|
|
14
|
-
.sc(Untag)
|
|
14
|
+
.sc(Untag$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateAccountSettings } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateAccountSettings$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateAccountSettingsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateAccountSettingsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Ardi", "UpdateAccountSettings", {})
|
|
13
13
|
.n("ResourceGroupsClient", "UpdateAccountSettingsCommand")
|
|
14
|
-
.sc(UpdateAccountSettings)
|
|
14
|
+
.sc(UpdateAccountSettings$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateGroup } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateGroup$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateGroupCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateGroupCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Ardi", "UpdateGroup", {})
|
|
13
13
|
.n("ResourceGroupsClient", "UpdateGroupCommand")
|
|
14
|
-
.sc(UpdateGroup)
|
|
14
|
+
.sc(UpdateGroup$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateGroupQuery } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateGroupQuery$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateGroupQueryCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateGroupQueryCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Ardi", "UpdateGroupQuery", {})
|
|
13
13
|
.n("ResourceGroupsClient", "UpdateGroupQueryCommand")
|
|
14
|
-
.sc(UpdateGroupQuery)
|
|
14
|
+
.sc(UpdateGroupQuery$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -23,7 +23,12 @@ export const getRuntimeConfig = (config) => {
|
|
|
23
23
|
},
|
|
24
24
|
],
|
|
25
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
-
protocol: config?.protocol ??
|
|
26
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
27
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
28
|
+
defaultNamespace: "com.amazonaws.resourcegroups",
|
|
29
|
+
version: "2017-11-27",
|
|
30
|
+
serviceTarget: "Ardi",
|
|
31
|
+
},
|
|
27
32
|
serviceId: config?.serviceId ?? "Resource Groups",
|
|
28
33
|
urlParser: config?.urlParser ?? parseUrl,
|
|
29
34
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|