aws-sdk-observabilityadmin 1.13.0 → 1.14.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: 4ec32c0a0480367cbf12e3ea929838e586abb2cc612a2e0899bcdbf9e3a7876e
4
- data.tar.gz: cb8f0d4107ccf44c532392a36c4402fc16f58fd91fe1cbe28c34484d7a1c75f3
3
+ metadata.gz: 895998530a51f8afe1cf5d89f3f754a5f601019273d9816386f0c9eea1640cce
4
+ data.tar.gz: '084f94ea9ff1f4ddeee71bcc1cba23faeb1344a406b0d132155cbb96fb216f03'
5
5
  SHA512:
6
- metadata.gz: 8fdbbb4d06f8f0edfb71ca28e4742c712fd19522c053c6f242d74b4ab32da218f80152a9ec0a14e4dbb8048141a2425515060c69d1708601a70b09c34ab9a3bc
7
- data.tar.gz: e0998c9f7ac89063714d4502e157604a234dbbe6f1fdd246350f81075204395c2b936b967e55eceb38266326a2d5da52ae3f007f7c6fc241569287f48eeea6ab
6
+ metadata.gz: 2484a8532cbf3e741702729ad32d6102914a10c75e9d34ff331be67d5e3e9864bf28f40a9b4e30cb0bac023bbfdfab6eeced9a8bd45aa84c5e9ee979d2d22f7a
7
+ data.tar.gz: 5be8fd05106d302537fba223a6cf39315339b8b65b74617d6d8dec8aef1573acfab936bed92722499b79b73820251d788245566c269625ee3407a031e94cab9d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.14.0 (2025-10-13)
5
+ ------------------
6
+
7
+ * Feature - CloudWatch Observability Admin adds the ability to enable Resource tags for telemetry in a customer account. The release introduces new APIs to enable, disable and describe the status of Resource tags for telemetry feature. This new capability simplifies monitoring AWS resources using tags.
8
+
4
9
  1.13.0 (2025-09-15)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.13.0
1
+ 1.14.0
@@ -796,6 +796,29 @@ module Aws::ObservabilityAdmin
796
796
  req.send_request(options)
797
797
  end
798
798
 
799
+ # Returns the current status of the resource tags for telemetry feature,
800
+ # which enhances telemetry data with additional resource metadata from
801
+ # Amazon Web Services Resource Explorer.
802
+ #
803
+ # @return [Types::GetTelemetryEnrichmentStatusOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
804
+ #
805
+ # * {Types::GetTelemetryEnrichmentStatusOutput#status #status} => String
806
+ # * {Types::GetTelemetryEnrichmentStatusOutput#aws_resource_explorer_managed_view_arn #aws_resource_explorer_managed_view_arn} => String
807
+ #
808
+ # @example Response structure
809
+ #
810
+ # resp.status #=> String, one of "Running", "Stopped", "Impaired"
811
+ # resp.aws_resource_explorer_managed_view_arn #=> String
812
+ #
813
+ # @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/GetTelemetryEnrichmentStatus AWS API Documentation
814
+ #
815
+ # @overload get_telemetry_enrichment_status(params = {})
816
+ # @param [Hash] params ({})
817
+ def get_telemetry_enrichment_status(params = {}, options = {})
818
+ req = build_request(:get_telemetry_enrichment_status, params)
819
+ req.send_request(options)
820
+ end
821
+
799
822
  # Returns the current onboarding status of the telemetry config feature,
800
823
  # including the status of the feature and reason the feature failed to
801
824
  # start or stop.
@@ -1301,6 +1324,30 @@ module Aws::ObservabilityAdmin
1301
1324
  req.send_request(options)
1302
1325
  end
1303
1326
 
