aws-sdk-applicationdiscoveryservice 1.80.0 → 1.82.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: 0c2d5db219e277f35cdb5c3366b7e3f37ba19b643b78740d469c0f630d73bb79
4
- data.tar.gz: cab38770047748d6ed8ab307ac76951aa34e55aee2a1f575eaf480be4e6c52f0
3
+ metadata.gz: 3a1686263197fbe940ce1dbfe81c48b610c29dedd45460e34dd292ba39f6cbf0
4
+ data.tar.gz: 3836d0ebfd2ab47771609d4745e9146be8f93bfb049bf34dcd0717fb228a8957
5
5
  SHA512:
6
- metadata.gz: e8a947793ce8604c92dd5b298f194d791a688439e3a6b7f315544b9e5875cbd349cc489f65fdc3df9d1cb4ac179c03bd04cbef9010a6d46c3de3bdc20d155252
7
- data.tar.gz: f098759a6511382bcb8726aeae75c876632a3acc99c00dc466efd251e8e6d9384e550a6c75c40c672e928ecad824bfd0176b63a8f4532cd8f261f847d4165750
6
+ metadata.gz: afe91388f66bec5a57138c1ee61c9245f399105ce0890311f2f7f4b425ba4b23c1b2fbb85d0f525e842b9843e9a0d0d386731b07cc541ea4b0ead6adea4511b5
7
+ data.tar.gz: d0301dbe6dcbaf8300d1c07067b1f8dc4b65685bf96b9b14dddd9debee981bae719a23d56617127ee8534c7a6c4c6b4431d470b0daea1f2ac93452593465cd35
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.82.0 (2025-01-15)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.81.0 (2024-11-20)
10
+ ------------------
11
+
12
+ * Feature - Add support to import data from commercially available discovery tools without file manipulation.
13
+
4
14
  1.80.0 (2024-11-18)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.80.0
1
+ 1.82.0
@@ -257,11 +257,34 @@ module Aws::ApplicationDiscoveryService
257
257
  # Used when loading credentials from the shared credentials file
258
258
  # at HOME/.aws/credentials. When not specified, 'default' is used.
259
259
  #
260
+ # @option options [String] :request_checksum_calculation ("when_supported")
261
+ # Determines when a checksum will be calculated for request payloads. Values are:
262
+ #
263
+ # * `when_supported` - (default) When set, a checksum will be
264
+ # calculated for all request payloads of operations modeled with the
265
+ # `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
266
+ # `requestAlgorithmMember` is modeled.
267
+ # * `when_required` - When set, a checksum will only be calculated for
268
+ # request payloads of operations modeled with the `httpChecksum` trait where
269
+ # `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
270
+ # is modeled and supplied.
271
+ #
260
272
  # @option options [Integer] :request_min_compression_size_bytes (10240)
261
273
  # The minimum size in bytes that triggers compression for request
262
274
  # bodies. The value must be non-negative integer value between 0
263
275
  # and 10485780 bytes inclusive.
264
276
  #
277
+ # @option options [String] :response_checksum_validation ("when_supported")
278
+ # Determines when checksum validation will be performed on response payloads. Values are:
279
+ #
280
+ # * `when_supported` - (default) When set, checksum validation is performed on all
281
+ # response payloads of operations modeled with the `httpChecksum` trait where
282
+ # `responseAlgorithms` is modeled, except when no modeled checksum algorithms
283
+ # are supported.
284
+ # * `when_required` - When set, checksum validation is not performed on
285
+ # response payloads of operations unless the checksum algorithm is supported and
286
+ # the `requestValidationModeMember` member is set to `ENABLED`.
287
+ #
265
288
  # @option options [Proc] :retry_backoff
266
289
  # A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
267
290
  # This option is only used in the `legacy` retry mode.
@@ -563,10 +586,13 @@ module Aws::ApplicationDiscoveryService
563
586
  # Creates an application with the given name and description.
564
587
  #
565
588
  # @option params [required, String] :name
566
- # Name of the application to be created.
589
+ # The name of the application to be created.
567
590
  #
568
591
  # @option params [String] :description
569
- # Description of the application to be created.
592
+ # The description of the application to be created.
593
+ #
594
+ # @option params [String] :wave
595
+ # The name of the migration wave of the application to be created.
570
596
  #
571
597
  # @return [Types::CreateApplicationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
572
598
  #
@@ -577,6 +603,7 @@ module Aws::ApplicationDiscoveryService
577
603
  # resp = client.create_application({
578
604
  # name: "ApplicationName", # required
579
605
  # description: "ApplicationDescription",
606
+ # wave: "ApplicationWave",
580
607
  # })
581
608
  #
582
609
  # @example Response structure
@@ -1050,7 +1077,7 @@ module Aws::ApplicationDiscoveryService
1050
1077
  # resp = client.describe_import_tasks({
1051
1078
  # filters: [
1052
1079
  # {
1053
- # name: "IMPORT_TASK_ID", # accepts IMPORT_TASK_ID, STATUS, NAME
1080
+ # name: "IMPORT_TASK_ID", # accepts IMPORT_TASK_ID, STATUS, NAME, FILE_CLASSIFICATION
1054
1081
  # values: ["ImportTaskFilterValue"],
1055
1082
  # },
1056
1083
  # ],
@@ -1066,10 +1093,11 @@ module Aws::ApplicationDiscoveryService
1066
1093
  # resp.tasks[0].client_request_token #=> String
1067
1094
  # resp.tasks[0].name #=> String
1068
1095
  # resp.tasks[0].import_url #=> String
1069
- # resp.tasks[0].status #=> String, one of "IMPORT_IN_PROGRESS", "IMPORT_COMPLETE", "IMPORT_COMPLETE_WITH_ERRORS", "IMPORT_FAILED", "IMPORT_FAILED_SERVER_LIMIT_EXCEEDED", "IMPORT_FAILED_RECORD_LIMIT_EXCEEDED", "DELETE_IN_PROGRESS", "DELETE_COMPLETE", "DELETE_FAILED", "DELETE_FAILED_LIMIT_EXCEEDED", "INTERNAL_ERROR"
1096
+ # resp.tasks[0].status #=> String, one of "IMPORT_IN_PROGRESS", "IMPORT_COMPLETE", "IMPORT_COMPLETE_WITH_ERRORS", "IMPORT_FAILED", "IMPORT_FAILED_SERVER_LIMIT_EXCEEDED", "IMPORT_FAILED_RECORD_LIMIT_EXCEEDED", "IMPORT_FAILED_UNSUPPORTED_FILE_TYPE", "DELETE_IN_PROGRESS", "DELETE_COMPLETE", "DELETE_FAILED", "DELETE_FAILED_LIMIT_EXCEEDED", "INTERNAL_ERROR"
1070
1097
  # resp.tasks[0].import_request_time #=> Time
1071
1098
  # resp.tasks[0].import_completion_time #=> Time
1072
1099
  # resp.tasks[0].import_deleted_time #=> Time
1100
+ # resp.tasks[0].file_classification #=> String, one of "MODELIZEIT_EXPORT", "RVTOOLS_EXPORT", "VMWARE_NSX_EXPORT", "IMPORT_TEMPLATE"
1073
1101
  # resp.tasks[0].server_import_success #=> Integer
1074
1102
  # resp.tasks[0].server_import_failure #=> Integer
1075
1103
  # resp.tasks[0].application_import_success #=> Integer
@@ -1691,10 +1719,11 @@ module Aws::ApplicationDiscoveryService
1691
1719
  # resp.task.client_request_token #=> String
1692
1720
  # resp.task.name #=> String
1693
1721
  # resp.task.import_url #=> String
