@aws-sdk/client-ssm 3.554.0 → 3.562.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 +8 -0
- package/dist-cjs/index.js +213 -73
- package/dist-es/SSM.js +2 -0
- package/dist-es/commands/DescribeInstancePropertiesCommand.js +24 -0
- package/dist-es/commands/DescribeMaintenanceWindowTargetsCommand.js +1 -1
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/models_0.js +30 -9
- package/dist-es/models/models_1.js +9 -43
- package/dist-es/models/models_2.js +43 -0
- package/dist-es/pagination/DescribeInstancePropertiesPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_json1_1.js +78 -3
- package/dist-types/SSM.d.ts +8 -0
- package/dist-types/SSMClient.d.ts +3 -2
- package/dist-types/commands/DescribeInstancePropertiesCommand.d.ts +151 -0
- package/dist-types/commands/DescribeMaintenanceWindowScheduleCommand.d.ts +2 -1
- package/dist-types/commands/DescribeMaintenanceWindowTargetsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeMaintenanceWindowTasksCommand.d.ts +1 -2
- package/dist-types/commands/DescribeMaintenanceWindowsForTargetCommand.d.ts +1 -1
- package/dist-types/commands/StartChangeRequestExecutionCommand.d.ts +1 -1
- package/dist-types/commands/StartSessionCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +334 -243
- package/dist-types/models/models_1.d.ts +219 -234
- package/dist-types/models/models_2.d.ts +246 -8
- package/dist-types/pagination/DescribeInstancePropertiesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +9 -0
- package/dist-types/ts3.4/SSM.d.ts +18 -0
- package/dist-types/ts3.4/SSMClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/DescribeInstancePropertiesCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DescribeMaintenanceWindowScheduleCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeMaintenanceWindowTargetsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeMaintenanceWindowTasksCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/DescribeMaintenanceWindowsForTargetCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartChangeRequestExecutionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartSessionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +79 -49
- package/dist-types/ts3.4/models/models_1.d.ts +51 -60
- package/dist-types/ts3.4/models/models_2.d.ts +62 -1
- package/dist-types/ts3.4/pagination/DescribeInstancePropertiesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +12 -0
- package/package.json +4 -4
|
@@ -2,6 +2,49 @@ import { SENSITIVE_STRING } from "@smithy/smithy-client";
|
|
|
2
2
|
import { AssociationDescriptionFilterSensitiveLog, PatchSourceFilterSensitiveLog, } from "./models_0";
|
|
3
3
|
import { MaintenanceWindowTaskInvocationParametersFilterSensitiveLog, } from "./models_1";
|
|
4
4
|
import { SSMServiceException as __BaseException } from "./SSMServiceException";
|
|
5
|
+
export class AutomationDefinitionNotApprovedException extends __BaseException {
|
|
6
|
+
constructor(opts) {
|
|
7
|
+
super({
|
|
8
|
+
name: "AutomationDefinitionNotApprovedException",
|
|
9
|
+
$fault: "client",
|
|
10
|
+
...opts,
|
|
11
|
+
});
|
|
12
|
+
this.name = "AutomationDefinitionNotApprovedException";
|
|
13
|
+
this.$fault = "client";
|
|
14
|
+
Object.setPrototypeOf(this, AutomationDefinitionNotApprovedException.prototype);
|
|
15
|
+
this.Message = opts.Message;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
export class TargetNotConnected extends __BaseException {
|
|
19
|
+
constructor(opts) {
|
|
20
|
+
super({
|
|
21
|
+
name: "TargetNotConnected",
|
|
22
|
+
$fault: "client",
|
|
23
|
+
...opts,
|
|
24
|
+
});
|
|
25
|
+
this.name = "TargetNotConnected";
|
|
26
|
+
this.$fault = "client";
|
|
27
|
+
Object.setPrototypeOf(this, TargetNotConnected.prototype);
|
|
28
|
+
this.Message = opts.Message;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
export class InvalidAutomationStatusUpdateException extends __BaseException {
|
|
32
|
+
constructor(opts) {
|
|
33
|
+
super({
|
|
34
|
+
name: "InvalidAutomationStatusUpdateException",
|
|
35
|
+
$fault: "client",
|
|
36
|
+
...opts,
|
|
37
|
+
});
|
|
38
|
+
this.name = "InvalidAutomationStatusUpdateException";
|
|
39
|
+
this.$fault = "client";
|
|
40
|
+
Object.setPrototypeOf(this, InvalidAutomationStatusUpdateException.prototype);
|
|
41
|
+
this.Message = opts.Message;
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
export const StopType = {
|
|
45
|
+
CANCEL: "Cancel",
|
|
46
|
+
COMPLETE: "Complete",
|
|
47
|
+
};
|
|
5
48
|
export class AssociationVersionLimitExceeded extends __BaseException {
|
|
6
49
|
constructor(opts) {
|
|
7
50
|
super({
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { DescribeInstancePropertiesCommand, } from "../commands/DescribeInstancePropertiesCommand";
|
|
3
|
+
import { SSMClient } from "../SSMClient";
|
|
4
|
+
export const paginateDescribeInstanceProperties = createPaginator(SSMClient, DescribeInstancePropertiesCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -12,6 +12,7 @@ export * from "./Interfaces";
|
|
|
12
12
|
export * from "./DescribeInstancePatchStatesForPatchGroupPaginator";
|
|
13
13
|
export * from "./DescribeInstancePatchStatesPaginator";
|
|
14
14
|
export * from "./DescribeInstancePatchesPaginator";
|
|
15
|
+
export * from "./DescribeInstancePropertiesPaginator";
|
|
15
16
|
export * from "./DescribeInventoryDeletionsPaginator";
|
|
16
17
|
export * from "./DescribeMaintenanceWindowExecutionTaskInvocationsPaginator";
|
|
17
18
|
export * from "./DescribeMaintenanceWindowExecutionTasksPaginator";
|
|
@@ -2,9 +2,9 @@ import { loadRestJsonErrorCode, parseJsonBody as parseBody, parseJsonErrorBody a
|
|
|
2
2
|
import { HttpRequest as __HttpRequest } from "@smithy/protocol-http";
|
|
3
3
|
import { _json, collectBody, decorateServiceException as __decorateServiceException, expectBoolean as __expectBoolean, expectInt32 as __expectInt32, expectLong as __expectLong, expectNonNull as __expectNonNull, expectNumber as __expectNumber, expectString as __expectString, parseEpochTimestamp as __parseEpochTimestamp, take, withBaseException, } from "@smithy/smithy-client";
|
|
4
4
|
import { v4 as generateIdempotencyToken } from "uuid";
|
|
5
|
-
import { AlreadyExistsException, AssociatedInstances, AssociationAlreadyExists, AssociationDoesNotExist, AssociationExecutionDoesNotExist, AssociationLimitExceeded, AutomationExecutionNotFoundException, DocumentAlreadyExists, DocumentLimitExceeded, DoesNotExistException, DuplicateInstanceId, IdempotentParameterMismatch, InternalServerError, InvalidActivation, InvalidActivationId, InvalidAssociationVersion, InvalidCommandId, InvalidDeleteInventoryParametersException, InvalidDeletionIdException, InvalidDocument, InvalidDocumentContent, InvalidDocumentOperation, InvalidDocumentSchemaVersion, InvalidDocumentVersion, InvalidFilter, InvalidFilterKey, InvalidFilterValue, InvalidInstanceId, InvalidInstanceInformationFilterValue, InvalidInventoryRequestException, InvalidNextToken, InvalidOptionException, InvalidOutputLocation, InvalidParameters, InvalidPermissionType, InvalidResourceId, InvalidResourceType, InvalidSchedule, InvalidTag, InvalidTarget, InvalidTargetMaps, InvalidTypeNameException, MalformedResourcePolicyDocumentException, MaxDocumentSizeExceeded, OpsItemAccessDeniedException, OpsItemAlreadyExistsException, OpsItemConflictException, OpsItemInvalidParameterException, OpsItemLimitExceededException, OpsItemNotFoundException, OpsItemRelatedItemAlreadyExistsException, OpsMetadataAlreadyExistsException, OpsMetadataInvalidArgumentException, OpsMetadataLimitExceededException, OpsMetadataNotFoundException, OpsMetadataTooManyUpdatesException, ParameterNotFound, ResourceDataSyncAlreadyExistsException, ResourceDataSyncCountExceededException, ResourceDataSyncInvalidConfigurationException, ResourceDataSyncNotFoundException, ResourceInUseException, ResourceLimitExceededException, ResourceNotFoundException, ResourcePolicyConflictException, ResourcePolicyInvalidParameterException, ResourcePolicyNotFoundException, TargetInUseException, TooManyTagsError, TooManyUpdates, UnsupportedOperatingSystem, UnsupportedPlatformType, } from "../models/models_0";
|
|
6
|
-
import {
|
|
7
|
-
import { AssociationVersionLimitExceeded, DocumentVersionLimitExceeded, DuplicateDocumentContent, DuplicateDocumentVersionName, InvalidUpdate, OpsMetadataKeyLimitExceededException, ResourceDataSyncConflictException, StatusUnchanged, } from "../models/models_2";
|
|
5
|
+
import { AlreadyExistsException, AssociatedInstances, AssociationAlreadyExists, AssociationDoesNotExist, AssociationExecutionDoesNotExist, AssociationLimitExceeded, AutomationExecutionNotFoundException, DocumentAlreadyExists, DocumentLimitExceeded, DoesNotExistException, DuplicateInstanceId, IdempotentParameterMismatch, InternalServerError, InvalidActivation, InvalidActivationId, InvalidAssociationVersion, InvalidCommandId, InvalidDeleteInventoryParametersException, InvalidDeletionIdException, InvalidDocument, InvalidDocumentContent, InvalidDocumentOperation, InvalidDocumentSchemaVersion, InvalidDocumentVersion, InvalidFilter, InvalidFilterKey, InvalidFilterValue, InvalidInstanceId, InvalidInstanceInformationFilterValue, InvalidInstancePropertyFilterValue, InvalidInventoryRequestException, InvalidNextToken, InvalidOptionException, InvalidOutputLocation, InvalidParameters, InvalidPermissionType, InvalidResourceId, InvalidResourceType, InvalidSchedule, InvalidTag, InvalidTarget, InvalidTargetMaps, InvalidTypeNameException, MalformedResourcePolicyDocumentException, MaxDocumentSizeExceeded, OpsItemAccessDeniedException, OpsItemAlreadyExistsException, OpsItemConflictException, OpsItemInvalidParameterException, OpsItemLimitExceededException, OpsItemNotFoundException, OpsItemRelatedItemAlreadyExistsException, OpsMetadataAlreadyExistsException, OpsMetadataInvalidArgumentException, OpsMetadataLimitExceededException, OpsMetadataNotFoundException, OpsMetadataTooManyUpdatesException, ParameterNotFound, ResourceDataSyncAlreadyExistsException, ResourceDataSyncCountExceededException, ResourceDataSyncInvalidConfigurationException, ResourceDataSyncNotFoundException, ResourceInUseException, ResourceLimitExceededException, ResourceNotFoundException, ResourcePolicyConflictException, ResourcePolicyInvalidParameterException, ResourcePolicyNotFoundException, TargetInUseException, TooManyTagsError, TooManyUpdates, UnsupportedOperatingSystem, UnsupportedPlatformType, } from "../models/models_0";
|
|
6
|
+
import { AutomationDefinitionNotFoundException, AutomationDefinitionVersionNotFoundException, AutomationExecutionLimitExceededException, AutomationStepNotFoundException, ComplianceTypeCountLimitExceededException, CustomSchemaCountLimitExceededException, DocumentPermissionLimit, FeatureNotAvailableException, HierarchyLevelLimitExceededException, HierarchyTypeMismatchException, IncompatiblePolicyException, InvalidAggregatorException, InvalidAllowedPatternException, InvalidAssociation, InvalidAutomationExecutionParametersException, InvalidAutomationSignalException, InvalidDocumentType, InvalidFilterOption, InvalidInventoryGroupException, InvalidInventoryItemContextException, InvalidItemContentException, InvalidKeyId, InvalidNotificationConfig, InvalidOutputFolder, InvalidPluginName, InvalidPolicyAttributeException, InvalidPolicyTypeException, InvalidResultAttributeException, InvalidRole, InvocationDoesNotExist, ItemContentMismatchException, ItemSizeLimitExceededException, OpsItemRelatedItemAssociationNotFoundException, ParameterAlreadyExists, ParameterLimitExceeded, ParameterMaxVersionLimitExceeded, ParameterPatternMismatchException, ParameterVersionLabelLimitExceeded, ParameterVersionNotFound, PoliciesLimitExceededException, ResourcePolicyLimitExceededException, ServiceSettingNotFound, SubTypeCountLimitExceededException, TotalSizeLimitExceededException, UnsupportedCalendarException, UnsupportedFeatureRequiredException, UnsupportedInventoryItemContextException, UnsupportedInventorySchemaVersionException, UnsupportedParameterType, } from "../models/models_1";
|
|
7
|
+
import { AssociationVersionLimitExceeded, AutomationDefinitionNotApprovedException, DocumentVersionLimitExceeded, DuplicateDocumentContent, DuplicateDocumentVersionName, InvalidAutomationStatusUpdateException, InvalidUpdate, OpsMetadataKeyLimitExceededException, ResourceDataSyncConflictException, StatusUnchanged, TargetNotConnected, } from "../models/models_2";
|
|
8
8
|
import { SSMServiceException as __BaseException } from "../models/SSMServiceException";
|
|
9
9
|
export const se_AddTagsToResourceCommand = async (input, context) => {
|
|
10
10
|
const headers = sharedHeaders("AddTagsToResource");
|
|
@@ -276,6 +276,12 @@ export const se_DescribeInstancePatchStatesForPatchGroupCommand = async (input,
|
|
|
276
276
|
body = JSON.stringify(_json(input));
|
|
277
277
|
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
278
278
|
};
|
|
279
|
+
export const se_DescribeInstancePropertiesCommand = async (input, context) => {
|
|
280
|
+
const headers = sharedHeaders("DescribeInstanceProperties");
|
|
281
|
+
let body;
|
|
282
|
+
body = JSON.stringify(_json(input));
|
|
283
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
284
|
+
};
|
|
279
285
|
export const se_DescribeInventoryDeletionsCommand = async (input, context) => {
|
|
280
286
|
const headers = sharedHeaders("DescribeInventoryDeletions");
|
|
281
287
|
let body;
|
|
@@ -1425,6 +1431,19 @@ export const de_DescribeInstancePatchStatesForPatchGroupCommand = async (output,
|
|
|
1425
1431
|
};
|
|
1426
1432
|
return response;
|
|
1427
1433
|
};
|
|
1434
|
+
export const de_DescribeInstancePropertiesCommand = async (output, context) => {
|
|
1435
|
+
if (output.statusCode >= 300) {
|
|
1436
|
+
return de_CommandError(output, context);
|
|
1437
|
+
}
|
|
1438
|
+
const data = await parseBody(output.body, context);
|
|
1439
|
+
let contents = {};
|
|
1440
|
+
contents = de_DescribeInstancePropertiesResult(data, context);
|
|
1441
|
+
const response = {
|
|
1442
|
+
$metadata: deserializeMetadata(output),
|
|
1443
|
+
...contents,
|
|
1444
|
+
};
|
|
1445
|
+
return response;
|
|
1446
|
+
};
|
|
1428
1447
|
export const de_DescribeInventoryDeletionsCommand = async (output, context) => {
|
|
1429
1448
|
if (output.statusCode >= 300) {
|
|
1430
1449
|
return de_CommandError(output, context);
|
|
@@ -2864,6 +2883,9 @@ const de_CommandError = async (output, context) => {
|
|
|
2864
2883
|
case "InvalidInstanceInformationFilterValue":
|
|
2865
2884
|
case "com.amazonaws.ssm#InvalidInstanceInformationFilterValue":
|
|
2866
2885
|
throw await de_InvalidInstanceInformationFilterValueRes(parsedOutput, context);
|
|
2886
|
+
case "InvalidInstancePropertyFilterValue":
|
|
2887
|
+
case "com.amazonaws.ssm#InvalidInstancePropertyFilterValue":
|
|
2888
|
+
throw await de_InvalidInstancePropertyFilterValueRes(parsedOutput, context);
|
|
2867
2889
|
case "InvalidDeletionIdException":
|
|
2868
2890
|
case "com.amazonaws.ssm#InvalidDeletionIdException":
|
|
2869
2891
|
throw await de_InvalidDeletionIdExceptionRes(parsedOutput, context);
|
|
@@ -3536,6 +3558,15 @@ const de_InvalidInstanceInformationFilterValueRes = async (parsedOutput, context
|
|
|
3536
3558
|
});
|
|
3537
3559
|
return __decorateServiceException(exception, body);
|
|
3538
3560
|
};
|
|
3561
|
+
const de_InvalidInstancePropertyFilterValueRes = async (parsedOutput, context) => {
|
|
3562
|
+
const body = parsedOutput.body;
|
|
3563
|
+
const deserialized = _json(body);
|
|
3564
|
+
const exception = new InvalidInstancePropertyFilterValue({
|
|
3565
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
3566
|
+
...deserialized,
|
|
3567
|
+
});
|
|
3568
|
+
return __decorateServiceException(exception, body);
|
|
3569
|
+
};
|
|
3539
3570
|
const de_InvalidInventoryGroupExceptionRes = async (parsedOutput, context) => {
|
|
3540
3571
|
const body = parsedOutput.body;
|
|
3541
3572
|
const deserialized = _json(body);
|
|
@@ -4970,6 +5001,12 @@ const de_DescribeInstancePatchStatesResult = (output, context) => {
|
|
|
4970
5001
|
NextToken: __expectString,
|
|
4971
5002
|
});
|
|
4972
5003
|
};
|
|
5004
|
+
const de_DescribeInstancePropertiesResult = (output, context) => {
|
|
5005
|
+
return take(output, {
|
|
5006
|
+
InstanceProperties: (_) => de_InstanceProperties(_, context),
|
|
5007
|
+
NextToken: __expectString,
|
|
5008
|
+
});
|
|
5009
|
+
};
|
|
4973
5010
|
const de_DescribeInventoryDeletionsResult = (output, context) => {
|
|
4974
5011
|
return take(output, {
|
|
4975
5012
|
InventoryDeletions: (_) => de_InventoryDeletionsList(_, context),
|
|
@@ -5388,6 +5425,44 @@ const de_InstancePatchStatesList = (output, context) => {
|
|
|
5388
5425
|
});
|
|
5389
5426
|
return retVal;
|
|
5390
5427
|
};
|
|
5428
|
+
const de_InstanceProperties = (output, context) => {
|
|
5429
|
+
const retVal = (output || [])
|
|
5430
|
+
.filter((e) => e != null)
|
|
5431
|
+
.map((entry) => {
|
|
5432
|
+
return de_InstanceProperty(entry, context);
|
|
5433
|
+
});
|
|
5434
|
+
return retVal;
|
|
5435
|
+
};
|
|
5436
|
+
const de_InstanceProperty = (output, context) => {
|
|
5437
|
+
return take(output, {
|
|
5438
|
+
ActivationId: __expectString,
|
|
5439
|
+
AgentVersion: __expectString,
|
|
5440
|
+
Architecture: __expectString,
|
|
5441
|
+
AssociationOverview: _json,
|
|
5442
|
+
AssociationStatus: __expectString,
|
|
5443
|
+
ComputerName: __expectString,
|
|
5444
|
+
IPAddress: __expectString,
|
|
5445
|
+
IamRole: __expectString,
|
|
5446
|
+
InstanceId: __expectString,
|
|
5447
|
+
InstanceRole: __expectString,
|
|
5448
|
+
InstanceState: __expectString,
|
|
5449
|
+
InstanceType: __expectString,
|
|
5450
|
+
KeyName: __expectString,
|
|
5451
|
+
LastAssociationExecutionDate: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
5452
|
+
LastPingDateTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
5453
|
+
LastSuccessfulAssociationExecutionDate: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
5454
|
+
LaunchTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
5455
|
+
Name: __expectString,
|
|
5456
|
+
PingStatus: __expectString,
|
|
5457
|
+
PlatformName: __expectString,
|
|
5458
|
+
PlatformType: __expectString,
|
|
5459
|
+
PlatformVersion: __expectString,
|
|
5460
|
+
RegistrationDate: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
5461
|
+
ResourceType: __expectString,
|
|
5462
|
+
SourceId: __expectString,
|
|
5463
|
+
SourceType: __expectString,
|
|
5464
|
+
});
|
|
5465
|
+
};
|
|
5391
5466
|
const de_InventoryDeletionsList = (output, context) => {
|
|
5392
5467
|
const retVal = (output || [])
|
|
5393
5468
|
.filter((e) => e != null)
|
package/dist-types/SSM.d.ts
CHANGED
|
@@ -44,6 +44,7 @@ import { DescribeInstanceInformationCommandInput, DescribeInstanceInformationCom
|
|
|
44
44
|
import { DescribeInstancePatchesCommandInput, DescribeInstancePatchesCommandOutput } from "./commands/DescribeInstancePatchesCommand";
|
|
45
45
|
import { DescribeInstancePatchStatesCommandInput, DescribeInstancePatchStatesCommandOutput } from "./commands/DescribeInstancePatchStatesCommand";
|
|
46
46
|
import { DescribeInstancePatchStatesForPatchGroupCommandInput, DescribeInstancePatchStatesForPatchGroupCommandOutput } from "./commands/DescribeInstancePatchStatesForPatchGroupCommand";
|
|
47
|
+
import { DescribeInstancePropertiesCommandInput, DescribeInstancePropertiesCommandOutput } from "./commands/DescribeInstancePropertiesCommand";
|
|
47
48
|
import { DescribeInventoryDeletionsCommandInput, DescribeInventoryDeletionsCommandOutput } from "./commands/DescribeInventoryDeletionsCommand";
|
|
48
49
|
import { DescribeMaintenanceWindowExecutionsCommandInput, DescribeMaintenanceWindowExecutionsCommandOutput } from "./commands/DescribeMaintenanceWindowExecutionsCommand";
|
|
49
50
|
import { DescribeMaintenanceWindowExecutionTaskInvocationsCommandInput, DescribeMaintenanceWindowExecutionTaskInvocationsCommandOutput } from "./commands/DescribeMaintenanceWindowExecutionTaskInvocationsCommand";
|
|
@@ -416,6 +417,13 @@ export interface SSM {
|
|
|
416
417
|
describeInstancePatchStatesForPatchGroup(args: DescribeInstancePatchStatesForPatchGroupCommandInput, options?: __HttpHandlerOptions): Promise<DescribeInstancePatchStatesForPatchGroupCommandOutput>;
|
|
417
418
|
describeInstancePatchStatesForPatchGroup(args: DescribeInstancePatchStatesForPatchGroupCommandInput, cb: (err: any, data?: DescribeInstancePatchStatesForPatchGroupCommandOutput) => void): void;
|
|
418
419
|
describeInstancePatchStatesForPatchGroup(args: DescribeInstancePatchStatesForPatchGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeInstancePatchStatesForPatchGroupCommandOutput) => void): void;
|
|
420
|
+
/**
|
|
421
|
+
* @see {@link DescribeInstancePropertiesCommand}
|
|
422
|
+
*/
|
|
423
|
+
describeInstanceProperties(): Promise<DescribeInstancePropertiesCommandOutput>;
|
|
424
|
+
describeInstanceProperties(args: DescribeInstancePropertiesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeInstancePropertiesCommandOutput>;
|
|
425
|
+
describeInstanceProperties(args: DescribeInstancePropertiesCommandInput, cb: (err: any, data?: DescribeInstancePropertiesCommandOutput) => void): void;
|
|
426
|
+
describeInstanceProperties(args: DescribeInstancePropertiesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeInstancePropertiesCommandOutput) => void): void;
|
|
419
427
|
/**
|
|
420
428
|
* @see {@link DescribeInventoryDeletionsCommand}
|
|
421
429
|
*/
|
|
@@ -52,6 +52,7 @@ import { DescribeInstanceInformationCommandInput, DescribeInstanceInformationCom
|
|
|
52
52
|
import { DescribeInstancePatchesCommandInput, DescribeInstancePatchesCommandOutput } from "./commands/DescribeInstancePatchesCommand";
|
|
53
53
|
import { DescribeInstancePatchStatesCommandInput, DescribeInstancePatchStatesCommandOutput } from "./commands/DescribeInstancePatchStatesCommand";
|
|
54
54
|
import { DescribeInstancePatchStatesForPatchGroupCommandInput, DescribeInstancePatchStatesForPatchGroupCommandOutput } from "./commands/DescribeInstancePatchStatesForPatchGroupCommand";
|
|
55
|
+
import { DescribeInstancePropertiesCommandInput, DescribeInstancePropertiesCommandOutput } from "./commands/DescribeInstancePropertiesCommand";
|
|
55
56
|
import { DescribeInventoryDeletionsCommandInput, DescribeInventoryDeletionsCommandOutput } from "./commands/DescribeInventoryDeletionsCommand";
|
|
56
57
|
import { DescribeMaintenanceWindowExecutionsCommandInput, DescribeMaintenanceWindowExecutionsCommandOutput } from "./commands/DescribeMaintenanceWindowExecutionsCommand";
|
|
57
58
|
import { DescribeMaintenanceWindowExecutionTaskInvocationsCommandInput, DescribeMaintenanceWindowExecutionTaskInvocationsCommandOutput } from "./commands/DescribeMaintenanceWindowExecutionTaskInvocationsCommand";
|
|
@@ -152,11 +153,11 @@ export { __Client };
|
|
|
152
153
|
/**
|
|
153
154
|
* @public
|
|
154
155
|
*/
|
|
155
|
-
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 | DescribeInventoryDeletionsCommandInput | DescribeMaintenanceWindowExecutionTaskInvocationsCommandInput | DescribeMaintenanceWindowExecutionTasksCommandInput | DescribeMaintenanceWindowExecutionsCommandInput | DescribeMaintenanceWindowScheduleCommandInput | DescribeMaintenanceWindowTargetsCommandInput | DescribeMaintenanceWindowTasksCommandInput | DescribeMaintenanceWindowsCommandInput | DescribeMaintenanceWindowsForTargetCommandInput | DescribeOpsItemsCommandInput | DescribeParametersCommandInput | DescribePatchBaselinesCommandInput | DescribePatchGroupStateCommandInput | DescribePatchGroupsCommandInput | DescribePatchPropertiesCommandInput | DescribeSessionsCommandInput | DisassociateOpsItemRelatedItemCommandInput | GetAutomationExecutionCommandInput | GetCalendarStateCommandInput | GetCommandInvocationCommandInput | GetConnectionStatusCommandInput | GetDefaultPatchBaselineCommandInput | GetDeployablePatchSnapshotForInstanceCommandInput | GetDocumentCommandInput | 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 | ListOpsItemEventsCommandInput | ListOpsItemRelatedItemsCommandInput | ListOpsMetadataCommandInput | ListResourceComplianceSummariesCommandInput | ListResourceDataSyncCommandInput | ListTagsForResourceCommandInput | ModifyDocumentPermissionCommandInput | PutComplianceItemsCommandInput | PutInventoryCommandInput | PutParameterCommandInput | PutResourcePolicyCommandInput | RegisterDefaultPatchBaselineCommandInput | RegisterPatchBaselineForPatchGroupCommandInput | RegisterTargetWithMaintenanceWindowCommandInput | RegisterTaskWithMaintenanceWindowCommandInput | RemoveTagsFromResourceCommandInput | ResetServiceSettingCommandInput | ResumeSessionCommandInput | SendAutomationSignalCommandInput | SendCommandCommandInput | StartAssociationsOnceCommandInput | StartAutomationExecutionCommandInput | StartChangeRequestExecutionCommandInput | StartSessionCommandInput | StopAutomationExecutionCommandInput | TerminateSessionCommandInput | UnlabelParameterVersionCommandInput | UpdateAssociationCommandInput | UpdateAssociationStatusCommandInput | UpdateDocumentCommandInput | UpdateDocumentDefaultVersionCommandInput | UpdateDocumentMetadataCommandInput | UpdateMaintenanceWindowCommandInput | UpdateMaintenanceWindowTargetCommandInput | UpdateMaintenanceWindowTaskCommandInput | UpdateManagedInstanceRoleCommandInput | UpdateOpsItemCommandInput | UpdateOpsMetadataCommandInput | UpdatePatchBaselineCommandInput | UpdateResourceDataSyncCommandInput | UpdateServiceSettingCommandInput;
|
|
156
|
+
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 | GetAutomationExecutionCommandInput | GetCalendarStateCommandInput | GetCommandInvocationCommandInput | GetConnectionStatusCommandInput | GetDefaultPatchBaselineCommandInput | GetDeployablePatchSnapshotForInstanceCommandInput | GetDocumentCommandInput | 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 | ListOpsItemEventsCommandInput | ListOpsItemRelatedItemsCommandInput | ListOpsMetadataCommandInput | ListResourceComplianceSummariesCommandInput | ListResourceDataSyncCommandInput | ListTagsForResourceCommandInput | ModifyDocumentPermissionCommandInput | PutComplianceItemsCommandInput | PutInventoryCommandInput | PutParameterCommandInput | PutResourcePolicyCommandInput | RegisterDefaultPatchBaselineCommandInput | RegisterPatchBaselineForPatchGroupCommandInput | RegisterTargetWithMaintenanceWindowCommandInput | RegisterTaskWithMaintenanceWindowCommandInput | RemoveTagsFromResourceCommandInput | ResetServiceSettingCommandInput | ResumeSessionCommandInput | SendAutomationSignalCommandInput | SendCommandCommandInput | StartAssociationsOnceCommandInput | StartAutomationExecutionCommandInput | StartChangeRequestExecutionCommandInput | StartSessionCommandInput | StopAutomationExecutionCommandInput | TerminateSessionCommandInput | UnlabelParameterVersionCommandInput | UpdateAssociationCommandInput | UpdateAssociationStatusCommandInput | UpdateDocumentCommandInput | UpdateDocumentDefaultVersionCommandInput | UpdateDocumentMetadataCommandInput | UpdateMaintenanceWindowCommandInput | UpdateMaintenanceWindowTargetCommandInput | UpdateMaintenanceWindowTaskCommandInput | UpdateManagedInstanceRoleCommandInput | UpdateOpsItemCommandInput | UpdateOpsMetadataCommandInput | UpdatePatchBaselineCommandInput | UpdateResourceDataSyncCommandInput | UpdateServiceSettingCommandInput;
|
|
156
157
|
/**
|
|
157
158
|
* @public
|
|
158
159
|
*/
|
|
159
|
-
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 | DescribeInventoryDeletionsCommandOutput | DescribeMaintenanceWindowExecutionTaskInvocationsCommandOutput | DescribeMaintenanceWindowExecutionTasksCommandOutput | DescribeMaintenanceWindowExecutionsCommandOutput | DescribeMaintenanceWindowScheduleCommandOutput | DescribeMaintenanceWindowTargetsCommandOutput | DescribeMaintenanceWindowTasksCommandOutput | DescribeMaintenanceWindowsCommandOutput | DescribeMaintenanceWindowsForTargetCommandOutput | DescribeOpsItemsCommandOutput | DescribeParametersCommandOutput | DescribePatchBaselinesCommandOutput | DescribePatchGroupStateCommandOutput | DescribePatchGroupsCommandOutput | DescribePatchPropertiesCommandOutput | DescribeSessionsCommandOutput | DisassociateOpsItemRelatedItemCommandOutput | GetAutomationExecutionCommandOutput | GetCalendarStateCommandOutput | GetCommandInvocationCommandOutput | GetConnectionStatusCommandOutput | GetDefaultPatchBaselineCommandOutput | GetDeployablePatchSnapshotForInstanceCommandOutput | GetDocumentCommandOutput | 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 | ListOpsItemEventsCommandOutput | ListOpsItemRelatedItemsCommandOutput | ListOpsMetadataCommandOutput | ListResourceComplianceSummariesCommandOutput | ListResourceDataSyncCommandOutput | ListTagsForResourceCommandOutput | ModifyDocumentPermissionCommandOutput | PutComplianceItemsCommandOutput | PutInventoryCommandOutput | PutParameterCommandOutput | PutResourcePolicyCommandOutput | RegisterDefaultPatchBaselineCommandOutput | RegisterPatchBaselineForPatchGroupCommandOutput | RegisterTargetWithMaintenanceWindowCommandOutput | RegisterTaskWithMaintenanceWindowCommandOutput | RemoveTagsFromResourceCommandOutput | ResetServiceSettingCommandOutput | ResumeSessionCommandOutput | SendAutomationSignalCommandOutput | SendCommandCommandOutput | StartAssociationsOnceCommandOutput | StartAutomationExecutionCommandOutput | StartChangeRequestExecutionCommandOutput | StartSessionCommandOutput | StopAutomationExecutionCommandOutput | TerminateSessionCommandOutput | UnlabelParameterVersionCommandOutput | UpdateAssociationCommandOutput | UpdateAssociationStatusCommandOutput | UpdateDocumentCommandOutput | UpdateDocumentDefaultVersionCommandOutput | UpdateDocumentMetadataCommandOutput | UpdateMaintenanceWindowCommandOutput | UpdateMaintenanceWindowTargetCommandOutput | UpdateMaintenanceWindowTaskCommandOutput | UpdateManagedInstanceRoleCommandOutput | UpdateOpsItemCommandOutput | UpdateOpsMetadataCommandOutput | UpdatePatchBaselineCommandOutput | UpdateResourceDataSyncCommandOutput | UpdateServiceSettingCommandOutput;
|
|
160
|
+
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 | GetAutomationExecutionCommandOutput | GetCalendarStateCommandOutput | GetCommandInvocationCommandOutput | GetConnectionStatusCommandOutput | GetDefaultPatchBaselineCommandOutput | GetDeployablePatchSnapshotForInstanceCommandOutput | GetDocumentCommandOutput | 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 | ListOpsItemEventsCommandOutput | ListOpsItemRelatedItemsCommandOutput | ListOpsMetadataCommandOutput | ListResourceComplianceSummariesCommandOutput | ListResourceDataSyncCommandOutput | ListTagsForResourceCommandOutput | ModifyDocumentPermissionCommandOutput | PutComplianceItemsCommandOutput | PutInventoryCommandOutput | PutParameterCommandOutput | PutResourcePolicyCommandOutput | RegisterDefaultPatchBaselineCommandOutput | RegisterPatchBaselineForPatchGroupCommandOutput | RegisterTargetWithMaintenanceWindowCommandOutput | RegisterTaskWithMaintenanceWindowCommandOutput | RemoveTagsFromResourceCommandOutput | ResetServiceSettingCommandOutput | ResumeSessionCommandOutput | SendAutomationSignalCommandOutput | SendCommandCommandOutput | StartAssociationsOnceCommandOutput | StartAutomationExecutionCommandOutput | StartChangeRequestExecutionCommandOutput | StartSessionCommandOutput | StopAutomationExecutionCommandOutput | TerminateSessionCommandOutput | UnlabelParameterVersionCommandOutput | UpdateAssociationCommandOutput | UpdateAssociationStatusCommandOutput | UpdateDocumentCommandOutput | UpdateDocumentDefaultVersionCommandOutput | UpdateDocumentMetadataCommandOutput | UpdateMaintenanceWindowCommandOutput | UpdateMaintenanceWindowTargetCommandOutput | UpdateMaintenanceWindowTaskCommandOutput | UpdateManagedInstanceRoleCommandOutput | UpdateOpsItemCommandOutput | UpdateOpsMetadataCommandOutput | UpdatePatchBaselineCommandOutput | UpdateResourceDataSyncCommandOutput | UpdateServiceSettingCommandOutput;
|
|
160
161
|
/**
|
|
161
162
|
* @public
|
|
162
163
|
*/
|
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { DescribeInstancePropertiesRequest, DescribeInstancePropertiesResult } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export { __MetadataBearer, $Command };
|
|
9
|
+
/**
|
|
10
|
+
* @public
|
|
11
|
+
*
|
|
12
|
+
* The input for {@link DescribeInstancePropertiesCommand}.
|
|
13
|
+
*/
|
|
14
|
+
export interface DescribeInstancePropertiesCommandInput extends DescribeInstancePropertiesRequest {
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* @public
|
|
18
|
+
*
|
|
19
|
+
* The output of {@link DescribeInstancePropertiesCommand}.
|
|
20
|
+
*/
|
|
21
|
+
export interface DescribeInstancePropertiesCommandOutput extends DescribeInstancePropertiesResult, __MetadataBearer {
|
|
22
|
+
}
|
|
23
|
+
declare const DescribeInstancePropertiesCommand_base: {
|
|
24
|
+
new (input: DescribeInstancePropertiesCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeInstancePropertiesCommandInput, DescribeInstancePropertiesCommandOutput, SSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [DescribeInstancePropertiesCommandInput]): import("@smithy/smithy-client").CommandImpl<DescribeInstancePropertiesCommandInput, DescribeInstancePropertiesCommandOutput, SSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
27
|
+
};
|
|
28
|
+
/**
|
|
29
|
+
* <p>An API operation used by the Systems Manager console to display information about Systems Manager managed nodes.</p>
|
|
30
|
+
* @example
|
|
31
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
32
|
+
* ```javascript
|
|
33
|
+
* import { SSMClient, DescribeInstancePropertiesCommand } from "@aws-sdk/client-ssm"; // ES Modules import
|
|
34
|
+
* // const { SSMClient, DescribeInstancePropertiesCommand } = require("@aws-sdk/client-ssm"); // CommonJS import
|
|
35
|
+
* const client = new SSMClient(config);
|
|
36
|
+
* const input = { // DescribeInstancePropertiesRequest
|
|
37
|
+
* InstancePropertyFilterList: [ // InstancePropertyFilterList
|
|
38
|
+
* { // InstancePropertyFilter
|
|
39
|
+
* key: "InstanceIds" || "AgentVersion" || "PingStatus" || "PlatformTypes" || "DocumentName" || "ActivationIds" || "IamRole" || "ResourceType" || "AssociationStatus", // required
|
|
40
|
+
* valueSet: [ // InstancePropertyFilterValueSet // required
|
|
41
|
+
* "STRING_VALUE",
|
|
42
|
+
* ],
|
|
43
|
+
* },
|
|
44
|
+
* ],
|
|
45
|
+
* FiltersWithOperator: [ // InstancePropertyStringFilterList
|
|
46
|
+
* { // InstancePropertyStringFilter
|
|
47
|
+
* Key: "STRING_VALUE", // required
|
|
48
|
+
* Values: [ // required
|
|
49
|
+
* "STRING_VALUE",
|
|
50
|
+
* ],
|
|
51
|
+
* Operator: "Equal" || "NotEqual" || "BeginWith" || "LessThan" || "GreaterThan",
|
|
52
|
+
* },
|
|
53
|
+
* ],
|
|
54
|
+
* MaxResults: Number("int"),
|
|
55
|
+
* NextToken: "STRING_VALUE",
|
|
56
|
+
* };
|
|
57
|
+
* const command = new DescribeInstancePropertiesCommand(input);
|
|
58
|
+
* const response = await client.send(command);
|
|
59
|
+
* // { // DescribeInstancePropertiesResult
|
|
60
|
+
* // InstanceProperties: [ // InstanceProperties
|
|
61
|
+
* // { // InstanceProperty
|
|
62
|
+
* // Name: "STRING_VALUE",
|
|
63
|
+
* // InstanceId: "STRING_VALUE",
|
|
64
|
+
* // InstanceType: "STRING_VALUE",
|
|
65
|
+
* // InstanceRole: "STRING_VALUE",
|
|
66
|
+
* // KeyName: "STRING_VALUE",
|
|
67
|
+
* // InstanceState: "STRING_VALUE",
|
|
68
|
+
* // Architecture: "STRING_VALUE",
|
|
69
|
+
* // IPAddress: "STRING_VALUE",
|
|
70
|
+
* // LaunchTime: new Date("TIMESTAMP"),
|
|
71
|
+
* // PingStatus: "Online" || "ConnectionLost" || "Inactive",
|
|
72
|
+
* // LastPingDateTime: new Date("TIMESTAMP"),
|
|
73
|
+
* // AgentVersion: "STRING_VALUE",
|
|
74
|
+
* // PlatformType: "Windows" || "Linux" || "MacOS",
|
|
75
|
+
* // PlatformName: "STRING_VALUE",
|
|
76
|
+
* // PlatformVersion: "STRING_VALUE",
|
|
77
|
+
* // ActivationId: "STRING_VALUE",
|
|
78
|
+
* // IamRole: "STRING_VALUE",
|
|
79
|
+
* // RegistrationDate: new Date("TIMESTAMP"),
|
|
80
|
+
* // ResourceType: "STRING_VALUE",
|
|
81
|
+
* // ComputerName: "STRING_VALUE",
|
|
82
|
+
* // AssociationStatus: "STRING_VALUE",
|
|
83
|
+
* // LastAssociationExecutionDate: new Date("TIMESTAMP"),
|
|
84
|
+
* // LastSuccessfulAssociationExecutionDate: new Date("TIMESTAMP"),
|
|
85
|
+
* // AssociationOverview: { // InstanceAggregatedAssociationOverview
|
|
86
|
+
* // DetailedStatus: "STRING_VALUE",
|
|
87
|
+
* // InstanceAssociationStatusAggregatedCount: { // InstanceAssociationStatusAggregatedCount
|
|
88
|
+
* // "<keys>": Number("int"),
|
|
89
|
+
* // },
|
|
90
|
+
* // },
|
|
91
|
+
* // SourceId: "STRING_VALUE",
|
|
92
|
+
* // SourceType: "AWS::EC2::Instance" || "AWS::IoT::Thing" || "AWS::SSM::ManagedInstance",
|
|
93
|
+
* // },
|
|
94
|
+
* // ],
|
|
95
|
+
* // NextToken: "STRING_VALUE",
|
|
96
|
+
* // };
|
|
97
|
+
*
|
|
98
|
+
* ```
|
|
99
|
+
*
|
|
100
|
+
* @param DescribeInstancePropertiesCommandInput - {@link DescribeInstancePropertiesCommandInput}
|
|
101
|
+
* @returns {@link DescribeInstancePropertiesCommandOutput}
|
|
102
|
+
* @see {@link DescribeInstancePropertiesCommandInput} for command's `input` shape.
|
|
103
|
+
* @see {@link DescribeInstancePropertiesCommandOutput} for command's `response` shape.
|
|
104
|
+
* @see {@link SSMClientResolvedConfig | config} for SSMClient's `config` shape.
|
|
105
|
+
*
|
|
106
|
+
* @throws {@link InternalServerError} (server fault)
|
|
107
|
+
* <p>An error occurred on the server side.</p>
|
|
108
|
+
*
|
|
109
|
+
* @throws {@link InvalidActivationId} (client fault)
|
|
110
|
+
* <p>The activation ID isn't valid. Verify the you entered the correct ActivationId or
|
|
111
|
+
* ActivationCode and try again.</p>
|
|
112
|
+
*
|
|
113
|
+
* @throws {@link InvalidDocument} (client fault)
|
|
114
|
+
* <p>The specified SSM document doesn't exist.</p>
|
|
115
|
+
*
|
|
116
|
+
* @throws {@link InvalidFilterKey} (client fault)
|
|
117
|
+
* <p>The specified key isn't valid.</p>
|
|
118
|
+
*
|
|
119
|
+
* @throws {@link InvalidInstanceId} (client fault)
|
|
120
|
+
* <p>The following problems can cause this exception:</p>
|
|
121
|
+
* <ul>
|
|
122
|
+
* <li>
|
|
123
|
+
* <p>You don't have permission to access the managed node.</p>
|
|
124
|
+
* </li>
|
|
125
|
+
* <li>
|
|
126
|
+
* <p>Amazon Web Services Systems Manager Agent (SSM Agent) isn't running. Verify that SSM Agent is
|
|
127
|
+
* running.</p>
|
|
128
|
+
* </li>
|
|
129
|
+
* <li>
|
|
130
|
+
* <p>SSM Agent isn't registered with the SSM endpoint. Try reinstalling SSM Agent.</p>
|
|
131
|
+
* </li>
|
|
132
|
+
* <li>
|
|
133
|
+
* <p>The managed node isn't in a valid state. Valid states are: <code>Running</code>,
|
|
134
|
+
* <code>Pending</code>, <code>Stopped</code>, and <code>Stopping</code>. Invalid states are:
|
|
135
|
+
* <code>Shutting-down</code> and <code>Terminated</code>.</p>
|
|
136
|
+
* </li>
|
|
137
|
+
* </ul>
|
|
138
|
+
*
|
|
139
|
+
* @throws {@link InvalidInstancePropertyFilterValue} (client fault)
|
|
140
|
+
* <p>The specified filter value isn't valid.</p>
|
|
141
|
+
*
|
|
142
|
+
* @throws {@link InvalidNextToken} (client fault)
|
|
143
|
+
* <p>The specified token isn't valid.</p>
|
|
144
|
+
*
|
|
145
|
+
* @throws {@link SSMServiceException}
|
|
146
|
+
* <p>Base exception class for all service exceptions from SSM service.</p>
|
|
147
|
+
*
|
|
148
|
+
* @public
|
|
149
|
+
*/
|
|
150
|
+
export declare class DescribeInstancePropertiesCommand extends DescribeInstancePropertiesCommand_base {
|
|
151
|
+
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import { DescribeMaintenanceWindowScheduleRequest
|
|
3
|
+
import { DescribeMaintenanceWindowScheduleRequest } from "../models/models_0";
|
|
4
|
+
import { DescribeMaintenanceWindowScheduleResult } from "../models/models_1";
|
|
4
5
|
import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient";
|
|
5
6
|
/**
|
|
6
7
|
* @public
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import { DescribeMaintenanceWindowTargetsRequest, DescribeMaintenanceWindowTargetsResult } from "../models/
|
|
3
|
+
import { DescribeMaintenanceWindowTargetsRequest, DescribeMaintenanceWindowTargetsResult } from "../models/models_1";
|
|
4
4
|
import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import { DescribeMaintenanceWindowTasksRequest } from "../models/
|
|
4
|
-
import { DescribeMaintenanceWindowTasksResult } from "../models/models_1";
|
|
3
|
+
import { DescribeMaintenanceWindowTasksRequest, DescribeMaintenanceWindowTasksResult } from "../models/models_1";
|
|
5
4
|
import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient";
|
|
6
5
|
/**
|
|
7
6
|
* @public
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import { DescribeMaintenanceWindowsForTargetRequest, DescribeMaintenanceWindowsForTargetResult } from "../models/
|
|
3
|
+
import { DescribeMaintenanceWindowsForTargetRequest, DescribeMaintenanceWindowsForTargetResult } from "../models/models_1";
|
|
4
4
|
import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import { StartChangeRequestExecutionRequest, StartChangeRequestExecutionResult } from "../models/
|
|
3
|
+
import { StartChangeRequestExecutionRequest, StartChangeRequestExecutionResult } from "../models/models_2";
|
|
4
4
|
import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import { StartSessionRequest, StartSessionResponse } from "../models/
|
|
3
|
+
import { StartSessionRequest, StartSessionResponse } from "../models/models_2";
|
|
4
4
|
import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
@@ -43,6 +43,7 @@ export * from "./DescribeInstanceInformationCommand";
|
|
|
43
43
|
export * from "./DescribeInstancePatchStatesCommand";
|
|
44
44
|
export * from "./DescribeInstancePatchStatesForPatchGroupCommand";
|
|
45
45
|
export * from "./DescribeInstancePatchesCommand";
|
|
46
|
+
export * from "./DescribeInstancePropertiesCommand";
|
|
46
47
|
export * from "./DescribeInventoryDeletionsCommand";
|
|
47
48
|
export * from "./DescribeMaintenanceWindowExecutionTaskInvocationsCommand";
|
|
48
49
|
export * from "./DescribeMaintenanceWindowExecutionTasksCommand";
|