1327
+ # Enables the resource tags for telemetry feature for your account,
1328
+ # which enhances telemetry data with additional resource metadata from
1329
+ # Amazon Web Services Resource Explorer to provide richer context for
1330
+ # monitoring and observability.
1331
+ #
1332
+ # @return [Types::StartTelemetryEnrichmentOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1333
+ #
1334
+ # * {Types::StartTelemetryEnrichmentOutput#status #status} => String
1335
+ # * {Types::StartTelemetryEnrichmentOutput#aws_resource_explorer_managed_view_arn #aws_resource_explorer_managed_view_arn} => String
1336
+ #
1337
+ # @example Response structure
1338
+ #
1339
+ # resp.status #=> String, one of "Running", "Stopped", "Impaired"
1340
+ # resp.aws_resource_explorer_managed_view_arn #=> String
1341
+ #
1342
+ # @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/StartTelemetryEnrichment AWS API Documentation
1343
+ #
1344
+ # @overload start_telemetry_enrichment(params = {})
1345
+ # @param [Hash] params ({})
1346
+ def start_telemetry_enrichment(params = {}, options = {})
1347
+ req = build_request(:start_telemetry_enrichment, params)
1348
+ req.send_request(options)
1349
+ end
1350
+
1304
1351
  # This action begins onboarding the caller Amazon Web Services account
1305
1352
  # to the telemetry config feature.
1306
1353
  #
@@ -1329,6 +1376,27 @@ module Aws::ObservabilityAdmin
1329
1376
  req.send_request(options)
1330
1377
  end
1331
1378
 
1379
+ # Disables the resource tags for telemetry feature for your account,
1380
+ # stopping the enhancement of telemetry data with additional resource
1381
+ # metadata.
1382
+ #
1383
+ # @return [Types::StopTelemetryEnrichmentOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1384
+ #
1385
+ # * {Types::StopTelemetryEnrichmentOutput#status #status} => String
1386
+ #
1387
+ # @example Response structure
1388
+ #
1389
+ # resp.status #=> String, one of "Running", "Stopped", "Impaired"
1390
+ #
1391
+ # @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/StopTelemetryEnrichment AWS API Documentation
1392
+ #
1393
+ # @overload stop_telemetry_enrichment(params = {})
1394
+ # @param [Hash] params ({})
1395
+ def stop_telemetry_enrichment(params = {}, options = {})
1396
+ req = build_request(:stop_telemetry_enrichment, params)
1397
+ req.send_request(options)
1398
+ end
1399
+
1332
1400
  # This action begins offboarding the caller Amazon Web Services account
1333
1401
  # from the telemetry config feature.
1334
1402
  #
@@ -1592,7 +1660,7 @@ module Aws::ObservabilityAdmin
1592
1660
  tracer: tracer
1593
1661
  )
1594
1662
  context[:gem_name] = 'aws-sdk-observabilityadmin'
1595
- context[:gem_version] = '1.13.0'
1663
+ context[:gem_version] = '1.14.0'
1596
1664
  Seahorse::Client::Request.new(handlers, context)
1597
1665
  end
1598
1666
 
@@ -17,6 +17,7 @@ module Aws::ObservabilityAdmin
17
17
  AccessDeniedException = Shapes::StructureShape.new(name: 'AccessDeniedException')
18
18
  AccountIdentifier = Shapes::StringShape.new(name: 'AccountIdentifier')
19
19
  AccountIdentifiers = Shapes::ListShape.new(name: 'AccountIdentifiers')
20
+ AwsResourceExplorerManagedViewArn = Shapes::StringShape.new(name: 'AwsResourceExplorerManagedViewArn')
20
21
  Boolean = Shapes::BooleanShape.new(name: 'Boolean')
21
22
  CentralizationFailureReason = Shapes::StringShape.new(name: 'CentralizationFailureReason')
22
23
  CentralizationRule = Shapes::StructureShape.new(name: 'CentralizationRule')
@@ -42,6 +43,7 @@ module Aws::ObservabilityAdmin
42
43
  FailureReason = Shapes::StringShape.new(name: 'FailureReason')
43
44
  GetCentralizationRuleForOrganizationInput = Shapes::StructureShape.new(name: 'GetCentralizationRuleForOrganizationInput')
44
45
  GetCentralizationRuleForOrganizationOutput = Shapes::StructureShape.new(name: 'GetCentralizationRuleForOrganizationOutput')
46
+ GetTelemetryEnrichmentStatusOutput = Shapes::StructureShape.new(name: 'GetTelemetryEnrichmentStatusOutput')
45
47
  GetTelemetryEvaluationStatusForOrganizationOutput = Shapes::StructureShape.new(name: 'GetTelemetryEvaluationStatusForOrganizationOutput')
