aws-sdk-ssm 1.191.0 → 1.193.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ssm/client.rb +149 -22
- data/lib/aws-sdk-ssm/client_api.rb +86 -0
- data/lib/aws-sdk-ssm/errors.rb +78 -0
- data/lib/aws-sdk-ssm/types.rb +277 -11
- data/lib/aws-sdk-ssm.rb +1 -1
- data/sig/client.rbs +45 -6
- data/sig/errors.rbs +15 -0
- data/sig/types.rbs +71 -12
- metadata +2 -2
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA256:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: d67c8d163adf40a5061905786654e7ae1e867820de5cdfdb4ca932350d648a23
         | 
| 4 | 
            +
              data.tar.gz: 2210b47d591cb0a59abf0415fae41adc998e8d98692928b700036741bc1ea52f
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: 5ecb334953eb771f9a1f773ad30158bcde0aabe89e5e3858597c6402d31ccb1d1799f0e10065fede8110297d793cd23e01c501e46ebdd401a8c89dd93f3b0584
         | 
| 7 | 
            +
              data.tar.gz: 1cb0e57e68ef91960d2e24c962eda8af4770c2fadf1d53d1962a5ec6023d87591e263e2013fa8d4bab020db0d4a9ceca7cb54f6a3b8f9d4e9ec9a04f9663198c
         | 
    
        data/CHANGELOG.md
    CHANGED
    
    | @@ -1,6 +1,16 @@ | |
| 1 1 | 
             
            Unreleased Changes
         | 
| 2 2 | 
             
            ------------------
         | 
| 3 3 |  | 
| 4 | 
            +
            1.193.0 (2025-04-29)
         | 
| 5 | 
            +
            ------------------
         | 
| 6 | 
            +
             | 
| 7 | 
            +
            * Feature - This release adds support for just-In-time node access in AWS Systems Manager. Just-in-time node access enables customers to move towards zero standing privileges by requiring operators to request access and obtain approval before remotely connecting to nodes managed by the SSM Agent.
         | 
| 8 | 
            +
             | 
| 9 | 
            +
            1.192.0 (2025-03-24)
         | 
| 10 | 
            +
            ------------------
         | 
| 11 | 
            +
             | 
| 12 | 
            +
            * Feature - This release adds the AvailableSecurityUpdatesComplianceStatus field to patch baseline operations, as well as the AvailableSecurityUpdateCount and InstancesWithAvailableSecurityUpdates to patch state operations. Applies to Windows Server managed nodes only.
         | 
| 13 | 
            +
             | 
| 4 14 | 
             
            1.191.0 (2025-02-28)
         | 
| 5 15 | 
             
            ------------------
         | 
| 6 16 |  | 
    
        data/VERSION
    CHANGED
    
    | @@ -1 +1 @@ | |
| 1 | 
            -
            1. | 
| 1 | 
            +
            1.193.0
         | 
    
        data/lib/aws-sdk-ssm/client.rb
    CHANGED
    
    | @@ -1611,7 +1611,7 @@ module Aws::SSM | |
| 1611 1611 | 
             
                #     name: "DocumentName", # required
         | 
| 1612 1612 | 
             
                #     display_name: "DocumentDisplayName",
         | 
| 1613 1613 | 
             
                #     version_name: "DocumentVersionName",
         | 
| 1614 | 
            -
                #     document_type: "Command", # accepts Command, Policy, Automation, Session, Package, ApplicationConfiguration, ApplicationConfigurationSchema, DeploymentStrategy, ChangeCalendar, Automation.ChangeTemplate, ProblemAnalysis, ProblemAnalysisTemplate, CloudFormation, ConformancePackTemplate, QuickSetup
         | 
| 1614 | 
            +
                #     document_type: "Command", # accepts Command, Policy, Automation, Session, Package, ApplicationConfiguration, ApplicationConfigurationSchema, DeploymentStrategy, ChangeCalendar, Automation.ChangeTemplate, ProblemAnalysis, ProblemAnalysisTemplate, CloudFormation, ConformancePackTemplate, QuickSetup, ManualApprovalPolicy, AutoApprovalPolicy
         | 
| 1615 1615 | 
             
                #     document_format: "YAML", # accepts YAML, JSON, TEXT
         | 
| 1616 1616 | 
             
                #     target_type: "TargetType",
         | 
| 1617 1617 | 
             
                #     tags: [
         | 
| @@ -1643,7 +1643,7 @@ module Aws::SSM | |
| 1643 1643 | 
             
                #   resp.document_description.parameters[0].default_value #=> String
         | 
| 1644 1644 | 
             
                #   resp.document_description.platform_types #=> Array
         | 
| 1645 1645 | 
             
                #   resp.document_description.platform_types[0] #=> String, one of "Windows", "Linux", "MacOS"
         | 
| 1646 | 
            -
                #   resp.document_description.document_type #=> String, one of "Command", "Policy", "Automation", "Session", "Package", "ApplicationConfiguration", "ApplicationConfigurationSchema", "DeploymentStrategy", "ChangeCalendar", "Automation.ChangeTemplate", "ProblemAnalysis", "ProblemAnalysisTemplate", "CloudFormation", "ConformancePackTemplate", "QuickSetup"
         | 
| 1646 | 
            +
                #   resp.document_description.document_type #=> String, one of "Command", "Policy", "Automation", "Session", "Package", "ApplicationConfiguration", "ApplicationConfigurationSchema", "DeploymentStrategy", "ChangeCalendar", "Automation.ChangeTemplate", "ProblemAnalysis", "ProblemAnalysisTemplate", "CloudFormation", "ConformancePackTemplate", "QuickSetup", "ManualApprovalPolicy", "AutoApprovalPolicy"
         | 