1694
- # resp.task.status #=> String, one of "IMPORT_IN_PROGRESS", "IMPORT_COMPLETE", "IMPORT_COMPLETE_WITH_ERRORS", "IMPORT_FAILED", "IMPORT_FAILED_SERVER_LIMIT_EXCEEDED", "IMPORT_FAILED_RECORD_LIMIT_EXCEEDED", "DELETE_IN_PROGRESS", "DELETE_COMPLETE", "DELETE_FAILED", "DELETE_FAILED_LIMIT_EXCEEDED", "INTERNAL_ERROR"
1722
+ # resp.task.status #=> String, one of "IMPORT_IN_PROGRESS", "IMPORT_COMPLETE", "IMPORT_COMPLETE_WITH_ERRORS", "IMPORT_FAILED", "IMPORT_FAILED_SERVER_LIMIT_EXCEEDED", "IMPORT_FAILED_RECORD_LIMIT_EXCEEDED", "IMPORT_FAILED_UNSUPPORTED_FILE_TYPE", "DELETE_IN_PROGRESS", "DELETE_COMPLETE", "DELETE_FAILED", "DELETE_FAILED_LIMIT_EXCEEDED", "INTERNAL_ERROR"
1695
1723
  # resp.task.import_request_time #=> Time
1696
1724
  # resp.task.import_completion_time #=> Time
1697
1725
  # resp.task.import_deleted_time #=> Time
1726
+ # resp.task.file_classification #=> String, one of "MODELIZEIT_EXPORT", "RVTOOLS_EXPORT", "VMWARE_NSX_EXPORT", "IMPORT_TEMPLATE"
1698
1727
  # resp.task.server_import_success #=> Integer
1699
1728
  # resp.task.server_import_failure #=> Integer
1700
1729
  # resp.task.application_import_success #=> Integer
@@ -1777,6 +1806,9 @@ module Aws::ApplicationDiscoveryService
1777
1806
  # @option params [String] :description
1778
1807
  # New description of the application to be updated.
1779
1808
  #
1809
+ # @option params [String] :wave
1810
+ # The new migration wave of the application that you want to update.
1811
+ #
1780
1812
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1781
1813
  #
1782
1814
  # @example Request syntax with placeholder values
@@ -1785,6 +1817,7 @@ module Aws::ApplicationDiscoveryService
1785
1817
  # configuration_id: "ApplicationId", # required
1786
1818
  # name: "ApplicationName",
1787
1819
  # description: "ApplicationDescription",
1820
+ # wave: "ApplicationWave",
1788
1821
  # })
1789
1822
  #
1790
1823
  # @overload update_application(params = {})
@@ -1812,7 +1845,7 @@ module Aws::ApplicationDiscoveryService
1812
1845
  tracer: tracer
1813
1846
  )
1814
1847
  context[:gem_name] = 'aws-sdk-applicationdiscoveryservice'
1815
- context[:gem_version] = '1.80.0'
1848
+ context[:gem_version] = '1.82.0'
1816
1849
  Seahorse::Client::Request.new(handlers, context)
1817
1850
  end
1818
1851
 
@@ -27,6 +27,7 @@ module Aws::ApplicationDiscoveryService
27
27
  ApplicationId = Shapes::StringShape.new(name: 'ApplicationId')
28
28
  ApplicationIdsList = Shapes::ListShape.new(name: 'ApplicationIdsList')
29
29
  ApplicationName = Shapes::StringShape.new(name: 'ApplicationName')
30
+ ApplicationWave = Shapes::StringShape.new(name: 'ApplicationWave')
30
31
  AssociateConfigurationItemsToApplicationRequest = Shapes::StructureShape.new(name: 'AssociateConfigurationItemsToApplicationRequest')
31
32
  AssociateConfigurationItemsToApplicationResponse = Shapes::StructureShape.new(name: 'AssociateConfigurationItemsToApplicationResponse')
32
33
  AuthorizationErrorException = Shapes::StructureShape.new(name: 'AuthorizationErrorException')
@@ -123,6 +124,7 @@ module Aws::ApplicationDiscoveryService
123
124
  ExportsInfo = Shapes::ListShape.new(name: 'ExportsInfo')
124
125
  FailedConfiguration = Shapes::StructureShape.new(name: 'FailedConfiguration')
125
126
  FailedConfigurationList = Shapes::ListShape.new(name: 'FailedConfigurationList')
