aws-sdk-applicationsignals 1.43.0 → 1.45.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.
@@ -23,7 +23,7 @@ Aws::Plugins::GlobalConfiguration.add_identifier(:applicationsignals)
23
23
  # structure.
24
24
  #
25
25
  # application_signals = Aws::ApplicationSignals::Client.new
26
- # resp = application_signals.batch_get_service_level_objective_budget_report(params)
26
+ # resp = application_signals.batch_delete_instrumentation_configurations(params)
27
27
  #
28
28
  # See {Client} for more information.
29
29
  #
@@ -55,7 +55,7 @@ module Aws::ApplicationSignals
55
55
  autoload :EndpointProvider, 'aws-sdk-applicationsignals/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-applicationsignals/endpoints'
57
57
 
58
- GEM_VERSION = '1.43.0'
58
+ GEM_VERSION = '1.45.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -78,6 +78,28 @@ module Aws
78
78
  | (?Hash[Symbol, untyped]) -> instance
79
79
 
80
80
 
81
+ interface _BatchDeleteInstrumentationConfigurationsResponseSuccess
82
+ include ::Seahorse::Client::_ResponseSuccess[Types::BatchDeleteInstrumentationConfigurationsResponse]
83
+ def deleted_count: () -> ::Integer
84
+ def successful_deletions: () -> ::Array[Types::BatchDeleteSuccessfulDeletion]
85
+ def errors: () -> ::Array[Types::BatchDeleteError]
86
+ end
87
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApplicationSignals/Client.html#batch_delete_instrumentation_configurations-instance_method
88
+ def batch_delete_instrumentation_configurations: (
89
+ deletion_target: {
90
+ scope: {
91
+ service: ::String,
92
+ environment: ::String,
93
+ instrumentation_type: ("BREAKPOINT" | "PROBE")
94
+ }?,
95
+ resource_arns: {
96
+ resource_arns: Array[::String],
97
+ instrumentation_type: ("BREAKPOINT" | "PROBE")
98
+ }?
99
+ }
100
+ ) -> _BatchDeleteInstrumentationConfigurationsResponseSuccess
101
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchDeleteInstrumentationConfigurationsResponseSuccess
102
+
81
103
  interface _BatchGetServiceLevelObjectiveBudgetReportResponseSuccess
82
104
  include ::Seahorse::Client::_ResponseSuccess[Types::BatchGetServiceLevelObjectiveBudgetReportOutput]
83
105
  def timestamp: () -> ::Time
@@ -108,6 +130,62 @@ module Aws
108
130
  ) -> _BatchUpdateExclusionWindowsResponseSuccess
109
131
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchUpdateExclusionWindowsResponseSuccess
110
132
 
133
+ interface _CreateInstrumentationConfigurationResponseSuccess
134
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateInstrumentationConfigurationResponse]
135
+ def instrumentation_type: () -> ("BREAKPOINT" | "PROBE")
136
+ def service: () -> ::String
137
+ def environment: () -> ::String
138
+ def signal_type: () -> ("SNAPSHOT")
139
+ def location: () -> Types::Location
140
+ def location_hash: () -> ::String
141
+ def description: () -> ::String
142
+ def expires_at: () -> ::Time
143
+ def attribute_filters: () -> ::Array[::Hash[::String, ::String]]
144
+ def capture_configuration: () -> Types::CaptureConfiguration
145
+ def created_at: () -> ::Time
146
+ def arn: () -> ::String
147
+ end
148
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApplicationSignals/Client.html#create_instrumentation_configuration-instance_method
149
+ def create_instrumentation_configuration: (
150
+ instrumentation_type: ("BREAKPOINT" | "PROBE"),
151
+ service: ::String,
152
+ environment: ::String,
153
+ signal_type: ("SNAPSHOT"),
154
+ location: {
155
+ code_location: Params::code_location?
156
+ },
157
+ ?description: ::String,
158
+ ?expires_at: ::Time,
159
+ ?attribute_filters: Array[
160
+ Hash[::String, ::String]
161
+ ],
162
+ capture_configuration: {
163
+ code_capture: {
164
+ capture_arguments: Array[::String]?,
165
+ capture_return: bool?,
166
+ capture_stack_trace: bool?,
167
+ capture_locals: Array[::String]?,
168
+ capture_limits: {
169
+ max_hits: ::Integer?,
170
+ max_string_length: ::Integer?,
171
+ max_collection_width: ::Integer?,
172
+ max_collection_depth: ::Integer?,
173
+ max_stack_frames: ::Integer?,
174
+ max_stack_trace_size: ::Integer?,
175
+ max_object_depth: ::Integer?,
176
+ max_fields_per_object: ::Integer?
177
+ }
178
+ }?
179
+ },
180
+ ?tags: Array[
181
+ {
182
+ key: ::String,
183
+ value: ::String
184
+ }
185
+ ]
186
+ ) -> _CreateInstrumentationConfigurationResponseSuccess
187
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateInstrumentationConfigurationResponseSuccess
188
+
111
189
  interface _CreateServiceLevelObjectiveResponseSuccess
