@aws-sdk/client-amp 3.952.0 → 3.954.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 (64) hide show
  1. package/dist-cjs/index.js +581 -386
  2. package/dist-cjs/runtimeConfig.shared.js +6 -1
  3. package/dist-es/commands/CreateAlertManagerDefinitionCommand.js +2 -2
  4. package/dist-es/commands/CreateAnomalyDetectorCommand.js +2 -2
  5. package/dist-es/commands/CreateLoggingConfigurationCommand.js +2 -2
  6. package/dist-es/commands/CreateQueryLoggingConfigurationCommand.js +2 -2
  7. package/dist-es/commands/CreateRuleGroupsNamespaceCommand.js +2 -2
  8. package/dist-es/commands/CreateScraperCommand.js +2 -2
  9. package/dist-es/commands/CreateWorkspaceCommand.js +2 -2
  10. package/dist-es/commands/DeleteAlertManagerDefinitionCommand.js +2 -2
  11. package/dist-es/commands/DeleteAnomalyDetectorCommand.js +2 -2
  12. package/dist-es/commands/DeleteLoggingConfigurationCommand.js +2 -2
  13. package/dist-es/commands/DeleteQueryLoggingConfigurationCommand.js +2 -2
  14. package/dist-es/commands/DeleteResourcePolicyCommand.js +2 -2
  15. package/dist-es/commands/DeleteRuleGroupsNamespaceCommand.js +2 -2
  16. package/dist-es/commands/DeleteScraperCommand.js +2 -2
  17. package/dist-es/commands/DeleteScraperLoggingConfigurationCommand.js +2 -2
  18. package/dist-es/commands/DeleteWorkspaceCommand.js +2 -2
  19. package/dist-es/commands/DescribeAlertManagerDefinitionCommand.js +2 -2
  20. package/dist-es/commands/DescribeAnomalyDetectorCommand.js +2 -2
  21. package/dist-es/commands/DescribeLoggingConfigurationCommand.js +2 -2
  22. package/dist-es/commands/DescribeQueryLoggingConfigurationCommand.js +2 -2
  23. package/dist-es/commands/DescribeResourcePolicyCommand.js +2 -2
  24. package/dist-es/commands/DescribeRuleGroupsNamespaceCommand.js +2 -2
  25. package/dist-es/commands/DescribeScraperCommand.js +2 -2
  26. package/dist-es/commands/DescribeScraperLoggingConfigurationCommand.js +2 -2
  27. package/dist-es/commands/DescribeWorkspaceCommand.js +2 -2
  28. package/dist-es/commands/DescribeWorkspaceConfigurationCommand.js +2 -2
  29. package/dist-es/commands/GetDefaultScraperConfigurationCommand.js +2 -2
  30. package/dist-es/commands/ListAnomalyDetectorsCommand.js +2 -2
  31. package/dist-es/commands/ListRuleGroupsNamespacesCommand.js +2 -2
  32. package/dist-es/commands/ListScrapersCommand.js +2 -2
  33. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  34. package/dist-es/commands/ListWorkspacesCommand.js +2 -2
  35. package/dist-es/commands/PutAlertManagerDefinitionCommand.js +2 -2
  36. package/dist-es/commands/PutAnomalyDetectorCommand.js +2 -2
  37. package/dist-es/commands/PutResourcePolicyCommand.js +2 -2
  38. package/dist-es/commands/PutRuleGroupsNamespaceCommand.js +2 -2
  39. package/dist-es/commands/TagResourceCommand.js +2 -2
  40. package/dist-es/commands/UntagResourceCommand.js +2 -2
  41. package/dist-es/commands/UpdateLoggingConfigurationCommand.js +2 -2
  42. package/dist-es/commands/UpdateQueryLoggingConfigurationCommand.js +2 -2
  43. package/dist-es/commands/UpdateScraperCommand.js +2 -2
  44. package/dist-es/commands/UpdateScraperLoggingConfigurationCommand.js +2 -2
  45. package/dist-es/commands/UpdateWorkspaceAliasCommand.js +2 -2
  46. package/dist-es/commands/UpdateWorkspaceConfigurationCommand.js +2 -2
  47. package/dist-es/index.js +1 -0
  48. package/dist-es/runtimeConfig.shared.js +6 -1
  49. package/dist-es/schemas/schemas_0.js +354 -331
  50. package/dist-types/AmpClient.d.ts +1 -10
  51. package/dist-types/index.d.ts +1 -0
  52. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  53. package/dist-types/runtimeConfig.d.ts +6 -2
  54. package/dist-types/runtimeConfig.native.d.ts +6 -2
  55. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  56. package/dist-types/schemas/schemas_0.d.ts +173 -191
  57. package/dist-types/ts3.4/AmpClient.d.ts +0 -4
  58. package/dist-types/ts3.4/index.d.ts +1 -0
  59. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  60. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  61. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  62. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  63. package/dist-types/ts3.4/schemas/schemas_0.d.ts +172 -192
  64. package/package.json +35 -35
