Skip to content

Commit

Permalink
feat(client-ssm): This Patch Manager release supports creating, updat…
Browse files Browse the repository at this point in the history
…ing, and deleting Patch Baselines for AmazonLinux2023, AlmaLinux.
  • Loading branch information
awstools committed Mar 22, 2023
1 parent bb17cb4 commit 3094ca5
Show file tree
Hide file tree
Showing 4 changed files with 80 additions and 53 deletions.
2 changes: 2 additions & 0 deletions clients/client-ssm/src/models/models_0.ts
Expand Up @@ -3243,9 +3243,11 @@ export interface PatchRuleGroup {
* @public
*/
export enum OperatingSystem {
AlmaLinux = "ALMA_LINUX",
AmazonLinux = "AMAZON_LINUX",
AmazonLinux2 = "AMAZON_LINUX_2",
AmazonLinux2022 = "AMAZON_LINUX_2022",
AmazonLinux2023 = "AMAZON_LINUX_2023",
CentOS = "CENTOS",
Debian = "DEBIAN",
MacOS = "MACOS",
Expand Down
5 changes: 5 additions & 0 deletions clients/client-ssm/src/models/models_1.ts
Expand Up @@ -8565,6 +8565,11 @@ export interface ResetServiceSettingRequest {
* <ul>
* <li>
* <p>
* <code>/ssm/managed-instance/default-ec2-instance-management-role</code>
* </p>
* </li>
* <li>
* <p>
* <code>/ssm/automation/customer-script-log-destination</code>
* </p>
* </li>
Expand Down
12 changes: 10 additions & 2 deletions clients/client-ssm/src/models/models_2.ts
Expand Up @@ -1498,7 +1498,7 @@ export interface UpdateResourceDataSyncResult {}
*/
export interface UpdateServiceSettingRequest {
/**
* <p>The Amazon Resource Name (ARN) of the service setting to reset. For example,
* <p>The Amazon Resource Name (ARN) of the service setting to update. For example,
* <code>arn:aws:ssm:us-east-1:111122223333:servicesetting/ssm/parameter-store/high-throughput-enabled</code>.
* The setting ID can be one of the following.</p>
* <ul>
Expand Down Expand Up @@ -1543,6 +1543,9 @@ export interface UpdateServiceSettingRequest {
* </p>
* </li>
* </ul>
* <note>
* <p>Permissions to update the <code>/ssm/managed-instance/default-ec2-instance-management-role</code> setting should only be provided to administrators. Implement least privilege access when allowing individuals to configure or modify the Default Host Management Configuration.</p>
* </note>
*/
SettingId: string | undefined;

Expand All @@ -1552,12 +1555,17 @@ export interface UpdateServiceSettingRequest {
* <ul>
* <li>
* <p>
* <code>/ssm/managed-instance/default-ec2-instance-management-role: The name of an IAM role</code>
* </p>
* </li>
* <li>
* <p>
* <code>/ssm/automation/customer-script-log-destination</code>: <code>CloudWatch</code>
* </p>
* </li>
* <li>
* <p>
* <code>/ssm/automation/customer-script-log-group-name</code>: the name of an Amazon CloudWatch Logs log group</p>
* <code>/ssm/automation/customer-script-log-group-name</code>: The name of an Amazon CloudWatch Logs log group</p>
* </li>
* <li>
* <p>
Expand Down

0 comments on commit 3094ca5

Please sign in to comment.