class Google::Apis::ContaineranalysisV1alpha1::ListScanConfigsResponse

A list of scan configs for the project.

Attributes

next_page_token[RW]

A page token to pass in order to get more scan configs. Corresponds to the JSON property `nextPageToken` @return [String]

scan_configs[RW]

The set of scan configs. Corresponds to the JSON property `scanConfigs` @return [Array<Google::Apis::ContaineranalysisV1alpha1::ScanConfig>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/containeranalysis_v1alpha1/classes.rb, line 2143
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/containeranalysis_v1alpha1/classes.rb, line 2148
def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @scan_configs = args[:scan_configs] if args.key?(:scan_configs)
end