@@ -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.amp" }),
29
+ protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
30
+ protocolSettings: config?.protocolSettings ?? {
31
+ defaultNamespace: "com.amazonaws.amp",
32
+ version: "2020-08-01",
33
+ serviceTarget: "AmazonPrometheusService",
34
+ },
30
35
  serviceId: config?.serviceId ?? "amp",
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 { CreateAlertManagerDefinition } from "../schemas/schemas_0";
4
+ import { CreateAlertManagerDefinition$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateAlertManagerDefinitionCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateAlertManagerDefinitionCommand extends $Command
11
11
  })
12
12
  .s("AmazonPrometheusService", "CreateAlertManagerDefinition", {})
13
13
  .n("AmpClient", "CreateAlertManagerDefinitionCommand")
14
- .sc(CreateAlertManagerDefinition)
14
+ .sc(CreateAlertManagerDefinition$)
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 { CreateAnomalyDetector } from "../schemas/schemas_0";
4
+ import { CreateAnomalyDetector$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateAnomalyDetectorCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateAnomalyDetectorCommand extends $Command
11
11
  })
12
12
  .s("AmazonPrometheusService", "CreateAnomalyDetector", {})
13
13
  .n("AmpClient", "CreateAnomalyDetectorCommand")
14
- .sc(CreateAnomalyDetector)
14
+ .sc(CreateAnomalyDetector$)
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 { CreateLoggingConfiguration } from "../schemas/schemas_0";
4
+ import { CreateLoggingConfiguration$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateLoggingConfigurationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateLoggingConfigurationCommand extends $Command
11
11
  })
12
12
  .s("AmazonPrometheusService", "CreateLoggingConfiguration", {})
13
13
  .n("AmpClient", "CreateLoggingConfigurationCommand")
14
- .sc(CreateLoggingConfiguration)
14
+ .sc(CreateLoggingConfiguration$)
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 { CreateQueryLoggingConfiguration } from "../schemas/schemas_0";
4
+ import { CreateQueryLoggingConfiguration$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateQueryLoggingConfigurationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateQueryLoggingConfigurationCommand extends $Command
11
11
  })
12
12
  .s("AmazonPrometheusService", "CreateQueryLoggingConfiguration", {})
13
13
  .n("AmpClient", "CreateQueryLoggingConfigurationCommand")
14
- .sc(CreateQueryLoggingConfiguration)
14
+ .sc(CreateQueryLoggingConfiguration$)
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 { CreateRuleGroupsNamespace } from "../schemas/schemas_0";
4
+ import { CreateRuleGroupsNamespace$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateRuleGroupsNamespaceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateRuleGroupsNamespaceCommand extends $Command
11
11
  })
12
12
  .s("AmazonPrometheusService", "CreateRuleGroupsNamespace", {})
13
13
  .n("AmpClient", "CreateRuleGroupsNamespaceCommand")
14
- .sc(CreateRuleGroupsNamespace)
14
+ .sc(CreateRuleGroupsNamespace$)
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 { CreateScraper } from "../schemas/schemas_0";
4
+ import { CreateScraper$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateScraperCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateScraperCommand extends $Command
11
11
  })
12
12
  .s("AmazonPrometheusService", "CreateScraper", {})
13
13
  .n("AmpClient", "CreateScraperCommand")
14
- .sc(CreateScraper)
14
+ .sc(CreateScraper$)
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 { CreateWorkspace } from "../schemas/schemas_0";
4
+ import { CreateWorkspace$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateWorkspaceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateWorkspaceCommand extends $Command
11
11
  })
12
12
  .s("AmazonPrometheusService", "CreateWorkspace", {})
13
13
  .n("AmpClient", "CreateWorkspaceCommand")
14
- .sc(CreateWorkspace)
14
+ .sc(CreateWorkspace$)
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 { DeleteAlertManagerDefinition } from "../schemas/schemas_0";
4
+ import { DeleteAlertManagerDefinition$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteAlertManagerDefinitionCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteAlertManagerDefinitionCommand extends $Command
11
11
  })
