@aws-sdk/client-resource-explorer-2 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.
Files changed (52) hide show
  1. package/dist-cjs/index.js +391 -266
  2. package/dist-cjs/runtimeConfig.shared.js +6 -1
  3. package/dist-es/commands/AssociateDefaultViewCommand.js +2 -2
  4. package/dist-es/commands/BatchGetViewCommand.js +2 -2
  5. package/dist-es/commands/CreateIndexCommand.js +2 -2
  6. package/dist-es/commands/CreateResourceExplorerSetupCommand.js +2 -2
  7. package/dist-es/commands/CreateViewCommand.js +2 -2
  8. package/dist-es/commands/DeleteIndexCommand.js +2 -2
  9. package/dist-es/commands/DeleteResourceExplorerSetupCommand.js +2 -2
  10. package/dist-es/commands/DeleteViewCommand.js +2 -2
  11. package/dist-es/commands/DisassociateDefaultViewCommand.js +2 -2
  12. package/dist-es/commands/GetAccountLevelServiceConfigurationCommand.js +2 -2
  13. package/dist-es/commands/GetDefaultViewCommand.js +2 -2
  14. package/dist-es/commands/GetIndexCommand.js +2 -2
  15. package/dist-es/commands/GetManagedViewCommand.js +2 -2
  16. package/dist-es/commands/GetResourceExplorerSetupCommand.js +2 -2
  17. package/dist-es/commands/GetServiceIndexCommand.js +2 -2
  18. package/dist-es/commands/GetServiceViewCommand.js +2 -2
  19. package/dist-es/commands/GetViewCommand.js +2 -2
  20. package/dist-es/commands/ListIndexesCommand.js +2 -2
  21. package/dist-es/commands/ListIndexesForMembersCommand.js +2 -2
  22. package/dist-es/commands/ListManagedViewsCommand.js +2 -2
  23. package/dist-es/commands/ListResourcesCommand.js +2 -2
  24. package/dist-es/commands/ListServiceIndexesCommand.js +2 -2
  25. package/dist-es/commands/ListServiceViewsCommand.js +2 -2
  26. package/dist-es/commands/ListStreamingAccessForServicesCommand.js +2 -2
  27. package/dist-es/commands/ListSupportedResourceTypesCommand.js +2 -2
  28. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  29. package/dist-es/commands/ListViewsCommand.js +2 -2
  30. package/dist-es/commands/SearchCommand.js +2 -2
  31. package/dist-es/commands/TagResourceCommand.js +2 -2
  32. package/dist-es/commands/UntagResourceCommand.js +2 -2
  33. package/dist-es/commands/UpdateIndexTypeCommand.js +2 -2
  34. package/dist-es/commands/UpdateViewCommand.js +2 -2
  35. package/dist-es/index.js +1 -0
  36. package/dist-es/runtimeConfig.shared.js +6 -1
  37. package/dist-es/schemas/schemas_0.js +227 -220
  38. package/dist-types/ResourceExplorer2Client.d.ts +1 -10
  39. package/dist-types/index.d.ts +1 -0
  40. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  41. package/dist-types/runtimeConfig.d.ts +6 -2
  42. package/dist-types/runtimeConfig.native.d.ts +6 -2
  43. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  44. package/dist-types/schemas/schemas_0.d.ts +119 -139
  45. package/dist-types/ts3.4/ResourceExplorer2Client.d.ts +0 -4
  46. package/dist-types/ts3.4/index.d.ts +1 -0
  47. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  48. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  49. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  50. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  51. package/dist-types/ts3.4/schemas/schemas_0.d.ts +118 -141
  52. 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 ?? new protocols_1.AwsRestJsonProtocol({ defaultNamespace: "com.amazonaws.resourceexplorer2" }),
29
+ protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
30
+ protocolSettings: config?.protocolSettings ?? {
31
+ defaultNamespace: "com.amazonaws.resourceexplorer2",
32
+ version: "2022-07-28",
33
+ serviceTarget: "ResourceExplorer",
34
+ },
30
35
  serviceId: config?.serviceId ?? "Resource Explorer 2",
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 { AssociateDefaultView } from "../schemas/schemas_0";
4
+ import { AssociateDefaultView$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class AssociateDefaultViewCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class AssociateDefaultViewCommand extends $Command
11
11
  })
12
12
  .s("ResourceExplorer", "AssociateDefaultView", {})
13
13
  .n("ResourceExplorer2Client", "AssociateDefaultViewCommand")
14
- .sc(AssociateDefaultView)
14
+ .sc(AssociateDefaultView$)
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 { BatchGetView } from "../schemas/schemas_0";
4
+ import { BatchGetView$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class BatchGetViewCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class BatchGetViewCommand extends $Command
11
11
  })
12
12
  .s("ResourceExplorer", "BatchGetView", {})
