Show / Hide Table of Contents

Class ProjectsResource.InstancesResource.DatabasesResource.GetScansRequest

Request a specific scan with Database-specific data for Cloud Key Visualizer.

Inheritance
System.Object
ClientServiceRequest
ClientServiceRequest<Scan>
SpannerBaseServiceRequest<Scan>
ProjectsResource.InstancesResource.DatabasesResource.GetScansRequest
Implements
IClientServiceRequest<Scan>
IClientServiceRequest
Inherited Members
SpannerBaseServiceRequest<Scan>.Xgafv
SpannerBaseServiceRequest<Scan>.AccessToken
SpannerBaseServiceRequest<Scan>.Alt
SpannerBaseServiceRequest<Scan>.Callback
SpannerBaseServiceRequest<Scan>.Fields
SpannerBaseServiceRequest<Scan>.Key
SpannerBaseServiceRequest<Scan>.OauthToken
SpannerBaseServiceRequest<Scan>.PrettyPrint
SpannerBaseServiceRequest<Scan>.QuotaUser
SpannerBaseServiceRequest<Scan>.UploadType
SpannerBaseServiceRequest<Scan>.UploadProtocol
ClientServiceRequest<Scan>.Execute()
ClientServiceRequest<Scan>.ExecuteAsStream()
ClientServiceRequest<Scan>.ExecuteAsync()
ClientServiceRequest<Scan>.ExecuteAsync(CancellationToken)
ClientServiceRequest<Scan>.ExecuteAsStreamAsync()
ClientServiceRequest<Scan>.ExecuteAsStreamAsync(CancellationToken)
ClientServiceRequest<Scan>.CreateRequest(Nullable<Boolean>)
ClientServiceRequest<Scan>.GenerateRequestUri()
ClientServiceRequest<Scan>.GetBody()
ClientServiceRequest<Scan>.GetDefaultETagAction(String)
ClientServiceRequest<Scan>.ETagAction
ClientServiceRequest<Scan>.ModifyRequest
ClientServiceRequest<Scan>.ValidateParameters
ClientServiceRequest<Scan>.RequestParameters
ClientServiceRequest<Scan>.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.Spanner.v1
Assembly: Google.Apis.Spanner.v1.dll
Syntax
public class GetScansRequest : SpannerBaseServiceRequest<Scan>, IClientServiceRequest<Scan>, IClientServiceRequest

Constructors

GetScansRequest(IClientService, String)

Constructs a new GetScans request.

Declaration
public GetScansRequest(IClientService service, string name)
Parameters
Type Name Description
IClientService service
System.String name

Properties

EndTime

The upper bound for the time range to retrieve Scan data for.

Declaration
[RequestParameter("endTime", RequestParameterType.Query)]
public virtual object EndTime { get; set; }
Property Value
Type Description
System.Object

HttpMethod

Gets the HTTP method.

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

MethodName

Gets the method name.

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

Name

Required. The unique name of the scan containing the requested information, specific to the Database service implementing this interface.

Declaration
[RequestParameter("name", RequestParameterType.Path)]
public virtual string Name { get; }
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.Spanner.v1.Data.Scan>.RestPath

StartTime

These fields restrict the Database-specific information returned in the Scan.data field. If a View is provided that does not include the Scan.data field, these are ignored. This range of time must be entirely contained within the defined time range of the targeted scan. The lower bound for the time range to retrieve Scan data for.

Declaration
[RequestParameter("startTime", RequestParameterType.Query)]
public virtual object StartTime { get; set; }
Property Value
Type Description
System.Object

View

Specifies which parts of the Scan should be returned in the response. Note, if left unspecified, the FULL view is assumed.

Declaration
[RequestParameter("view", RequestParameterType.Query)]
public virtual ProjectsResource.InstancesResource.DatabasesResource.GetScansRequest.ViewEnum? View { get; set; }
Property Value
Type Description
System.Nullable<ProjectsResource.InstancesResource.DatabasesResource.GetScansRequest.ViewEnum>

Methods

InitParameters()

Initializes GetScans parameter list.

Declaration
protected override void InitParameters()
Overrides
Google.Apis.Spanner.v1.SpannerBaseServiceRequest<Google.Apis.Spanner.v1.Data.Scan>.InitParameters()

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
In This Article
Back to top