12
12
  .s("AmazonPrometheusService", "DeleteAlertManagerDefinition", {})
13
13
  .n("AmpClient", "DeleteAlertManagerDefinitionCommand")
14
- .sc(DeleteAlertManagerDefinition)
14
+ .sc(DeleteAlertManagerDefinition$)
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 { DeleteAnomalyDetector } from "../schemas/schemas_0";
4
+ import { DeleteAnomalyDetector$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteAnomalyDetectorCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteAnomalyDetectorCommand extends $Command
11
11
  })
12
12
  .s("AmazonPrometheusService", "DeleteAnomalyDetector", {})
13
13
  .n("AmpClient", "DeleteAnomalyDetectorCommand")
14
- .sc(DeleteAnomalyDetector)
14
+ .sc(DeleteAnomalyDetector$)
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 { DeleteLoggingConfiguration } from "../schemas/schemas_0";
4
+ import { DeleteLoggingConfiguration$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteLoggingConfigurationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteLoggingConfigurationCommand extends $Command
11
11
  })
12
12
  .s("AmazonPrometheusService", "DeleteLoggingConfiguration", {})
13
13
  .n("AmpClient", "DeleteLoggingConfigurationCommand")
14
- .sc(DeleteLoggingConfiguration)
14
+ .sc(DeleteLoggingConfiguration$)
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 { DeleteQueryLoggingConfiguration } from "../schemas/schemas_0";
4
+ import { DeleteQueryLoggingConfiguration$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteQueryLoggingConfigurationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteQueryLoggingConfigurationCommand extends $Command
11
11
  })
12
12
  .s("AmazonPrometheusService", "DeleteQueryLoggingConfiguration", {})
13
13
  .n("AmpClient", "DeleteQueryLoggingConfigurationCommand")
14
- .sc(DeleteQueryLoggingConfiguration)
14
+ .sc(DeleteQueryLoggingConfiguration$)
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 { DeleteResourcePolicy } from "../schemas/schemas_0";
4
+ import { DeleteResourcePolicy$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteResourcePolicyCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteResourcePolicyCommand extends $Command
11
11
  })
12
12
  .s("AmazonPrometheusService", "DeleteResourcePolicy", {})
13
13
  .n("AmpClient", "DeleteResourcePolicyCommand")
14
- .sc(DeleteResourcePolicy)
14
+ .sc(DeleteResourcePolicy$)
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 { DeleteRuleGroupsNamespace } from "../schemas/schemas_0";
4
+ import { DeleteRuleGroupsNamespace$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteRuleGroupsNamespaceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteRuleGroupsNamespaceCommand extends $Command
11
11
  })
12
12
  .s("AmazonPrometheusService", "DeleteRuleGroupsNamespace", {})
13
13
  .n("AmpClient", "DeleteRuleGroupsNamespaceCommand")
14
- .sc(DeleteRuleGroupsNamespace)
14
+ .sc(DeleteRuleGroupsNamespace$)
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 { DeleteScraper } from "../schemas/schemas_0";
4
+ import { DeleteScraper$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteScraperCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteScraperCommand extends $Command
11
11
  })
12
12
  .s("AmazonPrometheusService", "DeleteScraper", {})
13
13
  .n("AmpClient", "DeleteScraperCommand")
14
- .sc(DeleteScraper)
14
+ .sc(DeleteScraper$)
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 { DeleteScraperLoggingConfiguration } from "../schemas/schemas_0";
4
+ import { DeleteScraperLoggingConfiguration$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteScraperLoggingConfigurationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteScraperLoggingConfigurationCommand extends $Command
11
11
  })
12
12
  .s("AmazonPrometheusService", "DeleteScraperLoggingConfiguration", {})
13
13
  .n("AmpClient", "DeleteScraperLoggingConfigurationCommand")
14
- .sc(DeleteScraperLoggingConfiguration)
14
+ .sc(DeleteScraperLoggingConfiguration$)
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 { DeleteWorkspace } from "../schemas/schemas_0";
4
+ import { DeleteWorkspace$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteWorkspaceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteWorkspaceCommand extends $Command
11
11
  })
12
12
  .s("AmazonPrometheusService", "DeleteWorkspace", {})
13
13
  .n("AmpClient", "DeleteWorkspaceCommand")
14
- .sc(DeleteWorkspace)
14
+ .sc(DeleteWorkspace$)
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 { DescribeAlertManagerDefinition } from "../schemas/schemas_0";
4
+ import { DescribeAlertManagerDefinition$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeAlertManagerDefinitionCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeAlertManagerDefinitionCommand extends $Command
11
11
  })
