{-# 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.PubSub.Projects.Topics.Snapshots.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 names of the snapshots on this topic. Snapshots are used in -- operations, -- which allow you to manage message acknowledgments in bulk. That is, you -- can set the acknowledgment state of messages in an existing subscription -- to the state captured by a snapshot. -- __BETA:__ This feature is part of a beta release. This API might be -- changed in backward-incompatible ways and is not recommended for -- production use. It is not subject to any SLA or deprecation policy. -- -- /See:/ for @pubsub.projects.topics.snapshots.list@. module Network.Google.Resource.PubSub.Projects.Topics.Snapshots.List ( -- * REST Resource ProjectsTopicsSnapshotsListResource -- * Creating a Request , projectsTopicsSnapshotsList , ProjectsTopicsSnapshotsList -- * Request Lenses , ptsltXgafv , ptsltUploadProtocol , ptsltAccessToken , ptsltUploadType , ptsltTopic , ptsltPageToken , ptsltPageSize , ptsltCallback ) where import Network.Google.Prelude import Network.Google.PubSub.Types -- | A resource alias for @pubsub.projects.topics.snapshots.list@ method which the -- 'ProjectsTopicsSnapshotsList' request conforms to. type ProjectsTopicsSnapshotsListResource = "v1" :> Capture "topic" Text :> "snapshots" :> QueryParam "$.xgafv" Xgafv :> QueryParam "upload_protocol" Text :> QueryParam "access_token" Text :> QueryParam "uploadType" Text :> QueryParam "pageToken" Text :> QueryParam "pageSize" (Textual Int32) :> QueryParam "callback" Text :> QueryParam "alt" AltJSON :> Get '[JSON] ListTopicSnapshotsResponse -- | Lists the names of the snapshots on this topic. Snapshots are used in -- operations, -- which allow you to manage message acknowledgments in bulk. That is, you -- can set the acknowledgment state of messages in an existing subscription -- to the state captured by a snapshot. -- __BETA:__ This feature is part of a beta release. This API might be -- changed in backward-incompatible ways and is not recommended for -- production use. It is not subject to any SLA or deprecation policy. -- -- /See:/ 'projectsTopicsSnapshotsList' smart constructor. data ProjectsTopicsSnapshotsList = ProjectsTopicsSnapshotsList' { _ptsltXgafv :: !(Maybe Xgafv) , _ptsltUploadProtocol :: !(Maybe Text) , _ptsltAccessToken :: !(Maybe Text) , _ptsltUploadType :: !(Maybe Text) , _ptsltTopic :: !Text , _ptsltPageToken :: !(Maybe Text) , _ptsltPageSize :: !(Maybe (Textual Int32)) , _ptsltCallback :: !(Maybe Text) } deriving (Eq,Show,Data,Typeable,Generic) -- | Creates a value of 'ProjectsTopicsSnapshotsList' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'ptsltXgafv' -- -- * 'ptsltUploadProtocol' -- -- * 'ptsltAccessToken' -- -- * 'ptsltUploadType' -- -- * 'ptsltTopic' -- -- * 'ptsltPageToken' -- -- * 'ptsltPageSize' -- -- * 'ptsltCallback' projectsTopicsSnapshotsList :: Text -- ^ 'ptsltTopic' -> ProjectsTopicsSnapshotsList projectsTopicsSnapshotsList pPtsltTopic_ = ProjectsTopicsSnapshotsList' { _ptsltXgafv = Nothing , _ptsltUploadProtocol = Nothing , _ptsltAccessToken = Nothing , _ptsltUploadType = Nothing , _ptsltTopic = pPtsltTopic_ , _ptsltPageToken = Nothing , _ptsltPageSize = Nothing , _ptsltCallback = Nothing } -- | V1 error format. ptsltXgafv :: Lens' ProjectsTopicsSnapshotsList (Maybe Xgafv) ptsltXgafv = lens _ptsltXgafv (\ s a -> s{_ptsltXgafv = a}) -- | Upload protocol for media (e.g. \"raw\", \"multipart\"). ptsltUploadProtocol :: Lens' ProjectsTopicsSnapshotsList (Maybe Text) ptsltUploadProtocol = lens _ptsltUploadProtocol (\ s a -> s{_ptsltUploadProtocol = a}) -- | OAuth access token. ptsltAccessToken :: Lens' ProjectsTopicsSnapshotsList (Maybe Text) ptsltAccessToken = lens _ptsltAccessToken (\ s a -> s{_ptsltAccessToken = a}) -- | Legacy upload protocol for media (e.g. \"media\", \"multipart\"). ptsltUploadType :: Lens' ProjectsTopicsSnapshotsList (Maybe Text) ptsltUploadType = lens _ptsltUploadType (\ s a -> s{_ptsltUploadType = a}) -- | The name of the topic that snapshots are attached to. Format is -- \`projects\/{project}\/topics\/{topic}\`. ptsltTopic :: Lens' ProjectsTopicsSnapshotsList Text ptsltTopic = lens _ptsltTopic (\ s a -> s{_ptsltTopic = a}) -- | The value returned by the last \`ListTopicSnapshotsResponse\`; indicates -- that this is a continuation of a prior \`ListTopicSnapshots\` call, and -- that the system should return the next page of data. ptsltPageToken :: Lens' ProjectsTopicsSnapshotsList (Maybe Text) ptsltPageToken = lens _ptsltPageToken (\ s a -> s{_ptsltPageToken = a}) -- | Maximum number of snapshot names to return. ptsltPageSize :: Lens' ProjectsTopicsSnapshotsList (Maybe Int32) ptsltPageSize = lens _ptsltPageSize (\ s a -> s{_ptsltPageSize = a}) . mapping _Coerce -- | JSONP ptsltCallback :: Lens' ProjectsTopicsSnapshotsList (Maybe Text) ptsltCallback = lens _ptsltCallback (\ s a -> s{_ptsltCallback = a}) instance GoogleRequest ProjectsTopicsSnapshotsList where type Rs ProjectsTopicsSnapshotsList = ListTopicSnapshotsResponse type Scopes ProjectsTopicsSnapshotsList = '["https://www.googleapis.com/auth/cloud-platform", "https://www.googleapis.com/auth/pubsub"] requestClient ProjectsTopicsSnapshotsList'{..} = go _ptsltTopic _ptsltXgafv _ptsltUploadProtocol _ptsltAccessToken _ptsltUploadType _ptsltPageToken _ptsltPageSize _ptsltCallback (Just AltJSON) pubSubService where go = buildClient (Proxy :: Proxy ProjectsTopicsSnapshotsListResource) mempty