aws-sdk-migrationhub 1.1.0 → 1.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-migrationhub.rb +1 -1
- data/lib/aws-sdk-migrationhub/client.rb +29 -15
- data/lib/aws-sdk-migrationhub/types.rb +19 -10
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 18aef216ad9f89a66cfcdf036fd9a7560311e65c
|
4
|
+
data.tar.gz: 17cad25415ccaaafbd86a67ae1c1cb6f31c3eb57
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b01bbea47c5ba8359a5ea6d2ad57ca1f00680c6a41ba38e8ab343f766c55900ef9ebb9aa15fd72fc4ccbfba046b75f8afd6e7fd94fae2e5c0b298b7b4f24b322
|
7
|
+
data.tar.gz: a68564c12d81d6ed7ecd7ca60f716a487965d6f19e99a011643b0db7907044a6321e14f831681b058641ebd6e8decfee85b447729d97d22460be40ecadd06f74
|
data/lib/aws-sdk-migrationhub.rb
CHANGED
@@ -823,9 +823,9 @@ module Aws::MigrationHub
|
|
823
823
|
# address, it will then be required to call it with *both* the IP and
|
824
824
|
# MAC addresses to prevent overiding the MAC address.
|
825
825
|
#
|
826
|
-
# * Note the instructions regarding the special use case of the
|
827
|
-
# `ResourceAttributeList` parameter when specifying any "VM"
|
828
|
-
# value.
|
826
|
+
# * Note the instructions regarding the special use case of the [
|
827
|
+
# `ResourceAttributeList` ][1] parameter when specifying any "VM"
|
828
|
+
# related value.
|
829
829
|
#
|
830
830
|
# <note markdown="1"> Because this is an asynchronous call, it will always return 200,
|
831
831
|
# whether an association occurs or not. To confirm if an association was
|
@@ -833,6 +833,10 @@ module Aws::MigrationHub
|
|
833
833
|
#
|
834
834
|
# </note>
|
835
835
|
#
|
836
|
+
#
|
837
|
+
#
|
838
|
+
# [1]: https://docs.aws.amazon.com/migrationhub/latest/ug/API_PutResourceAttributes.html#migrationhub-PutResourceAttributes-request-ResourceAttributeList
|
839
|
+
#
|
836
840
|
# @option params [required, String] :progress_update_stream
|
837
841
|
# The name of the ProgressUpdateStream.
|
838
842
|
#
|
@@ -844,20 +848,30 @@ module Aws::MigrationHub
|
|
844
848
|
# be used to map the task to a resource in the Application Discovery
|
845
849
|
# Service (ADS)'s repository.
|
846
850
|
#
|
847
|
-
# <note markdown="1">
|
848
|
-
# for the following values: `IPV4_ADDRESS | IPV6_ADDRESS |
|
849
|
-
# FQDN | VM_MANAGER_ID | VM_MANAGED_OBJECT_REFERENCE |
|
850
|
-
# | BIOS_ID | MOTHERBOARD_SERIAL_NUMBER
|
851
|
-
# be a string up to 256 characters.
|
851
|
+
# <note markdown="1"> Takes the object array of `ResourceAttribute` where the `Type` field
|
852
|
+
# is reserved for the following values: `IPV4_ADDRESS | IPV6_ADDRESS |
|
853
|
+
# MAC_ADDRESS | FQDN | VM_MANAGER_ID | VM_MANAGED_OBJECT_REFERENCE |
|
854
|
+
# VM_NAME | VM_PATH | BIOS_ID | MOTHERBOARD_SERIAL_NUMBER` where the
|
855
|
+
# identifying value can be a string up to 256 characters.
|
852
856
|
#
|
853
857
|
# </note>
|
854
858
|
#
|
855
|
-
# If any "VM" related value is
|
856
|
-
#
|
857
|
-
#
|
858
|
-
#
|
859
|
-
#
|
860
|
-
#
|
859
|
+
# * If any "VM" related value is set for a `ResourceAttribute` object,
|
860
|
+
# it is required that `VM_MANAGER_ID`, as a minimum, is always set. If
|
861
|
+
# `VM_MANAGER_ID` is not set, then all "VM" fields will be discarded
|
862
|
+
# and "VM" fields will not be used for matching the migration task
|
863
|
+
# to a server in Application Discovery Service (ADS)'s repository.
|
864
|
+
# See the [Example][1] section below for a use case of specifying
|
865
|
+
# "VM" related values.
|
866
|
+
#
|
867
|
+
# * If a server you are trying to match has multiple IP or MAC
|
868
|
+
# addresses, you should provide as many as you know in separate
|
869
|
+
# type/value pairs passed to the `ResourceAttributeList` parameter to
|
870
|
+
# maximize the chances of matching.
|
871
|
+
#
|
872
|
+
#
|
873
|
+
#
|
874
|
+
# [1]: https://docs.aws.amazon.com/migrationhub/latest/ug/API_PutResourceAttributes.html#API_PutResourceAttributes_Examples
|
861
875
|
#
|
862
876
|
# @option params [Boolean] :dry_run
|
863
877
|
# Optional boolean flag to indicate whether any effect should take
|
@@ -901,7 +915,7 @@ module Aws::MigrationHub
|
|
901
915
|
params: params,
|
902
916
|
config: config)
|
903
917
|
context[:gem_name] = 'aws-sdk-migrationhub'
|
904
|
-
context[:gem_version] = '1.
|
918
|
+
context[:gem_version] = '1.2.0'
|
905
919
|
Seahorse::Client::Request.new(handlers, context)
|
906
920
|
end
|
907
921
|
|
@@ -821,21 +821,30 @@ module Aws::MigrationHub
|
|
821
821
|
# will be used to map the task to a resource in the Application
|
822
822
|
# Discovery Service (ADS)'s repository.
|
823
823
|
#
|
824
|
-
# <note markdown="1">
|
825
|
-
# reserved for the following values: `IPV4_ADDRESS | IPV6_ADDRESS |
|
824
|
+
# <note markdown="1"> Takes the object array of `ResourceAttribute` where the `Type` field
|
825
|
+
# is reserved for the following values: `IPV4_ADDRESS | IPV6_ADDRESS |
|
826
826
|
# MAC_ADDRESS | FQDN | VM_MANAGER_ID | VM_MANAGED_OBJECT_REFERENCE |
|
827
|
-
# VM_NAME | VM_PATH | BIOS_ID | MOTHERBOARD_SERIAL_NUMBER
|
827
|
+
# VM_NAME | VM_PATH | BIOS_ID | MOTHERBOARD_SERIAL_NUMBER` where the
|
828
828
|
# identifying value can be a string up to 256 characters.
|
829
829
|
#
|
830
830
|
# </note>
|
831
831
|
#
|
832
|
-
# If any "VM" related value is
|
833
|
-
#
|
834
|
-
#
|
835
|
-
#
|
836
|
-
#
|
837
|
-
#
|
838
|
-
#
|
832
|
+
# * If any "VM" related value is set for a `ResourceAttribute`
|
833
|
+
# object, it is required that `VM_MANAGER_ID`, as a minimum, is
|
834
|
+
# always set. If `VM_MANAGER_ID` is not set, then all "VM" fields
|
835
|
+
# will be discarded and "VM" fields will not be used for matching
|
836
|
+
# the migration task to a server in Application Discovery Service
|
837
|
+
# (ADS)'s repository. See the [Example][1] section below for a use
|
838
|
+
# case of specifying "VM" related values.
|
839
|
+
#
|
840
|
+
# * If a server you are trying to match has multiple IP or MAC
|
841
|
+
# addresses, you should provide as many as you know in separate
|
842
|
+
# type/value pairs passed to the `ResourceAttributeList` parameter
|
843
|
+
# to maximize the chances of matching.
|
844
|
+
#
|
845
|
+
#
|
846
|
+
#
|
847
|
+
# [1]: https://docs.aws.amazon.com/migrationhub/latest/ug/API_PutResourceAttributes.html#API_PutResourceAttributes_Examples
|
839
848
|
# @return [Array<Types::ResourceAttribute>]
|
840
849
|
#
|
841
850
|
# @!attribute [rw] dry_run
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-migrationhub
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.2.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: 2018-
|
11
|
+
date: 2018-06-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
version: '0'
|
76
76
|
requirements: []
|
77
77
|
rubyforge_project:
|
78
|
-
rubygems_version: 2.5.2.
|
78
|
+
rubygems_version: 2.5.2.3
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: AWS SDK for Ruby - AWS Migration Hub
|