Class: Google::Apis::ParametermanagerV1::ListParametersResponse
- Inherits:
-
Object
- Object
- Google::Apis::ParametermanagerV1::ListParametersResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/parametermanager_v1/classes.rb,
lib/google/apis/parametermanager_v1/representations.rb,
lib/google/apis/parametermanager_v1/representations.rb
Overview
Message for response to listing Parameters
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
A token identifying a page of results the server should return.
-
#parameters ⇒ Array<Google::Apis::ParametermanagerV1::Parameter>
The list of Parameters Corresponds to the JSON property
parameters. -
#unreachable ⇒ Array<String>
Unordered list.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListParametersResponse
constructor
A new instance of ListParametersResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListParametersResponse
Returns a new instance of ListParametersResponse.
116 117 118 |
# File 'lib/google/apis/parametermanager_v1/classes.rb', line 116 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
A token identifying a page of results the server should return.
Corresponds to the JSON property nextPageToken
104 105 106 |
# File 'lib/google/apis/parametermanager_v1/classes.rb', line 104 def next_page_token @next_page_token end |
#parameters ⇒ Array<Google::Apis::ParametermanagerV1::Parameter>
The list of Parameters
Corresponds to the JSON property parameters
109 110 111 |
# File 'lib/google/apis/parametermanager_v1/classes.rb', line 109 def parameters @parameters end |
#unreachable ⇒ Array<String>
Unordered list. Locations that could not be reached.
Corresponds to the JSON property unreachable
114 115 116 |
# File 'lib/google/apis/parametermanager_v1/classes.rb', line 114 def unreachable @unreachable end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
121 122 123 124 125 |
# File 'lib/google/apis/parametermanager_v1/classes.rb', line 121 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @parameters = args[:parameters] if args.key?(:parameters) @unreachable = args[:unreachable] if args.key?(:unreachable) end |