public object Execute(ExecutorContext context) { var cmdletContext = context as CmdletContext; // create request var request = new Amazon.SageMaker.Model.UpdateArtifactRequest(); if (cmdletContext.ArtifactArn != null) { request.ArtifactArn = cmdletContext.ArtifactArn; } if (cmdletContext.ArtifactName != null) { request.ArtifactName = cmdletContext.ArtifactName; } if (cmdletContext.Property != null) { request.Properties = cmdletContext.Property; } if (cmdletContext.PropertiesToRemove != null) { request.PropertiesToRemove = cmdletContext.PropertiesToRemove; } 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.SageMaker.Model.UpdateArtifactResponse CallAWSServiceOperation(IAmazonSageMaker client, Amazon.SageMaker.Model.UpdateArtifactRequest request) { Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "Amazon SageMaker Service", "UpdateArtifact"); try { #if DESKTOP return(client.UpdateArtifact(request)); #elif CORECLR return(client.UpdateArtifactAsync(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; } }