@aws-sdk/client-amp 3.533.0 → 3.540.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 (63) hide show
  1. package/dist-cjs/endpoint/endpointResolver.js +4 -2
  2. package/dist-cjs/index.js +0 -3
  3. package/dist-es/endpoint/endpointResolver.js +3 -1
  4. package/dist-es/index.js +0 -1
  5. package/dist-types/Amp.d.ts +5 -1
  6. package/dist-types/AmpClient.d.ts +1 -1
  7. package/dist-types/commands/CreateAlertManagerDefinitionCommand.d.ts +2 -1
  8. package/dist-types/commands/CreateLoggingConfigurationCommand.d.ts +2 -1
  9. package/dist-types/commands/CreateRuleGroupsNamespaceCommand.d.ts +2 -1
  10. package/dist-types/commands/CreateScraperCommand.d.ts +2 -1
  11. package/dist-types/commands/CreateWorkspaceCommand.d.ts +2 -1
  12. package/dist-types/commands/DeleteAlertManagerDefinitionCommand.d.ts +2 -1
  13. package/dist-types/commands/DeleteLoggingConfigurationCommand.d.ts +2 -1
  14. package/dist-types/commands/DeleteRuleGroupsNamespaceCommand.d.ts +2 -1
  15. package/dist-types/commands/DeleteScraperCommand.d.ts +2 -1
  16. package/dist-types/commands/DeleteWorkspaceCommand.d.ts +2 -1
  17. package/dist-types/commands/DescribeAlertManagerDefinitionCommand.d.ts +2 -1
  18. package/dist-types/commands/DescribeLoggingConfigurationCommand.d.ts +2 -1
  19. package/dist-types/commands/DescribeRuleGroupsNamespaceCommand.d.ts +2 -1
  20. package/dist-types/commands/DescribeScraperCommand.d.ts +2 -1
  21. package/dist-types/commands/DescribeWorkspaceCommand.d.ts +2 -1
  22. package/dist-types/commands/GetDefaultScraperConfigurationCommand.d.ts +2 -1
  23. package/dist-types/commands/ListRuleGroupsNamespacesCommand.d.ts +2 -1
  24. package/dist-types/commands/ListScrapersCommand.d.ts +2 -1
  25. package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
  26. package/dist-types/commands/ListWorkspacesCommand.d.ts +2 -1
  27. package/dist-types/commands/PutAlertManagerDefinitionCommand.d.ts +2 -1
  28. package/dist-types/commands/PutRuleGroupsNamespaceCommand.d.ts +2 -1
  29. package/dist-types/commands/TagResourceCommand.d.ts +2 -1
  30. package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
  31. package/dist-types/commands/UpdateLoggingConfigurationCommand.d.ts +2 -1
  32. package/dist-types/commands/UpdateWorkspaceAliasCommand.d.ts +2 -1
  33. package/dist-types/index.d.ts +0 -1
  34. package/dist-types/models/models_0.d.ts +260 -260
  35. package/dist-types/ts3.4/Amp.d.ts +4 -0
  36. package/dist-types/ts3.4/commands/CreateAlertManagerDefinitionCommand.d.ts +9 -0
  37. package/dist-types/ts3.4/commands/CreateLoggingConfigurationCommand.d.ts +9 -0
  38. package/dist-types/ts3.4/commands/CreateRuleGroupsNamespaceCommand.d.ts +9 -0
  39. package/dist-types/ts3.4/commands/CreateScraperCommand.d.ts +9 -0
  40. package/dist-types/ts3.4/commands/CreateWorkspaceCommand.d.ts +9 -0
  41. package/dist-types/ts3.4/commands/DeleteAlertManagerDefinitionCommand.d.ts +9 -0
  42. package/dist-types/ts3.4/commands/DeleteLoggingConfigurationCommand.d.ts +9 -0
  43. package/dist-types/ts3.4/commands/DeleteRuleGroupsNamespaceCommand.d.ts +9 -0
  44. package/dist-types/ts3.4/commands/DeleteScraperCommand.d.ts +9 -0
  45. package/dist-types/ts3.4/commands/DeleteWorkspaceCommand.d.ts +9 -0
  46. package/dist-types/ts3.4/commands/DescribeAlertManagerDefinitionCommand.d.ts +9 -0
  47. package/dist-types/ts3.4/commands/DescribeLoggingConfigurationCommand.d.ts +9 -0
  48. package/dist-types/ts3.4/commands/DescribeRuleGroupsNamespaceCommand.d.ts +9 -0
  49. package/dist-types/ts3.4/commands/DescribeScraperCommand.d.ts +9 -0
  50. package/dist-types/ts3.4/commands/DescribeWorkspaceCommand.d.ts +9 -0
  51. package/dist-types/ts3.4/commands/GetDefaultScraperConfigurationCommand.d.ts +9 -0
  52. package/dist-types/ts3.4/commands/ListRuleGroupsNamespacesCommand.d.ts +9 -0
  53. package/dist-types/ts3.4/commands/ListScrapersCommand.d.ts +9 -0
  54. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -0
  55. package/dist-types/ts3.4/commands/ListWorkspacesCommand.d.ts +9 -0
  56. package/dist-types/ts3.4/commands/PutAlertManagerDefinitionCommand.d.ts +9 -0
  57. package/dist-types/ts3.4/commands/PutRuleGroupsNamespaceCommand.d.ts +9 -0
  58. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -0
  59. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +9 -0
  60. package/dist-types/ts3.4/commands/UpdateLoggingConfigurationCommand.d.ts +9 -0
  61. package/dist-types/ts3.4/commands/UpdateWorkspaceAliasCommand.d.ts +9 -0
  62. package/dist-types/ts3.4/index.d.ts +0 -1
  63. package/package.json +41 -41
@@ -157,6 +157,7 @@ export interface Amp {
157
157
  options: __HttpHandlerOptions,
158
158
  cb: (err: any, data?: CreateScraperCommandOutput) => void
159
159
  ): void;
160
+ createWorkspace(): Promise<CreateWorkspaceCommandOutput>;
160
161
  createWorkspace(
161
162
  args: CreateWorkspaceCommandInput,
162
163
  options?: __HttpHandlerOptions
@@ -300,6 +301,7 @@ export interface Amp {
300
301
  options: __HttpHandlerOptions,
301
302
  cb: (err: any, data?: DescribeWorkspaceCommandOutput) => void
302
303
  ): void;
304
+ getDefaultScraperConfiguration(): Promise<GetDefaultScraperConfigurationCommandOutput>;
303
305
  getDefaultScraperConfiguration(
304
306
  args: GetDefaultScraperConfigurationCommandInput,
305
307
  options?: __HttpHandlerOptions
@@ -326,6 +328,7 @@ export interface Amp {
326
328
  options: __HttpHandlerOptions,
327
329
  cb: (err: any, data?: ListRuleGroupsNamespacesCommandOutput) => void
328
330
  ): void;
331
+ listScrapers(): Promise<ListScrapersCommandOutput>;
329
332
  listScrapers(
330
333
  args: ListScrapersCommandInput,
331
334
  options?: __HttpHandlerOptions
@@ -352,6 +355,7 @@ export interface Amp {
352
355
  options: __HttpHandlerOptions,
353
356
  cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
354
357
  ): void;
358
+ listWorkspaces(): Promise<ListWorkspacesCommandOutput>;
355
359
  listWorkspaces(
356
360
  args: ListWorkspacesCommandInput,
357
361
  options?: __HttpHandlerOptions
@@ -25,6 +25,15 @@ declare const CreateAlertManagerDefinitionCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ __0_0: CreateAlertManagerDefinitionCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ CreateAlertManagerDefinitionCommandInput,
32
+ CreateAlertManagerDefinitionCommandOutput,
33
+ AmpClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class CreateAlertManagerDefinitionCommand extends CreateAlertManagerDefinitionCommand_base {}
@@ -25,6 +25,15 @@ declare const CreateLoggingConfigurationCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ __0_0: CreateLoggingConfigurationCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ CreateLoggingConfigurationCommandInput,
32
+ CreateLoggingConfigurationCommandOutput,
33
+ AmpClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class CreateLoggingConfigurationCommand extends CreateLoggingConfigurationCommand_base {}
@@ -25,6 +25,15 @@ declare const CreateRuleGroupsNamespaceCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ __0_0: CreateRuleGroupsNamespaceCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ CreateRuleGroupsNamespaceCommandInput,
32
+ CreateRuleGroupsNamespaceCommandOutput,
33
+ AmpClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class CreateRuleGroupsNamespaceCommand extends CreateRuleGroupsNamespaceCommand_base {}
@@ -24,6 +24,15 @@ declare const CreateScraperCommand_base: {
24
24
  ServiceInputTypes,
25
25
  ServiceOutputTypes
26
26
  >;
27
+ new (
28
+ __0_0: CreateScraperCommandInput
29
+ ): import("@smithy/smithy-client").CommandImpl<
30
+ CreateScraperCommandInput,
31
+ CreateScraperCommandOutput,
32
+ AmpClientResolvedConfig,
33
+ ServiceInputTypes,
34
+ ServiceOutputTypes
35
+ >;
27
36
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
37
  };
29
38
  export declare class CreateScraperCommand extends CreateScraperCommand_base {}
@@ -24,6 +24,15 @@ declare const CreateWorkspaceCommand_base: {
24
24
  ServiceInputTypes,
25
25
  ServiceOutputTypes
26
26
  >;
27
+ new (
28
+ ...[input]: [] | [CreateWorkspaceCommandInput]
29
+ ): import("@smithy/smithy-client").CommandImpl<
30
+ CreateWorkspaceCommandInput,
31
+ CreateWorkspaceCommandOutput,
32
+ AmpClientResolvedConfig,
33
+ ServiceInputTypes,
34
+ ServiceOutputTypes
35
+ >;
27
36
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
37
  };
29
38
  export declare class CreateWorkspaceCommand extends CreateWorkspaceCommand_base {}
@@ -21,6 +21,15 @@ declare const DeleteAlertManagerDefinitionCommand_base: {
21
21
  ServiceInputTypes,
22
22
  ServiceOutputTypes
23
23
  >;
24
+ new (
25
+ __0_0: DeleteAlertManagerDefinitionCommandInput
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ DeleteAlertManagerDefinitionCommandInput,
28
+ DeleteAlertManagerDefinitionCommandOutput,
29
+ AmpClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
24
33
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
34
  };
26
35
  export declare class DeleteAlertManagerDefinitionCommand extends DeleteAlertManagerDefinitionCommand_base {}
@@ -21,6 +21,15 @@ declare const DeleteLoggingConfigurationCommand_base: {
21
21
  ServiceInputTypes,
22
22
  ServiceOutputTypes
23
23
  >;
24
+ new (
25
+ __0_0: DeleteLoggingConfigurationCommandInput
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ DeleteLoggingConfigurationCommandInput,
28
+ DeleteLoggingConfigurationCommandOutput,
29
+ AmpClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
24
33
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
34
  };
26
35
  export declare class DeleteLoggingConfigurationCommand extends DeleteLoggingConfigurationCommand_base {}
@@ -21,6 +21,15 @@ declare const DeleteRuleGroupsNamespaceCommand_base: {
21
21
  ServiceInputTypes,
22
22
  ServiceOutputTypes
23
23
  >;
24
+ new (
25
+ __0_0: DeleteRuleGroupsNamespaceCommandInput
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ DeleteRuleGroupsNamespaceCommandInput,
28
+ DeleteRuleGroupsNamespaceCommandOutput,
29
+ AmpClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
24
33
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
34
  };
26
35
  export declare class DeleteRuleGroupsNamespaceCommand extends DeleteRuleGroupsNamespaceCommand_base {}
@@ -24,6 +24,15 @@ declare const DeleteScraperCommand_base: {
24
24
  ServiceInputTypes,
25
25
  ServiceOutputTypes
26
26
  >;
27
+ new (
28
+ __0_0: DeleteScraperCommandInput
29
+ ): import("@smithy/smithy-client").CommandImpl<
30
+ DeleteScraperCommandInput,
31
+ DeleteScraperCommandOutput,
32
+ AmpClientResolvedConfig,
33
+ ServiceInputTypes,
34
+ ServiceOutputTypes
35
+ >;
27
36
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
37
  };
29
38
  export declare class DeleteScraperCommand extends DeleteScraperCommand_base {}
@@ -19,6 +19,15 @@ declare const DeleteWorkspaceCommand_base: {
19
19
  ServiceInputTypes,
20
20
  ServiceOutputTypes
21
21
  >;
22
+ new (
23
+ __0_0: DeleteWorkspaceCommandInput
24
+ ): import("@smithy/smithy-client").CommandImpl<
25
+ DeleteWorkspaceCommandInput,
26
+ DeleteWorkspaceCommandOutput,
27
+ AmpClientResolvedConfig,
28
+ ServiceInputTypes,
29
+ ServiceOutputTypes
30
+ >;
22
31
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
23
32
  };
24
33
  export declare class DeleteWorkspaceCommand extends DeleteWorkspaceCommand_base {}
@@ -25,6 +25,15 @@ declare const DescribeAlertManagerDefinitionCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ __0_0: DescribeAlertManagerDefinitionCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ DescribeAlertManagerDefinitionCommandInput,
32
+ DescribeAlertManagerDefinitionCommandOutput,
33
+ AmpClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class DescribeAlertManagerDefinitionCommand extends DescribeAlertManagerDefinitionCommand_base {}
@@ -25,6 +25,15 @@ declare const DescribeLoggingConfigurationCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ __0_0: DescribeLoggingConfigurationCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ DescribeLoggingConfigurationCommandInput,
32
+ DescribeLoggingConfigurationCommandOutput,
33
+ AmpClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class DescribeLoggingConfigurationCommand extends DescribeLoggingConfigurationCommand_base {}
@@ -25,6 +25,15 @@ declare const DescribeRuleGroupsNamespaceCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ __0_0: DescribeRuleGroupsNamespaceCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ DescribeRuleGroupsNamespaceCommandInput,
32
+ DescribeRuleGroupsNamespaceCommandOutput,
33
+ AmpClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class DescribeRuleGroupsNamespaceCommand extends DescribeRuleGroupsNamespaceCommand_base {}
@@ -24,6 +24,15 @@ declare const DescribeScraperCommand_base: {
24
24
  ServiceInputTypes,
25
25
  ServiceOutputTypes
26
26
  >;
27
+ new (
28
+ __0_0: DescribeScraperCommandInput
29
+ ): import("@smithy/smithy-client").CommandImpl<
30
+ DescribeScraperCommandInput,
31
+ DescribeScraperCommandOutput,
32
+ AmpClientResolvedConfig,
33
+ ServiceInputTypes,
34
+ ServiceOutputTypes
35
+ >;
27
36
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
37
  };
29
38
  export declare class DescribeScraperCommand extends DescribeScraperCommand_base {}
@@ -25,6 +25,15 @@ declare const DescribeWorkspaceCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ __0_0: DescribeWorkspaceCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ DescribeWorkspaceCommandInput,
32
+ DescribeWorkspaceCommandOutput,
33
+ AmpClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class DescribeWorkspaceCommand extends DescribeWorkspaceCommand_base {}
@@ -25,6 +25,15 @@ declare const GetDefaultScraperConfigurationCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ ...[input]: [] | [GetDefaultScraperConfigurationCommandInput]
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ GetDefaultScraperConfigurationCommandInput,
32
+ GetDefaultScraperConfigurationCommandOutput,
33
+ AmpClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class GetDefaultScraperConfigurationCommand extends GetDefaultScraperConfigurationCommand_base {}
@@ -25,6 +25,15 @@ declare const ListRuleGroupsNamespacesCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ __0_0: ListRuleGroupsNamespacesCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ ListRuleGroupsNamespacesCommandInput,
32
+ ListRuleGroupsNamespacesCommandOutput,
33
+ AmpClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class ListRuleGroupsNamespacesCommand extends ListRuleGroupsNamespacesCommand_base {}
@@ -21,6 +21,15 @@ declare const ListScrapersCommand_base: {
21
21
  ServiceInputTypes,
22
22
  ServiceOutputTypes
23
23
  >;
24
+ new (
25
+ ...[input]: [] | [ListScrapersCommandInput]
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ ListScrapersCommandInput,
28
+ ListScrapersCommandOutput,
29
+ AmpClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
24
33
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
34
  };
26
35
  export declare class ListScrapersCommand extends ListScrapersCommand_base {}
@@ -25,6 +25,15 @@ declare const ListTagsForResourceCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ __0_0: ListTagsForResourceCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ ListTagsForResourceCommandInput,
32
+ ListTagsForResourceCommandOutput,
33
+ AmpClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {}
@@ -24,6 +24,15 @@ declare const ListWorkspacesCommand_base: {
24
24
  ServiceInputTypes,
25
25
  ServiceOutputTypes
26
26
  >;
27
+ new (
28
+ ...[input]: [] | [ListWorkspacesCommandInput]
29
+ ): import("@smithy/smithy-client").CommandImpl<
30
+ ListWorkspacesCommandInput,
31
+ ListWorkspacesCommandOutput,
32
+ AmpClientResolvedConfig,
33
+ ServiceInputTypes,
34
+ ServiceOutputTypes
35
+ >;
27
36
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
37
  };
29
38
  export declare class ListWorkspacesCommand extends ListWorkspacesCommand_base {}
@@ -25,6 +25,15 @@ declare const PutAlertManagerDefinitionCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ __0_0: PutAlertManagerDefinitionCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ PutAlertManagerDefinitionCommandInput,
32
+ PutAlertManagerDefinitionCommandOutput,
33
+ AmpClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class PutAlertManagerDefinitionCommand extends PutAlertManagerDefinitionCommand_base {}
@@ -25,6 +25,15 @@ declare const PutRuleGroupsNamespaceCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ __0_0: PutRuleGroupsNamespaceCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ PutRuleGroupsNamespaceCommandInput,
32
+ PutRuleGroupsNamespaceCommandOutput,
33
+ AmpClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class PutRuleGroupsNamespaceCommand extends PutRuleGroupsNamespaceCommand_base {}
@@ -21,6 +21,15 @@ declare const TagResourceCommand_base: {
21
21
  ServiceInputTypes,
22
22
  ServiceOutputTypes
23
23
  >;
24
+ new (
25
+ __0_0: TagResourceCommandInput
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ TagResourceCommandInput,
28
+ TagResourceCommandOutput,
29
+ AmpClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
24
33
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
34
  };
26
35
  export declare class TagResourceCommand extends TagResourceCommand_base {}
@@ -24,6 +24,15 @@ declare const UntagResourceCommand_base: {
24
24
  ServiceInputTypes,
25
25
  ServiceOutputTypes
26
26
  >;
27
+ new (
28
+ __0_0: UntagResourceCommandInput
29
+ ): import("@smithy/smithy-client").CommandImpl<
30
+ UntagResourceCommandInput,
31
+ UntagResourceCommandOutput,
32
+ AmpClientResolvedConfig,
33
+ ServiceInputTypes,
34
+ ServiceOutputTypes
35
+ >;
27
36
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
37
  };
29
38
  export declare class UntagResourceCommand extends UntagResourceCommand_base {}
@@ -25,6 +25,15 @@ declare const UpdateLoggingConfigurationCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ __0_0: UpdateLoggingConfigurationCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ UpdateLoggingConfigurationCommandInput,
32
+ UpdateLoggingConfigurationCommandOutput,
33
+ AmpClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class UpdateLoggingConfigurationCommand extends UpdateLoggingConfigurationCommand_base {}
@@ -20,6 +20,15 @@ declare const UpdateWorkspaceAliasCommand_base: {
20
20
  ServiceInputTypes,
21
21
  ServiceOutputTypes
22
22
  >;
23
+ new (
24
+ __0_0: UpdateWorkspaceAliasCommandInput
25
+ ): import("@smithy/smithy-client").CommandImpl<
26
+ UpdateWorkspaceAliasCommandInput,
27
+ UpdateWorkspaceAliasCommandOutput,
28
+ AmpClientResolvedConfig,
29
+ ServiceInputTypes,
30
+ ServiceOutputTypes
31
+ >;
23
32
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
24
33
  };
25
34
  export declare class UpdateWorkspaceAliasCommand extends UpdateWorkspaceAliasCommand_base {}
@@ -7,5 +7,4 @@ export * from "./commands";
7
7
  export * from "./pagination";
8
8
  export * from "./waiters";
9
9
  export * from "./models";
10
- import "@aws-sdk/util-endpoints";
11
10
  export { AmpServiceException } from "./models/AmpServiceException";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-amp",
3
3
  "description": "AWS SDK for JavaScript Amp Client for Node.js, Browser and React Native",
4
- "version": "3.533.0",
4
+ "version": "3.540.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-amp",
@@ -20,49 +20,49 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.533.0",
24
- "@aws-sdk/core": "3.533.0",
25
- "@aws-sdk/credential-provider-node": "3.533.0",
26
- "@aws-sdk/middleware-host-header": "3.533.0",
27
- "@aws-sdk/middleware-logger": "3.533.0",
28
- "@aws-sdk/middleware-recursion-detection": "3.533.0",
29
- "@aws-sdk/middleware-user-agent": "3.533.0",
30
- "@aws-sdk/region-config-resolver": "3.533.0",
31
- "@aws-sdk/types": "3.533.0",
32
- "@aws-sdk/util-endpoints": "3.533.0",
33
- "@aws-sdk/util-user-agent-browser": "3.533.0",
34
- "@aws-sdk/util-user-agent-node": "3.533.0",
35
- "@smithy/config-resolver": "^2.1.5",
36
- "@smithy/core": "^1.3.8",
37
- "@smithy/fetch-http-handler": "^2.4.5",
38
- "@smithy/hash-node": "^2.1.4",
39
- "@smithy/invalid-dependency": "^2.1.4",
40
- "@smithy/middleware-content-length": "^2.1.4",
41
- "@smithy/middleware-endpoint": "^2.4.6",
42
- "@smithy/middleware-retry": "^2.1.7",
43
- "@smithy/middleware-serde": "^2.2.1",
44
- "@smithy/middleware-stack": "^2.1.4",
45
- "@smithy/node-config-provider": "^2.2.5",
46
- "@smithy/node-http-handler": "^2.4.3",
47
- "@smithy/protocol-http": "^3.2.2",
48
- "@smithy/smithy-client": "^2.4.5",
49
- "@smithy/types": "^2.11.0",
50
- "@smithy/url-parser": "^2.1.4",
51
- "@smithy/util-base64": "^2.2.1",
52
- "@smithy/util-body-length-browser": "^2.1.1",
53
- "@smithy/util-body-length-node": "^2.2.2",
54
- "@smithy/util-defaults-mode-browser": "^2.1.7",
55
- "@smithy/util-defaults-mode-node": "^2.2.7",
56
- "@smithy/util-endpoints": "^1.1.5",
57
- "@smithy/util-middleware": "^2.1.4",
58
- "@smithy/util-retry": "^2.1.4",
59
- "@smithy/util-utf8": "^2.2.0",
60
- "@smithy/util-waiter": "^2.1.4",
61
- "tslib": "^2.5.0",
23
+ "@aws-sdk/client-sts": "3.540.0",
24
+ "@aws-sdk/core": "3.535.0",
25
+ "@aws-sdk/credential-provider-node": "3.540.0",
26
+ "@aws-sdk/middleware-host-header": "3.535.0",
27
+ "@aws-sdk/middleware-logger": "3.535.0",
28
+ "@aws-sdk/middleware-recursion-detection": "3.535.0",
29
+ "@aws-sdk/middleware-user-agent": "3.540.0",
30
+ "@aws-sdk/region-config-resolver": "3.535.0",
31
+ "@aws-sdk/types": "3.535.0",
32
+ "@aws-sdk/util-endpoints": "3.540.0",
33
+ "@aws-sdk/util-user-agent-browser": "3.535.0",
34
+ "@aws-sdk/util-user-agent-node": "3.535.0",
35
+ "@smithy/config-resolver": "^2.2.0",
36
+ "@smithy/core": "^1.4.0",
37
+ "@smithy/fetch-http-handler": "^2.5.0",
38
+ "@smithy/hash-node": "^2.2.0",
39
+ "@smithy/invalid-dependency": "^2.2.0",
40
+ "@smithy/middleware-content-length": "^2.2.0",
41
+ "@smithy/middleware-endpoint": "^2.5.0",
42
+ "@smithy/middleware-retry": "^2.2.0",
43
+ "@smithy/middleware-serde": "^2.3.0",
44
+ "@smithy/middleware-stack": "^2.2.0",
45
+ "@smithy/node-config-provider": "^2.3.0",
46
+ "@smithy/node-http-handler": "^2.5.0",
47
+ "@smithy/protocol-http": "^3.3.0",
48
+ "@smithy/smithy-client": "^2.5.0",
49
+ "@smithy/types": "^2.12.0",
50
+ "@smithy/url-parser": "^2.2.0",
51
+ "@smithy/util-base64": "^2.3.0",
52
+ "@smithy/util-body-length-browser": "^2.2.0",
53
+ "@smithy/util-body-length-node": "^2.3.0",
54
+ "@smithy/util-defaults-mode-browser": "^2.2.0",
55
+ "@smithy/util-defaults-mode-node": "^2.3.0",
56
+ "@smithy/util-endpoints": "^1.2.0",
57
+ "@smithy/util-middleware": "^2.2.0",
58
+ "@smithy/util-retry": "^2.2.0",
59
+ "@smithy/util-utf8": "^2.3.0",
60
+ "@smithy/util-waiter": "^2.2.0",
61
+ "tslib": "^2.6.2",
62
62
  "uuid": "^9.0.1"
63
63
  },
64
64
  "devDependencies": {
65
- "@smithy/service-client-documentation-generator": "^2.1.1",
65
+ "@smithy/service-client-documentation-generator": "^2.2.0",
66
66
  "@tsconfig/node14": "1.0.3",
67
67
  "@types/node": "^14.14.31",
68
68
  "@types/uuid": "^9.0.4",