46
48
  GetTelemetryEvaluationStatusOutput = Shapes::StructureShape.new(name: 'GetTelemetryEvaluationStatusOutput')
47
49
  GetTelemetryRuleForOrganizationInput = Shapes::StructureShape.new(name: 'GetTelemetryRuleForOrganizationInput')
@@ -90,7 +92,9 @@ module Aws::ObservabilityAdmin
90
92
  ServiceQuotaExceededException = Shapes::StructureShape.new(name: 'ServiceQuotaExceededException')
91
93
  SourceFilterString = Shapes::StringShape.new(name: 'SourceFilterString')
92
94
  SourceLogsConfiguration = Shapes::StructureShape.new(name: 'SourceLogsConfiguration')
95
+ StartTelemetryEnrichmentOutput = Shapes::StructureShape.new(name: 'StartTelemetryEnrichmentOutput')
93
96
  Status = Shapes::StringShape.new(name: 'Status')
97
+ StopTelemetryEnrichmentOutput = Shapes::StructureShape.new(name: 'StopTelemetryEnrichmentOutput')
94
98
  String = Shapes::StringShape.new(name: 'String')
95
99
  TagKey = Shapes::StringShape.new(name: 'TagKey')
96
100
  TagKeyList = Shapes::ListShape.new(name: 'TagKeyList')
@@ -102,6 +106,7 @@ module Aws::ObservabilityAdmin
102
106
  TelemetryConfigurationState = Shapes::MapShape.new(name: 'TelemetryConfigurationState')
103
107
  TelemetryConfigurations = Shapes::ListShape.new(name: 'TelemetryConfigurations')
104
108
  TelemetryDestinationConfiguration = Shapes::StructureShape.new(name: 'TelemetryDestinationConfiguration')
109
+ TelemetryEnrichmentStatus = Shapes::StringShape.new(name: 'TelemetryEnrichmentStatus')
105
110
  TelemetryRule = Shapes::StructureShape.new(name: 'TelemetryRule')
106
111
  TelemetryRuleSummaries = Shapes::ListShape.new(name: 'TelemetryRuleSummaries')
107
112
  TelemetryRuleSummary = Shapes::StructureShape.new(name: 'TelemetryRuleSummary')
@@ -206,6 +211,10 @@ module Aws::ObservabilityAdmin
206
211
  GetCentralizationRuleForOrganizationOutput.add_member(:centralization_rule, Shapes::ShapeRef.new(shape: CentralizationRule, location_name: "CentralizationRule"))
207
212
  GetCentralizationRuleForOrganizationOutput.struct_class = Types::GetCentralizationRuleForOrganizationOutput
208
213
 
214
+ GetTelemetryEnrichmentStatusOutput.add_member(:status, Shapes::ShapeRef.new(shape: TelemetryEnrichmentStatus, location_name: "Status"))
215
+ GetTelemetryEnrichmentStatusOutput.add_member(:aws_resource_explorer_managed_view_arn, Shapes::ShapeRef.new(shape: AwsResourceExplorerManagedViewArn, location_name: "AwsResourceExplorerManagedViewArn"))
216
+ GetTelemetryEnrichmentStatusOutput.struct_class = Types::GetTelemetryEnrichmentStatusOutput
217
+
209
218
  GetTelemetryEvaluationStatusForOrganizationOutput.add_member(:status, Shapes::ShapeRef.new(shape: Status, location_name: "Status"))
210
219
  GetTelemetryEvaluationStatusForOrganizationOutput.add_member(:failure_reason, Shapes::ShapeRef.new(shape: FailureReason, location_name: "FailureReason"))
211
220
  GetTelemetryEvaluationStatusForOrganizationOutput.struct_class = Types::GetTelemetryEvaluationStatusForOrganizationOutput
@@ -325,6 +334,13 @@ module Aws::ObservabilityAdmin
325
334
  SourceLogsConfiguration.add_member(:encrypted_log_group_strategy, Shapes::ShapeRef.new(shape: EncryptedLogGroupStrategy, required: true, location_name: "EncryptedLogGroupStrategy"))
326
335
  SourceLogsConfiguration.struct_class = Types::SourceLogsConfiguration
