container  v1
metric.h
1 // Copyright 2010 Google Inc.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License"); you may not
4 // use this file except in compliance with the License. You may obtain a copy of
5 // the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11 // WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12 // License for the specific language governing permissions and limitations under
13 // the License.
14 
15 // This code was generated by google-apis-code-generator 1.5.1
16 // Build date: 2018-10-08 17:45:39 UTC
17 // on: 2020-03-07, 01:20:42 UTC
18 // C++ generator version: 0.1.4
19 
20 // ----------------------------------------------------------------------------
21 // NOTE: This file is generated from Google APIs Discovery Service.
22 // Service:
23 // Kubernetes Engine API (container/v1)
24 // Generated from:
25 // Version: v1
26 // Revision: 93
27 // Generated by:
28 // Tool: google-apis-code-generator 1.5.1
29 // C++: 0.1.4
30 #ifndef GOOGLE_CONTAINER_API_METRIC_H_
31 #define GOOGLE_CONTAINER_API_METRIC_H_
32 
33 #include <string>
34 #include "googleapis/base/integral_types.h"
35 #include "googleapis/base/macros.h"
36 #include "googleapis/client/data/jsoncpp_data.h"
37 #include "googleapis/strings/stringpiece.h"
38 
39 namespace Json {
40 class Value;
41 } // namespace Json
42 
43 namespace google_container_api {
44 using namespace googleapis;
45 
51 class Metric : public client::JsonCppData {
52  public:
58  static Metric* New();
59 
65  explicit Metric(const Json::Value& storage);
66 
72  explicit Metric(Json::Value* storage);
73 
77  virtual ~Metric();
78 
84  const StringPiece GetTypeName() const {
85  return StringPiece("google_container_api::Metric");
86  }
87 
93  bool has_double_value() const {
94  return Storage().isMember("doubleValue");
95  }
96 
101  MutableStorage()->removeMember("doubleValue");
102  }
103 
104 
108  double get_double_value() const {
109  const Json::Value& storage = Storage("doubleValue");
110  return client::JsonValueToCppValueHelper<double >(storage);
111  }
112 
120  void set_double_value(double value) {
121  client::SetJsonValueFromCppValueHelper<double >(
122  value, MutableStorage("doubleValue"));
123  }
124 
130  bool has_int_value() const {
131  return Storage().isMember("intValue");
132  }
133 
138  MutableStorage()->removeMember("intValue");
139  }
140 
141 
145  int64 get_int_value() const {
146  const Json::Value& storage = Storage("intValue");
147  return client::JsonValueToCppValueHelper<int64 >(storage);
148  }
149 
157  void set_int_value(int64 value) {
158  client::SetJsonValueFromCppValueHelper<int64 >(
159  value, MutableStorage("intValue"));
160  }
161 
167  bool has_name() const {
168  return Storage().isMember("name");
169  }
170 
174  void clear_name() {
175  MutableStorage()->removeMember("name");
176  }
177 
178 
182  const StringPiece get_name() const {
183  const Json::Value& v = Storage("name");
184  if (v == Json::Value::null) return StringPiece("");
185  return StringPiece(v.asCString());
186  }
187 
195  void set_name(const StringPiece& value) {
196  *MutableStorage("name") = value.data();
197  }
198 
204  bool has_string_value() const {
205  return Storage().isMember("stringValue");
206  }
207 
212  MutableStorage()->removeMember("stringValue");
213  }
214 
215 
219  const StringPiece get_string_value() const {
220  const Json::Value& v = Storage("stringValue");
221  if (v == Json::Value::null) return StringPiece("");
222  return StringPiece(v.asCString());
223  }
224 
232  void set_string_value(const StringPiece& value) {
233  *MutableStorage("stringValue") = value.data();
234  }
235 
236  private:
237  void operator=(const Metric&);
238 }; // Metric
239 } // namespace google_container_api
240 #endif // GOOGLE_CONTAINER_API_METRIC_H_
void set_string_value(const StringPiece &value)
Definition: metric.h:232
void set_double_value(double value)
Definition: metric.h:120
bool has_string_value() const
Definition: metric.h:204
void clear_int_value()
Definition: metric.h:137
void clear_string_value()
Definition: metric.h:211
Definition: metric.h:51
const StringPiece get_name() const
Definition: metric.h:182
void clear_double_value()
Definition: metric.h:100
bool has_double_value() const
Definition: metric.h:93
bool has_name() const
Definition: metric.h:167
Definition: accelerator_config.h:39
Definition: accelerator_config.cc:41
bool has_int_value() const
Definition: metric.h:130
double get_double_value() const
Definition: metric.h:108
void clear_name()
Definition: metric.h:174
void set_int_value(int64 value)
Definition: metric.h:157
const StringPiece get_string_value() const
Definition: metric.h:219
void set_name(const StringPiece &value)
Definition: metric.h:195
int64 get_int_value() const
Definition: metric.h:145
const StringPiece GetTypeName() const
Definition: metric.h:84