Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ComputeEnvironmentScoresResponse
- Inherits:
-
Object
- Object
- Google::Apis::ApigeeV1::GoogleCloudApigeeV1ComputeEnvironmentScoresResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/apigee_v1/classes.rb,
lib/google/apis/apigee_v1/representations.rb,
lib/google/apis/apigee_v1/representations.rb
Overview
Response for ComputeEnvironmentScores.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
A page token, received from a previous
ComputeScorecall. -
#scores ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1Score>
List of scores.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudApigeeV1ComputeEnvironmentScoresResponse
constructor
A new instance of GoogleCloudApigeeV1ComputeEnvironmentScoresResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudApigeeV1ComputeEnvironmentScoresResponse
Returns a new instance of GoogleCloudApigeeV1ComputeEnvironmentScoresResponse.
2010 2011 2012 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 2010 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
A page token, received from a previous ComputeScore call. Provide this to
retrieve the subsequent page.
Corresponds to the JSON property nextPageToken
2003 2004 2005 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 2003 def next_page_token @next_page_token end |
#scores ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1Score>
List of scores. One score per day.
Corresponds to the JSON property scores
2008 2009 2010 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 2008 def scores @scores end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2015 2016 2017 2018 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 2015 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @scores = args[:scores] if args.key?(:scores) end |