Show / Hide Table of Contents

Class ListScanConfigsResponse

A list of scan configs for the project.

Inheritance
System.Object
ListScanConfigsResponse
Implements
Google.Apis.Requests.IDirectResponseSchema
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.v1alpha1.Data
Assembly: Google.Apis.ContainerAnalysis.v1alpha1.dll
Syntax
public class ListScanConfigsResponse : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

NextPageToken

A page token to pass in order to get more scan configs.

Declaration
[JsonProperty("nextPageToken")]
public virtual string NextPageToken { get; set; }
Property Value
Type Description
System.String

ScanConfigs

The set of scan configs.

Declaration
[JsonProperty("scanConfigs")]
public virtual IList<ScanConfig> ScanConfigs { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<ScanConfig>

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top