Class: Google::Apis::NetworkservicesV1::ListWasmPluginsResponse
- Inherits:
-
Object
- Object
- Google::Apis::NetworkservicesV1::ListWasmPluginsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/networkservices_v1/classes.rb,
lib/google/apis/networkservices_v1/representations.rb,
lib/google/apis/networkservices_v1/representations.rb
Overview
Response returned by the ListWasmPlugins
method.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
If there might be more results than those appearing in this response, then
next_page_token
is included. -
#wasm_plugins ⇒ Array<Google::Apis::NetworkservicesV1::WasmPlugin>
List of
WasmPlugin
resources.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListWasmPluginsResponse
constructor
A new instance of ListWasmPluginsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListWasmPluginsResponse
Returns a new instance of ListWasmPluginsResponse.
2738 2739 2740 |
# File 'lib/google/apis/networkservices_v1/classes.rb', line 2738 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
If there might be more results than those appearing in this response, then
next_page_token
is included. To get the next set of results, call this method
again using the value of next_page_token
as page_token
.
Corresponds to the JSON property nextPageToken
2731 2732 2733 |
# File 'lib/google/apis/networkservices_v1/classes.rb', line 2731 def next_page_token @next_page_token end |
#wasm_plugins ⇒ Array<Google::Apis::NetworkservicesV1::WasmPlugin>
List of WasmPlugin
resources.
Corresponds to the JSON property wasmPlugins
2736 2737 2738 |
# File 'lib/google/apis/networkservices_v1/classes.rb', line 2736 def wasm_plugins @wasm_plugins end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2743 2744 2745 2746 |
# File 'lib/google/apis/networkservices_v1/classes.rb', line 2743 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @wasm_plugins = args[:wasm_plugins] if args.key?(:wasm_plugins) end |