127
+ FileClassification = Shapes::StringShape.new(name: 'FileClassification')
126
128
  Filter = Shapes::StructureShape.new(name: 'Filter')
127
129
  FilterName = Shapes::StringShape.new(name: 'FilterName')
128
130
  FilterValue = Shapes::StringShape.new(name: 'FilterValue')
@@ -317,6 +319,7 @@ module Aws::ApplicationDiscoveryService
317
319
 
318
320
  CreateApplicationRequest.add_member(:name, Shapes::ShapeRef.new(shape: ApplicationName, required: true, location_name: "name"))
319
321
  CreateApplicationRequest.add_member(:description, Shapes::ShapeRef.new(shape: ApplicationDescription, location_name: "description"))
322
+ CreateApplicationRequest.add_member(:wave, Shapes::ShapeRef.new(shape: ApplicationWave, location_name: "wave"))
320
323
  CreateApplicationRequest.struct_class = Types::CreateApplicationRequest
321
324
 
322
325
  CreateApplicationResponse.add_member(:configuration_id, Shapes::ShapeRef.new(shape: String, location_name: "configurationId"))
@@ -551,6 +554,7 @@ module Aws::ApplicationDiscoveryService
551
554
  ImportTask.add_member(:import_request_time, Shapes::ShapeRef.new(shape: TimeStamp, location_name: "importRequestTime"))
552
555
  ImportTask.add_member(:import_completion_time, Shapes::ShapeRef.new(shape: TimeStamp, location_name: "importCompletionTime"))
553
556
  ImportTask.add_member(:import_deleted_time, Shapes::ShapeRef.new(shape: TimeStamp, location_name: "importDeletedTime"))
557
+ ImportTask.add_member(:file_classification, Shapes::ShapeRef.new(shape: FileClassification, location_name: "fileClassification"))
554
558
  ImportTask.add_member(:server_import_success, Shapes::ShapeRef.new(shape: Integer, location_name: "serverImportSuccess"))
555
559
  ImportTask.add_member(:server_import_failure, Shapes::ShapeRef.new(shape: Integer, location_name: "serverImportFailure"))
556
560
  ImportTask.add_member(:application_import_success, Shapes::ShapeRef.new(shape: Integer, location_name: "applicationImportSuccess"))
@@ -703,6 +707,7 @@ module Aws::ApplicationDiscoveryService
703
707
  UpdateApplicationRequest.add_member(:configuration_id, Shapes::ShapeRef.new(shape: ApplicationId, required: true, location_name: "configurationId"))
704
708
  UpdateApplicationRequest.add_member(:name, Shapes::ShapeRef.new(shape: ApplicationName, location_name: "name"))
705
709
  UpdateApplicationRequest.add_member(:description, Shapes::ShapeRef.new(shape: ApplicationDescription, location_name: "description"))
710
+ UpdateApplicationRequest.add_member(:wave, Shapes::ShapeRef.new(shape: ApplicationWave, location_name: "wave"))
706
711
  UpdateApplicationRequest.struct_class = Types::UpdateApplicationRequest
707
712
 
708
713
  UpdateApplicationResponse.struct_class = Types::UpdateApplicationResponse
@@ -1053,6 +1058,7 @@ module Aws::ApplicationDiscoveryService
1053
1058
  o.errors << Shapes::ShapeRef.new(shape: HomeRegionNotSetException)
1054
1059
  o.errors << Shapes::ShapeRef.new(shape: OperationNotPermittedException)
1055
1060
  o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
1061
+ o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
1056
1062
  end)
1057
1063
 
1058
1064
  api.add_operation(:start_continuous_export, Seahorse::Model::Operation.new.tap do |o|
@@ -508,22 +508,27 @@ module Aws::ApplicationDiscoveryService
508
508
  end
509
509
 
510
510
  # @!attribute [rw] name
511
- # Name of the application to be created.
511
+ # The name of the application to be created.
512
512
  # @return [String]
513
513
  #
514
514
  # @!attribute [rw] description
515
- # Description of the application to be created.
515
+ # The description of the application to be created.
516
+ # @return [String]
517
+ #
518
+ # @!attribute [rw] wave
519
+ # The name of the migration wave of the application to be created.
516
520
  # @return [String]
517
521
  #
518
522
  class CreateApplicationRequest < Struct.new(
519
523
  :name,
520
- :description)
524
+ :description,
525
+ :wave)
521
526
  SENSITIVE = []
