123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- # Schema for the migrate process plugins.
- migrate_plus.process.*:
- type: migrate_process
- label: 'Default process'
- migrate_plus.process.callback:
- type: migrate_process
- label: 'Callback process'
- mapping:
- callback:
- type: string
- label: 'Callback'
- migrate_plus.process.concat:
- type: migrate_process
- label: 'Concat process'
- mapping:
- delimiter:
- type: string
- label: 'Delimiter'
- migrate_plus.process.dedupe_entity:
- type: migrate_process
- label: 'Dedupe Entity process'
- mapping:
- entity_type:
- type: string
- label: 'Entity type'
- field:
- type: string
- label: 'Field name'
- postfix:
- type: string
- label: 'Postfix'
- start:
- type: integer
- label: 'Start'
- length:
- type: integer
- label: 'Length'
- migrate_plus.process.explode:
- type: migrate_process
- label: 'Explode process'
- mapping:
- delimiter:
- type: string
- label: 'Delimiter'
- limit:
- type: integer
- label: 'Limit'
- migrate_plus.process.extract:
- type: migrate_process
- label: 'Extract process'
- mapping:
- default:
- type: string
- label: 'Default value'
- migrate_plus.process.flatten:
- type: migrate_process
- label: 'Flatten process'
- migrate_plus.process.get:
- type: migrate_process
- label: 'Get process'
- mapping:
- source:
- type: string
- label: 'Source key'
- migrate_plus.process.iterator:
- type: migrate_process
- label: 'Iterator process'
- mapping:
- process:
- type: ignore
- label: 'Process'
- key:
- type: string
- label: 'Key'
- migrate_plus.process.machine_name:
- type: migrate_process
- label: 'Machine name process'
- migrate_plus.process.migration:
- type: migrate_process
- label: 'Migration process'
- mapping:
- migration:
- type: sequence
- label: 'Migration'
- source:
- type: sequence
- label: 'Source keys'
- source_ids:
- type: string
- label: 'Source IDs'
- stub_id:
- type: string
- label: 'Stub ID'
- migrate_plus.process.route:
- type: migrate_process
- label: 'Route process'
- migrate_plus.process.skip_on_empty:
- type: migrate_process
- label: 'Skip on Empty'
- migrate_plus.process.skip_row_if_not_set:
- type: migrate_process
- label: 'Skip Row process if not set'
- mapping:
- index:
- type: integer
- label: 'Index'
- migrate_plus.process.static_map:
- type: migrate_process
- label: 'Static Map'
- mapping:
- map:
- type: sequence
- label: 'Map'
- default_value:
- type: string
- label: 'Default value'
- bypass:
- type: boolean
- label: 'Bypass lookup'
- migrate_plus.process.default_value:
- type: migrate_process
- label: 'Default value'
- mapping:
- strict:
- type: boolean
- label: 'Strict type check'
- default_value:
- type: string
- label: 'Default value'
|