@aws-sdk/client-ssm-quicksetup 3.1076.0 → 3.1078.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 (62) hide show
  1. package/dist-cjs/index.js +25 -145
  2. package/dist-es/commandBuilder.js +6 -0
  3. package/dist-es/commands/CreateConfigurationManagerCommand.js +2 -14
  4. package/dist-es/commands/DeleteConfigurationManagerCommand.js +2 -14
  5. package/dist-es/commands/GetConfigurationCommand.js +2 -14
  6. package/dist-es/commands/GetConfigurationManagerCommand.js +2 -14
  7. package/dist-es/commands/GetServiceSettingsCommand.js +2 -14
  8. package/dist-es/commands/ListConfigurationManagersCommand.js +2 -14
  9. package/dist-es/commands/ListConfigurationsCommand.js +2 -14
  10. package/dist-es/commands/ListQuickSetupTypesCommand.js +2 -14
  11. package/dist-es/commands/ListTagsForResourceCommand.js +2 -14
  12. package/dist-es/commands/TagResourceCommand.js +2 -14
  13. package/dist-es/commands/UntagResourceCommand.js +2 -14
  14. package/dist-es/commands/UpdateConfigurationDefinitionCommand.js +2 -14
  15. package/dist-es/commands/UpdateConfigurationManagerCommand.js +2 -14
  16. package/dist-es/commands/UpdateServiceSettingsCommand.js +2 -14
  17. package/dist-es/index.js +1 -0
  18. package/dist-es/runtimeConfig.browser.js +0 -2
  19. package/dist-es/runtimeConfig.js +1 -2
  20. package/dist-es/runtimeConfig.native.js +0 -2
  21. package/dist-es/runtimeConfig.shared.js +2 -0
  22. package/dist-types/commandBuilder.d.ts +18 -0
  23. package/dist-types/commands/CreateConfigurationManagerCommand.d.ts +3 -8
  24. package/dist-types/commands/DeleteConfigurationManagerCommand.d.ts +3 -8
  25. package/dist-types/commands/GetConfigurationCommand.d.ts +3 -8
  26. package/dist-types/commands/GetConfigurationManagerCommand.d.ts +3 -8
  27. package/dist-types/commands/GetServiceSettingsCommand.d.ts +3 -8
  28. package/dist-types/commands/ListConfigurationManagersCommand.d.ts +3 -8
  29. package/dist-types/commands/ListConfigurationsCommand.d.ts +3 -8
  30. package/dist-types/commands/ListQuickSetupTypesCommand.d.ts +3 -8
  31. package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -8
  32. package/dist-types/commands/TagResourceCommand.d.ts +3 -8
  33. package/dist-types/commands/UntagResourceCommand.d.ts +3 -8
  34. package/dist-types/commands/UpdateConfigurationDefinitionCommand.d.ts +3 -8
  35. package/dist-types/commands/UpdateConfigurationManagerCommand.d.ts +3 -8
  36. package/dist-types/commands/UpdateServiceSettingsCommand.d.ts +3 -8
  37. package/dist-types/index.d.ts +1 -0
  38. package/dist-types/runtimeConfig.browser.d.ts +1 -1
  39. package/dist-types/runtimeConfig.d.ts +1 -1
  40. package/dist-types/runtimeConfig.native.d.ts +1 -1
  41. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  42. package/dist-types/ts3.4/commandBuilder.d.ts +46 -0
  43. package/dist-types/ts3.4/commands/CreateConfigurationManagerCommand.d.ts +7 -16
  44. package/dist-types/ts3.4/commands/DeleteConfigurationManagerCommand.d.ts +7 -16
  45. package/dist-types/ts3.4/commands/GetConfigurationCommand.d.ts +7 -16
  46. package/dist-types/ts3.4/commands/GetConfigurationManagerCommand.d.ts +7 -16
  47. package/dist-types/ts3.4/commands/GetServiceSettingsCommand.d.ts +7 -16
  48. package/dist-types/ts3.4/commands/ListConfigurationManagersCommand.d.ts +7 -16
  49. package/dist-types/ts3.4/commands/ListConfigurationsCommand.d.ts +7 -16
  50. package/dist-types/ts3.4/commands/ListQuickSetupTypesCommand.d.ts +7 -16
  51. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +7 -16
  52. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +7 -16
  53. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +7 -16
  54. package/dist-types/ts3.4/commands/UpdateConfigurationDefinitionCommand.d.ts +7 -16
  55. package/dist-types/ts3.4/commands/UpdateConfigurationManagerCommand.d.ts +7 -16
  56. package/dist-types/ts3.4/commands/UpdateServiceSettingsCommand.d.ts +7 -16
  57. package/dist-types/ts3.4/index.d.ts +1 -0
  58. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
  59. package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
  60. package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
  61. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
  62. package/package.json +8 -10
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { CreateConfigurationManagerInput, CreateConfigurationManagerOutput } from "../models/models_0";
4
- import type { ServiceInputTypes, ServiceOutputTypes, SSMQuickSetupClientResolvedConfig } from "../SSMQuickSetupClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface CreateConfigurationManagerCommandInput extends CreateConfigurat
22
19
  export interface CreateConfigurationManagerCommandOutput extends CreateConfigurationManagerOutput, __MetadataBearer {
23
20
  }
