Class: Google::Apis::ContaineranalysisV1beta1::ListScanConfigsResponse
- Inherits:
-
Object
- Object
- Google::Apis::ContaineranalysisV1beta1::ListScanConfigsResponse
- Defined in:
- generated/google/apis/containeranalysis_v1beta1/classes.rb,
generated/google/apis/containeranalysis_v1beta1/representations.rb,
generated/google/apis/containeranalysis_v1beta1/representations.rb
Overview
Response for listing scan configurations.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
The next pagination token in the list response.
-
#scan_configs ⇒ Array<Google::Apis::ContaineranalysisV1beta1::ScanConfig>
The scan configurations requested.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListScanConfigsResponse
constructor
A new instance of ListScanConfigsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListScanConfigsResponse
Returns a new instance of ListScanConfigsResponse
1704 1705 1706 |
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 1704 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
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
1697 1698 1699 |
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 1697 def next_page_token @next_page_token end |
#scan_configs ⇒ Array<Google::Apis::ContaineranalysisV1beta1::ScanConfig>
The scan configurations requested.
Corresponds to the JSON property scanConfigs
1702 1703 1704 |
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 1702 def scan_configs @scan_configs end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1709 1710 1711 1712 |
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 1709 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 |