aws-sdk-ssmsap 1.23.0 → 1.24.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9291eb8c963025d097b797c2168dff24cd32d3c9287e6ea7ec5a75a91e332b55
4
- data.tar.gz: a049f04c23f30084d0c3e7a3622a6abc6dbb5c182456f27baaa9ca75f78bc8bc
3
+ metadata.gz: 407954429a53e841a2c4b153c40df9098e0d0cdf9cf9c4392247bfb07490fd05
4
+ data.tar.gz: bbd2374ec7fab4bd0d3bc757814eb06c82687d4cc3c22837ab8e6cf754962823
5
5
  SHA512:
6
- metadata.gz: 6b02b9dc776e9cc90fe230512551b37896ef309c9b48347dda0445fc0f40af5017a78ab99e58477385c450d6d05c0eae1a63315b9d7b16616cd3d165cec3f5b1
7
- data.tar.gz: fbdb54904020d4c6baca7081a0550ea33e04431e64f559015917352c5d5f3fcc7f3e55dcef329fdfea706697e12981781a0ab4990ae92ed516c31456570a9c77
6
+ metadata.gz: 42a1ec950f4781385ff6021839118b9f5b5ade693bf5d5b169a69127871ab41ec94758f1dddb6b8594c7a2c7d8d23df0b461e8e20802dc0403d845c03338f0f3
7
+ data.tar.gz: ed3ff1f63d50cd73af86397afaf9a0ca5a18c28cabd17f2db878266e6c2775daf9d5fd7ad4b40dd259db4970d6e9b78ce5ada1b096cb49968d2abd57ac04a64c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.24.0 (2024-08-19)
5
+ ------------------
6
+
7
+ * Feature - Add new attributes to the outputs of GetApplication and GetDatabase APIs.
8
+
4
9
  1.23.0 (2024-07-02)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.23.0
1
+ 1.24.0
@@ -522,6 +522,8 @@ module Aws::SsmSap
522
522
  # resp.application.components[0] #=> String
523
523
  # resp.application.last_updated #=> Time
524
524
  # resp.application.status_message #=> String
525
+ # resp.application.associated_application_arns #=> Array
526
+ # resp.application.associated_application_arns[0] #=> String
525
527
  # resp.tags #=> Hash
526
528
  # resp.tags["TagKey"] #=> String
527
529
  #
@@ -654,6 +656,8 @@ module Aws::SsmSap
654
656
  # resp.database.primary_host #=> String
655
657
  # resp.database.sql_port #=> Integer
656
658
  # resp.database.last_updated #=> Time
659
+ # resp.database.connected_component_arns #=> Array
660
+ # resp.database.connected_component_arns[0] #=> String
657
661
  # resp.tags #=> Hash
658
662
  # resp.tags["TagKey"] #=> String
659
663
  #
@@ -1168,6 +1172,8 @@ module Aws::SsmSap
1168
1172
  # resp.application.components[0] #=> String
1169
1173
  # resp.application.last_updated #=> Time
1170
1174
  # resp.application.status_message #=> String
1175
+ # resp.application.associated_application_arns #=> Array
1176
+ # resp.application.associated_application_arns[0] #=> String
1171
1177
  # resp.operation_id #=> String
1172
1178
  #
1173
1179
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/RegisterApplication AWS API Documentation
@@ -1413,7 +1419,7 @@ module Aws::SsmSap
1413
1419
  params: params,
1414
1420
  config: config)
1415
1421
  context[:gem_name] = 'aws-sdk-ssmsap'
1416
- context[:gem_version] = '1.23.0'
1422
+ context[:gem_version] = '1.24.0'
1417
1423
  Seahorse::Client::Request.new(handlers, context)
1418
1424
  end
1419
1425
 
@@ -16,6 +16,7 @@ module Aws::SsmSap
16
16
  AllocationType = Shapes::StringShape.new(name: 'AllocationType')
17
17
  AppRegistryArn = Shapes::StringShape.new(name: 'AppRegistryArn')
