{-# LANGUAGE DataKinds #-} {-# LANGUAGE NoImplicitPrelude #-} {-# LANGUAGE TypeOperators #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} {-# OPTIONS_GHC -fno-warn-duplicate-exports #-} -- | -- Module : Network.Google.ServiceControl -- Copyright : (c) 2015-2016 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Google Service Control provides control plane functionality to managed -- services, such as logging, monitoring, and status checks. -- -- /See:/ module Network.Google.ServiceControl ( -- * Service Configuration serviceControlService -- * OAuth Scopes , serviceControlScope , cloudPlatformScope -- * API Declaration , ServiceControlAPI -- * Resources -- ** servicecontrol.services.check , module Network.Google.Resource.ServiceControl.Services.Check -- ** servicecontrol.services.report , module Network.Google.Resource.ServiceControl.Services.Report -- * Types -- ** AuditLogServiceData , AuditLogServiceData , auditLogServiceData , alsdAddtional -- ** Status , Status , status , sDetails , sCode , sMessage -- ** RequestMetadata , RequestMetadata , requestMetadata , rmCallerSuppliedUserAgent , rmCallerIP -- ** ReportRequest , ReportRequest , reportRequest , rrServiceConfigId , rrOperations -- ** CheckRequest , CheckRequest , checkRequest , crOperation , crServiceConfigId -- ** MetricValueLabels , MetricValueLabels , metricValueLabels , mvlAddtional -- ** Distribution , Distribution , distribution , dSumOfSquaredDeviation , dMean , dExponentialBuckets , dMaximum , dLinearBuckets , dCount , dMinimum , dBucketCounts , dExplicitBuckets -- ** ExponentialBuckets , ExponentialBuckets , exponentialBuckets , ebGrowthFactor , ebScale , ebNumFiniteBuckets -- ** AuthorizationInfo , AuthorizationInfo , authorizationInfo , aiGranted , aiResource , aiPermission -- ** Operation , Operation , operation , oImportance , oStartTime , oEndTime , oOperationName , oLabels , oOperationId , oConsumerId , oMetricValueSets , oLogEntries -- ** MetricValueSet , MetricValueSet , metricValueSet , mvsMetricName , mvsMetricValues -- ** LogEntryLabels , LogEntryLabels , logEntryLabels , lelAddtional -- ** LogEntryProtoPayload , LogEntryProtoPayload , logEntryProtoPayload , leppAddtional -- ** LinearBuckets , LinearBuckets , linearBuckets , lbOffSet , lbWidth , lbNumFiniteBuckets -- ** CheckErrorCode , CheckErrorCode (..) -- ** StatusDetailsItem , StatusDetailsItem , statusDetailsItem , sdiAddtional -- ** CheckError , CheckError , checkError , ceCode , ceDetail -- ** ReportError , ReportError , reportError , reStatus , reOperationId -- ** OperationImportance , OperationImportance (..) -- ** MetricValue , MetricValue , metricValue , mvBoolValue , mvStartTime , mvDoubleValue , mvStringValue , mvDistributionValue , mvEndTime , mvInt64Value , mvLabels -- ** Xgafv , Xgafv (..) -- ** AuditLogResponse , AuditLogResponse , auditLogResponse , alrAddtional -- ** CheckResponse , CheckResponse , checkResponse , cCheckErrors , cServiceConfigId , cOperationId -- ** ReportResponse , ReportResponse , reportResponse , rReportErrors , rServiceConfigId -- ** LogEntry , LogEntry , logEntry , leSeverity , leTextPayload , leStructPayload , leName , leInsertId , leLabels , leProtoPayload , leTimestamp -- ** AuditLogRequest , AuditLogRequest , auditLogRequest , aAddtional -- ** OperationLabels , OperationLabels , operationLabels , olAddtional -- ** LogEntrySeverity , LogEntrySeverity (..) -- ** ExplicitBuckets , ExplicitBuckets , explicitBuckets , ebBounds -- ** AuthenticationInfo , AuthenticationInfo , authenticationInfo , aiPrincipalEmail , aiAuthoritySelector -- ** AuditLog , AuditLog , auditLog , alRequestMetadata , alStatus , alResourceName , alAuthorizationInfo , alServiceData , alMethodName , alResponse , alServiceName , alNumResponseItems , alAuthenticationInfo , alRequest -- ** LogEntryStructPayload , LogEntryStructPayload , logEntryStructPayload , lespAddtional ) where import Network.Google.Prelude import Network.Google.Resource.ServiceControl.Services.Check import Network.Google.Resource.ServiceControl.Services.Report import Network.Google.ServiceControl.Types {- $resources TODO -} -- | Represents the entirety of the methods and resources available for the Google Service Control API service. type ServiceControlAPI = ServicesReportResource :<|> ServicesCheckResource