327
336
 
337
+ StartTelemetryEnrichmentOutput.add_member(:status, Shapes::ShapeRef.new(shape: TelemetryEnrichmentStatus, location_name: "Status"))
338
+ StartTelemetryEnrichmentOutput.add_member(:aws_resource_explorer_managed_view_arn, Shapes::ShapeRef.new(shape: AwsResourceExplorerManagedViewArn, location_name: "AwsResourceExplorerManagedViewArn"))
339
+ StartTelemetryEnrichmentOutput.struct_class = Types::StartTelemetryEnrichmentOutput
340
+
341
+ StopTelemetryEnrichmentOutput.add_member(:status, Shapes::ShapeRef.new(shape: TelemetryEnrichmentStatus, location_name: "Status"))
342
+ StopTelemetryEnrichmentOutput.struct_class = Types::StopTelemetryEnrichmentOutput
343
+
328
344
  TagKeyList.member = Shapes::ShapeRef.new(shape: TagKey)
329
345
 
330
346
  TagMapInput.key = Shapes::ShapeRef.new(shape: TagKey)
@@ -522,6 +538,18 @@ module Aws::ObservabilityAdmin
522
538
  o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
523
539
  end)
524
540
 
541
+ api.add_operation(:get_telemetry_enrichment_status, Seahorse::Model::Operation.new.tap do |o|
542
+ o.name = "GetTelemetryEnrichmentStatus"
543
+ o.http_method = "POST"
544
+ o.http_request_uri = "/GetTelemetryEnrichmentStatus"
545
+ o.input = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
546
+ o.output = Shapes::ShapeRef.new(shape: GetTelemetryEnrichmentStatusOutput)
547
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
548
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
549
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
550
+ o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
551
+ end)
552
+
525
553
  api.add_operation(:get_telemetry_evaluation_status, Seahorse::Model::Operation.new.tap do |o|
526
554
  o.name = "GetTelemetryEvaluationStatus"
527
555
  o.http_method = "POST"
@@ -674,6 +702,18 @@ module Aws::ObservabilityAdmin
674
702
  )
675
703
  end)
676
704
 
705
+ api.add_operation(:start_telemetry_enrichment, Seahorse::Model::Operation.new.tap do |o|
706
+ o.name = "StartTelemetryEnrichment"
707
+ o.http_method = "POST"
708
+ o.http_request_uri = "/StartTelemetryEnrichment"
709
+ o.input = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
710
+ o.output = Shapes::ShapeRef.new(shape: StartTelemetryEnrichmentOutput)
711
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
712
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
713
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
714
+ o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
715
+ end)
716
+
677
717
  api.add_operation(:start_telemetry_evaluation, Seahorse::Model::Operation.new.tap do |o|
678
718
  o.name = "StartTelemetryEvaluation"
679
719
  o.http_method = "POST"
@@ -698,6 +738,18 @@ module Aws::ObservabilityAdmin
698
738
  o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
699
739
  end)
700
740
 
