You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description: `Please see sourceFormat under ExternalDataConfiguration in Bigquery's public API documentation (https://cloud.google.com/bigquery/docs/reference/rest/v2/tables#externaldataconfiguration) for supported formats. To use "GOOGLE_SHEETS" the scopes must include "googleapis.com/auth/drive.readonly".`,
518
+
Description: `Please see sourceFormat under ExternalDataConfiguration in Bigquery's public API documentation (https://cloud.google.com/bigquery/docs/reference/rest/v2/tables#externaldataconfiguration) for supported formats. To use "GOOGLE_SHEETS" the scopes must include "googleapis.com/auth/drive.readonly".`,
Description: `Load option to be used together with sourceFormat newline-delimited JSON to indicate that a variant of JSON is being loaded. To load newline-delimited GeoJSON, specify GEOJSON (and sourceFormat must be set to NEWLINE_DELIMITED_JSON).`,
643
643
},
644
644
645
+
"bigtable_options": {
646
+
Type: schema.TypeList,
647
+
Optional: true,
648
+
MaxItems: 1,
649
+
Description: `Additional options if sourceFormat is set to BIGTABLE.`,
650
+
Elem: &schema.Resource{
651
+
Schema: map[string]*schema.Schema{
652
+
"column_family": {
653
+
Type: schema.TypeList,
654
+
Optional: true,
655
+
Description: `A list of column families to expose in the table schema along with their types. This list restricts the column families that can be referenced in queries and specifies their value types. You can use this list to do type conversions - see the 'type' field for more details. If you leave this list empty, all column families are present in the table schema and their values are read as BYTES. During a query only the column families referenced in that query are read from Bigtable.`,
656
+
Elem: &schema.Resource{
657
+
Schema: map[string]*schema.Schema{
658
+
"column": {
659
+
Type: schema.TypeList,
660
+
Optional: true,
661
+
Description: `A List of columns that should be exposed as individual fields as opposed to a list of (column name, value) pairs. All columns whose qualifier matches a qualifier in this list can be accessed as Other columns can be accessed as a list through column field`,
662
+
Elem: &schema.Resource{
663
+
Schema: map[string]*schema.Schema{
664
+
"qualifier_encoded": {
665
+
Type: schema.TypeString,
666
+
Optional: true,
667
+
Description: `Qualifier of the column. Columns in the parent column family that has this exact qualifier are exposed as . field. If the qualifier is valid UTF-8 string, it can be specified in the qualifierString field. Otherwise, a base-64 encoded value must be set to qualifierEncoded. The column field name is the same as the column qualifier. However, if the qualifier is not a valid BigQuery field identifier i.e. does not match [a-zA-Z][a-zA-Z0-9_]*, a valid identifier must be provided as fieldName.`,
668
+
},
669
+
"qualifier_string": {
670
+
Type: schema.TypeString,
671
+
Optional: true,
672
+
Description: `Qualifier string.`,
673
+
},
674
+
"field_name": {
675
+
Type: schema.TypeString,
676
+
Optional: true,
677
+
Description: `If the qualifier is not a valid BigQuery field identifier i.e. does not match [a-zA-Z][a-zA-Z0-9_]*, a valid identifier must be provided as the column field name and is used as field name in queries.`,
678
+
},
679
+
"type": {
680
+
Type: schema.TypeString,
681
+
Optional: true,
682
+
Description: `The type to convert the value in cells of this column. The values are expected to be encoded using HBase Bytes.toBytes function when using the BINARY encoding value. Following BigQuery types are allowed (case-sensitive): "BYTES", "STRING", "INTEGER", "FLOAT", "BOOLEAN", "JSON", Default type is "BYTES". 'type' can also be set at the column family level. However, the setting at this level takes precedence if 'type' is set at both levels.`,
683
+
},
684
+
"encoding": {
685
+
Type: schema.TypeString,
686
+
Optional: true,
687
+
Description: `The encoding of the values when the type is not STRING. Acceptable encoding values are: TEXT - indicates values are alphanumeric text strings. BINARY - indicates values are encoded using HBase Bytes.toBytes family of functions. 'encoding' can also be set at the column family level. However, the setting at this level takes precedence if 'encoding' is set at both levels.`,
688
+
},
689
+
"only_read_latest": {
690
+
Type: schema.TypeBool,
691
+
Optional: true,
692
+
Description: `If this is set, only the latest version of value in this column are exposed. 'onlyReadLatest' can also be set at the column family level. However, the setting at this level takes precedence if 'onlyReadLatest' is set at both levels.`,
693
+
},
694
+
},
695
+
},
696
+
},
697
+
"family_id": {
698
+
Type: schema.TypeString,
699
+
Optional: true,
700
+
Description: `Identifier of the column family.`,
701
+
},
702
+
"type": {
703
+
Type: schema.TypeString,
704
+
Optional: true,
705
+
Description: `The type to convert the value in cells of this column family. The values are expected to be encoded using HBase Bytes.toBytes function when using the BINARY encoding value. Following BigQuery types are allowed (case-sensitive): "BYTES", "STRING", "INTEGER", "FLOAT", "BOOLEAN", "JSON". Default type is BYTES. This can be overridden for a specific column by listing that column in 'columns' and specifying a type for it.`,
706
+
},
707
+
"encoding": {
708
+
Type: schema.TypeString,
709
+
Optional: true,
710
+
Description: `The encoding of the values when the type is not STRING. Acceptable encoding values are: TEXT - indicates values are alphanumeric text strings. BINARY - indicates values are encoded using HBase Bytes.toBytes family of functions. This can be overridden for a specific column by listing that column in 'columns' and specifying an encoding for it.`,
711
+
},
712
+
"only_read_latest": {
713
+
Type: schema.TypeBool,
714
+
Optional: true,
715
+
Description: `If this is set only the latest version of value are exposed for all columns in this column family. This can be overridden for a specific column by listing that column in 'columns' and specifying a different setting for that column.`,
716
+
},
717
+
},
718
+
},
719
+
},
720
+
"ignore_unspecified_column_families": {
721
+
Type: schema.TypeBool,
722
+
Optional: true,
723
+
Description: `If field is true, then the column families that are not specified in columnFamilies list are not exposed in the table schema. Otherwise, they are read with BYTES type values. The default value is false.`,
724
+
},
725
+
"read_rowkey_as_string": {
726
+
Type: schema.TypeBool,
727
+
Optional: true,
728
+
Description: `If field is true, then the rowkey column families will be read and converted to string. Otherwise they are read with BYTES type values and users need to manually cast them with CAST if necessary. The default value is false.`,
729
+
},
730
+
"output_column_families_as_json": {
731
+
Type: schema.TypeBool,
732
+
Optional: true,
733
+
Description: `If field is true, then each column family will be read as a single JSON column. Otherwise they are read as a repeated cell structure containing timestamp/value tuples. The default value is false.`,
734
+
},
735
+
},
736
+
},
737
+
},
738
+
645
739
"parquet_options": {
646
740
Type: schema.TypeList,
647
741
Optional: true,
648
742
MaxItems: 1,
649
-
Description: `Additional properties to set if sourceFormat is set to PARQUET."`,
743
+
Description: `Additional properties to set if sourceFormat is set to PARQUET.`,
Description: `Range of a sheet to query from. Only used when non-empty. At least one of range or skip_leading_rows must be set. Typical format: "sheet_name!top_left_cell_id:bottom_right_cell_id" For example: "sheet1!A1:B20"`,
772
+
Description: `Range of a sheet to query from. Only used when non-empty. At least one of range or skip_leading_rows must be set. Typical format: "sheet_name!top_left_cell_id:bottom_right_cell_id" For example: "sheet1!A1:B20`,
0 commit comments