12
12
  .s("AmazonPrometheusService", "DescribeAlertManagerDefinition", {})
13
13
  .n("AmpClient", "DescribeAlertManagerDefinitionCommand")
14
- .sc(DescribeAlertManagerDefinition)
14
+ .sc(DescribeAlertManagerDefinition$)
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 { DescribeAnomalyDetector } from "../schemas/schemas_0";
4
+ import { DescribeAnomalyDetector$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeAnomalyDetectorCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeAnomalyDetectorCommand extends $Command
11
11
  })
12
12
  .s("AmazonPrometheusService", "DescribeAnomalyDetector", {})
13
13
  .n("AmpClient", "DescribeAnomalyDetectorCommand")
14
- .sc(DescribeAnomalyDetector)
14
+ .sc(DescribeAnomalyDetector$)
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 { DescribeLoggingConfiguration } from "../schemas/schemas_0";
4
+ import { DescribeLoggingConfiguration$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeLoggingConfigurationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeLoggingConfigurationCommand extends $Command
11
11
  })
12
12
  .s("AmazonPrometheusService", "DescribeLoggingConfiguration", {})
13
13
  .n("AmpClient", "DescribeLoggingConfigurationCommand")
14
- .sc(DescribeLoggingConfiguration)
14
+ .sc(DescribeLoggingConfiguration$)
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 { DescribeQueryLoggingConfiguration } from "../schemas/schemas_0";
4
+ import { DescribeQueryLoggingConfiguration$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeQueryLoggingConfigurationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeQueryLoggingConfigurationCommand extends $Command
11
11
  })
12
12
  .s("AmazonPrometheusService", "DescribeQueryLoggingConfiguration", {})
13
13
  .n("AmpClient", "DescribeQueryLoggingConfigurationCommand")
14
- .sc(DescribeQueryLoggingConfiguration)
14
+ .sc(DescribeQueryLoggingConfiguration$)
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 { DescribeResourcePolicy } from "../schemas/schemas_0";
4
+ import { DescribeResourcePolicy$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeResourcePolicyCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeResourcePolicyCommand extends $Command
11
11
  })
12
12
  .s("AmazonPrometheusService", "DescribeResourcePolicy", {})
13
13
  .n("AmpClient", "DescribeResourcePolicyCommand")
14
- .sc(DescribeResourcePolicy)
14
+ .sc(DescribeResourcePolicy$)
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 { DescribeRuleGroupsNamespace } from "../schemas/schemas_0";
4
+ import { DescribeRuleGroupsNamespace$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeRuleGroupsNamespaceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeRuleGroupsNamespaceCommand extends $Command
11
11
  })
12
12
  .s("AmazonPrometheusService", "DescribeRuleGroupsNamespace", {})
13
13
  .n("AmpClient", "DescribeRuleGroupsNamespaceCommand")
14
- .sc(DescribeRuleGroupsNamespace)
14
+ .sc(DescribeRuleGroupsNamespace$)
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 { DescribeScraper } from "../schemas/schemas_0";
4
+ import { DescribeScraper$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeScraperCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeScraperCommand extends $Command
11
11
  })
12
12
  .s("AmazonPrometheusService", "DescribeScraper", {})
13
13
  .n("AmpClient", "DescribeScraperCommand")
14
- .sc(DescribeScraper)
14
+ .sc(DescribeScraper$)
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 { DescribeScraperLoggingConfiguration } from "../schemas/schemas_0";
4
+ import { DescribeScraperLoggingConfiguration$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeScraperLoggingConfigurationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeScraperLoggingConfigurationCommand extends $Command
11
11
  })
12
12
  .s("AmazonPrometheusService", "DescribeScraperLoggingConfiguration", {})
13
13
  .n("AmpClient", "DescribeScraperLoggingConfigurationCommand")
14
- .sc(DescribeScraperLoggingConfiguration)
14
+ .sc(DescribeScraperLoggingConfiguration$)
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 { DescribeWorkspace } from "../schemas/schemas_0";
4
+ import { DescribeWorkspace$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeWorkspaceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeWorkspaceCommand extends $Command
11
11
  })
12
12
  .s("AmazonPrometheusService", "DescribeWorkspace", {})
13
13
  .n("AmpClient", "DescribeWorkspaceCommand")
