Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListSecurityMonitoringConditionsResponse
- Inherits:
-
Object
- Object
- Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListSecurityMonitoringConditionsResponse
- 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 ListSecurityMonitoringConditions.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
A token that can be sent as
page_tokento retrieve the next page. -
#security_monitoring_conditions ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityMonitoringCondition>
List of security monitoring conditions in the organization.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudApigeeV1ListSecurityMonitoringConditionsResponse
constructor
A new instance of GoogleCloudApigeeV1ListSecurityMonitoringConditionsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudApigeeV1ListSecurityMonitoringConditionsResponse
Returns a new instance of GoogleCloudApigeeV1ListSecurityMonitoringConditionsResponse.
7360 7361 7362 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 7360 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
A token that 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
7353 7354 7355 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 7353 def next_page_token @next_page_token end |
#security_monitoring_conditions ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityMonitoringCondition>
List of security monitoring conditions in the organization.
Corresponds to the JSON property securityMonitoringConditions
7358 7359 7360 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 7358 def security_monitoring_conditions @security_monitoring_conditions end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7365 7366 7367 7368 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 7365 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @security_monitoring_conditions = args[:security_monitoring_conditions] if args.key?(:security_monitoring_conditions) end |