Class: Google::Apis::PolicysimulatorV1beta::GoogleCloudPolicysimulatorV1betaListReplayResultsResponse
- Inherits:
-
Object
- Object
- Google::Apis::PolicysimulatorV1beta::GoogleCloudPolicysimulatorV1betaListReplayResultsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/policysimulator_v1beta/classes.rb,
lib/google/apis/policysimulator_v1beta/representations.rb,
lib/google/apis/policysimulator_v1beta/representations.rb
Overview
Response message for Simulator.ListReplayResults.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
A token that you can use to retrieve the next page of ReplayResult objects.
-
#replay_results ⇒ Array<Google::Apis::PolicysimulatorV1beta::GoogleCloudPolicysimulatorV1betaReplayResult>
The results of running a Replay.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudPolicysimulatorV1betaListReplayResultsResponse
constructor
A new instance of GoogleCloudPolicysimulatorV1betaListReplayResultsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudPolicysimulatorV1betaListReplayResultsResponse
Returns a new instance of GoogleCloudPolicysimulatorV1betaListReplayResultsResponse.
1182 1183 1184 |
# File 'lib/google/apis/policysimulator_v1beta/classes.rb', line 1182 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
A token that you can use to retrieve the next page of ReplayResult objects. If
this field is omitted, there are no subsequent pages.
Corresponds to the JSON property nextPageToken
1175 1176 1177 |
# File 'lib/google/apis/policysimulator_v1beta/classes.rb', line 1175 def next_page_token @next_page_token end |
#replay_results ⇒ Array<Google::Apis::PolicysimulatorV1beta::GoogleCloudPolicysimulatorV1betaReplayResult>
The results of running a Replay.
Corresponds to the JSON property replayResults
1180 1181 1182 |
# File 'lib/google/apis/policysimulator_v1beta/classes.rb', line 1180 def replay_results @replay_results end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1187 1188 1189 1190 |
# File 'lib/google/apis/policysimulator_v1beta/classes.rb', line 1187 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @replay_results = args[:replay_results] if args.key?(:replay_results) end |