Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListSecurityFeedbackResponse
- Inherits:
-
Object
- Object
- Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListSecurityFeedbackResponse
- 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 ListSecurityFeedback
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
A token that can be sent as
page_tokeninListSecurityFeedbackRequestto retrieve the next page. -
#security_feedback ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityFeedback>
List of SecurityFeedback reports.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudApigeeV1ListSecurityFeedbackResponse
constructor
A new instance of GoogleCloudApigeeV1ListSecurityFeedbackResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudApigeeV1ListSecurityFeedbackResponse
Returns a new instance of GoogleCloudApigeeV1ListSecurityFeedbackResponse.
7357 7358 7359 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 7357 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
A token that can be sent as page_token in ListSecurityFeedbackRequest to
retrieve the next page. If this field is omitted, there are no subsequent
pages.
Corresponds to the JSON property nextPageToken
7350 7351 7352 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 7350 def next_page_token @next_page_token end |
#security_feedback ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityFeedback>
List of SecurityFeedback reports.
Corresponds to the JSON property securityFeedback
7355 7356 7357 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 7355 def security_feedback @security_feedback end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7362 7363 7364 7365 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 7362 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @security_feedback = args[:security_feedback] if args.key?(:security_feedback) end |