@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
|
@@ -617,9 +617,6 @@ export interface TargetLocation {
|
|
|
617
617
|
/**
|
|
618
618
|
* <p>Indicates whether to include child organizational units (OUs) that are children of the
|
|
619
619
|
* targeted OUs. The default is <code>false</code>.</p>
|
|
620
|
-
* <note>
|
|
621
|
-
* <p>This parameter is not supported by State Manager.</p>
|
|
622
|
-
* </note>
|
|
623
620
|
* @public
|
|
624
621
|
*/
|
|
625
622
|
IncludeChildOrganizationUnits?: boolean | undefined;
|
|
@@ -811,7 +808,7 @@ export interface CreateAssociationRequest {
|
|
|
811
808
|
* association. Use this action to create an association in multiple Regions and multiple
|
|
812
809
|
* accounts.</p>
|
|
813
810
|
* <note>
|
|
814
|
-
* <p>The <code>
|
|
811
|
+
* <p>The <code>TargetLocationAlarmConfiguration</code> parameter is not supported by State
|
|
815
812
|
* Manager.</p>
|
|
816
813
|
* </note>
|
|
817
814
|
* @public
|
|
@@ -1393,6 +1390,168 @@ export interface CreateAssociationBatchResult {
|
|
|
1393
1390
|
*/
|
|
1394
1391
|
Failed?: FailedCreateAssociation[] | undefined;
|
|
1395
1392
|
}
|
|
1393
|
+
/**
|
|
1394
|
+
* <p>Information about an Azure subscription targeted by the cloud connector.</p>
|
|
1395
|
+
* @public
|
|
1396
|
+
*/
|
|
1397
|
+
export interface AzureSubscription {
|
|
1398
|
+
/**
|
|
1399
|
+
* <p>The ID of the Azure subscription.</p>
|
|
1400
|
+
* @public
|
|
1401
|
+
*/
|
|
1402
|
+
Id: string | undefined;
|
|
1403
|
+
/**
|
|
1404
|
+
* <p>The display name of the Azure subscription.</p>
|
|
1405
|
+
* @public
|
|
1406
|
+
*/
|
|
1407
|
+
DisplayName?: string | undefined;
|
|
1408
|
+
}
|
|
1409
|
+
/**
|
|
1410
|
+
* <p>The target resources in the third-party cloud environment.</p>
|
|
1411
|
+
* @public
|
|
1412
|
+
*/
|
|
1413
|
+
export type ConfigurationTargets = ConfigurationTargets.SubscriptionsMember | ConfigurationTargets.$UnknownMember;
|
|
1414
|
+
/**
|
|
1415
|
+
* @public
|
|
1416
|
+
*/
|
|
1417
|
+
export declare namespace ConfigurationTargets {
|
|
1418
|
+
/**
|
|
1419
|
+
* <p>A list of Azure subscriptions to target.</p>
|
|
1420
|
+
* @public
|
|
1421
|
+
*/
|
|
1422
|
+
interface SubscriptionsMember {
|
|
1423
|
+
Subscriptions: AzureSubscription[];
|
|
1424
|
+
$unknown?: never;
|
|
1425
|
+
}
|
|
1426
|
+
/**
|
|
1427
|
+
* @public
|
|
1428
|
+
*/
|
|
1429
|
+
interface $UnknownMember {
|
|
1430
|
+
Subscriptions?: never;
|
|
1431
|
+
$unknown: [string, any];
|
|
1432
|
+
}
|
|
1433
|
+
/**
|
|
1434
|
+
* @deprecated unused in schema-serde mode.
|
|
1435
|
+
*
|
|
1436
|
+
*/
|
|
1437
|
+
interface Visitor<T> {
|
|
1438
|
+
Subscriptions: (value: AzureSubscription[]) => T;
|
|
1439
|
+
_: (name: string, value: any) => T;
|
|
1440
|
+
}
|
|
1441
|
+
}
|
|
1442
|
+
/**
|
|
1443
|
+
* <p>The access details and targets for connecting to a Microsoft Azure tenant, including
|
|
1444
|
+
* the application registration used for authentication and the subscriptions to target.</p>
|
|
1445
|
+
* @public
|
|
1446
|
+
*/
|
|
1447
|
+
export interface AzureConfiguration {
|
|
1448
|
+
/**
|
|
1449
|
+
* <p>The ID of the Azure tenant.</p>
|
|
1450
|
+
* @public
|
|
1451
|
+
*/
|
|
1452
|
+
TenantId: string | undefined;
|
|
1453
|
+
/**
|
|
1454
|
+
* <p>The display name of the Azure tenant.</p>
|
|
1455
|
+
* @public
|
|
1456
|
+
*/
|
|
1457
|
+
TenantDisplayName?: string | undefined;
|
|
1458
|
+
/**
|
|
1459
|
+
* <p>The ID of the Azure application registration used for authentication.</p>
|
|
1460
|
+
* @public
|
|
1461
|
+
*/
|
|
1462
|
+
ApplicationId: string | undefined;
|
|
1463
|
+
/**
|
|
1464
|
+
* <p>The display name of the Azure application registration.</p>
|
|
1465
|
+
* @public
|
|
1466
|
+
*/
|
|
1467
|
+
ApplicationDisplayName?: string | undefined;
|
|
1468
|
+
/**
|
|
1469
|
+
* <p>The target Azure subscriptions for the cloud connector.</p>
|
|
1470
|
+
* @public
|
|
1471
|
+
*/
|
|
1472
|
+
Targets?: ConfigurationTargets | undefined;
|
|
1473
|
+
}
|
|
1474
|
+
/**
|
|
1475
|
+
* <p>The configuration that provides access details and targets for connecting to a third-party
|
|
1476
|
+
* cloud environment.</p>
|
|
1477
|
+
* @public
|
|
1478
|
+
*/
|
|
1479
|
+
export type CloudConnectorConfiguration = CloudConnectorConfiguration.AzureConfigurationMember | CloudConnectorConfiguration.$UnknownMember;
|
|
1480
|
+
/**
|
|
1481
|
+
* @public
|
|
1482
|
+
*/
|
|
1483
|
+
export declare namespace CloudConnectorConfiguration {
|
|
1484
|
+
/**
|
|
1485
|
+
* <p>The access details and targets for connecting to a Microsoft Azure environment.</p>
|
|
1486
|
+
* @public
|
|
1487
|
+
*/
|
|
1488
|
+
interface AzureConfigurationMember {
|
|
1489
|
+
AzureConfiguration: AzureConfiguration;
|
|
1490
|
+
$unknown?: never;
|
|
1491
|
+
}
|
|
1492
|
+
/**
|
|
1493
|
+
* @public
|
|
1494
|
+
*/
|
|
1495
|
+
interface $UnknownMember {
|
|
1496
|
+
AzureConfiguration?: never;
|
|
1497
|
+
$unknown: [string, any];
|
|
1498
|
+
}
|
|
1499
|
+
/**
|
|
1500
|
+
* @deprecated unused in schema-serde mode.
|
|
1501
|
+
*
|
|
1502
|
+
*/
|
|
1503
|
+
interface Visitor<T> {
|
|
1504
|
+
AzureConfiguration: (value: AzureConfiguration) => T;
|
|
1505
|
+
_: (name: string, value: any) => T;
|
|
1506
|
+
}
|
|
1507
|
+
}
|
|
1508
|
+
/**
|
|
1509
|
+
* @public
|
|
1510
|
+
*/
|
|
1511
|
+
export interface CreateCloudConnectorRequest {
|
|
1512
|
+
/**
|
|
1513
|
+
* <p>A friendly name for the cloud connector.</p>
|
|
1514
|
+
* @public
|
|
1515
|
+
*/
|
|
1516
|
+
DisplayName: string | undefined;
|
|
1517
|
+
/**
|
|
1518
|
+
* <p>The Amazon Resource Name (ARN) of the IAM role that the cloud connector
|
|
1519
|
+
* uses to communicate with the third-party cloud environment.</p>
|
|
1520
|
+
* @public
|
|
1521
|
+
*/
|
|
1522
|
+
RoleArn: string | undefined;
|
|
1523
|
+
/**
|
|
1524
|
+
* <p>A description for the cloud connector.</p>
|
|
1525
|
+
* @public
|
|
1526
|
+
*/
|
|
1527
|
+
Description?: string | undefined;
|
|
1528
|
+
/**
|
|
1529
|
+
* <p>The configuration details for connecting to the third-party cloud environment.</p>
|
|
1530
|
+
* @public
|
|
1531
|
+
*/
|
|
1532
|
+
Configuration: CloudConnectorConfiguration | undefined;
|
|
1533
|
+
/**
|
|
1534
|
+
* <p>The ARN of the Amazon Web Services Config connector associated with this cloud connector.</p>
|
|
1535
|
+
* @public
|
|
1536
|
+
*/
|
|
1537
|
+
ConfigConnectorArn: string | undefined;
|
|
1538
|
+
/**
|
|
1539
|
+
* <p>Optional metadata that you assign to a resource. Tags enable you to categorize a resource
|
|
1540
|
+
* in different ways, such as by purpose, owner, or environment.</p>
|
|
1541
|
+
* @public
|
|
1542
|
+
*/
|
|
1543
|
+
Tags?: Tag[] | undefined;
|
|
1544
|
+
}
|
|
1545
|
+
/**
|
|
1546
|
+
* @public
|
|
1547
|
+
*/
|
|
1548
|
+
export interface CreateCloudConnectorResult {
|
|
1549
|
+
/**
|
|
1550
|
+
* <p>The ID of the cloud connector that was created.</p>
|
|
1551
|
+
* @public
|
|
1552
|
+
*/
|
|
1553
|
+
CloudConnectorId?: string | undefined;
|
|
1554
|
+
}
|
|
1396
1555
|
/**
|
|
1397
1556
|
* <p>Identifying information about a document attachment, including the file name and a key-value
|
|
1398
1557
|
* pair that identifies the location of an attachment to a document.</p>
|
|
@@ -2329,10 +2488,9 @@ export interface PatchRule {
|
|
|
2329
2488
|
* <p>The number of days after the release date of each patch matched by the rule that the patch
|
|
2330
2489
|
* is marked as approved in the patch baseline. For example, a value of <code>7</code> means that
|
|
2331
2490
|
* patches are approved seven days after they are released.</p>
|
|
2332
|
-
* <p>Patch Manager evaluates patch release dates using Coordinated Universal Time (UTC). If
|
|
2333
|
-
*
|
|
2334
|
-
* <code>
|
|
2335
|
-
* approval.</p>
|
|
2491
|
+
* <p>Patch Manager evaluates patch release dates using Coordinated Universal Time (UTC). If a
|
|
2492
|
+
* patch is released at <code>2025-11-09T18:00:00Z</code> and <code>ApproveAfterDays</code> is set to
|
|
2493
|
+
* <code>7</code>, the patch will be approved after <code>2025-11-16T18:00:00Z</code>.</p>
|
|
2336
2494
|
* <p>This parameter is marked as <code>Required: No</code>, but your request must include a value
|
|
2337
2495
|
* for either <code>ApproveAfterDays</code> or <code>ApproveUntilDate</code>.</p>
|
|
2338
2496
|
* <p>Not supported for Debian Server or Ubuntu Server.</p>
|
|
@@ -2816,6 +2974,26 @@ export interface DeleteAssociationRequest {
|
|
|
2816
2974
|
*/
|
|
2817
2975
|
export interface DeleteAssociationResult {
|
|
2818
2976
|
}
|
|
2977
|
+
/**
|
|
2978
|
+
* @public
|
|
2979
|
+
*/
|
|
2980
|
+
export interface DeleteCloudConnectorRequest {
|
|
2981
|
+
/**
|
|
2982
|
+
* <p>The ID of the cloud connector to delete.</p>
|
|
2983
|
+
* @public
|
|
2984
|
+
*/
|
|
2985
|
+
CloudConnectorId: string | undefined;
|
|
2986
|
+
}
|
|
2987
|
+
/**
|
|
2988
|
+
* @public
|
|
2989
|
+
*/
|
|
2990
|
+
export interface DeleteCloudConnectorResult {
|
|
2991
|
+
/**
|
|
2992
|
+
* <p>The ID of the cloud connector that was deleted.</p>
|
|
2993
|
+
* @public
|
|
2994
|
+
*/
|
|
2995
|
+
CloudConnectorId?: string | undefined;
|
|
2996
|
+
}
|
|
2819
2997
|
/**
|
|
2820
2998
|
* @public
|
|
2821
2999
|
*/
|
|
@@ -4911,7 +5089,7 @@ export interface InstanceInformationStringFilter {
|
|
|
4911
5089
|
/**
|
|
4912
5090
|
* <p>The filter key name to describe your managed nodes.</p>
|
|
4913
5091
|
* <p>Valid filter key values: ActivationIds | AgentVersion | AssociationStatus | IamRole |
|
|
4914
|
-
* InstanceIds | PingStatus |
|
|
5092
|
+
* InstanceIds | PingStatus | PlatformTypes | ResourceType | SourceIds | SourceTypes | "tag-key" |
|
|
4915
5093
|
* "tag:<code>\{keyname\}</code>
|
|
4916
5094
|
* </p>
|
|
4917
5095
|
* <ul>
|
|
@@ -4924,7 +5102,7 @@ export interface InstanceInformationStringFilter {
|
|
|
4924
5102
|
* Inactive (deprecated)</p>
|
|
4925
5103
|
* </li>
|
|
4926
5104
|
* <li>
|
|
4927
|
-
* <p>Valid values for the <code>
|
|
5105
|
+
* <p>Valid values for the <code>PlatformTypes</code> filter key: Windows | Linux | MacOS</p>
|
|
4928
5106
|
* </li>
|
|
4929
5107
|
* <li>
|
|
4930
5108
|
* <p>Valid values for the <code>ResourceType</code> filter key: EC2Instance |
|
|
@@ -4932,7 +5110,7 @@ export interface InstanceInformationStringFilter {
|
|
|
4932
5110
|
* </li>
|
|
4933
5111
|
* <li>
|
|
4934
5112
|
* <p>Valid values for the <code>SourceType</code> filter key: AWS::EC2::Instance |
|
|
4935
|
-
* AWS::SSM::ManagedInstance | AWS::IoT::Thing</p>
|
|
5113
|
+
* AWS::SSM::ManagedInstance | AWS::IoT::Thing | Microsoft.Compute/virtualMachines</p>
|
|
4936
5114
|
* </li>
|
|
4937
5115
|
* <li>
|
|
4938
5116
|
* <p>Valid tag examples: <code>Key=tag-key,Values=Purpose</code> |
|
|
@@ -5152,10 +5330,16 @@ export interface InstanceInformation {
|
|
|
5152
5330
|
SourceId?: string | undefined;
|
|
5153
5331
|
/**
|
|
5154
5332
|
* <p>The type of the source resource. For IoT Greengrass devices, <code>SourceType</code>
|
|
5155
|
-
* is <code>AWS::IoT::Thing</code>. </
|
|
5333
|
+
* is <code>AWS::IoT::Thing</code>. For Azure Virtual Machines, <code>SourceType</code> is
|
|
5334
|
+
* <code>Microsoft.Compute/virtualMachines</code>.</p>
|
|
5156
5335
|
* @public
|
|
5157
5336
|
*/
|
|
5158
5337
|
SourceType?: SourceType | undefined;
|
|
5338
|
+
/**
|
|
5339
|
+
* <p>The location of the source resource in the third-party cloud environment.</p>
|
|
5340
|
+
* @public
|
|
5341
|
+
*/
|
|
5342
|
+
SourceLocation?: string | undefined;
|
|
5159
5343
|
}
|
|
5160
5344
|
/**
|
|
5161
5345
|
* @public
|
|
@@ -5896,10 +6080,22 @@ export interface InstanceProperty {
|
|
|
5896
6080
|
*/
|
|
5897
6081
|
SourceId?: string | undefined;
|
|
5898
6082
|
/**
|
|
5899
|
-
* <p>The type of the source resource
|
|
6083
|
+
* <p>The type of the source resource. Valid values: <code>AWS::EC2::Instance</code> |
|
|
6084
|
+
* <code>AWS::SSM::ManagedInstance</code> | <code>AWS::IoT::Thing</code> |
|
|
6085
|
+
* <code>Microsoft.Compute/virtualMachines</code>.</p>
|
|
5900
6086
|
* @public
|
|
5901
6087
|
*/
|
|
5902
6088
|
SourceType?: SourceType | undefined;
|
|
6089
|
+
/**
|
|
6090
|
+
* <p>The location of the source resource in the third-party cloud environment.</p>
|
|
6091
|
+
* @public
|
|
6092
|
+
*/
|
|
6093
|
+
SourceLocation?: string | undefined;
|
|
6094
|
+
/**
|
|
6095
|
+
* <p>The Availability Zone where the managed node is located.</p>
|
|
6096
|
+
* @public
|
|
6097
|
+
*/
|
|
6098
|
+
AvailabilityZone?: string | undefined;
|
|
5903
6099
|
}
|
|
5904
6100
|
/**
|
|
5905
6101
|
* @public
|
|
@@ -6797,6 +6993,10 @@ export interface MaintenanceWindowTask {
|
|
|
6797
6993
|
* <code>AUTOMATION</code> task types, <code>TaskArn</code> is the Amazon Web Services Systems Manager (SSM document) name or
|
|
6798
6994
|
* ARN. For <code>LAMBDA</code> tasks, it's the function name or ARN. For
|
|
6799
6995
|
* <code>STEP_FUNCTIONS</code> tasks, it's the state machine ARN.</p>
|
|
6996
|
+
* <note>
|
|
6997
|
+
* <p>Maintenance Window does not validate the TaskArn when you register a task.
|
|
6998
|
+
* A successful registration does not guarantee that the TaskArn is valid.</p>
|
|
6999
|
+
* </note>
|
|
6800
7000
|
* @public
|
|
6801
7001
|
*/
|
|
6802
7002
|
TaskArn?: string | undefined;
|
|
@@ -8264,6 +8464,61 @@ export interface GetCalendarStateResponse {
|
|
|
8264
8464
|
*/
|
|
8265
8465
|
NextTransitionTime?: string | undefined;
|
|
8266
8466
|
}
|
|
8467
|
+
/**
|
|
8468
|
+
* @public
|
|
8469
|
+
*/
|
|
8470
|
+
export interface GetCloudConnectorRequest {
|
|
8471
|
+
/**
|
|
8472
|
+
* <p>The ID of the cloud connector to retrieve information about.</p>
|
|
8473
|
+
* @public
|
|
8474
|
+
*/
|
|
8475
|
+
CloudConnectorId: string | undefined;
|
|
8476
|
+
}
|
|
8477
|
+
/**
|
|
8478
|
+
* @public
|
|
8479
|
+
*/
|
|
8480
|
+
export interface GetCloudConnectorResult {
|
|
8481
|
+
/**
|
|
8482
|
+
* <p>The ARN of the cloud connector.</p>
|
|
8483
|
+
* @public
|
|
8484
|
+
*/
|
|
8485
|
+
CloudConnectorArn?: string | undefined;
|
|
8486
|
+
/**
|
|
8487
|
+
* <p>The friendly name of the cloud connector.</p>
|
|
8488
|
+
* @public
|
|
8489
|
+
*/
|
|
8490
|
+
DisplayName?: string | undefined;
|
|
8491
|
+
/**
|
|
8492
|
+
* <p>The description of the cloud connector.</p>
|
|
8493
|
+
* @public
|
|
8494
|
+
*/
|
|
8495
|
+
Description?: string | undefined;
|
|
8496
|
+
/**
|
|
8497
|
+
* <p>The ARN of the IAM role used by the cloud connector.</p>
|
|
8498
|
+
* @public
|
|
8499
|
+
*/
|
|
8500
|
+
RoleArn?: string | undefined;
|
|
8501
|
+
/**
|
|
8502
|
+
* <p>The configuration details for the third-party cloud environment connection.</p>
|
|
8503
|
+
* @public
|
|
8504
|
+
*/
|
|
8505
|
+
Configuration?: CloudConnectorConfiguration | undefined;
|
|
8506
|
+
/**
|
|
8507
|
+
* <p>The ARN of the Amazon Web Services Config connector associated with this cloud connector.</p>
|
|
8508
|
+
* @public
|
|
8509
|
+
*/
|
|
8510
|
+
ConfigConnectorArn?: string | undefined;
|
|
8511
|
+
/**
|
|
8512
|
+
* <p>The date and time the cloud connector was created.</p>
|
|
8513
|
+
* @public
|
|
8514
|
+
*/
|
|
8515
|
+
CreatedAt?: Date | undefined;
|
|
8516
|
+
/**
|
|
8517
|
+
* <p>The date and time the cloud connector was last updated.</p>
|
|
8518
|
+
* @public
|
|
8519
|
+
*/
|
|
8520
|
+
UpdatedAt?: Date | undefined;
|
|
8521
|
+
}
|
|
8267
8522
|
/**
|
|
8268
8523
|
* @public
|
|
8269
8524
|
*/
|
|
@@ -10551,350 +10806,3 @@ export interface GetParametersResult {
|
|
|
10551
10806
|
*/
|
|
10552
10807
|
InvalidParameters?: string[] | undefined;
|
|
10553
10808
|
}
|
|
10554
|
-
/**
|
|
10555
|
-
* @public
|
|
10556
|
-
*/
|
|
10557
|
-
export interface GetParametersByPathRequest {
|
|
10558
|
-
/**
|
|
10559
|
-
* <p>The hierarchy for the parameter. Hierarchies start with a forward slash (/). The hierarchy
|
|
10560
|
-
* is the parameter name except the last part of the parameter. For the API call to succeed, the
|
|
10561
|
-
* last part of the parameter name can't be in the path. A parameter name hierarchy can have a
|
|
10562
|
-
* maximum of 15 levels. Here is an example of a hierarchy:
|
|
10563
|
-
* <code>/Finance/Prod/IAD/WinServ2016/license33 </code>
|
|
10564
|
-
* </p>
|
|
10565
|
-
* @public
|
|
10566
|
-
*/
|
|
10567
|
-
Path: string | undefined;
|
|
10568
|
-
/**
|
|
10569
|
-
* <p>Retrieve all parameters within a hierarchy.</p>
|
|
10570
|
-
* <important>
|
|
10571
|
-
* <p>If a user has access to a path, then the user can access all levels of that path. For
|
|
10572
|
-
* example, if a user has permission to access path <code>/a</code>, then the user can also access
|
|
10573
|
-
* <code>/a/b</code>. Even if a user has explicitly been denied access in IAM for
|
|
10574
|
-
* parameter <code>/a/b</code>, they can still call the GetParametersByPath API operation
|
|
10575
|
-
* recursively for <code>/a</code> and view <code>/a/b</code>.</p>
|
|
10576
|
-
* </important>
|
|
10577
|
-
* @public
|
|
10578
|
-
*/
|
|
10579
|
-
Recursive?: boolean | undefined;
|
|
10580
|
-
/**
|
|
10581
|
-
* <p>Filters to limit the request results.</p>
|
|
10582
|
-
* <note>
|
|
10583
|
-
* <p>The following <code>Key</code> values are supported for <code>GetParametersByPath</code>:
|
|
10584
|
-
* <code>Type</code>, <code>KeyId</code>, and <code>Label</code>.</p>
|
|
10585
|
-
* <p>The following <code>Key</code> values aren't supported for
|
|
10586
|
-
* <code>GetParametersByPath</code>: <code>tag</code>, <code>DataType</code>, <code>Name</code>,
|
|
10587
|
-
* <code>Path</code>, and <code>Tier</code>.</p>
|
|
10588
|
-
* </note>
|
|
10589
|
-
* @public
|
|
10590
|
-
*/
|
|
10591
|
-
ParameterFilters?: ParameterStringFilter[] | undefined;
|
|
10592
|
-
/**
|
|
10593
|
-
* <p>Retrieve all parameters in a hierarchy with their value decrypted.</p>
|
|
10594
|
-
* @public
|
|
10595
|
-
*/
|
|
10596
|
-
WithDecryption?: boolean | undefined;
|
|
10597
|
-
/**
|
|
10598
|
-
* <p>The maximum number of items to return for this call. The call also returns a token that you
|
|
10599
|
-
* can specify in a subsequent call to get the next set of results.</p>
|
|
10600
|
-
* @public
|
|
10601
|
-
*/
|
|
10602
|
-
MaxResults?: number | undefined;
|
|
10603
|
-
/**
|
|
10604
|
-
* <p>A token to start the list. Use this token to get the next set of results. </p>
|
|
10605
|
-
* @public
|
|
10606
|
-
*/
|
|
10607
|
-
NextToken?: string | undefined;
|
|
10608
|
-
}
|
|
10609
|
-
/**
|
|
10610
|
-
* @public
|
|
10611
|
-
*/
|
|
10612
|
-
export interface GetParametersByPathResult {
|
|
10613
|
-
/**
|
|
10614
|
-
* <p>A list of parameters found in the specified hierarchy.</p>
|
|
10615
|
-
* @public
|
|
10616
|
-
*/
|
|
10617
|
-
Parameters?: Parameter[] | undefined;
|
|
10618
|
-
/**
|
|
10619
|
-
* <p>The token for the next set of items to return. Use this token to get the next set of
|
|
10620
|
-
* results.</p>
|
|
10621
|
-
* @public
|
|
10622
|
-
*/
|
|
10623
|
-
NextToken?: string | undefined;
|
|
10624
|
-
}
|
|
10625
|
-
/**
|
|
10626
|
-
* @public
|
|
10627
|
-
*/
|
|
10628
|
-
export interface GetPatchBaselineRequest {
|
|
10629
|
-
/**
|
|
10630
|
-
* <p>The ID of the patch baseline to retrieve.</p>
|
|
10631
|
-
* <note>
|
|
10632
|
-
* <p>To retrieve information about an Amazon Web Services managed patch baseline, specify the full Amazon
|
|
10633
|
-
* Resource Name (ARN) of the baseline. For example, for the baseline
|
|
10634
|
-
* <code>AWS-AmazonLinuxDefaultPatchBaseline</code>, specify
|
|
10635
|
-
* <code>arn:aws:ssm:us-east-2:733109147000:patchbaseline/pb-0e392de35e7c563b7</code> instead of
|
|
10636
|
-
* <code>pb-0e392de35e7c563b7</code>.</p>
|
|
10637
|
-
* </note>
|
|
10638
|
-
* @public
|
|
10639
|
-
*/
|
|
10640
|
-
BaselineId: string | undefined;
|
|
10641
|
-
}
|
|
10642
|
-
/**
|
|
10643
|
-
* @public
|
|
10644
|
-
*/
|
|
10645
|
-
export interface GetPatchBaselineResult {
|
|
10646
|
-
/**
|
|
10647
|
-
* <p>The ID of the retrieved patch baseline.</p>
|
|
10648
|
-
* @public
|
|
10649
|
-
*/
|
|
10650
|
-
BaselineId?: string | undefined;
|
|
10651
|
-
/**
|
|
10652
|
-
* <p>The name of the patch baseline.</p>
|
|
10653
|
-
* @public
|
|
10654
|
-
*/
|
|
10655
|
-
Name?: string | undefined;
|
|
10656
|
-
/**
|
|
10657
|
-
* <p>Returns the operating system specified for the patch baseline.</p>
|
|
10658
|
-
* @public
|
|
10659
|
-
*/
|
|
10660
|
-
OperatingSystem?: OperatingSystem | undefined;
|
|
10661
|
-
/**
|
|
10662
|
-
* <p>A set of global filters used to exclude patches from the baseline.</p>
|
|
10663
|
-
* @public
|
|
10664
|
-
*/
|
|
10665
|
-
GlobalFilters?: PatchFilterGroup | undefined;
|
|
10666
|
-
/**
|
|
10667
|
-
* <p>A set of rules used to include patches in the baseline.</p>
|
|
10668
|
-
* @public
|
|
10669
|
-
*/
|
|
10670
|
-
ApprovalRules?: PatchRuleGroup | undefined;
|
|
10671
|
-
/**
|
|
10672
|
-
* <p>A list of explicitly approved patches for the baseline.</p>
|
|
10673
|
-
* @public
|
|
10674
|
-
*/
|
|
10675
|
-
ApprovedPatches?: string[] | undefined;
|
|
10676
|
-
/**
|
|
10677
|
-
* <p>Returns the specified compliance severity level for approved patches in the patch
|
|
10678
|
-
* baseline.</p>
|
|
10679
|
-
* @public
|
|
10680
|
-
*/
|
|
10681
|
-
ApprovedPatchesComplianceLevel?: PatchComplianceLevel | undefined;
|
|
10682
|
-
/**
|
|
10683
|
-
* <p>Indicates whether the list of approved patches includes non-security updates that should be
|
|
10684
|
-
* applied to the managed nodes. The default value is <code>false</code>. Applies to Linux managed
|
|
10685
|
-
* nodes only.</p>
|
|
10686
|
-
* @public
|
|
10687
|
-
*/
|
|
10688
|
-
ApprovedPatchesEnableNonSecurity?: boolean | undefined;
|
|
10689
|
-
/**
|
|
10690
|
-
* <p>A list of explicitly rejected patches for the baseline.</p>
|
|
10691
|
-
* @public
|
|
10692
|
-
*/
|
|
10693
|
-
RejectedPatches?: string[] | undefined;
|
|
10694
|
-
/**
|
|
10695
|
-
* <p>The action specified to take on patches included in the <code>RejectedPatches</code> list. A
|
|
10696
|
-
* patch can be allowed only if it is a dependency of another package, or blocked entirely along
|
|
10697
|
-
* with packages that include it as a dependency.</p>
|
|
10698
|
-
* @public
|
|
10699
|
-
*/
|
|
10700
|
-
RejectedPatchesAction?: PatchAction | undefined;
|
|
10701
|
-
/**
|
|
10702
|
-
* <p>Patch groups included in the patch baseline.</p>
|
|
10703
|
-
* @public
|
|
10704
|
-
*/
|
|
10705
|
-
PatchGroups?: string[] | undefined;
|
|
10706
|
-
/**
|
|
10707
|
-
* <p>The date the patch baseline was created.</p>
|
|
10708
|
-
* @public
|
|
10709
|
-
*/
|
|
10710
|
-
CreatedDate?: Date | undefined;
|
|
10711
|
-
/**
|
|
10712
|
-
* <p>The date the patch baseline was last modified.</p>
|
|
10713
|
-
* @public
|
|
10714
|
-
*/
|
|
10715
|
-
ModifiedDate?: Date | undefined;
|
|
10716
|
-
/**
|
|
10717
|
-
* <p>A description of the patch baseline.</p>
|
|
10718
|
-
* @public
|
|
10719
|
-
*/
|
|
10720
|
-
Description?: string | undefined;
|
|
10721
|
-
/**
|
|
10722
|
-
* <p>Information about the patches to use to update the managed nodes, including target operating
|
|
10723
|
-
* systems and source repositories. Applies to Linux managed nodes only.</p>
|
|
10724
|
-
* @public
|
|
10725
|
-
*/
|
|
10726
|
-
Sources?: PatchSource[] | undefined;
|
|
10727
|
-
/**
|
|
10728
|
-
* <p>Indicates the compliance status of managed nodes for which security-related patches are
|
|
10729
|
-
* available but were not approved. This preference is specified when the
|
|
10730
|
-
* <code>CreatePatchBaseline</code> or <code>UpdatePatchBaseline</code> commands are run.</p>
|
|
10731
|
-
* <p>Applies to Windows Server managed nodes only.</p>
|
|
10732
|
-
* @public
|
|
10733
|
-
*/
|
|
10734
|
-
AvailableSecurityUpdatesComplianceStatus?: PatchComplianceStatus | undefined;
|
|
10735
|
-
}
|
|
10736
|
-
/**
|
|
10737
|
-
* @public
|
|
10738
|
-
*/
|
|
10739
|
-
export interface GetPatchBaselineForPatchGroupRequest {
|
|
10740
|
-
/**
|
|
10741
|
-
* <p>The name of the patch group whose patch baseline should be retrieved.</p>
|
|
10742
|
-
* @public
|
|
10743
|
-
*/
|
|
10744
|
-
PatchGroup: string | undefined;
|
|
10745
|
-
/**
|
|
10746
|
-
* <p>Returns the operating system rule specified for patch groups using the patch
|
|
10747
|
-
* baseline.</p>
|
|
10748
|
-
* @public
|
|
10749
|
-
*/
|
|
10750
|
-
OperatingSystem?: OperatingSystem | undefined;
|
|
10751
|
-
}
|
|
10752
|
-
/**
|
|
10753
|
-
* @public
|
|
10754
|
-
*/
|
|
10755
|
-
export interface GetPatchBaselineForPatchGroupResult {
|
|
10756
|
-
/**
|
|
10757
|
-
* <p>The ID of the patch baseline that should be used for the patch group.</p>
|
|
10758
|
-
* @public
|
|
10759
|
-
*/
|
|
10760
|
-
BaselineId?: string | undefined;
|
|
10761
|
-
/**
|
|
10762
|
-
* <p>The name of the patch group.</p>
|
|
10763
|
-
* @public
|
|
10764
|
-
*/
|
|
10765
|
-
PatchGroup?: string | undefined;
|
|
10766
|
-
/**
|
|
10767
|
-
* <p>The operating system rule specified for patch groups using the patch baseline.</p>
|
|
10768
|
-
* @public
|
|
10769
|
-
*/
|
|
10770
|
-
OperatingSystem?: OperatingSystem | undefined;
|
|
10771
|
-
}
|
|
10772
|
-
/**
|
|
10773
|
-
* @public
|
|
10774
|
-
*/
|
|
10775
|
-
export interface GetResourcePoliciesRequest {
|
|
10776
|
-
/**
|
|
10777
|
-
* <p>Amazon Resource Name (ARN) of the resource to which the policies are attached.</p>
|
|
10778
|
-
* @public
|
|
10779
|
-
*/
|
|
10780
|
-
ResourceArn: string | undefined;
|
|
10781
|
-
/**
|
|
10782
|
-
* <p>A token to start the list. Use this token to get the next set of results.</p>
|
|
10783
|
-
* @public
|
|
10784
|
-
*/
|
|
10785
|
-
NextToken?: string | undefined;
|
|
10786
|
-
/**
|
|
10787
|
-
* <p>The maximum number of items to return for this call. The call also returns a token that you
|
|
10788
|
-
* can specify in a subsequent call to get the next set of results.</p>
|
|
10789
|
-
* @public
|
|
10790
|
-
*/
|
|
10791
|
-
MaxResults?: number | undefined;
|
|
10792
|
-
}
|
|
10793
|
-
/**
|
|
10794
|
-
* <p>A resource policy helps you to define the IAM entity (for example, an
|
|
10795
|
-
* Amazon Web Services account) that can manage your Systems Manager resources. Currently, <code>OpsItemGroup</code> is the
|
|
10796
|
-
* only resource that supports Systems Manager resource policies. The resource policy for
|
|
10797
|
-
* <code>OpsItemGroup</code> enables Amazon Web Services accounts to view and interact with OpsCenter operational
|
|
10798
|
-
* work items (OpsItems).</p>
|
|
10799
|
-
* @public
|
|
10800
|
-
*/
|
|
10801
|
-
export interface GetResourcePoliciesResponseEntry {
|
|
10802
|
-
/**
|
|
10803
|
-
* <p>A policy ID.</p>
|
|
10804
|
-
* @public
|
|
10805
|
-
*/
|
|
10806
|
-
PolicyId?: string | undefined;
|
|
10807
|
-
/**
|
|
10808
|
-
* <p>ID of the current policy version. The hash helps to prevent a situation where multiple users
|
|
10809
|
-
* attempt to overwrite a policy. You must provide this hash when updating or deleting a
|
|
10810
|
-
* policy.</p>
|
|
10811
|
-
* @public
|
|
10812
|
-
*/
|
|
10813
|
-
PolicyHash?: string | undefined;
|
|
10814
|
-
/**
|
|
10815
|
-
* <p>A resource policy helps you to define the IAM entity (for example, an
|
|
10816
|
-
* Amazon Web Services account) that can manage your Systems Manager resources. Currently, <code>OpsItemGroup</code> is the
|
|
10817
|
-
* only resource that supports Systems Manager resource policies. The resource policy for
|
|
10818
|
-
* <code>OpsItemGroup</code> enables Amazon Web Services accounts to view and interact with OpsCenter operational
|
|
10819
|
-
* work items (OpsItems).</p>
|
|
10820
|
-
* @public
|
|
10821
|
-
*/
|
|
10822
|
-
Policy?: string | undefined;
|
|
10823
|
-
}
|
|
10824
|
-
/**
|
|
10825
|
-
* @public
|
|
10826
|
-
*/
|
|
10827
|
-
export interface GetResourcePoliciesResponse {
|
|
10828
|
-
/**
|
|
10829
|
-
* <p>The token for the next set of items to return. Use this token to get the next set of
|
|
10830
|
-
* results.</p>
|
|
10831
|
-
* @public
|
|
10832
|
-
*/
|
|
10833
|
-
NextToken?: string | undefined;
|
|
10834
|
-
/**
|
|
10835
|
-
* <p>An array of the <code>Policy</code> object.</p>
|
|
10836
|
-
* @public
|
|
10837
|
-
*/
|
|
10838
|
-
Policies?: GetResourcePoliciesResponseEntry[] | undefined;
|
|
10839
|
-
}
|
|
10840
|
-
/**
|
|
10841
|
-
* <p>The request body of the GetServiceSetting API operation.</p>
|
|
10842
|
-
* @public
|
|
10843
|
-
*/
|
|
10844
|
-
export interface GetServiceSettingRequest {
|
|
10845
|
-
/**
|
|
10846
|
-
* <p>The ID of the service setting to get. The setting ID can be one of the following.</p>
|
|
10847
|
-
* <ul>
|
|
10848
|
-
* <li>
|
|
10849
|
-
* <p>
|
|
10850
|
-
* <code>/ssm/appmanager/appmanager-enabled</code>
|
|
10851
|
-
* </p>
|
|
10852
|
-
* </li>
|
|
10853
|
-
* <li>
|
|
10854
|
-
* <p>
|
|
10855
|
-
* <code>/ssm/automation/customer-script-log-destination</code>
|
|
10856
|
-
* </p>
|
|
10857
|
-
* </li>
|
|
10858
|
-
* <li>
|
|
10859
|
-
* <p>
|
|
10860
|
-
* <code>/ssm/automation/customer-script-log-group-name</code>
|
|
10861
|
-
* </p>
|
|
10862
|
-
* </li>
|
|
10863
|
-
* <li>
|
|
10864
|
-
* <p>/ssm/automation/enable-adaptive-concurrency</p>
|
|
10865
|
-
* </li>
|
|
10866
|
-
* <li>
|
|
10867
|
-
* <p>
|
|
10868
|
-
* <code>/ssm/documents/console/public-sharing-permission</code>
|
|
10869
|
-
* </p>
|
|
10870
|
-
* </li>
|
|
10871
|
-
* <li>
|
|
10872
|
-
* <p>
|
|
10873
|
-
* <code>/ssm/managed-instance/activation-tier</code>
|
|
10874
|
-
* </p>
|
|
10875
|
-
* </li>
|
|
10876
|
-
* <li>
|
|
10877
|
-
* <p>
|
|
10878
|
-
* <code>/ssm/managed-instance/default-ec2-instance-management-role</code>
|
|
10879
|
-
* </p>
|
|
10880
|
-
* </li>
|
|
10881
|
-
* <li>
|
|
10882
|
-
* <p>
|
|
10883
|
-
* <code>/ssm/opsinsights/opscenter</code>
|
|
10884
|
-
* </p>
|
|
10885
|
-
* </li>
|
|
10886
|
-
* <li>
|
|
10887
|
-
* <p>
|
|
10888
|
-
* <code>/ssm/parameter-store/default-parameter-tier</code>
|
|
10889
|
-
* </p>
|
|
10890
|
-
* </li>
|
|
10891
|
-
* <li>
|
|
10892
|
-
* <p>
|
|
10893
|
-
* <code>/ssm/parameter-store/high-throughput-enabled</code>
|
|
10894
|
-
* </p>
|
|
10895
|
-
* </li>
|
|
10896
|
-
* </ul>
|
|
10897
|
-
* @public
|
|
10898
|
-
*/
|
|
10899
|
-
SettingId: string | undefined;
|
|
10900
|
-
}
|