{-# LANGUAGE DataKinds #-}
{-# LANGUAGE DeriveDataTypeable #-}
{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE NoImplicitPrelude #-}
{-# LANGUAGE OverloadedStrings #-}
{-# OPTIONS_GHC -fno-warn-unused-imports #-}
module Network.Google.WebSecurityScanner.Types
(
webSecurityScannerService
, cloudPlatformScope
, FindingTypeStats
, findingTypeStats
, ftsFindingCount
, ftsFindingType
, ListFindingsResponse
, listFindingsResponse
, lfrNextPageToken
, lfrFindings
, StopScanRunRequest
, stopScanRunRequest
, Schedule
, schedule
, sScheduleTime
, sIntervalDurationDays
, Finding
, finding
, fFinalURL
, fHTTPMethod
, fReProductionURL
, fTrackingId
, fBody
, fXss
, fVulnerableParameters
, fOutdatedLibrary
, fFuzzedURL
, fName
, fFindingType
, fVulnerableHeaders
, fViolatingResource
, fFrameURL
, fDescription
, Empty
, empty
, ListFindingTypeStatsResponse
, listFindingTypeStatsResponse
, lftsrFindingTypeStats
, GoogleAccount
, googleAccount
, gaUsername
, gaPassword
, Xss
, xss
, xStackTraces
, xErrorMessage
, Authentication
, authentication
, aGoogleAccount
, aCustomAccount
, FindingFindingType (..)
, ListCrawledURLsResponse
, listCrawledURLsResponse
, lcurNextPageToken
, lcurCrawledURLs
, VulnerableParameters
, vulnerableParameters
, vpParameterNames
, CrawledURL
, crawledURL
, cuHTTPMethod
, cuBody
, cuURL
, OutdatedLibrary
, outdatedLibrary
, olLearnMoreURLs
, olVersion
, olLibraryName
, ListScanRunsResponse
, listScanRunsResponse
, lsrrNextPageToken
, lsrrScanRuns
, Header
, header
, hValue
, hName
, ListScanConfigsResponse
, listScanConfigsResponse
, lscrNextPageToken
, lscrScanConfigs
, StartScanRunRequest
, startScanRunRequest
, Xgafv (..)
, CustomAccount
, customAccount
, caLoginURL
, caUsername
, caPassword
, ScanConfigUserAgent (..)
, ScanConfig
, scanConfig
, scSchedule
, scTargetPlatforms
, scStartingURLs
, scAuthentication
, scMaxQps
, scName
, scDisplayName
, scUserAgent
, scBlackListPatterns
, ScanRunResultState (..)
, VulnerableHeaders
, vulnerableHeaders
, vhMissingHeaders
, vhHeaders
, ViolatingResource
, violatingResource
, vrContentType
, vrResourceURL
, ScanRunExecutionState (..)
, ScanRun
, scanRun
, srStartTime
, srHasVulnerabilities
, srResultState
, srProgressPercent
, srURLsCrawledCount
, srURLsTestedCount
, srName
, srEndTime
, srExecutionState
, FindingTypeStatsFindingType (..)
) where
import Network.Google.Prelude
import Network.Google.WebSecurityScanner.Types.Product
import Network.Google.WebSecurityScanner.Types.Sum
webSecurityScannerService :: ServiceConfig
webSecurityScannerService
= defaultService
(ServiceId "websecurityscanner:v1alpha")
"websecurityscanner.googleapis.com"
cloudPlatformScope :: Proxy '["https://www.googleapis.com/auth/cloud-platform"]
cloudPlatformScope = Proxy;