13
13
  .n("ResourceExplorer2Client", "BatchGetViewCommand")
14
- .sc(BatchGetView)
14
+ .sc(BatchGetView$)
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 { CreateIndex } from "../schemas/schemas_0";
4
+ import { CreateIndex$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateIndexCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateIndexCommand extends $Command
11
11
  })
12
12
  .s("ResourceExplorer", "CreateIndex", {})
13
13
  .n("ResourceExplorer2Client", "CreateIndexCommand")
14
- .sc(CreateIndex)
14
+ .sc(CreateIndex$)
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 { CreateResourceExplorerSetup } from "../schemas/schemas_0";
4
+ import { CreateResourceExplorerSetup$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateResourceExplorerSetupCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateResourceExplorerSetupCommand extends $Command
11
11
  })
12
12
  .s("ResourceExplorer", "CreateResourceExplorerSetup", {})
13
13
  .n("ResourceExplorer2Client", "CreateResourceExplorerSetupCommand")
14
- .sc(CreateResourceExplorerSetup)
14
+ .sc(CreateResourceExplorerSetup$)
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 { CreateView } from "../schemas/schemas_0";
4
+ import { CreateView$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateViewCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateViewCommand extends $Command
11
11
  })
12
12
  .s("ResourceExplorer", "CreateView", {})
13
13
  .n("ResourceExplorer2Client", "CreateViewCommand")
14
- .sc(CreateView)
14
+ .sc(CreateView$)
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 { DeleteIndex } from "../schemas/schemas_0";
4
+ import { DeleteIndex$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteIndexCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteIndexCommand extends $Command
11
11
  })
12
12
  .s("ResourceExplorer", "DeleteIndex", {})
13
13
  .n("ResourceExplorer2Client", "DeleteIndexCommand")
14
- .sc(DeleteIndex)
14
+ .sc(DeleteIndex$)
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 { DeleteResourceExplorerSetup } from "../schemas/schemas_0";
4
+ import { DeleteResourceExplorerSetup$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteResourceExplorerSetupCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteResourceExplorerSetupCommand extends $Command
11
11
  })
12
12
  .s("ResourceExplorer", "DeleteResourceExplorerSetup", {})
13
13
  .n("ResourceExplorer2Client", "DeleteResourceExplorerSetupCommand")
14
- .sc(DeleteResourceExplorerSetup)
14
+ .sc(DeleteResourceExplorerSetup$)
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 { DeleteView } from "../schemas/schemas_0";
4
+ import { DeleteView$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteViewCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteViewCommand extends $Command
11
11
  })
12
12
  .s("ResourceExplorer", "DeleteView", {})
13
13
  .n("ResourceExplorer2Client", "DeleteViewCommand")
14
- .sc(DeleteView)
14
+ .sc(DeleteView$)
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 { DisassociateDefaultView } from "../schemas/schemas_0";
4
+ import { DisassociateDefaultView$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DisassociateDefaultViewCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DisassociateDefaultViewCommand extends $Command
11
11
  })
12
12
  .s("ResourceExplorer", "DisassociateDefaultView", {})
13
13
  .n("ResourceExplorer2Client", "DisassociateDefaultViewCommand")
14
- .sc(DisassociateDefaultView)
14
+ .sc(DisassociateDefaultView$)
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 { GetAccountLevelServiceConfiguration } from "../schemas/schemas_0";
4
+ import { GetAccountLevelServiceConfiguration$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetAccountLevelServiceConfigurationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetAccountLevelServiceConfigurationCommand extends $Command
11
11
  })
12
12
  .s("ResourceExplorer", "GetAccountLevelServiceConfiguration", {})
13
13
  .n("ResourceExplorer2Client", "GetAccountLevelServiceConfigurationCommand")
14
- .sc(GetAccountLevelServiceConfiguration)
14
+ .sc(GetAccountLevelServiceConfiguration$)
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 { GetDefaultView } from "../schemas/schemas_0";
4
+ import { GetDefaultView$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetDefaultViewCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetDefaultViewCommand extends $Command
11
11
  })
12
12
  .s("ResourceExplorer", "GetDefaultView", {})
13
13
  .n("ResourceExplorer2Client", "GetDefaultViewCommand")
14
- .sc(GetDefaultView)
14
+ .sc(GetDefaultView$)
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 { GetIndex } from "../schemas/schemas_0";
4
+ import { GetIndex$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetIndexCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetIndexCommand extends $Command
11
11
  })
12
12
  .s("ResourceExplorer", "GetIndex", {})
13
13
  .n("ResourceExplorer2Client", "GetIndexCommand")
14
- .sc(GetIndex)
14
+ .sc(GetIndex$)
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 { GetManagedView } from "../schemas/schemas_0";
4
+ import { GetManagedView$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetManagedViewCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetManagedViewCommand extends $Command
11
11
  })
