@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,8 @@
1
+ import { PaginationConfiguration } from "@smithy/types";
2
+ import { SSMQuickSetupClient } from "../SSMQuickSetupClient";
3
+ /**
4
+ * @public
5
+ */
6
+ export interface SSMQuickSetupPaginationConfiguration extends PaginationConfiguration {
7
+ client: SSMQuickSetupClient;
8
+ }
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListConfigurationManagersCommandInput, ListConfigurationManagersCommandOutput } from "../commands/ListConfigurationManagersCommand";
3
+ import { SSMQuickSetupPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListConfigurationManagers: (config: SSMQuickSetupPaginationConfiguration, input: ListConfigurationManagersCommandInput, ...rest: any[]) => Paginator<ListConfigurationManagersCommandOutput>;
@@ -0,0 +1,2 @@
1
+ export * from "./Interfaces";
2
+ export * from "./ListConfigurationManagersPaginator";
@@ -0,0 +1,110 @@
1
+ import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
2
+ import { SerdeContext as __SerdeContext } from "@smithy/types";
3
+ import { CreateConfigurationManagerCommandInput, CreateConfigurationManagerCommandOutput } from "../commands/CreateConfigurationManagerCommand";
4
+ import { DeleteConfigurationManagerCommandInput, DeleteConfigurationManagerCommandOutput } from "../commands/DeleteConfigurationManagerCommand";
5
+ import { GetConfigurationManagerCommandInput, GetConfigurationManagerCommandOutput } from "../commands/GetConfigurationManagerCommand";
6
+ import { GetServiceSettingsCommandInput, GetServiceSettingsCommandOutput } from "../commands/GetServiceSettingsCommand";
7
+ import { ListConfigurationManagersCommandInput, ListConfigurationManagersCommandOutput } from "../commands/ListConfigurationManagersCommand";
8
+ import { ListQuickSetupTypesCommandInput, ListQuickSetupTypesCommandOutput } from "../commands/ListQuickSetupTypesCommand";
9
+ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
10
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
11
+ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
12
+ import { UpdateConfigurationDefinitionCommandInput, UpdateConfigurationDefinitionCommandOutput } from "../commands/UpdateConfigurationDefinitionCommand";
13
+ import { UpdateConfigurationManagerCommandInput, UpdateConfigurationManagerCommandOutput } from "../commands/UpdateConfigurationManagerCommand";
14
+ import { UpdateServiceSettingsCommandInput, UpdateServiceSettingsCommandOutput } from "../commands/UpdateServiceSettingsCommand";
15
+ /**
16
+ * serializeAws_restJson1CreateConfigurationManagerCommand
17
+ */
18
+ export declare const se_CreateConfigurationManagerCommand: (input: CreateConfigurationManagerCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
19
+ /**
20
+ * serializeAws_restJson1DeleteConfigurationManagerCommand
21
+ */
22
+ export declare const se_DeleteConfigurationManagerCommand: (input: DeleteConfigurationManagerCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
23
+ /**
24
+ * serializeAws_restJson1GetConfigurationManagerCommand
25
+ */
26
+ export declare const se_GetConfigurationManagerCommand: (input: GetConfigurationManagerCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
27
+ /**
28
+ * serializeAws_restJson1GetServiceSettingsCommand
29
+ */
30
+ export declare const se_GetServiceSettingsCommand: (input: GetServiceSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
31
+ /**
32
+ * serializeAws_restJson1ListConfigurationManagersCommand
33
+ */
34
+ export declare const se_ListConfigurationManagersCommand: (input: ListConfigurationManagersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
35
+ /**
36
+ * serializeAws_restJson1ListQuickSetupTypesCommand
37
+ */
38
+ export declare const se_ListQuickSetupTypesCommand: (input: ListQuickSetupTypesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
39
+ /**
40
+ * serializeAws_restJson1ListTagsForResourceCommand
41
+ */
42
+ export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
43
+ /**
44
+ * serializeAws_restJson1TagResourceCommand
45
+ */
46
+ export declare const se_TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
47
+ /**
48
+ * serializeAws_restJson1UntagResourceCommand
49
+ */
50
+ export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
51
+ /**
52
+ * serializeAws_restJson1UpdateConfigurationDefinitionCommand
53
+ */
54
+ export declare const se_UpdateConfigurationDefinitionCommand: (input: UpdateConfigurationDefinitionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
55
+ /**
56
+ * serializeAws_restJson1UpdateConfigurationManagerCommand
57
+ */
58
+ export declare const se_UpdateConfigurationManagerCommand: (input: UpdateConfigurationManagerCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
59
+ /**
60
+ * serializeAws_restJson1UpdateServiceSettingsCommand
61
+ */
62
+ export declare const se_UpdateServiceSettingsCommand: (input: UpdateServiceSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
63
+ /**
64
+ * deserializeAws_restJson1CreateConfigurationManagerCommand
65
+ */
66
+ export declare const de_CreateConfigurationManagerCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateConfigurationManagerCommandOutput>;
67
+ /**
68
+ * deserializeAws_restJson1DeleteConfigurationManagerCommand
69
+ */
70
+ export declare const de_DeleteConfigurationManagerCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteConfigurationManagerCommandOutput>;
71
+ /**
72
+ * deserializeAws_restJson1GetConfigurationManagerCommand
73
+ */
74
+ export declare const de_GetConfigurationManagerCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetConfigurationManagerCommandOutput>;
75
+ /**
76
+ * deserializeAws_restJson1GetServiceSettingsCommand
77
+ */
78
+ export declare const de_GetServiceSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetServiceSettingsCommandOutput>;
79
+ /**
80
+ * deserializeAws_restJson1ListConfigurationManagersCommand
81
+ */
82
+ export declare const de_ListConfigurationManagersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListConfigurationManagersCommandOutput>;
83
+ /**
84
+ * deserializeAws_restJson1ListQuickSetupTypesCommand
85
+ */
86
+ export declare const de_ListQuickSetupTypesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListQuickSetupTypesCommandOutput>;
87
+ /**
88
+ * deserializeAws_restJson1ListTagsForResourceCommand
89
+ */
90
+ export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
91
+ /**
92
+ * deserializeAws_restJson1TagResourceCommand
93
+ */
94
+ export declare const de_TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
95
+ /**
96
+ * deserializeAws_restJson1UntagResourceCommand
97
+ */
98
+ export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
99
+ /**
100
+ * deserializeAws_restJson1UpdateConfigurationDefinitionCommand
101
+ */
102
+ export declare const de_UpdateConfigurationDefinitionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateConfigurationDefinitionCommandOutput>;
103
+ /**
104
+ * deserializeAws_restJson1UpdateConfigurationManagerCommand
105
+ */
106
+ export declare const de_UpdateConfigurationManagerCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateConfigurationManagerCommandOutput>;
107
+ /**
108
+ * deserializeAws_restJson1UpdateServiceSettingsCommand
109
+ */
110
+ export declare const de_UpdateServiceSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateServiceSettingsCommandOutput>;
@@ -0,0 +1,45 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
2
+ import { SSMQuickSetupClientConfig } from "./SSMQuickSetupClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: SSMQuickSetupClientConfig) => {
7
+ runtime: string;
8
+ defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
+ credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
11
+ defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
12
+ maxAttempts: number | import("@smithy/types").Provider<number>;
13
+ region: string | import("@smithy/types").Provider<any>;
14
+ requestHandler: import("@smithy/protocol-http").HttpHandler<any> | RequestHandler;
15
+ retryMode: string | import("@smithy/types").Provider<string>;
16
+ sha256: import("@smithy/types").HashConstructor;
17
+ streamCollector: import("@smithy/types").StreamCollector;
18
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
19
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
20
+ apiVersion: string;
21
+ urlParser: import("@smithy/types").UrlParser;
22
+ base64Decoder: import("@smithy/types").Decoder;
23
+ base64Encoder: (_input: string | Uint8Array) => string;
24
+ utf8Decoder: import("@smithy/types").Decoder;
25
+ utf8Encoder: (input: string | Uint8Array) => string;
26
+ disableHostPrefix: boolean;
27
+ serviceId: string;
28
+ logger: import("@smithy/types").Logger;
29
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
30
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
31
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
32
+ endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
33
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
34
+ logger?: import("@smithy/types").Logger | undefined;
35
+ }) => import("@smithy/types").EndpointV2;
36
+ tls?: boolean | undefined;
37
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
38
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SSMQuickSetupHttpAuthSchemeProvider;
39
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
40
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
41
+ signingEscapePath?: boolean | undefined;
42
+ systemClockOffset?: number | undefined;
43
+ signingRegion?: string | undefined;
44
+ signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
45
+ };
@@ -0,0 +1,45 @@
1
+ import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
2
+ import { SSMQuickSetupClientConfig } from "./SSMQuickSetupClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: SSMQuickSetupClientConfig) => {
7
+ runtime: string;
8
+ defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
+ credentialDefaultProvider: (init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>;
11
+ defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
12
+ maxAttempts: number | import("@smithy/types").Provider<number>;
13
+ region: string | import("@smithy/types").Provider<string>;
14
+ requestHandler: RequestHandler | import("@smithy/protocol-http").HttpHandler<any>;
15
+ retryMode: string | import("@smithy/types").Provider<string>;
16
+ sha256: import("@smithy/types").HashConstructor;
17
+ streamCollector: import("@smithy/types").StreamCollector;
18
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
19
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
20
+ apiVersion: string;
21
+ urlParser: import("@smithy/types").UrlParser;
22
+ base64Decoder: import("@smithy/types").Decoder;
23
+ base64Encoder: (_input: string | Uint8Array) => string;
24
+ utf8Decoder: import("@smithy/types").Decoder;
25
+ utf8Encoder: (input: string | Uint8Array) => string;
26
+ disableHostPrefix: boolean;
27
+ serviceId: string;
28
+ logger: import("@smithy/types").Logger;
29
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
30
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
31
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
32
+ endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
33
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
34
+ logger?: import("@smithy/types").Logger | undefined;
35
+ }) => import("@smithy/types").EndpointV2;
36
+ tls?: boolean | undefined;
37
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
38
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SSMQuickSetupHttpAuthSchemeProvider;
39
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
40
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
41
+ signingEscapePath?: boolean | undefined;
42
+ systemClockOffset?: number | undefined;
43
+ signingRegion?: string | undefined;
44
+ signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
45
+ };
@@ -0,0 +1,44 @@
1
+ import { SSMQuickSetupClientConfig } from "./SSMQuickSetupClient";
2
+ /**
3
+ * @internal
4
+ */
5
+ export declare const getRuntimeConfig: (config: SSMQuickSetupClientConfig) => {
6
+ runtime: string;
7
+ sha256: import("@smithy/types").HashConstructor;
8
+ requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/protocol-http").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
9
+ apiVersion: string;
10
+ urlParser: import("@smithy/types").UrlParser;
11
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
12
+ streamCollector: import("@smithy/types").StreamCollector;
13
+ base64Decoder: import("@smithy/types").Decoder;
14
+ base64Encoder: (_input: string | Uint8Array) => string;
15
+ utf8Decoder: import("@smithy/types").Decoder;
16
+ utf8Encoder: (input: string | Uint8Array) => string;
17
+ disableHostPrefix: boolean;
18
+ serviceId: string;
19
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
20
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
21
+ region: string | import("@smithy/types").Provider<any>;
22
+ defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
23
+ credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
24
+ maxAttempts: number | import("@smithy/types").Provider<number>;
25
+ retryMode: string | import("@smithy/types").Provider<string>;
26
+ logger: import("@smithy/types").Logger;
27
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
28
+ defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
29
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
30
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
31
+ endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2> | undefined;
32
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
33
+ logger?: import("@smithy/types").Logger | undefined;
34
+ }) => import("@smithy/types").EndpointV2;
35
+ tls?: boolean | undefined;
36
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
37
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SSMQuickSetupHttpAuthSchemeProvider;
38
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
39
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
40
+ signingEscapePath?: boolean | undefined;
41
+ systemClockOffset?: number | undefined;
42
+ signingRegion?: string | undefined;
43
+ signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
44
+ };
@@ -0,0 +1,21 @@
1
+ import { SSMQuickSetupClientConfig } from "./SSMQuickSetupClient";
2
+ /**
3
+ * @internal
4
+ */
5
+ export declare const getRuntimeConfig: (config: SSMQuickSetupClientConfig) => {
6
+ apiVersion: string;
7
+ base64Decoder: import("@smithy/types").Decoder;
8
+ base64Encoder: (_input: string | Uint8Array) => string;
9
+ disableHostPrefix: boolean;
10
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
11
+ logger?: import("@smithy/types").Logger | undefined;
12
+ }) => import("@smithy/types").EndpointV2;
13
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
14
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SSMQuickSetupHttpAuthSchemeProvider;
15
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
16
+ logger: import("@smithy/types").Logger;
17
+ serviceId: string;
18
+ urlParser: import("@smithy/types").UrlParser;
19
+ utf8Decoder: import("@smithy/types").Decoder;
20
+ utf8Encoder: (input: string | Uint8Array) => string;
21
+ };
@@ -0,0 +1,17 @@
1
+ import { SSMQuickSetupExtensionConfiguration } from "./extensionConfiguration";
2
+ /**
3
+ * @public
4
+ */
5
+ export interface RuntimeExtension {
6
+ configure(extensionConfiguration: SSMQuickSetupExtensionConfiguration): void;
7
+ }
8
+ /**
9
+ * @public
10
+ */
11
+ export interface RuntimeExtensionsConfig {
12
+ extensions: RuntimeExtension[];
13
+ }
14
+ /**
15
+ * @internal
16
+ */
17
+ export declare const resolveRuntimeExtensions: (runtimeConfig: any, extensions: RuntimeExtension[]) => any;
@@ -0,0 +1,215 @@
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
2
+ import {
3
+ CreateConfigurationManagerCommandInput,
4
+ CreateConfigurationManagerCommandOutput,
5
+ } from "./commands/CreateConfigurationManagerCommand";
6
+ import {
7
+ DeleteConfigurationManagerCommandInput,
8
+ DeleteConfigurationManagerCommandOutput,
9
+ } from "./commands/DeleteConfigurationManagerCommand";
10
+ import {
11
+ GetConfigurationManagerCommandInput,
12
+ GetConfigurationManagerCommandOutput,
13
+ } from "./commands/GetConfigurationManagerCommand";
14
+ import {
15
+ GetServiceSettingsCommandInput,
16
+ GetServiceSettingsCommandOutput,
17
+ } from "./commands/GetServiceSettingsCommand";
18
+ import {
19
+ ListConfigurationManagersCommandInput,
20
+ ListConfigurationManagersCommandOutput,
21
+ } from "./commands/ListConfigurationManagersCommand";
22
+ import {
23
+ ListQuickSetupTypesCommandInput,
24
+ ListQuickSetupTypesCommandOutput,
25
+ } from "./commands/ListQuickSetupTypesCommand";
26
+ import {
27
+ ListTagsForResourceCommandInput,
28
+ ListTagsForResourceCommandOutput,
29
+ } from "./commands/ListTagsForResourceCommand";
30
+ import {
31
+ TagResourceCommandInput,
32
+ TagResourceCommandOutput,
33
+ } from "./commands/TagResourceCommand";
34
+ import {
35
+ UntagResourceCommandInput,
36
+ UntagResourceCommandOutput,
37
+ } from "./commands/UntagResourceCommand";
38
+ import {
39
+ UpdateConfigurationDefinitionCommandInput,
40
+ UpdateConfigurationDefinitionCommandOutput,
41
+ } from "./commands/UpdateConfigurationDefinitionCommand";
42
+ import {
43
+ UpdateConfigurationManagerCommandInput,
44
+ UpdateConfigurationManagerCommandOutput,
45
+ } from "./commands/UpdateConfigurationManagerCommand";
46
+ import {
47
+ UpdateServiceSettingsCommandInput,
48
+ UpdateServiceSettingsCommandOutput,
49
+ } from "./commands/UpdateServiceSettingsCommand";
50
+ import { SSMQuickSetupClient } from "./SSMQuickSetupClient";
51
+ export interface SSMQuickSetup {
52
+ createConfigurationManager(
53
+ args: CreateConfigurationManagerCommandInput,
54
+ options?: __HttpHandlerOptions
55
+ ): Promise<CreateConfigurationManagerCommandOutput>;
56
+ createConfigurationManager(
57
+ args: CreateConfigurationManagerCommandInput,
58
+ cb: (err: any, data?: CreateConfigurationManagerCommandOutput) => void
59
+ ): void;
60
+ createConfigurationManager(
61
+ args: CreateConfigurationManagerCommandInput,
62
+ options: __HttpHandlerOptions,
63
+ cb: (err: any, data?: CreateConfigurationManagerCommandOutput) => void
64
+ ): void;
65
+ deleteConfigurationManager(
66
+ args: DeleteConfigurationManagerCommandInput,
67
+ options?: __HttpHandlerOptions
68
+ ): Promise<DeleteConfigurationManagerCommandOutput>;
69
+ deleteConfigurationManager(
70
+ args: DeleteConfigurationManagerCommandInput,
71
+ cb: (err: any, data?: DeleteConfigurationManagerCommandOutput) => void
72
+ ): void;
73
+ deleteConfigurationManager(
74
+ args: DeleteConfigurationManagerCommandInput,
75
+ options: __HttpHandlerOptions,
76
+ cb: (err: any, data?: DeleteConfigurationManagerCommandOutput) => void
77
+ ): void;
78
+ getConfigurationManager(
79
+ args: GetConfigurationManagerCommandInput,
80
+ options?: __HttpHandlerOptions
81
+ ): Promise<GetConfigurationManagerCommandOutput>;
82
+ getConfigurationManager(
83
+ args: GetConfigurationManagerCommandInput,
84
+ cb: (err: any, data?: GetConfigurationManagerCommandOutput) => void
85
+ ): void;
86
+ getConfigurationManager(
87
+ args: GetConfigurationManagerCommandInput,
88
+ options: __HttpHandlerOptions,
89
+ cb: (err: any, data?: GetConfigurationManagerCommandOutput) => void
90
+ ): void;
91
+ getServiceSettings(): Promise<GetServiceSettingsCommandOutput>;
92
+ getServiceSettings(
93
+ args: GetServiceSettingsCommandInput,
94
+ options?: __HttpHandlerOptions
95
+ ): Promise<GetServiceSettingsCommandOutput>;
96
+ getServiceSettings(
97
+ args: GetServiceSettingsCommandInput,
98
+ cb: (err: any, data?: GetServiceSettingsCommandOutput) => void
99
+ ): void;
100
+ getServiceSettings(
101
+ args: GetServiceSettingsCommandInput,
102
+ options: __HttpHandlerOptions,
103
+ cb: (err: any, data?: GetServiceSettingsCommandOutput) => void
104
+ ): void;
105
+ listConfigurationManagers(): Promise<ListConfigurationManagersCommandOutput>;
106
+ listConfigurationManagers(
107
+ args: ListConfigurationManagersCommandInput,
108
+ options?: __HttpHandlerOptions
109
+ ): Promise<ListConfigurationManagersCommandOutput>;
110
+ listConfigurationManagers(
111
+ args: ListConfigurationManagersCommandInput,
112
+ cb: (err: any, data?: ListConfigurationManagersCommandOutput) => void
113
+ ): void;
114
+ listConfigurationManagers(
115
+ args: ListConfigurationManagersCommandInput,
116
+ options: __HttpHandlerOptions,
117
+ cb: (err: any, data?: ListConfigurationManagersCommandOutput) => void
118
+ ): void;
119
+ listQuickSetupTypes(): Promise<ListQuickSetupTypesCommandOutput>;
120
+ listQuickSetupTypes(
121
+ args: ListQuickSetupTypesCommandInput,
122
+ options?: __HttpHandlerOptions
123
+ ): Promise<ListQuickSetupTypesCommandOutput>;
124
+ listQuickSetupTypes(
125
+ args: ListQuickSetupTypesCommandInput,
126
+ cb: (err: any, data?: ListQuickSetupTypesCommandOutput) => void
127
+ ): void;
128
+ listQuickSetupTypes(
129
+ args: ListQuickSetupTypesCommandInput,
130
+ options: __HttpHandlerOptions,
131
+ cb: (err: any, data?: ListQuickSetupTypesCommandOutput) => void
132
+ ): void;
133
+ listTagsForResource(
134
+ args: ListTagsForResourceCommandInput,
135
+ options?: __HttpHandlerOptions
136
+ ): Promise<ListTagsForResourceCommandOutput>;
137
+ listTagsForResource(
138
+ args: ListTagsForResourceCommandInput,
139
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
140
+ ): void;
141
+ listTagsForResource(
142
+ args: ListTagsForResourceCommandInput,
143
+ options: __HttpHandlerOptions,
144
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
145
+ ): void;
146
+ tagResource(
147
+ args: TagResourceCommandInput,
148
+ options?: __HttpHandlerOptions
149
+ ): Promise<TagResourceCommandOutput>;
150
+ tagResource(
151
+ args: TagResourceCommandInput,
152
+ cb: (err: any, data?: TagResourceCommandOutput) => void
153
+ ): void;
154
+ tagResource(
155
+ args: TagResourceCommandInput,
156
+ options: __HttpHandlerOptions,
157
+ cb: (err: any, data?: TagResourceCommandOutput) => void
158
+ ): void;
159
+ untagResource(
160
+ args: UntagResourceCommandInput,
161
+ options?: __HttpHandlerOptions
162
+ ): Promise<UntagResourceCommandOutput>;
163
+ untagResource(
164
+ args: UntagResourceCommandInput,
165
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
166
+ ): void;
167
+ untagResource(
168
+ args: UntagResourceCommandInput,
169
+ options: __HttpHandlerOptions,
170
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
171
+ ): void;
172
+ updateConfigurationDefinition(
173
+ args: UpdateConfigurationDefinitionCommandInput,
174
+ options?: __HttpHandlerOptions
175
+ ): Promise<UpdateConfigurationDefinitionCommandOutput>;
176
+ updateConfigurationDefinition(
177
+ args: UpdateConfigurationDefinitionCommandInput,
178
+ cb: (err: any, data?: UpdateConfigurationDefinitionCommandOutput) => void
179
+ ): void;
180
+ updateConfigurationDefinition(
181
+ args: UpdateConfigurationDefinitionCommandInput,
182
+ options: __HttpHandlerOptions,
183
+ cb: (err: any, data?: UpdateConfigurationDefinitionCommandOutput) => void
184
+ ): void;
185
+ updateConfigurationManager(
186
+ args: UpdateConfigurationManagerCommandInput,
187
+ options?: __HttpHandlerOptions
188
+ ): Promise<UpdateConfigurationManagerCommandOutput>;
189
+ updateConfigurationManager(
190
+ args: UpdateConfigurationManagerCommandInput,
191
+ cb: (err: any, data?: UpdateConfigurationManagerCommandOutput) => void
192
+ ): void;
193
+ updateConfigurationManager(
194
+ args: UpdateConfigurationManagerCommandInput,
195
+ options: __HttpHandlerOptions,
196
+ cb: (err: any, data?: UpdateConfigurationManagerCommandOutput) => void
197
+ ): void;
198
+ updateServiceSettings(): Promise<UpdateServiceSettingsCommandOutput>;
199
+ updateServiceSettings(
200
+ args: UpdateServiceSettingsCommandInput,
201
+ options?: __HttpHandlerOptions
202
+ ): Promise<UpdateServiceSettingsCommandOutput>;
203
+ updateServiceSettings(
204
+ args: UpdateServiceSettingsCommandInput,
205
+ cb: (err: any, data?: UpdateServiceSettingsCommandOutput) => void
206
+ ): void;
207
+ updateServiceSettings(
208
+ args: UpdateServiceSettingsCommandInput,
209
+ options: __HttpHandlerOptions,
210
+ cb: (err: any, data?: UpdateServiceSettingsCommandOutput) => void
211
+ ): void;
212
+ }
213
+ export declare class SSMQuickSetup
214
+ extends SSMQuickSetupClient
215
+ implements SSMQuickSetup {}