741
+ api.add_operation(:stop_telemetry_enrichment, Seahorse::Model::Operation.new.tap do |o|
742
+ o.name = "StopTelemetryEnrichment"
743
+ o.http_method = "POST"
744
+ o.http_request_uri = "/StopTelemetryEnrichment"
745
+ o.input = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
746
+ o.output = Shapes::ShapeRef.new(shape: StopTelemetryEnrichmentOutput)
747
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
748
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
749
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
750
+ o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
751
+ end)
752
+
701
753
  api.add_operation(:stop_telemetry_evaluation, Seahorse::Model::Operation.new.tap do |o|
702
754
  o.name = "StopTelemetryEvaluation"
703
755
  o.http_method = "POST"
@@ -13,22 +13,22 @@ module Aws::ObservabilityAdmin
13
13
  # @!attribute region
14
14
  # The AWS region used to dispatch the request.
15
15
  #
16
- # @return [String]
16
+ # @return [string]
17
17
  #
18
18
  # @!attribute use_dual_stack
19
19
  # When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error.
20
20
  #
21
- # @return [Boolean]
21
+ # @return [boolean]
22
22
  #
23
23
  # @!attribute use_fips
24
24
  # When true, send this request to the FIPS-compliant regional endpoint. If the configured endpoint does not have a FIPS compliant endpoint, dispatching the request will return an error.
25
25
  #
26
- # @return [Boolean]
26
+ # @return [boolean]
27
27
  #
28
28
  # @!attribute endpoint
29
29
  # Override the endpoint used to send this request
30
30
  #
31
- # @return [String]
31
+ # @return [string]
32
32
  #
33
33
  EndpointParameters = Struct.new(
34
34
  :region,
@@ -442,6 +442,26 @@ module Aws::ObservabilityAdmin
442
442
  include Aws::Structure
443
443
  end
444
444
 
445
+ # @!attribute [rw] status
446
+ # The current status of the resource tags for telemetry feature
447
+ # (`Running`, `Stopped`, or `Impaired`).
448
+ # @return [String]
449
+ #
450
+ # @!attribute [rw] aws_resource_explorer_managed_view_arn
451
+ # The Amazon Resource Name (ARN) of the Amazon Web Services Resource
452
+ # Explorer managed view used for resource tags for telemetry, if the
453
+ # feature is enabled.
454
+ # @return [String]
455
+ #
456
+ # @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/GetTelemetryEnrichmentStatusOutput AWS API Documentation
457
+ #
458
+ class GetTelemetryEnrichmentStatusOutput < Struct.new(
459
+ :status,
460
+ :aws_resource_explorer_managed_view_arn)
461
+ SENSITIVE = []
462
+ include Aws::Structure
463
+ end
464
+
445
465
  # @!attribute [rw] status
446
466
  # The onboarding status of the telemetry config feature for the
447
467
  # organization.
@@ -1015,6 +1035,38 @@ module Aws::ObservabilityAdmin
1015
1035
  include Aws::Structure
1016
1036
  end
1017
1037
 
1038
+ # @!attribute [rw] status
1039
+ # The status of the resource tags for telemetry feature after the
1040
+ # start operation (`Running`, `Stopped`, or `Impaired`).
1041
+ # @return [String]
1042
+ #
1043
+ # @!attribute [rw] aws_resource_explorer_managed_view_arn
1044
+ # The Amazon Resource Name (ARN) of the Amazon Web Services Resource
1045
+ # Explorer managed view created for resource tags for telemetry.
1046
+ # @return [String]
1047
+ #
1048
+ # @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/StartTelemetryEnrichmentOutput AWS API Documentation
1049
+ #
1050
+ class StartTelemetryEnrichmentOutput < Struct.new(
1051
+ :status,
1052
+ :aws_resource_explorer_managed_view_arn)
1053
+ SENSITIVE = []
1054
+ include Aws::Structure
1055
+ end
1056
+
1057
+ # @!attribute [rw] status
1058
+ # The status of the resource tags for telemetry feature after the stop
1059
+ # operation (`Running`, `Stopped`, or `Impaired`).
1060
+ # @return [String]
1061
+ #
1062
+ # @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/StopTelemetryEnrichmentOutput AWS API Documentation
1063
+ #
1064
+ class StopTelemetryEnrichmentOutput < Struct.new(
1065
+ :status)
1066
+ SENSITIVE = []
1067
+ include Aws::Structure
1068
+ end
1069
+
1018
1070
  # @!attribute [rw] resource_arn
1019
1071
  # The Amazon Resource Name (ARN) of the telemetry rule resource to
1020
1072
  # tag.
@@ -55,7 +55,7 @@ module Aws::ObservabilityAdmin
55
55
  autoload :EndpointProvider, 'aws-sdk-observabilityadmin/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-observabilityadmin/endpoints'
57
57
 
58
- GEM_VERSION = '1.13.0'
58
+ GEM_VERSION = '1.14.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -204,6 +204,15 @@ module Aws
204
204
  ) -> _GetCentralizationRuleForOrganizationResponseSuccess
205
205
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetCentralizationRuleForOrganizationResponseSuccess
206
206
 
207
+ interface _GetTelemetryEnrichmentStatusResponseSuccess
208
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetTelemetryEnrichmentStatusOutput]
209
+ def status: () -> ("Running" | "Stopped" | "Impaired")
210
+ def aws_resource_explorer_managed_view_arn: () -> ::String
211
+ end
212
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ObservabilityAdmin/Client.html#get_telemetry_enrichment_status-instance_method
213
+ def get_telemetry_enrichment_status: () -> _GetTelemetryEnrichmentStatusResponseSuccess
214
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTelemetryEnrichmentStatusResponseSuccess
215
+
207
216
  interface _GetTelemetryEvaluationStatusResponseSuccess