12
12
  .s("ResourceExplorer", "GetManagedView", {})
13
13
  .n("ResourceExplorer2Client", "GetManagedViewCommand")
14
- .sc(GetManagedView)
14
+ .sc(GetManagedView$)
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 { GetResourceExplorerSetup } from "../schemas/schemas_0";
4
+ import { GetResourceExplorerSetup$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetResourceExplorerSetupCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetResourceExplorerSetupCommand extends $Command
11
11
  })
12
12
  .s("ResourceExplorer", "GetResourceExplorerSetup", {})
13
13
  .n("ResourceExplorer2Client", "GetResourceExplorerSetupCommand")
14
- .sc(GetResourceExplorerSetup)
14
+ .sc(GetResourceExplorerSetup$)
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 { GetServiceIndex } from "../schemas/schemas_0";
4
+ import { GetServiceIndex$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetServiceIndexCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetServiceIndexCommand extends $Command
11
11
  })
12
12
  .s("ResourceExplorer", "GetServiceIndex", {})
13
13
  .n("ResourceExplorer2Client", "GetServiceIndexCommand")
14
- .sc(GetServiceIndex)
14
+ .sc(GetServiceIndex$)
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 { GetServiceView } from "../schemas/schemas_0";
4
+ import { GetServiceView$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetServiceViewCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetServiceViewCommand extends $Command
11
11
  })
12
12
  .s("ResourceExplorer", "GetServiceView", {})
13
13
  .n("ResourceExplorer2Client", "GetServiceViewCommand")
14
- .sc(GetServiceView)
14
+ .sc(GetServiceView$)
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 { GetView } from "../schemas/schemas_0";
4
+ import { GetView$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetViewCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetViewCommand extends $Command
11
11
  })
12
12
  .s("ResourceExplorer", "GetView", {})
13
13
  .n("ResourceExplorer2Client", "GetViewCommand")
14
- .sc(GetView)
14
+ .sc(GetView$)
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 { ListIndexes } from "../schemas/schemas_0";
4
+ import { ListIndexes$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListIndexesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListIndexesCommand extends $Command
11
11
  })
12
12
  .s("ResourceExplorer", "ListIndexes", {})
13
13
  .n("ResourceExplorer2Client", "ListIndexesCommand")
14
- .sc(ListIndexes)
14
+ .sc(ListIndexes$)
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 { ListIndexesForMembers } from "../schemas/schemas_0";
4
+ import { ListIndexesForMembers$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListIndexesForMembersCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListIndexesForMembersCommand extends $Command
11
11
  })
12
12
  .s("ResourceExplorer", "ListIndexesForMembers", {})
13
13
  .n("ResourceExplorer2Client", "ListIndexesForMembersCommand")
14
- .sc(ListIndexesForMembers)
14
+ .sc(ListIndexesForMembers$)
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 { ListManagedViews } from "../schemas/schemas_0";
4
+ import { ListManagedViews$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListManagedViewsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListManagedViewsCommand extends $Command
11
11
  })
12
12
  .s("ResourceExplorer", "ListManagedViews", {})
13
13
  .n("ResourceExplorer2Client", "ListManagedViewsCommand")
14
- .sc(ListManagedViews)
14
+ .sc(ListManagedViews$)
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 { ListResources } from "../schemas/schemas_0";
4
+ import { ListResources$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListResourcesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListResourcesCommand extends $Command
11
11
  })
12
12
  .s("ResourceExplorer", "ListResources", {})
13
13
  .n("ResourceExplorer2Client", "ListResourcesCommand")
14
- .sc(ListResources)
14
+ .sc(ListResources$)
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 { ListServiceIndexes } from "../schemas/schemas_0";
4
+ import { ListServiceIndexes$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListServiceIndexesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListServiceIndexesCommand extends $Command
11
11
  })
12
12
  .s("ResourceExplorer", "ListServiceIndexes", {})
13
13
  .n("ResourceExplorer2Client", "ListServiceIndexesCommand")
14
- .sc(ListServiceIndexes)
14
+ .sc(ListServiceIndexes$)
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 { ListServiceViews } from "../schemas/schemas_0";
4
+ import { ListServiceViews$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListServiceViewsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListServiceViewsCommand extends $Command
11
11
  })
12
12
  .s("ResourceExplorer", "ListServiceViews", {})
13
13
  .n("ResourceExplorer2Client", "ListServiceViewsCommand")
14
- .sc(ListServiceViews)
14
+ .sc(ListServiceViews$)
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 { ListStreamingAccessForServices } from "../schemas/schemas_0";
4
+ import { ListStreamingAccessForServices$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListStreamingAccessForServicesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListStreamingAccessForServicesCommand extends $Command
11
11
  })
