@aws-sdk/client-ssm-quicksetup 3.622.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 (139) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +303 -0
  3. package/dist-cjs/SSMQuickSetup.js +35 -0
  4. package/dist-cjs/SSMQuickSetupClient.js +50 -0
  5. package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
  6. package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
  7. package/dist-cjs/commands/CreateConfigurationManagerCommand.js +29 -0
  8. package/dist-cjs/commands/DeleteConfigurationManagerCommand.js +28 -0
  9. package/dist-cjs/commands/GetConfigurationManagerCommand.js +29 -0
  10. package/dist-cjs/commands/GetServiceSettingsCommand.js +28 -0
  11. package/dist-cjs/commands/ListConfigurationManagersCommand.js +28 -0
  12. package/dist-cjs/commands/ListQuickSetupTypesCommand.js +28 -0
  13. package/dist-cjs/commands/ListTagsForResourceCommand.js +29 -0
  14. package/dist-cjs/commands/TagResourceCommand.js +29 -0
  15. package/dist-cjs/commands/UntagResourceCommand.js +28 -0
  16. package/dist-cjs/commands/UpdateConfigurationDefinitionCommand.js +28 -0
  17. package/dist-cjs/commands/UpdateConfigurationManagerCommand.js +28 -0
  18. package/dist-cjs/commands/UpdateServiceSettingsCommand.js +28 -0
  19. package/dist-cjs/commands/index.js +15 -0
  20. package/dist-cjs/endpoint/EndpointParameters.js +18 -0
  21. package/dist-cjs/endpoint/endpointResolver.js +14 -0
  22. package/dist-cjs/endpoint/ruleset.js +7 -0
  23. package/dist-cjs/extensionConfiguration.js +2 -0
  24. package/dist-cjs/index.js +11 -0
  25. package/dist-cjs/models/SSMQuickSetupServiceException.js +12 -0
  26. package/dist-cjs/models/index.js +4 -0
  27. package/dist-cjs/models/models_0.js +131 -0
  28. package/dist-cjs/pagination/Interfaces.js +2 -0
  29. package/dist-cjs/pagination/ListConfigurationManagersPaginator.js +7 -0
  30. package/dist-cjs/pagination/index.js +5 -0
  31. package/dist-cjs/protocols/Aws_restJson1.js +494 -0
  32. package/dist-cjs/runtimeConfig.browser.js +39 -0
  33. package/dist-cjs/runtimeConfig.js +49 -0
  34. package/dist-cjs/runtimeConfig.native.js +15 -0
  35. package/dist-cjs/runtimeConfig.shared.js +34 -0
  36. package/dist-cjs/runtimeExtensions.js +25 -0
  37. package/dist-es/SSMQuickSetup.js +31 -0
  38. package/dist-es/SSMQuickSetupClient.js +46 -0
  39. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  40. package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
  41. package/dist-es/commands/CreateConfigurationManagerCommand.js +25 -0
  42. package/dist-es/commands/DeleteConfigurationManagerCommand.js +24 -0
  43. package/dist-es/commands/GetConfigurationManagerCommand.js +25 -0
  44. package/dist-es/commands/GetServiceSettingsCommand.js +24 -0
  45. package/dist-es/commands/ListConfigurationManagersCommand.js +24 -0
  46. package/dist-es/commands/ListQuickSetupTypesCommand.js +24 -0
  47. package/dist-es/commands/ListTagsForResourceCommand.js +25 -0
  48. package/dist-es/commands/TagResourceCommand.js +25 -0
  49. package/dist-es/commands/UntagResourceCommand.js +24 -0
  50. package/dist-es/commands/UpdateConfigurationDefinitionCommand.js +24 -0
  51. package/dist-es/commands/UpdateConfigurationManagerCommand.js +24 -0
  52. package/dist-es/commands/UpdateServiceSettingsCommand.js +24 -0
  53. package/dist-es/commands/index.js +12 -0
  54. package/dist-es/endpoint/EndpointParameters.js +14 -0
  55. package/dist-es/endpoint/endpointResolver.js +10 -0
  56. package/dist-es/endpoint/ruleset.js +4 -0
  57. package/dist-es/extensionConfiguration.js +1 -0
  58. package/dist-es/index.js +6 -0
  59. package/dist-es/models/SSMQuickSetupServiceException.js +8 -0
  60. package/dist-es/models/index.js +1 -0
  61. package/dist-es/models/models_0.js +117 -0
  62. package/dist-es/pagination/Interfaces.js +1 -0
  63. package/dist-es/pagination/ListConfigurationManagersPaginator.js +4 -0
  64. package/dist-es/pagination/index.js +2 -0
  65. package/dist-es/protocols/Aws_restJson1.js +467 -0
  66. package/dist-es/runtimeConfig.browser.js +34 -0
  67. package/dist-es/runtimeConfig.js +44 -0
  68. package/dist-es/runtimeConfig.native.js +11 -0
  69. package/dist-es/runtimeConfig.shared.js +30 -0
  70. package/dist-es/runtimeExtensions.js +21 -0
  71. package/dist-types/SSMQuickSetup.d.ts +100 -0
  72. package/dist-types/SSMQuickSetupClient.d.ts +183 -0
  73. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  74. package/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
  75. package/dist-types/commands/CreateConfigurationManagerCommand.d.ts +93 -0
  76. package/dist-types/commands/DeleteConfigurationManagerCommand.d.ts +77 -0
  77. package/dist-types/commands/GetConfigurationManagerCommand.d.ts +109 -0
  78. package/dist-types/commands/GetServiceSettingsCommand.d.ts +72 -0
  79. package/dist-types/commands/ListConfigurationManagersCommand.d.ts +113 -0
  80. package/dist-types/commands/ListQuickSetupTypesCommand.d.ts +75 -0
  81. package/dist-types/commands/ListTagsForResourceCommand.d.ts +84 -0
  82. package/dist-types/commands/TagResourceCommand.d.ts +80 -0
  83. package/dist-types/commands/UntagResourceCommand.d.ts +80 -0
  84. package/dist-types/commands/UpdateConfigurationDefinitionCommand.d.ts +84 -0
  85. package/dist-types/commands/UpdateConfigurationManagerCommand.d.ts +79 -0
  86. package/dist-types/commands/UpdateServiceSettingsCommand.d.ts +74 -0
  87. package/dist-types/commands/index.d.ts +12 -0
  88. package/dist-types/endpoint/EndpointParameters.d.ts +40 -0
  89. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  90. package/dist-types/endpoint/ruleset.d.ts +2 -0
  91. package/dist-types/extensionConfiguration.d.ts +9 -0
  92. package/dist-types/index.d.ts +16 -0
  93. package/dist-types/models/SSMQuickSetupServiceException.d.ts +14 -0
  94. package/dist-types/models/index.d.ts +1 -0
  95. package/dist-types/models/models_0.d.ts +2014 -0
  96. package/dist-types/pagination/Interfaces.d.ts +8 -0
  97. package/dist-types/pagination/ListConfigurationManagersPaginator.d.ts +7 -0
  98. package/dist-types/pagination/index.d.ts +2 -0
  99. package/dist-types/protocols/Aws_restJson1.d.ts +110 -0
  100. package/dist-types/runtimeConfig.browser.d.ts +45 -0
  101. package/dist-types/runtimeConfig.d.ts +45 -0
  102. package/dist-types/runtimeConfig.native.d.ts +44 -0
  103. package/dist-types/runtimeConfig.shared.d.ts +21 -0
  104. package/dist-types/runtimeExtensions.d.ts +17 -0
  105. package/dist-types/ts3.4/SSMQuickSetup.d.ts +215 -0
  106. package/dist-types/ts3.4/SSMQuickSetupClient.d.ts +191 -0
  107. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  108. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +44 -0
  109. package/dist-types/ts3.4/commands/CreateConfigurationManagerCommand.d.ts +40 -0
  110. package/dist-types/ts3.4/commands/DeleteConfigurationManagerCommand.d.ts +36 -0
  111. package/dist-types/ts3.4/commands/GetConfigurationManagerCommand.d.ts +40 -0
  112. package/dist-types/ts3.4/commands/GetServiceSettingsCommand.d.ts +36 -0
  113. package/dist-types/ts3.4/commands/ListConfigurationManagersCommand.d.ts +40 -0
  114. package/dist-types/ts3.4/commands/ListQuickSetupTypesCommand.d.ts +36 -0
  115. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +40 -0
  116. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -0
  117. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +34 -0
  118. package/dist-types/ts3.4/commands/UpdateConfigurationDefinitionCommand.d.ts +36 -0
  119. package/dist-types/ts3.4/commands/UpdateConfigurationManagerCommand.d.ts +36 -0
  120. package/dist-types/ts3.4/commands/UpdateServiceSettingsCommand.d.ts +35 -0
  121. package/dist-types/ts3.4/commands/index.d.ts +12 -0
  122. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
  123. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  124. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  125. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  126. package/dist-types/ts3.4/index.d.ts +9 -0
  127. package/dist-types/ts3.4/models/SSMQuickSetupServiceException.d.ts +9 -0
  128. package/dist-types/ts3.4/models/index.d.ts +1 -0
  129. package/dist-types/ts3.4/models/models_0.d.ts +201 -0
  130. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  131. package/dist-types/ts3.4/pagination/ListConfigurationManagersPaginator.d.ts +11 -0
  132. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  133. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +149 -0
  134. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +85 -0
  135. package/dist-types/ts3.4/runtimeConfig.d.ts +89 -0
  136. package/dist-types/ts3.4/runtimeConfig.native.d.ts +79 -0
  137. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +21 -0
  138. package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
  139. package/package.json +101 -0
