Skip to content

Commit

Permalink
Regenerating gogol-bigquery with updated generator configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
brendanhay committed Feb 12, 2017
1 parent 83f0555 commit 0f8c042
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions gogol-bigquery/gen/Network/Google/BigQuery/Types/Product.hs
Original file line number Diff line number Diff line change
Expand Up @@ -2367,7 +2367,7 @@ data JobConfigurationLoad = JobConfigurationLoad'
, _jclAllowQuotedNewlines :: !(Maybe Bool)
, _jclSourceFormat :: !(Maybe Text)
, _jclSchema :: !(Maybe TableSchema)
, _jclQuote :: !Text
, _jclQuote :: !(Maybe Text)
, _jclMaxBadRecords :: !(Maybe (Textual Int32))
, _jclAutodetect :: !(Maybe Bool)
, _jclSourceURIs :: !(Maybe [Text])
Expand Down Expand Up @@ -2436,7 +2436,7 @@ jobConfigurationLoad =
, _jclAllowQuotedNewlines = Nothing
, _jclSourceFormat = Nothing
, _jclSchema = Nothing
, _jclQuote = "\""
, _jclQuote = Nothing
, _jclMaxBadRecords = Nothing
, _jclAutodetect = Nothing
, _jclSourceURIs = Nothing
Expand Down Expand Up @@ -2580,7 +2580,7 @@ jclSchema
-- not contain quoted sections, set the property value to an empty string.
-- If your data contains quoted newline characters, you must also set the
-- allowQuotedNewlines property to true.
jclQuote :: Lens' JobConfigurationLoad Text
jclQuote :: Lens' JobConfigurationLoad (Maybe Text)
jclQuote = lens _jclQuote (\ s a -> s{_jclQuote = a})

-- | [Optional] The maximum number of bad records that BigQuery can ignore
Expand Down Expand Up @@ -2660,7 +2660,7 @@ instance FromJSON JobConfigurationLoad where
<*> (o .:? "allowQuotedNewlines")
<*> (o .:? "sourceFormat")
<*> (o .:? "schema")
<*> (o .:? "quote" .!= "\"")
<*> (o .:? "quote")
<*> (o .:? "maxBadRecords")
<*> (o .:? "autodetect")
<*> (o .:? "sourceUris" .!= mempty)
Expand Down Expand Up @@ -2688,7 +2688,7 @@ instance ToJSON JobConfigurationLoad where
_jclAllowQuotedNewlines,
("sourceFormat" .=) <$> _jclSourceFormat,
("schema" .=) <$> _jclSchema,
Just ("quote" .= _jclQuote),
("quote" .=) <$> _jclQuote,
("maxBadRecords" .=) <$> _jclMaxBadRecords,
("autodetect" .=) <$> _jclAutodetect,
("sourceUris" .=) <$> _jclSourceURIs,
Expand Down

0 comments on commit 0f8c042

Please sign in to comment.