Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1BatchComputeSecurityAssessmentResultsResponse
- Inherits:
-
Object
- Object
- Google::Apis::ApigeeV1::GoogleCloudApigeeV1BatchComputeSecurityAssessmentResultsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/apigee_v1/classes.rb,
lib/google/apis/apigee_v1/representations.rb,
lib/google/apis/apigee_v1/representations.rb
Overview
Response for BatchComputeSecurityAssessmentResults.
Instance Attribute Summary collapse
-
#assessment_time ⇒ String
The time of the assessment api call.
-
#next_page_token ⇒ String
A token that can be sent as
page_token
to retrieve the next page. -
#security_assessment_results ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityAssessmentResult>
Default sort order is by resource name in alphabetic order.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudApigeeV1BatchComputeSecurityAssessmentResultsResponse
constructor
A new instance of GoogleCloudApigeeV1BatchComputeSecurityAssessmentResultsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudApigeeV1BatchComputeSecurityAssessmentResultsResponse
Returns a new instance of GoogleCloudApigeeV1BatchComputeSecurityAssessmentResultsResponse.
2141 2142 2143 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 2141 def initialize(**args) update!(**args) end |
Instance Attribute Details
#assessment_time ⇒ String
The time of the assessment api call.
Corresponds to the JSON property assessmentTime
2128 2129 2130 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 2128 def assessment_time @assessment_time end |
#next_page_token ⇒ String
A token that can be sent as page_token
to retrieve the next page. If this
field is blank, there are no subsequent pages.
Corresponds to the JSON property nextPageToken
2134 2135 2136 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 2134 def next_page_token @next_page_token end |
#security_assessment_results ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityAssessmentResult>
Default sort order is by resource name in alphabetic order.
Corresponds to the JSON property securityAssessmentResults
2139 2140 2141 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 2139 def security_assessment_results @security_assessment_results end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2146 2147 2148 2149 2150 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 2146 def update!(**args) @assessment_time = args[:assessment_time] if args.key?(:assessment_time) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @security_assessment_results = args[:security_assessment_results] if args.key?(:security_assessment_results) end |