24
21
  declare const CreateConfigurationManagerCommand_base: {
25
- new (input: CreateConfigurationManagerCommandInput): import("@smithy/core/client").CommandImpl<CreateConfigurationManagerCommandInput, CreateConfigurationManagerCommandOutput, SSMQuickSetupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: CreateConfigurationManagerCommandInput): import("@smithy/core/client").CommandImpl<CreateConfigurationManagerCommandInput, CreateConfigurationManagerCommandOutput, SSMQuickSetupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: CreateConfigurationManagerCommandInput): import("@smithy/core/client").CommandImpl<CreateConfigurationManagerCommandInput, CreateConfigurationManagerCommandOutput, import("..").SSMQuickSetupClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: CreateConfigurationManagerCommandInput): import("@smithy/core/client").CommandImpl<CreateConfigurationManagerCommandInput, CreateConfigurationManagerCommandOutput, import("..").SSMQuickSetupClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Creates a Quick Setup configuration manager resource. This object is a collection
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { DeleteConfigurationManagerInput } from "../models/models_0";
4
- import type { ServiceInputTypes, ServiceOutputTypes, SSMQuickSetupClientResolvedConfig } from "../SSMQuickSetupClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface DeleteConfigurationManagerCommandInput extends DeleteConfigurat
22
19
  export interface DeleteConfigurationManagerCommandOutput extends __MetadataBearer {
23
20
  }
24
21
  declare const DeleteConfigurationManagerCommand_base: {
25
- new (input: DeleteConfigurationManagerCommandInput): import("@smithy/core/client").CommandImpl<DeleteConfigurationManagerCommandInput, DeleteConfigurationManagerCommandOutput, SSMQuickSetupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: DeleteConfigurationManagerCommandInput): import("@smithy/core/client").CommandImpl<DeleteConfigurationManagerCommandInput, DeleteConfigurationManagerCommandOutput, SSMQuickSetupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: DeleteConfigurationManagerCommandInput): import("@smithy/core/client").CommandImpl<DeleteConfigurationManagerCommandInput, DeleteConfigurationManagerCommandOutput, import("..").SSMQuickSetupClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: DeleteConfigurationManagerCommandInput): import("@smithy/core/client").CommandImpl<DeleteConfigurationManagerCommandInput, DeleteConfigurationManagerCommandOutput, import("..").SSMQuickSetupClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Deletes a configuration manager.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { GetConfigurationInput, GetConfigurationOutput } from "../models/models_0";
4
- import type { ServiceInputTypes, ServiceOutputTypes, SSMQuickSetupClientResolvedConfig } from "../SSMQuickSetupClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface GetConfigurationCommandInput extends GetConfigurationInput {
22
19
  export interface GetConfigurationCommandOutput extends GetConfigurationOutput, __MetadataBearer {
23
20
  }
24
21
  declare const GetConfigurationCommand_base: {
25
- new (input: GetConfigurationCommandInput): import("@smithy/core/client").CommandImpl<GetConfigurationCommandInput, GetConfigurationCommandOutput, SSMQuickSetupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: GetConfigurationCommandInput): import("@smithy/core/client").CommandImpl<GetConfigurationCommandInput, GetConfigurationCommandOutput, SSMQuickSetupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: GetConfigurationCommandInput): import("@smithy/core/client").CommandImpl<GetConfigurationCommandInput, GetConfigurationCommandOutput, import("..").SSMQuickSetupClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: GetConfigurationCommandInput): import("@smithy/core/client").CommandImpl<GetConfigurationCommandInput, GetConfigurationCommandOutput, import("..").SSMQuickSetupClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Returns details about the specified configuration.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { GetConfigurationManagerInput, GetConfigurationManagerOutput } from "../models/models_0";
4
- import type { ServiceInputTypes, ServiceOutputTypes, SSMQuickSetupClientResolvedConfig } from "../SSMQuickSetupClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface GetConfigurationManagerCommandInput extends GetConfigurationMan
22
19
  export interface GetConfigurationManagerCommandOutput extends GetConfigurationManagerOutput, __MetadataBearer {
23
20
  }