@@ -0,0 +1,84 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { UpdateConfigurationDefinitionInput } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SSMQuickSetupClientResolvedConfig } from "../SSMQuickSetupClient";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link UpdateConfigurationDefinitionCommand}.
14
+ */
15
+ export interface UpdateConfigurationDefinitionCommandInput extends UpdateConfigurationDefinitionInput {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link UpdateConfigurationDefinitionCommand}.
21
+ */
22
+ export interface UpdateConfigurationDefinitionCommandOutput extends __MetadataBearer {
23
+ }
24
+ declare const UpdateConfigurationDefinitionCommand_base: {
25
+ new (input: UpdateConfigurationDefinitionCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateConfigurationDefinitionCommandInput, UpdateConfigurationDefinitionCommandOutput, SSMQuickSetupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: UpdateConfigurationDefinitionCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateConfigurationDefinitionCommandInput, UpdateConfigurationDefinitionCommandOutput, SSMQuickSetupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Updates a Quick Setup configuration definition.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { SSMQuickSetupClient, UpdateConfigurationDefinitionCommand } from "@aws-sdk/client-ssm-quicksetup"; // ES Modules import
35
+ * // const { SSMQuickSetupClient, UpdateConfigurationDefinitionCommand } = require("@aws-sdk/client-ssm-quicksetup"); // CommonJS import
36
+ * const client = new SSMQuickSetupClient(config);
37
+ * const input = { // UpdateConfigurationDefinitionInput
38
+ * ManagerArn: "STRING_VALUE", // required
39
+ * Id: "STRING_VALUE", // required
40
+ * TypeVersion: "STRING_VALUE",
41
+ * Parameters: { // ConfigurationParametersMap
42
+ * "<keys>": "STRING_VALUE",
43
+ * },
44
+ * LocalDeploymentExecutionRoleName: "STRING_VALUE",
45
+ * LocalDeploymentAdministrationRoleArn: "STRING_VALUE",
46
+ * };
47
+ * const command = new UpdateConfigurationDefinitionCommand(input);
48
+ * const response = await client.send(command);
49
+ * // {};
50
+ *
51
+ * ```
52
+ *
53
+ * @param UpdateConfigurationDefinitionCommandInput - {@link UpdateConfigurationDefinitionCommandInput}
54
+ * @returns {@link UpdateConfigurationDefinitionCommandOutput}
55
+ * @see {@link UpdateConfigurationDefinitionCommandInput} for command's `input` shape.
56
+ * @see {@link UpdateConfigurationDefinitionCommandOutput} for command's `response` shape.
57
+ * @see {@link SSMQuickSetupClientResolvedConfig | config} for SSMQuickSetupClient's `config` shape.
58
+ *
59
+ * @throws {@link AccessDeniedException} (client fault)
60
+ * <p>The requester has insufficient permissions to perform the operation.</p>
61
+ *
62
+ * @throws {@link ConflictException} (client fault)
63
+ * <p>Another request is being processed. Wait a few minutes and try again.</p>
64
+ *
65
+ * @throws {@link InternalServerException} (server fault)
66
+ * <p>An error occurred on the server side.</p>
67
+ *
68
+ * @throws {@link ResourceNotFoundException} (client fault)
69
+ * <p>The resource couldn't be found. Check the ID or name and try again.</p>
70
+ *
71
+ * @throws {@link ThrottlingException} (client fault)
72
+ * <p>The request or operation exceeds the maximum allowed request rate per Amazon Web Services account and Amazon Web Services Region.</p>
73
+ *
74
+ * @throws {@link ValidationException} (client fault)
75
+ * <p>The request is invalid. Verify the values provided for the request parameters are
76
+ * accurate.</p>
77
+ *
78
+ * @throws {@link SSMQuickSetupServiceException}
79
+ * <p>Base exception class for all service exceptions from SSMQuickSetup service.</p>
80
+ *
81
+ * @public
82
+ */
83
+ export declare class UpdateConfigurationDefinitionCommand extends UpdateConfigurationDefinitionCommand_base {
84
+ }
@@ -0,0 +1,79 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { UpdateConfigurationManagerInput } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SSMQuickSetupClientResolvedConfig } from "../SSMQuickSetupClient";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link UpdateConfigurationManagerCommand}.
14
+ */
15
+ export interface UpdateConfigurationManagerCommandInput extends UpdateConfigurationManagerInput {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link UpdateConfigurationManagerCommand}.
21
+ */
22
+ export interface UpdateConfigurationManagerCommandOutput extends __MetadataBearer {
23
+ }
24
+ declare const UpdateConfigurationManagerCommand_base: {
25
+ new (input: UpdateConfigurationManagerCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateConfigurationManagerCommandInput, UpdateConfigurationManagerCommandOutput, SSMQuickSetupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: UpdateConfigurationManagerCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateConfigurationManagerCommandInput, UpdateConfigurationManagerCommandOutput, SSMQuickSetupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Updates a Quick Setup configuration manager.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { SSMQuickSetupClient, UpdateConfigurationManagerCommand } from "@aws-sdk/client-ssm-quicksetup"; // ES Modules import
35
+ * // const { SSMQuickSetupClient, UpdateConfigurationManagerCommand } = require("@aws-sdk/client-ssm-quicksetup"); // CommonJS import
36
+ * const client = new SSMQuickSetupClient(config);
37
+ * const input = { // UpdateConfigurationManagerInput
38
+ * ManagerArn: "STRING_VALUE", // required
39
+ * Name: "STRING_VALUE",
40
+ * Description: "STRING_VALUE",
41
+ * };
42
+ * const command = new UpdateConfigurationManagerCommand(input);
43
+ * const response = await client.send(command);
44
+ * // {};
45
+ *
46
+ * ```
47
+ *
48
+ * @param UpdateConfigurationManagerCommandInput - {@link UpdateConfigurationManagerCommandInput}
49
+ * @returns {@link UpdateConfigurationManagerCommandOutput}
50
+ * @see {@link UpdateConfigurationManagerCommandInput} for command's `input` shape.
51
+ * @see {@link UpdateConfigurationManagerCommandOutput} for command's `response` shape.
52
+ * @see {@link SSMQuickSetupClientResolvedConfig | config} for SSMQuickSetupClient's `config` shape.
53
+ *
54
+ * @throws {@link AccessDeniedException} (client fault)
55
+ * <p>The requester has insufficient permissions to perform the operation.</p>
56
+ *
57
+ * @throws {@link ConflictException} (client fault)
58
+ * <p>Another request is being processed. Wait a few minutes and try again.</p>
59
+ *
60
+ * @throws {@link InternalServerException} (server fault)
61
+ * <p>An error occurred on the server side.</p>
62
+ *
63
+ * @throws {@link ResourceNotFoundException} (client fault)
64
+ * <p>The resource couldn't be found. Check the ID or name and try again.</p>
65
+ *
66
+ * @throws {@link ThrottlingException} (client fault)
67
+ * <p>The request or operation exceeds the maximum allowed request rate per Amazon Web Services account and Amazon Web Services Region.</p>
68
+ *
69
+ * @throws {@link ValidationException} (client fault)
70
+ * <p>The request is invalid. Verify the values provided for the request parameters are
71
+ * accurate.</p>
72
+ *
73
+ * @throws {@link SSMQuickSetupServiceException}
74
+ * <p>Base exception class for all service exceptions from SSMQuickSetup service.</p>
75
+ *
76
+ * @public
77
+ */
78
+ export declare class UpdateConfigurationManagerCommand extends UpdateConfigurationManagerCommand_base {
79
+ }
@@ -0,0 +1,74 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { UpdateServiceSettingsInput } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SSMQuickSetupClientResolvedConfig } from "../SSMQuickSetupClient";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link UpdateServiceSettingsCommand}.
14
+ */
15
+ export interface UpdateServiceSettingsCommandInput extends UpdateServiceSettingsInput {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link UpdateServiceSettingsCommand}.
21
+ */
22
+ export interface UpdateServiceSettingsCommandOutput extends __MetadataBearer {
23
+ }
24
+ declare const UpdateServiceSettingsCommand_base: {
25
+ new (input: UpdateServiceSettingsCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateServiceSettingsCommandInput, UpdateServiceSettingsCommandOutput, SSMQuickSetupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (...[input]: [] | [UpdateServiceSettingsCommandInput]): import("@smithy/smithy-client").CommandImpl<UpdateServiceSettingsCommandInput, UpdateServiceSettingsCommandOutput, SSMQuickSetupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Updates settings configured for Quick Setup.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { SSMQuickSetupClient, UpdateServiceSettingsCommand } from "@aws-sdk/client-ssm-quicksetup"; // ES Modules import
35
+ * // const { SSMQuickSetupClient, UpdateServiceSettingsCommand } = require("@aws-sdk/client-ssm-quicksetup"); // CommonJS import
36
+ * const client = new SSMQuickSetupClient(config);
37
+ * const input = { // UpdateServiceSettingsInput
38
+ * ExplorerEnablingRoleArn: "STRING_VALUE",
39
+ * };
40
+ * const command = new UpdateServiceSettingsCommand(input);
41
+ * const response = await client.send(command);
42
+ * // {};
43
+ *
44
+ * ```
45
+ *
46
+ * @param UpdateServiceSettingsCommandInput - {@link UpdateServiceSettingsCommandInput}
47
+ * @returns {@link UpdateServiceSettingsCommandOutput}
48
+ * @see {@link UpdateServiceSettingsCommandInput} for command's `input` shape.
49
+ * @see {@link UpdateServiceSettingsCommandOutput} for command's `response` shape.
50
+ * @see {@link SSMQuickSetupClientResolvedConfig | config} for SSMQuickSetupClient's `config` shape.
51
+ *
52
+ * @throws {@link AccessDeniedException} (client fault)
53
+ * <p>The requester has insufficient permissions to perform the operation.</p>
54
+ *
55
+ * @throws {@link ConflictException} (client fault)
56
+ * <p>Another request is being processed. Wait a few minutes and try again.</p>
57
+ *
58
+ * @throws {@link InternalServerException} (server fault)
59
+ * <p>An error occurred on the server side.</p>
60
+ *
61
+ * @throws {@link ThrottlingException} (client fault)
62
+ * <p>The request or operation exceeds the maximum allowed request rate per Amazon Web Services account and Amazon Web Services Region.</p>
63
+ *
64
+ * @throws {@link ValidationException} (client fault)
65
+ * <p>The request is invalid. Verify the values provided for the request parameters are
66
+ * accurate.</p>
67
+ *
68
+ * @throws {@link SSMQuickSetupServiceException}
69
+ * <p>Base exception class for all service exceptions from SSMQuickSetup service.</p>
70
+ *
71
+ * @public
72
+ */
73
+ export declare class UpdateServiceSettingsCommand extends UpdateServiceSettingsCommand_base {
74
+ }
@@ -0,0 +1,12 @@
1
+ export * from "./CreateConfigurationManagerCommand";
2
+ export * from "./DeleteConfigurationManagerCommand";
3
+ export * from "./GetConfigurationManagerCommand";
4
+ export * from "./GetServiceSettingsCommand";
5
+ export * from "./ListConfigurationManagersCommand";
6
+ export * from "./ListQuickSetupTypesCommand";
7
+ export * from "./ListTagsForResourceCommand";
8
+ export * from "./TagResourceCommand";
9
+ export * from "./UntagResourceCommand";
10
+ export * from "./UpdateConfigurationDefinitionCommand";
11
+ export * from "./UpdateConfigurationManagerCommand";
12
+ export * from "./UpdateServiceSettingsCommand";
@@ -0,0 +1,40 @@
1
+ import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types";
2
+ /**
3
+ * @public
4
+ */
5
+ export interface ClientInputEndpointParameters {
6
+ region?: string | Provider<string>;
7
+ useDualstackEndpoint?: boolean | Provider<boolean>;
8
+ useFipsEndpoint?: boolean | Provider<boolean>;
9
+ endpoint?: string | Provider<string> | Endpoint | Provider<Endpoint> | EndpointV2 | Provider<EndpointV2>;
10
+ }
11
+ export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
12
+ defaultSigningName: string;
13
+ };
14
+ export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientInputEndpointParameters & {
15
+ defaultSigningName: string;
16
+ };
17
+ export declare const commonParams: {
18
+ readonly UseFIPS: {
19
+ readonly type: "builtInParams";
20
+ readonly name: "useFipsEndpoint";
21
+ };
22
+ readonly Endpoint: {
23
+ readonly type: "builtInParams";
24
+ readonly name: "endpoint";
25
+ };
26
+ readonly Region: {
27
+ readonly type: "builtInParams";
28
+ readonly name: "region";
29
+ };
30
+ readonly UseDualStack: {
31
+ readonly type: "builtInParams";
32
+ readonly name: "useDualstackEndpoint";
33
+ };
34
+ };
35
+ export interface EndpointParameters extends __EndpointParameters {
36
+ Region?: string;
37
+ UseDualStack?: boolean;
38
+ UseFIPS?: boolean;
39
+ Endpoint?: string;
40
+ }
@@ -0,0 +1,5 @@
1
+ import { EndpointV2, Logger } from "@smithy/types";
2
+ import { EndpointParameters } from "./EndpointParameters";
3
+ export declare const defaultEndpointResolver: (endpointParams: EndpointParameters, context?: {
4
+ logger?: Logger;
5
+ }) => EndpointV2;
@@ -0,0 +1,2 @@
1
+ import { RuleSetObject } from "@smithy/types";
2
+ export declare const ruleSet: RuleSetObject;
@@ -0,0 +1,9 @@
1
+ import { AwsRegionExtensionConfiguration } from "@aws-sdk/types";
2
+ import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http";
3
+ import { DefaultExtensionConfiguration } from "@smithy/types";
4
+ import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
5
+ /**
6
+ * @internal
7
+ */
8
+ export interface SSMQuickSetupExtensionConfiguration extends HttpHandlerExtensionConfiguration, DefaultExtensionConfiguration, AwsRegionExtensionConfiguration, HttpAuthExtensionConfiguration {
9
+ }
@@ -0,0 +1,16 @@
1
+ /**
2
+ * <p>Quick Setup helps you quickly configure frequently used services and features with
3
+ * recommended best practices. Quick Setup simplifies setting up services, including
4
+ * Systems Manager, by automating common or recommended tasks.</p>
5
+ *
6
+ * @packageDocumentation
7
+ */
8
+ export * from "./SSMQuickSetupClient";
9
+ export * from "./SSMQuickSetup";
10
+ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
11
+ export type { RuntimeExtension } from "./runtimeExtensions";
12
+ export type { SSMQuickSetupExtensionConfiguration } from "./extensionConfiguration";
13
+ export * from "./commands";
14
+ export * from "./pagination";
15
+ export * from "./models";
16
+ export { SSMQuickSetupServiceException } from "./models/SSMQuickSetupServiceException";
@@ -0,0 +1,14 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@smithy/smithy-client";
2
+ export type { __ServiceExceptionOptions };
3
+ export { __ServiceException };
4
+ /**
5
+ * @public
6
+ *
7
+ * Base exception class for all service exceptions from SSMQuickSetup service.
8
+ */
9
+ export declare class SSMQuickSetupServiceException extends __ServiceException {
10
+ /**
11
+ * @internal
12
+ */
13
+ constructor(options: __ServiceExceptionOptions);
14
+ }
@@ -0,0 +1 @@
1
+ export * from "./models_0";