112
190
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateServiceLevelObjectiveOutput]
113
191
  def slo: () -> Types::ServiceLevelObjective
@@ -142,6 +220,20 @@ module Aws
142
220
  def delete_grouping_configuration: () -> _DeleteGroupingConfigurationResponseSuccess
143
221
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteGroupingConfigurationResponseSuccess
144
222
 
223
+ interface _DeleteInstrumentationConfigurationResponseSuccess
224
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteInstrumentationConfigurationResponse]
225
+ def deletion_status: () -> ("DELETED")
226
+ end
227
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApplicationSignals/Client.html#delete_instrumentation_configuration-instance_method
228
+ def delete_instrumentation_configuration: (
229
+ instrumentation_type: ("BREAKPOINT" | "PROBE"),
230
+ service: ::String,
231
+ environment: ::String,
232
+ signal_type: ("SNAPSHOT"),
233
+ location_identifier: Params::location_identifier
234
+ ) -> _DeleteInstrumentationConfigurationResponseSuccess
235
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteInstrumentationConfigurationResponseSuccess
236
+
145
237
  interface _DeleteServiceLevelObjectiveResponseSuccess
146
238
  include ::Seahorse::Client::_ResponseSuccess[Types::DeleteServiceLevelObjectiveOutput]
147
239
  end
@@ -151,6 +243,45 @@ module Aws
151
243
  ) -> _DeleteServiceLevelObjectiveResponseSuccess
152
244
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteServiceLevelObjectiveResponseSuccess
153
245
 
246
+ interface _GetInstrumentationConfigurationResponseSuccess
247
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetInstrumentationConfigurationResponse]
248
+ def configuration: () -> Types::InstrumentationConfiguration
249
+ end
250
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApplicationSignals/Client.html#get_instrumentation_configuration-instance_method
251
+ def get_instrumentation_configuration: (
252
+ instrumentation_type: ("BREAKPOINT" | "PROBE"),
253
+ service: ::String,
254
+ environment: ::String,
255
+ signal_type: ("SNAPSHOT"),
256
+ location_identifier: Params::location_identifier
257
+ ) -> _GetInstrumentationConfigurationResponseSuccess
258
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetInstrumentationConfigurationResponseSuccess
259
+
260
+ interface _GetInstrumentationConfigurationStatusResponseSuccess
261
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetInstrumentationConfigurationStatusResponse]
262
+ def service: () -> ::String
263
+ def environment: () -> ::String
264
+ def signal_type: () -> ("SNAPSHOT")
265
+ def location: () -> Types::Location
266
+ def status: () -> ("READY" | "ERROR" | "ACTIVE" | "DISABLED")
267
+ def events: () -> ::Array[Types::InstrumentationStatusEvent]
268
+ def next_token: () -> ::String
269
+ end
270
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApplicationSignals/Client.html#get_instrumentation_configuration_status-instance_method
271
+ def get_instrumentation_configuration_status: (
272
+ instrumentation_type: ("BREAKPOINT" | "PROBE"),
273
+ service: ::String,
274
+ environment: ::String,
275
+ signal_type: ("SNAPSHOT"),
276
+ location_identifier: Params::location_identifier,
277
+ ?status: ("READY" | "ERROR" | "ACTIVE" | "DISABLED"),
278
+ ?start_time: ::Time,
279
+ ?end_time: ::Time,
280
+ ?max_results: ::Integer,
281
+ ?next_token: ::String
282
+ ) -> _GetInstrumentationConfigurationStatusResponseSuccess
283
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetInstrumentationConfigurationStatusResponseSuccess
284
+
154
285
  interface _GetServiceResponseSuccess