| 1647 1647 | 
             
                #   resp.document_description.schema_version #=> String
         | 
| 1648 1648 | 
             
                #   resp.document_description.latest_version #=> String
         | 
| 1649 1649 | 
             
                #   resp.document_description.default_version #=> String
         | 
| @@ -2177,6 +2177,20 @@ module Aws::SSM | |
| 2177 2177 | 
             
                #   including target operating systems and source repositories. Applies to
         | 
| 2178 2178 | 
             
                #   Linux managed nodes only.
         | 
| 2179 2179 | 
             
                #
         | 
| 2180 | 
            +
                # @option params [String] :available_security_updates_compliance_status
         | 
| 2181 | 
            +
                #   Indicates the status you want to assign to security patches that are
         | 
| 2182 | 
            +
                #   available but not approved because they don't meet the installation
         | 
| 2183 | 
            +
                #   criteria specified in the patch baseline.
         | 
| 2184 | 
            +
                #
         | 
| 2185 | 
            +
                #   Example scenario: Security patches that you might want installed can
         | 
| 2186 | 
            +
                #   be skipped if you have specified a long period to wait after a patch
         | 
| 2187 | 
            +
                #   is released before installation. If an update to the patch is released
         | 
| 2188 | 
            +
                #   during your specified waiting period, the waiting period for
         | 
| 2189 | 
            +
                #   installing the patch starts over. If the waiting period is too long,
         | 
| 2190 | 
            +
                #   multiple versions of the patch could be released but never installed.
         | 
| 2191 | 
            +
                #
         | 
| 2192 | 
            +
                #   Supported for Windows Server managed nodes only.
         | 
| 2193 | 
            +
                #
         | 
| 2180 2194 | 
             
                # @option params [String] :client_token
         | 
| 2181 2195 | 
             
                #   User-provided idempotency token.
         | 
| 2182 2196 | 
             
                #
         | 
| @@ -2248,6 +2262,7 @@ module Aws::SSM | |
| 2248 2262 | 
             
                #         configuration: "PatchSourceConfiguration", # required
         | 
| 2249 2263 | 
             
                #       },
         | 
| 2250 2264 | 
             
                #     ],
         | 
| 2265 | 
            +
                #     available_security_updates_compliance_status: "COMPLIANT", # accepts COMPLIANT, NON_COMPLIANT
         | 
| 2251 2266 | 
             
                #     client_token: "ClientToken",
         | 
| 2252 2267 | 
             
                #     tags: [
         | 
| 2253 2268 | 
             
                #       {
         | 
| @@ -3382,7 +3397,7 @@ module Aws::SSM | |
| 3382 3397 | 
             
                #   resp.automation_execution_metadata_list[0].triggered_alarms[0].name #=> String
         | 
| 3383 3398 | 
             
                #   resp.automation_execution_metadata_list[0].triggered_alarms[0].state #=> String, one of "UNKNOWN", "ALARM"
         | 
| 3384 3399 | 
             
                #   resp.automation_execution_metadata_list[0].target_locations_url #=> String
         | 
| 3385 | 
            -
                #   resp.automation_execution_metadata_list[0].automation_subtype #=> String, one of "ChangeRequest"
         | 
| 3400 | 
            +
                #   resp.automation_execution_metadata_list[0].automation_subtype #=> String, one of "ChangeRequest", "AccessRequest"
         | 
| 3386 3401 | 
             
                #   resp.automation_execution_metadata_list[0].scheduled_time #=> Time
         | 
| 3387 3402 | 
             
                #   resp.automation_execution_metadata_list[0].runbooks #=> Array
         | 
| 3388 3403 | 
             
                #   resp.automation_execution_metadata_list[0].runbooks[0].document_name #=> String
         | 
| @@ -3772,7 +3787,7 @@ module Aws::SSM | |
| 3772 3787 | 
             
                #   resp.document.parameters[0].default_value #=> String
         | 
| 3773 3788 | 
             
                #   resp.document.platform_types #=> Array
         | 
| 3774 3789 | 
             
                #   resp.document.platform_types[0] #=> String, one of "Windows", "Linux", "MacOS"
         | 
| 3775 | 
            -
                #   resp.document.document_type #=> String, one of "Command", "Policy", "Automation", "Session", "Package", "ApplicationConfiguration", "ApplicationConfigurationSchema", "DeploymentStrategy", "ChangeCalendar", "Automation.ChangeTemplate", "ProblemAnalysis", "ProblemAnalysisTemplate", "CloudFormation", "ConformancePackTemplate", "QuickSetup"
         | 
| 3790 | 
            +
                #   resp.document.document_type #=> String, one of "Command", "Policy", "Automation", "Session", "Package", "ApplicationConfiguration", "ApplicationConfigurationSchema", "DeploymentStrategy", "ChangeCalendar", "Automation.ChangeTemplate", "ProblemAnalysis", "ProblemAnalysisTemplate", "CloudFormation", "ConformancePackTemplate", "QuickSetup", "ManualApprovalPolicy", "AutoApprovalPolicy"
         | 
| 3776 3791 | 
             
                #   resp.document.schema_version #=> String
         | 
| 3777 3792 | 
             
                #   resp.document.latest_version #=> String
         | 
| 3778 3793 | 
             
                #   resp.document.default_version #=> String
         | 
| @@ -4191,6 +4206,7 @@ module Aws::SSM | |
| 4191 4206 | 
             
                #   resp.instance_patch_states[0].failed_count #=> Integer
         | 
| 4192 4207 | 
             
                #   resp.instance_patch_states[0].unreported_not_applicable_count #=> Integer
         | 
| 4193 4208 | 
             
                #   resp.instance_patch_states[0].not_applicable_count #=> Integer
         | 
| 4209 | 
            +
                #   resp.instance_patch_states[0].available_security_update_count #=> Integer
         | 
| 4194 4210 | 
             
                #   resp.instance_patch_states[0].operation_start_time #=> Time
         | 
| 4195 4211 | 
             
                #   resp.instance_patch_states[0].operation_end_time #=> Time
         | 
| 4196 4212 | 
             
                #   resp.instance_patch_states[0].operation #=> String, one of "Scan", "Install"
         | 
| @@ -4272,6 +4288,7 @@ module Aws::SSM | |
| 4272 4288 | 
             
                #   resp.instance_patch_states[0].failed_count #=> Integer
         | 
| 4273 4289 | 
             
                #   resp.instance_patch_states[0].unreported_not_applicable_count #=> Integer
         | 
| 4274 4290 | 
             
                #   resp.instance_patch_states[0].not_applicable_count #=> Integer
         | 
| 4291 | 
            +
                #   resp.instance_patch_states[0].available_security_update_count #=> Integer
         | 
| 4275 4292 | 
             
                #   resp.instance_patch_states[0].operation_start_time #=> Time
         | 
| 4276 4293 | 
             
                #   resp.instance_patch_states[0].operation_end_time #=> Time
         | 
| 4277 4294 | 
             
                #   resp.instance_patch_states[0].operation #=> String, one of "Scan", "Install"
         | 
| @@ -4363,7 +4380,7 @@ module Aws::SSM | |
| 4363 4380 | 
             
                #   resp.patches[0].kb_id #=> String
         | 
| 4364 4381 | 
             
                #   resp.patches[0].classification #=> String
         | 
| 4365 4382 | 
             
                #   resp.patches[0].severity #=> String
         | 
| 4366 | 
            -
                #   resp.patches[0].state #=> String, one of "INSTALLED", "INSTALLED_OTHER", "INSTALLED_PENDING_REBOOT", "INSTALLED_REJECTED", "MISSING", "NOT_APPLICABLE", "FAILED"
         | 
| 4383 | 
            +
                #   resp.patches[0].state #=> String, one of "INSTALLED", "INSTALLED_OTHER", "INSTALLED_PENDING_REBOOT", "INSTALLED_REJECTED", "MISSING", "NOT_APPLICABLE", "FAILED", "AVAILABLE_SECURITY_UPDATE"
         | 
| 4367 4384 | 
             
                #   resp.patches[0].installed_time #=> Time
         | 
| 4368 4385 | 
             
                #   resp.patches[0].cve_ids #=> String
         | 
| 4369 4386 | 
             
                #   resp.next_token #=> String
         | 
| @@ -5177,7 +5194,7 @@ module Aws::SSM | |
| 5177 5194 | 
             
                #   resp = client.describe_ops_items({
         | 
| 5178 5195 | 
             
                #     ops_item_filters: [
         | 
| 5179 5196 | 
             
                #       {
         | 
| 5180 | 
            -
                #         key: "Status", # required, accepts Status, CreatedBy, Source, Priority, Title, OpsItemId, CreatedTime, LastModifiedTime, ActualStartTime, ActualEndTime, PlannedStartTime, PlannedEndTime, OperationalData, OperationalDataKey, OperationalDataValue, ResourceId, AutomationId, Category, Severity, OpsItemType, ChangeRequestByRequesterArn, ChangeRequestByRequesterName, ChangeRequestByApproverArn, ChangeRequestByApproverName, ChangeRequestByTemplate, ChangeRequestByTargetsResourceGroup, InsightByType, AccountId
         | 
| 5197 | 
            +
                #         key: "Status", # required, accepts Status, CreatedBy, Source, Priority, Title, OpsItemId, CreatedTime, LastModifiedTime, ActualStartTime, ActualEndTime, PlannedStartTime, PlannedEndTime, OperationalData, OperationalDataKey, OperationalDataValue, ResourceId, AutomationId, Category, Severity, OpsItemType, AccessRequestByRequesterArn, AccessRequestByRequesterId, AccessRequestByApproverArn, AccessRequestByApproverId, AccessRequestBySourceAccountId, AccessRequestBySourceOpsItemId, AccessRequestBySourceRegion, AccessRequestByIsReplica, AccessRequestByTargetResourceId, ChangeRequestByRequesterArn, ChangeRequestByRequesterName, ChangeRequestByApproverArn, ChangeRequestByApproverName, ChangeRequestByTemplate, ChangeRequestByTargetsResourceGroup, InsightByType, AccountId
         | 
| 5181 5198 | 
             
                #         values: ["OpsItemFilterValue"], # required
         | 
| 5182 5199 | 
             
                #         operator: "Equal", # required, accepts Equal, Contains, GreaterThan, LessThan
         | 
| 5183 5200 | 
             
                #       },
         | 
| @@ -5196,7 +5213,7 @@ module Aws::SSM | |
| 5196 5213 | 
             
                #   resp.ops_item_summaries[0].last_modified_time #=> Time
         | 
| 5197 5214 | 
             
                #   resp.ops_item_summaries[0].priority #=> Integer
         | 
| 5198 5215 | 
             
                #   resp.ops_item_summaries[0].source #=> String
         | 
| 5199 | 
            -
                #   resp.ops_item_summaries[0].status #=> String, one of "Open", "InProgress", "Resolved", "Pending", "TimedOut", "Cancelling", "Cancelled", "Failed", "CompletedWithSuccess", "CompletedWithFailure", "Scheduled", "RunbookInProgress", "PendingChangeCalendarOverride", "ChangeCalendarOverrideApproved", "ChangeCalendarOverrideRejected", "PendingApproval", "Approved", "Rejected", "Closed"
         | 
