public object Execute(ExecutorContext context) { var cmdletContext = context as CmdletContext; // create request var request = new Amazon.SageMaker.Model.UpdateCodeRepositoryRequest(); if (cmdletContext.CodeRepositoryName != null) { request.CodeRepositoryName = cmdletContext.CodeRepositoryName; } // populate GitConfig var requestGitConfigIsNull = true; request.GitConfig = new Amazon.SageMaker.Model.GitConfigForUpdate(); System.String requestGitConfig_gitConfig_SecretArn = null; if (cmdletContext.GitConfig_SecretArn != null) { requestGitConfig_gitConfig_SecretArn = cmdletContext.GitConfig_SecretArn; } if (requestGitConfig_gitConfig_SecretArn != null) { request.GitConfig.SecretArn = requestGitConfig_gitConfig_SecretArn; requestGitConfigIsNull = false; } // determine if request.GitConfig should be set to null if (requestGitConfigIsNull) { request.GitConfig = null; } 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.UpdateCodeRepositoryResponse CallAWSServiceOperation(IAmazonSageMaker client, Amazon.SageMaker.Model.UpdateCodeRepositoryRequest request) { Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "Amazon SageMaker Service", "UpdateCodeRepository"); try { #if DESKTOP return(client.UpdateCodeRepository(request)); #elif CORECLR return(client.UpdateCodeRepositoryAsync(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; } }