522
527
  include Aws::Structure
523
528
  end
524
529
 
525
530
  # @!attribute [rw] configuration_id
526
- # Configuration ID of an application to be created.
531
+ # The configuration ID of an application to be created.
527
532
  # @return [String]
528
533
  #
529
534
  class CreateApplicationResponse < Struct.new(
@@ -1484,6 +1489,10 @@ module Aws::ApplicationDiscoveryService
1484
1489
  # Unix time stamp format.
1485
1490
  # @return [Time]
1486
1491
  #
1492
+ # @!attribute [rw] file_classification
1493
+ # The type of file detected by the import task.
1494
+ # @return [String]
1495
+ #
1487
1496
  # @!attribute [rw] server_import_success
1488
1497
  # The total number of server records in the import file that were
1489
1498
  # successfully imported.
@@ -1531,6 +1540,7 @@ module Aws::ApplicationDiscoveryService
1531
1540
  :import_request_time,
1532
1541
  :import_completion_time,
1533
1542
  :import_deleted_time,
1543
+ :file_classification,
1534
1544
  :server_import_success,
1535
1545
  :server_import_failure,
1536
1546
  :application_import_success,
@@ -2158,10 +2168,15 @@ module Aws::ApplicationDiscoveryService
2158
2168
  # New description of the application to be updated.
2159
2169
  # @return [String]
2160
2170
  #
2171
+ # @!attribute [rw] wave
2172
+ # The new migration wave of the application that you want to update.
2173
+ # @return [String]
2174
+ #
2161
2175
  class UpdateApplicationRequest < Struct.new(
2162
2176
  :configuration_id,
2163
2177
  :name,
2164
- :description)
2178
+ :description,
2179
+ :wave)
2165
2180
  SENSITIVE = []
2166
2181
  include Aws::Structure
2167
2182
  end
@@ -54,7 +54,7 @@ module Aws::ApplicationDiscoveryService
54
54
  autoload :EndpointProvider, 'aws-sdk-applicationdiscoveryservice/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-applicationdiscoveryservice/endpoints'
56
56
 
57
- GEM_VERSION = '1.80.0'
57
+ GEM_VERSION = '1.82.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -39,7 +39,9 @@ module Aws
39
39
  ?logger: untyped,
40
40
  ?max_attempts: Integer,
41
41
  ?profile: String,
42
+ ?request_checksum_calculation: String,
42
43
  ?request_min_compression_size_bytes: Integer,
44
+ ?response_checksum_validation: String,
43
45
  ?retry_backoff: Proc,
44
46
  ?retry_base_delay: Float,
45
47
  ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
@@ -119,7 +121,8 @@ module Aws
119
121
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApplicationDiscoveryService/Client.html#create_application-instance_method
120
122
  def create_application: (
121
123
  name: ::String,
122
- ?description: ::String
124
+ ?description: ::String,
125
+ ?wave: ::String
123
126
  ) -> _CreateApplicationResponseSuccess
124
127
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateApplicationResponseSuccess
125
128
 