24
21
  declare const GetConfigurationManagerCommand_base: {
25
- new (input: GetConfigurationManagerCommandInput): import("@smithy/core/client").CommandImpl<GetConfigurationManagerCommandInput, GetConfigurationManagerCommandOutput, SSMQuickSetupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: GetConfigurationManagerCommandInput): import("@smithy/core/client").CommandImpl<GetConfigurationManagerCommandInput, GetConfigurationManagerCommandOutput, SSMQuickSetupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: GetConfigurationManagerCommandInput): import("@smithy/core/client").CommandImpl<GetConfigurationManagerCommandInput, GetConfigurationManagerCommandOutput, import("..").SSMQuickSetupClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: GetConfigurationManagerCommandInput): import("@smithy/core/client").CommandImpl<GetConfigurationManagerCommandInput, GetConfigurationManagerCommandOutput, import("..").SSMQuickSetupClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Returns a configuration manager.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { GetServiceSettingsOutput } from "../models/models_0";
4
- import type { ServiceInputTypes, ServiceOutputTypes, SSMQuickSetupClientResolvedConfig } from "../SSMQuickSetupClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface GetServiceSettingsCommandInput {
22
19
  export interface GetServiceSettingsCommandOutput extends GetServiceSettingsOutput, __MetadataBearer {
23
20
  }
24
21
  declare const GetServiceSettingsCommand_base: {
25
- new (input: GetServiceSettingsCommandInput): import("@smithy/core/client").CommandImpl<GetServiceSettingsCommandInput, GetServiceSettingsCommandOutput, SSMQuickSetupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [GetServiceSettingsCommandInput]): import("@smithy/core/client").CommandImpl<GetServiceSettingsCommandInput, GetServiceSettingsCommandOutput, SSMQuickSetupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: GetServiceSettingsCommandInput): import("@smithy/core/client").CommandImpl<GetServiceSettingsCommandInput, GetServiceSettingsCommandOutput, import("..").SSMQuickSetupClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (...[input]: [] | [GetServiceSettingsCommandInput]): import("@smithy/core/client").CommandImpl<GetServiceSettingsCommandInput, GetServiceSettingsCommandOutput, import("..").SSMQuickSetupClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Returns settings configured for Quick Setup in the requesting Amazon Web Services account and Amazon Web Services Region.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { ListConfigurationManagersInput, ListConfigurationManagersOutput } from "../models/models_0";
4
- import type { ServiceInputTypes, ServiceOutputTypes, SSMQuickSetupClientResolvedConfig } from "../SSMQuickSetupClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface ListConfigurationManagersCommandInput extends ListConfiguration
22
19
  export interface ListConfigurationManagersCommandOutput extends ListConfigurationManagersOutput, __MetadataBearer {
23
20
  }
24
21
  declare const ListConfigurationManagersCommand_base: {
25
- new (input: ListConfigurationManagersCommandInput): import("@smithy/core/client").CommandImpl<ListConfigurationManagersCommandInput, ListConfigurationManagersCommandOutput, SSMQuickSetupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [ListConfigurationManagersCommandInput]): import("@smithy/core/client").CommandImpl<ListConfigurationManagersCommandInput, ListConfigurationManagersCommandOutput, SSMQuickSetupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: ListConfigurationManagersCommandInput): import("@smithy/core/client").CommandImpl<ListConfigurationManagersCommandInput, ListConfigurationManagersCommandOutput, import("..").SSMQuickSetupClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (...[input]: [] | [ListConfigurationManagersCommandInput]): import("@smithy/core/client").CommandImpl<ListConfigurationManagersCommandInput, ListConfigurationManagersCommandOutput, import("..").SSMQuickSetupClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Returns Quick Setup configuration managers.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { ListConfigurationsInput, ListConfigurationsOutput } from "../models/models_0";
4
- import type { ServiceInputTypes, ServiceOutputTypes, SSMQuickSetupClientResolvedConfig } from "../SSMQuickSetupClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface ListConfigurationsCommandInput extends ListConfigurationsInput
22
19
  export interface ListConfigurationsCommandOutput extends ListConfigurationsOutput, __MetadataBearer {
23
20
  }
