Show / Hide Table of Contents

Class ProjectsResource.ScanConfigsResource

The "scanConfigs" collection of methods.

Inheritance
System.Object
ProjectsResource.ScanConfigsResource
Inherited Members
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.ContainerAnalysis.v1beta1
Assembly: Google.Apis.ContainerAnalysis.v1beta1.dll
Syntax
public class ScanConfigsResource

Constructors

ScanConfigsResource(IClientService)

Constructs a new resource.

Declaration
public ScanConfigsResource(IClientService service)
Parameters
Type Name Description
IClientService service

Methods

Get(String)

Gets the specified scan configuration.

Declaration
public virtual ProjectsResource.ScanConfigsResource.GetRequest Get(string name)
Parameters
Type Name Description
System.String name

Required. The name of the scan configuration in the form of projects/[PROJECT_ID]/scanConfigs/[SCAN_CONFIG_ID].

Returns
Type Description
ProjectsResource.ScanConfigsResource.GetRequest

List(String)

Lists scan configurations for the specified project.

Declaration
public virtual ProjectsResource.ScanConfigsResource.ListRequest List(string parent)
Parameters
Type Name Description
System.String parent

Required. The name of the project to list scan configurations for in the form of projects/[PROJECT_ID].

Returns
Type Description
ProjectsResource.ScanConfigsResource.ListRequest

Update(ScanConfig, String)

Updates the specified scan configuration.

Declaration
public virtual ProjectsResource.ScanConfigsResource.UpdateRequest Update(ScanConfig body, string name)
Parameters
Type Name Description
ScanConfig body

The body of the request.

System.String name

Required. The name of the scan configuration in the form of projects/[PROJECT_ID]/scanConfigs/[SCAN_CONFIG_ID].

Returns
Type Description
ProjectsResource.ScanConfigsResource.UpdateRequest
In This Article
Back to top