| 5216 | 
            +
                #   resp.ops_item_summaries[0].status #=> String, one of "Open", "InProgress", "Resolved", "Pending", "TimedOut", "Cancelling", "Cancelled", "Failed", "CompletedWithSuccess", "CompletedWithFailure", "Scheduled", "RunbookInProgress", "PendingChangeCalendarOverride", "ChangeCalendarOverrideApproved", "ChangeCalendarOverrideRejected", "PendingApproval", "Approved", "Revoked", "Rejected", "Closed"
         | 
| 5200 5217 | 
             
                #   resp.ops_item_summaries[0].ops_item_id #=> String
         | 
| 5201 5218 | 
             
                #   resp.ops_item_summaries[0].title #=> String
         | 
| 5202 5219 | 
             
                #   resp.ops_item_summaries[0].operational_data #=> Hash
         | 
| @@ -5419,6 +5436,7 @@ module Aws::SSM | |
| 5419 5436 | 
             
                #   * {Types::DescribePatchGroupStateResult#instances_with_critical_non_compliant_patches #instances_with_critical_non_compliant_patches} => Integer
         | 
| 5420 5437 | 
             
                #   * {Types::DescribePatchGroupStateResult#instances_with_security_non_compliant_patches #instances_with_security_non_compliant_patches} => Integer
         | 
| 5421 5438 | 
             
                #   * {Types::DescribePatchGroupStateResult#instances_with_other_non_compliant_patches #instances_with_other_non_compliant_patches} => Integer
         | 
| 5439 | 
            +
                #   * {Types::DescribePatchGroupStateResult#instances_with_available_security_updates #instances_with_available_security_updates} => Integer
         | 
| 5422 5440 | 
             
                #
         | 
| 5423 5441 | 
             
                # @example Request syntax with placeholder values
         | 
| 5424 5442 | 
             
                #
         | 
| @@ -5440,6 +5458,7 @@ module Aws::SSM | |
| 5440 5458 | 
             
                #   resp.instances_with_critical_non_compliant_patches #=> Integer
         | 
| 5441 5459 | 
             
                #   resp.instances_with_security_non_compliant_patches #=> Integer
         | 
| 5442 5460 | 
             
                #   resp.instances_with_other_non_compliant_patches #=> Integer
         | 
| 5461 | 
            +
                #   resp.instances_with_available_security_updates #=> Integer
         | 
| 5443 5462 | 
             
                #
         | 
| 5444 5463 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribePatchGroupState AWS API Documentation
         | 
| 5445 5464 | 
             
                #
         | 
| @@ -5718,6 +5737,39 @@ module Aws::SSM | |
| 5718 5737 | 
             
                  req.send_request(options)
         | 
| 5719 5738 | 
             
                end
         | 
| 5720 5739 |  | 
| 5740 | 
            +
                # Returns a credentials set to be used with just-in-time node access.
         | 
| 5741 | 
            +
                #
         | 
| 5742 | 
            +
                # @option params [required, String] :access_request_id
         | 
| 5743 | 
            +
                #   The ID of a just-in-time node access request.
         | 
| 5744 | 
            +
                #
         | 
| 5745 | 
            +
                # @return [Types::GetAccessTokenResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
         | 
| 5746 | 
            +
                #
         | 
| 5747 | 
            +
                #   * {Types::GetAccessTokenResponse#credentials #credentials} => Types::Credentials
         | 
| 5748 | 
            +
                #   * {Types::GetAccessTokenResponse#access_request_status #access_request_status} => String
         | 
| 5749 | 
            +
                #
         | 
| 5750 | 
            +
                # @example Request syntax with placeholder values
         | 
| 5751 | 
            +
                #
         | 
| 5752 | 
            +
                #   resp = client.get_access_token({
         | 
| 5753 | 
            +
                #     access_request_id: "AccessRequestId", # required
         | 
| 5754 | 
            +
                #   })
         | 
| 5755 | 
            +
                #
         | 
| 5756 | 
            +
                # @example Response structure
         | 
| 5757 | 
            +
                #
         | 
| 5758 | 
            +
                #   resp.credentials.access_key_id #=> String
         | 
| 5759 | 
            +
                #   resp.credentials.secret_access_key #=> String
         | 
| 5760 | 
            +
                #   resp.credentials.session_token #=> String
         | 
| 5761 | 
            +
                #   resp.credentials.expiration_time #=> Time
         | 
| 5762 | 
            +
                #   resp.access_request_status #=> String, one of "Approved", "Rejected", "Revoked", "Expired", "Pending"
         | 
| 5763 | 
            +
                #
         | 
| 5764 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetAccessToken AWS API Documentation
         | 
| 5765 | 
            +
                #
         | 
| 5766 | 
            +
                # @overload get_access_token(params = {})
         | 
| 5767 | 
            +
                # @param [Hash] params ({})
         | 
| 5768 | 
            +
                def get_access_token(params = {}, options = {})
         | 
| 5769 | 
            +
                  req = build_request(:get_access_token, params)
         | 
| 5770 | 
            +
                  req.send_request(options)
         | 
| 5771 | 
            +
                end
         | 
| 5772 | 
            +
             | 
| 5721 5773 | 
             
                # Get detailed information about a particular Automation execution.
         | 
| 5722 5774 | 
             
                #
         | 
| 5723 5775 | 
             
                # @option params [required, String] :automation_execution_id
         | 
| @@ -5865,7 +5917,7 @@ module Aws::SSM | |
| 5865 5917 | 
             
                #   resp.automation_execution.triggered_alarms[0].name #=> String
         | 
| 5866 5918 | 
             
                #   resp.automation_execution.triggered_alarms[0].state #=> String, one of "UNKNOWN", "ALARM"
         | 
| 5867 5919 | 
             
                #   resp.automation_execution.target_locations_url #=> String
         | 
