@@ -973,6 +973,151 @@ public function update($projectId, $datasetId, $tableId, Google_Service_Bigquery
973973
974974
975975
976+ class Google_Service_Bigquery_BigtableColumn extends Google_Model
977+ {
978+ protected $ internal_gapi_mappings = array (
979+ );
980+ public $ encoding ;
981+ public $ fieldName ;
982+ public $ onlyReadLatest ;
983+ public $ qualifierEncoded ;
984+ public $ qualifierString ;
985+ public $ type ;
986+
987+
988+ public function setEncoding ($ encoding )
989+ {
990+ $ this ->encoding = $ encoding ;
991+ }
992+ public function getEncoding ()
993+ {
994+ return $ this ->encoding ;
995+ }
996+ public function setFieldName ($ fieldName )
997+ {
998+ $ this ->fieldName = $ fieldName ;
999+ }
1000+ public function getFieldName ()
1001+ {
1002+ return $ this ->fieldName ;
1003+ }
1004+ public function setOnlyReadLatest ($ onlyReadLatest )
1005+ {
1006+ $ this ->onlyReadLatest = $ onlyReadLatest ;
1007+ }
1008+ public function getOnlyReadLatest ()
1009+ {
1010+ return $ this ->onlyReadLatest ;
1011+ }
1012+ public function setQualifierEncoded ($ qualifierEncoded )
1013+ {
1014+ $ this ->qualifierEncoded = $ qualifierEncoded ;
1015+ }
1016+ public function getQualifierEncoded ()
1017+ {
1018+ return $ this ->qualifierEncoded ;
1019+ }
1020+ public function setQualifierString ($ qualifierString )
1021+ {
1022+ $ this ->qualifierString = $ qualifierString ;
1023+ }
1024+ public function getQualifierString ()
1025+ {
1026+ return $ this ->qualifierString ;
1027+ }
1028+ public function setType ($ type )
1029+ {
1030+ $ this ->type = $ type ;
1031+ }
1032+ public function getType ()
1033+ {
1034+ return $ this ->type ;
1035+ }
1036+ }
1037+
1038+ class Google_Service_Bigquery_BigtableColumnFamily extends Google_Collection
1039+ {
1040+ protected $ collection_key = 'columns ' ;
1041+ protected $ internal_gapi_mappings = array (
1042+ );
1043+ protected $ columnsType = 'Google_Service_Bigquery_BigtableColumn ' ;
1044+ protected $ columnsDataType = 'array ' ;
1045+ public $ encoding ;
1046+ public $ familyId ;
1047+ public $ onlyReadLatest ;
1048+ public $ type ;
1049+
1050+
1051+ public function setColumns ($ columns )
1052+ {
1053+ $ this ->columns = $ columns ;
1054+ }
1055+ public function getColumns ()
1056+ {
1057+ return $ this ->columns ;
1058+ }
1059+ public function setEncoding ($ encoding )
1060+ {
1061+ $ this ->encoding = $ encoding ;
1062+ }
1063+ public function getEncoding ()
1064+ {
1065+ return $ this ->encoding ;
1066+ }
1067+ public function setFamilyId ($ familyId )
1068+ {
1069+ $ this ->familyId = $ familyId ;
1070+ }
1071+ public function getFamilyId ()
1072+ {
1073+ return $ this ->familyId ;
1074+ }
1075+ public function setOnlyReadLatest ($ onlyReadLatest )
1076+ {
1077+ $ this ->onlyReadLatest = $ onlyReadLatest ;
1078+ }
1079+ public function getOnlyReadLatest ()
1080+ {
1081+ return $ this ->onlyReadLatest ;
1082+ }
1083+ public function setType ($ type )
1084+ {
1085+ $ this ->type = $ type ;
1086+ }
1087+ public function getType ()
1088+ {
1089+ return $ this ->type ;
1090+ }
1091+ }
1092+
1093+ class Google_Service_Bigquery_BigtableOptions extends Google_Collection
1094+ {
1095+ protected $ collection_key = 'columnFamilies ' ;
1096+ protected $ internal_gapi_mappings = array (
1097+ );
1098+ protected $ columnFamiliesType = 'Google_Service_Bigquery_BigtableColumnFamily ' ;
1099+ protected $ columnFamiliesDataType = 'array ' ;
1100+ public $ ignoreUnspecifiedColumnFamilies ;
1101+
1102+
1103+ public function setColumnFamilies ($ columnFamilies )
1104+ {
1105+ $ this ->columnFamilies = $ columnFamilies ;
1106+ }
1107+ public function getColumnFamilies ()
1108+ {
1109+ return $ this ->columnFamilies ;
1110+ }
1111+ public function setIgnoreUnspecifiedColumnFamilies ($ ignoreUnspecifiedColumnFamilies )
1112+ {
1113+ $ this ->ignoreUnspecifiedColumnFamilies = $ ignoreUnspecifiedColumnFamilies ;
1114+ }
1115+ public function getIgnoreUnspecifiedColumnFamilies ()
1116+ {
1117+ return $ this ->ignoreUnspecifiedColumnFamilies ;
1118+ }
1119+ }
1120+
9761121class Google_Service_Bigquery_CsvOptions extends Google_Model
9771122{
9781123 protected $ internal_gapi_mappings = array (
@@ -1537,6 +1682,9 @@ class Google_Service_Bigquery_ExternalDataConfiguration extends Google_Collectio
15371682 protected $ collection_key = 'sourceUris ' ;
15381683 protected $ internal_gapi_mappings = array (
15391684 );
1685+ public $ autodetect ;
1686+ protected $ bigtableOptionsType = 'Google_Service_Bigquery_BigtableOptions ' ;
1687+ protected $ bigtableOptionsDataType = '' ;
15401688 public $ compression ;
15411689 protected $ csvOptionsType = 'Google_Service_Bigquery_CsvOptions ' ;
15421690 protected $ csvOptionsDataType = '' ;
@@ -1548,6 +1696,22 @@ class Google_Service_Bigquery_ExternalDataConfiguration extends Google_Collectio
15481696 public $ sourceUris ;
15491697
15501698
1699+ public function setAutodetect ($ autodetect )
1700+ {
1701+ $ this ->autodetect = $ autodetect ;
1702+ }
1703+ public function getAutodetect ()
1704+ {
1705+ return $ this ->autodetect ;
1706+ }
1707+ public function setBigtableOptions (Google_Service_Bigquery_BigtableOptions $ bigtableOptions )
1708+ {
1709+ $ this ->bigtableOptions = $ bigtableOptions ;
1710+ }
1711+ public function getBigtableOptions ()
1712+ {
1713+ return $ this ->bigtableOptions ;
1714+ }
15511715 public function setCompression ($ compression )
15521716 {
15531717 $ this ->compression = $ compression ;
0 commit comments