Class: Google::Apis::VmwareengineV1::ListExternalAccessRulesResponse
- Inherits:
-
Object
- Object
- Google::Apis::VmwareengineV1::ListExternalAccessRulesResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/vmwareengine_v1/classes.rb,
lib/google/apis/vmwareengine_v1/representations.rb,
lib/google/apis/vmwareengine_v1/representations.rb
Overview
Response message for VmwareEngine.ListExternalAccessRules
Instance Attribute Summary collapse
-
#external_access_rules ⇒ Array<Google::Apis::VmwareengineV1::ExternalAccessRule>
A list of external access firewall rules.
-
#next_page_token ⇒ String
A token, which can be sent as
page_token
to retrieve the next page. -
#unreachable ⇒ Array<String>
Locations that could not be reached when making an aggregated query using wildcards.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListExternalAccessRulesResponse
constructor
A new instance of ListExternalAccessRulesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListExternalAccessRulesResponse
Returns a new instance of ListExternalAccessRulesResponse.
997 998 999 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 997 def initialize(**args) update!(**args) end |
Instance Attribute Details
#external_access_rules ⇒ Array<Google::Apis::VmwareengineV1::ExternalAccessRule>
A list of external access firewall rules.
Corresponds to the JSON property externalAccessRules
983 984 985 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 983 def external_access_rules @external_access_rules end |
#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
989 990 991 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 989 def next_page_token @next_page_token end |
#unreachable ⇒ Array<String>
Locations that could not be reached when making an aggregated query using
wildcards.
Corresponds to the JSON property unreachable
995 996 997 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 995 def unreachable @unreachable end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1002 1003 1004 1005 1006 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1002 def update!(**args) @external_access_rules = args[:external_access_rules] if args.key?(:external_access_rules) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @unreachable = args[:unreachable] if args.key?(:unreachable) end |