@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.
- package/LICENSE +201 -0
- package/README.md +303 -0
- package/dist-cjs/SSMQuickSetup.js +35 -0
- package/dist-cjs/SSMQuickSetupClient.js +50 -0
- package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
- package/dist-cjs/commands/CreateConfigurationManagerCommand.js +29 -0
- package/dist-cjs/commands/DeleteConfigurationManagerCommand.js +28 -0
- package/dist-cjs/commands/GetConfigurationManagerCommand.js +29 -0
- package/dist-cjs/commands/GetServiceSettingsCommand.js +28 -0
- package/dist-cjs/commands/ListConfigurationManagersCommand.js +28 -0
- package/dist-cjs/commands/ListQuickSetupTypesCommand.js +28 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +29 -0
- package/dist-cjs/commands/TagResourceCommand.js +29 -0
- package/dist-cjs/commands/UntagResourceCommand.js +28 -0
- package/dist-cjs/commands/UpdateConfigurationDefinitionCommand.js +28 -0
- package/dist-cjs/commands/UpdateConfigurationManagerCommand.js +28 -0
- package/dist-cjs/commands/UpdateServiceSettingsCommand.js +28 -0
- package/dist-cjs/commands/index.js +15 -0
- package/dist-cjs/endpoint/EndpointParameters.js +18 -0
- package/dist-cjs/endpoint/endpointResolver.js +14 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/extensionConfiguration.js +2 -0
- package/dist-cjs/index.js +11 -0
- package/dist-cjs/models/SSMQuickSetupServiceException.js +12 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +131 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListConfigurationManagersPaginator.js +7 -0
- package/dist-cjs/pagination/index.js +5 -0
- package/dist-cjs/protocols/Aws_restJson1.js +494 -0
- package/dist-cjs/runtimeConfig.browser.js +39 -0
- package/dist-cjs/runtimeConfig.js +49 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +34 -0
- package/dist-cjs/runtimeExtensions.js +25 -0
- package/dist-es/SSMQuickSetup.js +31 -0
- package/dist-es/SSMQuickSetupClient.js +46 -0
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
- package/dist-es/commands/CreateConfigurationManagerCommand.js +25 -0
- package/dist-es/commands/DeleteConfigurationManagerCommand.js +24 -0
- package/dist-es/commands/GetConfigurationManagerCommand.js +25 -0
- package/dist-es/commands/GetServiceSettingsCommand.js +24 -0
- package/dist-es/commands/ListConfigurationManagersCommand.js +24 -0
- package/dist-es/commands/ListQuickSetupTypesCommand.js +24 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +25 -0
- package/dist-es/commands/TagResourceCommand.js +25 -0
- package/dist-es/commands/UntagResourceCommand.js +24 -0
- package/dist-es/commands/UpdateConfigurationDefinitionCommand.js +24 -0
- package/dist-es/commands/UpdateConfigurationManagerCommand.js +24 -0
- package/dist-es/commands/UpdateServiceSettingsCommand.js +24 -0
- package/dist-es/commands/index.js +12 -0
- package/dist-es/endpoint/EndpointParameters.js +14 -0
- package/dist-es/endpoint/endpointResolver.js +10 -0
- package/dist-es/endpoint/ruleset.js +4 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +6 -0
- package/dist-es/models/SSMQuickSetupServiceException.js +8 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +117 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListConfigurationManagersPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +467 -0
- package/dist-es/runtimeConfig.browser.js +34 -0
- package/dist-es/runtimeConfig.js +44 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +30 -0
- package/dist-es/runtimeExtensions.js +21 -0
- package/dist-types/SSMQuickSetup.d.ts +100 -0
- package/dist-types/SSMQuickSetupClient.d.ts +183 -0
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
- package/dist-types/commands/CreateConfigurationManagerCommand.d.ts +93 -0
- package/dist-types/commands/DeleteConfigurationManagerCommand.d.ts +77 -0
- package/dist-types/commands/GetConfigurationManagerCommand.d.ts +109 -0
- package/dist-types/commands/GetServiceSettingsCommand.d.ts +72 -0
- package/dist-types/commands/ListConfigurationManagersCommand.d.ts +113 -0
- package/dist-types/commands/ListQuickSetupTypesCommand.d.ts +75 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +84 -0
- package/dist-types/commands/TagResourceCommand.d.ts +80 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +80 -0
- package/dist-types/commands/UpdateConfigurationDefinitionCommand.d.ts +84 -0
- package/dist-types/commands/UpdateConfigurationManagerCommand.d.ts +79 -0
- package/dist-types/commands/UpdateServiceSettingsCommand.d.ts +74 -0
- package/dist-types/commands/index.d.ts +12 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +40 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/extensionConfiguration.d.ts +9 -0
- package/dist-types/index.d.ts +16 -0
- package/dist-types/models/SSMQuickSetupServiceException.d.ts +14 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +2014 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListConfigurationManagersPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +110 -0
- package/dist-types/runtimeConfig.browser.d.ts +45 -0
- package/dist-types/runtimeConfig.d.ts +45 -0
- package/dist-types/runtimeConfig.native.d.ts +44 -0
- package/dist-types/runtimeConfig.shared.d.ts +21 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/ts3.4/SSMQuickSetup.d.ts +215 -0
- package/dist-types/ts3.4/SSMQuickSetupClient.d.ts +191 -0
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +44 -0
- package/dist-types/ts3.4/commands/CreateConfigurationManagerCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/DeleteConfigurationManagerCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/GetConfigurationManagerCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/GetServiceSettingsCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/ListConfigurationManagersCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/ListQuickSetupTypesCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/UpdateConfigurationDefinitionCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/UpdateConfigurationManagerCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/UpdateServiceSettingsCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/index.d.ts +12 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +9 -0
- package/dist-types/ts3.4/models/SSMQuickSetupServiceException.d.ts +9 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +201 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListConfigurationManagersPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +149 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +85 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +89 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +79 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +21 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/package.json +101 -0
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { GetConfigurationManagerInput, GetConfigurationManagerOutput } 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 GetConfigurationManagerCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface GetConfigurationManagerCommandInput extends GetConfigurationManagerInput {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link GetConfigurationManagerCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface GetConfigurationManagerCommandOutput extends GetConfigurationManagerOutput, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const GetConfigurationManagerCommand_base: {
|
|
25
|
+
new (input: GetConfigurationManagerCommandInput): import("@smithy/smithy-client").CommandImpl<GetConfigurationManagerCommandInput, GetConfigurationManagerCommandOutput, SSMQuickSetupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: GetConfigurationManagerCommandInput): import("@smithy/smithy-client").CommandImpl<GetConfigurationManagerCommandInput, GetConfigurationManagerCommandOutput, SSMQuickSetupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Returns a 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, GetConfigurationManagerCommand } from "@aws-sdk/client-ssm-quicksetup"; // ES Modules import
|
|
35
|
+
* // const { SSMQuickSetupClient, GetConfigurationManagerCommand } = require("@aws-sdk/client-ssm-quicksetup"); // CommonJS import
|
|
36
|
+
* const client = new SSMQuickSetupClient(config);
|
|
37
|
+
* const input = { // GetConfigurationManagerInput
|
|
38
|
+
* ManagerArn: "STRING_VALUE", // required
|
|
39
|
+
* };
|
|
40
|
+
* const command = new GetConfigurationManagerCommand(input);
|
|
41
|
+
* const response = await client.send(command);
|
|
42
|
+
* // { // GetConfigurationManagerOutput
|
|
43
|
+
* // ManagerArn: "STRING_VALUE", // required
|
|
44
|
+
* // Description: "STRING_VALUE",
|
|
45
|
+
* // Name: "STRING_VALUE",
|
|
46
|
+
* // CreatedAt: new Date("TIMESTAMP"),
|
|
47
|
+
* // LastModifiedAt: new Date("TIMESTAMP"),
|
|
48
|
+
* // StatusSummaries: [ // StatusSummariesList
|
|
49
|
+
* // { // StatusSummary
|
|
50
|
+
* // StatusType: "Deployment" || "AsyncExecutions", // required
|
|
51
|
+
* // Status: "INITIALIZING" || "DEPLOYING" || "SUCCEEDED" || "DELETING" || "STOPPING" || "FAILED" || "STOPPED" || "DELETE_FAILED" || "STOP_FAILED" || "NONE",
|
|
52
|
+
* // StatusMessage: "STRING_VALUE",
|
|
53
|
+
* // LastUpdatedAt: new Date("TIMESTAMP"), // required
|
|
54
|
+
* // StatusDetails: { // StatusDetails
|
|
55
|
+
* // "<keys>": "STRING_VALUE",
|
|
56
|
+
* // },
|
|
57
|
+
* // },
|
|
58
|
+
* // ],
|
|
59
|
+
* // ConfigurationDefinitions: [ // ConfigurationDefinitionsList
|
|
60
|
+
* // { // ConfigurationDefinition
|
|
61
|
+
* // Type: "STRING_VALUE", // required
|
|
62
|
+
* // Parameters: { // ConfigurationParametersMap // required
|
|
63
|
+
* // "<keys>": "STRING_VALUE",
|
|
64
|
+
* // },
|
|
65
|
+
* // TypeVersion: "STRING_VALUE",
|
|
66
|
+
* // LocalDeploymentExecutionRoleName: "STRING_VALUE",
|
|
67
|
+
* // LocalDeploymentAdministrationRoleArn: "STRING_VALUE",
|
|
68
|
+
* // Id: "STRING_VALUE",
|
|
69
|
+
* // },
|
|
70
|
+
* // ],
|
|
71
|
+
* // Tags: { // TagsMap
|
|
72
|
+
* // "<keys>": "STRING_VALUE",
|
|
73
|
+
* // },
|
|
74
|
+
* // };
|
|
75
|
+
*
|
|
76
|
+
* ```
|
|
77
|
+
*
|
|
78
|
+
* @param GetConfigurationManagerCommandInput - {@link GetConfigurationManagerCommandInput}
|
|
79
|
+
* @returns {@link GetConfigurationManagerCommandOutput}
|
|
80
|
+
* @see {@link GetConfigurationManagerCommandInput} for command's `input` shape.
|
|
81
|
+
* @see {@link GetConfigurationManagerCommandOutput} for command's `response` shape.
|
|
82
|
+
* @see {@link SSMQuickSetupClientResolvedConfig | config} for SSMQuickSetupClient's `config` shape.
|
|
83
|
+
*
|
|
84
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
85
|
+
* <p>The requester has insufficient permissions to perform the operation.</p>
|
|
86
|
+
*
|
|
87
|
+
* @throws {@link ConflictException} (client fault)
|
|
88
|
+
* <p>Another request is being processed. Wait a few minutes and try again.</p>
|
|
89
|
+
*
|
|
90
|
+
* @throws {@link InternalServerException} (server fault)
|
|
91
|
+
* <p>An error occurred on the server side.</p>
|
|
92
|
+
*
|
|
93
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
94
|
+
* <p>The resource couldn't be found. Check the ID or name and try again.</p>
|
|
95
|
+
*
|
|
96
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
97
|
+
* <p>The request or operation exceeds the maximum allowed request rate per Amazon Web Services account and Amazon Web Services Region.</p>
|
|
98
|
+
*
|
|
99
|
+
* @throws {@link ValidationException} (client fault)
|
|
100
|
+
* <p>The request is invalid. Verify the values provided for the request parameters are
|
|
101
|
+
* accurate.</p>
|
|
102
|
+
*
|
|
103
|
+
* @throws {@link SSMQuickSetupServiceException}
|
|
104
|
+
* <p>Base exception class for all service exceptions from SSMQuickSetup service.</p>
|
|
105
|
+
*
|
|
106
|
+
* @public
|
|
107
|
+
*/
|
|
108
|
+
export declare class GetConfigurationManagerCommand extends GetConfigurationManagerCommand_base {
|
|
109
|
+
}
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { GetServiceSettingsOutput } 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 GetServiceSettingsCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface GetServiceSettingsCommandInput {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link GetServiceSettingsCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface GetServiceSettingsCommandOutput extends GetServiceSettingsOutput, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const GetServiceSettingsCommand_base: {
|
|
25
|
+
new (input: GetServiceSettingsCommandInput): import("@smithy/smithy-client").CommandImpl<GetServiceSettingsCommandInput, GetServiceSettingsCommandOutput, SSMQuickSetupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (...[input]: [] | [GetServiceSettingsCommandInput]): import("@smithy/smithy-client").CommandImpl<GetServiceSettingsCommandInput, GetServiceSettingsCommandOutput, SSMQuickSetupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Returns settings configured for Quick Setup in the requesting Amazon Web Services account and Amazon Web Services Region.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { SSMQuickSetupClient, GetServiceSettingsCommand } from "@aws-sdk/client-ssm-quicksetup"; // ES Modules import
|
|
35
|
+
* // const { SSMQuickSetupClient, GetServiceSettingsCommand } = require("@aws-sdk/client-ssm-quicksetup"); // CommonJS import
|
|
36
|
+
* const client = new SSMQuickSetupClient(config);
|
|
37
|
+
* const input = {};
|
|
38
|
+
* const command = new GetServiceSettingsCommand(input);
|
|
39
|
+
* const response = await client.send(command);
|
|
40
|
+
* // { // GetServiceSettingsOutput
|
|
41
|
+
* // ServiceSettings: { // ServiceSettings
|
|
42
|
+
* // ExplorerEnablingRoleArn: "STRING_VALUE",
|
|
43
|
+
* // },
|
|
44
|
+
* // };
|
|
45
|
+
*
|
|
46
|
+
* ```
|
|
47
|
+
*
|
|
48
|
+
* @param GetServiceSettingsCommandInput - {@link GetServiceSettingsCommandInput}
|
|
49
|
+
* @returns {@link GetServiceSettingsCommandOutput}
|
|
50
|
+
* @see {@link GetServiceSettingsCommandInput} for command's `input` shape.
|
|
51
|
+
* @see {@link GetServiceSettingsCommandOutput} 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 ThrottlingException} (client fault)
|
|
64
|
+
* <p>The request or operation exceeds the maximum allowed request rate per Amazon Web Services account and Amazon Web Services Region.</p>
|
|
65
|
+
*
|
|
66
|
+
* @throws {@link SSMQuickSetupServiceException}
|
|
67
|
+
* <p>Base exception class for all service exceptions from SSMQuickSetup service.</p>
|
|
68
|
+
*
|
|
69
|
+
* @public
|
|
70
|
+
*/
|
|
71
|
+
export declare class GetServiceSettingsCommand extends GetServiceSettingsCommand_base {
|
|
72
|
+
}
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { ListConfigurationManagersInput, ListConfigurationManagersOutput } 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 ListConfigurationManagersCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface ListConfigurationManagersCommandInput extends ListConfigurationManagersInput {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link ListConfigurationManagersCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface ListConfigurationManagersCommandOutput extends ListConfigurationManagersOutput, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const ListConfigurationManagersCommand_base: {
|
|
25
|
+
new (input: ListConfigurationManagersCommandInput): import("@smithy/smithy-client").CommandImpl<ListConfigurationManagersCommandInput, ListConfigurationManagersCommandOutput, SSMQuickSetupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (...[input]: [] | [ListConfigurationManagersCommandInput]): import("@smithy/smithy-client").CommandImpl<ListConfigurationManagersCommandInput, ListConfigurationManagersCommandOutput, SSMQuickSetupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Returns Quick Setup configuration managers.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { SSMQuickSetupClient, ListConfigurationManagersCommand } from "@aws-sdk/client-ssm-quicksetup"; // ES Modules import
|
|
35
|
+
* // const { SSMQuickSetupClient, ListConfigurationManagersCommand } = require("@aws-sdk/client-ssm-quicksetup"); // CommonJS import
|
|
36
|
+
* const client = new SSMQuickSetupClient(config);
|
|
37
|
+
* const input = { // ListConfigurationManagersInput
|
|
38
|
+
* StartingToken: "STRING_VALUE",
|
|
39
|
+
* MaxItems: Number("int"),
|
|
40
|
+
* Filters: [ // FiltersList
|
|
41
|
+
* { // Filter
|
|
42
|
+
* Key: "STRING_VALUE", // required
|
|
43
|
+
* Values: [ // FilterValues // required
|
|
44
|
+
* "STRING_VALUE",
|
|
45
|
+
* ],
|
|
46
|
+
* },
|
|
47
|
+
* ],
|
|
48
|
+
* };
|
|
49
|
+
* const command = new ListConfigurationManagersCommand(input);
|
|
50
|
+
* const response = await client.send(command);
|
|
51
|
+
* // { // ListConfigurationManagersOutput
|
|
52
|
+
* // ConfigurationManagersList: [ // ConfigurationManagerList
|
|
53
|
+
* // { // ConfigurationManagerSummary
|
|
54
|
+
* // ManagerArn: "STRING_VALUE", // required
|
|
55
|
+
* // Description: "STRING_VALUE",
|
|
56
|
+
* // Name: "STRING_VALUE",
|
|
57
|
+
* // StatusSummaries: [ // StatusSummariesList
|
|
58
|
+
* // { // StatusSummary
|
|
59
|
+
* // StatusType: "Deployment" || "AsyncExecutions", // required
|
|
60
|
+
* // Status: "INITIALIZING" || "DEPLOYING" || "SUCCEEDED" || "DELETING" || "STOPPING" || "FAILED" || "STOPPED" || "DELETE_FAILED" || "STOP_FAILED" || "NONE",
|
|
61
|
+
* // StatusMessage: "STRING_VALUE",
|
|
62
|
+
* // LastUpdatedAt: new Date("TIMESTAMP"), // required
|
|
63
|
+
* // StatusDetails: { // StatusDetails
|
|
64
|
+
* // "<keys>": "STRING_VALUE",
|
|
65
|
+
* // },
|
|
66
|
+
* // },
|
|
67
|
+
* // ],
|
|
68
|
+
* // ConfigurationDefinitionSummaries: [ // ConfigurationDefinitionSummariesList
|
|
69
|
+
* // { // ConfigurationDefinitionSummary
|
|
70
|
+
* // Id: "STRING_VALUE",
|
|
71
|
+
* // Type: "STRING_VALUE",
|
|
72
|
+
* // TypeVersion: "STRING_VALUE",
|
|
73
|
+
* // FirstClassParameters: { // ConfigurationParametersMap
|
|
74
|
+
* // "<keys>": "STRING_VALUE",
|
|
75
|
+
* // },
|
|
76
|
+
* // },
|
|
77
|
+
* // ],
|
|
78
|
+
* // },
|
|
79
|
+
* // ],
|
|
80
|
+
* // NextToken: "STRING_VALUE",
|
|
81
|
+
* // };
|
|
82
|
+
*
|
|
83
|
+
* ```
|
|
84
|
+
*
|
|
85
|
+
* @param ListConfigurationManagersCommandInput - {@link ListConfigurationManagersCommandInput}
|
|
86
|
+
* @returns {@link ListConfigurationManagersCommandOutput}
|
|
87
|
+
* @see {@link ListConfigurationManagersCommandInput} for command's `input` shape.
|
|
88
|
+
* @see {@link ListConfigurationManagersCommandOutput} for command's `response` shape.
|
|
89
|
+
* @see {@link SSMQuickSetupClientResolvedConfig | config} for SSMQuickSetupClient's `config` shape.
|
|
90
|
+
*
|
|
91
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
92
|
+
* <p>The requester has insufficient permissions to perform the operation.</p>
|
|
93
|
+
*
|
|
94
|
+
* @throws {@link ConflictException} (client fault)
|
|
95
|
+
* <p>Another request is being processed. Wait a few minutes and try again.</p>
|
|
96
|
+
*
|
|
97
|
+
* @throws {@link InternalServerException} (server fault)
|
|
98
|
+
* <p>An error occurred on the server side.</p>
|
|
99
|
+
*
|
|
100
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
101
|
+
* <p>The request or operation exceeds the maximum allowed request rate per Amazon Web Services account and Amazon Web Services Region.</p>
|
|
102
|
+
*
|
|
103
|
+
* @throws {@link ValidationException} (client fault)
|
|
104
|
+
* <p>The request is invalid. Verify the values provided for the request parameters are
|
|
105
|
+
* accurate.</p>
|
|
106
|
+
*
|
|
107
|
+
* @throws {@link SSMQuickSetupServiceException}
|
|
108
|
+
* <p>Base exception class for all service exceptions from SSMQuickSetup service.</p>
|
|
109
|
+
*
|
|
110
|
+
* @public
|
|
111
|
+
*/
|
|
112
|
+
export declare class ListConfigurationManagersCommand extends ListConfigurationManagersCommand_base {
|
|
113
|
+
}
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { ListQuickSetupTypesOutput } 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 ListQuickSetupTypesCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface ListQuickSetupTypesCommandInput {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link ListQuickSetupTypesCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface ListQuickSetupTypesCommandOutput extends ListQuickSetupTypesOutput, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const ListQuickSetupTypesCommand_base: {
|
|
25
|
+
new (input: ListQuickSetupTypesCommandInput): import("@smithy/smithy-client").CommandImpl<ListQuickSetupTypesCommandInput, ListQuickSetupTypesCommandOutput, SSMQuickSetupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (...[input]: [] | [ListQuickSetupTypesCommandInput]): import("@smithy/smithy-client").CommandImpl<ListQuickSetupTypesCommandInput, ListQuickSetupTypesCommandOutput, SSMQuickSetupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Returns the available Quick Setup types.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { SSMQuickSetupClient, ListQuickSetupTypesCommand } from "@aws-sdk/client-ssm-quicksetup"; // ES Modules import
|
|
35
|
+
* // const { SSMQuickSetupClient, ListQuickSetupTypesCommand } = require("@aws-sdk/client-ssm-quicksetup"); // CommonJS import
|
|
36
|
+
* const client = new SSMQuickSetupClient(config);
|
|
37
|
+
* const input = {};
|
|
38
|
+
* const command = new ListQuickSetupTypesCommand(input);
|
|
39
|
+
* const response = await client.send(command);
|
|
40
|
+
* // { // ListQuickSetupTypesOutput
|
|
41
|
+
* // QuickSetupTypeList: [ // QuickSetupTypeList
|
|
42
|
+
* // { // QuickSetupTypeOutput
|
|
43
|
+
* // Type: "STRING_VALUE",
|
|
44
|
+
* // LatestVersion: "STRING_VALUE",
|
|
45
|
+
* // },
|
|
46
|
+
* // ],
|
|
47
|
+
* // };
|
|
48
|
+
*
|
|
49
|
+
* ```
|
|
50
|
+
*
|
|
51
|
+
* @param ListQuickSetupTypesCommandInput - {@link ListQuickSetupTypesCommandInput}
|
|
52
|
+
* @returns {@link ListQuickSetupTypesCommandOutput}
|
|
53
|
+
* @see {@link ListQuickSetupTypesCommandInput} for command's `input` shape.
|
|
54
|
+
* @see {@link ListQuickSetupTypesCommandOutput} for command's `response` shape.
|
|
55
|
+
* @see {@link SSMQuickSetupClientResolvedConfig | config} for SSMQuickSetupClient's `config` shape.
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
58
|
+
* <p>The requester has insufficient permissions to perform the operation.</p>
|
|
59
|
+
*
|
|
60
|
+
* @throws {@link ConflictException} (client fault)
|
|
61
|
+
* <p>Another request is being processed. Wait a few minutes and try again.</p>
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link InternalServerException} (server fault)
|
|
64
|
+
* <p>An error occurred on the server side.</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 SSMQuickSetupServiceException}
|
|
70
|
+
* <p>Base exception class for all service exceptions from SSMQuickSetup service.</p>
|
|
71
|
+
*
|
|
72
|
+
* @public
|
|
73
|
+
*/
|
|
74
|
+
export declare class ListQuickSetupTypesCommand extends ListQuickSetupTypesCommand_base {
|
|
75
|
+
}
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { ListTagsForResourceRequest, ListTagsForResourceResponse } 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 ListTagsForResourceCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link ListTagsForResourceCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const ListTagsForResourceCommand_base: {
|
|
25
|
+
new (input: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, SSMQuickSetupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, SSMQuickSetupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Returns tags assigned to the resource.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { SSMQuickSetupClient, ListTagsForResourceCommand } from "@aws-sdk/client-ssm-quicksetup"; // ES Modules import
|
|
35
|
+
* // const { SSMQuickSetupClient, ListTagsForResourceCommand } = require("@aws-sdk/client-ssm-quicksetup"); // CommonJS import
|
|
36
|
+
* const client = new SSMQuickSetupClient(config);
|
|
37
|
+
* const input = { // ListTagsForResourceRequest
|
|
38
|
+
* ResourceArn: "STRING_VALUE", // required
|
|
39
|
+
* };
|
|
40
|
+
* const command = new ListTagsForResourceCommand(input);
|
|
41
|
+
* const response = await client.send(command);
|
|
42
|
+
* // { // ListTagsForResourceResponse
|
|
43
|
+
* // Tags: [ // Tags
|
|
44
|
+
* // { // TagEntry
|
|
45
|
+
* // Key: "STRING_VALUE",
|
|
46
|
+
* // Value: "STRING_VALUE",
|
|
47
|
+
* // },
|
|
48
|
+
* // ],
|
|
49
|
+
* // };
|
|
50
|
+
*
|
|
51
|
+
* ```
|
|
52
|
+
*
|
|
53
|
+
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
54
|
+
* @returns {@link ListTagsForResourceCommandOutput}
|
|
55
|
+
* @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
|
|
56
|
+
* @see {@link ListTagsForResourceCommandOutput} 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 ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
|
|
84
|
+
}
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { TagResourceInput } 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 TagResourceCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface TagResourceCommandInput extends TagResourceInput {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link TagResourceCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface TagResourceCommandOutput extends __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const TagResourceCommand_base: {
|
|
25
|
+
new (input: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, SSMQuickSetupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, SSMQuickSetupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Assigns key-value pairs of metadata to Amazon Web Services resources.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { SSMQuickSetupClient, TagResourceCommand } from "@aws-sdk/client-ssm-quicksetup"; // ES Modules import
|
|
35
|
+
* // const { SSMQuickSetupClient, TagResourceCommand } = require("@aws-sdk/client-ssm-quicksetup"); // CommonJS import
|
|
36
|
+
* const client = new SSMQuickSetupClient(config);
|
|
37
|
+
* const input = { // TagResourceInput
|
|
38
|
+
* ResourceArn: "STRING_VALUE", // required
|
|
39
|
+
* Tags: { // TagsMap // required
|
|
40
|
+
* "<keys>": "STRING_VALUE",
|
|
41
|
+
* },
|
|
42
|
+
* };
|
|
43
|
+
* const command = new TagResourceCommand(input);
|
|
44
|
+
* const response = await client.send(command);
|
|
45
|
+
* // {};
|
|
46
|
+
*
|
|
47
|
+
* ```
|
|
48
|
+
*
|
|
49
|
+
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
50
|
+
* @returns {@link TagResourceCommandOutput}
|
|
51
|
+
* @see {@link TagResourceCommandInput} for command's `input` shape.
|
|
52
|
+
* @see {@link TagResourceCommandOutput} for command's `response` shape.
|
|
53
|
+
* @see {@link SSMQuickSetupClientResolvedConfig | config} for SSMQuickSetupClient's `config` shape.
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
56
|
+
* <p>The requester has insufficient permissions to perform the operation.</p>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link ConflictException} (client fault)
|
|
59
|
+
* <p>Another request is being processed. Wait a few minutes and try again.</p>
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link InternalServerException} (server fault)
|
|
62
|
+
* <p>An error occurred on the server side.</p>
|
|
63
|
+
*
|
|
64
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
65
|
+
* <p>The resource couldn't be found. Check the ID or name and try again.</p>
|
|
66
|
+
*
|
|
67
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
68
|
+
* <p>The request or operation exceeds the maximum allowed request rate per Amazon Web Services account and Amazon Web Services Region.</p>
|
|
69
|
+
*
|
|
70
|
+
* @throws {@link ValidationException} (client fault)
|
|
71
|
+
* <p>The request is invalid. Verify the values provided for the request parameters are
|
|
72
|
+
* accurate.</p>
|
|
73
|
+
*
|
|
74
|
+
* @throws {@link SSMQuickSetupServiceException}
|
|
75
|
+
* <p>Base exception class for all service exceptions from SSMQuickSetup service.</p>
|
|
76
|
+
*
|
|
77
|
+
* @public
|
|
78
|
+
*/
|
|
79
|
+
export declare class TagResourceCommand extends TagResourceCommand_base {
|
|
80
|
+
}
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { UntagResourceInput } 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 UntagResourceCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface UntagResourceCommandInput extends UntagResourceInput {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link UntagResourceCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface UntagResourceCommandOutput extends __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const UntagResourceCommand_base: {
|
|
25
|
+
new (input: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, SSMQuickSetupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, SSMQuickSetupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Removes tags from the specified resource.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { SSMQuickSetupClient, UntagResourceCommand } from "@aws-sdk/client-ssm-quicksetup"; // ES Modules import
|
|
35
|
+
* // const { SSMQuickSetupClient, UntagResourceCommand } = require("@aws-sdk/client-ssm-quicksetup"); // CommonJS import
|
|
36
|
+
* const client = new SSMQuickSetupClient(config);
|
|
37
|
+
* const input = { // UntagResourceInput
|
|
38
|
+
* ResourceArn: "STRING_VALUE", // required
|
|
39
|
+
* TagKeys: [ // TagKeys // required
|
|
40
|
+
* "STRING_VALUE",
|
|
41
|
+
* ],
|
|
42
|
+
* };
|
|
43
|
+
* const command = new UntagResourceCommand(input);
|
|
44
|
+
* const response = await client.send(command);
|
|
45
|
+
* // {};
|
|
46
|
+
*
|
|
47
|
+
* ```
|
|
48
|
+
*
|
|
49
|
+
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
50
|
+
* @returns {@link UntagResourceCommandOutput}
|
|
51
|
+
* @see {@link UntagResourceCommandInput} for command's `input` shape.
|
|
52
|
+
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
53
|
+
* @see {@link SSMQuickSetupClientResolvedConfig | config} for SSMQuickSetupClient's `config` shape.
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
56
|
+
* <p>The requester has insufficient permissions to perform the operation.</p>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link ConflictException} (client fault)
|
|
59
|
+
* <p>Another request is being processed. Wait a few minutes and try again.</p>
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link InternalServerException} (server fault)
|
|
62
|
+
* <p>An error occurred on the server side.</p>
|
|
63
|
+
*
|
|
64
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
65
|
+
* <p>The resource couldn't be found. Check the ID or name and try again.</p>
|
|
66
|
+
*
|
|
67
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
68
|
+
* <p>The request or operation exceeds the maximum allowed request rate per Amazon Web Services account and Amazon Web Services Region.</p>
|
|
69
|
+
*
|
|
70
|
+
* @throws {@link ValidationException} (client fault)
|
|
71
|
+
* <p>The request is invalid. Verify the values provided for the request parameters are
|
|
72
|
+
* accurate.</p>
|
|
73
|
+
*
|
|
74
|
+
* @throws {@link SSMQuickSetupServiceException}
|
|
75
|
+
* <p>Base exception class for all service exceptions from SSMQuickSetup service.</p>
|
|
76
|
+
*
|
|
77
|
+
* @public
|
|
78
|
+
*/
|
|
79
|
+
export declare class UntagResourceCommand extends UntagResourceCommand_base {
|
|
80
|
+
}
|