aws-sdk-ssmsap 1.31.0 → 1.32.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a14d1ddbdcd6f815d85d2470cb90009e056ae8ed31312ab56b6fa97c4cf79bfc
4
- data.tar.gz: b009e9319181d0327bc4f638c5ad305b71186de31e6517e275b683d52829afc1
3
+ metadata.gz: '082e5497767d5119e6d481f143bd681fdc5d57282ee142ca64747b4db01d033b'
4
+ data.tar.gz: 32ba232de4771ad04a6f24e775fca8769f8b57c860099dec6f0598d42c8aeeaa
5
5
  SHA512:
6
- metadata.gz: 32db345770bff9a843839676670e5594e58004e8f54be45c2d7eb6a946c4db6f03f43a821f5ac322b0c8f49733cafec86b648d8535cd7862eb215ca083cda67e
7
- data.tar.gz: 24cf8c6f2b9296303b59a70887167288ac14f6eee21f5153cae255ea49bb6fd45615284891df8e87aced7ec6820e9343bb82eee8117b585525ec39e014680696
6
+ metadata.gz: 5ceadb6ae37a5a2b4d89014cb1c162a8bbe134ea7fc30bc006dbd67a27897c0caee1c82ecc9ab809be83978aa747e50957a85dec680d1b6c3704cf561dda1a24
7
+ data.tar.gz: 9bb1c99514edf7a4cb11482886763e026edaa6cf4703f7b3415849484feac3347c97c52b783689a1e04e6e189f0bf0ce5bfb28f59541e9484fb00a3b8eaae37f
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.32.0 (2024-12-19)
5
+ ------------------
6
+
7
+ * Feature - AWS Systems Manager for SAP added support for registration and discovery of distributed ABAP applications
8
+
4
9
  1.31.0 (2024-10-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.31.0
1
+ 1.32.0
@@ -1156,6 +1156,13 @@ module Aws::SsmSap
1156
1156
  # @option params [String] :database_arn
1157
1157
  # The Amazon Resource Name of the SAP HANA database.
1158
1158
  #
1159
+ # @option params [Array<Types::ComponentInfo>] :components_info
1160
+ # This is an optional parameter for component details to which the SAP
1161
+ # ABAP application is attached, such as Web Dispatcher.
1162
+ #
1163
+ # This is an array of ApplicationComponent objects. You may input 0 to 5
1164
+ # items.
1165
+ #
1159
1166
  # @return [Types::RegisterApplicationOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1160
1167
  #
1161
1168
  # * {Types::RegisterApplicationOutput#application #application} => Types::Application
@@ -1180,6 +1187,13 @@ module Aws::SsmSap
1180
1187
  # },
1181
1188
  # ],
1182
1189
  # database_arn: "SsmSapArn",
1190
+ # components_info: [
1191
+ # {
1192
+ # component_type: "HANA", # required, accepts HANA, HANA_NODE, ABAP, ASCS, DIALOG, WEBDISP, WD, ERS
1193
+ # sid: "SID", # required
1194
+ # ec2_instance_id: "InstanceId", # required
1195
+ # },
1196
+ # ],
1183
1197
  # })
1184
1198
  #
1185
1199
  # @example Response structure
@@ -1446,7 +1460,7 @@ module Aws::SsmSap
1446
1460
  tracer: tracer
1447
1461
  )
1448
1462
  context[:gem_name] = 'aws-sdk-ssmsap'
1449
- context[:gem_version] = '1.31.0'
1463
+ context[:gem_version] = '1.32.0'
1450
1464
  Seahorse::Client::Request.new(handlers, context)
1451
1465
  end
1452
1466
 
@@ -36,6 +36,8 @@ module Aws::SsmSap
36
36
  ComponentArnList = Shapes::ListShape.new(name: 'ComponentArnList')
37
37
  ComponentId = Shapes::StringShape.new(name: 'ComponentId')
38
38
  ComponentIdList = Shapes::ListShape.new(name: 'ComponentIdList')
39
+ ComponentInfo = Shapes::StructureShape.new(name: 'ComponentInfo')
40
+ ComponentInfoList = Shapes::ListShape.new(name: 'ComponentInfoList')
39
41
  ComponentStatus = Shapes::StringShape.new(name: 'ComponentStatus')
40
42
  ComponentSummary = Shapes::StructureShape.new(name: 'ComponentSummary')
41
43
  ComponentSummaryList = Shapes::ListShape.new(name: 'ComponentSummaryList')
@@ -209,6 +211,13 @@ module Aws::SsmSap
209
211
 
210
212
  ComponentIdList.member = Shapes::ShapeRef.new(shape: ComponentId)
211
213
 
214
+ ComponentInfo.add_member(:component_type, Shapes::ShapeRef.new(shape: ComponentType, required: true, location_name: "ComponentType"))
215
+ ComponentInfo.add_member(:sid, Shapes::ShapeRef.new(shape: SID, required: true, location_name: "Sid"))
216
+ ComponentInfo.add_member(:ec2_instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location_name: "Ec2InstanceId"))
217
+ ComponentInfo.struct_class = Types::ComponentInfo
218
+
219
+ ComponentInfoList.member = Shapes::ShapeRef.new(shape: ComponentInfo)
220
+
212
221
  ComponentSummary.add_member(:application_id, Shapes::ShapeRef.new(shape: ApplicationId, location_name: "ApplicationId"))
213
222
  ComponentSummary.add_member(:component_id, Shapes::ShapeRef.new(shape: ComponentId, location_name: "ComponentId"))
