Sha256: 5723fe11a004e991cc8b0a0806e165d4fc3fce8ba0f1e98532b1056b983bfa38

Contents?: true

Size: 496 Bytes

Versions: 14

Compression:

Stored size: 496 Bytes

Contents

bigquery: &bigquery
  json_keyfile: example/your-project-000.json
  dataset: your_dataset_name
  table: your_table_name

actions:
- action: create_dataset
  <<: *bigquery
- action: migrate_table
  <<: *bigquery
  columns:
    - { name: 'timestamp', type: 'TIMESTAMP' }
    - name: 'record'
      type: 'RECORD'
      fields:
        - { name: 'string', type: 'STRING' }
        - { name: 'integer', type: 'INTEGER' }
- action: copy_table
  <<: *bigquery
  destination_table: your_table_name_copy

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
bigquery_migration-0.2.2 example/copy_table.yml
bigquery_migration-0.2.1 example/copy_table.yml
bigquery_migration-0.2.0 example/copy_table.yml
bigquery_migration-0.2.0.pre2 example/copy_table.yml
bigquery_migration-0.2.0.pre1 example/copy_table.yml
bigquery_migration-0.1.7 example/copy_table.yml
bigquery_migration-0.1.6 example/copy_table.yml
bigquery_migration-0.1.5 example/copy_table.yml
bigquery_migration-0.1.4 example/copy_table.yml
bigquery_migration-0.1.3 example/copy_table.yml
bigquery_migration-0.1.2 example/copy_table.yml
bigquery_migration-0.1.1 example/copy_table.yml
bigquery_migration-0.1.0 example/copy_table.yml
bigquery_migration-0.1.0.pre6 example/copy_table.yml