| 5868 | 
            -
                #   resp.automation_execution.automation_subtype #=> String, one of "ChangeRequest"
         | 
| 5920 | 
            +
                #   resp.automation_execution.automation_subtype #=> String, one of "ChangeRequest", "AccessRequest"
         | 
| 5869 5921 | 
             
                #   resp.automation_execution.scheduled_time #=> Time
         | 
| 5870 5922 | 
             
                #   resp.automation_execution.runbooks #=> Array
         | 
| 5871 5923 | 
             
                #   resp.automation_execution.runbooks[0].document_name #=> String
         | 
| @@ -6231,6 +6283,7 @@ module Aws::SSM | |
| 6231 6283 | 
             
                #           configuration: "PatchSourceConfiguration", # required
         | 
| 6232 6284 | 
             
                #         },
         | 
| 6233 6285 | 
             
                #       ],
         | 
| 6286 | 
            +
                #       available_security_updates_compliance_status: "COMPLIANT", # accepts COMPLIANT, NON_COMPLIANT
         | 
| 6234 6287 | 
             
                #     },
         | 
| 6235 6288 | 
             
                #   })
         | 
| 6236 6289 | 
             
                #
         | 
| @@ -6303,7 +6356,7 @@ module Aws::SSM | |
| 6303 6356 | 
             
                #   resp.status #=> String, one of "Creating", "Active", "Updating", "Deleting", "Failed"
         | 
| 6304 6357 | 
             
                #   resp.status_information #=> String
         | 
| 6305 6358 | 
             
                #   resp.content #=> String
         | 
| 6306 | 
            -
                #   resp.document_type #=> String, one of "Command", "Policy", "Automation", "Session", "Package", "ApplicationConfiguration", "ApplicationConfigurationSchema", "DeploymentStrategy", "ChangeCalendar", "Automation.ChangeTemplate", "ProblemAnalysis", "ProblemAnalysisTemplate", "CloudFormation", "ConformancePackTemplate", "QuickSetup"
         | 
| 6359 | 
            +
                #   resp.document_type #=> String, one of "Command", "Policy", "Automation", "Session", "Package", "ApplicationConfiguration", "ApplicationConfigurationSchema", "DeploymentStrategy", "ChangeCalendar", "Automation.ChangeTemplate", "ProblemAnalysis", "ProblemAnalysisTemplate", "CloudFormation", "ConformancePackTemplate", "QuickSetup", "ManualApprovalPolicy", "AutoApprovalPolicy"
         | 
| 6307 6360 | 
             
                #   resp.document_format #=> String, one of "YAML", "JSON", "TEXT"
         | 
| 6308 6361 | 
             
                #   resp.requires #=> Array
         | 
| 6309 6362 | 
             
                #   resp.requires[0].name #=> String
         | 
| @@ -6935,7 +6988,7 @@ module Aws::SSM | |
| 6935 6988 | 
             
                #   resp.ops_item.priority #=> Integer
         | 
| 6936 6989 | 
             
                #   resp.ops_item.related_ops_items #=> Array
         | 
| 6937 6990 | 
             
                #   resp.ops_item.related_ops_items[0].ops_item_id #=> String
         | 
| 6938 | 
            -
                #   resp.ops_item.status #=> String, one of "Open", "InProgress", "Resolved", "Pending", "TimedOut", "Cancelling", "Cancelled", "Failed", "CompletedWithSuccess", "CompletedWithFailure", "Scheduled", "RunbookInProgress", "PendingChangeCalendarOverride", "ChangeCalendarOverrideApproved", "ChangeCalendarOverrideRejected", "PendingApproval", "Approved", "Rejected", "Closed"
         | 
| 6991 | 
            +
                #   resp.ops_item.status #=> String, one of "Open", "InProgress", "Resolved", "Pending", "TimedOut", "Cancelling", "Cancelled", "Failed", "CompletedWithSuccess", "CompletedWithFailure", "Scheduled", "RunbookInProgress", "PendingChangeCalendarOverride", "ChangeCalendarOverrideApproved", "ChangeCalendarOverrideRejected", "PendingApproval", "Approved", "Revoked", "Rejected", "Closed"
         | 
| 6939 6992 | 
             
                #   resp.ops_item.ops_item_id #=> String
         | 
| 6940 6993 | 
             
                #   resp.ops_item.version #=> String
         | 
| 6941 6994 | 
             
                #   resp.ops_item.title #=> String
         | 
| @@ -7434,6 +7487,7 @@ module Aws::SSM | |
| 7434 7487 | 
             
                #   * {Types::GetPatchBaselineResult#modified_date #modified_date} => Time
         | 
| 7435 7488 | 
             
                #   * {Types::GetPatchBaselineResult#description #description} => String
         | 
| 7436 7489 | 
             
                #   * {Types::GetPatchBaselineResult#sources #sources} => Array<Types::PatchSource>
         | 
| 7490 | 
            +
                #   * {Types::GetPatchBaselineResult#available_security_updates_compliance_status #available_security_updates_compliance_status} => String
         | 
| 7437 7491 | 
             
                #
         | 
| 7438 7492 | 
             
                # @example Request syntax with placeholder values
         | 
| 7439 7493 | 
             
                #
         | 
| @@ -7476,6 +7530,7 @@ module Aws::SSM | |
| 7476 7530 | 
             
                #   resp.sources[0].products #=> Array
         | 
| 7477 7531 | 
             
                #   resp.sources[0].products[0] #=> String
         | 
| 7478 7532 | 
             
                #   resp.sources[0].configuration #=> String
         | 
| 7533 | 
            +
                #   resp.available_security_updates_compliance_status #=> String, one of "COMPLIANT", "NON_COMPLIANT"
         | 
| 7479 7534 | 
             
                #
         | 
