Class: Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1ListFirewallPoliciesResponse
- Inherits:
-
Object
- Object
- Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1ListFirewallPoliciesResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/recaptchaenterprise_v1/classes.rb,
lib/google/apis/recaptchaenterprise_v1/representations.rb,
lib/google/apis/recaptchaenterprise_v1/representations.rb
Overview
Response to request to list firewall policies belonging to a key.
Instance Attribute Summary collapse
-
#firewall_policies ⇒ Array<Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1FirewallPolicy>
Policy details.
-
#next_page_token ⇒ String
Token to retrieve the next page of results.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudRecaptchaenterpriseV1ListFirewallPoliciesResponse
constructor
A new instance of GoogleCloudRecaptchaenterpriseV1ListFirewallPoliciesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudRecaptchaenterpriseV1ListFirewallPoliciesResponse
Returns a new instance of GoogleCloudRecaptchaenterpriseV1ListFirewallPoliciesResponse.
907 908 909 |
# File 'lib/google/apis/recaptchaenterprise_v1/classes.rb', line 907 def initialize(**args) update!(**args) end |
Instance Attribute Details
#firewall_policies ⇒ Array<Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1FirewallPolicy>
Policy details.
Corresponds to the JSON property firewallPolicies
899 900 901 |
# File 'lib/google/apis/recaptchaenterprise_v1/classes.rb', line 899 def firewall_policies @firewall_policies end |
#next_page_token ⇒ String
Token to retrieve the next page of results. It is set to empty if no policies
remain in results.
Corresponds to the JSON property nextPageToken
905 906 907 |
# File 'lib/google/apis/recaptchaenterprise_v1/classes.rb', line 905 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
912 913 914 915 |
# File 'lib/google/apis/recaptchaenterprise_v1/classes.rb', line 912 def update!(**args) @firewall_policies = args[:firewall_policies] if args.key?(:firewall_policies) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |