class Google::Apis::ContaineranalysisV1beta1::ListScanConfigsResponse

Response for listing scan configurations.

Attributes

next_page_token[RW]

The next pagination token in the list response. It should be used as ` page_token` for the following request. An empty value means no more results. Corresponds to the JSON property `nextPageToken` @return [String]

scan_configs[RW]

The scan configurations requested. Corresponds to the JSON property `scanConfigs` @return [Array<Google::Apis::ContaineranalysisV1beta1::ScanConfig>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/containeranalysis_v1beta1/classes.rb, line 2282
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_v1beta1/classes.rb, line 2287
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