Show / Hide Table of Contents

Class ProjectsResource.ScanConfigsResource.PatchRequest

Updates a ScanConfig. This method support partial update of a ScanConfig.

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

Constructors

PatchRequest(IClientService, ScanConfig, String)

Constructs a new Patch request.

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

Properties

HttpMethod

Gets the HTTP method.

Declaration
public override string HttpMethod { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.WebSecurityScanner.v1.Data.ScanConfig>.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.WebSecurityScanner.v1.Data.ScanConfig>.MethodName

Name

The resource name of the ScanConfig. The name follows the format of 'projects/{projectId}/scanConfigs/{scanConfigId}'. The ScanConfig IDs are generated by the system.

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.WebSecurityScanner.v1.Data.ScanConfig>.RestPath

UpdateMask

Required. The update mask applies to the resource. For the FieldMask definition, see https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#fieldmask

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

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.WebSecurityScanner.v1.Data.ScanConfig>.GetBody()

InitParameters()

Initializes Patch parameter list.

Declaration
protected override void InitParameters()
Overrides
Google.Apis.WebSecurityScanner.v1.WebSecurityScannerBaseServiceRequest<Google.Apis.WebSecurityScanner.v1.Data.ScanConfig>.InitParameters()

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
Back to top