24
21
  declare const ListConfigurationsCommand_base: {
25
- new (input: ListConfigurationsCommandInput): import("@smithy/core/client").CommandImpl<ListConfigurationsCommandInput, ListConfigurationsCommandOutput, SSMQuickSetupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [ListConfigurationsCommandInput]): import("@smithy/core/client").CommandImpl<ListConfigurationsCommandInput, ListConfigurationsCommandOutput, SSMQuickSetupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: ListConfigurationsCommandInput): import("@smithy/core/client").CommandImpl<ListConfigurationsCommandInput, ListConfigurationsCommandOutput, import("..").SSMQuickSetupClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (...[input]: [] | [ListConfigurationsCommandInput]): import("@smithy/core/client").CommandImpl<ListConfigurationsCommandInput, ListConfigurationsCommandOutput, import("..").SSMQuickSetupClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Returns configurations deployed by Quick Setup in the requesting Amazon Web Services account and Amazon Web Services Region.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { ListQuickSetupTypesOutput } from "../models/models_0";
4
- import type { ServiceInputTypes, ServiceOutputTypes, SSMQuickSetupClientResolvedConfig } from "../SSMQuickSetupClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface ListQuickSetupTypesCommandInput {
22
19
  export interface ListQuickSetupTypesCommandOutput extends ListQuickSetupTypesOutput, __MetadataBearer {
23
20
  }
24
21
  declare const ListQuickSetupTypesCommand_base: {
25
- new (input: ListQuickSetupTypesCommandInput): import("@smithy/core/client").CommandImpl<ListQuickSetupTypesCommandInput, ListQuickSetupTypesCommandOutput, SSMQuickSetupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [ListQuickSetupTypesCommandInput]): import("@smithy/core/client").CommandImpl<ListQuickSetupTypesCommandInput, ListQuickSetupTypesCommandOutput, SSMQuickSetupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: ListQuickSetupTypesCommandInput): import("@smithy/core/client").CommandImpl<ListQuickSetupTypesCommandInput, ListQuickSetupTypesCommandOutput, import("..").SSMQuickSetupClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (...[input]: [] | [ListQuickSetupTypesCommandInput]): import("@smithy/core/client").CommandImpl<ListQuickSetupTypesCommandInput, ListQuickSetupTypesCommandOutput, import("..").SSMQuickSetupClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Returns the available Quick Setup types.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
4
- import type { ServiceInputTypes, ServiceOutputTypes, SSMQuickSetupClientResolvedConfig } from "../SSMQuickSetupClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequ
22
19
  export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
23
20
  }
24
21
  declare const ListTagsForResourceCommand_base: {
25
- new (input: ListTagsForResourceCommandInput): import("@smithy/core/client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, SSMQuickSetupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: ListTagsForResourceCommandInput): import("@smithy/core/client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, SSMQuickSetupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: ListTagsForResourceCommandInput): import("@smithy/core/client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, import("..").SSMQuickSetupClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: ListTagsForResourceCommandInput): import("@smithy/core/client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, import("..").SSMQuickSetupClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Returns tags assigned to the resource.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { TagResourceInput } from "../models/models_0";
4
- import type { ServiceInputTypes, ServiceOutputTypes, SSMQuickSetupClientResolvedConfig } from "../SSMQuickSetupClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface TagResourceCommandInput extends TagResourceInput {
22
19
  export interface TagResourceCommandOutput extends __MetadataBearer {
23
20
  }
24
21
  declare const TagResourceCommand_base: {
25
- new (input: TagResourceCommandInput): import("@smithy/core/client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, SSMQuickSetupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: TagResourceCommandInput): import("@smithy/core/client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, SSMQuickSetupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: TagResourceCommandInput): import("@smithy/core/client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, import("..").SSMQuickSetupClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: TagResourceCommandInput): import("@smithy/core/client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, import("..").SSMQuickSetupClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Assigns key-value pairs of metadata to Amazon Web Services resources.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { UntagResourceInput } from "../models/models_0";
4
- import type { ServiceInputTypes, ServiceOutputTypes, SSMQuickSetupClientResolvedConfig } from "../SSMQuickSetupClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface UntagResourceCommandInput extends UntagResourceInput {
22
19
  export interface UntagResourceCommandOutput extends __MetadataBearer {
23
20
  }
24
21
  declare const UntagResourceCommand_base: {
25
- new (input: UntagResourceCommandInput): import("@smithy/core/client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, SSMQuickSetupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: UntagResourceCommandInput): import("@smithy/core/client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, SSMQuickSetupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: UntagResourceCommandInput): import("@smithy/core/client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, import("..").SSMQuickSetupClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: UntagResourceCommandInput): import("@smithy/core/client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, import("..").SSMQuickSetupClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Removes tags from the specified resource.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { UpdateConfigurationDefinitionInput } from "../models/models_0";
4
- import type { ServiceInputTypes, ServiceOutputTypes, SSMQuickSetupClientResolvedConfig } from "../SSMQuickSetupClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface UpdateConfigurationDefinitionCommandInput extends UpdateConfigu
22
19
  export interface UpdateConfigurationDefinitionCommandOutput extends __MetadataBearer {
23
20
  }
24
21
  declare const UpdateConfigurationDefinitionCommand_base: {
25
- new (input: UpdateConfigurationDefinitionCommandInput): import("@smithy/core/client").CommandImpl<UpdateConfigurationDefinitionCommandInput, UpdateConfigurationDefinitionCommandOutput, SSMQuickSetupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: UpdateConfigurationDefinitionCommandInput): import("@smithy/core/client").CommandImpl<UpdateConfigurationDefinitionCommandInput, UpdateConfigurationDefinitionCommandOutput, SSMQuickSetupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: UpdateConfigurationDefinitionCommandInput): import("@smithy/core/client").CommandImpl<UpdateConfigurationDefinitionCommandInput, UpdateConfigurationDefinitionCommandOutput, import("..").SSMQuickSetupClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: UpdateConfigurationDefinitionCommandInput): import("@smithy/core/client").CommandImpl<UpdateConfigurationDefinitionCommandInput, UpdateConfigurationDefinitionCommandOutput, import("..").SSMQuickSetupClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Updates a Quick Setup configuration definition.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { UpdateConfigurationManagerInput } from "../models/models_0";
4
- import type { ServiceInputTypes, ServiceOutputTypes, SSMQuickSetupClientResolvedConfig } from "../SSMQuickSetupClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface UpdateConfigurationManagerCommandInput extends UpdateConfigurat
22
19
  export interface UpdateConfigurationManagerCommandOutput extends __MetadataBearer {
23
20
  }
24
21
  declare const UpdateConfigurationManagerCommand_base: {
25
- new (input: UpdateConfigurationManagerCommandInput): import("@smithy/core/client").CommandImpl<UpdateConfigurationManagerCommandInput, UpdateConfigurationManagerCommandOutput, SSMQuickSetupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: UpdateConfigurationManagerCommandInput): import("@smithy/core/client").CommandImpl<UpdateConfigurationManagerCommandInput, UpdateConfigurationManagerCommandOutput, SSMQuickSetupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: UpdateConfigurationManagerCommandInput): import("@smithy/core/client").CommandImpl<UpdateConfigurationManagerCommandInput, UpdateConfigurationManagerCommandOutput, import("..").SSMQuickSetupClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: UpdateConfigurationManagerCommandInput): import("@smithy/core/client").CommandImpl<UpdateConfigurationManagerCommandInput, UpdateConfigurationManagerCommandOutput, import("..").SSMQuickSetupClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Updates a Quick Setup configuration manager.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { UpdateServiceSettingsInput } from "../models/models_0";
4
- import type { ServiceInputTypes, ServiceOutputTypes, SSMQuickSetupClientResolvedConfig } from "../SSMQuickSetupClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface UpdateServiceSettingsCommandInput extends UpdateServiceSettings
22
19
  export interface UpdateServiceSettingsCommandOutput extends __MetadataBearer {
23
20
  }
24
21
  declare const UpdateServiceSettingsCommand_base: {
25
- new (input: UpdateServiceSettingsCommandInput): import("@smithy/core/client").CommandImpl<UpdateServiceSettingsCommandInput, UpdateServiceSettingsCommandOutput, SSMQuickSetupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [UpdateServiceSettingsCommandInput]): import("@smithy/core/client").CommandImpl<UpdateServiceSettingsCommandInput, UpdateServiceSettingsCommandOutput, SSMQuickSetupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: UpdateServiceSettingsCommandInput): import("@smithy/core/client").CommandImpl<UpdateServiceSettingsCommandInput, UpdateServiceSettingsCommandOutput, import("..").SSMQuickSetupClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (...[input]: [] | [UpdateServiceSettingsCommandInput]): import("@smithy/core/client").CommandImpl<UpdateServiceSettingsCommandInput, UpdateServiceSettingsCommandOutput, import("..").SSMQuickSetupClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Updates settings configured for Quick Setup.</p>
@@ -11,6 +11,7 @@ export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameter
11
11
  export type { RuntimeExtension } from "./runtimeExtensions";
12
12
  export type { SSMQuickSetupExtensionConfiguration } from "./extensionConfiguration";
13
13
  export * from "./commands";
14
+ export { Command as $Command } from "@smithy/core/client";
14
15
  export * from "./schemas/schemas_0";
15
16
  export * from "./pagination";
16
17
  export * from "./models/enums";
@@ -13,7 +13,6 @@ export declare const getRuntimeConfig: (config: SSMQuickSetupClientConfig) => {
13
13
  region: string | import("@smithy/types").Provider<any>;
14
14
  requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
15
15
  retryMode: string | import("@smithy/types").Provider<string>;
16
- sha256: import("@smithy/types").HashConstructor;
17
16
  streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
18
17
  useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
19
18
  useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
@@ -24,6 +23,7 @@ export declare const getRuntimeConfig: (config: SSMQuickSetupClientConfig) => {
24
23
  [setting: string]: unknown;
25
24
  };
26
25
  apiVersion: string;
26
+ sha256: import("@smithy/types").HashConstructor;
27
27
  urlParser: import("@smithy/types").UrlParser;
28
28
  base64Decoder: import("@smithy/types").Decoder;
29
29
  base64Encoder: (_input: Uint8Array | string) => string;
@@ -14,7 +14,6 @@ export declare const getRuntimeConfig: (config: SSMQuickSetupClientConfig) => {
14
14
  region: string | import("@smithy/types").Provider<string>;
15
15
  requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
16
16
  retryMode: string | import("@smithy/types").Provider<string>;
17
- sha256: import("@smithy/types").HashConstructor;
18
17
  streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
19
18
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
20
19
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
@@ -26,6 +25,7 @@ export declare const getRuntimeConfig: (config: SSMQuickSetupClientConfig) => {
26
25
  [setting: string]: unknown;
27
26
  };
28
27
  apiVersion: string;
28
+ sha256: import("@smithy/types").HashConstructor;
29
29
  urlParser: import("@smithy/types").UrlParser;
30
30
  base64Decoder: import("@smithy/types").Decoder;
31
31
  base64Encoder: (_input: Uint8Array | string) => string;
@@ -4,7 +4,6 @@ import type { SSMQuickSetupClientConfig } from "./SSMQuickSetupClient";
4
4
  */
5
5
  export declare const getRuntimeConfig: (config: SSMQuickSetupClientConfig) => {
6
6
  runtime: string;
7
- sha256: import("@smithy/types").HashConstructor;
8
7
  requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/core/protocols").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
9
8
  cacheMiddleware?: boolean;
10
9
  protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
@@ -13,6 +12,7 @@ export declare const getRuntimeConfig: (config: SSMQuickSetupClientConfig) => {
13
12
  [setting: string]: unknown;
14
13
  };
15
14
  apiVersion: string;
15
+ sha256: import("@smithy/types").HashConstructor;
16
16
  urlParser: import("@smithy/types").UrlParser;
17
17
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
18
18
  streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
@@ -21,6 +21,7 @@ export declare const getRuntimeConfig: (config: SSMQuickSetupClientConfig) => {
21
21
  defaultNamespace?: string;
22
22
  };
23
23
  serviceId: string;
24
+ sha256: import("@smithy/types").HashConstructor;
24
25
  urlParser: import("@smithy/types").UrlParser;
25
26
  utf8Decoder: import("@smithy/types").Decoder;
26
27
  utf8Encoder: (input: Uint8Array | string) => string;
@@ -0,0 +1,46 @@
1
+ import { EndpointParameterInstructions } from "@smithy/types";
2
+ import {
3
+ ServiceInputTypes,
4
+ ServiceOutputTypes,
5
+ SSMQuickSetupClientResolvedConfig,
6
+ } from "./SSMQuickSetupClient";
7
+ export declare const command: <
8
+ I extends ServiceInputTypes,
9
+ O extends ServiceOutputTypes
10
+ >(
11
+ added: EndpointParameterInstructions,
12
+ plugins: (
13
+ CommandCtor: any,
14
+ clientStack: any,
15
+ config: any,
16
+ options: any
17
+ ) => import("@smithy/types").Pluggable<any, any>[],
18
+ op: string,
19
+ $: import("@smithy/types").StaticOperationSchema,
20
+ smithyContext?: Record<string, unknown>
21
+ ) => {
22
+ new (input: I): import("@smithy/core/client").CommandImpl<
23
+ I,
24
+ O,
25
+ SSMQuickSetupClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ ...[input]: import("@smithy/types").OptionalParameter<I>
31
+ ): import("@smithy/core/client").CommandImpl<
32
+ I,
33
+ O,
34
+ SSMQuickSetupClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): EndpointParameterInstructions;
39
+ };
40
+ export declare const _ep0: EndpointParameterInstructions;
41
+ export declare const _mw0: (
42
+ Command: any,
43
+ cs: any,
44
+ config: any,
45
+ o: any
46
+ ) => never[];
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import {
4
3
  CreateConfigurationManagerInput,
5
4
  CreateConfigurationManagerOutput,
6
5
  } from "../models/models_0";
7
- import {
8
- ServiceInputTypes,
9
- ServiceOutputTypes,
10
- SSMQuickSetupClientResolvedConfig,
11
- } from "../SSMQuickSetupClient";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface CreateConfigurationManagerCommandInput
15
8
  extends CreateConfigurationManagerInput {}
16
9
  export interface CreateConfigurationManagerCommandOutput
@@ -22,22 +15,20 @@ declare const CreateConfigurationManagerCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  CreateConfigurationManagerCommandInput,
24
17
  CreateConfigurationManagerCommandOutput,
25
- SSMQuickSetupClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").SSMQuickSetupClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: CreateConfigurationManagerCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  CreateConfigurationManagerCommandInput,
33
26
  CreateConfigurationManagerCommandOutput,
34
- SSMQuickSetupClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").SSMQuickSetupClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class CreateConfigurationManagerCommand extends CreateConfigurationManagerCommand_base {
43
34
  protected static __types: {
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import { DeleteConfigurationManagerInput } from "../models/models_0";
4
- import {
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- SSMQuickSetupClientResolvedConfig,
8
- } from "../SSMQuickSetupClient";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface DeleteConfigurationManagerCommandInput
12
5
  extends DeleteConfigurationManagerInput {}
13
6
  export interface DeleteConfigurationManagerCommandOutput
@@ -18,22 +11,20 @@ declare const DeleteConfigurationManagerCommand_base: {
18
11
  ): import("@smithy/core/client").CommandImpl<
19
12
  DeleteConfigurationManagerCommandInput,
20
13
  DeleteConfigurationManagerCommandOutput,
21
- SSMQuickSetupClientResolvedConfig,
22
- ServiceInputTypes,
23
- ServiceOutputTypes
14
+ import("..").SSMQuickSetupClientResolvedConfig,
15
+ import("..").ServiceInputTypes,
16
+ import("..").ServiceOutputTypes
24
17
  >;
25
18
  new (
26
19
  input: DeleteConfigurationManagerCommandInput
27
20
  ): import("@smithy/core/client").CommandImpl<
28
21
  DeleteConfigurationManagerCommandInput,
29
22
  DeleteConfigurationManagerCommandOutput,
30
- SSMQuickSetupClientResolvedConfig,
31
- ServiceInputTypes,
32
- ServiceOutputTypes
23
+ import("..").SSMQuickSetupClientResolvedConfig,
24
+ import("..").ServiceInputTypes,
25
+ import("..").ServiceOutputTypes
33
26
  >;
34
- getEndpointParameterInstructions(): {
35
- [x: string]: unknown;
36
- };
27
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
37
28
  };
38
29
  export declare class DeleteConfigurationManagerCommand extends DeleteConfigurationManagerCommand_base {
39
30
  protected static __types: {