@@ -257,7 +260,7 @@ module Aws
257
260
  def describe_import_tasks: (
258
261
  ?filters: Array[
259
262
  {
260
- name: ("IMPORT_TASK_ID" | "STATUS" | "NAME")?,
263
+ name: ("IMPORT_TASK_ID" | "STATUS" | "NAME" | "FILE_CLASSIFICATION")?,
261
264
  values: Array[::String]?
262
265
  },
263
266
  ],
@@ -474,7 +477,8 @@ module Aws
474
477
  def update_application: (
475
478
  configuration_id: ::String,
476
479
  ?name: ::String,
477
- ?description: ::String
480
+ ?description: ::String,
481
+ ?wave: ::String
478
482
  ) -> _UpdateApplicationResponseSuccess
479
483
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateApplicationResponseSuccess
480
484
  end
data/sig/resource.rbs CHANGED
@@ -39,7 +39,9 @@ module Aws
39
39
  ?logger: untyped,
40
40
  ?max_attempts: Integer,
41
41
  ?profile: String,
42
+ ?request_checksum_calculation: String,
42
43
  ?request_min_compression_size_bytes: Integer,
44
+ ?response_checksum_validation: String,
43
45
  ?retry_backoff: Proc,
44
46
  ?retry_base_delay: Float,
45
47
  ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
data/sig/types.rbs CHANGED
@@ -126,6 +126,7 @@ module Aws::ApplicationDiscoveryService
126
126
  class CreateApplicationRequest
127
127
  attr_accessor name: ::String
128
128
  attr_accessor description: ::String
129
+ attr_accessor wave: ::String
129
130
  SENSITIVE: []
130
131
  end
131
132
 
@@ -411,10 +412,11 @@ module Aws::ApplicationDiscoveryService
411
412
  attr_accessor client_request_token: ::String
412
413
  attr_accessor name: ::String
413
414
  attr_accessor import_url: ::String
414
- attr_accessor status: ("IMPORT_IN_PROGRESS" | "IMPORT_COMPLETE" | "IMPORT_COMPLETE_WITH_ERRORS" | "IMPORT_FAILED" | "IMPORT_FAILED_SERVER_LIMIT_EXCEEDED" | "IMPORT_FAILED_RECORD_LIMIT_EXCEEDED" | "DELETE_IN_PROGRESS" | "DELETE_COMPLETE" | "DELETE_FAILED" | "DELETE_FAILED_LIMIT_EXCEEDED" | "INTERNAL_ERROR")
415
+ attr_accessor status: ("IMPORT_IN_PROGRESS" | "IMPORT_COMPLETE" | "IMPORT_COMPLETE_WITH_ERRORS" | "IMPORT_FAILED" | "IMPORT_FAILED_SERVER_LIMIT_EXCEEDED" | "IMPORT_FAILED_RECORD_LIMIT_EXCEEDED" | "IMPORT_FAILED_UNSUPPORTED_FILE_TYPE" | "DELETE_IN_PROGRESS" | "DELETE_COMPLETE" | "DELETE_FAILED" | "DELETE_FAILED_LIMIT_EXCEEDED" | "INTERNAL_ERROR")
415
416
  attr_accessor import_request_time: ::Time
416
417
  attr_accessor import_completion_time: ::Time
417
418
  attr_accessor import_deleted_time: ::Time
419
+ attr_accessor file_classification: ("MODELIZEIT_EXPORT" | "RVTOOLS_EXPORT" | "VMWARE_NSX_EXPORT" | "IMPORT_TEMPLATE")
418
420
  attr_accessor server_import_success: ::Integer
419
421
  attr_accessor server_import_failure: ::Integer
420
422
  attr_accessor application_import_success: ::Integer
@@ -424,7 +426,7 @@ module Aws::ApplicationDiscoveryService
424
426
  end
425
427
 
426
428
  class ImportTaskFilter
427
- attr_accessor name: ("IMPORT_TASK_ID" | "STATUS" | "NAME")
429
+ attr_accessor name: ("IMPORT_TASK_ID" | "STATUS" | "NAME" | "FILE_CLASSIFICATION")
428
430
  attr_accessor values: ::Array[::String]
429
431
  SENSITIVE: []
430
432
  end
@@ -613,6 +615,7 @@ module Aws::ApplicationDiscoveryService
613
615
  attr_accessor configuration_id: ::String
614
616
  attr_accessor name: ::String
615
617
  attr_accessor description: ::String
618
+ attr_accessor wave: ::String
616
619
  SENSITIVE: []
617
620
  end
618
621
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-applicationdiscoveryservice
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.80.0
4
+ version: 1.82.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-11-18 00:00:00.000000000 Z
11
+ date: 2025-01-15 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.210.0
22
+ version: 3.216.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.210.0
32
+ version: 3.216.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement