Class: Google::Apis::ParametermanagerV1::ListParameterVersionsResponse
- Inherits:
-
Object
- Object
- Google::Apis::ParametermanagerV1::ListParameterVersionsResponse
- 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 ParameterVersions
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
A token identifying a page of results the server should return.
-
#parameter_versions ⇒ Array<Google::Apis::ParametermanagerV1::ParameterVersion>
The list of ParameterVersions Corresponds to the JSON property
parameterVersions. -
#unreachable ⇒ Array<String>
Unordered list.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListParameterVersionsResponse
constructor
A new instance of ListParameterVersionsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListParameterVersionsResponse
Returns a new instance of ListParameterVersionsResponse.
85 86 87 |
# File 'lib/google/apis/parametermanager_v1/classes.rb', line 85 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
73 74 75 |
# File 'lib/google/apis/parametermanager_v1/classes.rb', line 73 def next_page_token @next_page_token end |
#parameter_versions ⇒ Array<Google::Apis::ParametermanagerV1::ParameterVersion>
The list of ParameterVersions
Corresponds to the JSON property parameterVersions
78 79 80 |
# File 'lib/google/apis/parametermanager_v1/classes.rb', line 78 def parameter_versions @parameter_versions end |
#unreachable ⇒ Array<String>
Unordered list. Locations that could not be reached.
Corresponds to the JSON property unreachable
83 84 85 |
# File 'lib/google/apis/parametermanager_v1/classes.rb', line 83 def unreachable @unreachable end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
90 91 92 93 94 |
# File 'lib/google/apis/parametermanager_v1/classes.rb', line 90 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @parameter_versions = args[:parameter_versions] if args.key?(:parameter_versions) @unreachable = args[:unreachable] if args.key?(:unreachable) end |