/// <summary> /// Sets the instance template to use when creating new instances or recreating instances in this group. Existing instances are not affected. /// Documentation https://developers.google.com/compute/v1/reference/regionInstanceGroupManagers/setInstanceTemplate /// Generation Note: This does not always build corectly. Google needs to standardise things I need to figuer out which ones are wrong. /// </summary> /// <param name="service">Authenticated Compute service.</param> /// <param name="project">Project ID for this request.</param> /// <param name="region">Name of the region scoping this request.</param> /// <param name="instanceGroupManager">The name of the managed instance group.</param> /// <param name="body">A valid Compute v1 body.</param> /// <param name="optional">Optional paramaters.</param> /// <returns>OperationResponse</returns> public static Operation SetInstanceTemplate(ComputeService service, string project, string region, string instanceGroupManager, RegionInstanceGroupManagersSetTemplateRequest body, RegionInstanceGroupManagersSetInstanceTemplateOptionalParms optional = null) { try { // Initial validation. if (service == null) { throw new ArgumentNullException("service"); } if (body == null) { throw new ArgumentNullException("body"); } if (project == null) { throw new ArgumentNullException(project); } if (region == null) { throw new ArgumentNullException(region); } if (instanceGroupManager == null) { throw new ArgumentNullException(instanceGroupManager); } // Building the initial request. var request = service.RegionInstanceGroupManagers.SetInstanceTemplate(body, project, region, instanceGroupManager); // Applying optional parameters to the request. request = (RegionInstanceGroupManagersResource.SetInstanceTemplateRequest)SampleHelpers.ApplyOptionalParms(request, optional); // Requesting data. return(request.Execute()); } catch (Exception ex) { throw new Exception("Request RegionInstanceGroupManagers.SetInstanceTemplate failed.", ex); } }
/// <summary> /// Sets the instance template to use when creating new instances or recreating instances in this group. Existing instances are not affected. /// Documentation https://developers.google.com/compute/beta/reference/regionInstanceGroupManagers/setInstanceTemplate /// Generation Note: This does not always build corectly. Google needs to standardise things I need to figuer out which ones are wrong. /// </summary> /// <param name="service">Authenticated compute service.</param> /// <param name="project">Project ID for this request.</param> /// <param name="region">Name of the region scoping this request.</param> /// <param name="instanceGroupManager">The name of the managed instance group.</param> /// <param name="body">A valid compute beta body.</param> /// <returns>OperationResponse</returns> public static Operation SetInstanceTemplate(computeService service, string project, string region, string instanceGroupManager, RegionInstanceGroupManagersSetTemplateRequest body) { try { // Initial validation. if (service == null) { throw new ArgumentNullException("service"); } if (body == null) { throw new ArgumentNullException("body"); } if (project == null) { throw new ArgumentNullException(project); } if (region == null) { throw new ArgumentNullException(region); } if (instanceGroupManager == null) { throw new ArgumentNullException(instanceGroupManager); } // Make the request. return(service.RegionInstanceGroupManagers.SetInstanceTemplate(body, project, region, instanceGroupManager).Execute()); } catch (Exception ex) { throw new Exception("Request RegionInstanceGroupManagers.SetInstanceTemplate failed.", ex); } }