Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListSecurityActionsResponse
- Inherits:
-
Object
- Object
- Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListSecurityActionsResponse
- 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
Contains a list of SecurityActions in response to a ListSecurityActionRequest.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
A token, which can be sent as
page_tokento retrieve the next page. -
#security_actions ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityAction>
The SecurityActions for the specified environment.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudApigeeV1ListSecurityActionsResponse
constructor
A new instance of GoogleCloudApigeeV1ListSecurityActionsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudApigeeV1ListSecurityActionsResponse
Returns a new instance of GoogleCloudApigeeV1ListSecurityActionsResponse.
6553 6554 6555 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6553 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
A token, which can be sent as page_token to retrieve the next page. If this
field is omitted, there are no subsequent pages.
Corresponds to the JSON property nextPageToken
6546 6547 6548 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6546 def next_page_token @next_page_token end |
#security_actions ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityAction>
The SecurityActions for the specified environment.
Corresponds to the JSON property securityActions
6551 6552 6553 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6551 def security_actions @security_actions end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6558 6559 6560 6561 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6558 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @security_actions = args[:security_actions] if args.key?(:security_actions) end |