155
286
  include ::Seahorse::Client::_ResponseSuccess[Types::GetServiceOutput]
156
287
  def service: () -> Types::Service
@@ -255,6 +386,27 @@ module Aws
255
386
  ) -> _ListGroupingAttributeDefinitionsResponseSuccess
256
387
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListGroupingAttributeDefinitionsResponseSuccess
257
388
 
389
+ interface _ListInstrumentationConfigurationsResponseSuccess
390
+ include ::Seahorse::Client::_ResponseSuccess[Types::InstrumentationConfigurationsPage]
391
+ def service: () -> ::String
392
+ def environment: () -> ::String
393
+ def changed: () -> bool
394
+ def latest_configurations: () -> ::Array[Types::InstrumentationConfigurationWithoutServiceEnv]
395
+ def synced_at: () -> ::Time
396
+ def sync_interval: () -> ::Integer
397
+ def next_token: () -> ::String
398
+ end
399
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApplicationSignals/Client.html#list_instrumentation_configurations-instance_method
400
+ def list_instrumentation_configurations: (
401
+ service: ::String,
402
+ environment: ::String,
403
+ instrumentation_type: ("BREAKPOINT" | "PROBE"),
404
+ ?synced_at: ::Time,
405
+ ?max_results: ::Integer,
406
+ ?next_token: ::String
407
+ ) -> _ListInstrumentationConfigurationsResponseSuccess
408
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListInstrumentationConfigurationsResponseSuccess
409
+
258
410
  interface _ListServiceDependenciesResponseSuccess
259
411
  include ::Seahorse::Client::_ResponseSuccess[Types::ListServiceDependenciesOutput]
260
412
  def start_time: () -> ::Time
@@ -412,6 +564,29 @@ module Aws
412
564
  ) -> _PutGroupingConfigurationResponseSuccess
413
565
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutGroupingConfigurationResponseSuccess
414
566
 
567
+ interface _ReportInstrumentationConfigurationStatusResponseSuccess
568
+ include ::Seahorse::Client::_ResponseSuccess[Types::ReportInstrumentationConfigurationStatusResponse]
569
+ def service: () -> ::String
570
+ def environment: () -> ::String
571
+ def unprocessed_status_events: () -> ::Array[Types::UnprocessedStatusEvent]
572
+ end
573
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApplicationSignals/Client.html#report_instrumentation_configuration_status-instance_method
574
+ def report_instrumentation_configuration_status: (
575
+ service: ::String,
576
+ environment: ::String,
577
+ configurations: Array[
578
+ {
579
+ instrumentation_type: ("BREAKPOINT" | "PROBE"),
580
+ signal_type: ("SNAPSHOT"),
581
+ location_hash: ::String,
582
+ status: ("READY" | "ERROR" | "ACTIVE" | "DISABLED"),
583
+ time: ::Time,
584
+ error_cause: ("FILE_NOT_FOUND" | "METHOD_NOT_FOUND" | "LINE_NOT_EXECUTABLE" | "OVERLOADED_METHODS" | "LANGUAGE_MISMATCH" | "RUNTIME_ERROR")?
585
+ }
586
+ ]
587
+ ) -> _ReportInstrumentationConfigurationStatusResponseSuccess
588
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ReportInstrumentationConfigurationStatusResponseSuccess
589
+
415
590
  interface _StartDiscoveryResponseSuccess
416
591
  include ::Seahorse::Client::_ResponseSuccess[Types::StartDiscoveryOutput]
417
592
  end
data/sig/params.rbs CHANGED
@@ -20,6 +20,15 @@ module Aws
20
20
  reason: ::String?
21
21
  }
22
22
 
