Class ProjectsResource.InstancesResource.DatabasesResource.PatchRequest
Updates a Cloud Spanner database. The returned long-running operation can be used to track the
progress of updating the database. If the named database does not exist, returns NOT_FOUND
. While
the operation is pending: * The database's reconciling field is set to true. * Cancelling the
operation is best-effort. If the cancellation succeeds, the operation metadata's cancel_time is set,
the updates are reverted, and the operation terminates with a CANCELLED
status. * New
UpdateDatabase requests will return a FAILED_PRECONDITION
error until the pending operation is
done (returns successfully or with error). * Reading the database via the API continues to give the
pre-request values. Upon completion of the returned operation: * The new values are in effect and
readable via the API. * The database's reconciling field becomes false. The returned long-running
operation will have a name of the format projects//instances//databases//operations/
and can be
used to track the database modification. The metadata field type is UpdateDatabaseMetadata. The
response field type is Database, if successful.
Inheritance
Inherited Members
Namespace: Google.Apis.Spanner.v1
Assembly: Google.Apis.Spanner.v1.dll
Syntax
public class ProjectsResource.InstancesResource.DatabasesResource.PatchRequest : SpannerBaseServiceRequest<Operation>, IClientServiceRequest<Operation>, IClientServiceRequest
Constructors
PatchRequest(IClientService, Database, string)
Constructs a new Patch request.
Declaration
public PatchRequest(IClientService service, Database body, string name)
Parameters
Type | Name | Description |
---|---|---|
IClientService | service | |
Database | body | |
string | name |
Properties
HttpMethod
Gets the HTTP method.
Declaration
public override string HttpMethod { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
MethodName
Gets the method name.
Declaration
public override string MethodName { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
Name
Required. The name of the database. Values are of the form projects//instances//databases/
,
where `` is as specified in the CREATE DATABASE
statement. This name can be passed to other
API methods to identify the database.
Declaration
[RequestParameter("name", RequestParameterType.Path)]
public virtual string Name { get; }
Property Value
Type | Description |
---|---|
string |
RestPath
Gets the REST path.
Declaration
public override string RestPath { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
UpdateMask
Required. The list of fields to update. Currently, only enable_drop_protection
field can be
updated.
Declaration
[RequestParameter("updateMask", RequestParameterType.Query)]
public virtual object UpdateMask { get; set; }
Property Value
Type | Description |
---|---|
object |
Methods
GetBody()
Returns the body of the request.
Declaration
protected override object GetBody()
Returns
Type | Description |
---|---|
object |
Overrides
InitParameters()
Initializes Patch parameter list.
Declaration
protected override void InitParameters()