aws-sdk-ssmsap 1.23.0 → 1.25.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: e4254af2e04c2758d090e99803631e163c58657897d9acf1700254873cab2b69
4
+ data.tar.gz: 297fbadd5a4940a137d82462def0e1eaa9ed360e56eb9068aa0ed8c7dec5fa88
5
5
  SHA512:
6
- metadata.gz: 6b02b9dc776e9cc90fe230512551b37896ef309c9b48347dda0445fc0f40af5017a78ab99e58477385c450d6d05c0eae1a63315b9d7b16616cd3d165cec3f5b1
7
- data.tar.gz: fbdb54904020d4c6baca7081a0550ea33e04431e64f559015917352c5d5f3fcc7f3e55dcef329fdfea706697e12981781a0ab4990ae92ed516c31456570a9c77
6
+ metadata.gz: 70ff4533afdf3f6f514f4666ec233102ea01d5d6fcb17e11c3785be3227b627e54866b8054c2d31ea79cdcdf1326e5d4f42c342f6747909216e70a9a3ef31711
7
+ data.tar.gz: 486289618d5e75c81d8399d841be1d2533309d708a2cd3cb6b54447e5e2a1acc8b1b59edb3079d4031edfeeea397cd2faba79616c2b75008f4a66150b489f6f8
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.25.0 (2024-09-03)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.24.0 (2024-08-19)
10
+ ------------------
11
+
12
+ * Feature - Add new attributes to the outputs of GetApplication and GetDatabase APIs.
13
+
4
14
  1.23.0 (2024-07-02)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.23.0
1
+ 1.25.0
@@ -32,6 +32,7 @@ require 'aws-sdk-core/plugins/checksum_algorithm.rb'
32
32
  require 'aws-sdk-core/plugins/request_compression.rb'
33
33
  require 'aws-sdk-core/plugins/defaults_mode.rb'
34
34
  require 'aws-sdk-core/plugins/recursion_detection.rb'
35
+ require 'aws-sdk-core/plugins/telemetry.rb'
35
36
  require 'aws-sdk-core/plugins/sign.rb'
36
37
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
37
38
 
@@ -83,6 +84,7 @@ module Aws::SsmSap
83
84
  add_plugin(Aws::Plugins::RequestCompression)
84
85
  add_plugin(Aws::Plugins::DefaultsMode)
85
86
  add_plugin(Aws::Plugins::RecursionDetection)
87
+ add_plugin(Aws::Plugins::Telemetry)
86
88
  add_plugin(Aws::Plugins::Sign)
87
89
  add_plugin(Aws::Plugins::Protocols::RestJson)
88
90
  add_plugin(Aws::SsmSap::Plugins::Endpoints)
@@ -330,6 +332,16 @@ module Aws::SsmSap
330
332
  # ** Please note ** When response stubbing is enabled, no HTTP
331
333
  # requests are made, and retries are disabled.
332
334
  #
335
+ # @option options [Aws::Telemetry::TelemetryProviderBase] :telemetry_provider (Aws::Telemetry::NoOpTelemetryProvider)
336
+ # Allows you to provide a telemetry provider, which is used to
337
+ # emit telemetry data. By default, uses `NoOpTelemetryProvider` which
338
+ # will not record or emit any telemetry data. The SDK supports the
339
+ # following telemetry providers:
340
+ #
341
+ # * OpenTelemetry (OTel) - To use the OTel provider, install and require the
342
+ # `opentelemetry-sdk` gem and then, pass in an instance of a
343
+ # `Aws::Telemetry::OTelProvider` for telemetry provider.
344
+ #
333
345
  # @option options [Aws::TokenProvider] :token_provider
334
346
  # A Bearer Token Provider. This can be an instance of any one of the
335
347
  # following classes:
@@ -522,6 +534,8 @@ module Aws::SsmSap
522
534
  # resp.application.components[0] #=> String
523
535
  # resp.application.last_updated #=> Time
524
536
  # resp.application.status_message #=> String
537
+ # resp.application.associated_application_arns #=> Array
538
+ # resp.application.associated_application_arns[0] #=> String
525
539
  # resp.tags #=> Hash
526
540
  # resp.tags["TagKey"] #=> String
527
541
  #
@@ -654,6 +668,8 @@ module Aws::SsmSap
654
668
  # resp.database.primary_host #=> String
655
669
  # resp.database.sql_port #=> Integer
656
670
  # resp.database.last_updated #=> Time
671
+ # resp.database.connected_component_arns #=> Array
672
+ # resp.database.connected_component_arns[0] #=> String
657
673
  # resp.tags #=> Hash
658
674
  # resp.tags["TagKey"] #=> String
659
675
  #
@@ -1168,6 +1184,8 @@ module Aws::SsmSap
1168
1184
  # resp.application.components[0] #=> String
1169
1185
  # resp.application.last_updated #=> Time
1170
1186
  # resp.application.status_message #=> String
1187
+ # resp.application.associated_application_arns #=> Array
1188
+ # resp.application.associated_application_arns[0] #=> String
1171
1189
  # resp.operation_id #=> String
1172
1190
  #
1173
1191
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/RegisterApplication AWS API Documentation
@@ -1406,14 +1424,19 @@ module Aws::SsmSap
1406
1424
  # @api private
1407
1425
  def build_request(operation_name, params = {})
1408
1426
  handlers = @handlers.for(operation_name)
1427
+ tracer = config.telemetry_provider.tracer_provider.tracer(
1428
+ Aws::Telemetry.module_to_tracer_name('Aws::SsmSap')
1429
+ )
1409
1430
  context = Seahorse::Client::RequestContext.new(
1410
1431
  operation_name: operation_name,
1411
1432
  operation: config.api.operation(operation_name),
1412
1433
  client: self,
1413
1434
  params: params,
1414
- config: config)
1435
+ config: config,
1436
+ tracer: tracer
1437
+ )
1415
1438
  context[:gem_name] = 'aws-sdk-ssmsap'
1416
- context[:gem_version] = '1.23.0'
1439
+ context[:gem_version] = '1.25.0'
1417
1440
  Seahorse::Client::Request.new(handlers, context)
1418
1441
  end
1419
1442
 
@@ -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.25.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -50,6 +50,7 @@ module Aws
50
50
  ?session_token: String,
51
51
  ?sigv4a_signing_region_set: Array[String],
52
52
  ?stub_responses: untyped,
53
+ ?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
53
54
  ?token_provider: untyped,
54
55
  ?use_dualstack_endpoint: bool,
55
56
  ?use_fips_endpoint: bool,
data/sig/resource.rbs CHANGED
@@ -50,6 +50,7 @@ module Aws
50
50
  ?session_token: String,
51
51
  ?sigv4a_signing_region_set: Array[String],
52
52
  ?stub_responses: untyped,
53
+ ?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
53
54
  ?token_provider: untyped,
54
55
  ?use_dualstack_endpoint: bool,
55
56
  ?use_fips_endpoint: bool,
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.25.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-09-03 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.201.0
22
+ version: 3.203.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,21 +29,21 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.201.0
32
+ version: 3.203.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
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: