You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* @resource [Subnetworks: list API Documentation]{@link https://cloud.google.com/compute/docs/reference/v1/subnetworks}
* @param {module:compute/region|string} config.region - The region where the
227
+
* Subnetwork resides.
228
+
* @param {string} config.range - The range of internal addresses that
229
+
* are owned by this subnetwork.
230
+
* [CIDR](http://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing) range
231
+
* of addresses that are legal on this network. (Alias for
232
+
* `config.ipCidrRange`)
233
+
* @param {function} callback - The callback function.
234
+
* @param {?error} callback.err - An error returned while making this request.
235
+
* @param {module:compute/subnetwork} callback.subnetwork - The created
236
+
* Subnetwork object.
237
+
* @param {module:compute/operation} callback.operation - An operation object
238
+
* that can be used to check the status of the request.
239
+
* @param {object} callback.apiResponse - The full API response.
240
+
*
241
+
* @example
242
+
* var region = gce.region('us-east1');
243
+
*
244
+
* var config = {
245
+
* region: region,
246
+
* range: '10.0.1.0/24'
247
+
* };
248
+
*
249
+
* function callback(err, subnetwork, operation, apiResponse) {
250
+
* // `subnetwork` is a Subnetwork object.
251
+
*
252
+
* // `operation` is an Operation object that can be used to check the status
* @resource [Subnetworks: list API Documentation]{@link https://cloud.google.com/compute/docs/reference/v1/subnetworks}
0 commit comments