Class ObjectsResource.InsertRequest
Stores a new object and metadata.
Inheritance
Inherited Members
Namespace: Google.Apis.Storage.v1
Assembly: Google.Apis.Storage.v1.dll
Syntax
public class InsertRequest : StorageBaseServiceRequest<Object>, IClientServiceRequest<Object>, IClientServiceRequest
Constructors
InsertRequest(IClientService, Object, String)
Constructs a new Insert request.
Declaration
public InsertRequest(IClientService service, Object body, string bucket)
Parameters
Type | Name | Description |
---|---|---|
IClientService | service | |
Object | body | |
System.String | bucket |
Properties
Bucket
Name of the bucket in which to store the new object. Overrides the provided object metadata's bucket value, if any.
Declaration
[RequestParameter("bucket", RequestParameterType.Path)]
public virtual string Bucket { get; }
Property Value
Type | Description |
---|---|
System.String |
ContentEncoding
If set, sets the contentEncoding property of the final object to this value. Setting this parameter is equivalent to setting the contentEncoding metadata property. This can be useful when uploading an object with uploadType=media to indicate the encoding of the content being uploaded.
Declaration
[RequestParameter("contentEncoding", RequestParameterType.Query)]
public virtual string ContentEncoding { get; set; }
Property Value
Type | Description |
---|---|
System.String |
HttpMethod
Gets the HTTP method.
Declaration
public override string HttpMethod { get; }
Property Value
Type | Description |
---|---|
System.String |
Overrides
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> |
KmsKeyName
Resource name of the Cloud KMS key, of the form projects/my-project/locations/global/keyRings/my-kr/cryptoKeys/my-key, that will be used to encrypt the object. Overrides the object metadata's kms_key_name value, if any.
Declaration
[RequestParameter("kmsKeyName", RequestParameterType.Query)]
public virtual string KmsKeyName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
MethodName
Gets the method name.
Declaration
public override string MethodName { get; }
Property Value
Type | Description |
---|---|
System.String |
Overrides
Name
Name of the object. Required when the object metadata is not otherwise provided. Overrides the object metadata's name value, if any. For information about how to URL encode object names to be path safe, see Encoding URI Path Parts.
Declaration
[RequestParameter("name", RequestParameterType.Query)]
public virtual string Name { get; set; }
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.InsertRequest.PredefinedAclEnum? PredefinedAcl { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<ObjectsResource.InsertRequest.PredefinedAclEnum> |
Projection
Set of properties to return. Defaults to noAcl, unless the object resource specifies the acl property, when it defaults to full.
Declaration
[RequestParameter("projection", RequestParameterType.Query)]
public virtual ObjectsResource.InsertRequest.ProjectionEnum? Projection { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<ObjectsResource.InsertRequest.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
UserProject
The project to be billed for this request. Required 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
InitParameters()
Initializes Insert parameter list.
Declaration
protected override void InitParameters()