12
12
  .s("ResourceExplorer", "ListStreamingAccessForServices", {})
13
13
  .n("ResourceExplorer2Client", "ListStreamingAccessForServicesCommand")
14
- .sc(ListStreamingAccessForServices)
14
+ .sc(ListStreamingAccessForServices$)
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 { ListSupportedResourceTypes } from "../schemas/schemas_0";
4
+ import { ListSupportedResourceTypes$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListSupportedResourceTypesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListSupportedResourceTypesCommand extends $Command
11
11
  })
12
12
  .s("ResourceExplorer", "ListSupportedResourceTypes", {})
13
13
  .n("ResourceExplorer2Client", "ListSupportedResourceTypesCommand")
14
- .sc(ListSupportedResourceTypes)
14
+ .sc(ListSupportedResourceTypes$)
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 { ListTagsForResource } from "../schemas/schemas_0";
4
+ import { ListTagsForResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListTagsForResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
11
11
  })
12
12
  .s("ResourceExplorer", "ListTagsForResource", {})
13
13
  .n("ResourceExplorer2Client", "ListTagsForResourceCommand")
14
- .sc(ListTagsForResource)
14
+ .sc(ListTagsForResource$)
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 { ListViews } from "../schemas/schemas_0";
4
+ import { ListViews$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListViewsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListViewsCommand extends $Command
11
11
  })
12
12
  .s("ResourceExplorer", "ListViews", {})
13
13
  .n("ResourceExplorer2Client", "ListViewsCommand")
14
- .sc(ListViews)
14
+ .sc(ListViews$)
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 { Search } from "../schemas/schemas_0";
4
+ import { Search$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class SearchCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class SearchCommand extends $Command
11
11
  })
12
12
  .s("ResourceExplorer", "Search", {})
13
13
  .n("ResourceExplorer2Client", "SearchCommand")
14
- .sc(Search)
14
+ .sc(Search$)
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 { TagResource } from "../schemas/schemas_0";
4
+ import { TagResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class TagResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class TagResourceCommand extends $Command
11
11
  })
12
12
  .s("ResourceExplorer", "TagResource", {})
13
13
  .n("ResourceExplorer2Client", "TagResourceCommand")
14
- .sc(TagResource)
14
+ .sc(TagResource$)
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 { UntagResource } from "../schemas/schemas_0";
4
+ import { UntagResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UntagResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UntagResourceCommand extends $Command
11
11
  })
12
12
  .s("ResourceExplorer", "UntagResource", {})
13
13
  .n("ResourceExplorer2Client", "UntagResourceCommand")
14
- .sc(UntagResource)
14
+ .sc(UntagResource$)
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 { UpdateIndexType } from "../schemas/schemas_0";
4
+ import { UpdateIndexType$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UpdateIndexTypeCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UpdateIndexTypeCommand extends $Command
11
11
  })
12
12
  .s("ResourceExplorer", "UpdateIndexType", {})
13
13
  .n("ResourceExplorer2Client", "UpdateIndexTypeCommand")
14
- .sc(UpdateIndexType)
14
+ .sc(UpdateIndexType$)
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 { UpdateView } from "../schemas/schemas_0";
4
+ import { UpdateView$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UpdateViewCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UpdateViewCommand extends $Command
11
11
  })
12
12
  .s("ResourceExplorer", "UpdateView", {})
13
13
  .n("ResourceExplorer2Client", "UpdateViewCommand")
14
- .sc(UpdateView)
14
+ .sc(UpdateView$)
15
15
  .build() {
16
16
  }
package/dist-es/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  export * from "./ResourceExplorer2Client";
2
2
  export * from "./ResourceExplorer2";
3
3
  export * from "./commands";
4
+ export * from "./schemas/schemas_0";
4
5
  export * from "./pagination";
5
6
  export * from "./models/enums";
6
7
  export * from "./models/errors";
@@ -23,7 +23,12 @@ export const getRuntimeConfig = (config) => {
23
23
  },
24
24
  ],
25
25
  logger: config?.logger ?? new NoOpLogger(),
26
- protocol: config?.protocol ?? new AwsRestJsonProtocol({ defaultNamespace: "com.amazonaws.resourceexplorer2" }),
26
+ protocol: config?.protocol ?? AwsRestJsonProtocol,
27
+ protocolSettings: config?.protocolSettings ?? {
28
+ defaultNamespace: "com.amazonaws.resourceexplorer2",
29
+ version: "2022-07-28",
30
+ serviceTarget: "ResourceExplorer",
31
+ },
27
32
  serviceId: config?.serviceId ?? "Resource Explorer 2",
28
33
  urlParser: config?.urlParser ?? parseUrl,
29
34
  utf8Decoder: config?.utf8Decoder ?? fromUtf8,