OLD | NEW |
1 // This is a generated file (see the discoveryapis_generator project). | 1 // This is a generated file (see the discoveryapis_generator project). |
2 | 2 |
3 library googleapis_beta.sqladmin.v1beta3; | 3 library googleapis_beta.sqladmin.v1beta3; |
4 | 4 |
5 import 'dart:core' as core; | 5 import 'dart:core' as core; |
6 import 'dart:async' as async; | 6 import 'dart:async' as async; |
7 import 'dart:convert' as convert; | 7 import 'dart:convert' as convert; |
8 | 8 |
9 import 'package:_discoveryapis_commons/_discoveryapis_commons.dart' as commons; | 9 import 'package:_discoveryapis_commons/_discoveryapis_commons.dart' as commons; |
10 import 'package:http/http.dart' as http; | 10 import 'package:http/http.dart' as http; |
(...skipping 3247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3258 } | 3258 } |
3259 | 3259 |
3260 /** A Google Cloud SQL service tier resource. */ | 3260 /** A Google Cloud SQL service tier resource. */ |
3261 class Tier { | 3261 class Tier { |
3262 /** The maximum disk size of this tier in bytes. */ | 3262 /** The maximum disk size of this tier in bytes. */ |
3263 core.String DiskQuota; | 3263 core.String DiskQuota; |
3264 /** The maximum RAM usage of this tier in bytes. */ | 3264 /** The maximum RAM usage of this tier in bytes. */ |
3265 core.String RAM; | 3265 core.String RAM; |
3266 /** This is always sql#tier. */ | 3266 /** This is always sql#tier. */ |
3267 core.String kind; | 3267 core.String kind; |
3268 /** | 3268 /** The applicable regions for this tier. */ |
3269 * The applicable regions for this tier. Can be us-east1, europe-west1, or | |
3270 * asia-east1. | |
3271 */ | |
3272 core.List<core.String> region; | 3269 core.List<core.String> region; |
3273 /** | 3270 /** |
3274 * An identifier for the service tier, for example D1, D2 etc. For related | 3271 * An identifier for the service tier, for example D1, D2 etc. For related |
3275 * information, see Pricing. | 3272 * information, see Pricing. |
3276 */ | 3273 */ |
3277 core.String tier; | 3274 core.String tier; |
3278 | 3275 |
3279 Tier(); | 3276 Tier(); |
3280 | 3277 |
3281 Tier.fromJson(core.Map _json) { | 3278 Tier.fromJson(core.Map _json) { |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3339 var _json = new core.Map(); | 3336 var _json = new core.Map(); |
3340 if (items != null) { | 3337 if (items != null) { |
3341 _json["items"] = items.map((value) => (value).toJson()).toList(); | 3338 _json["items"] = items.map((value) => (value).toJson()).toList(); |
3342 } | 3339 } |
3343 if (kind != null) { | 3340 if (kind != null) { |
3344 _json["kind"] = kind; | 3341 _json["kind"] = kind; |
3345 } | 3342 } |
3346 return _json; | 3343 return _json; |
3347 } | 3344 } |
3348 } | 3345 } |
OLD | NEW |