PNG  IHDR;IDATxܻn0K )(pA 7LeG{ §㻢|ذaÆ 6lذaÆ 6lذaÆ 6lom$^yذag5bÆ 6lذaÆ 6lذa{ 6lذaÆ `}HFkm,mӪôô! x|'ܢ˟;E:9&ᶒ}{v]n&6 h_tڠ͵-ҫZ;Z$.Pkž)!o>}leQfJTu іچ\X=8Rن4`Vwl>nG^is"ms$ui?wbs[m6K4O.4%/bC%t Mז -lG6mrz2s%9s@-k9=)kB5\+͂Zsٲ Rn~GRC wIcIn7jJhۛNCS|j08yiHKֶۛkɈ+;SzL/F*\Ԕ#"5m2[S=gnaPeғL lذaÆ 6l^ḵaÆ 6lذaÆ 6lذa; _ذaÆ 6lذaÆ 6lذaÆ RIENDB` package Paws::MigrationHub::PutResourceAttributes; use Moose; has DryRun => (is => 'ro', isa => 'Bool'); has MigrationTaskName => (is => 'ro', isa => 'Str', required => 1); has ProgressUpdateStream => (is => 'ro', isa => 'Str', required => 1); has ResourceAttributeList => (is => 'ro', isa => 'ArrayRef[Paws::MigrationHub::ResourceAttribute]', required => 1); use MooseX::ClassAttribute; class_has _api_call => (isa => 'Str', is => 'ro', default => 'PutResourceAttributes'); class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::MigrationHub::PutResourceAttributesResult'); class_has _result_key => (isa => 'Str', is => 'ro'); 1; ### main pod documentation begin ### =head1 NAME Paws::MigrationHub::PutResourceAttributes - Arguments for method PutResourceAttributes on L =head1 DESCRIPTION This class represents the parameters used for calling the method PutResourceAttributes on the L service. Use the attributes of this class as arguments to method PutResourceAttributes. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to PutResourceAttributes. =head1 SYNOPSIS my $mgh = Paws->service('MigrationHub'); my $PutResourceAttributesResult = $mgh->PutResourceAttributes( MigrationTaskName => 'MyMigrationTaskName', ProgressUpdateStream => 'MyProgressUpdateStream', ResourceAttributeList => [ { Type => 'IPV4_ADDRESS' , # values: IPV4_ADDRESS, IPV6_ADDRESS, MAC_ADDRESS, FQDN, VM_MANAGER_ID, VM_MANAGED_OBJECT_REFERENCE, VM_NAME, VM_PATH, BIOS_ID, MOTHERBOARD_SERIAL_NUMBER Value => 'MyResourceAttributeValue', # min: 1, max: 256 }, ... ], DryRun => 1, # OPTIONAL ); Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. For the AWS API documentation, see L =head1 ATTRIBUTES =head2 DryRun => Bool Optional boolean flag to indicate whether any effect should take place. Used to test if the caller has permission to make the call. =head2 B MigrationTaskName => Str Unique identifier that references the migration task. I =head2 B ProgressUpdateStream => Str The name of the ProgressUpdateStream. =head2 B ResourceAttributeList => ArrayRef[L] Information about the resource that is being migrated. This data will be used to map the task to a resource in the Application Discovery Service repository. Takes the object array of C where the C field is reserved for the following values: C where the identifying value can be a string up to 256 characters. =over =item * If any "VM" related value is set for a C object, it is required that C, as a minimum, is always set. If C is not set, then all "VM" fields will be discarded and "VM" fields will not be used for matching the migration task to a server in Application Discovery Service repository. See the Example (https://docs.aws.amazon.com/migrationhub/latest/ug/API_PutResourceAttributes.html#API_PutResourceAttributes_Examples) section below for a use case of specifying "VM" related values. =item * If a server you are trying to match has multiple IP or MAC addresses, you should provide as many as you know in separate type/value pairs passed to the C parameter to maximize the chances of matching. =back =head1 SEE ALSO This class forms part of L, documenting arguments for method PutResourceAttributes in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut