aws-sdk-ssmsap 1.10.0 → 1.12.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-ssmsap/client.rb +40 -9
- data/lib/aws-sdk-ssmsap/client_api.rb +38 -1
- data/lib/aws-sdk-ssmsap/endpoint_provider.rb +1 -1
- data/lib/aws-sdk-ssmsap/errors.rb +16 -0
- data/lib/aws-sdk-ssmsap/types.rb +139 -4
- data/lib/aws-sdk-ssmsap.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4b88dcbf0bf73c04ffafe1b589ed898e25bc07d0136c1b6ae661aa8577c2dabe
|
4
|
+
data.tar.gz: 265275f8fa17a6136680adb4907f0e9b6e632a914e7bbc0a74e064566cc78c24
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 14476c9a4be0d25834be7d7ad66b30c41b5d50e2823bdfc4b8804f5835776f8e692fe2781219f9828a12086e7a91d53d24daa0fc9674d942c5cdedf31fc3b836
|
7
|
+
data.tar.gz: eba1c5a39a76cd3d2460fc4958bfb40b522c2ee659ecfb422cbc1a4d10870e483205832d7533aa4e368af2a2a06790fef9bbe78a8dc3ab42eccded1bc6d041bf
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.12.0 (2023-10-26)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - AWS Systems Manager for SAP added support for registration and discovery of SAP ABAP applications
|
8
|
+
|
9
|
+
1.11.0 (2023-09-27)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.10.0 (2023-09-19)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.12.0
|
@@ -476,7 +476,7 @@ module Aws::SsmSap
|
|
476
476
|
# @example Response structure
|
477
477
|
#
|
478
478
|
# resp.application.id #=> String
|
479
|
-
# resp.application.type #=> String, one of "HANA"
|
479
|
+
# resp.application.type #=> String, one of "HANA", "SAP_ABAP"
|
480
480
|
# resp.application.arn #=> String
|
481
481
|
# resp.application.app_registry_arn #=> String
|
482
482
|
# resp.application.status #=> String, one of "ACTIVATED", "STARTING", "STOPPED", "STOPPING", "FAILED", "REGISTERING", "DELETING", "UNKNOWN"
|
@@ -521,21 +521,29 @@ module Aws::SsmSap
|
|
521
521
|
# @example Response structure
|
522
522
|
#
|
523
523
|
# resp.component.component_id #=> String
|
524
|
+
# resp.component.sid #=> String
|
525
|
+
# resp.component.system_number #=> String
|
524
526
|
# resp.component.parent_component #=> String
|
525
527
|
# resp.component.child_components #=> Array
|
526
528
|
# resp.component.child_components[0] #=> String
|
527
529
|
# resp.component.application_id #=> String
|
528
|
-
# resp.component.component_type #=> String, one of "HANA", "HANA_NODE"
|
530
|
+
# resp.component.component_type #=> String, one of "HANA", "HANA_NODE", "ABAP", "ASCS", "DIALOG", "WEBDISP", "WD", "ERS"
|
529
531
|
# resp.component.status #=> String, one of "ACTIVATED", "STARTING", "STOPPED", "STOPPING", "RUNNING", "RUNNING_WITH_ERROR", "UNDEFINED"
|
530
532
|
# resp.component.sap_hostname #=> String
|
533
|
+
# resp.component.sap_feature #=> String
|
531
534
|
# resp.component.sap_kernel_version #=> String
|
532
535
|
# resp.component.hdb_version #=> String
|
533
536
|
# resp.component.resilience.hsr_tier #=> String
|
534
537
|
# resp.component.resilience.hsr_replication_mode #=> String, one of "PRIMARY", "NONE", "SYNC", "SYNCMEM", "ASYNC"
|
535
538
|
# resp.component.resilience.hsr_operation_mode #=> String, one of "PRIMARY", "LOGREPLAY", "DELTA_DATASHIPPING", "LOGREPLAY_READACCESS", "NONE"
|
536
539
|
# resp.component.resilience.cluster_status #=> String, one of "ONLINE", "STANDBY", "MAINTENANCE", "OFFLINE", "NONE"
|
540
|
+
# resp.component.resilience.enqueue_replication #=> Boolean
|
537
541
|
# resp.component.associated_host.hostname #=> String
|
538
542
|
# resp.component.associated_host.ec2_instance_id #=> String
|
543
|
+
# resp.component.associated_host.ip_addresses #=> Array
|
544
|
+
# resp.component.associated_host.ip_addresses[0].ip_address #=> String
|
545
|
+
# resp.component.associated_host.ip_addresses[0].primary #=> Boolean
|
546
|
+
# resp.component.associated_host.ip_addresses[0].allocation_type #=> String, one of "VPC_SUBNET", "ELASTIC_IP", "OVERLAY", "UNKNOWN"
|
539
547
|
# resp.component.associated_host.os_version #=> String
|
540
548
|
# resp.component.databases #=> Array
|
541
549
|
# resp.component.databases[0] #=> String
|
@@ -547,6 +555,9 @@ module Aws::SsmSap
|
|
547
555
|
# resp.component.hosts[0].host_role #=> String, one of "LEADER", "WORKER", "STANDBY", "UNKNOWN"
|
548
556
|
# resp.component.hosts[0].os_version #=> String
|
549
557
|
# resp.component.primary_host #=> String
|
558
|
+
# resp.component.database_connection.database_connection_method #=> String, one of "DIRECT", "OVERLAY"
|
559
|
+
# resp.component.database_connection.database_arn #=> String
|
560
|
+
# resp.component.database_connection.connection_ip #=> String
|
550
561
|
# resp.component.last_updated #=> Time
|
551
562
|
# resp.component.arn #=> String
|
552
563
|
# resp.tags #=> Hash
|
@@ -699,6 +710,9 @@ module Aws::SsmSap
|
|
699
710
|
# retrieve the remaining results, make another call with the returned
|
700
711
|
# nextToken value.
|
701
712
|
#
|
713
|
+
# @option params [Array<Types::Filter>] :filters
|
714
|
+
# The filter of name, value, and operator.
|
715
|
+
#
|
702
716
|
# @return [Types::ListApplicationsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
703
717
|
#
|
704
718
|
# * {Types::ListApplicationsOutput#applications #applications} => Array<Types::ApplicationSummary>
|
@@ -711,13 +725,21 @@ module Aws::SsmSap
|
|
711
725
|
# resp = client.list_applications({
|
712
726
|
# next_token: "NextToken",
|
713
727
|
# max_results: 1,
|
728
|
+
# filters: [
|
729
|
+
# {
|
730
|
+
# name: "FilterName", # required
|
731
|
+
# value: "FilterValue", # required
|
732
|
+
# operator: "Equals", # required, accepts Equals, GreaterThanOrEquals, LessThanOrEquals
|
733
|
+
# },
|
734
|
+
# ],
|
714
735
|
# })
|
715
736
|
#
|
716
737
|
# @example Response structure
|
717
738
|
#
|
718
739
|
# resp.applications #=> Array
|
719
740
|
# resp.applications[0].id #=> String
|
720
|
-
# resp.applications[0].
|
741
|
+
# resp.applications[0].discovery_status #=> String, one of "SUCCESS", "REGISTRATION_FAILED", "REFRESH_FAILED", "REGISTERING", "DELETING"
|
742
|
+
# resp.applications[0].type #=> String, one of "HANA", "SAP_ABAP"
|
721
743
|
# resp.applications[0].arn #=> String
|
722
744
|
# resp.applications[0].tags #=> Hash
|
723
745
|
# resp.applications[0].tags["TagKey"] #=> String
|
@@ -768,7 +790,7 @@ module Aws::SsmSap
|
|
768
790
|
# resp.components #=> Array
|
769
791
|
# resp.components[0].application_id #=> String
|
770
792
|
# resp.components[0].component_id #=> String
|
771
|
-
# resp.components[0].component_type #=> String, one of "HANA", "HANA_NODE"
|
793
|
+
# resp.components[0].component_type #=> String, one of "HANA", "HANA_NODE", "ABAP", "ASCS", "DIALOG", "WEBDISP", "WD", "ERS"
|
772
794
|
# resp.components[0].tags #=> Hash
|
773
795
|
# resp.components[0].tags["TagKey"] #=> String
|
774
796
|
# resp.components[0].arn #=> String
|
@@ -996,9 +1018,12 @@ module Aws::SsmSap
|
|
996
1018
|
# @option params [Hash<String,String>] :tags
|
997
1019
|
# The tags to be attached to the SAP application.
|
998
1020
|
#
|
999
|
-
# @option params [
|
1021
|
+
# @option params [Array<Types::ApplicationCredential>] :credentials
|
1000
1022
|
# The credentials of the SAP application.
|
1001
1023
|
#
|
1024
|
+
# @option params [String] :database_arn
|
1025
|
+
# The Amazon Resource Name of the SAP HANA database.
|
1026
|
+
#
|
1002
1027
|
# @return [Types::RegisterApplicationOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1003
1028
|
#
|
1004
1029
|
# * {Types::RegisterApplicationOutput#application #application} => Types::Application
|
@@ -1008,26 +1033,27 @@ module Aws::SsmSap
|
|
1008
1033
|
#
|
1009
1034
|
# resp = client.register_application({
|
1010
1035
|
# application_id: "ApplicationId", # required
|
1011
|
-
# application_type: "HANA", # required, accepts HANA
|
1036
|
+
# application_type: "HANA", # required, accepts HANA, SAP_ABAP
|
1012
1037
|
# instances: ["InstanceId"], # required
|
1013
1038
|
# sap_instance_number: "SAPInstanceNumber",
|
1014
1039
|
# sid: "SID",
|
1015
1040
|
# tags: {
|
1016
1041
|
# "TagKey" => "TagValue",
|
1017
1042
|
# },
|
1018
|
-
# credentials: [
|
1043
|
+
# credentials: [
|
1019
1044
|
# {
|
1020
1045
|
# database_name: "DatabaseName", # required
|
1021
1046
|
# credential_type: "ADMIN", # required, accepts ADMIN
|
1022
1047
|
# secret_id: "SecretId", # required
|
1023
1048
|
# },
|
1024
1049
|
# ],
|
1050
|
+
# database_arn: "SsmSapArn",
|
1025
1051
|
# })
|
1026
1052
|
#
|
1027
1053
|
# @example Response structure
|
1028
1054
|
#
|
1029
1055
|
# resp.application.id #=> String
|
1030
|
-
# resp.application.type #=> String, one of "HANA"
|
1056
|
+
# resp.application.type #=> String, one of "HANA", "SAP_ABAP"
|
1031
1057
|
# resp.application.arn #=> String
|
1032
1058
|
# resp.application.app_registry_arn #=> String
|
1033
1059
|
# resp.application.status #=> String, one of "ACTIVATED", "STARTING", "STOPPED", "STOPPING", "FAILED", "REGISTERING", "DELETING", "UNKNOWN"
|
@@ -1145,6 +1171,10 @@ module Aws::SsmSap
|
|
1145
1171
|
# @option params [Types::BackintConfig] :backint
|
1146
1172
|
# Installation of AWS Backint Agent for SAP HANA.
|
1147
1173
|
#
|
1174
|
+
# @option params [String] :database_arn
|
1175
|
+
# The Amazon Resource Name of the SAP HANA database that replaces the
|
1176
|
+
# current SAP HANA connection with the SAP\_ABAP application.
|
1177
|
+
#
|
1148
1178
|
# @return [Types::UpdateApplicationSettingsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1149
1179
|
#
|
1150
1180
|
# * {Types::UpdateApplicationSettingsOutput#message #message} => String
|
@@ -1172,6 +1202,7 @@ module Aws::SsmSap
|
|
1172
1202
|
# backint_mode: "AWSBackup", # required, accepts AWSBackup
|
1173
1203
|
# ensure_no_backup_in_process: false, # required
|
1174
1204
|
# },
|
1205
|
+
# database_arn: "SsmSapArn",
|
1175
1206
|
# })
|
1176
1207
|
#
|
1177
1208
|
# @example Response structure
|
@@ -1202,7 +1233,7 @@ module Aws::SsmSap
|
|
1202
1233
|
params: params,
|
1203
1234
|
config: config)
|
1204
1235
|
context[:gem_name] = 'aws-sdk-ssmsap'
|
1205
|
-
context[:gem_version] = '1.
|
1236
|
+
context[:gem_version] = '1.12.0'
|
1206
1237
|
Seahorse::Client::Request.new(handlers, context)
|
1207
1238
|
end
|
1208
1239
|
|
@@ -13,6 +13,7 @@ module Aws::SsmSap
|
|
13
13
|
|
14
14
|
include Seahorse::Model
|
15
15
|
|
16
|
+
AllocationType = Shapes::StringShape.new(name: 'AllocationType')
|
16
17
|
AppRegistryArn = Shapes::StringShape.new(name: 'AppRegistryArn')
|
17
18
|
Application = Shapes::StructureShape.new(name: 'Application')
|
18
19
|
ApplicationCredential = Shapes::StructureShape.new(name: 'ApplicationCredential')
|
@@ -39,6 +40,8 @@ module Aws::SsmSap
|
|
39
40
|
ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
|
40
41
|
CredentialType = Shapes::StringShape.new(name: 'CredentialType')
|
41
42
|
Database = Shapes::StructureShape.new(name: 'Database')
|
43
|
+
DatabaseConnection = Shapes::StructureShape.new(name: 'DatabaseConnection')
|
44
|
+
DatabaseConnectionMethod = Shapes::StringShape.new(name: 'DatabaseConnectionMethod')
|
42
45
|
DatabaseId = Shapes::StringShape.new(name: 'DatabaseId')
|
43
46
|
DatabaseIdList = Shapes::ListShape.new(name: 'DatabaseIdList')
|
44
47
|
DatabaseName = Shapes::StringShape.new(name: 'DatabaseName')
|
@@ -72,6 +75,8 @@ module Aws::SsmSap
|
|
72
75
|
InstanceList = Shapes::ListShape.new(name: 'InstanceList')
|
73
76
|
Integer = Shapes::IntegerShape.new(name: 'Integer')
|
74
77
|
InternalServerException = Shapes::StructureShape.new(name: 'InternalServerException')
|
78
|
+
IpAddressList = Shapes::ListShape.new(name: 'IpAddressList')
|
79
|
+
IpAddressMember = Shapes::StructureShape.new(name: 'IpAddressMember')
|
75
80
|
ListApplicationsInput = Shapes::StructureShape.new(name: 'ListApplicationsInput')
|
76
81
|
ListApplicationsOutput = Shapes::StructureShape.new(name: 'ListApplicationsOutput')
|
77
82
|
ListComponentsInput = Shapes::StructureShape.new(name: 'ListComponentsInput')
|
@@ -116,6 +121,7 @@ module Aws::SsmSap
|
|
116
121
|
TagResourceResponse = Shapes::StructureShape.new(name: 'TagResourceResponse')
|
117
122
|
TagValue = Shapes::StringShape.new(name: 'TagValue')
|
118
123
|
Timestamp = Shapes::TimestampShape.new(name: 'Timestamp')
|
124
|
+
UnauthorizedException = Shapes::StructureShape.new(name: 'UnauthorizedException')
|
119
125
|
UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
|
120
126
|
UntagResourceResponse = Shapes::StructureShape.new(name: 'UntagResourceResponse')
|
121
127
|
UpdateApplicationSettingsInput = Shapes::StructureShape.new(name: 'UpdateApplicationSettingsInput')
|
@@ -141,6 +147,7 @@ module Aws::SsmSap
|
|
141
147
|
ApplicationCredentialList.member = Shapes::ShapeRef.new(shape: ApplicationCredential)
|
142
148
|
|
143
149
|
ApplicationSummary.add_member(:id, Shapes::ShapeRef.new(shape: ApplicationId, location_name: "Id"))
|
150
|
+
ApplicationSummary.add_member(:discovery_status, Shapes::ShapeRef.new(shape: ApplicationDiscoveryStatus, location_name: "DiscoveryStatus"))
|
144
151
|
ApplicationSummary.add_member(:type, Shapes::ShapeRef.new(shape: ApplicationType, location_name: "Type"))
|
145
152
|
ApplicationSummary.add_member(:arn, Shapes::ShapeRef.new(shape: SsmSapArn, location_name: "Arn"))
|
146
153
|
ApplicationSummary.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
|
@@ -150,6 +157,7 @@ module Aws::SsmSap
|
|
150
157
|
|
151
158
|
AssociatedHost.add_member(:hostname, Shapes::ShapeRef.new(shape: String, location_name: "Hostname"))
|
152
159
|
AssociatedHost.add_member(:ec2_instance_id, Shapes::ShapeRef.new(shape: String, location_name: "Ec2InstanceId"))
|
160
|
+
AssociatedHost.add_member(:ip_addresses, Shapes::ShapeRef.new(shape: IpAddressList, location_name: "IpAddresses"))
|
153
161
|
AssociatedHost.add_member(:os_version, Shapes::ShapeRef.new(shape: String, location_name: "OsVersion"))
|
154
162
|
AssociatedHost.struct_class = Types::AssociatedHost
|
155
163
|
|
@@ -158,12 +166,15 @@ module Aws::SsmSap
|
|
158
166
|
BackintConfig.struct_class = Types::BackintConfig
|
159
167
|
|
160
168
|
Component.add_member(:component_id, Shapes::ShapeRef.new(shape: ComponentId, location_name: "ComponentId"))
|
169
|
+
Component.add_member(:sid, Shapes::ShapeRef.new(shape: SID, location_name: "Sid"))
|
170
|
+
Component.add_member(:system_number, Shapes::ShapeRef.new(shape: SAPInstanceNumber, location_name: "SystemNumber"))
|
161
171
|
Component.add_member(:parent_component, Shapes::ShapeRef.new(shape: ComponentId, location_name: "ParentComponent"))
|
162
172
|
Component.add_member(:child_components, Shapes::ShapeRef.new(shape: ComponentIdList, location_name: "ChildComponents"))
|
163
173
|
Component.add_member(:application_id, Shapes::ShapeRef.new(shape: ApplicationId, location_name: "ApplicationId"))
|
164
174
|
Component.add_member(:component_type, Shapes::ShapeRef.new(shape: ComponentType, location_name: "ComponentType"))
|
165
175
|
Component.add_member(:status, Shapes::ShapeRef.new(shape: ComponentStatus, location_name: "Status"))
|
166
176
|
Component.add_member(:sap_hostname, Shapes::ShapeRef.new(shape: String, location_name: "SapHostname"))
|
177
|
+
Component.add_member(:sap_feature, Shapes::ShapeRef.new(shape: String, location_name: "SapFeature"))
|
167
178
|
Component.add_member(:sap_kernel_version, Shapes::ShapeRef.new(shape: String, location_name: "SapKernelVersion"))
|
168
179
|
Component.add_member(:hdb_version, Shapes::ShapeRef.new(shape: String, location_name: "HdbVersion"))
|
169
180
|
Component.add_member(:resilience, Shapes::ShapeRef.new(shape: Resilience, location_name: "Resilience"))
|
@@ -171,6 +182,7 @@ module Aws::SsmSap
|
|
171
182
|
Component.add_member(:databases, Shapes::ShapeRef.new(shape: DatabaseIdList, location_name: "Databases"))
|
172
183
|
Component.add_member(:hosts, Shapes::ShapeRef.new(shape: HostList, deprecated: true, location_name: "Hosts", metadata: {"deprecatedMessage"=>"This shape is no longer used. Please use AssociatedHost."}))
|
173
184
|
Component.add_member(:primary_host, Shapes::ShapeRef.new(shape: String, deprecated: true, location_name: "PrimaryHost", metadata: {"deprecatedMessage"=>"This shape is no longer used. Please use AssociatedHost."}))
|
185
|
+
Component.add_member(:database_connection, Shapes::ShapeRef.new(shape: DatabaseConnection, location_name: "DatabaseConnection"))
|
174
186
|
Component.add_member(:last_updated, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastUpdated"))
|
175
187
|
Component.add_member(:arn, Shapes::ShapeRef.new(shape: SsmSapArn, location_name: "Arn"))
|
176
188
|
Component.struct_class = Types::Component
|
@@ -202,6 +214,11 @@ module Aws::SsmSap
|
|
202
214
|
Database.add_member(:last_updated, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastUpdated"))
|
203
215
|
Database.struct_class = Types::Database
|
204
216
|
|
217
|
+
DatabaseConnection.add_member(:database_connection_method, Shapes::ShapeRef.new(shape: DatabaseConnectionMethod, location_name: "DatabaseConnectionMethod"))
|
218
|
+
DatabaseConnection.add_member(:database_arn, Shapes::ShapeRef.new(shape: SsmSapArn, location_name: "DatabaseArn"))
|
219
|
+
DatabaseConnection.add_member(:connection_ip, Shapes::ShapeRef.new(shape: String, location_name: "ConnectionIp"))
|
220
|
+
DatabaseConnection.struct_class = Types::DatabaseConnection
|
221
|
+
|
205
222
|
DatabaseIdList.member = Shapes::ShapeRef.new(shape: DatabaseId)
|
206
223
|
|
207
224
|
DatabaseSummary.add_member(:application_id, Shapes::ShapeRef.new(shape: ApplicationId, location_name: "ApplicationId"))
|
@@ -289,8 +306,16 @@ module Aws::SsmSap
|
|
289
306
|
InternalServerException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
290
307
|
InternalServerException.struct_class = Types::InternalServerException
|
291
308
|
|
309
|
+
IpAddressList.member = Shapes::ShapeRef.new(shape: IpAddressMember)
|
310
|
+
|
311
|
+
IpAddressMember.add_member(:ip_address, Shapes::ShapeRef.new(shape: String, location_name: "IpAddress"))
|
312
|
+
IpAddressMember.add_member(:primary, Shapes::ShapeRef.new(shape: Boolean, location_name: "Primary"))
|
313
|
+
IpAddressMember.add_member(:allocation_type, Shapes::ShapeRef.new(shape: AllocationType, location_name: "AllocationType"))
|
314
|
+
IpAddressMember.struct_class = Types::IpAddressMember
|
315
|
+
|
292
316
|
ListApplicationsInput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
293
317
|
ListApplicationsInput.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
|
318
|
+
ListApplicationsInput.add_member(:filters, Shapes::ShapeRef.new(shape: FilterList, location_name: "Filters"))
|
294
319
|
ListApplicationsInput.struct_class = Types::ListApplicationsInput
|
295
320
|
|
296
321
|
ListApplicationsOutput.add_member(:applications, Shapes::ShapeRef.new(shape: ApplicationSummaryList, location_name: "Applications"))
|
@@ -366,7 +391,8 @@ module Aws::SsmSap
|
|
366
391
|
RegisterApplicationInput.add_member(:sap_instance_number, Shapes::ShapeRef.new(shape: SAPInstanceNumber, location_name: "SapInstanceNumber"))
|
367
392
|
RegisterApplicationInput.add_member(:sid, Shapes::ShapeRef.new(shape: SID, location_name: "Sid"))
|
368
393
|
RegisterApplicationInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
|
369
|
-
RegisterApplicationInput.add_member(:credentials, Shapes::ShapeRef.new(shape: ApplicationCredentialList,
|
394
|
+
RegisterApplicationInput.add_member(:credentials, Shapes::ShapeRef.new(shape: ApplicationCredentialList, location_name: "Credentials"))
|
395
|
+
RegisterApplicationInput.add_member(:database_arn, Shapes::ShapeRef.new(shape: SsmSapArn, location_name: "DatabaseArn"))
|
370
396
|
RegisterApplicationInput.struct_class = Types::RegisterApplicationInput
|
371
397
|
|
372
398
|
RegisterApplicationOutput.add_member(:application, Shapes::ShapeRef.new(shape: Application, location_name: "Application"))
|
@@ -377,6 +403,7 @@ module Aws::SsmSap
|
|
377
403
|
Resilience.add_member(:hsr_replication_mode, Shapes::ShapeRef.new(shape: ReplicationMode, location_name: "HsrReplicationMode"))
|
378
404
|
Resilience.add_member(:hsr_operation_mode, Shapes::ShapeRef.new(shape: OperationMode, location_name: "HsrOperationMode"))
|
379
405
|
Resilience.add_member(:cluster_status, Shapes::ShapeRef.new(shape: ClusterStatus, location_name: "ClusterStatus"))
|
406
|
+
Resilience.add_member(:enqueue_replication, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnqueueReplication"))
|
380
407
|
Resilience.struct_class = Types::Resilience
|
381
408
|
|
382
409
|
ResourceNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
@@ -399,6 +426,9 @@ module Aws::SsmSap
|
|
399
426
|
|
400
427
|
TagResourceResponse.struct_class = Types::TagResourceResponse
|
401
428
|
|
429
|
+
UnauthorizedException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
430
|
+
UnauthorizedException.struct_class = Types::UnauthorizedException
|
431
|
+
|
402
432
|
UntagResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: SsmSapArn, required: true, location: "uri", location_name: "resourceArn"))
|
403
433
|
UntagResourceRequest.add_member(:tag_keys, Shapes::ShapeRef.new(shape: TagKeyList, required: true, location: "querystring", location_name: "tagKeys"))
|
404
434
|
UntagResourceRequest.struct_class = Types::UntagResourceRequest
|
@@ -409,6 +439,7 @@ module Aws::SsmSap
|
|
409
439
|
UpdateApplicationSettingsInput.add_member(:credentials_to_add_or_update, Shapes::ShapeRef.new(shape: ApplicationCredentialList, location_name: "CredentialsToAddOrUpdate"))
|
410
440
|
UpdateApplicationSettingsInput.add_member(:credentials_to_remove, Shapes::ShapeRef.new(shape: ApplicationCredentialList, location_name: "CredentialsToRemove"))
|
411
441
|
UpdateApplicationSettingsInput.add_member(:backint, Shapes::ShapeRef.new(shape: BackintConfig, location_name: "Backint"))
|
442
|
+
UpdateApplicationSettingsInput.add_member(:database_arn, Shapes::ShapeRef.new(shape: SsmSapArn, location_name: "DatabaseArn"))
|
412
443
|
UpdateApplicationSettingsInput.struct_class = Types::UpdateApplicationSettingsInput
|
413
444
|
|
414
445
|
UpdateApplicationSettingsOutput.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
@@ -454,6 +485,7 @@ module Aws::SsmSap
|
|
454
485
|
o.http_request_uri = "/deregister-application"
|
455
486
|
o.input = Shapes::ShapeRef.new(shape: DeregisterApplicationInput)
|
456
487
|
o.output = Shapes::ShapeRef.new(shape: DeregisterApplicationOutput)
|
488
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
457
489
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
458
490
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
459
491
|
end)
|
@@ -474,6 +506,7 @@ module Aws::SsmSap
|
|
474
506
|
o.http_request_uri = "/get-component"
|
475
507
|
o.input = Shapes::ShapeRef.new(shape: GetComponentInput)
|
476
508
|
o.output = Shapes::ShapeRef.new(shape: GetComponentOutput)
|
509
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
477
510
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
478
511
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
479
512
|
end)
|
@@ -532,6 +565,7 @@ module Aws::SsmSap
|
|
532
565
|
o.http_request_uri = "/list-components"
|
533
566
|
o.input = Shapes::ShapeRef.new(shape: ListComponentsInput)
|
534
567
|
o.output = Shapes::ShapeRef.new(shape: ListComponentsOutput)
|
568
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
535
569
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
536
570
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
537
571
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
@@ -604,6 +638,7 @@ module Aws::SsmSap
|
|
604
638
|
o.http_request_uri = "/register-application"
|
605
639
|
o.input = Shapes::ShapeRef.new(shape: RegisterApplicationInput)
|
606
640
|
o.output = Shapes::ShapeRef.new(shape: RegisterApplicationOutput)
|
641
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
607
642
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
608
643
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
609
644
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
@@ -615,6 +650,7 @@ module Aws::SsmSap
|
|
615
650
|
o.http_request_uri = "/start-application-refresh"
|
616
651
|
o.input = Shapes::ShapeRef.new(shape: StartApplicationRefreshInput)
|
617
652
|
o.output = Shapes::ShapeRef.new(shape: StartApplicationRefreshOutput)
|
653
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
618
654
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
619
655
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
620
656
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
@@ -649,6 +685,7 @@ module Aws::SsmSap
|
|
649
685
|
o.http_request_uri = "/update-application-settings"
|
650
686
|
o.input = Shapes::ShapeRef.new(shape: UpdateApplicationSettingsInput)
|
651
687
|
o.output = Shapes::ShapeRef.new(shape: UpdateApplicationSettingsOutput)
|
688
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
652
689
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
653
690
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
654
691
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
@@ -32,7 +32,7 @@ module Aws::SsmSap
|
|
32
32
|
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
33
33
|
end
|
34
34
|
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
35
|
-
if Aws::Endpoints::Matchers.boolean_equals?(
|
35
|
+
if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
|
36
36
|
return Aws::Endpoints::Endpoint.new(url: "https://ssm-sap-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
37
37
|
end
|
38
38
|
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
@@ -30,6 +30,7 @@ module Aws::SsmSap
|
|
30
30
|
# * {ConflictException}
|
31
31
|
# * {InternalServerException}
|
32
32
|
# * {ResourceNotFoundException}
|
33
|
+
# * {UnauthorizedException}
|
33
34
|
# * {ValidationException}
|
34
35
|
#
|
35
36
|
# Additionally, error classes are dynamically generated for service errors based on the error code
|
@@ -83,6 +84,21 @@ module Aws::SsmSap
|
|
83
84
|
end
|
84
85
|
end
|
85
86
|
|
87
|
+
class UnauthorizedException < ServiceError
|
88
|
+
|
89
|
+
# @param [Seahorse::Client::RequestContext] context
|
90
|
+
# @param [String] message
|
91
|
+
# @param [Aws::SsmSap::Types::UnauthorizedException] data
|
92
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
93
|
+
super(context, message, data)
|
94
|
+
end
|
95
|
+
|
96
|
+
# @return [String]
|
97
|
+
def message
|
98
|
+
@message || @data[:message]
|
99
|
+
end
|
100
|
+
end
|
101
|
+
|
86
102
|
class ValidationException < ServiceError
|
87
103
|
|
88
104
|
# @param [Seahorse::Client::RequestContext] context
|
data/lib/aws-sdk-ssmsap/types.rb
CHANGED
@@ -96,6 +96,10 @@ module Aws::SsmSap
|
|
96
96
|
# The ID of the application.
|
97
97
|
# @return [String]
|
98
98
|
#
|
99
|
+
# @!attribute [rw] discovery_status
|
100
|
+
# The status of the latest discovery.
|
101
|
+
# @return [String]
|
102
|
+
#
|
99
103
|
# @!attribute [rw] type
|
100
104
|
# The type of the application.
|
101
105
|
# @return [String]
|
@@ -112,6 +116,7 @@ module Aws::SsmSap
|
|
112
116
|
#
|
113
117
|
class ApplicationSummary < Struct.new(
|
114
118
|
:id,
|
119
|
+
:discovery_status,
|
115
120
|
:type,
|
116
121
|
:arn,
|
117
122
|
:tags)
|
@@ -129,6 +134,10 @@ module Aws::SsmSap
|
|
129
134
|
# The ID of the Amazon EC2 instance.
|
130
135
|
# @return [String]
|
131
136
|
#
|
137
|
+
# @!attribute [rw] ip_addresses
|
138
|
+
# The IP addresses of the associated host.
|
139
|
+
# @return [Array<Types::IpAddressMember>]
|
140
|
+
#
|
132
141
|
# @!attribute [rw] os_version
|
133
142
|
# The version of the operating system.
|
134
143
|
# @return [String]
|
@@ -138,6 +147,7 @@ module Aws::SsmSap
|
|
138
147
|
class AssociatedHost < Struct.new(
|
139
148
|
:hostname,
|
140
149
|
:ec2_instance_id,
|
150
|
+
:ip_addresses,
|
141
151
|
:os_version)
|
142
152
|
SENSITIVE = []
|
143
153
|
include Aws::Structure
|
@@ -168,6 +178,14 @@ module Aws::SsmSap
|
|
168
178
|
# The ID of the component.
|
169
179
|
# @return [String]
|
170
180
|
#
|
181
|
+
# @!attribute [rw] sid
|
182
|
+
# The SAP System Identifier of the application component.
|
183
|
+
# @return [String]
|
184
|
+
#
|
185
|
+
# @!attribute [rw] system_number
|
186
|
+
# The SAP system number of the application component.
|
187
|
+
# @return [String]
|
188
|
+
#
|
171
189
|
# @!attribute [rw] parent_component
|
172
190
|
# The parent component of a highly available environment. For example,
|
173
191
|
# in a highly available SAP on AWS workload, the parent component
|
@@ -190,12 +208,38 @@ module Aws::SsmSap
|
|
190
208
|
#
|
191
209
|
# @!attribute [rw] status
|
192
210
|
# The status of the component.
|
211
|
+
#
|
212
|
+
# * ACTIVATED - this status has been deprecated.
|
213
|
+
#
|
214
|
+
# * STARTING - the component is in the process of being started.
|
215
|
+
#
|
216
|
+
# * STOPPED - the component is not running.
|
217
|
+
#
|
218
|
+
# * STOPPING - the component is in the process of being stopped.
|
219
|
+
#
|
220
|
+
# * RUNNING - the component is running.
|
221
|
+
#
|
222
|
+
# * RUNNING\_WITH\_ERROR - one or more child component(s) of the
|
223
|
+
# parent component is not running. Call [ `GetComponent` ][1] to
|
224
|
+
# review the status of each child component.
|
225
|
+
#
|
226
|
+
# * UNDEFINED - AWS Systems Manager for SAP cannot provide the
|
227
|
+
# component status based on the discovered information. Verify your
|
228
|
+
# SAP application.
|
229
|
+
#
|
230
|
+
#
|
231
|
+
#
|
232
|
+
# [1]: https://docs.aws.amazon.com/ssmsap/latest/APIReference/API_GetComponent.html
|
193
233
|
# @return [String]
|
194
234
|
#
|
195
235
|
# @!attribute [rw] sap_hostname
|
196
236
|
# The hostname of the component.
|
197
237
|
# @return [String]
|
198
238
|
#
|
239
|
+
# @!attribute [rw] sap_feature
|
240
|
+
# The SAP feature of the component.
|
241
|
+
# @return [String]
|
242
|
+
#
|
199
243
|
# @!attribute [rw] sap_kernel_version
|
200
244
|
# The kernel version of the component.
|
201
245
|
# @return [String]
|
@@ -224,6 +268,10 @@ module Aws::SsmSap
|
|
224
268
|
# The primary host of the component.
|
225
269
|
# @return [String]
|
226
270
|
#
|
271
|
+
# @!attribute [rw] database_connection
|
272
|
+
# The connection specifications for the database of the component.
|
273
|
+
# @return [Types::DatabaseConnection]
|
274
|
+
#
|
227
275
|
# @!attribute [rw] last_updated
|
228
276
|
# The time at which the component was last updated.
|
229
277
|
# @return [Time]
|
@@ -236,12 +284,15 @@ module Aws::SsmSap
|
|
236
284
|
#
|
237
285
|
class Component < Struct.new(
|
238
286
|
:component_id,
|
287
|
+
:sid,
|
288
|
+
:system_number,
|
239
289
|
:parent_component,
|
240
290
|
:child_components,
|
241
291
|
:application_id,
|
242
292
|
:component_type,
|
243
293
|
:status,
|
244
294
|
:sap_hostname,
|
295
|
+
:sap_feature,
|
245
296
|
:sap_kernel_version,
|
246
297
|
:hdb_version,
|
247
298
|
:resilience,
|
@@ -249,6 +300,7 @@ module Aws::SsmSap
|
|
249
300
|
:databases,
|
250
301
|
:hosts,
|
251
302
|
:primary_host,
|
303
|
+
:database_connection,
|
252
304
|
:last_updated,
|
253
305
|
:arn)
|
254
306
|
SENSITIVE = []
|
@@ -367,6 +419,30 @@ module Aws::SsmSap
|
|
367
419
|
include Aws::Structure
|
368
420
|
end
|
369
421
|
|
422
|
+
# The connection specifications for the database.
|
423
|
+
#
|
424
|
+
# @!attribute [rw] database_connection_method
|
425
|
+
# The method of connection.
|
426
|
+
# @return [String]
|
427
|
+
#
|
428
|
+
# @!attribute [rw] database_arn
|
429
|
+
# The Amazon Resource Name of the connected SAP HANA database.
|
430
|
+
# @return [String]
|
431
|
+
#
|
432
|
+
# @!attribute [rw] connection_ip
|
433
|
+
# The IP address for connection.
|
434
|
+
# @return [String]
|
435
|
+
#
|
436
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/DatabaseConnection AWS API Documentation
|
437
|
+
#
|
438
|
+
class DatabaseConnection < Struct.new(
|
439
|
+
:database_connection_method,
|
440
|
+
:database_arn,
|
441
|
+
:connection_ip)
|
442
|
+
SENSITIVE = []
|
443
|
+
include Aws::Structure
|
444
|
+
end
|
445
|
+
|
370
446
|
# The summary of the database.
|
371
447
|
#
|
372
448
|
# @!attribute [rw] application_id
|
@@ -707,6 +783,30 @@ module Aws::SsmSap
|
|
707
783
|
include Aws::Structure
|
708
784
|
end
|
709
785
|
|
786
|
+
# Provides information of the IP address.
|
787
|
+
#
|
788
|
+
# @!attribute [rw] ip_address
|
789
|
+
# The IP address.
|
790
|
+
# @return [String]
|
791
|
+
#
|
792
|
+
# @!attribute [rw] primary
|
793
|
+
# The primary IP address.
|
794
|
+
# @return [Boolean]
|
795
|
+
#
|
796
|
+
# @!attribute [rw] allocation_type
|
797
|
+
# The type of allocation for the IP address.
|
798
|
+
# @return [String]
|
799
|
+
#
|
800
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/IpAddressMember AWS API Documentation
|
801
|
+
#
|
802
|
+
class IpAddressMember < Struct.new(
|
803
|
+
:ip_address,
|
804
|
+
:primary,
|
805
|
+
:allocation_type)
|
806
|
+
SENSITIVE = []
|
807
|
+
include Aws::Structure
|
808
|
+
end
|
809
|
+
|
710
810
|
# @!attribute [rw] next_token
|
711
811
|
# The token for the next page of results.
|
712
812
|
# @return [String]
|
@@ -717,11 +817,16 @@ module Aws::SsmSap
|
|
717
817
|
# nextToken value.
|
718
818
|
# @return [Integer]
|
719
819
|
#
|
820
|
+
# @!attribute [rw] filters
|
821
|
+
# The filter of name, value, and operator.
|
822
|
+
# @return [Array<Types::Filter>]
|
823
|
+
#
|
720
824
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/ListApplicationsInput AWS API Documentation
|
721
825
|
#
|
722
826
|
class ListApplicationsInput < Struct.new(
|
723
827
|
:next_token,
|
724
|
-
:max_results
|
828
|
+
:max_results,
|
829
|
+
:filters)
|
725
830
|
SENSITIVE = []
|
726
831
|
include Aws::Structure
|
727
832
|
end
|
@@ -1030,6 +1135,10 @@ module Aws::SsmSap
|
|
1030
1135
|
# The credentials of the SAP application.
|
1031
1136
|
# @return [Array<Types::ApplicationCredential>]
|
1032
1137
|
#
|
1138
|
+
# @!attribute [rw] database_arn
|
1139
|
+
# The Amazon Resource Name of the SAP HANA database.
|
1140
|
+
# @return [String]
|
1141
|
+
#
|
1033
1142
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/RegisterApplicationInput AWS API Documentation
|
1034
1143
|
#
|
1035
1144
|
class RegisterApplicationInput < Struct.new(
|
@@ -1039,7 +1148,8 @@ module Aws::SsmSap
|
|
1039
1148
|
:sap_instance_number,
|
1040
1149
|
:sid,
|
1041
1150
|
:tags,
|
1042
|
-
:credentials
|
1151
|
+
:credentials,
|
1152
|
+
:database_arn)
|
1043
1153
|
SENSITIVE = []
|
1044
1154
|
include Aws::Structure
|
1045
1155
|
end
|
@@ -1079,13 +1189,19 @@ module Aws::SsmSap
|
|
1079
1189
|
# The cluster status of the component.
|
1080
1190
|
# @return [String]
|
1081
1191
|
#
|
1192
|
+
# @!attribute [rw] enqueue_replication
|
1193
|
+
# Indicates if or not enqueue replication is enabled for the ASCS
|
1194
|
+
# component.
|
1195
|
+
# @return [Boolean]
|
1196
|
+
#
|
1082
1197
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/Resilience AWS API Documentation
|
1083
1198
|
#
|
1084
1199
|
class Resilience < Struct.new(
|
1085
1200
|
:hsr_tier,
|
1086
1201
|
:hsr_replication_mode,
|
1087
1202
|
:hsr_operation_mode,
|
1088
|
-
:cluster_status
|
1203
|
+
:cluster_status,
|
1204
|
+
:enqueue_replication)
|
1089
1205
|
SENSITIVE = []
|
1090
1206
|
include Aws::Structure
|
1091
1207
|
end
|
@@ -1148,6 +1264,19 @@ module Aws::SsmSap
|
|
1148
1264
|
#
|
1149
1265
|
class TagResourceResponse < Aws::EmptyStructure; end
|
1150
1266
|
|
1267
|
+
# The request is not authorized.
|
1268
|
+
#
|
1269
|
+
# @!attribute [rw] message
|
1270
|
+
# @return [String]
|
1271
|
+
#
|
1272
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/UnauthorizedException AWS API Documentation
|
1273
|
+
#
|
1274
|
+
class UnauthorizedException < Struct.new(
|
1275
|
+
:message)
|
1276
|
+
SENSITIVE = []
|
1277
|
+
include Aws::Structure
|
1278
|
+
end
|
1279
|
+
|
1151
1280
|
# @!attribute [rw] resource_arn
|
1152
1281
|
# The Amazon Resource Name (ARN) of the resource.
|
1153
1282
|
# @return [String]
|
@@ -1186,13 +1315,19 @@ module Aws::SsmSap
|
|
1186
1315
|
# Installation of AWS Backint Agent for SAP HANA.
|
1187
1316
|
# @return [Types::BackintConfig]
|
1188
1317
|
#
|
1318
|
+
# @!attribute [rw] database_arn
|
1319
|
+
# The Amazon Resource Name of the SAP HANA database that replaces the
|
1320
|
+
# current SAP HANA connection with the SAP\_ABAP application.
|
1321
|
+
# @return [String]
|
1322
|
+
#
|
1189
1323
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/UpdateApplicationSettingsInput AWS API Documentation
|
1190
1324
|
#
|
1191
1325
|
class UpdateApplicationSettingsInput < Struct.new(
|
1192
1326
|
:application_id,
|
1193
1327
|
:credentials_to_add_or_update,
|
1194
1328
|
:credentials_to_remove,
|
1195
|
-
:backint
|
1329
|
+
:backint,
|
1330
|
+
:database_arn)
|
1196
1331
|
SENSITIVE = []
|
1197
1332
|
include Aws::Structure
|
1198
1333
|
end
|
data/lib/aws-sdk-ssmsap.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-ssmsap
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.12.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: 2023-
|
11
|
+
date: 2023-10-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.184.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.184.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|