214
223
  ComponentSummary.add_member(:component_type, Shapes::ShapeRef.new(shape: ComponentType, location_name: "ComponentType"))
@@ -433,6 +442,7 @@ module Aws::SsmSap
433
442
  RegisterApplicationInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
434
443
  RegisterApplicationInput.add_member(:credentials, Shapes::ShapeRef.new(shape: ApplicationCredentialList, location_name: "Credentials"))
435
444
  RegisterApplicationInput.add_member(:database_arn, Shapes::ShapeRef.new(shape: SsmSapArn, location_name: "DatabaseArn"))
445
+ RegisterApplicationInput.add_member(:components_info, Shapes::ShapeRef.new(shape: ComponentInfoList, location_name: "ComponentsInfo"))
436
446
  RegisterApplicationInput.struct_class = Types::RegisterApplicationInput
437
447
 
438
448
  RegisterApplicationOutput.add_member(:application, Shapes::ShapeRef.new(shape: Application, location_name: "Application"))
@@ -313,6 +313,38 @@ module Aws::SsmSap
313
313
  include Aws::Structure
314
314
  end
315
315
 
316
+ # This is information about the component of your SAP application, such
317
+ # as Web Dispatcher.
318
+ #
319
+ # @!attribute [rw] component_type
320
+ # This string is the type of the component.
321
+ #
322
+ # Accepted value is `WD`.
323
+ # @return [String]
324
+ #
325
+ # @!attribute [rw] sid
326
+ # This string is the SAP System ID of the component.
327
+ #
328
+ # Accepted values are alphanumeric.
329
+ # @return [String]
330
+ #
331
+ # @!attribute [rw] ec2_instance_id
332
+ # This is the Amazon EC2 instance on which your SAP component is
333
+ # running.
334
+ #
335
+ # Accepted values are alphanumeric.
336
+ # @return [String]
337
+ #
338
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/ComponentInfo AWS API Documentation
339
+ #
340
+ class ComponentInfo < Struct.new(
341
+ :component_type,
342
+ :sid,
343
+ :ec2_instance_id)
344
+ SENSITIVE = []
345
+ include Aws::Structure
346
+ end
347
+
316
348
  # The summary of the component.
317
349
  #
318
350
  # @!attribute [rw] application_id
@@ -1261,6 +1293,14 @@ module Aws::SsmSap
1261
1293
  # The Amazon Resource Name of the SAP HANA database.
1262
1294
  # @return [String]
1263
1295
  #
1296
+ # @!attribute [rw] components_info
1297
+ # This is an optional parameter for component details to which the SAP
1298
+ # ABAP application is attached, such as Web Dispatcher.
1299
+ #
1300
+ # This is an array of ApplicationComponent objects. You may input 0 to
1301
+ # 5 items.
1302
+ # @return [Array<Types::ComponentInfo>]
1303
+ #
1264
1304
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/RegisterApplicationInput AWS API Documentation
1265
1305
  #
1266
1306
  class RegisterApplicationInput < Struct.new(
@@ -1271,7 +1311,8 @@ module Aws::SsmSap
1271
1311
  :sid,
1272
1312
  :tags,
1273
1313
  :credentials,
1274
- :database_arn)
1314
+ :database_arn,
1315
+ :components_info)
1275
1316
  SENSITIVE = []
1276
1317
  include Aws::Structure
1277
1318
  end
@@ -54,7 +54,7 @@ module Aws::SsmSap
54
54
  autoload :EndpointProvider, 'aws-sdk-ssmsap/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-ssmsap/endpoints'
56
56
 
57
- GEM_VERSION = '1.31.0'
57
+ GEM_VERSION = '1.32.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -284,7 +284,14 @@ module Aws
284
284
  secret_id: ::String
285
285
  },
286
286
  ],
287
- ?database_arn: ::String
287
+ ?database_arn: ::String,
288
+ ?components_info: Array[
289
+ {
290
+ component_type: ("HANA" | "HANA_NODE" | "ABAP" | "ASCS" | "DIALOG" | "WEBDISP" | "WD" | "ERS"),
291
+ sid: ::String,
292
+ ec2_instance_id: ::String
293
+ },
294
+ ]
288
295
  ) -> _RegisterApplicationResponseSuccess
289
296
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RegisterApplicationResponseSuccess
290
297
 
data/sig/types.rbs CHANGED
@@ -76,6 +76,13 @@ module Aws::SsmSap
76
76
  SENSITIVE: []
77
77
  end
78
78
 
79
+ class ComponentInfo
80
+ attr_accessor component_type: ("HANA" | "HANA_NODE" | "ABAP" | "ASCS" | "DIALOG" | "WEBDISP" | "WD" | "ERS")
81
+ attr_accessor sid: ::String
82
+ attr_accessor ec2_instance_id: ::String
83
+ SENSITIVE: []
84
+ end
85
+
79
86
  class ComponentSummary
80
87
  attr_accessor application_id: ::String
81
88
  attr_accessor component_id: ::String
@@ -355,6 +362,7 @@ module Aws::SsmSap
355
362
  attr_accessor tags: ::Hash[::String, ::String]
356
363
  attr_accessor credentials: ::Array[Types::ApplicationCredential]
357
364
  attr_accessor database_arn: ::String
365
+ attr_accessor components_info: ::Array[Types::ComponentInfo]
358
366
  SENSITIVE: []
359
367
  end
360
368
 
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.31.0
4
+ version: 1.32.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: 2024-10-18 00:00:00.000000000 Z
11
+ date: 2024-12-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core