| 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.appengine.v1beta; | 3 library googleapis_beta.appengine.v1beta; |
| 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 381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 392 } | 392 } |
| 393 | 393 |
| 394 /** | 394 /** |
| 395 * Lists all SSL certificates the user is authorized to administer. | 395 * Lists all SSL certificates the user is authorized to administer. |
| 396 * | 396 * |
| 397 * Request parameters: | 397 * Request parameters: |
| 398 * | 398 * |
| 399 * [appsId] - Part of `parent`. Name of the parent Application resource. | 399 * [appsId] - Part of `parent`. Name of the parent Application resource. |
| 400 * Example: apps/myapp. | 400 * Example: apps/myapp. |
| 401 * | 401 * |
| 402 * [pageToken] - Continuation token for fetching the next page of results. |
| 403 * |
| 402 * [pageSize] - Maximum results to return per page. | 404 * [pageSize] - Maximum results to return per page. |
| 403 * | 405 * |
| 404 * [view] - Controls the set of fields returned in the LIST response. | 406 * [view] - Controls the set of fields returned in the LIST response. |
| 405 * Possible string values are: | 407 * Possible string values are: |
| 406 * - "BASIC_CERTIFICATE" : A BASIC_CERTIFICATE. | 408 * - "BASIC_CERTIFICATE" : A BASIC_CERTIFICATE. |
| 407 * - "FULL_CERTIFICATE" : A FULL_CERTIFICATE. | 409 * - "FULL_CERTIFICATE" : A FULL_CERTIFICATE. |
| 408 * | 410 * |
| 409 * [pageToken] - Continuation token for fetching the next page of results. | |
| 410 * | |
| 411 * Completes with a [ListAuthorizedCertificatesResponse]. | 411 * Completes with a [ListAuthorizedCertificatesResponse]. |
| 412 * | 412 * |
| 413 * Completes with a [commons.ApiRequestError] if the API endpoint returned an | 413 * Completes with a [commons.ApiRequestError] if the API endpoint returned an |
| 414 * error. | 414 * error. |
| 415 * | 415 * |
| 416 * If the used [http.Client] completes with an error when making a REST call, | 416 * If the used [http.Client] completes with an error when making a REST call, |
| 417 * this method will complete with the same error. | 417 * this method will complete with the same error. |
| 418 */ | 418 */ |
| 419 async.Future<ListAuthorizedCertificatesResponse> list(core.String appsId, {cor
e.int pageSize, core.String view, core.String pageToken}) { | 419 async.Future<ListAuthorizedCertificatesResponse> list(core.String appsId, {cor
e.String pageToken, core.int pageSize, core.String view}) { |
| 420 var _url = null; | 420 var _url = null; |
| 421 var _queryParams = new core.Map(); | 421 var _queryParams = new core.Map(); |
| 422 var _uploadMedia = null; | 422 var _uploadMedia = null; |
| 423 var _uploadOptions = null; | 423 var _uploadOptions = null; |
| 424 var _downloadOptions = commons.DownloadOptions.Metadata; | 424 var _downloadOptions = commons.DownloadOptions.Metadata; |
| 425 var _body = null; | 425 var _body = null; |
| 426 | 426 |
| 427 if (appsId == null) { | 427 if (appsId == null) { |
| 428 throw new core.ArgumentError("Parameter appsId is required."); | 428 throw new core.ArgumentError("Parameter appsId is required."); |
| 429 } | 429 } |
| 430 if (pageToken != null) { |
| 431 _queryParams["pageToken"] = [pageToken]; |
| 432 } |
| 430 if (pageSize != null) { | 433 if (pageSize != null) { |
| 431 _queryParams["pageSize"] = ["${pageSize}"]; | 434 _queryParams["pageSize"] = ["${pageSize}"]; |
| 432 } | 435 } |
| 433 if (view != null) { | 436 if (view != null) { |
| 434 _queryParams["view"] = [view]; | 437 _queryParams["view"] = [view]; |
| 435 } | 438 } |
| 436 if (pageToken != null) { | |
| 437 _queryParams["pageToken"] = [pageToken]; | |
| 438 } | |
| 439 | 439 |
| 440 _url = 'v1beta/apps/' + commons.Escaper.ecapeVariable('$appsId') + '/authori
zedCertificates'; | 440 _url = 'v1beta/apps/' + commons.Escaper.ecapeVariable('$appsId') + '/authori
zedCertificates'; |
| 441 | 441 |
| 442 var _response = _requester.request(_url, | 442 var _response = _requester.request(_url, |
| 443 "GET", | 443 "GET", |
| 444 body: _body, | 444 body: _body, |
| 445 queryParams: _queryParams, | 445 queryParams: _queryParams, |
| 446 uploadOptions: _uploadOptions, | 446 uploadOptions: _uploadOptions, |
| 447 uploadMedia: _uploadMedia, | 447 uploadMedia: _uploadMedia, |
| 448 downloadOptions: _downloadOptions); | 448 downloadOptions: _downloadOptions); |
| (...skipping 743 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1192 } | 1192 } |
| 1193 | 1193 |
| 1194 /** | 1194 /** |
| 1195 * Lists information about the supported locations for this service. | 1195 * Lists information about the supported locations for this service. |
| 1196 * | 1196 * |
| 1197 * Request parameters: | 1197 * Request parameters: |
| 1198 * | 1198 * |
| 1199 * [appsId] - Part of `name`. The resource that owns the locations collection, | 1199 * [appsId] - Part of `name`. The resource that owns the locations collection, |
| 1200 * if applicable. | 1200 * if applicable. |
| 1201 * | 1201 * |
| 1202 * [pageSize] - The standard list page size. | |
| 1203 * | |
| 1204 * [filter] - The standard list filter. | 1202 * [filter] - The standard list filter. |
| 1205 * | 1203 * |
| 1206 * [pageToken] - The standard list page token. | 1204 * [pageToken] - The standard list page token. |
| 1207 * | 1205 * |
| 1206 * [pageSize] - The standard list page size. |
| 1207 * |
| 1208 * Completes with a [ListLocationsResponse]. | 1208 * Completes with a [ListLocationsResponse]. |
| 1209 * | 1209 * |
| 1210 * Completes with a [commons.ApiRequestError] if the API endpoint returned an | 1210 * Completes with a [commons.ApiRequestError] if the API endpoint returned an |
| 1211 * error. | 1211 * error. |
| 1212 * | 1212 * |
| 1213 * If the used [http.Client] completes with an error when making a REST call, | 1213 * If the used [http.Client] completes with an error when making a REST call, |
| 1214 * this method will complete with the same error. | 1214 * this method will complete with the same error. |
| 1215 */ | 1215 */ |
| 1216 async.Future<ListLocationsResponse> list(core.String appsId, {core.int pageSiz
e, core.String filter, core.String pageToken}) { | 1216 async.Future<ListLocationsResponse> list(core.String appsId, {core.String filt
er, core.String pageToken, core.int pageSize}) { |
| 1217 var _url = null; | 1217 var _url = null; |
| 1218 var _queryParams = new core.Map(); | 1218 var _queryParams = new core.Map(); |
| 1219 var _uploadMedia = null; | 1219 var _uploadMedia = null; |
| 1220 var _uploadOptions = null; | 1220 var _uploadOptions = null; |
| 1221 var _downloadOptions = commons.DownloadOptions.Metadata; | 1221 var _downloadOptions = commons.DownloadOptions.Metadata; |
| 1222 var _body = null; | 1222 var _body = null; |
| 1223 | 1223 |
| 1224 if (appsId == null) { | 1224 if (appsId == null) { |
| 1225 throw new core.ArgumentError("Parameter appsId is required."); | 1225 throw new core.ArgumentError("Parameter appsId is required."); |
| 1226 } | 1226 } |
| 1227 if (pageSize != null) { | |
| 1228 _queryParams["pageSize"] = ["${pageSize}"]; | |
| 1229 } | |
| 1230 if (filter != null) { | 1227 if (filter != null) { |
| 1231 _queryParams["filter"] = [filter]; | 1228 _queryParams["filter"] = [filter]; |
| 1232 } | 1229 } |
| 1233 if (pageToken != null) { | 1230 if (pageToken != null) { |
| 1234 _queryParams["pageToken"] = [pageToken]; | 1231 _queryParams["pageToken"] = [pageToken]; |
| 1235 } | 1232 } |
| 1233 if (pageSize != null) { |
| 1234 _queryParams["pageSize"] = ["${pageSize}"]; |
| 1235 } |
| 1236 | 1236 |
| 1237 _url = 'v1beta/apps/' + commons.Escaper.ecapeVariable('$appsId') + '/locatio
ns'; | 1237 _url = 'v1beta/apps/' + commons.Escaper.ecapeVariable('$appsId') + '/locatio
ns'; |
| 1238 | 1238 |
| 1239 var _response = _requester.request(_url, | 1239 var _response = _requester.request(_url, |
| 1240 "GET", | 1240 "GET", |
| 1241 body: _body, | 1241 body: _body, |
| 1242 queryParams: _queryParams, | 1242 queryParams: _queryParams, |
| 1243 uploadOptions: _uploadOptions, | 1243 uploadOptions: _uploadOptions, |
| 1244 uploadMedia: _uploadMedia, | 1244 uploadMedia: _uploadMedia, |
| 1245 downloadOptions: _downloadOptions); | 1245 downloadOptions: _downloadOptions); |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1309 * binding, API services can add a binding such as "/v1/{name=users / * | 1309 * binding, API services can add a binding such as "/v1/{name=users / * |
| 1310 * }/operations" to their service configuration. For backwards compatibility, | 1310 * }/operations" to their service configuration. For backwards compatibility, |
| 1311 * the default name includes the operations collection id, however overriding | 1311 * the default name includes the operations collection id, however overriding |
| 1312 * users must ensure the name binding is the parent resource, without the | 1312 * users must ensure the name binding is the parent resource, without the |
| 1313 * operations collection id. | 1313 * operations collection id. |
| 1314 * | 1314 * |
| 1315 * Request parameters: | 1315 * Request parameters: |
| 1316 * | 1316 * |
| 1317 * [appsId] - Part of `name`. The name of the operation's parent resource. | 1317 * [appsId] - Part of `name`. The name of the operation's parent resource. |
| 1318 * | 1318 * |
| 1319 * [filter] - The standard list filter. | |
| 1320 * | |
| 1321 * [pageToken] - The standard list page token. | 1319 * [pageToken] - The standard list page token. |
| 1322 * | 1320 * |
| 1323 * [pageSize] - The standard list page size. | 1321 * [pageSize] - The standard list page size. |
| 1324 * | 1322 * |
| 1323 * [filter] - The standard list filter. |
| 1324 * |
| 1325 * Completes with a [ListOperationsResponse]. | 1325 * Completes with a [ListOperationsResponse]. |
| 1326 * | 1326 * |
| 1327 * Completes with a [commons.ApiRequestError] if the API endpoint returned an | 1327 * Completes with a [commons.ApiRequestError] if the API endpoint returned an |
| 1328 * error. | 1328 * error. |
| 1329 * | 1329 * |
| 1330 * If the used [http.Client] completes with an error when making a REST call, | 1330 * If the used [http.Client] completes with an error when making a REST call, |
| 1331 * this method will complete with the same error. | 1331 * this method will complete with the same error. |
| 1332 */ | 1332 */ |
| 1333 async.Future<ListOperationsResponse> list(core.String appsId, {core.String fil
ter, core.String pageToken, core.int pageSize}) { | 1333 async.Future<ListOperationsResponse> list(core.String appsId, {core.String pag
eToken, core.int pageSize, core.String filter}) { |
| 1334 var _url = null; | 1334 var _url = null; |
| 1335 var _queryParams = new core.Map(); | 1335 var _queryParams = new core.Map(); |
| 1336 var _uploadMedia = null; | 1336 var _uploadMedia = null; |
| 1337 var _uploadOptions = null; | 1337 var _uploadOptions = null; |
| 1338 var _downloadOptions = commons.DownloadOptions.Metadata; | 1338 var _downloadOptions = commons.DownloadOptions.Metadata; |
| 1339 var _body = null; | 1339 var _body = null; |
| 1340 | 1340 |
| 1341 if (appsId == null) { | 1341 if (appsId == null) { |
| 1342 throw new core.ArgumentError("Parameter appsId is required."); | 1342 throw new core.ArgumentError("Parameter appsId is required."); |
| 1343 } | 1343 } |
| 1344 if (filter != null) { | |
| 1345 _queryParams["filter"] = [filter]; | |
| 1346 } | |
| 1347 if (pageToken != null) { | 1344 if (pageToken != null) { |
| 1348 _queryParams["pageToken"] = [pageToken]; | 1345 _queryParams["pageToken"] = [pageToken]; |
| 1349 } | 1346 } |
| 1350 if (pageSize != null) { | 1347 if (pageSize != null) { |
| 1351 _queryParams["pageSize"] = ["${pageSize}"]; | 1348 _queryParams["pageSize"] = ["${pageSize}"]; |
| 1352 } | 1349 } |
| 1350 if (filter != null) { |
| 1351 _queryParams["filter"] = [filter]; |
| 1352 } |
| 1353 | 1353 |
| 1354 _url = 'v1beta/apps/' + commons.Escaper.ecapeVariable('$appsId') + '/operati
ons'; | 1354 _url = 'v1beta/apps/' + commons.Escaper.ecapeVariable('$appsId') + '/operati
ons'; |
| 1355 | 1355 |
| 1356 var _response = _requester.request(_url, | 1356 var _response = _requester.request(_url, |
| 1357 "GET", | 1357 "GET", |
| 1358 body: _body, | 1358 body: _body, |
| 1359 queryParams: _queryParams, | 1359 queryParams: _queryParams, |
| 1360 uploadOptions: _uploadOptions, | 1360 uploadOptions: _uploadOptions, |
| 1361 uploadMedia: _uploadMedia, | 1361 uploadMedia: _uploadMedia, |
| 1362 downloadOptions: _downloadOptions); | 1362 downloadOptions: _downloadOptions); |
| (...skipping 396 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1759 /** | 1759 /** |
| 1760 * Lists the versions of a service. | 1760 * Lists the versions of a service. |
| 1761 * | 1761 * |
| 1762 * Request parameters: | 1762 * Request parameters: |
| 1763 * | 1763 * |
| 1764 * [appsId] - Part of `parent`. Name of the parent Service resource. Example: | 1764 * [appsId] - Part of `parent`. Name of the parent Service resource. Example: |
| 1765 * apps/myapp/services/default. | 1765 * apps/myapp/services/default. |
| 1766 * | 1766 * |
| 1767 * [servicesId] - Part of `parent`. See documentation of `appsId`. | 1767 * [servicesId] - Part of `parent`. See documentation of `appsId`. |
| 1768 * | 1768 * |
| 1769 * [pageToken] - Continuation token for fetching the next page of results. |
| 1770 * |
| 1769 * [pageSize] - Maximum results to return per page. | 1771 * [pageSize] - Maximum results to return per page. |
| 1770 * | 1772 * |
| 1771 * [view] - Controls the set of fields returned in the List response. | 1773 * [view] - Controls the set of fields returned in the List response. |
| 1772 * Possible string values are: | 1774 * Possible string values are: |
| 1773 * - "BASIC" : A BASIC. | 1775 * - "BASIC" : A BASIC. |
| 1774 * - "FULL" : A FULL. | 1776 * - "FULL" : A FULL. |
| 1775 * | 1777 * |
| 1776 * [pageToken] - Continuation token for fetching the next page of results. | |
| 1777 * | |
| 1778 * Completes with a [ListVersionsResponse]. | 1778 * Completes with a [ListVersionsResponse]. |
| 1779 * | 1779 * |
| 1780 * Completes with a [commons.ApiRequestError] if the API endpoint returned an | 1780 * Completes with a [commons.ApiRequestError] if the API endpoint returned an |
| 1781 * error. | 1781 * error. |
| 1782 * | 1782 * |
| 1783 * If the used [http.Client] completes with an error when making a REST call, | 1783 * If the used [http.Client] completes with an error when making a REST call, |
| 1784 * this method will complete with the same error. | 1784 * this method will complete with the same error. |
| 1785 */ | 1785 */ |
| 1786 async.Future<ListVersionsResponse> list(core.String appsId, core.String servic
esId, {core.int pageSize, core.String view, core.String pageToken}) { | 1786 async.Future<ListVersionsResponse> list(core.String appsId, core.String servic
esId, {core.String pageToken, core.int pageSize, core.String view}) { |
| 1787 var _url = null; | 1787 var _url = null; |
| 1788 var _queryParams = new core.Map(); | 1788 var _queryParams = new core.Map(); |
| 1789 var _uploadMedia = null; | 1789 var _uploadMedia = null; |
| 1790 var _uploadOptions = null; | 1790 var _uploadOptions = null; |
| 1791 var _downloadOptions = commons.DownloadOptions.Metadata; | 1791 var _downloadOptions = commons.DownloadOptions.Metadata; |
| 1792 var _body = null; | 1792 var _body = null; |
| 1793 | 1793 |
| 1794 if (appsId == null) { | 1794 if (appsId == null) { |
| 1795 throw new core.ArgumentError("Parameter appsId is required."); | 1795 throw new core.ArgumentError("Parameter appsId is required."); |
| 1796 } | 1796 } |
| 1797 if (servicesId == null) { | 1797 if (servicesId == null) { |
| 1798 throw new core.ArgumentError("Parameter servicesId is required."); | 1798 throw new core.ArgumentError("Parameter servicesId is required."); |
| 1799 } | 1799 } |
| 1800 if (pageToken != null) { |
| 1801 _queryParams["pageToken"] = [pageToken]; |
| 1802 } |
| 1800 if (pageSize != null) { | 1803 if (pageSize != null) { |
| 1801 _queryParams["pageSize"] = ["${pageSize}"]; | 1804 _queryParams["pageSize"] = ["${pageSize}"]; |
| 1802 } | 1805 } |
| 1803 if (view != null) { | 1806 if (view != null) { |
| 1804 _queryParams["view"] = [view]; | 1807 _queryParams["view"] = [view]; |
| 1805 } | 1808 } |
| 1806 if (pageToken != null) { | |
| 1807 _queryParams["pageToken"] = [pageToken]; | |
| 1808 } | |
| 1809 | 1809 |
| 1810 _url = 'v1beta/apps/' + commons.Escaper.ecapeVariable('$appsId') + '/service
s/' + commons.Escaper.ecapeVariable('$servicesId') + '/versions'; | 1810 _url = 'v1beta/apps/' + commons.Escaper.ecapeVariable('$appsId') + '/service
s/' + commons.Escaper.ecapeVariable('$servicesId') + '/versions'; |
| 1811 | 1811 |
| 1812 var _response = _requester.request(_url, | 1812 var _response = _requester.request(_url, |
| 1813 "GET", | 1813 "GET", |
| 1814 body: _body, | 1814 body: _body, |
| 1815 queryParams: _queryParams, | 1815 queryParams: _queryParams, |
| 1816 uploadOptions: _uploadOptions, | 1816 uploadOptions: _uploadOptions, |
| 1817 uploadMedia: _uploadMedia, | 1817 uploadMedia: _uploadMedia, |
| 1818 downloadOptions: _downloadOptions); | 1818 downloadOptions: _downloadOptions); |
| (...skipping 2375 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4194 | 4194 |
| 4195 core.Map<core.String, core.Object> toJson() { | 4195 core.Map<core.String, core.Object> toJson() { |
| 4196 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); | 4196 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
| 4197 if (instances != null) { | 4197 if (instances != null) { |
| 4198 _json["instances"] = instances; | 4198 _json["instances"] = instances; |
| 4199 } | 4199 } |
| 4200 return _json; | 4200 return _json; |
| 4201 } | 4201 } |
| 4202 } | 4202 } |
| 4203 | 4203 |
| 4204 /** Extra network settings. Only applicable for VM runtimes. */ | 4204 /** |
| 4205 * Extra network settings. Only applicable for App Engine flexible environment |
| 4206 * versions |
| 4207 */ |
| 4205 class Network { | 4208 class Network { |
| 4206 /** | 4209 /** |
| 4207 * List of ports, or port pairs, to forward from the virtual machine to the | 4210 * List of ports, or port pairs, to forward from the virtual machine to the |
| 4208 * application container. | 4211 * application container. Only applicable for App Engine flexible environment |
| 4212 * versions. |
| 4209 */ | 4213 */ |
| 4210 core.List<core.String> forwardedPorts; | 4214 core.List<core.String> forwardedPorts; |
| 4211 /** Tag to apply to the VM instance during creation. */ | 4215 /** |
| 4216 * Tag to apply to the VM instance during creation. Only applicable for for |
| 4217 * App Engine flexible environment versions. |
| 4218 */ |
| 4212 core.String instanceTag; | 4219 core.String instanceTag; |
| 4213 /** | 4220 /** |
| 4214 * Google Cloud Platform network where the virtual machines are created. | 4221 * Google Compute Engine network where the virtual machines are created. |
| 4215 * Specify the short name, not the resource path.Defaults to default. | 4222 * Specify the short name, not the resource path.Defaults to default. |
| 4216 */ | 4223 */ |
| 4217 core.String name; | 4224 core.String name; |
| 4218 /** | 4225 /** |
| 4219 * Google Cloud Platform sub-network where the virtual machines are created. | 4226 * Google Cloud Platform sub-network where the virtual machines are created. |
| 4220 * Specify the short name, not the resource path.If a subnetwork name is | 4227 * Specify the short name, not the resource path.If a subnetwork name is |
| 4221 * specified, a network name will also be required unless it is for the | 4228 * specified, a network name will also be required unless it is for the |
| 4222 * default network. | 4229 * default network. |
| 4223 * If the network the VM instance is being created in is a Legacy network, | 4230 * If the network the VM instance is being created in is a Legacy network, |
| 4224 * then the IP address is allocated from the IPv4Range. | 4231 * then the IP address is allocated from the IPv4Range. |
| 4225 * If the network the VM instance is being created in is an auto Subnet Mode | 4232 * If the network the VM instance is being created in is an auto Subnet Mode |
| 4226 * Network, then only network name should be specified (not the | 4233 * Network, then only network name should be specified (not the |
| 4227 * subnetwork_name) and the IP address is created from the IPCidrRange of the | 4234 * subnetwork_name) and the IP address is created from the IPCidrRange of the |
| 4228 * subnetwork that exists in that zone for that network. | 4235 * subnetwork that exists in that zone for that network. |
| 4229 * If the network the VM instance is being created in is a custom Subnet Mode | 4236 * If the network the VM instance is being created in is a custom Subnet Mode |
| 4230 * Network, then the subnetwork_name must be specified and the IP address is | 4237 * Network, then the subnetwork_name must be specified and the IP address is |
| 4231 * created from the IPCidrRange of the subnetwork.If specified, the subnetwork | 4238 * created from the IPCidrRange of the subnetwork.If specified, the subnetwork |
| 4232 * must exist in the same region as the Flex app. | 4239 * must exist in the same region as the App Engine flexible environment |
| 4240 * application. |
| 4233 */ | 4241 */ |
| 4234 core.String subnetworkName; | 4242 core.String subnetworkName; |
| 4235 | 4243 |
| 4236 Network(); | 4244 Network(); |
| 4237 | 4245 |
| 4238 Network.fromJson(core.Map _json) { | 4246 Network.fromJson(core.Map _json) { |
| 4239 if (_json.containsKey("forwardedPorts")) { | 4247 if (_json.containsKey("forwardedPorts")) { |
| 4240 forwardedPorts = _json["forwardedPorts"]; | 4248 forwardedPorts = _json["forwardedPorts"]; |
| 4241 } | 4249 } |
| 4242 if (_json.containsKey("instanceTag")) { | 4250 if (_json.containsKey("instanceTag")) { |
| (...skipping 1490 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5733 /** | 5741 /** |
| 5734 * A service with manual scaling runs continuously, allowing you to perform | 5742 * A service with manual scaling runs continuously, allowing you to perform |
| 5735 * complex initialization and rely on the state of its memory over time. | 5743 * complex initialization and rely on the state of its memory over time. |
| 5736 */ | 5744 */ |
| 5737 ManualScaling manualScaling; | 5745 ManualScaling manualScaling; |
| 5738 /** | 5746 /** |
| 5739 * Full path to the Version resource in the API. Example: | 5747 * Full path to the Version resource in the API. Example: |
| 5740 * apps/myapp/services/default/versions/v1.@OutputOnly | 5748 * apps/myapp/services/default/versions/v1.@OutputOnly |
| 5741 */ | 5749 */ |
| 5742 core.String name; | 5750 core.String name; |
| 5743 /** Extra network settings. Only applicable for VM runtimes. */ | 5751 /** |
| 5752 * Extra network settings. Only applicable for App Engine flexible environment |
| 5753 * versions. |
| 5754 */ |
| 5744 Network network; | 5755 Network network; |
| 5745 /** | 5756 /** |
| 5746 * Files that match this pattern will not be built into this version. Only | 5757 * Files that match this pattern will not be built into this version. Only |
| 5747 * applicable for Go runtimes.Only returned in GET requests if view=FULL is | 5758 * applicable for Go runtimes.Only returned in GET requests if view=FULL is |
| 5748 * set. | 5759 * set. |
| 5749 */ | 5760 */ |
| 5750 core.String nobuildFilesRegex; | 5761 core.String nobuildFilesRegex; |
| 5751 /** | 5762 /** |
| 5752 * Configures readiness health checking for VM instances. Unhealthy instances | 5763 * Configures readiness health checking for VM instances. Unhealthy instances |
| 5753 * are not put into the backend traffic rotation.Only returned in GET requests | 5764 * are not put into the backend traffic rotation.Only returned in GET requests |
| (...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6059 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); | 6070 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
| 6060 if (filesCount != null) { | 6071 if (filesCount != null) { |
| 6061 _json["filesCount"] = filesCount; | 6072 _json["filesCount"] = filesCount; |
| 6062 } | 6073 } |
| 6063 if (sourceUrl != null) { | 6074 if (sourceUrl != null) { |
| 6064 _json["sourceUrl"] = sourceUrl; | 6075 _json["sourceUrl"] = sourceUrl; |
| 6065 } | 6076 } |
| 6066 return _json; | 6077 return _json; |
| 6067 } | 6078 } |
| 6068 } | 6079 } |
| OLD | NEW |