class Google::Apis::AppengineV1::ListIngressRulesResponse
Response message for Firewall.ListIngressRules.
Attributes
ingress_rules[RW]
The ingress FirewallRules for this application. Corresponds to the JSON property `ingressRules` @return [Array<Google::Apis::AppengineV1::FirewallRule>]
next_page_token[RW]
Continuation token for fetching the next page of results. Corresponds to the JSON property `nextPageToken` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/appengine_v1/classes.rb, line 1565 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/appengine_v1/classes.rb, line 1570 def update!(**args) @ingress_rules = args[:ingress_rules] if args.key?(:ingress_rules) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end