14
- .sc(DescribeWorkspace)
14
+ .sc(DescribeWorkspace$)
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 { DescribeWorkspaceConfiguration } from "../schemas/schemas_0";
4
+ import { DescribeWorkspaceConfiguration$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeWorkspaceConfigurationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeWorkspaceConfigurationCommand extends $Command
11
11
  })
12
12
  .s("AmazonPrometheusService", "DescribeWorkspaceConfiguration", {})
13
13
  .n("AmpClient", "DescribeWorkspaceConfigurationCommand")
14
- .sc(DescribeWorkspaceConfiguration)
14
+ .sc(DescribeWorkspaceConfiguration$)
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 { GetDefaultScraperConfiguration } from "../schemas/schemas_0";
4
+ import { GetDefaultScraperConfiguration$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetDefaultScraperConfigurationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetDefaultScraperConfigurationCommand extends $Command
11
11
  })
12
12
  .s("AmazonPrometheusService", "GetDefaultScraperConfiguration", {})
13
13
  .n("AmpClient", "GetDefaultScraperConfigurationCommand")
14
- .sc(GetDefaultScraperConfiguration)
14
+ .sc(GetDefaultScraperConfiguration$)
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 { ListAnomalyDetectors } from "../schemas/schemas_0";
4
+ import { ListAnomalyDetectors$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListAnomalyDetectorsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListAnomalyDetectorsCommand extends $Command
11
11
  })
12
12
  .s("AmazonPrometheusService", "ListAnomalyDetectors", {})
13
13
  .n("AmpClient", "ListAnomalyDetectorsCommand")
14
- .sc(ListAnomalyDetectors)
14
+ .sc(ListAnomalyDetectors$)
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 { ListRuleGroupsNamespaces } from "../schemas/schemas_0";
4
+ import { ListRuleGroupsNamespaces$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListRuleGroupsNamespacesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListRuleGroupsNamespacesCommand extends $Command
11
11
  })
12
12
  .s("AmazonPrometheusService", "ListRuleGroupsNamespaces", {})
13
13
  .n("AmpClient", "ListRuleGroupsNamespacesCommand")
14
- .sc(ListRuleGroupsNamespaces)
14
+ .sc(ListRuleGroupsNamespaces$)
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 { ListScrapers } from "../schemas/schemas_0";
4
+ import { ListScrapers$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListScrapersCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListScrapersCommand extends $Command
11
11
  })
12
12
  .s("AmazonPrometheusService", "ListScrapers", {})
13
13
  .n("AmpClient", "ListScrapersCommand")
14
- .sc(ListScrapers)
14
+ .sc(ListScrapers$)
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("AmazonPrometheusService", "ListTagsForResource", {})
13
13
  .n("AmpClient", "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 { ListWorkspaces } from "../schemas/schemas_0";
4
+ import { ListWorkspaces$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListWorkspacesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListWorkspacesCommand extends $Command
11
11
  })
12
12
  .s("AmazonPrometheusService", "ListWorkspaces", {})
13
13
  .n("AmpClient", "ListWorkspacesCommand")
14
- .sc(ListWorkspaces)
14
+ .sc(ListWorkspaces$)
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 { PutAlertManagerDefinition } from "../schemas/schemas_0";
4
+ import { PutAlertManagerDefinition$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class PutAlertManagerDefinitionCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class PutAlertManagerDefinitionCommand extends $Command
11
11
  })
12
12
  .s("AmazonPrometheusService", "PutAlertManagerDefinition", {})
13
13
  .n("AmpClient", "PutAlertManagerDefinitionCommand")
14
- .sc(PutAlertManagerDefinition)
14
+ .sc(PutAlertManagerDefinition$)
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 { PutAnomalyDetector } from "../schemas/schemas_0";
4
+ import { PutAnomalyDetector$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class PutAnomalyDetectorCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class PutAnomalyDetectorCommand extends $Command
11
11
  })
12
12
  .s("AmazonPrometheusService", "PutAnomalyDetector", {})
13
13
  .n("AmpClient", "PutAnomalyDetectorCommand")
14
- .sc(PutAnomalyDetector)
14
+ .sc(PutAnomalyDetector$)
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 { PutResourcePolicy } from "../schemas/schemas_0";
4
+ import { PutResourcePolicy$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class PutResourcePolicyCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class PutResourcePolicyCommand extends $Command
11
11
  })
12
12
  .s("AmazonPrometheusService", "PutResourcePolicy", {})
13
13
  .n("AmpClient", "PutResourcePolicyCommand")
14
- .sc(PutResourcePolicy)
14
+ .sc(PutResourcePolicy$)
15
15
  .build() {
16
16
  }