packages feed

gogol-clouderrorreporting 0.4.0 → 0.5.0

raw patch · 10 files changed

+148/−87 lines, 10 filesdep ~gogol-corePVP ok

version bump matches the API change (PVP)

Dependency ranges changed: gogol-core

API changes (from Hackage documentation)

Files

README.md view
@@ -8,7 +8,7 @@  ## Version -`0.3.0`+`0.5.0`   ## Description
gen/Network/Google/CloudErrorReporting/Types.hs view
@@ -147,4 +147,4 @@  -- | View and manage your data across Google Cloud Platform services cloudPlatformScope :: Proxy '["https://www.googleapis.com/auth/cloud-platform"]-cloudPlatformScope = Proxy;+cloudPlatformScope = Proxy
gen/Network/Google/CloudErrorReporting/Types/Product.hs view
@@ -23,13 +23,16 @@ -- | An error event which is returned by the Error Reporting system. -- -- /See:/ 'errorEvent' smart constructor.-data ErrorEvent = ErrorEvent'+data ErrorEvent =+  ErrorEvent'     { _eeContext        :: !(Maybe ErrorContext)     , _eeEventTime      :: !(Maybe DateTime')     , _eeServiceContext :: !(Maybe ServiceContext)     , _eeMessage        :: !(Maybe Text)-    } deriving (Eq,Show,Data,Typeable,Generic)+    }+  deriving (Eq, Show, Data, Typeable, Generic) + -- | Creates a value of 'ErrorEvent' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired:@@ -44,13 +47,14 @@ errorEvent     :: ErrorEvent errorEvent =-    ErrorEvent'+  ErrorEvent'     { _eeContext = Nothing     , _eeEventTime = Nothing     , _eeServiceContext = Nothing     , _eeMessage = Nothing     } + -- | Data about the context in which the error occurred. eeContext :: Lens' ErrorEvent (Maybe ErrorContext) eeContext@@ -99,13 +103,16 @@ -- logs. -- -- /See:/ 'errorContext' smart constructor.-data ErrorContext = ErrorContext'+data ErrorContext =+  ErrorContext'     { _ecHTTPRequest      :: !(Maybe HTTPRequestContext)     , _ecUser             :: !(Maybe Text)     , _ecSourceReferences :: !(Maybe [SourceReference])     , _ecReportLocation   :: !(Maybe SourceLocation)-    } deriving (Eq,Show,Data,Typeable,Generic)+    }+  deriving (Eq, Show, Data, Typeable, Generic) + -- | Creates a value of 'ErrorContext' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired:@@ -120,13 +127,14 @@ errorContext     :: ErrorContext errorContext =-    ErrorContext'+  ErrorContext'     { _ecHTTPRequest = Nothing     , _ecUser = Nothing     , _ecSourceReferences = Nothing     , _ecReportLocation = Nothing     } + -- | The HTTP request which was processed when the error was triggered. ecHTTPRequest :: Lens' ErrorContext (Maybe HTTPRequestContext) ecHTTPRequest@@ -181,12 +189,15 @@ -- | Description of a group of similar error events. -- -- /See:/ 'errorGroup' smart constructor.-data ErrorGroup = ErrorGroup'+data ErrorGroup =+  ErrorGroup'     { _egTrackingIssues :: !(Maybe [TrackingIssue])     , _egName           :: !(Maybe Text)     , _egGroupId        :: !(Maybe Text)-    } deriving (Eq,Show,Data,Typeable,Generic)+    }+  deriving (Eq, Show, Data, Typeable, Generic) + -- | Creates a value of 'ErrorGroup' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired:@@ -199,12 +210,10 @@ errorGroup     :: ErrorGroup errorGroup =-    ErrorGroup'-    { _egTrackingIssues = Nothing-    , _egName = Nothing-    , _egGroupId = Nothing-    }+  ErrorGroup'+    {_egTrackingIssues = Nothing, _egName = Nothing, _egGroupId = Nothing} + -- | Associated tracking issues. egTrackingIssues :: Lens' ErrorGroup [TrackingIssue] egTrackingIssues@@ -245,15 +254,17 @@ -- -- /See:/ 'deleteEventsResponse' smart constructor. data DeleteEventsResponse =-    DeleteEventsResponse'-    deriving (Eq,Show,Data,Typeable,Generic)+  DeleteEventsResponse'+  deriving (Eq, Show, Data, Typeable, Generic) + -- | Creates a value of 'DeleteEventsResponse' with the minimum fields required to make a request. -- deleteEventsResponse     :: DeleteEventsResponse deleteEventsResponse = DeleteEventsResponse' + instance FromJSON DeleteEventsResponse where         parseJSON           = withObject "DeleteEventsResponse"@@ -265,13 +276,16 @@ -- | An error event which is reported to the Error Reporting system. -- -- /See:/ 'reportedErrorEvent' smart constructor.-data ReportedErrorEvent = ReportedErrorEvent'+data ReportedErrorEvent =+  ReportedErrorEvent'     { _reeContext        :: !(Maybe ErrorContext)     , _reeEventTime      :: !(Maybe DateTime')     , _reeServiceContext :: !(Maybe ServiceContext)     , _reeMessage        :: !(Maybe Text)-    } deriving (Eq,Show,Data,Typeable,Generic)+    }+  deriving (Eq, Show, Data, Typeable, Generic) + -- | Creates a value of 'ReportedErrorEvent' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired:@@ -286,13 +300,14 @@ reportedErrorEvent     :: ReportedErrorEvent reportedErrorEvent =-    ReportedErrorEvent'+  ReportedErrorEvent'     { _reeContext = Nothing     , _reeEventTime = Nothing     , _reeServiceContext = Nothing     , _reeMessage = Nothing     } + -- | [Optional] A description of the context in which the error occurred. reeContext :: Lens' ReportedErrorEvent (Maybe ErrorContext) reeContext@@ -358,15 +373,18 @@ -- report has been generated automatically from Google App Engine logs. -- -- /See:/ 'hTTPRequestContext' smart constructor.-data HTTPRequestContext = HTTPRequestContext'+data HTTPRequestContext =+  HTTPRequestContext'     { _httprcRemoteIP           :: !(Maybe Text)     , _httprcURL                :: !(Maybe Text)     , _httprcReferrer           :: !(Maybe Text)     , _httprcMethod             :: !(Maybe Text)     , _httprcResponseStatusCode :: !(Maybe (Textual Int32))     , _httprcUserAgent          :: !(Maybe Text)-    } deriving (Eq,Show,Data,Typeable,Generic)+    }+  deriving (Eq, Show, Data, Typeable, Generic) + -- | Creates a value of 'HTTPRequestContext' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired:@@ -385,7 +403,7 @@ hTTPRequestContext     :: HTTPRequestContext hTTPRequestContext =-    HTTPRequestContext'+  HTTPRequestContext'     { _httprcRemoteIP = Nothing     , _httprcURL = Nothing     , _httprcReferrer = Nothing@@ -394,6 +412,7 @@     , _httprcUserAgent = Nothing     } + -- | The IP address from which the request originated. This can be IPv4, -- IPv6, or a token which is derived from the IP address, depending on the -- data that has been provided in the error report.@@ -457,10 +476,13 @@ -- | Information related to tracking the progress on resolving the error. -- -- /See:/ 'trackingIssue' smart constructor.-newtype TrackingIssue = TrackingIssue'+newtype TrackingIssue =+  TrackingIssue'     { _tiURL :: Maybe Text-    } deriving (Eq,Show,Data,Typeable,Generic)+    }+  deriving (Eq, Show, Data, Typeable, Generic) + -- | Creates a value of 'TrackingIssue' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired:@@ -468,11 +490,9 @@ -- * 'tiURL' trackingIssue     :: TrackingIssue-trackingIssue =-    TrackingIssue'-    { _tiURL = Nothing-    }+trackingIssue = TrackingIssue' {_tiURL = Nothing} + -- | A URL pointing to a related entry in an issue tracking system. Example: -- https:\/\/github.com\/user\/project\/issues\/4 tiURL :: Lens' TrackingIssue (Maybe Text)@@ -490,12 +510,15 @@ -- | Contains a set of requested error events. -- -- /See:/ 'listEventsResponse' smart constructor.-data ListEventsResponse = ListEventsResponse'+data ListEventsResponse =+  ListEventsResponse'     { _lerNextPageToken  :: !(Maybe Text)     , _lerTimeRangeBegin :: !(Maybe DateTime')     , _lerErrorEvents    :: !(Maybe [ErrorEvent])-    } deriving (Eq,Show,Data,Typeable,Generic)+    }+  deriving (Eq, Show, Data, Typeable, Generic) + -- | Creates a value of 'ListEventsResponse' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired:@@ -508,12 +531,13 @@ listEventsResponse     :: ListEventsResponse listEventsResponse =-    ListEventsResponse'+  ListEventsResponse'     { _lerNextPageToken = Nothing     , _lerTimeRangeBegin = Nothing     , _lerErrorEvents = Nothing     } + -- | If non-empty, more results are available. Pass this token, along with -- the same query parameters as the first request, to view the next page of -- results.@@ -558,7 +582,8 @@ -- such as a given time period and\/or service filter. -- -- /See:/ 'errorGroupStats' smart constructor.-data ErrorGroupStats = ErrorGroupStats'+data ErrorGroupStats =+  ErrorGroupStats'     { _egsAffectedServices    :: !(Maybe [ServiceContext])     , _egsGroup               :: !(Maybe ErrorGroup)     , _egsFirstSeenTime       :: !(Maybe DateTime')@@ -568,8 +593,10 @@     , _egsNumAffectedServices :: !(Maybe (Textual Int32))     , _egsLastSeenTime        :: !(Maybe DateTime')     , _egsRepresentative      :: !(Maybe ErrorEvent)-    } deriving (Eq,Show,Data,Typeable,Generic)+    }+  deriving (Eq, Show, Data, Typeable, Generic) + -- | Creates a value of 'ErrorGroupStats' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired:@@ -594,7 +621,7 @@ errorGroupStats     :: ErrorGroupStats errorGroupStats =-    ErrorGroupStats'+  ErrorGroupStats'     { _egsAffectedServices = Nothing     , _egsGroup = Nothing     , _egsFirstSeenTime = Nothing@@ -606,6 +633,7 @@     , _egsRepresentative = Nothing     } + -- | Service contexts with a non-zero error count for the given filter -- criteria. This list can be truncated if multiple services are affected. -- Refer to \`num_affected_services\` for the total count.@@ -721,12 +749,15 @@ -- | Contains a set of requested error group stats. -- -- /See:/ 'listGroupStatsResponse' smart constructor.-data ListGroupStatsResponse = ListGroupStatsResponse'+data ListGroupStatsResponse =+  ListGroupStatsResponse'     { _lgsrNextPageToken   :: !(Maybe Text)     , _lgsrTimeRangeBegin  :: !(Maybe DateTime')     , _lgsrErrorGroupStats :: !(Maybe [ErrorGroupStats])-    } deriving (Eq,Show,Data,Typeable,Generic)+    }+  deriving (Eq, Show, Data, Typeable, Generic) + -- | Creates a value of 'ListGroupStatsResponse' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired:@@ -739,12 +770,13 @@ listGroupStatsResponse     :: ListGroupStatsResponse listGroupStatsResponse =-    ListGroupStatsResponse'+  ListGroupStatsResponse'     { _lgsrNextPageToken = Nothing     , _lgsrTimeRangeBegin = Nothing     , _lgsrErrorGroupStats = Nothing     } + -- | If non-empty, more results are available. Pass this token, along with -- the same query parameters as the first request, to view the next page of -- results.@@ -791,12 +823,15 @@ -- time and multiple versions can run in parallel. -- -- /See:/ 'serviceContext' smart constructor.-data ServiceContext = ServiceContext'+data ServiceContext =+  ServiceContext'     { _scResourceType :: !(Maybe Text)     , _scService      :: !(Maybe Text)     , _scVersion      :: !(Maybe Text)-    } deriving (Eq,Show,Data,Typeable,Generic)+    }+  deriving (Eq, Show, Data, Typeable, Generic) + -- | Creates a value of 'ServiceContext' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired:@@ -809,12 +844,10 @@ serviceContext     :: ServiceContext serviceContext =-    ServiceContext'-    { _scResourceType = Nothing-    , _scService = Nothing-    , _scVersion = Nothing-    }+  ServiceContext'+    {_scResourceType = Nothing, _scService = Nothing, _scVersion = Nothing} + -- | Type of the MonitoredResource. List of possible values: -- https:\/\/cloud.google.com\/monitoring\/api\/resources Value is set -- automatically for incoming errors and must not be set when reporting@@ -862,12 +895,15 @@ -- since the error events are sampled before counting them. -- -- /See:/ 'timedCount' smart constructor.-data TimedCount = TimedCount'+data TimedCount =+  TimedCount'     { _tcStartTime :: !(Maybe DateTime')     , _tcCount     :: !(Maybe (Textual Int64))     , _tcEndTime   :: !(Maybe DateTime')-    } deriving (Eq,Show,Data,Typeable,Generic)+    }+  deriving (Eq, Show, Data, Typeable, Generic) + -- | Creates a value of 'TimedCount' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired:@@ -880,12 +916,9 @@ timedCount     :: TimedCount timedCount =-    TimedCount'-    { _tcStartTime = Nothing-    , _tcCount = Nothing-    , _tcEndTime = Nothing-    }+  TimedCount' {_tcStartTime = Nothing, _tcCount = Nothing, _tcEndTime = Nothing} + -- | Start of the time period to which \`count\` refers (included). tcStartTime :: Lens' TimedCount (Maybe UTCTime) tcStartTime@@ -927,12 +960,15 @@ -- case. -- -- /See:/ 'sourceLocation' smart constructor.-data SourceLocation = SourceLocation'+data SourceLocation =+  SourceLocation'     { _slLineNumber   :: !(Maybe (Textual Int32))     , _slFilePath     :: !(Maybe Text)     , _slFunctionName :: !(Maybe Text)-    } deriving (Eq,Show,Data,Typeable,Generic)+    }+  deriving (Eq, Show, Data, Typeable, Generic) + -- | Creates a value of 'SourceLocation' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired:@@ -945,12 +981,10 @@ sourceLocation     :: SourceLocation sourceLocation =-    SourceLocation'-    { _slLineNumber = Nothing-    , _slFilePath = Nothing-    , _slFunctionName = Nothing-    }+  SourceLocation'+    {_slLineNumber = Nothing, _slFilePath = Nothing, _slFunctionName = Nothing} + -- | 1-based. 0 indicates that the line number is unknown. slLineNumber :: Lens' SourceLocation (Maybe Int32) slLineNumber@@ -991,11 +1025,14 @@ -- and deploy an application. -- -- /See:/ 'sourceReference' smart constructor.-data SourceReference = SourceReference'+data SourceReference =+  SourceReference'     { _srRepository :: !(Maybe Text)     , _srRevisionId :: !(Maybe Text)-    } deriving (Eq,Show,Data,Typeable,Generic)+    }+  deriving (Eq, Show, Data, Typeable, Generic) + -- | Creates a value of 'SourceReference' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired:@@ -1006,11 +1043,9 @@ sourceReference     :: SourceReference sourceReference =-    SourceReference'-    { _srRepository = Nothing-    , _srRevisionId = Nothing-    }+  SourceReference' {_srRepository = Nothing, _srRevisionId = Nothing} + -- | Optional. A URI string identifying the repository. Example: -- \"https:\/\/github.com\/GoogleCloudPlatform\/kubernetes.git\" srRepository :: Lens' SourceReference (Maybe Text)@@ -1042,14 +1077,16 @@ -- -- /See:/ 'reportErrorEventResponse' smart constructor. data ReportErrorEventResponse =-    ReportErrorEventResponse'-    deriving (Eq,Show,Data,Typeable,Generic)+  ReportErrorEventResponse'+  deriving (Eq, Show, Data, Typeable, Generic) + -- | Creates a value of 'ReportErrorEventResponse' with the minimum fields required to make a request. -- reportErrorEventResponse     :: ReportErrorEventResponse reportErrorEventResponse = ReportErrorEventResponse'+  instance FromJSON ReportErrorEventResponse where         parseJSON
gen/Network/Google/Resource/CloudErrorReporting/Projects/DeleteEvents.hs view
@@ -61,15 +61,18 @@ -- | Deletes all error events of a given project. -- -- /See:/ 'projectsDeleteEvents' smart constructor.-data ProjectsDeleteEvents = ProjectsDeleteEvents'+data ProjectsDeleteEvents =+  ProjectsDeleteEvents'     { _pdeXgafv          :: !(Maybe Xgafv)     , _pdeUploadProtocol :: !(Maybe Text)     , _pdeAccessToken    :: !(Maybe Text)     , _pdeUploadType     :: !(Maybe Text)     , _pdeProjectName    :: !Text     , _pdeCallback       :: !(Maybe Text)-    } deriving (Eq,Show,Data,Typeable,Generic)+    }+  deriving (Eq, Show, Data, Typeable, Generic) + -- | Creates a value of 'ProjectsDeleteEvents' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired:@@ -89,7 +92,7 @@     :: Text -- ^ 'pdeProjectName'     -> ProjectsDeleteEvents projectsDeleteEvents pPdeProjectName_ =-    ProjectsDeleteEvents'+  ProjectsDeleteEvents'     { _pdeXgafv = Nothing     , _pdeUploadProtocol = Nothing     , _pdeAccessToken = Nothing@@ -97,6 +100,7 @@     , _pdeProjectName = pPdeProjectName_     , _pdeCallback = Nothing     }+  -- | V1 error format. pdeXgafv :: Lens' ProjectsDeleteEvents (Maybe Xgafv)
gen/Network/Google/Resource/CloudErrorReporting/Projects/Events/List.hs view
@@ -75,7 +75,8 @@ -- | Lists the specified events. -- -- /See:/ 'projectsEventsList' smart constructor.-data ProjectsEventsList = ProjectsEventsList'+data ProjectsEventsList =+  ProjectsEventsList'     { _pelXgafv                     :: !(Maybe Xgafv)     , _pelUploadProtocol            :: !(Maybe Text)     , _pelAccessToken               :: !(Maybe Text)@@ -89,8 +90,10 @@     , _pelCallback                  :: !(Maybe Text)     , _pelServiceFilterVersion      :: !(Maybe Text)     , _pelTimeRangePeriod           :: !(Maybe Text)-    } deriving (Eq,Show,Data,Typeable,Generic)+    }+  deriving (Eq, Show, Data, Typeable, Generic) + -- | Creates a value of 'ProjectsEventsList' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired:@@ -124,7 +127,7 @@     :: Text -- ^ 'pelProjectName'     -> ProjectsEventsList projectsEventsList pPelProjectName_ =-    ProjectsEventsList'+  ProjectsEventsList'     { _pelXgafv = Nothing     , _pelUploadProtocol = Nothing     , _pelAccessToken = Nothing@@ -139,6 +142,7 @@     , _pelServiceFilterVersion = Nothing     , _pelTimeRangePeriod = Nothing     }+  -- | V1 error format. pelXgafv :: Lens' ProjectsEventsList (Maybe Xgafv)
gen/Network/Google/Resource/CloudErrorReporting/Projects/Events/Report.hs view
@@ -73,7 +73,8 @@ -- https:\/\/clouderrorreporting.googleapis.com\/v1beta1\/projects\/example-project\/events:report?key=123ABC456\` -- -- /See:/ 'projectsEventsReport' smart constructor.-data ProjectsEventsReport = ProjectsEventsReport'+data ProjectsEventsReport =+  ProjectsEventsReport'     { _perXgafv          :: !(Maybe Xgafv)     , _perUploadProtocol :: !(Maybe Text)     , _perAccessToken    :: !(Maybe Text)@@ -81,8 +82,10 @@     , _perPayload        :: !ReportedErrorEvent     , _perProjectName    :: !Text     , _perCallback       :: !(Maybe Text)-    } deriving (Eq,Show,Data,Typeable,Generic)+    }+  deriving (Eq, Show, Data, Typeable, Generic) + -- | Creates a value of 'ProjectsEventsReport' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired:@@ -105,7 +108,7 @@     -> Text -- ^ 'perProjectName'     -> ProjectsEventsReport projectsEventsReport pPerPayload_ pPerProjectName_ =-    ProjectsEventsReport'+  ProjectsEventsReport'     { _perXgafv = Nothing     , _perUploadProtocol = Nothing     , _perAccessToken = Nothing@@ -114,6 +117,7 @@     , _perProjectName = pPerProjectName_     , _perCallback = Nothing     }+  -- | V1 error format. perXgafv :: Lens' ProjectsEventsReport (Maybe Xgafv)
gen/Network/Google/Resource/CloudErrorReporting/Projects/GroupStats/List.hs view
@@ -85,7 +85,8 @@ -- | Lists the specified groups. -- -- /See:/ 'projectsGroupStatsList' smart constructor.-data ProjectsGroupStatsList = ProjectsGroupStatsList'+data ProjectsGroupStatsList =+  ProjectsGroupStatsList'     { _pgslXgafv                     :: !(Maybe Xgafv)     , _pgslUploadProtocol            :: !(Maybe Text)     , _pgslAccessToken               :: !(Maybe Text)@@ -103,8 +104,10 @@     , _pgslCallback                  :: !(Maybe Text)     , _pgslServiceFilterVersion      :: !(Maybe Text)     , _pgslTimeRangePeriod           :: !(Maybe Text)-    } deriving (Eq,Show,Data,Typeable,Generic)+    }+  deriving (Eq, Show, Data, Typeable, Generic) + -- | Creates a value of 'ProjectsGroupStatsList' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired:@@ -146,7 +149,7 @@     :: Text -- ^ 'pgslProjectName'     -> ProjectsGroupStatsList projectsGroupStatsList pPgslProjectName_ =-    ProjectsGroupStatsList'+  ProjectsGroupStatsList'     { _pgslXgafv = Nothing     , _pgslUploadProtocol = Nothing     , _pgslAccessToken = Nothing@@ -165,6 +168,7 @@     , _pgslServiceFilterVersion = Nothing     , _pgslTimeRangePeriod = Nothing     }+  -- | V1 error format. pgslXgafv :: Lens' ProjectsGroupStatsList (Maybe Xgafv)
gen/Network/Google/Resource/CloudErrorReporting/Projects/Groups/Get.hs view
@@ -59,15 +59,18 @@ -- | Get the specified group. -- -- /See:/ 'projectsGroupsGet' smart constructor.-data ProjectsGroupsGet = ProjectsGroupsGet'+data ProjectsGroupsGet =+  ProjectsGroupsGet'     { _pggXgafv          :: !(Maybe Xgafv)     , _pggUploadProtocol :: !(Maybe Text)     , _pggAccessToken    :: !(Maybe Text)     , _pggUploadType     :: !(Maybe Text)     , _pggGroupName      :: !Text     , _pggCallback       :: !(Maybe Text)-    } deriving (Eq,Show,Data,Typeable,Generic)+    }+  deriving (Eq, Show, Data, Typeable, Generic) + -- | Creates a value of 'ProjectsGroupsGet' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired:@@ -87,7 +90,7 @@     :: Text -- ^ 'pggGroupName'     -> ProjectsGroupsGet projectsGroupsGet pPggGroupName_ =-    ProjectsGroupsGet'+  ProjectsGroupsGet'     { _pggXgafv = Nothing     , _pggUploadProtocol = Nothing     , _pggAccessToken = Nothing@@ -95,6 +98,7 @@     , _pggGroupName = pPggGroupName_     , _pggCallback = Nothing     }+  -- | V1 error format. pggXgafv :: Lens' ProjectsGroupsGet (Maybe Xgafv)
gen/Network/Google/Resource/CloudErrorReporting/Projects/Groups/Update.hs view
@@ -63,7 +63,8 @@ -- exist. -- -- /See:/ 'projectsGroupsUpdate' smart constructor.-data ProjectsGroupsUpdate = ProjectsGroupsUpdate'+data ProjectsGroupsUpdate =+  ProjectsGroupsUpdate'     { _pguXgafv          :: !(Maybe Xgafv)     , _pguUploadProtocol :: !(Maybe Text)     , _pguAccessToken    :: !(Maybe Text)@@ -71,8 +72,10 @@     , _pguPayload        :: !ErrorGroup     , _pguName           :: !Text     , _pguCallback       :: !(Maybe Text)-    } deriving (Eq,Show,Data,Typeable,Generic)+    }+  deriving (Eq, Show, Data, Typeable, Generic) + -- | Creates a value of 'ProjectsGroupsUpdate' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired:@@ -95,7 +98,7 @@     -> Text -- ^ 'pguName'     -> ProjectsGroupsUpdate projectsGroupsUpdate pPguPayload_ pPguName_ =-    ProjectsGroupsUpdate'+  ProjectsGroupsUpdate'     { _pguXgafv = Nothing     , _pguUploadProtocol = Nothing     , _pguAccessToken = Nothing@@ -104,6 +107,7 @@     , _pguName = pPguName_     , _pguCallback = Nothing     }+  -- | V1 error format. pguXgafv :: Lens' ProjectsGroupsUpdate (Maybe Xgafv)
gogol-clouderrorreporting.cabal view
@@ -1,5 +1,5 @@ name:                  gogol-clouderrorreporting-version:               0.4.0+version:               0.5.0 synopsis:              Google Stackdriver Error Reporting SDK. homepage:              https://github.com/brendanhay/gogol bug-reports:           https://github.com/brendanhay/gogol/issues@@ -49,5 +49,5 @@         , Network.Google.CloudErrorReporting.Types.Sum      build-depends:-          gogol-core == 0.4.0.*+          gogol-core == 0.5.0.*         , base       >= 4.7 && < 5