| 7480 7535 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetPatchBaseline AWS API Documentation
         | 
| 7481 7536 | 
             
                #
         | 
| @@ -8428,7 +8483,7 @@ module Aws::SSM | |
| 8428 8483 | 
             
                #   resp.document_identifiers[0].platform_types #=> Array
         | 
| 8429 8484 | 
             
                #   resp.document_identifiers[0].platform_types[0] #=> String, one of "Windows", "Linux", "MacOS"
         | 
| 8430 8485 | 
             
                #   resp.document_identifiers[0].document_version #=> String
         | 
| 8431 | 
            -
                #   resp.document_identifiers[0].document_type #=> String, one of "Command", "Policy", "Automation", "Session", "Package", "ApplicationConfiguration", "ApplicationConfigurationSchema", "DeploymentStrategy", "ChangeCalendar", "Automation.ChangeTemplate", "ProblemAnalysis", "ProblemAnalysisTemplate", "CloudFormation", "ConformancePackTemplate", "QuickSetup"
         | 
| 8486 | 
            +
                #   resp.document_identifiers[0].document_type #=> String, one of "Command", "Policy", "Automation", "Session", "Package", "ApplicationConfiguration", "ApplicationConfigurationSchema", "DeploymentStrategy", "ChangeCalendar", "Automation.ChangeTemplate", "ProblemAnalysis", "ProblemAnalysisTemplate", "CloudFormation", "ConformancePackTemplate", "QuickSetup", "ManualApprovalPolicy", "AutoApprovalPolicy"
         | 
| 8432 8487 | 
             
                #   resp.document_identifiers[0].schema_version #=> String
         | 
| 8433 8488 | 
             
                #   resp.document_identifiers[0].document_format #=> String, one of "YAML", "JSON", "TEXT"
         | 
| 8434 8489 | 
             
                #   resp.document_identifiers[0].target_type #=> String
         | 
| @@ -9159,14 +9214,17 @@ module Aws::SSM | |
| 9159 9214 | 
             
                #
         | 
| 9160 9215 | 
             
                # @option params [Array<String>] :account_ids_to_add
         | 
| 9161 9216 | 
             
                #   The Amazon Web Services users that should have access to the document.
         | 
| 9162 | 
            -
                #   The account IDs can either be a group of account IDs or *All*.
         | 
| 9217 | 
            +
                #   The account IDs can either be a group of account IDs or *All*. You
         | 
| 9218 | 
            +
                #   must specify a value for this parameter or the `AccountIdsToRemove`
         | 
| 9219 | 
            +
                #   parameter.
         | 
| 9163 9220 | 
             
                #
         | 
| 9164 9221 | 
             
                # @option params [Array<String>] :account_ids_to_remove
         | 
| 9165 9222 | 
             
                #   The Amazon Web Services users that should no longer have access to the
         | 
| 9166 9223 | 
             
                #   document. The Amazon Web Services user can either be a group of
         | 
| 9167 9224 | 
             
                #   account IDs or *All*. This action has a higher priority than
         | 
| 9168 9225 | 
             
                #   `AccountIdsToAdd`. If you specify an ID to add and the same ID to
         | 
| 9169 | 
            -
                #   remove, the system removes access to the document.
         | 
| 9226 | 
            +
                #   remove, the system removes access to the document. You must specify a
         | 
| 9227 | 
            +
                #   value for this parameter or the `AccountIdsToAdd` parameter.
         | 
| 9170 9228 | 
             
                #
         | 
| 9171 9229 | 
             
                # @option params [String] :shared_document_version
         | 
| 9172 9230 | 
             
                #   (Optional) The version of the document to share. If it isn't
         | 
| @@ -9409,11 +9467,16 @@ module Aws::SSM | |
| 9409 9467 | 
             
                #   [Creating Systems Manager parameters][1] in the *Amazon Web Services
         | 
| 9410 9468 | 
             
                #   Systems Manager User Guide*.
         | 
| 9411 9469 | 
             
                #
         | 
| 9412 | 
            -
                #   <note markdown="1"> The maximum length  | 
| 9413 | 
            -
                #   1037 characters reserved for internal use by Systems | 
| 9414 | 
            -
                #   maximum length for a parameter name that you  | 
| 9415 | 
            -
                #   characters. | 
| 9416 | 
            -
                # | 
| 9470 | 
            +
                #   <note markdown="1"> The reported maximum length of 2048 characters for a parameter name
         | 
| 9471 | 
            +
                #   includes 1037 characters that are reserved for internal use by Systems
         | 
| 9472 | 
            +
                #   Manager. The maximum length for a parameter name that you specify is
         | 
| 9473 | 
            +
                #   1011 characters.
         | 
| 9474 | 
            +
                #
         | 
| 9475 | 
            +
                #    This count of 1011 characters includes the characters in the ARN that
         | 
| 9476 | 
            +
                #   precede the name you specify. This ARN length will vary depending on
         | 
| 9477 | 
            +
                #   your partition and Region. For example, the following 45 characters
         | 
| 9478 | 
            +
                #   count toward the 1011 character maximum for a parameter created in the
         | 
| 9479 | 
            +
                #   US East (Ohio) Region:
         | 
| 9417 9480 | 
             
                #   `arn:aws:ssm:us-east-2:111122223333:parameter/`.
         | 
| 9418 9481 | 
             
                #
         | 
| 9419 9482 | 
             
                #    </note>
         | 
| @@ -10417,7 +10480,7 @@ module Aws::SSM | |
| 10417 10480 | 
             
                #
         | 
| 10418 10481 | 
             
                #   resp = client.send_automation_signal({
         | 
| 10419 10482 | 
             
                #     automation_execution_id: "AutomationExecutionId", # required
         | 
| 10420 | 
            -
                #     signal_type: "Approve", # required, accepts Approve, Reject, StartStep, StopStep, Resume
         | 
| 10483 | 
            +
                #     signal_type: "Approve", # required, accepts Approve, Reject, StartStep, StopStep, Resume, Revoke
         | 
| 10421 10484 | 
             
                #     payload: {
         | 
| 10422 10485 | 
             
                #       "AutomationParameterKey" => ["AutomationParameterValue"],
         | 
| 10423 10486 | 
             
                #     },
         | 
| @@ -10691,6 +10754,53 @@ module Aws::SSM | |
| 10691 10754 | 
             
                  req.send_request(options)
         | 
| 10692 10755 | 
             
                end
         | 
| 10693 10756 |  | 
| 10757 | 
            +
                # Starts the workflow for just-in-time node access sessions.
         | 
| 10758 | 
            +
                #
         | 
| 10759 | 
            +
                # @option params [required, String] :reason
         | 
| 10760 | 
            +
                #   A brief description explaining why you are requesting access to the
         | 
| 10761 | 
            +
                #   node.
         | 
| 10762 | 
            +
                #
         | 
| 10763 | 
            +
                # @option params [required, Array<Types::Target>] :targets
         | 
| 10764 | 
            +
                #   The node you are requesting access to.
         | 
| 10765 | 
            +
                #
         | 
| 10766 | 
            +
                # @option params [Array<Types::Tag>] :tags
         | 
| 10767 | 
            +
                #   Key-value pairs of metadata you want to assign to the access request.
         | 
| 10768 | 
            +
                #
         | 
| 10769 | 
            +
                # @return [Types::StartAccessRequestResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
         | 
| 10770 | 
            +
                #
         | 
| 10771 | 
            +
                #   * {Types::StartAccessRequestResponse#access_request_id #access_request_id} => String
         | 
| 10772 | 
            +
                #
         | 
| 10773 | 
            +
                # @example Request syntax with placeholder values
         | 
| 10774 | 
            +
                #
         | 
| 10775 | 
            +
                #   resp = client.start_access_request({
         | 
| 10776 | 
            +
                #     reason: "String1to256", # required
         | 
| 10777 | 
            +
                #     targets: [ # required
         | 
| 10778 | 
            +
                #       {
         | 
| 10779 | 
            +
                #         key: "TargetKey",
         | 
| 10780 | 
            +
                #         values: ["TargetValue"],
         | 
| 10781 | 
            +
                #       },
         | 
| 10782 | 
            +
                #     ],
         | 
| 10783 | 
            +
                #     tags: [
         | 
| 10784 | 
            +
                #       {
         | 
| 10785 | 
            +
                #         key: "TagKey", # required
         | 
| 10786 | 
            +
                #         value: "TagValue", # required
         | 
| 10787 | 
            +
                #       },
         | 
| 10788 | 
            +
                #     ],
         | 
| 10789 | 
            +
                #   })
         | 
| 10790 | 
            +
                #
         | 
| 10791 | 
            +
                # @example Response structure
         | 
| 10792 | 
            +
                #
         | 
| 10793 | 
            +
                #   resp.access_request_id #=> String
         | 
| 10794 | 
            +
                #
         | 
| 10795 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/StartAccessRequest AWS API Documentation
         | 
| 10796 | 
            +
                #
         | 
| 10797 | 
            +
                # @overload start_access_request(params = {})
         | 
| 10798 | 
            +
                # @param [Hash] params ({})
         | 
| 10799 | 
            +
                def start_access_request(params = {}, options = {})
         | 
| 10800 | 
            +
                  req = build_request(:start_access_request, params)
         | 
| 10801 | 
            +
                  req.send_request(options)
         | 
| 10802 | 
            +
                end
         | 
| 10803 | 
            +
             | 
| 10694 10804 | 
             
                # Runs an association immediately and only one time. This operation can
         | 
| 10695 10805 | 
             
                # be helpful when troubleshooting associations.
         | 
| 10696 10806 | 
             
                #
         | 
| @@ -11977,7 +12087,7 @@ module Aws::SSM | |
| 11977 12087 | 
             
                #   resp.document_description.parameters[0].default_value #=> String
         | 
| 11978 12088 | 
             
                #   resp.document_description.platform_types #=> Array
         | 
| 11979 12089 | 
             
                #   resp.document_description.platform_types[0] #=> String, one of "Windows", "Linux", "MacOS"
         | 
| 11980 | 
            -
                #   resp.document_description.document_type #=> String, one of "Command", "Policy", "Automation", "Session", "Package", "ApplicationConfiguration", "ApplicationConfigurationSchema", "DeploymentStrategy", "ChangeCalendar", "Automation.ChangeTemplate", "ProblemAnalysis", "ProblemAnalysisTemplate", "CloudFormation", "ConformancePackTemplate", "QuickSetup"
         | 
| 12090 | 
            +
                #   resp.document_description.document_type #=> String, one of "Command", "Policy", "Automation", "Session", "Package", "ApplicationConfiguration", "ApplicationConfigurationSchema", "DeploymentStrategy", "ChangeCalendar", "Automation.ChangeTemplate", "ProblemAnalysis", "ProblemAnalysisTemplate", "CloudFormation", "ConformancePackTemplate", "QuickSetup", "ManualApprovalPolicy", "AutoApprovalPolicy"
         | 
| 11981 12091 | 
             
                #   resp.document_description.schema_version #=> String
         | 
| 11982 12092 | 
             
                #   resp.document_description.latest_version #=> String
         | 
| 11983 12093 | 
             
                #   resp.document_description.default_version #=> String
         | 
| @@ -12886,7 +12996,7 @@ module Aws::SSM | |
| 12886 12996 | 
             
                #         ops_item_id: "String", # required
         | 
| 12887 12997 | 
             
                #       },
         | 
| 12888 12998 | 
             
                #     ],
         | 
| 12889 | 
            -
                #     status: "Open", # accepts Open, InProgress, Resolved, Pending, TimedOut, Cancelling, Cancelled, Failed, CompletedWithSuccess, CompletedWithFailure, Scheduled, RunbookInProgress, PendingChangeCalendarOverride, ChangeCalendarOverrideApproved, ChangeCalendarOverrideRejected, PendingApproval, Approved, Rejected, Closed
         | 
| 12999 | 
            +
                #     status: "Open", # accepts Open, InProgress, Resolved, Pending, TimedOut, Cancelling, Cancelled, Failed, CompletedWithSuccess, CompletedWithFailure, Scheduled, RunbookInProgress, PendingChangeCalendarOverride, ChangeCalendarOverrideApproved, ChangeCalendarOverrideRejected, PendingApproval, Approved, Revoked, Rejected, Closed
         | 
| 12890 13000 | 
             
                #     ops_item_id: "OpsItemId", # required
         | 
| 12891 13001 | 
             
                #     title: "OpsItemTitle",
         | 
| 12892 13002 | 
             
                #     category: "OpsItemCategory",
         | 
| @@ -13039,6 +13149,20 @@ module Aws::SSM | |
| 13039 13149 | 
             
                #   including target operating systems and source repositories. Applies to
         | 
| 13040 13150 | 
             
                #   Linux managed nodes only.
         | 
| 13041 13151 | 
             
                #
         | 
| 13152 | 
            +
                # @option params [String] :available_security_updates_compliance_status
         | 
| 13153 | 
            +
                #   Indicates the status to be assigned to security patches that are
         | 
| 13154 | 
            +
                #   available but not approved because they don't meet the installation
         | 
| 13155 | 
            +
                #   criteria specified in the patch baseline.
         | 
| 13156 | 
            +
                #
         | 
| 13157 | 
            +
                #   Example scenario: Security patches that you might want installed can
         | 
| 13158 | 
            +
                #   be skipped if you have specified a long period to wait after a patch
         | 
| 13159 | 
            +
                #   is released before installation. If an update to the patch is released
         | 
| 13160 | 
            +
                #   during your specified waiting period, the waiting period for
         | 
| 13161 | 
            +
                #   installing the patch starts over. If the waiting period is too long,
         | 
| 13162 | 
            +
                #   multiple versions of the patch could be released but never installed.
         | 
| 13163 | 
            +
                #
         | 
| 13164 | 
            +
                #   Supported for Windows Server managed nodes only.
         | 
| 13165 | 
            +
                #
         | 
| 13042 13166 | 
             
                # @option params [Boolean] :replace
         | 
| 13043 13167 | 
             
                #   If True, then all fields that are required by the CreatePatchBaseline
         | 
| 13044 13168 | 
             
                #   operation are also required for this API request. Optional fields that
         | 
| @@ -13060,6 +13184,7 @@ module Aws::SSM | |
| 13060 13184 | 
             
                #   * {Types::UpdatePatchBaselineResult#modified_date #modified_date} => Time
         | 
| 13061 13185 | 
             
                #   * {Types::UpdatePatchBaselineResult#description #description} => String
         | 
| 13062 13186 | 
             
                #   * {Types::UpdatePatchBaselineResult#sources #sources} => Array<Types::PatchSource>
         | 
| 13187 | 
            +
                #   * {Types::UpdatePatchBaselineResult#available_security_updates_compliance_status #available_security_updates_compliance_status} => String
         | 
| 13063 13188 | 
             
                #
         | 
| 13064 13189 | 
             
                # @example Request syntax with placeholder values
         | 
| 13065 13190 | 
             
                #
         | 
| @@ -13105,6 +13230,7 @@ module Aws::SSM | |
| 13105 13230 | 
             
                #         configuration: "PatchSourceConfiguration", # required
         | 
| 13106 13231 | 
             
                #       },
         | 
| 13107 13232 | 
             
                #     ],
         | 
| 13233 | 
            +
                #     available_security_updates_compliance_status: "COMPLIANT", # accepts COMPLIANT, NON_COMPLIANT
         | 
| 13108 13234 | 
             
                #     replace: false,
         | 
| 13109 13235 | 
             
                #   })
         | 
| 13110 13236 | 
             
                #
         | 
| @@ -13141,6 +13267,7 @@ module Aws::SSM | |
| 13141 13267 | 
             
                #   resp.sources[0].products #=> Array
         | 
| 13142 13268 | 
             
                #   resp.sources[0].products[0] #=> String
         | 
| 13143 13269 | 
             
                #   resp.sources[0].configuration #=> String
         | 
| 13270 | 
            +
                #   resp.available_security_updates_compliance_status #=> String, one of "COMPLIANT", "NON_COMPLIANT"
         | 
| 13144 13271 | 
             
                #
         | 
| 13145 13272 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdatePatchBaseline AWS API Documentation
         | 
| 13146 13273 | 
             
                #
         | 
| @@ -13324,7 +13451,7 @@ module Aws::SSM | |
| 13324 13451 | 
             
                    tracer: tracer
         | 
| 13325 13452 | 
             
                  )
         | 
| 13326 13453 | 
             
                  context[:gem_name] = 'aws-sdk-ssm'
         | 
| 13327 | 
            -
                  context[:gem_version] = '1. | 
| 13454 | 
            +
                  context[:gem_version] = '1.193.0'
         | 
| 13328 13455 | 
             
                  Seahorse::Client::Request.new(handlers, context)
         | 
| 13329 13456 | 
             
                end
         | 
| 13330 13457 |  |