gogol-storage-0.0.1: Google Cloud Storage JSON SDK.

Copyright(c) 2015 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.Storage.Objects.Patch

Contents

Description

Updates an object's metadata. This method supports patch semantics.

See: Cloud Storage JSON API Reference for storage.objects.patch.

Synopsis

REST Resource

type ObjectsPatchResource = "storage" :> ("v1" :> ("b" :> (Capture "bucket" Text :> ("o" :> (Capture "object" Text :> (QueryParam "ifMetagenerationMatch" (Textual Int64) :> (QueryParam "ifGenerationNotMatch" (Textual Int64) :> (QueryParam "ifGenerationMatch" (Textual Int64) :> (QueryParam "predefinedAcl" ObjectsPatchPredefinedACL :> (QueryParam "ifMetagenerationNotMatch" (Textual Int64) :> (QueryParam "projection" ObjectsPatchProjection :> (QueryParam "generation" (Textual Int64) :> (QueryParam "alt" AltJSON :> (ReqBody `[JSON]` Object :> Patch `[JSON]` Object)))))))))))))) Source

A resource alias for storage.objects.patch method which the ObjectsPatch request conforms to.

Creating a Request

objectsPatch Source

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

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

data ObjectsPatch Source

Updates an object's metadata. This method supports patch semantics.

See: objectsPatch smart constructor.

Request Lenses

opIfMetagenerationMatch :: Lens' ObjectsPatch (Maybe Int64) Source

Makes the operation conditional on whether the object's current metageneration matches the given value.

opIfGenerationNotMatch :: Lens' ObjectsPatch (Maybe Int64) Source

Makes the operation conditional on whether the object's current generation does not match the given value.

opIfGenerationMatch :: Lens' ObjectsPatch (Maybe Int64) Source

Makes the operation conditional on whether the object's current generation matches the given value.

opPredefinedACL :: Lens' ObjectsPatch (Maybe ObjectsPatchPredefinedACL) Source

Apply a predefined set of access controls to this object.

opBucket :: Lens' ObjectsPatch Text Source

Name of the bucket in which the object resides.

opPayload :: Lens' ObjectsPatch Object Source

Multipart request metadata.

opIfMetagenerationNotMatch :: Lens' ObjectsPatch (Maybe Int64) Source

Makes the operation conditional on whether the object's current metageneration does not match the given value.

opObject :: Lens' ObjectsPatch Text Source

Name of the object. For information about how to URL encode object names to be path safe, see Encoding URI Path Parts.

opProjection :: Lens' ObjectsPatch (Maybe ObjectsPatchProjection) Source

Set of properties to return. Defaults to full.

opGeneration :: Lens' ObjectsPatch (Maybe Int64) Source

If present, selects a specific revision of this object (as opposed to the latest version, the default).