{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-migration-hub/refs/heads/main/json-schema/migration-hub-api-put-resource-attributes-request-schema.json", "title": "PutResourceAttributesRequest", "description": "PutResourceAttributesRequest schema from Amazon Migration Hub API", "type": "object", "properties": { "ProgressUpdateStream": { "allOf": [ { "$ref": "#/components/schemas/ProgressUpdateStream" }, { "description": "The name of the ProgressUpdateStream. " } ] }, "MigrationTaskName": { "allOf": [ { "$ref": "#/components/schemas/MigrationTaskName" }, { "description": "Unique identifier that references the migration task. Do not store personal data in this field. " } ] }, "ResourceAttributeList": { "allOf": [ { "$ref": "#/components/schemas/ResourceAttributeList" }, { "description": "

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 ResourceAttribute where the Type field is reserved for the following values: IPV4_ADDRESS | IPV6_ADDRESS | MAC_ADDRESS | FQDN | VM_MANAGER_ID | VM_MANAGED_OBJECT_REFERENCE | VM_NAME | VM_PATH | BIOS_ID | MOTHERBOARD_SERIAL_NUMBER where the identifying value can be a string up to 256 characters.

" } ] }, "DryRun": { "allOf": [ { "$ref": "#/components/schemas/DryRun" }, { "description": "Optional boolean flag to indicate whether any effect should take place. Used to test if the caller has permission to make the call." } ] } }, "required": [ "ProgressUpdateStream", "MigrationTaskName", "ResourceAttributeList" ] }