@aws-sdk/client-ssm 3.1079.0 → 3.1081.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/README.md +42 -0
- package/dist-cjs/index.js +385 -81
- package/dist-es/SSM.js +16 -0
- package/dist-es/commands/CreateCloudConnectorCommand.js +4 -0
- package/dist-es/commands/DeleteCloudConnectorCommand.js +4 -0
- package/dist-es/commands/GetCloudConnectorCommand.js +4 -0
- package/dist-es/commands/ListCloudConnectorsCommand.js +4 -0
- package/dist-es/commands/UpdateCloudConnectorCommand.js +4 -0
- package/dist-es/commands/ValidateCloudConnectorCommand.js +4 -0
- package/dist-es/commands/index.js +6 -0
- package/dist-es/models/enums.js +34 -0
- package/dist-es/models/errors.js +50 -36
- package/dist-es/pagination/ListCloudConnectorsPaginator.js +4 -0
- package/dist-es/pagination/ValidateCloudConnectorPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/schemas/schemas_0.js +232 -45
- package/dist-types/SSM.d.ts +57 -0
- package/dist-types/SSMClient.d.ts +8 -2
- package/dist-types/commands/AddTagsToResourceCommand.d.ts +1 -1
- package/dist-types/commands/CreateCloudConnectorCommand.d.ts +108 -0
- package/dist-types/commands/DeleteCloudConnectorCommand.d.ts +81 -0
- package/dist-types/commands/DescribeInstanceInformationCommand.d.ts +2 -1
- package/dist-types/commands/DescribeInstancePropertiesCommand.d.ts +3 -1
- package/dist-types/commands/GetCloudConnectorCommand.d.ts +99 -0
- package/dist-types/commands/GetParameterCommand.d.ts +14 -0
- package/dist-types/commands/GetParametersByPathCommand.d.ts +1 -1
- package/dist-types/commands/GetParametersCommand.d.ts +14 -0
- package/dist-types/commands/GetPatchBaselineCommand.d.ts +1 -1
- package/dist-types/commands/GetPatchBaselineForPatchGroupCommand.d.ts +1 -1
- package/dist-types/commands/GetResourcePoliciesCommand.d.ts +1 -1
- package/dist-types/commands/GetServiceSettingCommand.d.ts +1 -2
- package/dist-types/commands/ListAssociationsCommand.d.ts +1 -1
- package/dist-types/commands/ListCloudConnectorsCommand.d.ts +93 -0
- package/dist-types/commands/ListNodesCommand.d.ts +7 -1
- package/dist-types/commands/ListNodesSummaryCommand.d.ts +3 -3
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/PutParameterCommand.d.ts +14 -0
- package/dist-types/commands/RemoveTagsFromResourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateCloudConnectorCommand.d.ts +99 -0
- package/dist-types/commands/ValidateCloudConnectorCommand.d.ts +91 -0
- package/dist-types/commands/index.d.ts +6 -0
- package/dist-types/models/enums.d.ts +66 -0
- package/dist-types/models/errors.d.ts +61 -47
- package/dist-types/models/models_0.d.ts +268 -360
- package/dist-types/models/models_1.d.ts +601 -3
- package/dist-types/pagination/ListCloudConnectorsPaginator.d.ts +7 -0
- package/dist-types/pagination/ValidateCloudConnectorPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/schemas/schemas_0.d.ts +27 -0
- package/dist-types/ts3.4/SSM.d.ts +117 -0
- package/dist-types/ts3.4/SSMClient.d.ts +38 -2
- package/dist-types/ts3.4/commands/CreateCloudConnectorCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/DeleteCloudConnectorCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/GetCloudConnectorCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/GetParametersByPathCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetPatchBaselineCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetPatchBaselineForPatchGroupCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetResourcePoliciesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetServiceSettingCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/ListCloudConnectorsCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/UpdateCloudConnectorCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/ValidateCloudConnectorCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/index.d.ts +6 -0
- package/dist-types/ts3.4/models/enums.d.ts +42 -0
- package/dist-types/ts3.4/models/errors.d.ts +26 -20
- package/dist-types/ts3.4/models/models_0.d.ts +78 -59
- package/dist-types/ts3.4/models/models_1.d.ts +123 -0
- package/dist-types/ts3.4/pagination/ListCloudConnectorsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ValidateCloudConnectorPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +27 -0
- package/package.json +3 -3
package/dist-types/SSM.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ import { type CancelMaintenanceWindowExecutionCommandInput, type CancelMaintenan
|
|
|
7
7
|
import { type CreateActivationCommandInput, type CreateActivationCommandOutput } from "./commands/CreateActivationCommand";
|
|
8
8
|
import { type CreateAssociationBatchCommandInput, type CreateAssociationBatchCommandOutput } from "./commands/CreateAssociationBatchCommand";
|
|
9
9
|
import { type CreateAssociationCommandInput, type CreateAssociationCommandOutput } from "./commands/CreateAssociationCommand";
|
|
10
|
+
import { type CreateCloudConnectorCommandInput, type CreateCloudConnectorCommandOutput } from "./commands/CreateCloudConnectorCommand";
|
|
10
11
|
import { type CreateDocumentCommandInput, type CreateDocumentCommandOutput } from "./commands/CreateDocumentCommand";
|
|
11
12
|
import { type CreateMaintenanceWindowCommandInput, type CreateMaintenanceWindowCommandOutput } from "./commands/CreateMaintenanceWindowCommand";
|
|
12
13
|
import { type CreateOpsItemCommandInput, type CreateOpsItemCommandOutput } from "./commands/CreateOpsItemCommand";
|
|
@@ -15,6 +16,7 @@ import { type CreatePatchBaselineCommandInput, type CreatePatchBaselineCommandOu
|
|
|
15
16
|
import { type CreateResourceDataSyncCommandInput, type CreateResourceDataSyncCommandOutput } from "./commands/CreateResourceDataSyncCommand";
|
|
16
17
|
import { type DeleteActivationCommandInput, type DeleteActivationCommandOutput } from "./commands/DeleteActivationCommand";
|
|
17
18
|
import { type DeleteAssociationCommandInput, type DeleteAssociationCommandOutput } from "./commands/DeleteAssociationCommand";
|
|
19
|
+
import { type DeleteCloudConnectorCommandInput, type DeleteCloudConnectorCommandOutput } from "./commands/DeleteCloudConnectorCommand";
|
|
18
20
|
import { type DeleteDocumentCommandInput, type DeleteDocumentCommandOutput } from "./commands/DeleteDocumentCommand";
|
|
19
21
|
import { type DeleteInventoryCommandInput, type DeleteInventoryCommandOutput } from "./commands/DeleteInventoryCommand";
|
|
20
22
|
import { type DeleteMaintenanceWindowCommandInput, type DeleteMaintenanceWindowCommandOutput } from "./commands/DeleteMaintenanceWindowCommand";
|
|
@@ -66,6 +68,7 @@ import { type DisassociateOpsItemRelatedItemCommandInput, type DisassociateOpsIt
|
|
|
66
68
|
import { type GetAccessTokenCommandInput, type GetAccessTokenCommandOutput } from "./commands/GetAccessTokenCommand";
|
|
67
69
|
import { type GetAutomationExecutionCommandInput, type GetAutomationExecutionCommandOutput } from "./commands/GetAutomationExecutionCommand";
|
|
68
70
|
import { type GetCalendarStateCommandInput, type GetCalendarStateCommandOutput } from "./commands/GetCalendarStateCommand";
|
|
71
|
+
import { type GetCloudConnectorCommandInput, type GetCloudConnectorCommandOutput } from "./commands/GetCloudConnectorCommand";
|
|
69
72
|
import { type GetCommandInvocationCommandInput, type GetCommandInvocationCommandOutput } from "./commands/GetCommandInvocationCommand";
|
|
70
73
|
import { type GetConnectionStatusCommandInput, type GetConnectionStatusCommandOutput } from "./commands/GetConnectionStatusCommand";
|
|
71
74
|
import { type GetDefaultPatchBaselineCommandInput, type GetDefaultPatchBaselineCommandOutput } from "./commands/GetDefaultPatchBaselineCommand";
|
|
@@ -93,6 +96,7 @@ import { type GetServiceSettingCommandInput, type GetServiceSettingCommandOutput
|
|
|
93
96
|
import { type LabelParameterVersionCommandInput, type LabelParameterVersionCommandOutput } from "./commands/LabelParameterVersionCommand";
|
|
94
97
|
import { type ListAssociationsCommandInput, type ListAssociationsCommandOutput } from "./commands/ListAssociationsCommand";
|
|
95
98
|
import { type ListAssociationVersionsCommandInput, type ListAssociationVersionsCommandOutput } from "./commands/ListAssociationVersionsCommand";
|
|
99
|
+
import { type ListCloudConnectorsCommandInput, type ListCloudConnectorsCommandOutput } from "./commands/ListCloudConnectorsCommand";
|
|
96
100
|
import { type ListCommandInvocationsCommandInput, type ListCommandInvocationsCommandOutput } from "./commands/ListCommandInvocationsCommand";
|
|
97
101
|
import { type ListCommandsCommandInput, type ListCommandsCommandOutput } from "./commands/ListCommandsCommand";
|
|
98
102
|
import { type ListComplianceItemsCommandInput, type ListComplianceItemsCommandOutput } from "./commands/ListComplianceItemsCommand";
|
|
@@ -134,6 +138,7 @@ import { type TerminateSessionCommandInput, type TerminateSessionCommandOutput }
|
|
|
134
138
|
import { type UnlabelParameterVersionCommandInput, type UnlabelParameterVersionCommandOutput } from "./commands/UnlabelParameterVersionCommand";
|
|
135
139
|
import { type UpdateAssociationCommandInput, type UpdateAssociationCommandOutput } from "./commands/UpdateAssociationCommand";
|
|
136
140
|
import { type UpdateAssociationStatusCommandInput, type UpdateAssociationStatusCommandOutput } from "./commands/UpdateAssociationStatusCommand";
|
|
141
|
+
import { type UpdateCloudConnectorCommandInput, type UpdateCloudConnectorCommandOutput } from "./commands/UpdateCloudConnectorCommand";
|
|
137
142
|
import { type UpdateDocumentCommandInput, type UpdateDocumentCommandOutput } from "./commands/UpdateDocumentCommand";
|
|
138
143
|
import { type UpdateDocumentDefaultVersionCommandInput, type UpdateDocumentDefaultVersionCommandOutput } from "./commands/UpdateDocumentDefaultVersionCommand";
|
|
139
144
|
import { type UpdateDocumentMetadataCommandInput, type UpdateDocumentMetadataCommandOutput } from "./commands/UpdateDocumentMetadataCommand";
|
|
@@ -146,6 +151,7 @@ import { type UpdateOpsMetadataCommandInput, type UpdateOpsMetadataCommandOutput
|
|
|
146
151
|
import { type UpdatePatchBaselineCommandInput, type UpdatePatchBaselineCommandOutput } from "./commands/UpdatePatchBaselineCommand";
|
|
147
152
|
import { type UpdateResourceDataSyncCommandInput, type UpdateResourceDataSyncCommandOutput } from "./commands/UpdateResourceDataSyncCommand";
|
|
148
153
|
import { type UpdateServiceSettingCommandInput, type UpdateServiceSettingCommandOutput } from "./commands/UpdateServiceSettingCommand";
|
|
154
|
+
import { type ValidateCloudConnectorCommandInput, type ValidateCloudConnectorCommandOutput } from "./commands/ValidateCloudConnectorCommand";
|
|
149
155
|
import { SSMClient } from "./SSMClient";
|
|
150
156
|
export interface SSM {
|
|
151
157
|
/**
|
|
@@ -190,6 +196,12 @@ export interface SSM {
|
|
|
190
196
|
createAssociationBatch(args: CreateAssociationBatchCommandInput, options?: __HttpHandlerOptions): Promise<CreateAssociationBatchCommandOutput>;
|
|
191
197
|
createAssociationBatch(args: CreateAssociationBatchCommandInput, cb: (err: any, data?: CreateAssociationBatchCommandOutput) => void): void;
|
|
192
198
|
createAssociationBatch(args: CreateAssociationBatchCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAssociationBatchCommandOutput) => void): void;
|
|
199
|
+
/**
|
|
200
|
+
* @see {@link CreateCloudConnectorCommand}
|
|
201
|
+
*/
|
|
202
|
+
createCloudConnector(args: CreateCloudConnectorCommandInput, options?: __HttpHandlerOptions): Promise<CreateCloudConnectorCommandOutput>;
|
|
203
|
+
createCloudConnector(args: CreateCloudConnectorCommandInput, cb: (err: any, data?: CreateCloudConnectorCommandOutput) => void): void;
|
|
204
|
+
createCloudConnector(args: CreateCloudConnectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateCloudConnectorCommandOutput) => void): void;
|
|
193
205
|
/**
|
|
194
206
|
* @see {@link CreateDocumentCommand}
|
|
195
207
|
*/
|
|
@@ -239,6 +251,12 @@ export interface SSM {
|
|
|
239
251
|
deleteAssociation(args: DeleteAssociationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteAssociationCommandOutput>;
|
|
240
252
|
deleteAssociation(args: DeleteAssociationCommandInput, cb: (err: any, data?: DeleteAssociationCommandOutput) => void): void;
|
|
241
253
|
deleteAssociation(args: DeleteAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAssociationCommandOutput) => void): void;
|
|
254
|
+
/**
|
|
255
|
+
* @see {@link DeleteCloudConnectorCommand}
|
|
256
|
+
*/
|
|
257
|
+
deleteCloudConnector(args: DeleteCloudConnectorCommandInput, options?: __HttpHandlerOptions): Promise<DeleteCloudConnectorCommandOutput>;
|
|
258
|
+
deleteCloudConnector(args: DeleteCloudConnectorCommandInput, cb: (err: any, data?: DeleteCloudConnectorCommandOutput) => void): void;
|
|
259
|
+
deleteCloudConnector(args: DeleteCloudConnectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteCloudConnectorCommandOutput) => void): void;
|
|
242
260
|
/**
|
|
243
261
|
* @see {@link DeleteDocumentCommand}
|
|
244
262
|
*/
|
|
@@ -558,6 +576,12 @@ export interface SSM {
|
|
|
558
576
|
getCalendarState(args: GetCalendarStateCommandInput, options?: __HttpHandlerOptions): Promise<GetCalendarStateCommandOutput>;
|
|
559
577
|
getCalendarState(args: GetCalendarStateCommandInput, cb: (err: any, data?: GetCalendarStateCommandOutput) => void): void;
|
|
560
578
|
getCalendarState(args: GetCalendarStateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCalendarStateCommandOutput) => void): void;
|
|
579
|
+
/**
|
|
580
|
+
* @see {@link GetCloudConnectorCommand}
|
|
581
|
+
*/
|
|
582
|
+
getCloudConnector(args: GetCloudConnectorCommandInput, options?: __HttpHandlerOptions): Promise<GetCloudConnectorCommandOutput>;
|
|
583
|
+
getCloudConnector(args: GetCloudConnectorCommandInput, cb: (err: any, data?: GetCloudConnectorCommandOutput) => void): void;
|
|
584
|
+
getCloudConnector(args: GetCloudConnectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCloudConnectorCommandOutput) => void): void;
|
|
561
585
|
/**
|
|
562
586
|
* @see {@link GetCommandInvocationCommand}
|
|
563
587
|
*/
|
|
@@ -725,6 +749,13 @@ export interface SSM {
|
|
|
725
749
|
listAssociationVersions(args: ListAssociationVersionsCommandInput, options?: __HttpHandlerOptions): Promise<ListAssociationVersionsCommandOutput>;
|
|
726
750
|
listAssociationVersions(args: ListAssociationVersionsCommandInput, cb: (err: any, data?: ListAssociationVersionsCommandOutput) => void): void;
|
|
727
751
|
listAssociationVersions(args: ListAssociationVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAssociationVersionsCommandOutput) => void): void;
|
|
752
|
+
/**
|
|
753
|
+
* @see {@link ListCloudConnectorsCommand}
|
|
754
|
+
*/
|
|
755
|
+
listCloudConnectors(): Promise<ListCloudConnectorsCommandOutput>;
|
|
756
|
+
listCloudConnectors(args: ListCloudConnectorsCommandInput, options?: __HttpHandlerOptions): Promise<ListCloudConnectorsCommandOutput>;
|
|
757
|
+
listCloudConnectors(args: ListCloudConnectorsCommandInput, cb: (err: any, data?: ListCloudConnectorsCommandOutput) => void): void;
|
|
758
|
+
listCloudConnectors(args: ListCloudConnectorsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCloudConnectorsCommandOutput) => void): void;
|
|
728
759
|
/**
|
|
729
760
|
* @see {@link ListCommandInvocationsCommand}
|
|
730
761
|
*/
|
|
@@ -982,6 +1013,12 @@ export interface SSM {
|
|
|
982
1013
|
updateAssociationStatus(args: UpdateAssociationStatusCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAssociationStatusCommandOutput>;
|
|
983
1014
|
updateAssociationStatus(args: UpdateAssociationStatusCommandInput, cb: (err: any, data?: UpdateAssociationStatusCommandOutput) => void): void;
|
|
984
1015
|
updateAssociationStatus(args: UpdateAssociationStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAssociationStatusCommandOutput) => void): void;
|
|
1016
|
+
/**
|
|
1017
|
+
* @see {@link UpdateCloudConnectorCommand}
|
|
1018
|
+
*/
|
|
1019
|
+
updateCloudConnector(args: UpdateCloudConnectorCommandInput, options?: __HttpHandlerOptions): Promise<UpdateCloudConnectorCommandOutput>;
|
|
1020
|
+
updateCloudConnector(args: UpdateCloudConnectorCommandInput, cb: (err: any, data?: UpdateCloudConnectorCommandOutput) => void): void;
|
|
1021
|
+
updateCloudConnector(args: UpdateCloudConnectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateCloudConnectorCommandOutput) => void): void;
|
|
985
1022
|
/**
|
|
986
1023
|
* @see {@link UpdateDocumentCommand}
|
|
987
1024
|
*/
|
|
@@ -1054,6 +1091,12 @@ export interface SSM {
|
|
|
1054
1091
|
updateServiceSetting(args: UpdateServiceSettingCommandInput, options?: __HttpHandlerOptions): Promise<UpdateServiceSettingCommandOutput>;
|
|
1055
1092
|
updateServiceSetting(args: UpdateServiceSettingCommandInput, cb: (err: any, data?: UpdateServiceSettingCommandOutput) => void): void;
|
|
1056
1093
|
updateServiceSetting(args: UpdateServiceSettingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateServiceSettingCommandOutput) => void): void;
|
|
1094
|
+
/**
|
|
1095
|
+
* @see {@link ValidateCloudConnectorCommand}
|
|
1096
|
+
*/
|
|
1097
|
+
validateCloudConnector(args: ValidateCloudConnectorCommandInput, options?: __HttpHandlerOptions): Promise<ValidateCloudConnectorCommandOutput>;
|
|
1098
|
+
validateCloudConnector(args: ValidateCloudConnectorCommandInput, cb: (err: any, data?: ValidateCloudConnectorCommandOutput) => void): void;
|
|
1099
|
+
validateCloudConnector(args: ValidateCloudConnectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ValidateCloudConnectorCommandOutput) => void): void;
|
|
1057
1100
|
/**
|
|
1058
1101
|
* @see {@link DescribeActivationsCommand}
|
|
1059
1102
|
* @param args - command input.
|
|
@@ -1313,6 +1356,13 @@ export interface SSM {
|
|
|
1313
1356
|
* @returns AsyncIterable of {@link ListAssociationVersionsCommandOutput}.
|
|
1314
1357
|
*/
|
|
1315
1358
|
paginateListAssociationVersions(args: ListAssociationVersionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListAssociationVersionsCommandOutput>;
|
|
1359
|
+
/**
|
|
1360
|
+
* @see {@link ListCloudConnectorsCommand}
|
|
1361
|
+
* @param args - command input.
|
|
1362
|
+
* @param paginationConfig - optional pagination config.
|
|
1363
|
+
* @returns AsyncIterable of {@link ListCloudConnectorsCommandOutput}.
|
|
1364
|
+
*/
|
|
1365
|
+
paginateListCloudConnectors(args?: ListCloudConnectorsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListCloudConnectorsCommandOutput>;
|
|
1316
1366
|
/**
|
|
1317
1367
|
* @see {@link ListCommandInvocationsCommand}
|
|
1318
1368
|
* @param args - command input.
|
|
@@ -1404,6 +1454,13 @@ export interface SSM {
|
|
|
1404
1454
|
* @returns AsyncIterable of {@link ListResourceDataSyncCommandOutput}.
|
|
1405
1455
|
*/
|
|
1406
1456
|
paginateListResourceDataSync(args?: ListResourceDataSyncCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListResourceDataSyncCommandOutput>;
|
|
1457
|
+
/**
|
|
1458
|
+
* @see {@link ValidateCloudConnectorCommand}
|
|
1459
|
+
* @param args - command input.
|
|
1460
|
+
* @param paginationConfig - optional pagination config.
|
|
1461
|
+
* @returns AsyncIterable of {@link ValidateCloudConnectorCommandOutput}.
|
|
1462
|
+
*/
|
|
1463
|
+
paginateValidateCloudConnector(args: ValidateCloudConnectorCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ValidateCloudConnectorCommandOutput>;
|
|
1407
1464
|
/**
|
|
1408
1465
|
* @see {@link GetCommandInvocationCommand}
|
|
1409
1466
|
* @param args - command input.
|
|
@@ -13,6 +13,7 @@ import type { CancelMaintenanceWindowExecutionCommandInput, CancelMaintenanceWin
|
|
|
13
13
|
import type { CreateActivationCommandInput, CreateActivationCommandOutput } from "./commands/CreateActivationCommand";
|
|
14
14
|
import type { CreateAssociationBatchCommandInput, CreateAssociationBatchCommandOutput } from "./commands/CreateAssociationBatchCommand";
|
|
15
15
|
import type { CreateAssociationCommandInput, CreateAssociationCommandOutput } from "./commands/CreateAssociationCommand";
|
|
16
|
+
import type { CreateCloudConnectorCommandInput, CreateCloudConnectorCommandOutput } from "./commands/CreateCloudConnectorCommand";
|
|
16
17
|
import type { CreateDocumentCommandInput, CreateDocumentCommandOutput } from "./commands/CreateDocumentCommand";
|
|
17
18
|
import type { CreateMaintenanceWindowCommandInput, CreateMaintenanceWindowCommandOutput } from "./commands/CreateMaintenanceWindowCommand";
|
|
18
19
|
import type { CreateOpsItemCommandInput, CreateOpsItemCommandOutput } from "./commands/CreateOpsItemCommand";
|
|
@@ -21,6 +22,7 @@ import type { CreatePatchBaselineCommandInput, CreatePatchBaselineCommandOutput
|
|
|
21
22
|
import type { CreateResourceDataSyncCommandInput, CreateResourceDataSyncCommandOutput } from "./commands/CreateResourceDataSyncCommand";
|
|
22
23
|
import type { DeleteActivationCommandInput, DeleteActivationCommandOutput } from "./commands/DeleteActivationCommand";
|
|
23
24
|
import type { DeleteAssociationCommandInput, DeleteAssociationCommandOutput } from "./commands/DeleteAssociationCommand";
|
|
25
|
+
import type { DeleteCloudConnectorCommandInput, DeleteCloudConnectorCommandOutput } from "./commands/DeleteCloudConnectorCommand";
|
|
24
26
|
import type { DeleteDocumentCommandInput, DeleteDocumentCommandOutput } from "./commands/DeleteDocumentCommand";
|
|
25
27
|
import type { DeleteInventoryCommandInput, DeleteInventoryCommandOutput } from "./commands/DeleteInventoryCommand";
|
|
26
28
|
import type { DeleteMaintenanceWindowCommandInput, DeleteMaintenanceWindowCommandOutput } from "./commands/DeleteMaintenanceWindowCommand";
|
|
@@ -72,6 +74,7 @@ import type { DisassociateOpsItemRelatedItemCommandInput, DisassociateOpsItemRel
|
|
|
72
74
|
import type { GetAccessTokenCommandInput, GetAccessTokenCommandOutput } from "./commands/GetAccessTokenCommand";
|
|
73
75
|
import type { GetAutomationExecutionCommandInput, GetAutomationExecutionCommandOutput } from "./commands/GetAutomationExecutionCommand";
|
|
74
76
|
import type { GetCalendarStateCommandInput, GetCalendarStateCommandOutput } from "./commands/GetCalendarStateCommand";
|
|
77
|
+
import type { GetCloudConnectorCommandInput, GetCloudConnectorCommandOutput } from "./commands/GetCloudConnectorCommand";
|
|
75
78
|
import type { GetCommandInvocationCommandInput, GetCommandInvocationCommandOutput } from "./commands/GetCommandInvocationCommand";
|
|
76
79
|
import type { GetConnectionStatusCommandInput, GetConnectionStatusCommandOutput } from "./commands/GetConnectionStatusCommand";
|
|
77
80
|
import type { GetDefaultPatchBaselineCommandInput, GetDefaultPatchBaselineCommandOutput } from "./commands/GetDefaultPatchBaselineCommand";
|
|
@@ -99,6 +102,7 @@ import type { GetServiceSettingCommandInput, GetServiceSettingCommandOutput } fr
|
|
|
99
102
|
import type { LabelParameterVersionCommandInput, LabelParameterVersionCommandOutput } from "./commands/LabelParameterVersionCommand";
|
|
100
103
|
import type { ListAssociationsCommandInput, ListAssociationsCommandOutput } from "./commands/ListAssociationsCommand";
|
|
101
104
|
import type { ListAssociationVersionsCommandInput, ListAssociationVersionsCommandOutput } from "./commands/ListAssociationVersionsCommand";
|
|
105
|
+
import type { ListCloudConnectorsCommandInput, ListCloudConnectorsCommandOutput } from "./commands/ListCloudConnectorsCommand";
|
|
102
106
|
import type { ListCommandInvocationsCommandInput, ListCommandInvocationsCommandOutput } from "./commands/ListCommandInvocationsCommand";
|
|
103
107
|
import type { ListCommandsCommandInput, ListCommandsCommandOutput } from "./commands/ListCommandsCommand";
|
|
104
108
|
import type { ListComplianceItemsCommandInput, ListComplianceItemsCommandOutput } from "./commands/ListComplianceItemsCommand";
|
|
@@ -140,6 +144,7 @@ import type { TerminateSessionCommandInput, TerminateSessionCommandOutput } from
|
|
|
140
144
|
import type { UnlabelParameterVersionCommandInput, UnlabelParameterVersionCommandOutput } from "./commands/UnlabelParameterVersionCommand";
|
|
141
145
|
import type { UpdateAssociationCommandInput, UpdateAssociationCommandOutput } from "./commands/UpdateAssociationCommand";
|
|
142
146
|
import type { UpdateAssociationStatusCommandInput, UpdateAssociationStatusCommandOutput } from "./commands/UpdateAssociationStatusCommand";
|
|
147
|
+
import type { UpdateCloudConnectorCommandInput, UpdateCloudConnectorCommandOutput } from "./commands/UpdateCloudConnectorCommand";
|
|
143
148
|
import type { UpdateDocumentCommandInput, UpdateDocumentCommandOutput } from "./commands/UpdateDocumentCommand";
|
|
144
149
|
import type { UpdateDocumentDefaultVersionCommandInput, UpdateDocumentDefaultVersionCommandOutput } from "./commands/UpdateDocumentDefaultVersionCommand";
|
|
145
150
|
import type { UpdateDocumentMetadataCommandInput, UpdateDocumentMetadataCommandOutput } from "./commands/UpdateDocumentMetadataCommand";
|
|
@@ -152,17 +157,18 @@ import type { UpdateOpsMetadataCommandInput, UpdateOpsMetadataCommandOutput } fr
|
|
|
152
157
|
import type { UpdatePatchBaselineCommandInput, UpdatePatchBaselineCommandOutput } from "./commands/UpdatePatchBaselineCommand";
|
|
153
158
|
import type { UpdateResourceDataSyncCommandInput, UpdateResourceDataSyncCommandOutput } from "./commands/UpdateResourceDataSyncCommand";
|
|
154
159
|
import type { UpdateServiceSettingCommandInput, UpdateServiceSettingCommandOutput } from "./commands/UpdateServiceSettingCommand";
|
|
160
|
+
import type { ValidateCloudConnectorCommandInput, ValidateCloudConnectorCommandOutput } from "./commands/ValidateCloudConnectorCommand";
|
|
155
161
|
import { type ClientInputEndpointParameters, type ClientResolvedEndpointParameters, type EndpointParameters } from "./endpoint/EndpointParameters";
|
|
156
162
|
import { type RuntimeExtension, type RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
157
163
|
export { __Client };
|
|
158
164
|
/**
|
|
159
165
|
* @public
|
|
160
166
|
*/
|
|
161
|
-
export type ServiceInputTypes = AddTagsToResourceCommandInput | AssociateOpsItemRelatedItemCommandInput | CancelCommandCommandInput | CancelMaintenanceWindowExecutionCommandInput | CreateActivationCommandInput | CreateAssociationBatchCommandInput | CreateAssociationCommandInput | CreateDocumentCommandInput | CreateMaintenanceWindowCommandInput | CreateOpsItemCommandInput | CreateOpsMetadataCommandInput | CreatePatchBaselineCommandInput | CreateResourceDataSyncCommandInput | DeleteActivationCommandInput | DeleteAssociationCommandInput | DeleteDocumentCommandInput | DeleteInventoryCommandInput | DeleteMaintenanceWindowCommandInput | DeleteOpsItemCommandInput | DeleteOpsMetadataCommandInput | DeleteParameterCommandInput | DeleteParametersCommandInput | DeletePatchBaselineCommandInput | DeleteResourceDataSyncCommandInput | DeleteResourcePolicyCommandInput | DeregisterManagedInstanceCommandInput | DeregisterPatchBaselineForPatchGroupCommandInput | DeregisterTargetFromMaintenanceWindowCommandInput | DeregisterTaskFromMaintenanceWindowCommandInput | DescribeActivationsCommandInput | DescribeAssociationCommandInput | DescribeAssociationExecutionTargetsCommandInput | DescribeAssociationExecutionsCommandInput | DescribeAutomationExecutionsCommandInput | DescribeAutomationStepExecutionsCommandInput | DescribeAvailablePatchesCommandInput | DescribeDocumentCommandInput | DescribeDocumentPermissionCommandInput | DescribeEffectiveInstanceAssociationsCommandInput | DescribeEffectivePatchesForPatchBaselineCommandInput | DescribeInstanceAssociationsStatusCommandInput | DescribeInstanceInformationCommandInput | DescribeInstancePatchStatesCommandInput | DescribeInstancePatchStatesForPatchGroupCommandInput | DescribeInstancePatchesCommandInput | DescribeInstancePropertiesCommandInput | DescribeInventoryDeletionsCommandInput | DescribeMaintenanceWindowExecutionTaskInvocationsCommandInput | DescribeMaintenanceWindowExecutionTasksCommandInput | DescribeMaintenanceWindowExecutionsCommandInput | DescribeMaintenanceWindowScheduleCommandInput | DescribeMaintenanceWindowTargetsCommandInput | DescribeMaintenanceWindowTasksCommandInput | DescribeMaintenanceWindowsCommandInput | DescribeMaintenanceWindowsForTargetCommandInput | DescribeOpsItemsCommandInput | DescribeParametersCommandInput | DescribePatchBaselinesCommandInput | DescribePatchGroupStateCommandInput | DescribePatchGroupsCommandInput | DescribePatchPropertiesCommandInput | DescribeSessionsCommandInput | DisassociateOpsItemRelatedItemCommandInput | GetAccessTokenCommandInput | GetAutomationExecutionCommandInput | GetCalendarStateCommandInput | GetCommandInvocationCommandInput | GetConnectionStatusCommandInput | GetDefaultPatchBaselineCommandInput | GetDeployablePatchSnapshotForInstanceCommandInput | GetDocumentCommandInput | GetExecutionPreviewCommandInput | GetInventoryCommandInput | GetInventorySchemaCommandInput | GetMaintenanceWindowCommandInput | GetMaintenanceWindowExecutionCommandInput | GetMaintenanceWindowExecutionTaskCommandInput | GetMaintenanceWindowExecutionTaskInvocationCommandInput | GetMaintenanceWindowTaskCommandInput | GetOpsItemCommandInput | GetOpsMetadataCommandInput | GetOpsSummaryCommandInput | GetParameterCommandInput | GetParameterHistoryCommandInput | GetParametersByPathCommandInput | GetParametersCommandInput | GetPatchBaselineCommandInput | GetPatchBaselineForPatchGroupCommandInput | GetResourcePoliciesCommandInput | GetServiceSettingCommandInput | LabelParameterVersionCommandInput | ListAssociationVersionsCommandInput | ListAssociationsCommandInput | ListCommandInvocationsCommandInput | ListCommandsCommandInput | ListComplianceItemsCommandInput | ListComplianceSummariesCommandInput | ListDocumentMetadataHistoryCommandInput | ListDocumentVersionsCommandInput | ListDocumentsCommandInput | ListInventoryEntriesCommandInput | ListNodesCommandInput | ListNodesSummaryCommandInput | ListOpsItemEventsCommandInput | ListOpsItemRelatedItemsCommandInput | ListOpsMetadataCommandInput | ListResourceComplianceSummariesCommandInput | ListResourceDataSyncCommandInput | ListTagsForResourceCommandInput | ModifyDocumentPermissionCommandInput | PutComplianceItemsCommandInput | PutInventoryCommandInput | PutParameterCommandInput | PutResourcePolicyCommandInput | RegisterDefaultPatchBaselineCommandInput | RegisterPatchBaselineForPatchGroupCommandInput | RegisterTargetWithMaintenanceWindowCommandInput | RegisterTaskWithMaintenanceWindowCommandInput | RemoveTagsFromResourceCommandInput | ResetServiceSettingCommandInput | ResumeSessionCommandInput | SendAutomationSignalCommandInput | SendCommandCommandInput | StartAccessRequestCommandInput | StartAssociationsOnceCommandInput | StartAutomationExecutionCommandInput | StartChangeRequestExecutionCommandInput | StartExecutionPreviewCommandInput | StartSessionCommandInput | StopAutomationExecutionCommandInput | TerminateSessionCommandInput | UnlabelParameterVersionCommandInput | UpdateAssociationCommandInput | UpdateAssociationStatusCommandInput | UpdateDocumentCommandInput | UpdateDocumentDefaultVersionCommandInput | UpdateDocumentMetadataCommandInput | UpdateMaintenanceWindowCommandInput | UpdateMaintenanceWindowTargetCommandInput | UpdateMaintenanceWindowTaskCommandInput | UpdateManagedInstanceRoleCommandInput | UpdateOpsItemCommandInput | UpdateOpsMetadataCommandInput | UpdatePatchBaselineCommandInput | UpdateResourceDataSyncCommandInput | UpdateServiceSettingCommandInput;
|
|
167
|
+
export type ServiceInputTypes = AddTagsToResourceCommandInput | AssociateOpsItemRelatedItemCommandInput | CancelCommandCommandInput | CancelMaintenanceWindowExecutionCommandInput | CreateActivationCommandInput | CreateAssociationBatchCommandInput | CreateAssociationCommandInput | CreateCloudConnectorCommandInput | CreateDocumentCommandInput | CreateMaintenanceWindowCommandInput | CreateOpsItemCommandInput | CreateOpsMetadataCommandInput | CreatePatchBaselineCommandInput | CreateResourceDataSyncCommandInput | DeleteActivationCommandInput | DeleteAssociationCommandInput | DeleteCloudConnectorCommandInput | DeleteDocumentCommandInput | DeleteInventoryCommandInput | DeleteMaintenanceWindowCommandInput | DeleteOpsItemCommandInput | DeleteOpsMetadataCommandInput | DeleteParameterCommandInput | DeleteParametersCommandInput | DeletePatchBaselineCommandInput | DeleteResourceDataSyncCommandInput | DeleteResourcePolicyCommandInput | DeregisterManagedInstanceCommandInput | DeregisterPatchBaselineForPatchGroupCommandInput | DeregisterTargetFromMaintenanceWindowCommandInput | DeregisterTaskFromMaintenanceWindowCommandInput | DescribeActivationsCommandInput | DescribeAssociationCommandInput | DescribeAssociationExecutionTargetsCommandInput | DescribeAssociationExecutionsCommandInput | DescribeAutomationExecutionsCommandInput | DescribeAutomationStepExecutionsCommandInput | DescribeAvailablePatchesCommandInput | DescribeDocumentCommandInput | DescribeDocumentPermissionCommandInput | DescribeEffectiveInstanceAssociationsCommandInput | DescribeEffectivePatchesForPatchBaselineCommandInput | DescribeInstanceAssociationsStatusCommandInput | DescribeInstanceInformationCommandInput | DescribeInstancePatchStatesCommandInput | DescribeInstancePatchStatesForPatchGroupCommandInput | DescribeInstancePatchesCommandInput | DescribeInstancePropertiesCommandInput | DescribeInventoryDeletionsCommandInput | DescribeMaintenanceWindowExecutionTaskInvocationsCommandInput | DescribeMaintenanceWindowExecutionTasksCommandInput | DescribeMaintenanceWindowExecutionsCommandInput | DescribeMaintenanceWindowScheduleCommandInput | DescribeMaintenanceWindowTargetsCommandInput | DescribeMaintenanceWindowTasksCommandInput | DescribeMaintenanceWindowsCommandInput | DescribeMaintenanceWindowsForTargetCommandInput | DescribeOpsItemsCommandInput | DescribeParametersCommandInput | DescribePatchBaselinesCommandInput | DescribePatchGroupStateCommandInput | DescribePatchGroupsCommandInput | DescribePatchPropertiesCommandInput | DescribeSessionsCommandInput | DisassociateOpsItemRelatedItemCommandInput | GetAccessTokenCommandInput | GetAutomationExecutionCommandInput | GetCalendarStateCommandInput | GetCloudConnectorCommandInput | GetCommandInvocationCommandInput | GetConnectionStatusCommandInput | GetDefaultPatchBaselineCommandInput | GetDeployablePatchSnapshotForInstanceCommandInput | GetDocumentCommandInput | GetExecutionPreviewCommandInput | GetInventoryCommandInput | GetInventorySchemaCommandInput | GetMaintenanceWindowCommandInput | GetMaintenanceWindowExecutionCommandInput | GetMaintenanceWindowExecutionTaskCommandInput | GetMaintenanceWindowExecutionTaskInvocationCommandInput | GetMaintenanceWindowTaskCommandInput | GetOpsItemCommandInput | GetOpsMetadataCommandInput | GetOpsSummaryCommandInput | GetParameterCommandInput | GetParameterHistoryCommandInput | GetParametersByPathCommandInput | GetParametersCommandInput | GetPatchBaselineCommandInput | GetPatchBaselineForPatchGroupCommandInput | GetResourcePoliciesCommandInput | GetServiceSettingCommandInput | LabelParameterVersionCommandInput | ListAssociationVersionsCommandInput | ListAssociationsCommandInput | ListCloudConnectorsCommandInput | ListCommandInvocationsCommandInput | ListCommandsCommandInput | ListComplianceItemsCommandInput | ListComplianceSummariesCommandInput | ListDocumentMetadataHistoryCommandInput | ListDocumentVersionsCommandInput | ListDocumentsCommandInput | ListInventoryEntriesCommandInput | ListNodesCommandInput | ListNodesSummaryCommandInput | ListOpsItemEventsCommandInput | ListOpsItemRelatedItemsCommandInput | ListOpsMetadataCommandInput | ListResourceComplianceSummariesCommandInput | ListResourceDataSyncCommandInput | ListTagsForResourceCommandInput | ModifyDocumentPermissionCommandInput | PutComplianceItemsCommandInput | PutInventoryCommandInput | PutParameterCommandInput | PutResourcePolicyCommandInput | RegisterDefaultPatchBaselineCommandInput | RegisterPatchBaselineForPatchGroupCommandInput | RegisterTargetWithMaintenanceWindowCommandInput | RegisterTaskWithMaintenanceWindowCommandInput | RemoveTagsFromResourceCommandInput | ResetServiceSettingCommandInput | ResumeSessionCommandInput | SendAutomationSignalCommandInput | SendCommandCommandInput | StartAccessRequestCommandInput | StartAssociationsOnceCommandInput | StartAutomationExecutionCommandInput | StartChangeRequestExecutionCommandInput | StartExecutionPreviewCommandInput | StartSessionCommandInput | StopAutomationExecutionCommandInput | TerminateSessionCommandInput | UnlabelParameterVersionCommandInput | UpdateAssociationCommandInput | UpdateAssociationStatusCommandInput | UpdateCloudConnectorCommandInput | UpdateDocumentCommandInput | UpdateDocumentDefaultVersionCommandInput | UpdateDocumentMetadataCommandInput | UpdateMaintenanceWindowCommandInput | UpdateMaintenanceWindowTargetCommandInput | UpdateMaintenanceWindowTaskCommandInput | UpdateManagedInstanceRoleCommandInput | UpdateOpsItemCommandInput | UpdateOpsMetadataCommandInput | UpdatePatchBaselineCommandInput | UpdateResourceDataSyncCommandInput | UpdateServiceSettingCommandInput | ValidateCloudConnectorCommandInput;
|
|
162
168
|
/**
|
|
163
169
|
* @public
|
|
164
170
|
*/
|
|
165
|
-
export type ServiceOutputTypes = AddTagsToResourceCommandOutput | AssociateOpsItemRelatedItemCommandOutput | CancelCommandCommandOutput | CancelMaintenanceWindowExecutionCommandOutput | CreateActivationCommandOutput | CreateAssociationBatchCommandOutput | CreateAssociationCommandOutput | CreateDocumentCommandOutput | CreateMaintenanceWindowCommandOutput | CreateOpsItemCommandOutput | CreateOpsMetadataCommandOutput | CreatePatchBaselineCommandOutput | CreateResourceDataSyncCommandOutput | DeleteActivationCommandOutput | DeleteAssociationCommandOutput | DeleteDocumentCommandOutput | DeleteInventoryCommandOutput | DeleteMaintenanceWindowCommandOutput | DeleteOpsItemCommandOutput | DeleteOpsMetadataCommandOutput | DeleteParameterCommandOutput | DeleteParametersCommandOutput | DeletePatchBaselineCommandOutput | DeleteResourceDataSyncCommandOutput | DeleteResourcePolicyCommandOutput | DeregisterManagedInstanceCommandOutput | DeregisterPatchBaselineForPatchGroupCommandOutput | DeregisterTargetFromMaintenanceWindowCommandOutput | DeregisterTaskFromMaintenanceWindowCommandOutput | DescribeActivationsCommandOutput | DescribeAssociationCommandOutput | DescribeAssociationExecutionTargetsCommandOutput | DescribeAssociationExecutionsCommandOutput | DescribeAutomationExecutionsCommandOutput | DescribeAutomationStepExecutionsCommandOutput | DescribeAvailablePatchesCommandOutput | DescribeDocumentCommandOutput | DescribeDocumentPermissionCommandOutput | DescribeEffectiveInstanceAssociationsCommandOutput | DescribeEffectivePatchesForPatchBaselineCommandOutput | DescribeInstanceAssociationsStatusCommandOutput | DescribeInstanceInformationCommandOutput | DescribeInstancePatchStatesCommandOutput | DescribeInstancePatchStatesForPatchGroupCommandOutput | DescribeInstancePatchesCommandOutput | DescribeInstancePropertiesCommandOutput | DescribeInventoryDeletionsCommandOutput | DescribeMaintenanceWindowExecutionTaskInvocationsCommandOutput | DescribeMaintenanceWindowExecutionTasksCommandOutput | DescribeMaintenanceWindowExecutionsCommandOutput | DescribeMaintenanceWindowScheduleCommandOutput | DescribeMaintenanceWindowTargetsCommandOutput | DescribeMaintenanceWindowTasksCommandOutput | DescribeMaintenanceWindowsCommandOutput | DescribeMaintenanceWindowsForTargetCommandOutput | DescribeOpsItemsCommandOutput | DescribeParametersCommandOutput | DescribePatchBaselinesCommandOutput | DescribePatchGroupStateCommandOutput | DescribePatchGroupsCommandOutput | DescribePatchPropertiesCommandOutput | DescribeSessionsCommandOutput | DisassociateOpsItemRelatedItemCommandOutput | GetAccessTokenCommandOutput | GetAutomationExecutionCommandOutput | GetCalendarStateCommandOutput | GetCommandInvocationCommandOutput | GetConnectionStatusCommandOutput | GetDefaultPatchBaselineCommandOutput | GetDeployablePatchSnapshotForInstanceCommandOutput | GetDocumentCommandOutput | GetExecutionPreviewCommandOutput | GetInventoryCommandOutput | GetInventorySchemaCommandOutput | GetMaintenanceWindowCommandOutput | GetMaintenanceWindowExecutionCommandOutput | GetMaintenanceWindowExecutionTaskCommandOutput | GetMaintenanceWindowExecutionTaskInvocationCommandOutput | GetMaintenanceWindowTaskCommandOutput | GetOpsItemCommandOutput | GetOpsMetadataCommandOutput | GetOpsSummaryCommandOutput | GetParameterCommandOutput | GetParameterHistoryCommandOutput | GetParametersByPathCommandOutput | GetParametersCommandOutput | GetPatchBaselineCommandOutput | GetPatchBaselineForPatchGroupCommandOutput | GetResourcePoliciesCommandOutput | GetServiceSettingCommandOutput | LabelParameterVersionCommandOutput | ListAssociationVersionsCommandOutput | ListAssociationsCommandOutput | ListCommandInvocationsCommandOutput | ListCommandsCommandOutput | ListComplianceItemsCommandOutput | ListComplianceSummariesCommandOutput | ListDocumentMetadataHistoryCommandOutput | ListDocumentVersionsCommandOutput | ListDocumentsCommandOutput | ListInventoryEntriesCommandOutput | ListNodesCommandOutput | ListNodesSummaryCommandOutput | ListOpsItemEventsCommandOutput | ListOpsItemRelatedItemsCommandOutput | ListOpsMetadataCommandOutput | ListResourceComplianceSummariesCommandOutput | ListResourceDataSyncCommandOutput | ListTagsForResourceCommandOutput | ModifyDocumentPermissionCommandOutput | PutComplianceItemsCommandOutput | PutInventoryCommandOutput | PutParameterCommandOutput | PutResourcePolicyCommandOutput | RegisterDefaultPatchBaselineCommandOutput | RegisterPatchBaselineForPatchGroupCommandOutput | RegisterTargetWithMaintenanceWindowCommandOutput | RegisterTaskWithMaintenanceWindowCommandOutput | RemoveTagsFromResourceCommandOutput | ResetServiceSettingCommandOutput | ResumeSessionCommandOutput | SendAutomationSignalCommandOutput | SendCommandCommandOutput | StartAccessRequestCommandOutput | StartAssociationsOnceCommandOutput | StartAutomationExecutionCommandOutput | StartChangeRequestExecutionCommandOutput | StartExecutionPreviewCommandOutput | StartSessionCommandOutput | StopAutomationExecutionCommandOutput | TerminateSessionCommandOutput | UnlabelParameterVersionCommandOutput | UpdateAssociationCommandOutput | UpdateAssociationStatusCommandOutput | UpdateDocumentCommandOutput | UpdateDocumentDefaultVersionCommandOutput | UpdateDocumentMetadataCommandOutput | UpdateMaintenanceWindowCommandOutput | UpdateMaintenanceWindowTargetCommandOutput | UpdateMaintenanceWindowTaskCommandOutput | UpdateManagedInstanceRoleCommandOutput | UpdateOpsItemCommandOutput | UpdateOpsMetadataCommandOutput | UpdatePatchBaselineCommandOutput | UpdateResourceDataSyncCommandOutput | UpdateServiceSettingCommandOutput;
|
|
171
|
+
export type ServiceOutputTypes = AddTagsToResourceCommandOutput | AssociateOpsItemRelatedItemCommandOutput | CancelCommandCommandOutput | CancelMaintenanceWindowExecutionCommandOutput | CreateActivationCommandOutput | CreateAssociationBatchCommandOutput | CreateAssociationCommandOutput | CreateCloudConnectorCommandOutput | CreateDocumentCommandOutput | CreateMaintenanceWindowCommandOutput | CreateOpsItemCommandOutput | CreateOpsMetadataCommandOutput | CreatePatchBaselineCommandOutput | CreateResourceDataSyncCommandOutput | DeleteActivationCommandOutput | DeleteAssociationCommandOutput | DeleteCloudConnectorCommandOutput | DeleteDocumentCommandOutput | DeleteInventoryCommandOutput | DeleteMaintenanceWindowCommandOutput | DeleteOpsItemCommandOutput | DeleteOpsMetadataCommandOutput | DeleteParameterCommandOutput | DeleteParametersCommandOutput | DeletePatchBaselineCommandOutput | DeleteResourceDataSyncCommandOutput | DeleteResourcePolicyCommandOutput | DeregisterManagedInstanceCommandOutput | DeregisterPatchBaselineForPatchGroupCommandOutput | DeregisterTargetFromMaintenanceWindowCommandOutput | DeregisterTaskFromMaintenanceWindowCommandOutput | DescribeActivationsCommandOutput | DescribeAssociationCommandOutput | DescribeAssociationExecutionTargetsCommandOutput | DescribeAssociationExecutionsCommandOutput | DescribeAutomationExecutionsCommandOutput | DescribeAutomationStepExecutionsCommandOutput | DescribeAvailablePatchesCommandOutput | DescribeDocumentCommandOutput | DescribeDocumentPermissionCommandOutput | DescribeEffectiveInstanceAssociationsCommandOutput | DescribeEffectivePatchesForPatchBaselineCommandOutput | DescribeInstanceAssociationsStatusCommandOutput | DescribeInstanceInformationCommandOutput | DescribeInstancePatchStatesCommandOutput | DescribeInstancePatchStatesForPatchGroupCommandOutput | DescribeInstancePatchesCommandOutput | DescribeInstancePropertiesCommandOutput | DescribeInventoryDeletionsCommandOutput | DescribeMaintenanceWindowExecutionTaskInvocationsCommandOutput | DescribeMaintenanceWindowExecutionTasksCommandOutput | DescribeMaintenanceWindowExecutionsCommandOutput | DescribeMaintenanceWindowScheduleCommandOutput | DescribeMaintenanceWindowTargetsCommandOutput | DescribeMaintenanceWindowTasksCommandOutput | DescribeMaintenanceWindowsCommandOutput | DescribeMaintenanceWindowsForTargetCommandOutput | DescribeOpsItemsCommandOutput | DescribeParametersCommandOutput | DescribePatchBaselinesCommandOutput | DescribePatchGroupStateCommandOutput | DescribePatchGroupsCommandOutput | DescribePatchPropertiesCommandOutput | DescribeSessionsCommandOutput | DisassociateOpsItemRelatedItemCommandOutput | GetAccessTokenCommandOutput | GetAutomationExecutionCommandOutput | GetCalendarStateCommandOutput | GetCloudConnectorCommandOutput | GetCommandInvocationCommandOutput | GetConnectionStatusCommandOutput | GetDefaultPatchBaselineCommandOutput | GetDeployablePatchSnapshotForInstanceCommandOutput | GetDocumentCommandOutput | GetExecutionPreviewCommandOutput | GetInventoryCommandOutput | GetInventorySchemaCommandOutput | GetMaintenanceWindowCommandOutput | GetMaintenanceWindowExecutionCommandOutput | GetMaintenanceWindowExecutionTaskCommandOutput | GetMaintenanceWindowExecutionTaskInvocationCommandOutput | GetMaintenanceWindowTaskCommandOutput | GetOpsItemCommandOutput | GetOpsMetadataCommandOutput | GetOpsSummaryCommandOutput | GetParameterCommandOutput | GetParameterHistoryCommandOutput | GetParametersByPathCommandOutput | GetParametersCommandOutput | GetPatchBaselineCommandOutput | GetPatchBaselineForPatchGroupCommandOutput | GetResourcePoliciesCommandOutput | GetServiceSettingCommandOutput | LabelParameterVersionCommandOutput | ListAssociationVersionsCommandOutput | ListAssociationsCommandOutput | ListCloudConnectorsCommandOutput | ListCommandInvocationsCommandOutput | ListCommandsCommandOutput | ListComplianceItemsCommandOutput | ListComplianceSummariesCommandOutput | ListDocumentMetadataHistoryCommandOutput | ListDocumentVersionsCommandOutput | ListDocumentsCommandOutput | ListInventoryEntriesCommandOutput | ListNodesCommandOutput | ListNodesSummaryCommandOutput | ListOpsItemEventsCommandOutput | ListOpsItemRelatedItemsCommandOutput | ListOpsMetadataCommandOutput | ListResourceComplianceSummariesCommandOutput | ListResourceDataSyncCommandOutput | ListTagsForResourceCommandOutput | ModifyDocumentPermissionCommandOutput | PutComplianceItemsCommandOutput | PutInventoryCommandOutput | PutParameterCommandOutput | PutResourcePolicyCommandOutput | RegisterDefaultPatchBaselineCommandOutput | RegisterPatchBaselineForPatchGroupCommandOutput | RegisterTargetWithMaintenanceWindowCommandOutput | RegisterTaskWithMaintenanceWindowCommandOutput | RemoveTagsFromResourceCommandOutput | ResetServiceSettingCommandOutput | ResumeSessionCommandOutput | SendAutomationSignalCommandOutput | SendCommandCommandOutput | StartAccessRequestCommandOutput | StartAssociationsOnceCommandOutput | StartAutomationExecutionCommandOutput | StartChangeRequestExecutionCommandOutput | StartExecutionPreviewCommandOutput | StartSessionCommandOutput | StopAutomationExecutionCommandOutput | TerminateSessionCommandOutput | UnlabelParameterVersionCommandOutput | UpdateAssociationCommandOutput | UpdateAssociationStatusCommandOutput | UpdateCloudConnectorCommandOutput | UpdateDocumentCommandOutput | UpdateDocumentDefaultVersionCommandOutput | UpdateDocumentMetadataCommandOutput | UpdateMaintenanceWindowCommandOutput | UpdateMaintenanceWindowTargetCommandOutput | UpdateMaintenanceWindowTaskCommandOutput | UpdateManagedInstanceRoleCommandOutput | UpdateOpsItemCommandOutput | UpdateOpsMetadataCommandOutput | UpdatePatchBaselineCommandOutput | UpdateResourceDataSyncCommandOutput | UpdateServiceSettingCommandOutput | ValidateCloudConnectorCommandOutput;
|
|
166
172
|
/**
|
|
167
173
|
* @public
|
|
168
174
|
*/
|
|
@@ -80,7 +80,7 @@ declare const AddTagsToResourceCommand_base: {
|
|
|
80
80
|
* const config = {}; // type is SSMClientConfig
|
|
81
81
|
* const client = new SSMClient(config);
|
|
82
82
|
* const input = { // AddTagsToResourceRequest
|
|
83
|
-
* ResourceType: "Document" || "ManagedInstance" || "MaintenanceWindow" || "Parameter" || "PatchBaseline" || "OpsItem" || "OpsMetadata" || "Automation" || "Association", // required
|
|
83
|
+
* ResourceType: "Document" || "ManagedInstance" || "MaintenanceWindow" || "Parameter" || "PatchBaseline" || "OpsItem" || "OpsMetadata" || "Automation" || "Association" || "CloudConnector", // required
|
|
84
84
|
* ResourceId: "STRING_VALUE", // required
|
|
85
85
|
* Tags: [ // TagList // required
|
|
86
86
|
* { // Tag
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import type { CreateCloudConnectorRequest, CreateCloudConnectorResult } from "../models/models_0";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export type { __MetadataBearer };
|
|
7
|
+
/**
|
|
8
|
+
* @public
|
|
9
|
+
*
|
|
10
|
+
* The input for {@link CreateCloudConnectorCommand}.
|
|
11
|
+
*/
|
|
12
|
+
export interface CreateCloudConnectorCommandInput extends CreateCloudConnectorRequest {
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* @public
|
|
16
|
+
*
|
|
17
|
+
* The output of {@link CreateCloudConnectorCommand}.
|
|
18
|
+
*/
|
|
19
|
+
export interface CreateCloudConnectorCommandOutput extends CreateCloudConnectorResult, __MetadataBearer {
|
|
20
|
+
}
|
|
21
|
+
declare const CreateCloudConnectorCommand_base: {
|
|
22
|
+
new (input: CreateCloudConnectorCommandInput): import("@smithy/core/client").CommandImpl<CreateCloudConnectorCommandInput, CreateCloudConnectorCommandOutput, import("..").SSMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: CreateCloudConnectorCommandInput): import("@smithy/core/client").CommandImpl<CreateCloudConnectorCommandInput, CreateCloudConnectorCommandOutput, import("..").SSMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* <p>Creates a cloud connector that establishes a connection between Systems Manager and a third-party
|
|
28
|
+
* cloud environment.</p>
|
|
29
|
+
* @example
|
|
30
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
31
|
+
* ```javascript
|
|
32
|
+
* import { SSMClient, CreateCloudConnectorCommand } from "@aws-sdk/client-ssm"; // ES Modules import
|
|
33
|
+
* // const { SSMClient, CreateCloudConnectorCommand } = require("@aws-sdk/client-ssm"); // CommonJS import
|
|
34
|
+
* // import type { SSMClientConfig } from "@aws-sdk/client-ssm";
|
|
35
|
+
* const config = {}; // type is SSMClientConfig
|
|
36
|
+
* const client = new SSMClient(config);
|
|
37
|
+
* const input = { // CreateCloudConnectorRequest
|
|
38
|
+
* DisplayName: "STRING_VALUE", // required
|
|
39
|
+
* RoleArn: "STRING_VALUE", // required
|
|
40
|
+
* Description: "STRING_VALUE",
|
|
41
|
+
* Configuration: { // CloudConnectorConfiguration Union: only one key present
|
|
42
|
+
* AzureConfiguration: { // AzureConfiguration
|
|
43
|
+
* TenantId: "STRING_VALUE", // required
|
|
44
|
+
* TenantDisplayName: "STRING_VALUE",
|
|
45
|
+
* ApplicationId: "STRING_VALUE", // required
|
|
46
|
+
* ApplicationDisplayName: "STRING_VALUE",
|
|
47
|
+
* Targets: { // ConfigurationTargets Union: only one key present
|
|
48
|
+
* Subscriptions: [ // AzureSubscriptionList
|
|
49
|
+
* { // AzureSubscription
|
|
50
|
+
* Id: "STRING_VALUE", // required
|
|
51
|
+
* DisplayName: "STRING_VALUE",
|
|
52
|
+
* },
|
|
53
|
+
* ],
|
|
54
|
+
* },
|
|
55
|
+
* },
|
|
56
|
+
* },
|
|
57
|
+
* ConfigConnectorArn: "STRING_VALUE", // required
|
|
58
|
+
* Tags: [ // TagList
|
|
59
|
+
* { // Tag
|
|
60
|
+
* Key: "STRING_VALUE", // required
|
|
61
|
+
* Value: "STRING_VALUE", // required
|
|
62
|
+
* },
|
|
63
|
+
* ],
|
|
64
|
+
* };
|
|
65
|
+
* const command = new CreateCloudConnectorCommand(input);
|
|
66
|
+
* const response = await client.send(command);
|
|
67
|
+
* // { // CreateCloudConnectorResult
|
|
68
|
+
* // CloudConnectorId: "STRING_VALUE",
|
|
69
|
+
* // };
|
|
70
|
+
*
|
|
71
|
+
* ```
|
|
72
|
+
*
|
|
73
|
+
* @param CreateCloudConnectorCommandInput - {@link CreateCloudConnectorCommandInput}
|
|
74
|
+
* @returns {@link CreateCloudConnectorCommandOutput}
|
|
75
|
+
* @see {@link CreateCloudConnectorCommandInput} for command's `input` shape.
|
|
76
|
+
* @see {@link CreateCloudConnectorCommandOutput} for command's `response` shape.
|
|
77
|
+
* @see {@link SSMClientResolvedConfig | config} for SSMClient's `config` shape.
|
|
78
|
+
*
|
|
79
|
+
* @throws {@link ConflictException} (client fault)
|
|
80
|
+
* <p>An error occurred because of a conflict with a concurrent request or the current state of
|
|
81
|
+
* the resource. Retry your request.</p>
|
|
82
|
+
*
|
|
83
|
+
* @throws {@link InternalServerError} (server fault)
|
|
84
|
+
* <p>An error occurred on the server side.</p>
|
|
85
|
+
*
|
|
86
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
87
|
+
* <p>The request exceeds the service quota. Service quotas, also referred to as limits, are the
|
|
88
|
+
* maximum number of service resources or operations for your Amazon Web Services account.</p>
|
|
89
|
+
*
|
|
90
|
+
* @throws {@link SSMServiceException}
|
|
91
|
+
* <p>Base exception class for all service exceptions from SSM service.</p>
|
|
92
|
+
*
|
|
93
|
+
*
|
|
94
|
+
* @public
|
|
95
|
+
*/
|
|
96
|
+
export declare class CreateCloudConnectorCommand extends CreateCloudConnectorCommand_base {
|
|
97
|
+
/** @internal type navigation helper, not in runtime. */
|
|
98
|
+
protected static __types: {
|
|
99
|
+
api: {
|
|
100
|
+
input: CreateCloudConnectorRequest;
|
|
101
|
+
output: CreateCloudConnectorResult;
|
|
102
|
+
};
|
|
103
|
+
sdk: {
|
|
104
|
+
input: CreateCloudConnectorCommandInput;
|
|
105
|
+
output: CreateCloudConnectorCommandOutput;
|
|
106
|
+
};
|
|
107
|
+
};
|
|
108
|
+
}
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import type { DeleteCloudConnectorRequest, DeleteCloudConnectorResult } from "../models/models_0";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export type { __MetadataBearer };
|
|
7
|
+
/**
|
|
8
|
+
* @public
|
|
9
|
+
*
|
|
10
|
+
* The input for {@link DeleteCloudConnectorCommand}.
|
|
11
|
+
*/
|
|
12
|
+
export interface DeleteCloudConnectorCommandInput extends DeleteCloudConnectorRequest {
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* @public
|
|
16
|
+
*
|
|
17
|
+
* The output of {@link DeleteCloudConnectorCommand}.
|
|
18
|
+
*/
|
|
19
|
+
export interface DeleteCloudConnectorCommandOutput extends DeleteCloudConnectorResult, __MetadataBearer {
|
|
20
|
+
}
|
|
21
|
+
declare const DeleteCloudConnectorCommand_base: {
|
|
22
|
+
new (input: DeleteCloudConnectorCommandInput): import("@smithy/core/client").CommandImpl<DeleteCloudConnectorCommandInput, DeleteCloudConnectorCommandOutput, import("..").SSMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: DeleteCloudConnectorCommandInput): import("@smithy/core/client").CommandImpl<DeleteCloudConnectorCommandInput, DeleteCloudConnectorCommandOutput, import("..").SSMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* <p>Deletes a cloud connector.</p>
|
|
28
|
+
* @example
|
|
29
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
30
|
+
* ```javascript
|
|
31
|
+
* import { SSMClient, DeleteCloudConnectorCommand } from "@aws-sdk/client-ssm"; // ES Modules import
|
|
32
|
+
* // const { SSMClient, DeleteCloudConnectorCommand } = require("@aws-sdk/client-ssm"); // CommonJS import
|
|
33
|
+
* // import type { SSMClientConfig } from "@aws-sdk/client-ssm";
|
|
34
|
+
* const config = {}; // type is SSMClientConfig
|
|
35
|
+
* const client = new SSMClient(config);
|
|
36
|
+
* const input = { // DeleteCloudConnectorRequest
|
|
37
|
+
* CloudConnectorId: "STRING_VALUE", // required
|
|
38
|
+
* };
|
|
39
|
+
* const command = new DeleteCloudConnectorCommand(input);
|
|
40
|
+
* const response = await client.send(command);
|
|
41
|
+
* // { // DeleteCloudConnectorResult
|
|
42
|
+
* // CloudConnectorId: "STRING_VALUE",
|
|
43
|
+
* // };
|
|
44
|
+
*
|
|
45
|
+
* ```
|
|
46
|
+
*
|
|
47
|
+
* @param DeleteCloudConnectorCommandInput - {@link DeleteCloudConnectorCommandInput}
|
|
48
|
+
* @returns {@link DeleteCloudConnectorCommandOutput}
|
|
49
|
+
* @see {@link DeleteCloudConnectorCommandInput} for command's `input` shape.
|
|
50
|
+
* @see {@link DeleteCloudConnectorCommandOutput} for command's `response` shape.
|
|
51
|
+
* @see {@link SSMClientResolvedConfig | config} for SSMClient's `config` shape.
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link ConflictException} (client fault)
|
|
54
|
+
* <p>An error occurred because of a conflict with a concurrent request or the current state of
|
|
55
|
+
* the resource. Retry your request.</p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link InternalServerError} (server fault)
|
|
58
|
+
* <p>An error occurred on the server side.</p>
|
|
59
|
+
*
|
|
60
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
61
|
+
* <p>The specified parameter to be shared could not be found.</p>
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link SSMServiceException}
|
|
64
|
+
* <p>Base exception class for all service exceptions from SSM service.</p>
|
|
65
|
+
*
|
|
66
|
+
*
|
|
67
|
+
* @public
|
|
68
|
+
*/
|
|
69
|
+
export declare class DeleteCloudConnectorCommand extends DeleteCloudConnectorCommand_base {
|
|
70
|
+
/** @internal type navigation helper, not in runtime. */
|
|
71
|
+
protected static __types: {
|
|
72
|
+
api: {
|
|
73
|
+
input: DeleteCloudConnectorRequest;
|
|
74
|
+
output: DeleteCloudConnectorResult;
|
|
75
|
+
};
|
|
76
|
+
sdk: {
|
|
77
|
+
input: DeleteCloudConnectorCommandInput;
|
|
78
|
+
output: DeleteCloudConnectorCommandOutput;
|
|
79
|
+
};
|
|
80
|
+
};
|
|
81
|
+
}
|
|
@@ -93,7 +93,8 @@ declare const DescribeInstanceInformationCommand_base: {
|
|
|
93
93
|
* // },
|
|
94
94
|
* // },
|
|
95
95
|
* // SourceId: "STRING_VALUE",
|
|
96
|
-
* // SourceType: "AWS::EC2::Instance" || "AWS::IoT::Thing" || "AWS::SSM::ManagedInstance",
|
|
96
|
+
* // SourceType: "AWS::EC2::Instance" || "AWS::IoT::Thing" || "AWS::SSM::ManagedInstance" || "Microsoft.Compute/virtualMachines",
|
|
97
|
+
* // SourceLocation: "STRING_VALUE",
|
|
97
98
|
* // },
|
|
98
99
|
* // ],
|
|
99
100
|
* // NextToken: "STRING_VALUE",
|
|
@@ -90,7 +90,9 @@ declare const DescribeInstancePropertiesCommand_base: {
|
|
|
90
90
|
* // },
|
|
91
91
|
* // },
|
|
92
92
|
* // SourceId: "STRING_VALUE",
|
|
93
|
-
* // SourceType: "AWS::EC2::Instance" || "AWS::IoT::Thing" || "AWS::SSM::ManagedInstance",
|
|
93
|
+
* // SourceType: "AWS::EC2::Instance" || "AWS::IoT::Thing" || "AWS::SSM::ManagedInstance" || "Microsoft.Compute/virtualMachines",
|
|
94
|
+
* // SourceLocation: "STRING_VALUE",
|
|
95
|
+
* // AvailabilityZone: "STRING_VALUE",
|
|
94
96
|
* // },
|
|
95
97
|
* // ],
|
|
96
98
|
* // NextToken: "STRING_VALUE",
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import type { GetCloudConnectorRequest, GetCloudConnectorResult } from "../models/models_0";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export type { __MetadataBearer };
|
|
7
|
+
/**
|
|
8
|
+
* @public
|
|
9
|
+
*
|
|
10
|
+
* The input for {@link GetCloudConnectorCommand}.
|
|
11
|
+
*/
|
|
12
|
+
export interface GetCloudConnectorCommandInput extends GetCloudConnectorRequest {
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* @public
|
|
16
|
+
*
|
|
17
|
+
* The output of {@link GetCloudConnectorCommand}.
|
|
18
|
+
*/
|
|
19
|
+
export interface GetCloudConnectorCommandOutput extends GetCloudConnectorResult, __MetadataBearer {
|
|
20
|
+
}
|
|
21
|
+
declare const GetCloudConnectorCommand_base: {
|
|
22
|
+
new (input: GetCloudConnectorCommandInput): import("@smithy/core/client").CommandImpl<GetCloudConnectorCommandInput, GetCloudConnectorCommandOutput, import("..").SSMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: GetCloudConnectorCommandInput): import("@smithy/core/client").CommandImpl<GetCloudConnectorCommandInput, GetCloudConnectorCommandOutput, import("..").SSMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* <p>Returns detailed information about a cloud connector.</p>
|
|
28
|
+
* @example
|
|
29
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
30
|
+
* ```javascript
|
|
31
|
+
* import { SSMClient, GetCloudConnectorCommand } from "@aws-sdk/client-ssm"; // ES Modules import
|
|
32
|
+
* // const { SSMClient, GetCloudConnectorCommand } = require("@aws-sdk/client-ssm"); // CommonJS import
|
|
33
|
+
* // import type { SSMClientConfig } from "@aws-sdk/client-ssm";
|
|
34
|
+
* const config = {}; // type is SSMClientConfig
|
|
35
|
+
* const client = new SSMClient(config);
|
|
36
|
+
* const input = { // GetCloudConnectorRequest
|
|
37
|
+
* CloudConnectorId: "STRING_VALUE", // required
|
|
38
|
+
* };
|
|
39
|
+
* const command = new GetCloudConnectorCommand(input);
|
|
40
|
+
* const response = await client.send(command);
|
|
41
|
+
* // { // GetCloudConnectorResult
|
|
42
|
+
* // CloudConnectorArn: "STRING_VALUE",
|
|
43
|
+
* // DisplayName: "STRING_VALUE",
|
|
44
|
+
* // Description: "STRING_VALUE",
|
|
45
|
+
* // RoleArn: "STRING_VALUE",
|
|
46
|
+
* // Configuration: { // CloudConnectorConfiguration Union: only one key present
|
|
47
|
+
* // AzureConfiguration: { // AzureConfiguration
|
|
48
|
+
* // TenantId: "STRING_VALUE", // required
|
|
49
|
+
* // TenantDisplayName: "STRING_VALUE",
|
|
50
|
+
* // ApplicationId: "STRING_VALUE", // required
|
|
51
|
+
* // ApplicationDisplayName: "STRING_VALUE",
|
|
52
|
+
* // Targets: { // ConfigurationTargets Union: only one key present
|
|
53
|
+
* // Subscriptions: [ // AzureSubscriptionList
|
|
54
|
+
* // { // AzureSubscription
|
|
55
|
+
* // Id: "STRING_VALUE", // required
|
|
56
|
+
* // DisplayName: "STRING_VALUE",
|
|
57
|
+
* // },
|
|
58
|
+
* // ],
|
|
59
|
+
* // },
|
|
60
|
+
* // },
|
|
61
|
+
* // },
|
|
62
|
+
* // ConfigConnectorArn: "STRING_VALUE",
|
|
63
|
+
* // CreatedAt: new Date("TIMESTAMP"),
|
|
64
|
+
* // UpdatedAt: new Date("TIMESTAMP"),
|
|
65
|
+
* // };
|
|
66
|
+
*
|
|
67
|
+
* ```
|
|
68
|
+
*
|
|
69
|
+
* @param GetCloudConnectorCommandInput - {@link GetCloudConnectorCommandInput}
|
|
70
|
+
* @returns {@link GetCloudConnectorCommandOutput}
|
|
71
|
+
* @see {@link GetCloudConnectorCommandInput} for command's `input` shape.
|
|
72
|
+
* @see {@link GetCloudConnectorCommandOutput} for command's `response` shape.
|
|
73
|
+
* @see {@link SSMClientResolvedConfig | config} for SSMClient's `config` shape.
|
|
74
|
+
*
|
|
75
|
+
* @throws {@link InternalServerError} (server fault)
|
|
76
|
+
* <p>An error occurred on the server side.</p>
|
|
77
|
+
*
|
|
78
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
79
|
+
* <p>The specified parameter to be shared could not be found.</p>
|
|
80
|
+
*
|
|
81
|
+
* @throws {@link SSMServiceException}
|
|
82
|
+
* <p>Base exception class for all service exceptions from SSM service.</p>
|
|
83
|
+
*
|
|
84
|
+
*
|
|
85
|
+
* @public
|
|
86
|
+
*/
|
|
87
|
+
export declare class GetCloudConnectorCommand extends GetCloudConnectorCommand_base {
|
|
88
|
+
/** @internal type navigation helper, not in runtime. */
|
|
89
|
+
protected static __types: {
|
|
90
|
+
api: {
|
|
91
|
+
input: GetCloudConnectorRequest;
|
|
92
|
+
output: GetCloudConnectorResult;
|
|
93
|
+
};
|
|
94
|
+
sdk: {
|
|
95
|
+
input: GetCloudConnectorCommandInput;
|
|
96
|
+
output: GetCloudConnectorCommandOutput;
|
|
97
|
+
};
|
|
98
|
+
};
|
|
99
|
+
}
|
|
@@ -31,6 +31,20 @@ declare const GetParameterCommand_base: {
|
|
|
31
31
|
* <note>
|
|
32
32
|
* <p>To get information about more than one parameter at a time, use the <a>GetParameters</a> operation.</p>
|
|
33
33
|
* </note>
|
|
34
|
+
* <note>
|
|
35
|
+
* <p>Parameter Store throughput defines the number of API transactions per second (TPS) that
|
|
36
|
+
* Systems Manager can process. This applies to <code>GetParameter</code>,
|
|
37
|
+
* <code>GetParameters</code>, and <code>PutParameter</code> API calls for your Amazon Web Services account and
|
|
38
|
+
* Amazon Web Services Region. By default, Parameter Store is configured with a standard throughput quota suitable
|
|
39
|
+
* for low- to moderate-volume workloads. Applications that retrieve configuration data infrequently
|
|
40
|
+
* or operate at smaller scale can use this default setting without additional cost.</p>
|
|
41
|
+
* <p>For higher-volume workloads, you can enable higher throughput. This increases the maximum
|
|
42
|
+
* number of supported transactions per second for your account and Region. Increased throughput
|
|
43
|
+
* supports applications and workloads that need concurrent access to multiple parameters. If you
|
|
44
|
+
* experience <code>ThrottlingException: Rate exceeded</code> errors, enable higher throughput. For
|
|
45
|
+
* more information, see <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/parameter-store-throughput.html">Changing Parameter Store
|
|
46
|
+
* throughput</a>.</p>
|
|
47
|
+
* </note>
|
|
34
48
|
* @example
|
|
35
49
|
* Use a bare-bones client and the command you need to make an API call.
|
|
36
50
|
* ```javascript
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import type { GetParametersByPathRequest, GetParametersByPathResult } from "../models/
|
|
2
|
+
import type { GetParametersByPathRequest, GetParametersByPathResult } from "../models/models_1";
|
|
3
3
|
/**
|
|
4
4
|
* @public
|
|
5
5
|
*/
|