aws-sdk-applicationdiscoveryservice 1.80.0 → 1.81.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: 70ea350ab1fdd61eb68a53b3d1d7e2854630739c4d21dd9f7e8ac3e668a1b546
4
+ data.tar.gz: 5aac43d72fdceb84daf29cbc6f669a03f646980c46d17ce2089836f0c9108aac
5
5
  SHA512:
6
- metadata.gz: e8a947793ce8604c92dd5b298f194d791a688439e3a6b7f315544b9e5875cbd349cc489f65fdc3df9d1cb4ac179c03bd04cbef9010a6d46c3de3bdc20d155252
7
- data.tar.gz: f098759a6511382bcb8726aeae75c876632a3acc99c00dc466efd251e8e6d9384e550a6c75c40c672e928ecad824bfd0176b63a8f4532cd8f261f847d4165750
6
+ metadata.gz: 8c2774197baece7648a40beaa0597fc1eb846654aa78aa5099499837b08fef10c107992934ba40193cfa3fa798610f7a3b3312d135dd45e51a54b859cb324cff
7
+ data.tar.gz: 43a9b2808768e8d19fd3c12f13dcc48c4067a9551d6f8ab2d3a0fb02e29c3787ee8583bab2608a316f2801dac08581a1f929f55dd346113cea0740717ca6fba5
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
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
+
4
9
  1.80.0 (2024-11-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.80.0
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
- # Name of the application to be created.
566
+ # The name of the application to be created.
567
567
  #
568
568
  # @option params [String] :description
569
- # Description of the application to be created.
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.80.0'
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|
@@ -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.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.80.0
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-18 00:00:00.000000000 Z
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