23
+ type code_location = {
24
+ language: ("Java" | "Python" | "Javascript"),
25
+ code_unit: ::String?,
26
+ class_name: ::String?,
27
+ method_name: ::String?,
28
+ file_path: ::String,
29
+ line_number: ::Integer?
30
+ }
31
+
23
32
  type composite_sli_config = {
24
33
  selection_config: {
25
34
  type: ("EXPLICIT" | "PREFIX" | "REGEX"),
@@ -140,6 +149,11 @@ module Aws
140
149
  warning_threshold: ::Float?
141
150
  }
142
151
 
152
+ type location_identifier = {
153
+ code_location: Params::code_location?,
154
+ location_hash: ::String?
155
+ }
156
+
143
157
  end
144
158
  end
145
159
  end
data/sig/types.rbs CHANGED
@@ -63,6 +63,59 @@ module Aws::ApplicationSignals
63
63
  SENSITIVE: []
64
64
  end
65
65
 
66
+ class BatchDeleteByResourceArns
67
+ attr_accessor resource_arns: ::Array[::String]
68
+ attr_accessor instrumentation_type: ("BREAKPOINT" | "PROBE")
69
+ SENSITIVE: []
70
+ end
71
+
72
+ class BatchDeleteDeletionTarget
73
+ attr_accessor scope: Types::BatchDeleteScope
74
+ attr_accessor resource_arns: Types::BatchDeleteByResourceArns
75
+ attr_accessor unknown: untyped
76
+ SENSITIVE: []
77
+
78
+ class Scope < BatchDeleteDeletionTarget
79
+ end
80
+ class ResourceArns < BatchDeleteDeletionTarget
81
+ end
82
+ class Unknown < BatchDeleteDeletionTarget
83
+ end
84
+ end
85
+
86
+ class BatchDeleteError
87
+ attr_accessor resource_arn: ::String
88
+ attr_accessor code: ("ResourceNotFoundException" | "AccessDeniedException" | "InternalServiceException")
89
+ attr_accessor message: ::String
90
+ SENSITIVE: []
91
+ end
92
+
93
+ class BatchDeleteInstrumentationConfigurationsRequest
94
+ attr_accessor deletion_target: Types::BatchDeleteDeletionTarget
95
+ SENSITIVE: []
96
+ end
97
+
98
+ class BatchDeleteInstrumentationConfigurationsResponse
99
+ attr_accessor deleted_count: ::Integer
100
+ attr_accessor successful_deletions: ::Array[Types::BatchDeleteSuccessfulDeletion]
101
+ attr_accessor errors: ::Array[Types::BatchDeleteError]
102
+ SENSITIVE: []
103
+ end
104
+
105
+ class BatchDeleteScope
106
+ attr_accessor service: ::String
107
+ attr_accessor environment: ::String
108
+ attr_accessor instrumentation_type: ("BREAKPOINT" | "PROBE")
109
+ SENSITIVE: []
110
+ end
111
+
112
+ class BatchDeleteSuccessfulDeletion
113
+ attr_accessor resource_arn: ::String
114
+ attr_accessor signal_type: ::String
115
+ attr_accessor location_hash: ::String
116
+ SENSITIVE: []
117
+ end
118
+
66
119
  class BatchGetServiceLevelObjectiveBudgetReportInput
67
120
  attr_accessor timestamp: ::Time
68
121
  attr_accessor slo_ids: ::Array[::String]
@@ -113,6 +166,29 @@ module Aws::ApplicationSignals
113
166
  SENSITIVE: []
114
167
  end
115
168
 
169
+ class CaptureConfiguration
170
+ attr_accessor code_capture: Types::CodeCaptureConfiguration
171
+ attr_accessor unknown: untyped
172
+ SENSITIVE: []
173
+
174
+ class CodeCapture < CaptureConfiguration
175
+ end
176
+ class Unknown < CaptureConfiguration
177
+ end
178
+ end
179
+
180
+ class CaptureLimitsConfig
181
+ attr_accessor max_hits: ::Integer
182
+ attr_accessor max_string_length: ::Integer
183
+ attr_accessor max_collection_width: ::Integer
184
+ attr_accessor max_collection_depth: ::Integer
185
+ attr_accessor max_stack_frames: ::Integer
186
+ attr_accessor max_stack_trace_size: ::Integer
187
+ attr_accessor max_object_depth: ::Integer
188
+ attr_accessor max_fields_per_object: ::Integer
189
+ SENSITIVE: []
190
+ end
191
+
116
192
  class ChangeEvent
117
193
  attr_accessor timestamp: ::Time
118
194
  attr_accessor account_id: ::String
@@ -125,6 +201,25 @@ module Aws::ApplicationSignals
125
201
  SENSITIVE: []
126
202
  end
127
203
 
204
+ class CodeCaptureConfiguration
205
+ attr_accessor capture_arguments: ::Array[::String]
206
+ attr_accessor capture_return: bool
207
+ attr_accessor capture_stack_trace: bool
208
+ attr_accessor capture_locals: ::Array[::String]
209
+ attr_accessor capture_limits: Types::CaptureLimitsConfig
210
+ SENSITIVE: []
211
+ end
212
+
213
+ class CodeLocation
214
+ attr_accessor language: ("Java" | "Python" | "Javascript")
215
+ attr_accessor code_unit: ::String
216
+ attr_accessor class_name: ::String
217
+ attr_accessor method_name: ::String
218
+ attr_accessor file_path: ::String
219
+ attr_accessor line_number: ::Integer
220
+ SENSITIVE: []
221
+ end
222
+
128
223
  class CompositeSliComponent
129
224
  attr_accessor operation_name: ::String
130
225
  attr_accessor unknown: untyped
@@ -147,6 +242,36 @@ module Aws::ApplicationSignals
147
242
  SENSITIVE: []
148
243
  end
149
244
 
245
+ class CreateInstrumentationConfigurationRequest
246
+ attr_accessor instrumentation_type: ("BREAKPOINT" | "PROBE")
247
+ attr_accessor service: ::String
248
+ attr_accessor environment: ::String
249
+ attr_accessor signal_type: ("SNAPSHOT")
250
+ attr_accessor location: Types::Location
251
+ attr_accessor description: ::String
252
+ attr_accessor expires_at: ::Time
253
+ attr_accessor attribute_filters: ::Array[::Hash[::String, ::String]]
254
+ attr_accessor capture_configuration: Types::CaptureConfiguration
255
+ attr_accessor tags: ::Array[Types::Tag]
256
+ SENSITIVE: []
257
+ end
258
+
259
+ class CreateInstrumentationConfigurationResponse
260
+ attr_accessor instrumentation_type: ("BREAKPOINT" | "PROBE")
261
+ attr_accessor service: ::String
262
+ attr_accessor environment: ::String
263
+ attr_accessor signal_type: ("SNAPSHOT")
264
+ attr_accessor location: Types::Location
265
+ attr_accessor location_hash: ::String
266
+ attr_accessor description: ::String
267
+ attr_accessor expires_at: ::Time
268
+ attr_accessor attribute_filters: ::Array[::Hash[::String, ::String]]
269
+ attr_accessor capture_configuration: Types::CaptureConfiguration
270
+ attr_accessor created_at: ::Time
271
+ attr_accessor arn: ::String
272
+ SENSITIVE: []
273
+ end
274
+
150
275
  class CreateServiceLevelObjectiveInput
151
276
  attr_accessor name: ::String
152
277
  attr_accessor description: ::String
@@ -168,6 +293,20 @@ module Aws::ApplicationSignals
168
293
  class DeleteGroupingConfigurationOutput < Aws::EmptyStructure
169
294
  end
170
295
 
296
+ class DeleteInstrumentationConfigurationRequest
297
+ attr_accessor instrumentation_type: ("BREAKPOINT" | "PROBE")
298
+ attr_accessor service: ::String
299
+ attr_accessor environment: ::String
300
+ attr_accessor signal_type: ("SNAPSHOT")
301
+ attr_accessor location_identifier: Types::LocationIdentifier
302
+ SENSITIVE: []
303
+ end
304
+
305
+ class DeleteInstrumentationConfigurationResponse
306
+ attr_accessor deletion_status: ("DELETED")
307
+ SENSITIVE: []
308
+ end
309
+
171
310
  class DeleteServiceLevelObjectiveInput
172
311
  attr_accessor id: ::String
173
312
  SENSITIVE: []
@@ -210,6 +349,45 @@ module Aws::ApplicationSignals
210
349
  SENSITIVE: []
211
350
  end
212
351
 
352
+ class GetInstrumentationConfigurationRequest
353
+ attr_accessor instrumentation_type: ("BREAKPOINT" | "PROBE")
354
+ attr_accessor service: ::String
355
+ attr_accessor environment: ::String
356
+ attr_accessor signal_type: ("SNAPSHOT")
357
+ attr_accessor location_identifier: Types::LocationIdentifier
358
+ SENSITIVE: []
359
+ end
360
+
361
+ class GetInstrumentationConfigurationResponse
362
+ attr_accessor configuration: Types::InstrumentationConfiguration
363
+ SENSITIVE: []
364
+ end
365
+
366
+ class GetInstrumentationConfigurationStatusRequest
367
+ attr_accessor instrumentation_type: ("BREAKPOINT" | "PROBE")
368
+ attr_accessor service: ::String
369
+ attr_accessor environment: ::String
370
+ attr_accessor signal_type: ("SNAPSHOT")
371
+ attr_accessor location_identifier: Types::LocationIdentifier
372
+ attr_accessor status: ("READY" | "ERROR" | "ACTIVE" | "DISABLED")
373
+ attr_accessor start_time: ::Time
374
+ attr_accessor end_time: ::Time
375
+ attr_accessor max_results: ::Integer
376
+ attr_accessor next_token: ::String
377
+ SENSITIVE: []
378
+ end
379
+
380
+ class GetInstrumentationConfigurationStatusResponse
381
+ attr_accessor service: ::String
382
+ attr_accessor environment: ::String
383
+ attr_accessor signal_type: ("SNAPSHOT")
384
+ attr_accessor location: Types::Location
385
+ attr_accessor status: ("READY" | "ERROR" | "ACTIVE" | "DISABLED")
386
+ attr_accessor events: ::Array[Types::InstrumentationStatusEvent]
387
+ attr_accessor next_token: ::String
388
+ SENSITIVE: []
389
+ end
390
+
213
391
  class GetServiceInput
214
392
  attr_accessor start_time: ::Time
215
393
  attr_accessor end_time: ::Time
@@ -255,6 +433,63 @@ module Aws::ApplicationSignals
255
433
  SENSITIVE: []
256
434
  end
257
435
 
436
+ class InstrumentationConfiguration
437
+ attr_accessor instrumentation_type: ("BREAKPOINT" | "PROBE")
438
+ attr_accessor service: ::String
439
+ attr_accessor environment: ::String
440
+ attr_accessor signal_type: ("SNAPSHOT")
441
+ attr_accessor location: Types::Location
442
+ attr_accessor location_hash: ::String
443
+ attr_accessor description: ::String
444
+ attr_accessor expires_at: ::Time
445
+ attr_accessor attribute_filters: ::Array[::Hash[::String, ::String]]
446
+ attr_accessor capture_configuration: Types::CaptureConfiguration
447
+ attr_accessor created_at: ::Time
448
+ attr_accessor arn: ::String
449
+ SENSITIVE: []
450
+ end
451
+
452
+ class InstrumentationConfigurationStatusReport
453
+ attr_accessor instrumentation_type: ("BREAKPOINT" | "PROBE")
454
+ attr_accessor signal_type: ("SNAPSHOT")
455
+ attr_accessor location_hash: ::String
456
+ attr_accessor status: ("READY" | "ERROR" | "ACTIVE" | "DISABLED")
457
+ attr_accessor time: ::Time
458
+ attr_accessor error_cause: ("FILE_NOT_FOUND" | "METHOD_NOT_FOUND" | "LINE_NOT_EXECUTABLE" | "OVERLOADED_METHODS" | "LANGUAGE_MISMATCH" | "RUNTIME_ERROR")
459
+ SENSITIVE: []
460
+ end
461
+
462
+ class InstrumentationConfigurationWithoutServiceEnv
463
+ attr_accessor instrumentation_type: ("BREAKPOINT" | "PROBE")
464
+ attr_accessor signal_type: ("SNAPSHOT")
465
+ attr_accessor location: Types::Location
466
+ attr_accessor location_hash: ::String
467
+ attr_accessor description: ::String
468
+ attr_accessor expires_at: ::Time
469
+ attr_accessor attribute_filters: ::Array[::Hash[::String, ::String]]
470
+ attr_accessor capture_configuration: Types::CaptureConfiguration
471
+ attr_accessor created_at: ::Time
472
+ attr_accessor arn: ::String
473
+ SENSITIVE: []
474
+ end
475
+
476
+ class InstrumentationConfigurationsPage
477
+ attr_accessor service: ::String
478
+ attr_accessor environment: ::String
479
+ attr_accessor changed: bool
480
+ attr_accessor latest_configurations: ::Array[Types::InstrumentationConfigurationWithoutServiceEnv]
481
+ attr_accessor synced_at: ::Time
482
+ attr_accessor sync_interval: ::Integer
483
+ attr_accessor next_token: ::String
484
+ SENSITIVE: []
485
+ end
486
+
487
+ class InstrumentationStatusEvent
488
+ attr_accessor time: ::Time
489
+ attr_accessor error_cause: ("FILE_NOT_FOUND" | "METHOD_NOT_FOUND" | "LINE_NOT_EXECUTABLE" | "OVERLOADED_METHODS" | "LANGUAGE_MISMATCH" | "RUNTIME_ERROR")
490
+ SENSITIVE: []
491
+ end
492
+
258
493
  class Interval
259
494
  attr_accessor rolling_interval: Types::RollingInterval
260
495
  attr_accessor calendar_interval: Types::CalendarInterval
@@ -319,6 +554,16 @@ module Aws::ApplicationSignals
319
554
  SENSITIVE: []
320
555
  end
321
556
 
557
+ class ListInstrumentationConfigurationsRequest
558
+ attr_accessor service: ::String
559
+ attr_accessor environment: ::String
560
+ attr_accessor instrumentation_type: ("BREAKPOINT" | "PROBE")
561
+ attr_accessor synced_at: ::Time
562
+ attr_accessor max_results: ::Integer
563
+ attr_accessor next_token: ::String
564
+ SENSITIVE: []
565
+ end
566
+
322
567
  class ListServiceDependenciesInput
323
568
  attr_accessor start_time: ::Time
324
569
  attr_accessor end_time: ::Time
@@ -449,6 +694,31 @@ module Aws::ApplicationSignals
449
694
  SENSITIVE: []
450
695
  end
451
696
 
697
+ class Location
698
+ attr_accessor code_location: Types::CodeLocation
699
+ attr_accessor unknown: untyped
700
+ SENSITIVE: []
701
+
702
+ class CodeLocation < Location
703
+ end
704
+ class Unknown < Location
705
+ end
706
+ end
707
+
708
+ class LocationIdentifier
709
+ attr_accessor code_location: Types::CodeLocation
710
+ attr_accessor location_hash: ::String
711
+ attr_accessor unknown: untyped
712
+ SENSITIVE: []
713
+
714
+ class CodeLocation < LocationIdentifier
715
+ end
716
+ class LocationHash < LocationIdentifier
717
+ end
718
+ class Unknown < LocationIdentifier
719
+ end
720
+ end
721
+
452
722
  class Metric
453
723
  attr_accessor namespace: ::String
454
724
  attr_accessor metric_name: ::String
@@ -537,6 +807,20 @@ module Aws::ApplicationSignals
537
807
  SENSITIVE: []
538
808
  end
539
809
 
810
+ class ReportInstrumentationConfigurationStatusRequest
811
+ attr_accessor service: ::String
812
+ attr_accessor environment: ::String
813
+ attr_accessor configurations: ::Array[Types::InstrumentationConfigurationStatusReport]
814
+ SENSITIVE: []
815
+ end
816
+
817
+ class ReportInstrumentationConfigurationStatusResponse
818
+ attr_accessor service: ::String
819
+ attr_accessor environment: ::String
820
+ attr_accessor unprocessed_status_events: ::Array[Types::UnprocessedStatusEvent]
821
+ SENSITIVE: []
822
+ end
823
+
540
824
  class RequestBasedServiceLevelIndicator
541
825
  attr_accessor request_based_sli_metric: Types::RequestBasedServiceLevelIndicatorMetric
542
826
  attr_accessor metric_threshold: ::Float
@@ -794,6 +1078,16 @@ module Aws::ApplicationSignals
794
1078
  SENSITIVE: []
795
1079
  end
796
1080
 
1081
+ class UnprocessedStatusEvent
1082
+ attr_accessor instrumentation_type: ("BREAKPOINT" | "PROBE")
1083
+ attr_accessor signal_type: ("SNAPSHOT")
1084
+ attr_accessor location_hash: ::String
1085
+ attr_accessor status: ("READY" | "ERROR" | "ACTIVE" | "DISABLED")
1086
+ attr_accessor time: ::Time
1087
+ attr_accessor failed_reason: ("THROTTLED" | "INTERNAL_ERROR" | "VALIDATION_ERROR")
1088
+ SENSITIVE: []
1089
+ end
1090
+
797
1091
  class UntagResourceRequest
798
1092
  attr_accessor resource_arn: ::String
799
1093
  attr_accessor tag_keys: ::Array[::String]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-applicationsignals
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.43.0
4
+ version: 1.45.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services