aws-sdk-applicationdiscoveryservice 1.79.0 → 1.81.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-applicationdiscoveryservice/client.rb +16 -6
- data/lib/aws-sdk-applicationdiscoveryservice/client_api.rb +6 -0
- data/lib/aws-sdk-applicationdiscoveryservice/types.rb +20 -6
- data/lib/aws-sdk-applicationdiscoveryservice.rb +1 -1
- data/sig/client.rbs +5 -3
- data/sig/types.rbs +5 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 70ea350ab1fdd61eb68a53b3d1d7e2854630739c4d21dd9f7e8ac3e668a1b546
|
4
|
+
data.tar.gz: 5aac43d72fdceb84daf29cbc6f669a03f646980c46d17ce2089836f0c9108aac
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8c2774197baece7648a40beaa0597fc1eb846654aa78aa5099499837b08fef10c107992934ba40193cfa3fa798610f7a3b3312d135dd45e51a54b859cb324cff
|
7
|
+
data.tar.gz: 43a9b2808768e8d19fd3c12f13dcc48c4067a9551d6f8ab2d3a0fb02e29c3787ee8583bab2608a316f2801dac08581a1f929f55dd346113cea0740717ca6fba5
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.81.0 (2024-11-20)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Add support to import data from commercially available discovery tools without file manipulation.
|
8
|
+
|
9
|
+
1.80.0 (2024-11-18)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.79.0 (2024-11-06)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.81.0
|
@@ -563,10 +563,13 @@ module Aws::ApplicationDiscoveryService
|
|
563
563
|
# Creates an application with the given name and description.
|
564
564
|
#
|
565
565
|
# @option params [required, String] :name
|
566
|
-
#
|
566
|
+
# The name of the application to be created.
|
567
567
|
#
|
568
568
|
# @option params [String] :description
|
569
|
-
#
|
569
|
+
# The description of the application to be created.
|
570
|
+
#
|
571
|
+
# @option params [String] :wave
|
572
|
+
# The name of the migration wave of the application to be created.
|
570
573
|
#
|
571
574
|
# @return [Types::CreateApplicationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
572
575
|
#
|
@@ -577,6 +580,7 @@ module Aws::ApplicationDiscoveryService
|
|
577
580
|
# resp = client.create_application({
|
578
581
|
# name: "ApplicationName", # required
|
579
582
|
# description: "ApplicationDescription",
|
583
|
+
# wave: "ApplicationWave",
|
580
584
|
# })
|
581
585
|
#
|
582
586
|
# @example Response structure
|
@@ -1050,7 +1054,7 @@ module Aws::ApplicationDiscoveryService
|
|
1050
1054
|
# resp = client.describe_import_tasks({
|
1051
1055
|
# filters: [
|
1052
1056
|
# {
|
1053
|
-
# name: "IMPORT_TASK_ID", # accepts IMPORT_TASK_ID, STATUS, NAME
|
1057
|
+
# name: "IMPORT_TASK_ID", # accepts IMPORT_TASK_ID, STATUS, NAME, FILE_CLASSIFICATION
|
1054
1058
|
# values: ["ImportTaskFilterValue"],
|
1055
1059
|
# },
|
1056
1060
|
# ],
|
@@ -1066,10 +1070,11 @@ module Aws::ApplicationDiscoveryService
|
|
1066
1070
|
# resp.tasks[0].client_request_token #=> String
|
1067
1071
|
# resp.tasks[0].name #=> String
|
1068
1072
|
# 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"
|
1073
|
+
# 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
1074
|
# resp.tasks[0].import_request_time #=> Time
|
1071
1075
|
# resp.tasks[0].import_completion_time #=> Time
|
1072
1076
|
# resp.tasks[0].import_deleted_time #=> Time
|
1077
|
+
# resp.tasks[0].file_classification #=> String, one of "MODELIZEIT_EXPORT", "RVTOOLS_EXPORT", "VMWARE_NSX_EXPORT", "IMPORT_TEMPLATE"
|
1073
1078
|
# resp.tasks[0].server_import_success #=> Integer
|
1074
1079
|
# resp.tasks[0].server_import_failure #=> Integer
|
1075
1080
|
# resp.tasks[0].application_import_success #=> Integer
|
@@ -1691,10 +1696,11 @@ module Aws::ApplicationDiscoveryService
|
|
1691
1696
|
# resp.task.client_request_token #=> String
|
1692
1697
|
# resp.task.name #=> String
|
1693
1698
|
# 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"
|
1699
|
+
# 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
1700
|
# resp.task.import_request_time #=> Time
|
1696
1701
|
# resp.task.import_completion_time #=> Time
|
1697
1702
|
# resp.task.import_deleted_time #=> Time
|
1703
|
+
# resp.task.file_classification #=> String, one of "MODELIZEIT_EXPORT", "RVTOOLS_EXPORT", "VMWARE_NSX_EXPORT", "IMPORT_TEMPLATE"
|
1698
1704
|
# resp.task.server_import_success #=> Integer
|
1699
1705
|
# resp.task.server_import_failure #=> Integer
|
1700
1706
|
# resp.task.application_import_success #=> Integer
|
@@ -1777,6 +1783,9 @@ module Aws::ApplicationDiscoveryService
|
|
1777
1783
|
# @option params [String] :description
|
1778
1784
|
# New description of the application to be updated.
|
1779
1785
|
#
|
1786
|
+
# @option params [String] :wave
|
1787
|
+
# The new migration wave of the application that you want to update.
|
1788
|
+
#
|
1780
1789
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1781
1790
|
#
|
1782
1791
|
# @example Request syntax with placeholder values
|
@@ -1785,6 +1794,7 @@ module Aws::ApplicationDiscoveryService
|
|
1785
1794
|
# configuration_id: "ApplicationId", # required
|
1786
1795
|
# name: "ApplicationName",
|
1787
1796
|
# description: "ApplicationDescription",
|
1797
|
+
# wave: "ApplicationWave",
|
1788
1798
|
# })
|
1789
1799
|
#
|
1790
1800
|
# @overload update_application(params = {})
|
@@ -1812,7 +1822,7 @@ module Aws::ApplicationDiscoveryService
|
|
1812
1822
|
tracer: tracer
|
1813
1823
|
)
|
1814
1824
|
context[:gem_name] = 'aws-sdk-applicationdiscoveryservice'
|
1815
|
-
context[:gem_version] = '1.
|
1825
|
+
context[:gem_version] = '1.81.0'
|
1816
1826
|
Seahorse::Client::Request.new(handlers, context)
|
1817
1827
|
end
|
1818
1828
|
|
@@ -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|
|
@@ -443,7 +443,6 @@ module Aws::ApplicationDiscoveryService
|
|
443
443
|
#
|
444
444
|
# 2. AWSApplicationDiscoveryServiceFirehose - Grant describe
|
445
445
|
# permissions for all tables in the database.
|
446
|
-
#
|
447
446
|
# * S3\_BUCKET\_LIMIT\_FAILURE - You reached the limit for Amazon S3
|
448
447
|
# buckets. Reduce the number of S3 buckets or request a limit
|
449
448
|
# increase and try again. For more information, see [Bucket
|
@@ -509,22 +508,27 @@ module Aws::ApplicationDiscoveryService
|
|
509
508
|
end
|
510
509
|
|
511
510
|
# @!attribute [rw] name
|
512
|
-
#
|
511
|
+
# The name of the application to be created.
|
513
512
|
# @return [String]
|
514
513
|
#
|
515
514
|
# @!attribute [rw] description
|
516
|
-
#
|
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.
|
517
520
|
# @return [String]
|
518
521
|
#
|
519
522
|
class CreateApplicationRequest < Struct.new(
|
520
523
|
:name,
|
521
|
-
:description
|
524
|
+
:description,
|
525
|
+
:wave)
|
522
526
|
SENSITIVE = []
|
523
527
|
include Aws::Structure
|
524
528
|
end
|
525
529
|
|
526
530
|
# @!attribute [rw] configuration_id
|
527
|
-
#
|
531
|
+
# The configuration ID of an application to be created.
|
528
532
|
# @return [String]
|
529
533
|
#
|
530
534
|
class CreateApplicationResponse < Struct.new(
|
@@ -1485,6 +1489,10 @@ module Aws::ApplicationDiscoveryService
|
|
1485
1489
|
# Unix time stamp format.
|
1486
1490
|
# @return [Time]
|
1487
1491
|
#
|
1492
|
+
# @!attribute [rw] file_classification
|
1493
|
+
# The type of file detected by the import task.
|
1494
|
+
# @return [String]
|
1495
|
+
#
|
1488
1496
|
# @!attribute [rw] server_import_success
|
1489
1497
|
# The total number of server records in the import file that were
|
1490
1498
|
# successfully imported.
|
@@ -1532,6 +1540,7 @@ module Aws::ApplicationDiscoveryService
|
|
1532
1540
|
:import_request_time,
|
1533
1541
|
:import_completion_time,
|
1534
1542
|
:import_deleted_time,
|
1543
|
+
:file_classification,
|
1535
1544
|
:server_import_success,
|
1536
1545
|
:server_import_failure,
|
1537
1546
|
:application_import_success,
|
@@ -2159,10 +2168,15 @@ module Aws::ApplicationDiscoveryService
|
|
2159
2168
|
# New description of the application to be updated.
|
2160
2169
|
# @return [String]
|
2161
2170
|
#
|
2171
|
+
# @!attribute [rw] wave
|
2172
|
+
# The new migration wave of the application that you want to update.
|
2173
|
+
# @return [String]
|
2174
|
+
#
|
2162
2175
|
class UpdateApplicationRequest < Struct.new(
|
2163
2176
|
:configuration_id,
|
2164
2177
|
:name,
|
2165
|
-
:description
|
2178
|
+
:description,
|
2179
|
+
:wave)
|
2166
2180
|
SENSITIVE = []
|
2167
2181
|
include Aws::Structure
|
2168
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.
|
57
|
+
GEM_VERSION = '1.81.0'
|
58
58
|
|
59
59
|
end
|
60
60
|
|
data/sig/client.rbs
CHANGED
@@ -119,7 +119,8 @@ module Aws
|
|
119
119
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApplicationDiscoveryService/Client.html#create_application-instance_method
|
120
120
|
def create_application: (
|
121
121
|
name: ::String,
|
122
|
-
?description: ::String
|
122
|
+
?description: ::String,
|
123
|
+
?wave: ::String
|
123
124
|
) -> _CreateApplicationResponseSuccess
|
124
125
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateApplicationResponseSuccess
|
125
126
|
|
@@ -257,7 +258,7 @@ module Aws
|
|
257
258
|
def describe_import_tasks: (
|
258
259
|
?filters: Array[
|
259
260
|
{
|
260
|
-
name: ("IMPORT_TASK_ID" | "STATUS" | "NAME")?,
|
261
|
+
name: ("IMPORT_TASK_ID" | "STATUS" | "NAME" | "FILE_CLASSIFICATION")?,
|
261
262
|
values: Array[::String]?
|
262
263
|
},
|
263
264
|
],
|
@@ -474,7 +475,8 @@ module Aws
|
|
474
475
|
def update_application: (
|
475
476
|
configuration_id: ::String,
|
476
477
|
?name: ::String,
|
477
|
-
?description: ::String
|
478
|
+
?description: ::String,
|
479
|
+
?wave: ::String
|
478
480
|
) -> _UpdateApplicationResponseSuccess
|
479
481
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateApplicationResponseSuccess
|
480
482
|
end
|
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.
|
4
|
+
version: 1.81.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-
|
11
|
+
date: 2024-11-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|