gogol-useraccounts-0.3.0: Google Cloud User Accounts SDK.

Copyright(c) 2015-2016 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone
LanguageHaskell2010

Network.Google.Resource.CloudUserAccounts.Users.RemovePublicKey

Contents

Description

Removes the specified public key from the user.

See: Cloud User Accounts API Reference for clouduseraccounts.users.removePublicKey.

Synopsis

REST Resource

type UsersRemovePublicKeyResource = "clouduseraccounts" :> ("beta" :> ("projects" :> (Capture "project" Text :> ("global" :> ("users" :> (Capture "user" Text :> ("removePublicKey" :> (QueryParam "fingerprint" Text :> (QueryParam "alt" AltJSON :> Post '[JSON] Operation))))))))) Source #

A resource alias for clouduseraccounts.users.removePublicKey method which the UsersRemovePublicKey request conforms to.

Creating a Request

usersRemovePublicKey Source #

Creates a value of UsersRemovePublicKey with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

data UsersRemovePublicKey Source #

Removes the specified public key from the user.

See: usersRemovePublicKey smart constructor.

Instances

Eq UsersRemovePublicKey Source # 
Data UsersRemovePublicKey Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> UsersRemovePublicKey -> c UsersRemovePublicKey #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c UsersRemovePublicKey #

toConstr :: UsersRemovePublicKey -> Constr #

dataTypeOf :: UsersRemovePublicKey -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c UsersRemovePublicKey) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c UsersRemovePublicKey) #

gmapT :: (forall b. Data b => b -> b) -> UsersRemovePublicKey -> UsersRemovePublicKey #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> UsersRemovePublicKey -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> UsersRemovePublicKey -> r #

gmapQ :: (forall d. Data d => d -> u) -> UsersRemovePublicKey -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> UsersRemovePublicKey -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> UsersRemovePublicKey -> m UsersRemovePublicKey #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> UsersRemovePublicKey -> m UsersRemovePublicKey #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> UsersRemovePublicKey -> m UsersRemovePublicKey #

Show UsersRemovePublicKey Source # 
Generic UsersRemovePublicKey Source # 
GoogleRequest UsersRemovePublicKey Source # 
type Rep UsersRemovePublicKey Source # 
type Rep UsersRemovePublicKey = D1 (MetaData "UsersRemovePublicKey" "Network.Google.Resource.CloudUserAccounts.Users.RemovePublicKey" "gogol-useraccounts-0.3.0-G77LHaYsSj1FbuuzRmHYWr" False) (C1 (MetaCons "UsersRemovePublicKey'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_urpkProject") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text)) ((:*:) (S1 (MetaSel (Just Symbol "_urpkFingerprint") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text)) (S1 (MetaSel (Just Symbol "_urpkUser") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text)))))
type Scopes UsersRemovePublicKey Source # 
type Scopes UsersRemovePublicKey = (:) Symbol "https://www.googleapis.com/auth/cloud-platform" ((:) Symbol "https://www.googleapis.com/auth/cloud.useraccounts" ([] Symbol))
type Rs UsersRemovePublicKey Source # 

Request Lenses

urpkProject :: Lens' UsersRemovePublicKey Text Source #

Project ID for this request.

urpkFingerprint :: Lens' UsersRemovePublicKey Text Source #

The fingerprint of the public key to delete. Public keys are identified by their fingerprint, which is defined by RFC4716 to be the MD5 digest of the public key.

urpkUser :: Lens' UsersRemovePublicKey Text Source #

Name of the user for this request.