aws-sdk-ssm 1.192.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ssm/client.rb +94 -14
- data/lib/aws-sdk-ssm/client_api.rb +77 -0
- data/lib/aws-sdk-ssm/errors.rb +78 -0
- data/lib/aws-sdk-ssm/types.rb +173 -0
- data/lib/aws-sdk-ssm.rb +1 -1
- data/sig/client.rbs +38 -5
- data/sig/errors.rbs +15 -0
- data/sig/types.rbs +63 -11
- 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,11 @@
|
|
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
|
+
|
4
9
|
1.192.0 (2025-03-24)
|
5
10
|
------------------
|
6
11
|
|
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
|
@@ -3397,7 +3397,7 @@ module Aws::SSM
|
|
3397
3397
|
# resp.automation_execution_metadata_list[0].triggered_alarms[0].name #=> String
|
3398
3398
|
# resp.automation_execution_metadata_list[0].triggered_alarms[0].state #=> String, one of "UNKNOWN", "ALARM"
|
3399
3399
|
# resp.automation_execution_metadata_list[0].target_locations_url #=> String
|
3400
|
-
# 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"
|
3401
3401
|
# resp.automation_execution_metadata_list[0].scheduled_time #=> Time
|
3402
3402
|
# resp.automation_execution_metadata_list[0].runbooks #=> Array
|
3403
3403
|
# resp.automation_execution_metadata_list[0].runbooks[0].document_name #=> String
|
@@ -3787,7 +3787,7 @@ module Aws::SSM
|
|
3787
3787
|
# resp.document.parameters[0].default_value #=> String
|
3788
3788
|
# resp.document.platform_types #=> Array
|
3789
3789
|
# resp.document.platform_types[0] #=> String, one of "Windows", "Linux", "MacOS"
|
3790
|
-
# 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"
|
3791
3791
|
# resp.document.schema_version #=> String
|
3792
3792
|
# resp.document.latest_version #=> String
|
3793
3793
|
# resp.document.default_version #=> String
|
@@ -5194,7 +5194,7 @@ module Aws::SSM
|
|
5194
5194
|
# resp = client.describe_ops_items({
|
5195
5195
|
# ops_item_filters: [
|
5196
5196
|
# {
|
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, 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
|
5198
5198
|
# values: ["OpsItemFilterValue"], # required
|
5199
5199
|
# operator: "Equal", # required, accepts Equal, Contains, GreaterThan, LessThan
|
5200
5200
|
# },
|
@@ -5213,7 +5213,7 @@ module Aws::SSM
|
|
5213
5213
|
# resp.ops_item_summaries[0].last_modified_time #=> Time
|
5214
5214
|
# resp.ops_item_summaries[0].priority #=> Integer
|
5215
5215
|
# resp.ops_item_summaries[0].source #=> String
|
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", "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"
|
5217
5217
|
# resp.ops_item_summaries[0].ops_item_id #=> String
|
5218
5218
|
# resp.ops_item_summaries[0].title #=> String
|
5219
5219
|
# resp.ops_item_summaries[0].operational_data #=> Hash
|
@@ -5737,6 +5737,39 @@ module Aws::SSM
|
|
5737
5737
|
req.send_request(options)
|
5738
5738
|
end
|
5739
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
|
+
|
5740
5773
|
# Get detailed information about a particular Automation execution.
|
5741
5774
|
#
|
5742
5775
|
# @option params [required, String] :automation_execution_id
|
@@ -5884,7 +5917,7 @@ module Aws::SSM
|
|
5884
5917
|
# resp.automation_execution.triggered_alarms[0].name #=> String
|
5885
5918
|
# resp.automation_execution.triggered_alarms[0].state #=> String, one of "UNKNOWN", "ALARM"
|
5886
5919
|
# resp.automation_execution.target_locations_url #=> String
|
5887
|
-
# resp.automation_execution.automation_subtype #=> String, one of "ChangeRequest"
|
5920
|
+
# resp.automation_execution.automation_subtype #=> String, one of "ChangeRequest", "AccessRequest"
|
5888
5921
|
# resp.automation_execution.scheduled_time #=> Time
|
5889
5922
|
# resp.automation_execution.runbooks #=> Array
|
5890
5923
|
# resp.automation_execution.runbooks[0].document_name #=> String
|
@@ -6323,7 +6356,7 @@ module Aws::SSM
|
|
6323
6356
|
# resp.status #=> String, one of "Creating", "Active", "Updating", "Deleting", "Failed"
|
6324
6357
|
# resp.status_information #=> String
|
6325
6358
|
# resp.content #=> String
|
6326
|
-
# 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"
|
6327
6360
|
# resp.document_format #=> String, one of "YAML", "JSON", "TEXT"
|
6328
6361
|
# resp.requires #=> Array
|
6329
6362
|
# resp.requires[0].name #=> String
|
@@ -6955,7 +6988,7 @@ module Aws::SSM
|
|
6955
6988
|
# resp.ops_item.priority #=> Integer
|
6956
6989
|
# resp.ops_item.related_ops_items #=> Array
|
6957
6990
|
# resp.ops_item.related_ops_items[0].ops_item_id #=> String
|
6958
|
-
# 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"
|
6959
6992
|
# resp.ops_item.ops_item_id #=> String
|
6960
6993
|
# resp.ops_item.version #=> String
|
6961
6994
|
# resp.ops_item.title #=> String
|
@@ -8450,7 +8483,7 @@ module Aws::SSM
|
|
8450
8483
|
# resp.document_identifiers[0].platform_types #=> Array
|
8451
8484
|
# resp.document_identifiers[0].platform_types[0] #=> String, one of "Windows", "Linux", "MacOS"
|
8452
8485
|
# resp.document_identifiers[0].document_version #=> String
|
8453
|
-
# 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"
|
8454
8487
|
# resp.document_identifiers[0].schema_version #=> String
|
8455
8488
|
# resp.document_identifiers[0].document_format #=> String, one of "YAML", "JSON", "TEXT"
|
8456
8489
|
# resp.document_identifiers[0].target_type #=> String
|
@@ -10447,7 +10480,7 @@ module Aws::SSM
|
|
10447
10480
|
#
|
10448
10481
|
# resp = client.send_automation_signal({
|
10449
10482
|
# automation_execution_id: "AutomationExecutionId", # required
|
10450
|
-
# signal_type: "Approve", # required, accepts Approve, Reject, StartStep, StopStep, Resume
|
10483
|
+
# signal_type: "Approve", # required, accepts Approve, Reject, StartStep, StopStep, Resume, Revoke
|
10451
10484
|
# payload: {
|
10452
10485
|
# "AutomationParameterKey" => ["AutomationParameterValue"],
|
10453
10486
|
# },
|
@@ -10721,6 +10754,53 @@ module Aws::SSM
|
|
10721
10754
|
req.send_request(options)
|
10722
10755
|
end
|
10723
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
|
+
|
10724
10804
|
# Runs an association immediately and only one time. This operation can
|
10725
10805
|
# be helpful when troubleshooting associations.
|
10726
10806
|
#
|
@@ -12007,7 +12087,7 @@ module Aws::SSM
|
|
12007
12087
|
# resp.document_description.parameters[0].default_value #=> String
|
12008
12088
|
# resp.document_description.platform_types #=> Array
|
12009
12089
|
# resp.document_description.platform_types[0] #=> String, one of "Windows", "Linux", "MacOS"
|
12010
|
-
# 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"
|
12011
12091
|
# resp.document_description.schema_version #=> String
|
12012
12092
|
# resp.document_description.latest_version #=> String
|
12013
12093
|
# resp.document_description.default_version #=> String
|
@@ -12916,7 +12996,7 @@ module Aws::SSM
|
|
12916
12996
|
# ops_item_id: "String", # required
|
12917
12997
|
# },
|
12918
12998
|
# ],
|
12919
|
-
# 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
|
12920
13000
|
# ops_item_id: "OpsItemId", # required
|
12921
13001
|
# title: "OpsItemTitle",
|
12922
13002
|
# category: "OpsItemCategory",
|
@@ -13371,7 +13451,7 @@ module Aws::SSM
|
|
13371
13451
|
tracer: tracer
|
13372
13452
|
)
|
13373
13453
|
context[:gem_name] = 'aws-sdk-ssm'
|
13374
|
-
context[:gem_version] = '1.
|
13454
|
+
context[:gem_version] = '1.193.0'
|
13375
13455
|
Seahorse::Client::Request.new(handlers, context)
|
13376
13456
|
end
|
13377
13457
|
|
@@ -14,6 +14,11 @@ module Aws::SSM
|
|
14
14
|
|
15
15
|
include Seahorse::Model
|
16
16
|
|
17
|
+
AccessDeniedException = Shapes::StructureShape.new(name: 'AccessDeniedException')
|
18
|
+
AccessKeyIdType = Shapes::StringShape.new(name: 'AccessKeyIdType')
|
19
|
+
AccessKeySecretType = Shapes::StringShape.new(name: 'AccessKeySecretType')
|
20
|
+
AccessRequestId = Shapes::StringShape.new(name: 'AccessRequestId')
|
21
|
+
AccessRequestStatus = Shapes::StringShape.new(name: 'AccessRequestStatus')
|
17
22
|
Account = Shapes::StringShape.new(name: 'Account')
|
18
23
|
AccountId = Shapes::StringShape.new(name: 'AccountId')
|
19
24
|
AccountIdList = Shapes::ListShape.new(name: 'AccountIdList')
|
@@ -223,6 +228,7 @@ module Aws::SSM
|
|
223
228
|
CreateResourceDataSyncRequest = Shapes::StructureShape.new(name: 'CreateResourceDataSyncRequest')
|
224
229
|
CreateResourceDataSyncResult = Shapes::StructureShape.new(name: 'CreateResourceDataSyncResult')
|
225
230
|
CreatedDate = Shapes::TimestampShape.new(name: 'CreatedDate')
|
231
|
+
Credentials = Shapes::StructureShape.new(name: 'Credentials')
|
226
232
|
CustomSchemaCountLimitExceededException = Shapes::StructureShape.new(name: 'CustomSchemaCountLimitExceededException')
|
227
233
|
DateTime = Shapes::TimestampShape.new(name: 'DateTime')
|
228
234
|
DefaultBaseline = Shapes::BooleanShape.new(name: 'DefaultBaseline')
|
@@ -414,6 +420,8 @@ module Aws::SSM
|
|
414
420
|
FailureDetails = Shapes::StructureShape.new(name: 'FailureDetails')
|
415
421
|
Fault = Shapes::StringShape.new(name: 'Fault')
|
416
422
|
FeatureNotAvailableException = Shapes::StructureShape.new(name: 'FeatureNotAvailableException')
|
423
|
+
GetAccessTokenRequest = Shapes::StructureShape.new(name: 'GetAccessTokenRequest')
|
424
|
+
GetAccessTokenResponse = Shapes::StructureShape.new(name: 'GetAccessTokenResponse')
|
417
425
|
GetAutomationExecutionRequest = Shapes::StructureShape.new(name: 'GetAutomationExecutionRequest')
|
418
426
|
GetAutomationExecutionResult = Shapes::StructureShape.new(name: 'GetAutomationExecutionResult')
|
419
427
|
GetCalendarStateRequest = Shapes::StructureShape.new(name: 'GetCalendarStateRequest')
|
@@ -1145,6 +1153,7 @@ module Aws::SSM
|
|
1145
1153
|
SendAutomationSignalResult = Shapes::StructureShape.new(name: 'SendAutomationSignalResult')
|
1146
1154
|
SendCommandRequest = Shapes::StructureShape.new(name: 'SendCommandRequest')
|
1147
1155
|
SendCommandResult = Shapes::StructureShape.new(name: 'SendCommandResult')
|
1156
|
+
ServiceQuotaExceededException = Shapes::StructureShape.new(name: 'ServiceQuotaExceededException')
|
1148
1157
|
ServiceRole = Shapes::StringShape.new(name: 'ServiceRole')
|
1149
1158
|
ServiceSetting = Shapes::StructureShape.new(name: 'ServiceSetting')
|
1150
1159
|
ServiceSettingId = Shapes::StringShape.new(name: 'ServiceSettingId')
|
@@ -1171,6 +1180,7 @@ module Aws::SSM
|
|
1171
1180
|
SessionState = Shapes::StringShape.new(name: 'SessionState')
|
1172
1181
|
SessionStatus = Shapes::StringShape.new(name: 'SessionStatus')
|
1173
1182
|
SessionTarget = Shapes::StringShape.new(name: 'SessionTarget')
|
1183
|
+
SessionTokenType = Shapes::StringShape.new(name: 'SessionTokenType')
|
1174
1184
|
SeveritySummary = Shapes::StructureShape.new(name: 'SeveritySummary')
|
1175
1185
|
SharedDocumentVersion = Shapes::StringShape.new(name: 'SharedDocumentVersion')
|
1176
1186
|
SignalType = Shapes::StringShape.new(name: 'SignalType')
|
@@ -1180,6 +1190,8 @@ module Aws::SSM
|
|
1180
1190
|
SourceType = Shapes::StringShape.new(name: 'SourceType')
|
1181
1191
|
StandardErrorContent = Shapes::StringShape.new(name: 'StandardErrorContent')
|
1182
1192
|
StandardOutputContent = Shapes::StringShape.new(name: 'StandardOutputContent')
|
1193
|
+
StartAccessRequestRequest = Shapes::StructureShape.new(name: 'StartAccessRequestRequest')
|
1194
|
+
StartAccessRequestResponse = Shapes::StructureShape.new(name: 'StartAccessRequestResponse')
|
1183
1195
|
StartAssociationsOnceRequest = Shapes::StructureShape.new(name: 'StartAssociationsOnceRequest')
|
1184
1196
|
StartAssociationsOnceResult = Shapes::StructureShape.new(name: 'StartAssociationsOnceResult')
|
1185
1197
|
StartAutomationExecutionRequest = Shapes::StructureShape.new(name: 'StartAutomationExecutionRequest')
|
@@ -1208,6 +1220,7 @@ module Aws::SSM
|
|
1208
1220
|
StopType = Shapes::StringShape.new(name: 'StopType')
|
1209
1221
|
StreamUrl = Shapes::StringShape.new(name: 'StreamUrl')
|
1210
1222
|
String = Shapes::StringShape.new(name: 'String')
|
1223
|
+
String1to256 = Shapes::StringShape.new(name: 'String1to256')
|
1211
1224
|
StringDateTime = Shapes::StringShape.new(name: 'StringDateTime')
|
1212
1225
|
StringList = Shapes::ListShape.new(name: 'StringList')
|
1213
1226
|
SubTypeCountLimitExceededException = Shapes::StructureShape.new(name: 'SubTypeCountLimitExceededException')
|
@@ -1237,6 +1250,7 @@ module Aws::SSM
|
|
1237
1250
|
Targets = Shapes::ListShape.new(name: 'Targets')
|
1238
1251
|
TerminateSessionRequest = Shapes::StructureShape.new(name: 'TerminateSessionRequest')
|
1239
1252
|
TerminateSessionResponse = Shapes::StructureShape.new(name: 'TerminateSessionResponse')
|
1253
|
+
ThrottlingException = Shapes::StructureShape.new(name: 'ThrottlingException')
|
1240
1254
|
TimeoutSeconds = Shapes::IntegerShape.new(name: 'TimeoutSeconds')
|
1241
1255
|
TokenValue = Shapes::StringShape.new(name: 'TokenValue')
|
1242
1256
|
TooManyTagsError = Shapes::StructureShape.new(name: 'TooManyTagsError')
|
@@ -1288,6 +1302,9 @@ module Aws::SSM
|
|
1288
1302
|
ValidationException = Shapes::StructureShape.new(name: 'ValidationException')
|
1289
1303
|
Version = Shapes::StringShape.new(name: 'Version')
|
1290
1304
|
|
1305
|
+
AccessDeniedException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Message"))
|
1306
|
+
AccessDeniedException.struct_class = Types::AccessDeniedException
|
1307
|
+
|
1291
1308
|
AccountIdList.member = Shapes::ShapeRef.new(shape: AccountId)
|
1292
1309
|
|
1293
1310
|
AccountSharingInfo.add_member(:account_id, Shapes::ShapeRef.new(shape: AccountId, location_name: "AccountId"))
|
@@ -1959,6 +1976,12 @@ module Aws::SSM
|
|
1959
1976
|
|
1960
1977
|
CreateResourceDataSyncResult.struct_class = Types::CreateResourceDataSyncResult
|
1961
1978
|
|
1979
|
+
Credentials.add_member(:access_key_id, Shapes::ShapeRef.new(shape: AccessKeyIdType, required: true, location_name: "AccessKeyId"))
|
1980
|
+
Credentials.add_member(:secret_access_key, Shapes::ShapeRef.new(shape: AccessKeySecretType, required: true, location_name: "SecretAccessKey"))
|
1981
|
+
Credentials.add_member(:session_token, Shapes::ShapeRef.new(shape: SessionTokenType, required: true, location_name: "SessionToken"))
|
1982
|
+
Credentials.add_member(:expiration_time, Shapes::ShapeRef.new(shape: DateTime, required: true, location_name: "ExpirationTime"))
|
1983
|
+
Credentials.struct_class = Types::Credentials
|
1984
|
+
|
1962
1985
|
CustomSchemaCountLimitExceededException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
1963
1986
|
CustomSchemaCountLimitExceededException.struct_class = Types::CustomSchemaCountLimitExceededException
|
1964
1987
|
|
@@ -2593,6 +2616,13 @@ module Aws::SSM
|
|
2593
2616
|
FeatureNotAvailableException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
2594
2617
|
FeatureNotAvailableException.struct_class = Types::FeatureNotAvailableException
|
2595
2618
|
|
2619
|
+
GetAccessTokenRequest.add_member(:access_request_id, Shapes::ShapeRef.new(shape: AccessRequestId, required: true, location_name: "AccessRequestId"))
|
2620
|
+
GetAccessTokenRequest.struct_class = Types::GetAccessTokenRequest
|
2621
|
+
|
2622
|
+
GetAccessTokenResponse.add_member(:credentials, Shapes::ShapeRef.new(shape: Credentials, location_name: "Credentials"))
|
2623
|
+
GetAccessTokenResponse.add_member(:access_request_status, Shapes::ShapeRef.new(shape: AccessRequestStatus, location_name: "AccessRequestStatus"))
|
2624
|
+
GetAccessTokenResponse.struct_class = Types::GetAccessTokenResponse
|
2625
|
+
|
2596
2626
|
GetAutomationExecutionRequest.add_member(:automation_execution_id, Shapes::ShapeRef.new(shape: AutomationExecutionId, required: true, location_name: "AutomationExecutionId"))
|
2597
2627
|
GetAutomationExecutionRequest.struct_class = Types::GetAutomationExecutionRequest
|
2598
2628
|
|
@@ -4548,6 +4578,13 @@ module Aws::SSM
|
|
4548
4578
|
SendCommandResult.add_member(:command, Shapes::ShapeRef.new(shape: Command, location_name: "Command"))
|
4549
4579
|
SendCommandResult.struct_class = Types::SendCommandResult
|
4550
4580
|
|
4581
|
+
ServiceQuotaExceededException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Message"))
|
4582
|
+
ServiceQuotaExceededException.add_member(:resource_id, Shapes::ShapeRef.new(shape: String, location_name: "ResourceId"))
|
4583
|
+
ServiceQuotaExceededException.add_member(:resource_type, Shapes::ShapeRef.new(shape: String, location_name: "ResourceType"))
|
4584
|
+
ServiceQuotaExceededException.add_member(:quota_code, Shapes::ShapeRef.new(shape: String, required: true, location_name: "QuotaCode"))
|
4585
|
+
ServiceQuotaExceededException.add_member(:service_code, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ServiceCode"))
|
4586
|
+
ServiceQuotaExceededException.struct_class = Types::ServiceQuotaExceededException
|
4587
|
+
|
4551
4588
|
ServiceSetting.add_member(:setting_id, Shapes::ShapeRef.new(shape: ServiceSettingId, location_name: "SettingId"))
|
4552
4589
|
ServiceSetting.add_member(:setting_value, Shapes::ShapeRef.new(shape: ServiceSettingValue, location_name: "SettingValue"))
|
4553
4590
|
ServiceSetting.add_member(:last_modified_date, Shapes::ShapeRef.new(shape: DateTime, location_name: "LastModifiedDate"))
|
@@ -4597,6 +4634,14 @@ module Aws::SSM
|
|
4597
4634
|
SeveritySummary.add_member(:unspecified_count, Shapes::ShapeRef.new(shape: ComplianceSummaryCount, location_name: "UnspecifiedCount"))
|
4598
4635
|
SeveritySummary.struct_class = Types::SeveritySummary
|
4599
4636
|
|
4637
|
+
StartAccessRequestRequest.add_member(:reason, Shapes::ShapeRef.new(shape: String1to256, required: true, location_name: "Reason"))
|
4638
|
+
StartAccessRequestRequest.add_member(:targets, Shapes::ShapeRef.new(shape: Targets, required: true, location_name: "Targets"))
|
4639
|
+
StartAccessRequestRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
4640
|
+
StartAccessRequestRequest.struct_class = Types::StartAccessRequestRequest
|
4641
|
+
|
4642
|
+
StartAccessRequestResponse.add_member(:access_request_id, Shapes::ShapeRef.new(shape: AccessRequestId, location_name: "AccessRequestId"))
|
4643
|
+
StartAccessRequestResponse.struct_class = Types::StartAccessRequestResponse
|
4644
|
+
|
4600
4645
|
StartAssociationsOnceRequest.add_member(:association_ids, Shapes::ShapeRef.new(shape: AssociationIdList, required: true, location_name: "AssociationIds"))
|
4601
4646
|
StartAssociationsOnceRequest.struct_class = Types::StartAssociationsOnceRequest
|
4602
4647
|
|
@@ -4764,6 +4809,11 @@ module Aws::SSM
|
|
4764
4809
|
TerminateSessionResponse.add_member(:session_id, Shapes::ShapeRef.new(shape: SessionId, location_name: "SessionId"))
|
4765
4810
|
TerminateSessionResponse.struct_class = Types::TerminateSessionResponse
|
4766
4811
|
|
4812
|
+
ThrottlingException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Message"))
|
4813
|
+
ThrottlingException.add_member(:quota_code, Shapes::ShapeRef.new(shape: String, location_name: "QuotaCode"))
|
4814
|
+
ThrottlingException.add_member(:service_code, Shapes::ShapeRef.new(shape: String, location_name: "ServiceCode"))
|
4815
|
+
ThrottlingException.struct_class = Types::ThrottlingException
|
4816
|
+
|
4767
4817
|
TooManyTagsError.struct_class = Types::TooManyTagsError
|
4768
4818
|
|
4769
4819
|
TooManyUpdates.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
@@ -5948,6 +5998,19 @@ module Aws::SSM
|
|
5948
5998
|
o.errors << Shapes::ShapeRef.new(shape: OpsItemConflictException)
|
5949
5999
|
end)
|
5950
6000
|
|
6001
|
+
api.add_operation(:get_access_token, Seahorse::Model::Operation.new.tap do |o|
|
6002
|
+
o.name = "GetAccessToken"
|
6003
|
+
o.http_method = "POST"
|
6004
|
+
o.http_request_uri = "/"
|
6005
|
+
o.input = Shapes::ShapeRef.new(shape: GetAccessTokenRequest)
|
6006
|
+
o.output = Shapes::ShapeRef.new(shape: GetAccessTokenResponse)
|
6007
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
6008
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
6009
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
6010
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
6011
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
6012
|
+
end)
|
6013
|
+
|
5951
6014
|
api.add_operation(:get_automation_execution, Seahorse::Model::Operation.new.tap do |o|
|
5952
6015
|
o.name = "GetAutomationExecution"
|
5953
6016
|
o.http_method = "POST"
|
@@ -6782,6 +6845,20 @@ module Aws::SSM
|
|
6782
6845
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNotificationConfig)
|
6783
6846
|
end)
|
6784
6847
|
|
6848
|
+
api.add_operation(:start_access_request, Seahorse::Model::Operation.new.tap do |o|
|
6849
|
+
o.name = "StartAccessRequest"
|
6850
|
+
o.http_method = "POST"
|
6851
|
+
o.http_request_uri = "/"
|
6852
|
+
o.input = Shapes::ShapeRef.new(shape: StartAccessRequestRequest)
|
6853
|
+
o.output = Shapes::ShapeRef.new(shape: StartAccessRequestResponse)
|
6854
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
6855
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
6856
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
6857
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
6858
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
6859
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
6860
|
+
end)
|
6861
|
+
|
6785
6862
|
api.add_operation(:start_associations_once, Seahorse::Model::Operation.new.tap do |o|
|
6786
6863
|
o.name = "StartAssociationsOnce"
|
6787
6864
|
o.http_method = "POST"
|
data/lib/aws-sdk-ssm/errors.rb
CHANGED
@@ -27,6 +27,7 @@ module Aws::SSM
|
|
27
27
|
# See {Seahorse::Client::RequestContext} for more information.
|
28
28
|
#
|
29
29
|
# ## Error Classes
|
30
|
+
# * {AccessDeniedException}
|
30
31
|
# * {AlreadyExistsException}
|
31
32
|
# * {AssociatedInstances}
|
32
33
|
# * {AssociationAlreadyExists}
|
@@ -145,11 +146,13 @@ module Aws::SSM
|
|
145
146
|
# * {ResourcePolicyInvalidParameterException}
|
146
147
|
# * {ResourcePolicyLimitExceededException}
|
147
148
|
# * {ResourcePolicyNotFoundException}
|
149
|
+
# * {ServiceQuotaExceededException}
|
148
150
|
# * {ServiceSettingNotFound}
|
149
151
|
# * {StatusUnchanged}
|
150
152
|
# * {SubTypeCountLimitExceededException}
|
151
153
|
# * {TargetInUseException}
|
152
154
|
# * {TargetNotConnected}
|
155
|
+
# * {ThrottlingException}
|
153
156
|
# * {TooManyTagsError}
|
154
157
|
# * {TooManyUpdates}
|
155
158
|
# * {TotalSizeLimitExceededException}
|
@@ -169,6 +172,21 @@ module Aws::SSM
|
|
169
172
|
|
170
173
|
extend Aws::Errors::DynamicErrors
|
171
174
|
|
175
|
+
class AccessDeniedException < ServiceError
|
176
|
+
|
177
|
+
# @param [Seahorse::Client::RequestContext] context
|
178
|
+
# @param [String] message
|
179
|
+
# @param [Aws::SSM::Types::AccessDeniedException] data
|
180
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
181
|
+
super(context, message, data)
|
182
|
+
end
|
183
|
+
|
184
|
+
# @return [String]
|
185
|
+
def message
|
186
|
+
@message || @data[:message]
|
187
|
+
end
|
188
|
+
end
|
189
|
+
|
172
190
|
class AlreadyExistsException < ServiceError
|
173
191
|
|
174
192
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -1954,6 +1972,41 @@ module Aws::SSM
|
|
1954
1972
|
end
|
1955
1973
|
end
|
1956
1974
|
|
1975
|
+
class ServiceQuotaExceededException < ServiceError
|
1976
|
+
|
1977
|
+
# @param [Seahorse::Client::RequestContext] context
|
1978
|
+
# @param [String] message
|
1979
|
+
# @param [Aws::SSM::Types::ServiceQuotaExceededException] data
|
1980
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
1981
|
+
super(context, message, data)
|
1982
|
+
end
|
1983
|
+
|
1984
|
+
# @return [String]
|
1985
|
+
def message
|
1986
|
+
@message || @data[:message]
|
1987
|
+
end
|
1988
|
+
|
1989
|
+
# @return [String]
|
1990
|
+
def resource_id
|
1991
|
+
@data[:resource_id]
|
1992
|
+
end
|
1993
|
+
|
1994
|
+
# @return [String]
|
1995
|
+
def resource_type
|
1996
|
+
@data[:resource_type]
|
1997
|
+
end
|
1998
|
+
|
1999
|
+
# @return [String]
|
2000
|
+
def quota_code
|
2001
|
+
@data[:quota_code]
|
2002
|
+
end
|
2003
|
+
|
2004
|
+
# @return [String]
|
2005
|
+
def service_code
|
2006
|
+
@data[:service_code]
|
2007
|
+
end
|
2008
|
+
end
|
2009
|
+
|
1957
2010
|
class ServiceSettingNotFound < ServiceError
|
1958
2011
|
|
1959
2012
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -2024,6 +2077,31 @@ module Aws::SSM
|
|
2024
2077
|
end
|
2025
2078
|
end
|
2026
2079
|
|
2080
|
+
class ThrottlingException < ServiceError
|
2081
|
+
|
2082
|
+
# @param [Seahorse::Client::RequestContext] context
|
2083
|
+
# @param [String] message
|
2084
|
+
# @param [Aws::SSM::Types::ThrottlingException] data
|
2085
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
2086
|
+
super(context, message, data)
|
2087
|
+
end
|
2088
|
+
|
2089
|
+
# @return [String]
|
2090
|
+
def message
|
2091
|
+
@message || @data[:message]
|
2092
|
+
end
|
2093
|
+
|
2094
|
+
# @return [String]
|
2095
|
+
def quota_code
|
2096
|
+
@data[:quota_code]
|
2097
|
+
end
|
2098
|
+
|
2099
|
+
# @return [String]
|
2100
|
+
def service_code
|
2101
|
+
@data[:service_code]
|
2102
|
+
end
|
2103
|
+
end
|
2104
|
+
|
2027
2105
|
class TooManyTagsError < ServiceError
|
2028
2106
|
|
2029
2107
|
# @param [Seahorse::Client::RequestContext] context
|
data/lib/aws-sdk-ssm/types.rb
CHANGED
@@ -10,6 +10,20 @@
|
|
10
10
|
module Aws::SSM
|
11
11
|
module Types
|
12
12
|
|
13
|
+
# The requester doesn't have permissions to perform the requested
|
14
|
+
# operation.
|
15
|
+
#
|
16
|
+
# @!attribute [rw] message
|
17
|
+
# @return [String]
|
18
|
+
#
|
19
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/AccessDeniedException AWS API Documentation
|
20
|
+
#
|
21
|
+
class AccessDeniedException < Struct.new(
|
22
|
+
:message)
|
23
|
+
SENSITIVE = []
|
24
|
+
include Aws::Structure
|
25
|
+
end
|
26
|
+
|
13
27
|
# Information includes the Amazon Web Services account ID where the
|
14
28
|
# current document is shared and the version shared with that account.
|
15
29
|
#
|
@@ -4185,6 +4199,38 @@ module Aws::SSM
|
|
4185
4199
|
#
|
4186
4200
|
class CreateResourceDataSyncResult < Aws::EmptyStructure; end
|
4187
4201
|
|
4202
|
+
# The temporary security credentials, which include an access key ID, a
|
4203
|
+
# secret access key, and a security (or session) token.
|
4204
|
+
#
|
4205
|
+
# @!attribute [rw] access_key_id
|
4206
|
+
# The access key ID that identifies the temporary security
|
4207
|
+
# credentials.
|
4208
|
+
# @return [String]
|
4209
|
+
#
|
4210
|
+
# @!attribute [rw] secret_access_key
|
4211
|
+
# The secret access key that can be used to sign requests.
|
4212
|
+
# @return [String]
|
4213
|
+
#
|
4214
|
+
# @!attribute [rw] session_token
|
4215
|
+
# The token that users must pass to the service API to use the
|
4216
|
+
# temporary credentials.
|
4217
|
+
# @return [String]
|
4218
|
+
#
|
4219
|
+
# @!attribute [rw] expiration_time
|
4220
|
+
# The datetime on which the current credentials expire.
|
4221
|
+
# @return [Time]
|
4222
|
+
#
|
4223
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/Credentials AWS API Documentation
|
4224
|
+
#
|
4225
|
+
class Credentials < Struct.new(
|
4226
|
+
:access_key_id,
|
4227
|
+
:secret_access_key,
|
4228
|
+
:session_token,
|
4229
|
+
:expiration_time)
|
4230
|
+
SENSITIVE = [:secret_access_key, :session_token]
|
4231
|
+
include Aws::Structure
|
4232
|
+
end
|
4233
|
+
|
4188
4234
|
# You have exceeded the limit for custom schemas. Delete one or more
|
4189
4235
|
# custom schemas and try again.
|
4190
4236
|
#
|
@@ -7568,6 +7614,36 @@ module Aws::SSM
|
|
7568
7614
|
include Aws::Structure
|
7569
7615
|
end
|
7570
7616
|
|
7617
|
+
# @!attribute [rw] access_request_id
|
7618
|
+
# The ID of a just-in-time node access request.
|
7619
|
+
# @return [String]
|
7620
|
+
#
|
7621
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetAccessTokenRequest AWS API Documentation
|
7622
|
+
#
|
7623
|
+
class GetAccessTokenRequest < Struct.new(
|
7624
|
+
:access_request_id)
|
7625
|
+
SENSITIVE = []
|
7626
|
+
include Aws::Structure
|
7627
|
+
end
|
7628
|
+
|
7629
|
+
# @!attribute [rw] credentials
|
7630
|
+
# The temporary security credentials which can be used to start
|
7631
|
+
# just-in-time node access sessions.
|
7632
|
+
# @return [Types::Credentials]
|
7633
|
+
#
|
7634
|
+
# @!attribute [rw] access_request_status
|
7635
|
+
# The status of the access request.
|
7636
|
+
# @return [String]
|
7637
|
+
#
|
7638
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetAccessTokenResponse AWS API Documentation
|
7639
|
+
#
|
7640
|
+
class GetAccessTokenResponse < Struct.new(
|
7641
|
+
:credentials,
|
7642
|
+
:access_request_status)
|
7643
|
+
SENSITIVE = []
|
7644
|
+
include Aws::Structure
|
7645
|
+
end
|
7646
|
+
|
7571
7647
|
# @!attribute [rw] automation_execution_id
|
7572
7648
|
# The unique identifier for an existing automation execution to
|
7573
7649
|
# examine. The execution ID is returned by StartAutomationExecution
|
@@ -17783,6 +17859,42 @@ module Aws::SSM
|
|
17783
17859
|
include Aws::Structure
|
17784
17860
|
end
|
17785
17861
|
|
17862
|
+
# The request exceeds the service quota. Service quotas, also referred
|
17863
|
+
# to as limits, are the maximum number of service resources or
|
17864
|
+
# operations for your Amazon Web Services account.
|
17865
|
+
#
|
17866
|
+
# @!attribute [rw] message
|
17867
|
+
# @return [String]
|
17868
|
+
#
|
17869
|
+
# @!attribute [rw] resource_id
|
17870
|
+
# The unique ID of the resource referenced in the failed request.
|
17871
|
+
# @return [String]
|
17872
|
+
#
|
17873
|
+
# @!attribute [rw] resource_type
|
17874
|
+
# The resource type of the resource referenced in the failed request.
|
17875
|
+
# @return [String]
|
17876
|
+
#
|
17877
|
+
# @!attribute [rw] quota_code
|
17878
|
+
# The quota code recognized by the Amazon Web Services Service Quotas
|
17879
|
+
# service.
|
17880
|
+
# @return [String]
|
17881
|
+
#
|
17882
|
+
# @!attribute [rw] service_code
|
17883
|
+
# The code for the Amazon Web Services service that owns the quota.
|
17884
|
+
# @return [String]
|
17885
|
+
#
|
17886
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ServiceQuotaExceededException AWS API Documentation
|
17887
|
+
#
|
17888
|
+
class ServiceQuotaExceededException < Struct.new(
|
17889
|
+
:message,
|
17890
|
+
:resource_id,
|
17891
|
+
:resource_type,
|
17892
|
+
:quota_code,
|
17893
|
+
:service_code)
|
17894
|
+
SENSITIVE = []
|
17895
|
+
include Aws::Structure
|
17896
|
+
end
|
17897
|
+
|
17786
17898
|
# The service setting data structure.
|
17787
17899
|
#
|
17788
17900
|
# `ServiceSetting` is an account-level setting for an Amazon Web
|
@@ -18056,6 +18168,42 @@ module Aws::SSM
|
|
18056
18168
|
include Aws::Structure
|
18057
18169
|
end
|
18058
18170
|
|
18171
|
+
# @!attribute [rw] reason
|
18172
|
+
# A brief description explaining why you are requesting access to the
|
18173
|
+
# node.
|
18174
|
+
# @return [String]
|
18175
|
+
#
|
18176
|
+
# @!attribute [rw] targets
|
18177
|
+
# The node you are requesting access to.
|
18178
|
+
# @return [Array<Types::Target>]
|
18179
|
+
#
|
18180
|
+
# @!attribute [rw] tags
|
18181
|
+
# Key-value pairs of metadata you want to assign to the access
|
18182
|
+
# request.
|
18183
|
+
# @return [Array<Types::Tag>]
|
18184
|
+
#
|
18185
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/StartAccessRequestRequest AWS API Documentation
|
18186
|
+
#
|
18187
|
+
class StartAccessRequestRequest < Struct.new(
|
18188
|
+
:reason,
|
18189
|
+
:targets,
|
18190
|
+
:tags)
|
18191
|
+
SENSITIVE = []
|
18192
|
+
include Aws::Structure
|
18193
|
+
end
|
18194
|
+
|
18195
|
+
# @!attribute [rw] access_request_id
|
18196
|
+
# The ID of the access request.
|
18197
|
+
# @return [String]
|
18198
|
+
#
|
18199
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/StartAccessRequestResponse AWS API Documentation
|
18200
|
+
#
|
18201
|
+
class StartAccessRequestResponse < Struct.new(
|
18202
|
+
:access_request_id)
|
18203
|
+
SENSITIVE = []
|
18204
|
+
include Aws::Structure
|
18205
|
+
end
|
18206
|
+
|
18059
18207
|
# @!attribute [rw] association_ids
|
18060
18208
|
# The association IDs that you want to run immediately and only one
|
18061
18209
|
# time.
|
@@ -18976,6 +19124,31 @@ module Aws::SSM
|
|
18976
19124
|
include Aws::Structure
|
18977
19125
|
end
|
18978
19126
|
|
19127
|
+
# The request or operation couldn't be performed because the service is
|
19128
|
+
# throttling requests.
|
19129
|
+
#
|
19130
|
+
# @!attribute [rw] message
|
19131
|
+
# @return [String]
|
19132
|
+
#
|
19133
|
+
# @!attribute [rw] quota_code
|
19134
|
+
# The quota code recognized by the Amazon Web Services Service Quotas
|
19135
|
+
# service.
|
19136
|
+
# @return [String]
|
19137
|
+
#
|
19138
|
+
# @!attribute [rw] service_code
|
19139
|
+
# The code for the Amazon Web Services service that owns the quota.
|
19140
|
+
# @return [String]
|
19141
|
+
#
|
19142
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ThrottlingException AWS API Documentation
|
19143
|
+
#
|
19144
|
+
class ThrottlingException < Struct.new(
|
19145
|
+
:message,
|
19146
|
+
:quota_code,
|
19147
|
+
:service_code)
|
19148
|
+
SENSITIVE = []
|
19149
|
+
include Aws::Structure
|
19150
|
+
end
|
19151
|
+
|
18979
19152
|
# The `Targets` parameter includes too many tags. Remove one or more
|
18980
19153
|
# tags and try the command again.
|
18981
19154
|
#
|
data/lib/aws-sdk-ssm.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -340,7 +340,7 @@ module Aws
|
|
340
340
|
name: ::String,
|
341
341
|
?display_name: ::String,
|
342
342
|
?version_name: ::String,
|
343
|
-
?document_type: ("Command" | "Policy" | "Automation" | "Session" | "Package" | "ApplicationConfiguration" | "ApplicationConfigurationSchema" | "DeploymentStrategy" | "ChangeCalendar" | "Automation.ChangeTemplate" | "ProblemAnalysis" | "ProblemAnalysisTemplate" | "CloudFormation" | "ConformancePackTemplate" | "QuickSetup"),
|
343
|
+
?document_type: ("Command" | "Policy" | "Automation" | "Session" | "Package" | "ApplicationConfiguration" | "ApplicationConfigurationSchema" | "DeploymentStrategy" | "ChangeCalendar" | "Automation.ChangeTemplate" | "ProblemAnalysis" | "ProblemAnalysisTemplate" | "CloudFormation" | "ConformancePackTemplate" | "QuickSetup" | "ManualApprovalPolicy" | "AutoApprovalPolicy"),
|
344
344
|
?document_format: ("YAML" | "JSON" | "TEXT"),
|
345
345
|
?target_type: ::String,
|
346
346
|
?tags: Array[
|
@@ -1178,7 +1178,7 @@ module Aws
|
|
1178
1178
|
def describe_ops_items: (
|
1179
1179
|
?ops_item_filters: Array[
|
1180
1180
|
{
|
1181
|
-
key: ("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"),
|
1181
|
+
key: ("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"),
|
1182
1182
|
values: Array[::String],
|
1183
1183
|
operator: ("Equal" | "Contains" | "GreaterThan" | "LessThan")
|
1184
1184
|
},
|
@@ -1316,6 +1316,17 @@ module Aws
|
|
1316
1316
|
) -> _DisassociateOpsItemRelatedItemResponseSuccess
|
1317
1317
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateOpsItemRelatedItemResponseSuccess
|
1318
1318
|
|
1319
|
+
interface _GetAccessTokenResponseSuccess
|
1320
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetAccessTokenResponse]
|
1321
|
+
def credentials: () -> Types::Credentials
|
1322
|
+
def access_request_status: () -> ("Approved" | "Rejected" | "Revoked" | "Expired" | "Pending")
|
1323
|
+
end
|
1324
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SSM/Client.html#get_access_token-instance_method
|
1325
|
+
def get_access_token: (
|
1326
|
+
access_request_id: ::String
|
1327
|
+
) -> _GetAccessTokenResponseSuccess
|
1328
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAccessTokenResponseSuccess
|
1329
|
+
|
1319
1330
|
interface _GetAutomationExecutionResponseSuccess
|
1320
1331
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetAutomationExecutionResult]
|
1321
1332
|
def automation_execution: () -> Types::AutomationExecution
|
@@ -1455,7 +1466,7 @@ module Aws
|
|
1455
1466
|
def status: () -> ("Creating" | "Active" | "Updating" | "Deleting" | "Failed")
|
1456
1467
|
def status_information: () -> ::String
|
1457
1468
|
def content: () -> ::String
|
1458
|
-
def document_type: () -> ("Command" | "Policy" | "Automation" | "Session" | "Package" | "ApplicationConfiguration" | "ApplicationConfigurationSchema" | "DeploymentStrategy" | "ChangeCalendar" | "Automation.ChangeTemplate" | "ProblemAnalysis" | "ProblemAnalysisTemplate" | "CloudFormation" | "ConformancePackTemplate" | "QuickSetup")
|
1469
|
+
def document_type: () -> ("Command" | "Policy" | "Automation" | "Session" | "Package" | "ApplicationConfiguration" | "ApplicationConfigurationSchema" | "DeploymentStrategy" | "ChangeCalendar" | "Automation.ChangeTemplate" | "ProblemAnalysis" | "ProblemAnalysisTemplate" | "CloudFormation" | "ConformancePackTemplate" | "QuickSetup" | "ManualApprovalPolicy" | "AutoApprovalPolicy")
|
1459
1470
|
def document_format: () -> ("YAML" | "JSON" | "TEXT")
|
1460
1471
|
def requires: () -> ::Array[Types::DocumentRequires]
|
1461
1472
|
def attachments_content: () -> ::Array[Types::AttachmentContent]
|
@@ -2454,7 +2465,7 @@ module Aws
|
|
2454
2465
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SSM/Client.html#send_automation_signal-instance_method
|
2455
2466
|
def send_automation_signal: (
|
2456
2467
|
automation_execution_id: ::String,
|
2457
|
-
signal_type: ("Approve" | "Reject" | "StartStep" | "StopStep" | "Resume"),
|
2468
|
+
signal_type: ("Approve" | "Reject" | "StartStep" | "StopStep" | "Resume" | "Revoke"),
|
2458
2469
|
?payload: Hash[::String, Array[::String]]
|
2459
2470
|
) -> _SendAutomationSignalResponseSuccess
|
2460
2471
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SendAutomationSignalResponseSuccess
|
@@ -2505,6 +2516,28 @@ module Aws
|
|
2505
2516
|
) -> _SendCommandResponseSuccess
|
2506
2517
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SendCommandResponseSuccess
|
2507
2518
|
|
2519
|
+
interface _StartAccessRequestResponseSuccess
|
2520
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartAccessRequestResponse]
|
2521
|
+
def access_request_id: () -> ::String
|
2522
|
+
end
|
2523
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SSM/Client.html#start_access_request-instance_method
|
2524
|
+
def start_access_request: (
|
2525
|
+
reason: ::String,
|
2526
|
+
targets: Array[
|
2527
|
+
{
|
2528
|
+
key: ::String?,
|
2529
|
+
values: Array[::String]?
|
2530
|
+
},
|
2531
|
+
],
|
2532
|
+
?tags: Array[
|
2533
|
+
{
|
2534
|
+
key: ::String,
|
2535
|
+
value: ::String
|
2536
|
+
},
|
2537
|
+
]
|
2538
|
+
) -> _StartAccessRequestResponseSuccess
|
2539
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartAccessRequestResponseSuccess
|
2540
|
+
|
2508
2541
|
interface _StartAssociationsOnceResponseSuccess
|
2509
2542
|
include ::Seahorse::Client::_ResponseSuccess[Types::StartAssociationsOnceResult]
|
2510
2543
|
end
|
@@ -3082,7 +3115,7 @@ module Aws
|
|
3082
3115
|
ops_item_id: ::String
|
3083
3116
|
},
|
3084
3117
|
],
|
3085
|
-
?status: ("Open" | "InProgress" | "Resolved" | "Pending" | "TimedOut" | "Cancelling" | "Cancelled" | "Failed" | "CompletedWithSuccess" | "CompletedWithFailure" | "Scheduled" | "RunbookInProgress" | "PendingChangeCalendarOverride" | "ChangeCalendarOverrideApproved" | "ChangeCalendarOverrideRejected" | "PendingApproval" | "Approved" | "Rejected" | "Closed"),
|
3118
|
+
?status: ("Open" | "InProgress" | "Resolved" | "Pending" | "TimedOut" | "Cancelling" | "Cancelled" | "Failed" | "CompletedWithSuccess" | "CompletedWithFailure" | "Scheduled" | "RunbookInProgress" | "PendingChangeCalendarOverride" | "ChangeCalendarOverrideApproved" | "ChangeCalendarOverrideRejected" | "PendingApproval" | "Approved" | "Revoked" | "Rejected" | "Closed"),
|
3086
3119
|
ops_item_id: ::String,
|
3087
3120
|
?title: ::String,
|
3088
3121
|
?category: ::String,
|
data/sig/errors.rbs
CHANGED
@@ -11,6 +11,9 @@ module Aws
|
|
11
11
|
class ServiceError < ::Aws::Errors::ServiceError
|
12
12
|
end
|
13
13
|
|
14
|
+
class AccessDeniedException < ::Aws::Errors::ServiceError
|
15
|
+
def message: () -> ::String
|
16
|
+
end
|
14
17
|
class AlreadyExistsException < ::Aws::Errors::ServiceError
|
15
18
|
def message: () -> ::String
|
16
19
|
end
|
@@ -368,6 +371,13 @@ module Aws
|
|
368
371
|
class ResourcePolicyNotFoundException < ::Aws::Errors::ServiceError
|
369
372
|
def message: () -> ::String
|
370
373
|
end
|
374
|
+
class ServiceQuotaExceededException < ::Aws::Errors::ServiceError
|
375
|
+
def message: () -> ::String
|
376
|
+
def resource_id: () -> ::String
|
377
|
+
def resource_type: () -> ::String
|
378
|
+
def quota_code: () -> ::String
|
379
|
+
def service_code: () -> ::String
|
380
|
+
end
|
371
381
|
class ServiceSettingNotFound < ::Aws::Errors::ServiceError
|
372
382
|
def message: () -> ::String
|
373
383
|
end
|
@@ -382,6 +392,11 @@ module Aws
|
|
382
392
|
class TargetNotConnected < ::Aws::Errors::ServiceError
|
383
393
|
def message: () -> ::String
|
384
394
|
end
|
395
|
+
class ThrottlingException < ::Aws::Errors::ServiceError
|
396
|
+
def message: () -> ::String
|
397
|
+
def quota_code: () -> ::String
|
398
|
+
def service_code: () -> ::String
|
399
|
+
end
|
385
400
|
class TooManyTagsError < ::Aws::Errors::ServiceError
|
386
401
|
end
|
387
402
|
class TooManyUpdates < ::Aws::Errors::ServiceError
|
data/sig/types.rbs
CHANGED
@@ -8,6 +8,11 @@
|
|
8
8
|
module Aws::SSM
|
9
9
|
module Types
|
10
10
|
|
11
|
+
class AccessDeniedException
|
12
|
+
attr_accessor message: ::String
|
13
|
+
SENSITIVE: []
|
14
|
+
end
|
15
|
+
|
11
16
|
class AccountSharingInfo
|
12
17
|
attr_accessor account_id: ::String
|
13
18
|
attr_accessor shared_document_version: ::String
|
@@ -297,7 +302,7 @@ module Aws::SSM
|
|
297
302
|
attr_accessor alarm_configuration: Types::AlarmConfiguration
|
298
303
|
attr_accessor triggered_alarms: ::Array[Types::AlarmStateInformation]
|
299
304
|
attr_accessor target_locations_url: ::String
|
300
|
-
attr_accessor automation_subtype: ("ChangeRequest")
|
305
|
+
attr_accessor automation_subtype: ("ChangeRequest" | "AccessRequest")
|
301
306
|
attr_accessor scheduled_time: ::Time
|
302
307
|
attr_accessor runbooks: ::Array[Types::Runbook]
|
303
308
|
attr_accessor ops_item_id: ::String
|
@@ -354,7 +359,7 @@ module Aws::SSM
|
|
354
359
|
attr_accessor alarm_configuration: Types::AlarmConfiguration
|
355
360
|
attr_accessor triggered_alarms: ::Array[Types::AlarmStateInformation]
|
356
361
|
attr_accessor target_locations_url: ::String
|
357
|
-
attr_accessor automation_subtype: ("ChangeRequest")
|
362
|
+
attr_accessor automation_subtype: ("ChangeRequest" | "AccessRequest")
|
358
363
|
attr_accessor scheduled_time: ::Time
|
359
364
|
attr_accessor runbooks: ::Array[Types::Runbook]
|
360
365
|
attr_accessor ops_item_id: ::String
|
@@ -635,7 +640,7 @@ module Aws::SSM
|
|
635
640
|
attr_accessor name: ::String
|
636
641
|
attr_accessor display_name: ::String
|
637
642
|
attr_accessor version_name: ::String
|
638
|
-
attr_accessor document_type: ("Command" | "Policy" | "Automation" | "Session" | "Package" | "ApplicationConfiguration" | "ApplicationConfigurationSchema" | "DeploymentStrategy" | "ChangeCalendar" | "Automation.ChangeTemplate" | "ProblemAnalysis" | "ProblemAnalysisTemplate" | "CloudFormation" | "ConformancePackTemplate" | "QuickSetup")
|
643
|
+
attr_accessor document_type: ("Command" | "Policy" | "Automation" | "Session" | "Package" | "ApplicationConfiguration" | "ApplicationConfigurationSchema" | "DeploymentStrategy" | "ChangeCalendar" | "Automation.ChangeTemplate" | "ProblemAnalysis" | "ProblemAnalysisTemplate" | "CloudFormation" | "ConformancePackTemplate" | "QuickSetup" | "ManualApprovalPolicy" | "AutoApprovalPolicy")
|
639
644
|
attr_accessor document_format: ("YAML" | "JSON" | "TEXT")
|
640
645
|
attr_accessor target_type: ::String
|
641
646
|
attr_accessor tags: ::Array[Types::Tag]
|
@@ -740,6 +745,14 @@ module Aws::SSM
|
|
740
745
|
class CreateResourceDataSyncResult < Aws::EmptyStructure
|
741
746
|
end
|
742
747
|
|
748
|
+
class Credentials
|
749
|
+
attr_accessor access_key_id: ::String
|
750
|
+
attr_accessor secret_access_key: ::String
|
751
|
+
attr_accessor session_token: ::String
|
752
|
+
attr_accessor expiration_time: ::Time
|
753
|
+
SENSITIVE: [:secret_access_key, :session_token]
|
754
|
+
end
|
755
|
+
|
743
756
|
class CustomSchemaCountLimitExceededException
|
744
757
|
attr_accessor message: ::String
|
745
758
|
SENSITIVE: []
|
@@ -1413,7 +1426,7 @@ module Aws::SSM
|
|
1413
1426
|
attr_accessor description: ::String
|
1414
1427
|
attr_accessor parameters: ::Array[Types::DocumentParameter]
|
1415
1428
|
attr_accessor platform_types: ::Array[("Windows" | "Linux" | "MacOS")]
|
1416
|
-
attr_accessor document_type: ("Command" | "Policy" | "Automation" | "Session" | "Package" | "ApplicationConfiguration" | "ApplicationConfigurationSchema" | "DeploymentStrategy" | "ChangeCalendar" | "Automation.ChangeTemplate" | "ProblemAnalysis" | "ProblemAnalysisTemplate" | "CloudFormation" | "ConformancePackTemplate" | "QuickSetup")
|
1429
|
+
attr_accessor document_type: ("Command" | "Policy" | "Automation" | "Session" | "Package" | "ApplicationConfiguration" | "ApplicationConfigurationSchema" | "DeploymentStrategy" | "ChangeCalendar" | "Automation.ChangeTemplate" | "ProblemAnalysis" | "ProblemAnalysisTemplate" | "CloudFormation" | "ConformancePackTemplate" | "QuickSetup" | "ManualApprovalPolicy" | "AutoApprovalPolicy")
|
1417
1430
|
attr_accessor schema_version: ::String
|
1418
1431
|
attr_accessor latest_version: ::String
|
1419
1432
|
attr_accessor default_version: ::String
|
@@ -1446,7 +1459,7 @@ module Aws::SSM
|
|
1446
1459
|
attr_accessor version_name: ::String
|
1447
1460
|
attr_accessor platform_types: ::Array[("Windows" | "Linux" | "MacOS")]
|
1448
1461
|
attr_accessor document_version: ::String
|
1449
|
-
attr_accessor document_type: ("Command" | "Policy" | "Automation" | "Session" | "Package" | "ApplicationConfiguration" | "ApplicationConfigurationSchema" | "DeploymentStrategy" | "ChangeCalendar" | "Automation.ChangeTemplate" | "ProblemAnalysis" | "ProblemAnalysisTemplate" | "CloudFormation" | "ConformancePackTemplate" | "QuickSetup")
|
1462
|
+
attr_accessor document_type: ("Command" | "Policy" | "Automation" | "Session" | "Package" | "ApplicationConfiguration" | "ApplicationConfigurationSchema" | "DeploymentStrategy" | "ChangeCalendar" | "Automation.ChangeTemplate" | "ProblemAnalysis" | "ProblemAnalysisTemplate" | "CloudFormation" | "ConformancePackTemplate" | "QuickSetup" | "ManualApprovalPolicy" | "AutoApprovalPolicy")
|
1450
1463
|
attr_accessor schema_version: ::String
|
1451
1464
|
attr_accessor document_format: ("YAML" | "JSON" | "TEXT")
|
1452
1465
|
attr_accessor target_type: ::String
|
@@ -1599,6 +1612,17 @@ module Aws::SSM
|
|
1599
1612
|
SENSITIVE: []
|
1600
1613
|
end
|
1601
1614
|
|
1615
|
+
class GetAccessTokenRequest
|
1616
|
+
attr_accessor access_request_id: ::String
|
1617
|
+
SENSITIVE: []
|
1618
|
+
end
|
1619
|
+
|
1620
|
+
class GetAccessTokenResponse
|
1621
|
+
attr_accessor credentials: Types::Credentials
|
1622
|
+
attr_accessor access_request_status: ("Approved" | "Rejected" | "Revoked" | "Expired" | "Pending")
|
1623
|
+
SENSITIVE: []
|
1624
|
+
end
|
1625
|
+
|
1602
1626
|
class GetAutomationExecutionRequest
|
1603
1627
|
attr_accessor automation_execution_id: ::String
|
1604
1628
|
SENSITIVE: []
|
@@ -1704,7 +1728,7 @@ module Aws::SSM
|
|
1704
1728
|
attr_accessor status: ("Creating" | "Active" | "Updating" | "Deleting" | "Failed")
|
1705
1729
|
attr_accessor status_information: ::String
|
1706
1730
|
attr_accessor content: ::String
|
1707
|
-
attr_accessor document_type: ("Command" | "Policy" | "Automation" | "Session" | "Package" | "ApplicationConfiguration" | "ApplicationConfigurationSchema" | "DeploymentStrategy" | "ChangeCalendar" | "Automation.ChangeTemplate" | "ProblemAnalysis" | "ProblemAnalysisTemplate" | "CloudFormation" | "ConformancePackTemplate" | "QuickSetup")
|
1731
|
+
attr_accessor document_type: ("Command" | "Policy" | "Automation" | "Session" | "Package" | "ApplicationConfiguration" | "ApplicationConfigurationSchema" | "DeploymentStrategy" | "ChangeCalendar" | "Automation.ChangeTemplate" | "ProblemAnalysis" | "ProblemAnalysisTemplate" | "CloudFormation" | "ConformancePackTemplate" | "QuickSetup" | "ManualApprovalPolicy" | "AutoApprovalPolicy")
|
1708
1732
|
attr_accessor document_format: ("YAML" | "JSON" | "TEXT")
|
1709
1733
|
attr_accessor requires: ::Array[Types::DocumentRequires]
|
1710
1734
|
attr_accessor attachments_content: ::Array[Types::AttachmentContent]
|
@@ -3101,7 +3125,7 @@ module Aws::SSM
|
|
3101
3125
|
attr_accessor notifications: ::Array[Types::OpsItemNotification]
|
3102
3126
|
attr_accessor priority: ::Integer
|
3103
3127
|
attr_accessor related_ops_items: ::Array[Types::RelatedOpsItem]
|
3104
|
-
attr_accessor status: ("Open" | "InProgress" | "Resolved" | "Pending" | "TimedOut" | "Cancelling" | "Cancelled" | "Failed" | "CompletedWithSuccess" | "CompletedWithFailure" | "Scheduled" | "RunbookInProgress" | "PendingChangeCalendarOverride" | "ChangeCalendarOverrideApproved" | "ChangeCalendarOverrideRejected" | "PendingApproval" | "Approved" | "Rejected" | "Closed")
|
3128
|
+
attr_accessor status: ("Open" | "InProgress" | "Resolved" | "Pending" | "TimedOut" | "Cancelling" | "Cancelled" | "Failed" | "CompletedWithSuccess" | "CompletedWithFailure" | "Scheduled" | "RunbookInProgress" | "PendingChangeCalendarOverride" | "ChangeCalendarOverrideApproved" | "ChangeCalendarOverrideRejected" | "PendingApproval" | "Approved" | "Revoked" | "Rejected" | "Closed")
|
3105
3129
|
attr_accessor ops_item_id: ::String
|
3106
3130
|
attr_accessor version: ::String
|
3107
3131
|
attr_accessor title: ::String
|
@@ -3158,7 +3182,7 @@ module Aws::SSM
|
|
3158
3182
|
end
|
3159
3183
|
|
3160
3184
|
class OpsItemFilter
|
3161
|
-
attr_accessor key: ("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")
|
3185
|
+
attr_accessor key: ("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")
|
3162
3186
|
attr_accessor values: ::Array[::String]
|
3163
3187
|
attr_accessor operator: ("Equal" | "Contains" | "GreaterThan" | "LessThan")
|
3164
3188
|
SENSITIVE: []
|
@@ -3232,7 +3256,7 @@ module Aws::SSM
|
|
3232
3256
|
attr_accessor last_modified_time: ::Time
|
3233
3257
|
attr_accessor priority: ::Integer
|
3234
3258
|
attr_accessor source: ::String
|
3235
|
-
attr_accessor status: ("Open" | "InProgress" | "Resolved" | "Pending" | "TimedOut" | "Cancelling" | "Cancelled" | "Failed" | "CompletedWithSuccess" | "CompletedWithFailure" | "Scheduled" | "RunbookInProgress" | "PendingChangeCalendarOverride" | "ChangeCalendarOverrideApproved" | "ChangeCalendarOverrideRejected" | "PendingApproval" | "Approved" | "Rejected" | "Closed")
|
3259
|
+
attr_accessor status: ("Open" | "InProgress" | "Resolved" | "Pending" | "TimedOut" | "Cancelling" | "Cancelled" | "Failed" | "CompletedWithSuccess" | "CompletedWithFailure" | "Scheduled" | "RunbookInProgress" | "PendingChangeCalendarOverride" | "ChangeCalendarOverrideApproved" | "ChangeCalendarOverrideRejected" | "PendingApproval" | "Approved" | "Revoked" | "Rejected" | "Closed")
|
3236
3260
|
attr_accessor ops_item_id: ::String
|
3237
3261
|
attr_accessor title: ::String
|
3238
3262
|
attr_accessor operational_data: ::Hash[::String, Types::OpsItemDataValue]
|
@@ -3878,7 +3902,7 @@ module Aws::SSM
|
|
3878
3902
|
|
3879
3903
|
class SendAutomationSignalRequest
|
3880
3904
|
attr_accessor automation_execution_id: ::String
|
3881
|
-
attr_accessor signal_type: ("Approve" | "Reject" | "StartStep" | "StopStep" | "Resume")
|
3905
|
+
attr_accessor signal_type: ("Approve" | "Reject" | "StartStep" | "StopStep" | "Resume" | "Revoke")
|
3882
3906
|
attr_accessor payload: ::Hash[::String, ::Array[::String]]
|
3883
3907
|
SENSITIVE: []
|
3884
3908
|
end
|
@@ -3913,6 +3937,15 @@ module Aws::SSM
|
|
3913
3937
|
SENSITIVE: []
|
3914
3938
|
end
|
3915
3939
|
|
3940
|
+
class ServiceQuotaExceededException
|
3941
|
+
attr_accessor message: ::String
|
3942
|
+
attr_accessor resource_id: ::String
|
3943
|
+
attr_accessor resource_type: ::String
|
3944
|
+
attr_accessor quota_code: ::String
|
3945
|
+
attr_accessor service_code: ::String
|
3946
|
+
SENSITIVE: []
|
3947
|
+
end
|
3948
|
+
|
3916
3949
|
class ServiceSetting
|
3917
3950
|
attr_accessor setting_id: ::String
|
3918
3951
|
attr_accessor setting_value: ::String
|
@@ -3965,6 +3998,18 @@ module Aws::SSM
|
|
3965
3998
|
SENSITIVE: []
|
3966
3999
|
end
|
3967
4000
|
|
4001
|
+
class StartAccessRequestRequest
|
4002
|
+
attr_accessor reason: ::String
|
4003
|
+
attr_accessor targets: ::Array[Types::Target]
|
4004
|
+
attr_accessor tags: ::Array[Types::Tag]
|
4005
|
+
SENSITIVE: []
|
4006
|
+
end
|
4007
|
+
|
4008
|
+
class StartAccessRequestResponse
|
4009
|
+
attr_accessor access_request_id: ::String
|
4010
|
+
SENSITIVE: []
|
4011
|
+
end
|
4012
|
+
|
3968
4013
|
class StartAssociationsOnceRequest
|
3969
4014
|
attr_accessor association_ids: ::Array[::String]
|
3970
4015
|
SENSITIVE: []
|
@@ -4147,6 +4192,13 @@ module Aws::SSM
|
|
4147
4192
|
SENSITIVE: []
|
4148
4193
|
end
|
4149
4194
|
|
4195
|
+
class ThrottlingException
|
4196
|
+
attr_accessor message: ::String
|
4197
|
+
attr_accessor quota_code: ::String
|
4198
|
+
attr_accessor service_code: ::String
|
4199
|
+
SENSITIVE: []
|
4200
|
+
end
|
4201
|
+
|
4150
4202
|
class TooManyTagsError < Aws::EmptyStructure
|
4151
4203
|
end
|
4152
4204
|
|
@@ -4403,7 +4455,7 @@ module Aws::SSM
|
|
4403
4455
|
attr_accessor notifications: ::Array[Types::OpsItemNotification]
|
4404
4456
|
attr_accessor priority: ::Integer
|
4405
4457
|
attr_accessor related_ops_items: ::Array[Types::RelatedOpsItem]
|
4406
|
-
attr_accessor status: ("Open" | "InProgress" | "Resolved" | "Pending" | "TimedOut" | "Cancelling" | "Cancelled" | "Failed" | "CompletedWithSuccess" | "CompletedWithFailure" | "Scheduled" | "RunbookInProgress" | "PendingChangeCalendarOverride" | "ChangeCalendarOverrideApproved" | "ChangeCalendarOverrideRejected" | "PendingApproval" | "Approved" | "Rejected" | "Closed")
|
4458
|
+
attr_accessor status: ("Open" | "InProgress" | "Resolved" | "Pending" | "TimedOut" | "Cancelling" | "Cancelled" | "Failed" | "CompletedWithSuccess" | "CompletedWithFailure" | "Scheduled" | "RunbookInProgress" | "PendingChangeCalendarOverride" | "ChangeCalendarOverrideApproved" | "ChangeCalendarOverrideRejected" | "PendingApproval" | "Approved" | "Revoked" | "Rejected" | "Closed")
|
4407
4459
|
attr_accessor ops_item_id: ::String
|
4408
4460
|
attr_accessor title: ::String
|
4409
4461
|
attr_accessor category: ::String
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-ssm
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.193.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-04-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|