208
217
  include ::Seahorse::Client::_ResponseSuccess[Types::GetTelemetryEvaluationStatusOutput]
209
218
  def status: () -> ("NOT_STARTED" | "STARTING" | "FAILED_START" | "RUNNING" | "STOPPING" | "FAILED_STOP" | "STOPPED")
@@ -335,6 +344,15 @@ module Aws
335
344
  ) -> _ListTelemetryRulesForOrganizationResponseSuccess
336
345
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTelemetryRulesForOrganizationResponseSuccess
337
346
 
347
+ interface _StartTelemetryEnrichmentResponseSuccess
348
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartTelemetryEnrichmentOutput]
349
+ def status: () -> ("Running" | "Stopped" | "Impaired")
350
+ def aws_resource_explorer_managed_view_arn: () -> ::String
351
+ end
352
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ObservabilityAdmin/Client.html#start_telemetry_enrichment-instance_method
353
+ def start_telemetry_enrichment: () -> _StartTelemetryEnrichmentResponseSuccess
354
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartTelemetryEnrichmentResponseSuccess
355
+
338
356
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ObservabilityAdmin/Client.html#start_telemetry_evaluation-instance_method
339
357
  def start_telemetry_evaluation: () -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
340
358
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
@@ -343,6 +361,14 @@ module Aws
343
361
  def start_telemetry_evaluation_for_organization: () -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
344
362
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
345
363
 
364
+ interface _StopTelemetryEnrichmentResponseSuccess
365
+ include ::Seahorse::Client::_ResponseSuccess[Types::StopTelemetryEnrichmentOutput]
366
+ def status: () -> ("Running" | "Stopped" | "Impaired")
367
+ end
368
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ObservabilityAdmin/Client.html#stop_telemetry_enrichment-instance_method
369
+ def stop_telemetry_enrichment: () -> _StopTelemetryEnrichmentResponseSuccess
370
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopTelemetryEnrichmentResponseSuccess
371
+
346
372
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ObservabilityAdmin/Client.html#stop_telemetry_evaluation-instance_method
347
373
  def stop_telemetry_evaluation: () -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
348
374
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
data/sig/types.rbs CHANGED
@@ -128,6 +128,12 @@ module Aws::ObservabilityAdmin
128
128
  SENSITIVE: []
129
129
  end
130
130
 
131
+ class GetTelemetryEnrichmentStatusOutput
132
+ attr_accessor status: ("Running" | "Stopped" | "Impaired")
133
+ attr_accessor aws_resource_explorer_managed_view_arn: ::String
134
+ SENSITIVE: []
135
+ end
136
+
131
137
  class GetTelemetryEvaluationStatusForOrganizationOutput
132
138
  attr_accessor status: ("NOT_STARTED" | "STARTING" | "FAILED_START" | "RUNNING" | "STOPPING" | "FAILED_STOP" | "STOPPED")
133
139
  attr_accessor failure_reason: ::String
@@ -289,6 +295,17 @@ module Aws::ObservabilityAdmin
289
295
  SENSITIVE: []
290
296
  end
291
297
 
298
+ class StartTelemetryEnrichmentOutput
299
+ attr_accessor status: ("Running" | "Stopped" | "Impaired")
300
+ attr_accessor aws_resource_explorer_managed_view_arn: ::String
301
+ SENSITIVE: []
302
+ end
303
+
304
+ class StopTelemetryEnrichmentOutput
305
+ attr_accessor status: ("Running" | "Stopped" | "Impaired")
306
+ SENSITIVE: []
307
+ end
308
+
292
309
  class TagResourceInput
293
310
  attr_accessor resource_arn: ::String
294
311
  attr_accessor tags: ::Hash[::String, ::String]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-observabilityadmin
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.13.0
4
+ version: 1.14.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services