18
18
  Application = Shapes::StructureShape.new(name: 'Application')
19
+ ApplicationArnList = Shapes::ListShape.new(name: 'ApplicationArnList')
19
20
  ApplicationCredential = Shapes::StructureShape.new(name: 'ApplicationCredential')
20
21
  ApplicationCredentialList = Shapes::ListShape.new(name: 'ApplicationCredentialList')
21
22
  ApplicationDiscoveryStatus = Shapes::StringShape.new(name: 'ApplicationDiscoveryStatus')
@@ -31,6 +32,7 @@ module Aws::SsmSap
31
32
  Boolean = Shapes::BooleanShape.new(name: 'Boolean')
32
33
  ClusterStatus = Shapes::StringShape.new(name: 'ClusterStatus')
33
34
  Component = Shapes::StructureShape.new(name: 'Component')
35
+ ComponentArnList = Shapes::ListShape.new(name: 'ComponentArnList')
34
36
  ComponentId = Shapes::StringShape.new(name: 'ComponentId')
35
37
  ComponentIdList = Shapes::ListShape.new(name: 'ComponentIdList')
36
38
  ComponentStatus = Shapes::StringShape.new(name: 'ComponentStatus')
@@ -149,8 +151,11 @@ module Aws::SsmSap
149
151
  Application.add_member(:components, Shapes::ShapeRef.new(shape: ComponentIdList, location_name: "Components"))
