gogol-compute-0.3.0: Google Compute Engine 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.Compute.Disks.Insert

Contents

Description

Creates a persistent disk in the specified project using the data in the request. You can create a disk with a sourceImage, a sourceSnapshot, or create an empty 500 GB data disk by omitting all properties. You can also create a disk that is larger than the default size by specifying the sizeGb property.

See: Compute Engine API Reference for compute.disks.insert.

Synopsis

REST Resource

type DisksInsertResource = "compute" :> ("v1" :> ("projects" :> (Capture "project" Text :> ("zones" :> (Capture "zone" Text :> ("disks" :> (QueryParam "sourceImage" Text :> (QueryParam "alt" AltJSON :> (ReqBody '[JSON] Disk :> Post '[JSON] Operation))))))))) Source #

A resource alias for compute.disks.insert method which the DisksInsert request conforms to.

Creating a Request

disksInsert Source #

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

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

data DisksInsert Source #

Creates a persistent disk in the specified project using the data in the request. You can create a disk with a sourceImage, a sourceSnapshot, or create an empty 500 GB data disk by omitting all properties. You can also create a disk that is larger than the default size by specifying the sizeGb property.

See: disksInsert smart constructor.

Instances

Eq DisksInsert Source # 
Data DisksInsert Source # 

Methods

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

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

toConstr :: DisksInsert -> Constr #

dataTypeOf :: DisksInsert -> DataType #

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

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

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

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

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

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

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

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

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

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

Show DisksInsert Source # 
Generic DisksInsert Source # 

Associated Types

type Rep DisksInsert :: * -> * #

GoogleRequest DisksInsert Source # 

Associated Types

type Rs DisksInsert :: * #

type Scopes DisksInsert :: [Symbol] #

type Rep DisksInsert Source # 
type Rep DisksInsert = D1 (MetaData "DisksInsert" "Network.Google.Resource.Compute.Disks.Insert" "gogol-compute-0.3.0-JmC4j0JQjdEJ6YK33fLFL4" False) (C1 (MetaCons "DisksInsert'" PrefixI True) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_diSourceImage") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_diProject") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text))) ((:*:) (S1 (MetaSel (Just Symbol "_diZone") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text)) (S1 (MetaSel (Just Symbol "_diPayload") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Disk)))))
type Scopes DisksInsert Source # 
type Scopes DisksInsert = (:) Symbol "https://www.googleapis.com/auth/cloud-platform" ((:) Symbol "https://www.googleapis.com/auth/compute" ([] Symbol))
type Rs DisksInsert Source # 

Request Lenses

diSourceImage :: Lens' DisksInsert (Maybe Text) Source #

Optional. Source image to restore onto a disk.

diProject :: Lens' DisksInsert Text Source #

Project ID for this request.

diZone :: Lens' DisksInsert Text Source #

The name of the zone for this request.

diPayload :: Lens' DisksInsert Disk Source #

Multipart request metadata.