@aws-sdk/client-ssm 3.1080.0 → 3.1082.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 +8 -8
|
@@ -2,6 +2,7 @@ import {
|
|
|
2
2
|
AssociationComplianceSeverity,
|
|
3
3
|
AssociationFilterKey,
|
|
4
4
|
AssociationSyncCompliance,
|
|
5
|
+
CloudConnectorFilterKey,
|
|
5
6
|
CommandFilterKey,
|
|
6
7
|
CommandInvocationStatus,
|
|
7
8
|
CommandPluginStatus,
|
|
@@ -46,7 +47,11 @@ import {
|
|
|
46
47
|
ResourceTypeForTagging,
|
|
47
48
|
ReviewStatus,
|
|
48
49
|
SignalType,
|
|
50
|
+
SourceType,
|
|
49
51
|
StopType,
|
|
52
|
+
ValidationFindingCode,
|
|
53
|
+
ValidationFindingScopeType,
|
|
54
|
+
ValidationFindingType,
|
|
50
55
|
} from "./enums";
|
|
51
56
|
import {
|
|
52
57
|
AlarmConfiguration,
|
|
@@ -55,6 +60,7 @@ import {
|
|
|
55
60
|
AssociationOverview,
|
|
56
61
|
AssociationStatus,
|
|
57
62
|
AttachmentsSource,
|
|
63
|
+
CloudConnectorConfiguration,
|
|
58
64
|
CloudWatchOutputConfig,
|
|
59
65
|
DocumentDescription,
|
|
60
66
|
DocumentRequires,
|
|
@@ -70,6 +76,8 @@ import {
|
|
|
70
76
|
OpsItemDataValue,
|
|
71
77
|
OpsItemNotification,
|
|
72
78
|
OpsResultAttribute,
|
|
79
|
+
Parameter,
|
|
80
|
+
ParameterStringFilter,
|
|
73
81
|
PatchFilterGroup,
|
|
74
82
|
PatchRuleGroup,
|
|
75
83
|
PatchSource,
|
|
@@ -83,6 +91,65 @@ import {
|
|
|
83
91
|
Target,
|
|
84
92
|
TargetLocation,
|
|
85
93
|
} from "./models_0";
|
|
94
|
+
export interface GetParametersByPathRequest {
|
|
95
|
+
Path: string | undefined;
|
|
96
|
+
Recursive?: boolean | undefined;
|
|
97
|
+
ParameterFilters?: ParameterStringFilter[] | undefined;
|
|
98
|
+
WithDecryption?: boolean | undefined;
|
|
99
|
+
MaxResults?: number | undefined;
|
|
100
|
+
NextToken?: string | undefined;
|
|
101
|
+
}
|
|
102
|
+
export interface GetParametersByPathResult {
|
|
103
|
+
Parameters?: Parameter[] | undefined;
|
|
104
|
+
NextToken?: string | undefined;
|
|
105
|
+
}
|
|
106
|
+
export interface GetPatchBaselineRequest {
|
|
107
|
+
BaselineId: string | undefined;
|
|
108
|
+
}
|
|
109
|
+
export interface GetPatchBaselineResult {
|
|
110
|
+
BaselineId?: string | undefined;
|
|
111
|
+
Name?: string | undefined;
|
|
112
|
+
OperatingSystem?: OperatingSystem | undefined;
|
|
113
|
+
GlobalFilters?: PatchFilterGroup | undefined;
|
|
114
|
+
ApprovalRules?: PatchRuleGroup | undefined;
|
|
115
|
+
ApprovedPatches?: string[] | undefined;
|
|
116
|
+
ApprovedPatchesComplianceLevel?: PatchComplianceLevel | undefined;
|
|
117
|
+
ApprovedPatchesEnableNonSecurity?: boolean | undefined;
|
|
118
|
+
RejectedPatches?: string[] | undefined;
|
|
119
|
+
RejectedPatchesAction?: PatchAction | undefined;
|
|
120
|
+
PatchGroups?: string[] | undefined;
|
|
121
|
+
CreatedDate?: Date | undefined;
|
|
122
|
+
ModifiedDate?: Date | undefined;
|
|
123
|
+
Description?: string | undefined;
|
|
124
|
+
Sources?: PatchSource[] | undefined;
|
|
125
|
+
AvailableSecurityUpdatesComplianceStatus?: PatchComplianceStatus | undefined;
|
|
126
|
+
}
|
|
127
|
+
export interface GetPatchBaselineForPatchGroupRequest {
|
|
128
|
+
PatchGroup: string | undefined;
|
|
129
|
+
OperatingSystem?: OperatingSystem | undefined;
|
|
130
|
+
}
|
|
131
|
+
export interface GetPatchBaselineForPatchGroupResult {
|
|
132
|
+
BaselineId?: string | undefined;
|
|
133
|
+
PatchGroup?: string | undefined;
|
|
134
|
+
OperatingSystem?: OperatingSystem | undefined;
|
|
135
|
+
}
|
|
136
|
+
export interface GetResourcePoliciesRequest {
|
|
137
|
+
ResourceArn: string | undefined;
|
|
138
|
+
NextToken?: string | undefined;
|
|
139
|
+
MaxResults?: number | undefined;
|
|
140
|
+
}
|
|
141
|
+
export interface GetResourcePoliciesResponseEntry {
|
|
142
|
+
PolicyId?: string | undefined;
|
|
143
|
+
PolicyHash?: string | undefined;
|
|
144
|
+
Policy?: string | undefined;
|
|
145
|
+
}
|
|
146
|
+
export interface GetResourcePoliciesResponse {
|
|
147
|
+
NextToken?: string | undefined;
|
|
148
|
+
Policies?: GetResourcePoliciesResponseEntry[] | undefined;
|
|
149
|
+
}
|
|
150
|
+
export interface GetServiceSettingRequest {
|
|
151
|
+
SettingId: string | undefined;
|
|
152
|
+
}
|
|
86
153
|
export interface ServiceSetting {
|
|
87
154
|
SettingId?: string | undefined;
|
|
88
155
|
SettingValue?: string | undefined;
|
|
@@ -163,6 +230,27 @@ export interface ListAssociationVersionsResult {
|
|
|
163
230
|
AssociationVersions?: AssociationVersionInfo[] | undefined;
|
|
164
231
|
NextToken?: string | undefined;
|
|
165
232
|
}
|
|
233
|
+
export interface CloudConnectorFilter {
|
|
234
|
+
FilterKey?: CloudConnectorFilterKey | undefined;
|
|
235
|
+
FilterValues?: string[] | undefined;
|
|
236
|
+
}
|
|
237
|
+
export interface ListCloudConnectorsRequest {
|
|
238
|
+
MaxResults?: number | undefined;
|
|
239
|
+
NextToken?: string | undefined;
|
|
240
|
+
Filters?: CloudConnectorFilter[] | undefined;
|
|
241
|
+
}
|
|
242
|
+
export interface CloudConnectorSummary {
|
|
243
|
+
CloudConnectorId?: string | undefined;
|
|
244
|
+
DisplayName?: string | undefined;
|
|
245
|
+
Description?: string | undefined;
|
|
246
|
+
RoleArn?: string | undefined;
|
|
247
|
+
CreatedAt?: Date | undefined;
|
|
248
|
+
UpdatedAt?: Date | undefined;
|
|
249
|
+
}
|
|
250
|
+
export interface ListCloudConnectorsResult {
|
|
251
|
+
CloudConnectors?: CloudConnectorSummary[] | undefined;
|
|
252
|
+
NextToken?: string | undefined;
|
|
253
|
+
}
|
|
166
254
|
export interface CommandFilter {
|
|
167
255
|
key: CommandFilterKey | undefined;
|
|
168
256
|
value: string | undefined;
|
|
@@ -429,10 +517,16 @@ export interface InstanceInfo {
|
|
|
429
517
|
InstanceStatus?: string | undefined;
|
|
430
518
|
IpAddress?: string | undefined;
|
|
431
519
|
ManagedStatus?: ManagedStatus | undefined;
|
|
520
|
+
Name?: string | undefined;
|
|
432
521
|
PlatformType?: PlatformType | undefined;
|
|
433
522
|
PlatformName?: string | undefined;
|
|
434
523
|
PlatformVersion?: string | undefined;
|
|
435
524
|
ResourceType?: ResourceType | undefined;
|
|
525
|
+
SourceType?: SourceType | undefined;
|
|
526
|
+
SourceId?: string | undefined;
|
|
527
|
+
SourceLocation?: string | undefined;
|
|
528
|
+
AvailabilityZone?: string | undefined;
|
|
529
|
+
AvailabilityZoneId?: string | undefined;
|
|
436
530
|
}
|
|
437
531
|
export type NodeType = NodeType.InstanceMember | NodeType.$UnknownMember;
|
|
438
532
|
export declare namespace NodeType {
|
|
@@ -909,6 +1003,15 @@ export interface UpdateAssociationStatusRequest {
|
|
|
909
1003
|
export interface UpdateAssociationStatusResult {
|
|
910
1004
|
AssociationDescription?: AssociationDescription | undefined;
|
|
911
1005
|
}
|
|
1006
|
+
export interface UpdateCloudConnectorRequest {
|
|
1007
|
+
CloudConnectorId: string | undefined;
|
|
1008
|
+
DisplayName?: string | undefined;
|
|
1009
|
+
Configuration?: CloudConnectorConfiguration | undefined;
|
|
1010
|
+
Description?: string | undefined;
|
|
1011
|
+
}
|
|
1012
|
+
export interface UpdateCloudConnectorResult {
|
|
1013
|
+
CloudConnectorId?: string | undefined;
|
|
1014
|
+
}
|
|
912
1015
|
export interface UpdateDocumentRequest {
|
|
913
1016
|
Content: string | undefined;
|
|
914
1017
|
Attachments?: AttachmentsSource[] | undefined;
|
|
@@ -1108,6 +1211,26 @@ export interface UpdateServiceSettingRequest {
|
|
|
1108
1211
|
SettingValue: string | undefined;
|
|
1109
1212
|
}
|
|
1110
1213
|
export interface UpdateServiceSettingResult {}
|
|
1214
|
+
export interface ValidateCloudConnectorRequest {
|
|
1215
|
+
CloudConnectorId: string | undefined;
|
|
1216
|
+
MaxResults?: number | undefined;
|
|
1217
|
+
NextToken?: string | undefined;
|
|
1218
|
+
}
|
|
1219
|
+
export interface ValidationFindingScope {
|
|
1220
|
+
Type?: ValidationFindingScopeType | undefined;
|
|
1221
|
+
Id?: string | undefined;
|
|
1222
|
+
}
|
|
1223
|
+
export interface ValidationFinding {
|
|
1224
|
+
Type?: ValidationFindingType | undefined;
|
|
1225
|
+
Code?: ValidationFindingCode | undefined;
|
|
1226
|
+
Message?: string | undefined;
|
|
1227
|
+
ProviderMessage?: string | undefined;
|
|
1228
|
+
Scope?: ValidationFindingScope | undefined;
|
|
1229
|
+
}
|
|
1230
|
+
export interface ValidateCloudConnectorResult {
|
|
1231
|
+
ValidationFindings?: ValidationFinding[] | undefined;
|
|
1232
|
+
NextToken?: string | undefined;
|
|
1233
|
+
}
|
|
1111
1234
|
export interface InventoryAggregator {
|
|
1112
1235
|
Expression?: string | undefined;
|
|
1113
1236
|
Aggregators?: InventoryAggregator[] | undefined;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListCloudConnectorsCommandInput,
|
|
4
|
+
ListCloudConnectorsCommandOutput,
|
|
5
|
+
} from "../commands/ListCloudConnectorsCommand";
|
|
6
|
+
import { SSMPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListCloudConnectors: (
|
|
8
|
+
config: SSMPaginationConfiguration,
|
|
9
|
+
input: ListCloudConnectorsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListCloudConnectorsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ValidateCloudConnectorCommandInput,
|
|
4
|
+
ValidateCloudConnectorCommandOutput,
|
|
5
|
+
} from "../commands/ValidateCloudConnectorCommand";
|
|
6
|
+
import { SSMPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateValidateCloudConnector: (
|
|
8
|
+
config: SSMPaginationConfiguration,
|
|
9
|
+
input: ValidateCloudConnectorCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ValidateCloudConnectorCommandOutput>;
|
|
@@ -36,6 +36,7 @@ export * from "./GetParametersByPathPaginator";
|
|
|
36
36
|
export * from "./GetResourcePoliciesPaginator";
|
|
37
37
|
export * from "./ListAssociationsPaginator";
|
|
38
38
|
export * from "./ListAssociationVersionsPaginator";
|
|
39
|
+
export * from "./ListCloudConnectorsPaginator";
|
|
39
40
|
export * from "./ListCommandInvocationsPaginator";
|
|
40
41
|
export * from "./ListCommandsPaginator";
|
|
41
42
|
export * from "./ListComplianceItemsPaginator";
|
|
@@ -49,3 +50,4 @@ export * from "./ListOpsItemRelatedItemsPaginator";
|
|
|
49
50
|
export * from "./ListOpsMetadataPaginator";
|
|
50
51
|
export * from "./ListResourceComplianceSummariesPaginator";
|
|
51
52
|
export * from "./ListResourceDataSyncPaginator";
|
|
53
|
+
export * from "./ValidateCloudConnectorPaginator";
|
|
@@ -21,6 +21,7 @@ export declare var AutomationExecutionLimitExceededException$: StaticErrorSchema
|
|
|
21
21
|
export declare var AutomationExecutionNotFoundException$: StaticErrorSchema;
|
|
22
22
|
export declare var AutomationStepNotFoundException$: StaticErrorSchema;
|
|
23
23
|
export declare var ComplianceTypeCountLimitExceededException$: StaticErrorSchema;
|
|
24
|
+
export declare var ConflictException$: StaticErrorSchema;
|
|
24
25
|
export declare var CustomSchemaCountLimitExceededException$: StaticErrorSchema;
|
|
25
26
|
export declare var DocumentAlreadyExists$: StaticErrorSchema;
|
|
26
27
|
export declare var DocumentLimitExceeded$: StaticErrorSchema;
|
|
@@ -173,11 +174,15 @@ export declare var AutomationExecutionFilter$: StaticStructureSchema;
|
|
|
173
174
|
export declare var AutomationExecutionInputs$: StaticStructureSchema;
|
|
174
175
|
export declare var AutomationExecutionMetadata$: StaticStructureSchema;
|
|
175
176
|
export declare var AutomationExecutionPreview$: StaticStructureSchema;
|
|
177
|
+
export declare var AzureConfiguration$: StaticStructureSchema;
|
|
178
|
+
export declare var AzureSubscription$: StaticStructureSchema;
|
|
176
179
|
export declare var BaselineOverride$: StaticStructureSchema;
|
|
177
180
|
export declare var CancelCommandRequest$: StaticStructureSchema;
|
|
178
181
|
export declare var CancelCommandResult$: StaticStructureSchema;
|
|
179
182
|
export declare var CancelMaintenanceWindowExecutionRequest$: StaticStructureSchema;
|
|
180
183
|
export declare var CancelMaintenanceWindowExecutionResult$: StaticStructureSchema;
|
|
184
|
+
export declare var CloudConnectorFilter$: StaticStructureSchema;
|
|
185
|
+
export declare var CloudConnectorSummary$: StaticStructureSchema;
|
|
181
186
|
export declare var CloudWatchOutputConfig$: StaticStructureSchema;
|
|
182
187
|
export declare var Command$: StaticStructureSchema;
|
|
183
188
|
export declare var CommandFilter$: StaticStructureSchema;
|
|
@@ -196,6 +201,8 @@ export declare var CreateAssociationBatchRequestEntry$: StaticStructureSchema;
|
|
|
196
201
|
export declare var CreateAssociationBatchResult$: StaticStructureSchema;
|
|
197
202
|
export declare var CreateAssociationRequest$: StaticStructureSchema;
|
|
198
203
|
export declare var CreateAssociationResult$: StaticStructureSchema;
|
|
204
|
+
export declare var CreateCloudConnectorRequest$: StaticStructureSchema;
|
|
205
|
+
export declare var CreateCloudConnectorResult$: StaticStructureSchema;
|
|
199
206
|
export declare var CreateDocumentRequest$: StaticStructureSchema;
|
|
200
207
|
export declare var CreateDocumentResult$: StaticStructureSchema;
|
|
201
208
|
export declare var CreateMaintenanceWindowRequest$: StaticStructureSchema;
|
|
@@ -213,6 +220,8 @@ export declare var DeleteActivationRequest$: StaticStructureSchema;
|
|
|
213
220
|
export declare var DeleteActivationResult$: StaticStructureSchema;
|
|
214
221
|
export declare var DeleteAssociationRequest$: StaticStructureSchema;
|
|
215
222
|
export declare var DeleteAssociationResult$: StaticStructureSchema;
|
|
223
|
+
export declare var DeleteCloudConnectorRequest$: StaticStructureSchema;
|
|
224
|
+
export declare var DeleteCloudConnectorResult$: StaticStructureSchema;
|
|
216
225
|
export declare var DeleteDocumentRequest$: StaticStructureSchema;
|
|
217
226
|
export declare var DeleteDocumentResult$: StaticStructureSchema;
|
|
218
227
|
export declare var DeleteInventoryRequest$: StaticStructureSchema;
|
|
@@ -331,6 +340,8 @@ export declare var GetAutomationExecutionRequest$: StaticStructureSchema;
|
|
|
331
340
|
export declare var GetAutomationExecutionResult$: StaticStructureSchema;
|
|
332
341
|
export declare var GetCalendarStateRequest$: StaticStructureSchema;
|
|
333
342
|
export declare var GetCalendarStateResponse$: StaticStructureSchema;
|
|
343
|
+
export declare var GetCloudConnectorRequest$: StaticStructureSchema;
|
|
344
|
+
export declare var GetCloudConnectorResult$: StaticStructureSchema;
|
|
334
345
|
export declare var GetCommandInvocationRequest$: StaticStructureSchema;
|
|
335
346
|
export declare var GetCommandInvocationResult$: StaticStructureSchema;
|
|
336
347
|
export declare var GetConnectionStatusRequest$: StaticStructureSchema;
|
|
@@ -411,6 +422,8 @@ export declare var ListAssociationsRequest$: StaticStructureSchema;
|
|
|
411
422
|
export declare var ListAssociationsResult$: StaticStructureSchema;
|
|
412
423
|
export declare var ListAssociationVersionsRequest$: StaticStructureSchema;
|
|
413
424
|
export declare var ListAssociationVersionsResult$: StaticStructureSchema;
|
|
425
|
+
export declare var ListCloudConnectorsRequest$: StaticStructureSchema;
|
|
426
|
+
export declare var ListCloudConnectorsResult$: StaticStructureSchema;
|
|
414
427
|
export declare var ListCommandInvocationsRequest$: StaticStructureSchema;
|
|
415
428
|
export declare var ListCommandInvocationsResult$: StaticStructureSchema;
|
|
416
429
|
export declare var ListCommandsRequest$: StaticStructureSchema;
|
|
@@ -580,6 +593,8 @@ export declare var UpdateAssociationRequest$: StaticStructureSchema;
|
|
|
580
593
|
export declare var UpdateAssociationResult$: StaticStructureSchema;
|
|
581
594
|
export declare var UpdateAssociationStatusRequest$: StaticStructureSchema;
|
|
582
595
|
export declare var UpdateAssociationStatusResult$: StaticStructureSchema;
|
|
596
|
+
export declare var UpdateCloudConnectorRequest$: StaticStructureSchema;
|
|
597
|
+
export declare var UpdateCloudConnectorResult$: StaticStructureSchema;
|
|
583
598
|
export declare var UpdateDocumentDefaultVersionRequest$: StaticStructureSchema;
|
|
584
599
|
export declare var UpdateDocumentDefaultVersionResult$: StaticStructureSchema;
|
|
585
600
|
export declare var UpdateDocumentMetadataRequest$: StaticStructureSchema;
|
|
@@ -604,6 +619,12 @@ export declare var UpdateResourceDataSyncRequest$: StaticStructureSchema;
|
|
|
604
619
|
export declare var UpdateResourceDataSyncResult$: StaticStructureSchema;
|
|
605
620
|
export declare var UpdateServiceSettingRequest$: StaticStructureSchema;
|
|
606
621
|
export declare var UpdateServiceSettingResult$: StaticStructureSchema;
|
|
622
|
+
export declare var ValidateCloudConnectorRequest$: StaticStructureSchema;
|
|
623
|
+
export declare var ValidateCloudConnectorResult$: StaticStructureSchema;
|
|
624
|
+
export declare var ValidationFinding$: StaticStructureSchema;
|
|
625
|
+
export declare var ValidationFindingScope$: StaticStructureSchema;
|
|
626
|
+
export declare var CloudConnectorConfiguration$: StaticUnionSchema;
|
|
627
|
+
export declare var ConfigurationTargets$: StaticUnionSchema;
|
|
607
628
|
export declare var ExecutionInputs$: StaticUnionSchema;
|
|
608
629
|
export declare var ExecutionPreview$: StaticUnionSchema;
|
|
609
630
|
export declare var NodeType$: StaticUnionSchema;
|
|
@@ -614,6 +635,7 @@ export declare var CancelMaintenanceWindowExecution$: StaticOperationSchema;
|
|
|
614
635
|
export declare var CreateActivation$: StaticOperationSchema;
|
|
615
636
|
export declare var CreateAssociation$: StaticOperationSchema;
|
|
616
637
|
export declare var CreateAssociationBatch$: StaticOperationSchema;
|
|
638
|
+
export declare var CreateCloudConnector$: StaticOperationSchema;
|
|
617
639
|
export declare var CreateDocument$: StaticOperationSchema;
|
|
618
640
|
export declare var CreateMaintenanceWindow$: StaticOperationSchema;
|
|
619
641
|
export declare var CreateOpsItem$: StaticOperationSchema;
|
|
@@ -622,6 +644,7 @@ export declare var CreatePatchBaseline$: StaticOperationSchema;
|
|
|
622
644
|
export declare var CreateResourceDataSync$: StaticOperationSchema;
|
|
623
645
|
export declare var DeleteActivation$: StaticOperationSchema;
|
|
624
646
|
export declare var DeleteAssociation$: StaticOperationSchema;
|
|
647
|
+
export declare var DeleteCloudConnector$: StaticOperationSchema;
|
|
625
648
|
export declare var DeleteDocument$: StaticOperationSchema;
|
|
626
649
|
export declare var DeleteInventory$: StaticOperationSchema;
|
|
627
650
|
export declare var DeleteMaintenanceWindow$: StaticOperationSchema;
|
|
@@ -673,6 +696,7 @@ export declare var DisassociateOpsItemRelatedItem$: StaticOperationSchema;
|
|
|
673
696
|
export declare var GetAccessToken$: StaticOperationSchema;
|
|
674
697
|
export declare var GetAutomationExecution$: StaticOperationSchema;
|
|
675
698
|
export declare var GetCalendarState$: StaticOperationSchema;
|
|
699
|
+
export declare var GetCloudConnector$: StaticOperationSchema;
|
|
676
700
|
export declare var GetCommandInvocation$: StaticOperationSchema;
|
|
677
701
|
export declare var GetConnectionStatus$: StaticOperationSchema;
|
|
678
702
|
export declare var GetDefaultPatchBaseline$: StaticOperationSchema;
|
|
@@ -700,6 +724,7 @@ export declare var GetServiceSetting$: StaticOperationSchema;
|
|
|
700
724
|
export declare var LabelParameterVersion$: StaticOperationSchema;
|
|
701
725
|
export declare var ListAssociations$: StaticOperationSchema;
|
|
702
726
|
export declare var ListAssociationVersions$: StaticOperationSchema;
|
|
727
|
+
export declare var ListCloudConnectors$: StaticOperationSchema;
|
|
703
728
|
export declare var ListCommandInvocations$: StaticOperationSchema;
|
|
704
729
|
export declare var ListCommands$: StaticOperationSchema;
|
|
705
730
|
export declare var ListComplianceItems$: StaticOperationSchema;
|
|
@@ -741,6 +766,7 @@ export declare var TerminateSession$: StaticOperationSchema;
|
|
|
741
766
|
export declare var UnlabelParameterVersion$: StaticOperationSchema;
|
|
742
767
|
export declare var UpdateAssociation$: StaticOperationSchema;
|
|
743
768
|
export declare var UpdateAssociationStatus$: StaticOperationSchema;
|
|
769
|
+
export declare var UpdateCloudConnector$: StaticOperationSchema;
|
|
744
770
|
export declare var UpdateDocument$: StaticOperationSchema;
|
|
745
771
|
export declare var UpdateDocumentDefaultVersion$: StaticOperationSchema;
|
|
746
772
|
export declare var UpdateDocumentMetadata$: StaticOperationSchema;
|
|
@@ -753,3 +779,4 @@ export declare var UpdateOpsMetadata$: StaticOperationSchema;
|
|
|
753
779
|
export declare var UpdatePatchBaseline$: StaticOperationSchema;
|
|
754
780
|
export declare var UpdateResourceDataSync$: StaticOperationSchema;
|
|
755
781
|
export declare var UpdateServiceSetting$: StaticOperationSchema;
|
|
782
|
+
export declare var ValidateCloudConnector$: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ssm",
|
|
3
3
|
"description": "AWS SDK for JavaScript Ssm Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1082.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline",
|
|
@@ -21,13 +21,13 @@
|
|
|
21
21
|
"module": "./dist-es/index.js",
|
|
22
22
|
"sideEffects": false,
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@aws-sdk/core": "^3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
26
|
-
"@aws-sdk/types": "^3.
|
|
27
|
-
"@smithy/core": "^3.29.
|
|
28
|
-
"@smithy/fetch-http-handler": "^5.6.
|
|
29
|
-
"@smithy/node-http-handler": "^4.9.
|
|
30
|
-
"@smithy/types": "^4.
|
|
24
|
+
"@aws-sdk/core": "^3.975.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.65",
|
|
26
|
+
"@aws-sdk/types": "^3.974.0",
|
|
27
|
+
"@smithy/core": "^3.29.2",
|
|
28
|
+
"@smithy/fetch-http-handler": "^5.6.4",
|
|
29
|
+
"@smithy/node-http-handler": "^4.9.4",
|
|
30
|
+
"@smithy/types": "^4.16.0",
|
|
31
31
|
"tslib": "^2.6.2"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|