{-# LANGUAGE DataKinds #-} {-# LANGUAGE DeriveDataTypeable #-} {-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE FlexibleInstances #-} {-# LANGUAGE NoImplicitPrelude #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE TypeFamilies #-} {-# LANGUAGE TypeOperators #-} {-# OPTIONS_GHC -fno-warn-duplicate-exports #-} {-# OPTIONS_GHC -fno-warn-unused-binds #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} -- | -- Module : Network.Google.Resource.AppEngine.Apps.Services.Versions.List -- Copyright : (c) 2015-2016 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Lists the versions of a service. -- -- /See:/ for @appengine.apps.services.versions.list@. module Network.Google.Resource.AppEngine.Apps.Services.Versions.List ( -- * REST Resource AppsServicesVersionsListResource -- * Creating a Request , appsServicesVersionsList , AppsServicesVersionsList -- * Request Lenses , asvlXgafv , asvlUploadProtocol , asvlPp , asvlAccessToken , asvlUploadType , asvlBearerToken , asvlAppsId , asvlView , asvlPageToken , asvlServicesId , asvlPageSize , asvlCallback ) where import Network.Google.AppEngine.Types import Network.Google.Prelude -- | A resource alias for @appengine.apps.services.versions.list@ method which the -- 'AppsServicesVersionsList' request conforms to. type AppsServicesVersionsListResource = "v1" :> "apps" :> Capture "appsId" Text :> "services" :> Capture "servicesId" Text :> "versions" :> QueryParam "$.xgafv" Text :> QueryParam "upload_protocol" Text :> QueryParam "pp" Bool :> QueryParam "access_token" Text :> QueryParam "uploadType" Text :> QueryParam "bearer_token" Text :> QueryParam "view" Text :> QueryParam "pageToken" Text :> QueryParam "pageSize" (Textual Int32) :> QueryParam "callback" Text :> QueryParam "alt" AltJSON :> Get '[JSON] ListVersionsResponse -- | Lists the versions of a service. -- -- /See:/ 'appsServicesVersionsList' smart constructor. data AppsServicesVersionsList = AppsServicesVersionsList' { _asvlXgafv :: !(Maybe Text) , _asvlUploadProtocol :: !(Maybe Text) , _asvlPp :: !Bool , _asvlAccessToken :: !(Maybe Text) , _asvlUploadType :: !(Maybe Text) , _asvlBearerToken :: !(Maybe Text) , _asvlAppsId :: !Text , _asvlView :: !(Maybe Text) , _asvlPageToken :: !(Maybe Text) , _asvlServicesId :: !Text , _asvlPageSize :: !(Maybe (Textual Int32)) , _asvlCallback :: !(Maybe Text) } deriving (Eq,Show,Data,Typeable,Generic) -- | Creates a value of 'AppsServicesVersionsList' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'asvlXgafv' -- -- * 'asvlUploadProtocol' -- -- * 'asvlPp' -- -- * 'asvlAccessToken' -- -- * 'asvlUploadType' -- -- * 'asvlBearerToken' -- -- * 'asvlAppsId' -- -- * 'asvlView' -- -- * 'asvlPageToken' -- -- * 'asvlServicesId' -- -- * 'asvlPageSize' -- -- * 'asvlCallback' appsServicesVersionsList :: Text -- ^ 'asvlAppsId' -> Text -- ^ 'asvlServicesId' -> AppsServicesVersionsList appsServicesVersionsList pAsvlAppsId_ pAsvlServicesId_ = AppsServicesVersionsList' { _asvlXgafv = Nothing , _asvlUploadProtocol = Nothing , _asvlPp = True , _asvlAccessToken = Nothing , _asvlUploadType = Nothing , _asvlBearerToken = Nothing , _asvlAppsId = pAsvlAppsId_ , _asvlView = Nothing , _asvlPageToken = Nothing , _asvlServicesId = pAsvlServicesId_ , _asvlPageSize = Nothing , _asvlCallback = Nothing } -- | V1 error format. asvlXgafv :: Lens' AppsServicesVersionsList (Maybe Text) asvlXgafv = lens _asvlXgafv (\ s a -> s{_asvlXgafv = a}) -- | Upload protocol for media (e.g. \"raw\", \"multipart\"). asvlUploadProtocol :: Lens' AppsServicesVersionsList (Maybe Text) asvlUploadProtocol = lens _asvlUploadProtocol (\ s a -> s{_asvlUploadProtocol = a}) -- | Pretty-print response. asvlPp :: Lens' AppsServicesVersionsList Bool asvlPp = lens _asvlPp (\ s a -> s{_asvlPp = a}) -- | OAuth access token. asvlAccessToken :: Lens' AppsServicesVersionsList (Maybe Text) asvlAccessToken = lens _asvlAccessToken (\ s a -> s{_asvlAccessToken = a}) -- | Legacy upload protocol for media (e.g. \"media\", \"multipart\"). asvlUploadType :: Lens' AppsServicesVersionsList (Maybe Text) asvlUploadType = lens _asvlUploadType (\ s a -> s{_asvlUploadType = a}) -- | OAuth bearer token. asvlBearerToken :: Lens' AppsServicesVersionsList (Maybe Text) asvlBearerToken = lens _asvlBearerToken (\ s a -> s{_asvlBearerToken = a}) -- | Part of \`parent\`. Name of the parent Service resource. Example: -- \`apps\/myapp\/services\/default\`. asvlAppsId :: Lens' AppsServicesVersionsList Text asvlAppsId = lens _asvlAppsId (\ s a -> s{_asvlAppsId = a}) -- | Controls the set of fields returned in the \`List\` response. asvlView :: Lens' AppsServicesVersionsList (Maybe Text) asvlView = lens _asvlView (\ s a -> s{_asvlView = a}) -- | Continuation token for fetching the next page of results. asvlPageToken :: Lens' AppsServicesVersionsList (Maybe Text) asvlPageToken = lens _asvlPageToken (\ s a -> s{_asvlPageToken = a}) -- | Part of \`parent\`. See documentation of \`appsId\`. asvlServicesId :: Lens' AppsServicesVersionsList Text asvlServicesId = lens _asvlServicesId (\ s a -> s{_asvlServicesId = a}) -- | Maximum results to return per page. asvlPageSize :: Lens' AppsServicesVersionsList (Maybe Int32) asvlPageSize = lens _asvlPageSize (\ s a -> s{_asvlPageSize = a}) . mapping _Coerce -- | JSONP asvlCallback :: Lens' AppsServicesVersionsList (Maybe Text) asvlCallback = lens _asvlCallback (\ s a -> s{_asvlCallback = a}) instance GoogleRequest AppsServicesVersionsList where type Rs AppsServicesVersionsList = ListVersionsResponse type Scopes AppsServicesVersionsList = '["https://www.googleapis.com/auth/cloud-platform"] requestClient AppsServicesVersionsList'{..} = go _asvlAppsId _asvlServicesId _asvlXgafv _asvlUploadProtocol (Just _asvlPp) _asvlAccessToken _asvlUploadType _asvlBearerToken _asvlView _asvlPageToken _asvlPageSize _asvlCallback (Just AltJSON) appEngineService where go = buildClient (Proxy :: Proxy AppsServicesVersionsListResource) mempty