{-# LANGUAGE DeriveDataTypeable #-} {-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE NoImplicitPrelude #-} {-# LANGUAGE OverloadedStrings #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} -- | -- Module : Network.Google.DeploymentManager.Types -- Copyright : (c) 2015 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- module Network.Google.DeploymentManager.Types ( -- * Service Configuration deploymentManagerService -- * OAuth Scopes , cloudPlatformReadOnlyScope , cloudPlatformScope , ndevCloudmanScope , ndevCloudmanReadonlyScope -- * OperationWarningsItemDataItem , OperationWarningsItemDataItem , operationWarningsItemDataItem , owidiValue , owidiKey -- * ConfigFile , ConfigFile , configFile , cfContent -- * DeploymentsUpdateCreatePolicy , DeploymentsUpdateCreatePolicy (..) -- * OperationsListResponse , OperationsListResponse , operationsListResponse , olrNextPageToken , olrOperations -- * ResourceUpdateWarningsItemDataItem , ResourceUpdateWarningsItemDataItem , resourceUpdateWarningsItemDataItem , ruwidiValue , ruwidiKey -- * TypesListResponse , TypesListResponse , typesListResponse , tlrNextPageToken , tlrTypes -- * DeploymentsUpdateDeletePolicy , DeploymentsUpdateDeletePolicy (..) -- * DeploymentsPatchDeletePolicy , DeploymentsPatchDeletePolicy (..) -- * Operation , Operation , operation , oTargetId , oStatus , oInsertTime , oProgress , oStartTime , oKind , oError , oHTTPErrorMessage , oZone , oWarnings , oHTTPErrorStatusCode , oUser , oSelfLink , oName , oStatusMessage , oCreationTimestamp , oEndTime , oId , oOperationType , oRegion , oTargetLink , oClientOperationId -- * DeploymentsPatchCreatePolicy , DeploymentsPatchCreatePolicy (..) -- * ResourcesListResponse , ResourcesListResponse , resourcesListResponse , rlrNextPageToken , rlrResources -- * DeploymentUpdate , DeploymentUpdate , deploymentUpdate , duManifest -- * ResourceUpdate , ResourceUpdate , resourceUpdate , ruState , ruError , ruWarnings , ruIntent , ruManifest , ruFinalProperties , ruProperties -- * Manifest , Manifest , manifest , mInsertTime , mLayout , mConfig , mExpandedConfig , mImports , mSelfLink , mName , mId -- * ResourceUpdateWarningsItem , ResourceUpdateWarningsItem , resourceUpdateWarningsItem , ruwiData , ruwiCode , ruwiMessage -- * DeploymentsCancelPreviewRequest , DeploymentsCancelPreviewRequest , deploymentsCancelPreviewRequest , dcprFingerprint -- * Resource , Resource , resource , rInsertTime , rURL , rWarnings , rUpdateTime , rName , rManifest , rFinalProperties , rId , rType , rUpdate , rProperties -- * ResourceUpdateErrorErrorsItem , ResourceUpdateErrorErrorsItem , resourceUpdateErrorErrorsItem , rueeiLocation , rueeiCode , rueeiMessage -- * ManifestsListResponse , ManifestsListResponse , manifestsListResponse , mlrNextPageToken , mlrManifests -- * OperationError , OperationError , operationError , oeErrors -- * Type , Type , type' , tInsertTime , tSelfLink , tName , tId -- * ImportFile , ImportFile , importFile , ifContent , ifName -- * OperationErrorErrorsItem , OperationErrorErrorsItem , operationErrorErrorsItem , oeeiLocation , oeeiCode , oeeiMessage -- * DeploymentsStopRequest , DeploymentsStopRequest , deploymentsStopRequest , dsrFingerprint -- * ResourceWarningsItemDataItem , ResourceWarningsItemDataItem , resourceWarningsItemDataItem , rwidiValue , rwidiKey -- * ResourceUpdateError , ResourceUpdateError , resourceUpdateError , rueErrors -- * DeploymentsListResponse , DeploymentsListResponse , deploymentsListResponse , dlrNextPageToken , dlrDeployments -- * ResourceWarningsItem , ResourceWarningsItem , resourceWarningsItem , rwiData , rwiCode , rwiMessage -- * TargetConfiguration , TargetConfiguration , targetConfiguration , tcConfig , tcImports -- * OperationWarningsItem , OperationWarningsItem , operationWarningsItem , owiData , owiCode , owiMessage -- * Deployment , Deployment , deployment , dInsertTime , dOperation , dFingerprint , dName , dManifest , dId , dDescription , dUpdate , dTarget ) where import Network.Google.DeploymentManager.Types.Product import Network.Google.DeploymentManager.Types.Sum import Network.Google.Prelude -- | Default request referring to version 'v2' of the Google Cloud Deployment Manager API. This contains the host and root path used as a starting point for constructing service requests. deploymentManagerService :: Service deploymentManagerService = defaultService (ServiceId "deploymentmanager:v2") "www.googleapis.com" -- | View your data across Google Cloud Platform services cloudPlatformReadOnlyScope :: OAuthScope cloudPlatformReadOnlyScope = "https://www.googleapis.com/auth/cloud-platform.read-only"; -- | View and manage your data across Google Cloud Platform services cloudPlatformScope :: OAuthScope cloudPlatformScope = "https://www.googleapis.com/auth/cloud-platform"; -- | View and manage your Google Cloud Platform management resources and -- deployment status information ndevCloudmanScope :: OAuthScope ndevCloudmanScope = "https://www.googleapis.com/auth/ndev.cloudman"; -- | View your Google Cloud Platform management resources and deployment -- status information ndevCloudmanReadonlyScope :: OAuthScope ndevCloudmanReadonlyScope = "https://www.googleapis.com/auth/ndev.cloudman.readonly";