Show / Hide Table of Contents

Class ObjectsResource.PatchRequest

Patches an object's metadata.

Inheritance
System.Object
ClientServiceRequest
ClientServiceRequest<Object>
StorageBaseServiceRequest<Object>
ObjectsResource.PatchRequest
Implements
IClientServiceRequest<Object>
IClientServiceRequest
Inherited Members
StorageBaseServiceRequest<Object>.Alt
StorageBaseServiceRequest<Object>.Fields
StorageBaseServiceRequest<Object>.Key
StorageBaseServiceRequest<Object>.OauthToken
StorageBaseServiceRequest<Object>.PrettyPrint
StorageBaseServiceRequest<Object>.QuotaUser
StorageBaseServiceRequest<Object>.UserIp
ClientServiceRequest<Object>.Execute()
ClientServiceRequest<Object>.ExecuteAsStream()
ClientServiceRequest<Object>.ExecuteAsync()
ClientServiceRequest<Object>.ExecuteAsync(CancellationToken)
ClientServiceRequest<Object>.ExecuteAsStreamAsync()
ClientServiceRequest<Object>.ExecuteAsStreamAsync(CancellationToken)
ClientServiceRequest<Object>.CreateRequest(Nullable<Boolean>)
ClientServiceRequest<Object>.GenerateRequestUri()
ClientServiceRequest<Object>.GetDefaultETagAction(String)
ClientServiceRequest<Object>.ETagAction
ClientServiceRequest<Object>.ModifyRequest
ClientServiceRequest<Object>.ValidateParameters
ClientServiceRequest<Object>.RequestParameters
ClientServiceRequest<Object>.Service
ClientServiceRequest._unsuccessfulResponseHandlers
ClientServiceRequest._exceptionHandlers
ClientServiceRequest._executeInterceptors
ClientServiceRequest.AddUnsuccessfulResponseHandler(IHttpUnsuccessfulResponseHandler)
ClientServiceRequest.AddExceptionHandler(IHttpExceptionHandler)
ClientServiceRequest.AddExecuteInterceptor(IHttpExecuteInterceptor)
ClientServiceRequest.Credential
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Storage.v1
Assembly: Google.Apis.Storage.v1.dll
Syntax
public class PatchRequest : StorageBaseServiceRequest<Object>, IClientServiceRequest<Object>, IClientServiceRequest

Constructors

PatchRequest(IClientService, Object, String, String)

Constructs a new Patch request.

Declaration
public PatchRequest(IClientService service, Object body, string bucket, string storageObject)
Parameters
Type Name Description
IClientService service
Object body
System.String bucket
System.String storageObject

Properties

Bucket

Name of the bucket in which the object resides.

Declaration
[RequestParameter("bucket", RequestParameterType.Path)]
public virtual string Bucket { get; }
Property Value
Type Description
System.String

Generation

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

Declaration
[RequestParameter("generation", RequestParameterType.Query)]
public virtual long? Generation { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

HttpMethod

Gets the HTTP method.

Declaration
public override string HttpMethod { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Storage.v1.Data.Object>.HttpMethod

IfGenerationMatch

Makes the operation conditional on whether the object's current generation matches the given value. Setting to 0 makes the operation succeed only if there are no live versions of the object.

Declaration
[RequestParameter("ifGenerationMatch", RequestParameterType.Query)]
public virtual long? IfGenerationMatch { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

IfGenerationNotMatch

Makes the operation conditional on whether the object's current generation does not match the given value. If no live object exists, the precondition fails. Setting to 0 makes the operation succeed only if there is a live version of the object.

Declaration
[RequestParameter("ifGenerationNotMatch", RequestParameterType.Query)]
public virtual long? IfGenerationNotMatch { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

IfMetagenerationMatch

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

Declaration
[RequestParameter("ifMetagenerationMatch", RequestParameterType.Query)]
public virtual long? IfMetagenerationMatch { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

IfMetagenerationNotMatch

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

Declaration
[RequestParameter("ifMetagenerationNotMatch", RequestParameterType.Query)]
public virtual long? IfMetagenerationNotMatch { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

MethodName

Gets the method name.

Declaration
public override string MethodName { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Storage.v1.Data.Object>.MethodName

Object

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

Declaration
[RequestParameter("object", RequestParameterType.Path)]
public virtual string Object { get; }
Property Value
Type Description
System.String

PredefinedAcl

Apply a predefined set of access controls to this object.

Declaration
[RequestParameter("predefinedAcl", RequestParameterType.Query)]
public virtual ObjectsResource.PatchRequest.PredefinedAclEnum? PredefinedAcl { get; set; }
Property Value
Type Description
System.Nullable<ObjectsResource.PatchRequest.PredefinedAclEnum>

Projection

Set of properties to return. Defaults to full.

Declaration
[RequestParameter("projection", RequestParameterType.Query)]
public virtual ObjectsResource.PatchRequest.ProjectionEnum? Projection { get; set; }
Property Value
Type Description
System.Nullable<ObjectsResource.PatchRequest.ProjectionEnum>

ProvisionalUserProject

The project to be billed for this request if the target bucket is requester-pays bucket.

Declaration
[RequestParameter("provisionalUserProject", RequestParameterType.Query)]
public virtual string ProvisionalUserProject { get; set; }
Property Value
Type Description
System.String

RestPath

Gets the REST path.

Declaration
public override string RestPath { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Storage.v1.Data.Object>.RestPath

UserProject

The project to be billed for this request, for Requester Pays buckets.

Declaration
[RequestParameter("userProject", RequestParameterType.Query)]
public virtual string UserProject { get; set; }
Property Value
Type Description
System.String

Methods

GetBody()

Returns the body of the request.

Declaration
protected override object GetBody()
Returns
Type Description
System.Object
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Storage.v1.Data.Object>.GetBody()

InitParameters()

Initializes Patch parameter list.

Declaration
protected override void InitParameters()
Overrides
Google.Apis.Storage.v1.StorageBaseServiceRequest<Google.Apis.Storage.v1.Data.Object>.InitParameters()

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
In This Article
Back to top