150
152
  Application.add_member(:last_updated, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastUpdated"))
151
153
  Application.add_member(:status_message, Shapes::ShapeRef.new(shape: String, location_name: "StatusMessage"))
154
+ Application.add_member(:associated_application_arns, Shapes::ShapeRef.new(shape: ApplicationArnList, location_name: "AssociatedApplicationArns"))
152
155
  Application.struct_class = Types::Application
153
156
 
157
+ ApplicationArnList.member = Shapes::ShapeRef.new(shape: SsmSapArn)
158
+
154
159
  ApplicationCredential.add_member(:database_name, Shapes::ShapeRef.new(shape: DatabaseName, required: true, location_name: "DatabaseName"))
155
160
  ApplicationCredential.add_member(:credential_type, Shapes::ShapeRef.new(shape: CredentialType, required: true, location_name: "CredentialType"))
156
161
  ApplicationCredential.add_member(:secret_id, Shapes::ShapeRef.new(shape: SecretId, required: true, location_name: "SecretId"))
@@ -199,6 +204,8 @@ module Aws::SsmSap
199
204
  Component.add_member(:arn, Shapes::ShapeRef.new(shape: SsmSapArn, location_name: "Arn"))
200
205
  Component.struct_class = Types::Component
201
206
 
207
+ ComponentArnList.member = Shapes::ShapeRef.new(shape: SsmSapArn)
208
+
202
209
  ComponentIdList.member = Shapes::ShapeRef.new(shape: ComponentId)
203
210
 
204
211
  ComponentSummary.add_member(:application_id, Shapes::ShapeRef.new(shape: ApplicationId, location_name: "ApplicationId"))
@@ -224,6 +231,7 @@ module Aws::SsmSap
224
231
  Database.add_member(:primary_host, Shapes::ShapeRef.new(shape: String, location_name: "PrimaryHost"))
225
232
  Database.add_member(:sql_port, Shapes::ShapeRef.new(shape: Integer, location_name: "SQLPort"))
226
233
  Database.add_member(:last_updated, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastUpdated"))
234
+ Database.add_member(:connected_component_arns, Shapes::ShapeRef.new(shape: ComponentArnList, location_name: "ConnectedComponentArns"))
227
235
  Database.struct_class = Types::Database
228
236
 
229
237
  DatabaseConnection.add_member(:database_connection_method, Shapes::ShapeRef.new(shape: DatabaseConnectionMethod, location_name: "DatabaseConnectionMethod"))
@@ -506,9 +514,10 @@ module Aws::SsmSap
506
514
 
507
515
  api.metadata = {
508
516
  "apiVersion" => "2018-05-10",
517
+ "auth" => ["aws.auth#sigv4"],
509
518
  "endpointPrefix" => "ssm-sap",
510
- "jsonVersion" => "1.1",
511
519
  "protocol" => "rest-json",
520
+ "protocols" => ["rest-json"],
512
521
  "serviceAbbreviation" => "SsmSap",
513
522
  "serviceFullName" => "AWS Systems Manager for SAP",
514
523
  "serviceId" => "Ssm Sap",
@@ -48,6 +48,11 @@ module Aws::SsmSap
48
48
  # The status message.
49
49
  # @return [String]
50
50
  #
51
+ # @!attribute [rw] associated_application_arns
52
+ # The Amazon Resource Names of the associated AWS Systems Manager for
53
+ # SAP applications.
54
+ # @return [Array<String>]
55
+ #
51
56
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/Application AWS API Documentation
52
57
  #
53
58
  class Application < Struct.new(
@@ -59,7 +64,8 @@ module Aws::SsmSap
59
64
  :discovery_status,
60
65
  :components,
61
66
  :last_updated,
62
- :status_message)
67
+ :status_message,
68
+ :associated_application_arns)
63
69
  SENSITIVE = []
64
70
  include Aws::Structure
65
71
  end
@@ -401,6 +407,11 @@ module Aws::SsmSap
401
407
  # The time at which the database was last updated.
402
408
  # @return [Time]
403
409
  #
410
+ # @!attribute [rw] connected_component_arns
411
+ # The Amazon Resource Names of the connected AWS Systems Manager for
412
+ # SAP components.
413
+ # @return [Array<String>]
414
+ #
404
415
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/Database AWS API Documentation
405
416
  #
406
417
  class Database < Struct.new(
@@ -414,7 +425,8 @@ module Aws::SsmSap
414
425
  :status,
415
426
  :primary_host,
416
427
  :sql_port,
417
- :last_updated)
428
+ :last_updated,
429
+ :connected_component_arns)
418
430
  SENSITIVE = []
419
431
  include Aws::Structure
420
432
  end
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-ssmsap/customizations'
52
52
  # @!group service
53
53
  module Aws::SsmSap
54
54
 
55
- GEM_VERSION = '1.23.0'
55
+ GEM_VERSION = '1.24.0'
56
56
 
57
57
  end
data/sig/types.rbs CHANGED
@@ -18,6 +18,7 @@ module Aws::SsmSap
18
18
  attr_accessor components: ::Array[::String]
19
19
  attr_accessor last_updated: ::Time
20
20
  attr_accessor status_message: ::String
21
+ attr_accessor associated_application_arns: ::Array[::String]
21
22
  SENSITIVE: []
22
23
  end
23
24
 
@@ -101,6 +102,7 @@ module Aws::SsmSap
101
102
  attr_accessor primary_host: ::String
102
103
  attr_accessor sql_port: ::Integer
103
104
  attr_accessor last_updated: ::Time
105
+ attr_accessor connected_component_arns: ::Array[::String]
104
106
  SENSITIVE: []
105
107
  end
106
108
 
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.23.0
4
+ version: 1.24.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-07-02 00:00:00.000000000 Z
11
+ date: 2024-08-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -36,14 +36,14 @@ dependencies:
36
36
  requirements:
37
37
  - - "~>"
38
38
  - !ruby/object:Gem::Version
39
- version: '1.1'
39
+ version: '1.5'
40
40
  type: :runtime
41
41
  prerelease: false
42
42
  version_requirements: !ruby/object:Gem::Requirement
43
43
  requirements:
44
44
  - - "~>"
45
45
  - !ruby/object:Gem::Version
46
- version: '1.1'
46
+ version: '1.5'
47
47
  description: Official AWS Ruby gem for AWS Systems Manager for SAP (SsmSap). This
48
48
  gem is part of the AWS SDK for Ruby.
49
49
  email: