public object Execute(ExecutorContext context) { var cmdletContext = context as CmdletContext; // create request var request = new Amazon.IoTTwinMaker.Model.UpdateComponentTypeRequest(); if (cmdletContext.ComponentTypeId != null) { request.ComponentTypeId = cmdletContext.ComponentTypeId; } if (cmdletContext.Description != null) { request.Description = cmdletContext.Description; } if (cmdletContext.ExtendsFrom != null) { request.ExtendsFrom = cmdletContext.ExtendsFrom; } if (cmdletContext.Function != null) { request.Functions = cmdletContext.Function; } if (cmdletContext.IsSingleton != null) { request.IsSingleton = cmdletContext.IsSingleton.Value; } if (cmdletContext.PropertyDefinition != null) { request.PropertyDefinitions = cmdletContext.PropertyDefinition; } if (cmdletContext.WorkspaceId != null) { request.WorkspaceId = cmdletContext.WorkspaceId; } CmdletOutput output; // issue call var client = Client ?? CreateClient(_CurrentCredentials, _RegionEndpoint); try { var response = CallAWSServiceOperation(client, request); object pipelineOutput = null; pipelineOutput = cmdletContext.Select(response, this); output = new CmdletOutput { PipelineOutput = pipelineOutput, ServiceResponse = response }; } catch (Exception e) { output = new CmdletOutput { ErrorResponse = e }; } return(output); }
private Amazon.IoTTwinMaker.Model.UpdateComponentTypeResponse CallAWSServiceOperation(IAmazonIoTTwinMaker client, Amazon.IoTTwinMaker.Model.UpdateComponentTypeRequest request) { Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "AWS IoT TwinMaker", "UpdateComponentType"); try { #if DESKTOP return(client.UpdateComponentType(request)); #elif CORECLR return(client.UpdateComponentTypeAsync(request).GetAwaiter().GetResult()); #else #error "Unknown build edition" #endif } catch (AmazonServiceException exc) { var webException = exc.InnerException as System.Net.WebException; if (webException != null) { throw new Exception(Utils.Common.FormatNameResolutionFailureMessage(client.Config, webException.Message), webException); } throw; } }