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.
7308 7309 7310 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 7308 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
7301 7302 7303 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 7301 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
7306 7307 7308 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 7306 def security_feedback @security_feedback end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7313 7314 7315 7316 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 7313 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 |