private Amazon.CloudDirectory.Model.CreateObjectResponse CallAWSServiceOperation(IAmazonCloudDirectory client, Amazon.CloudDirectory.Model.CreateObjectRequest request) { Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "Amazon Cloud Directory", "CreateObject"); try { #if DESKTOP return(client.CreateObject(request)); #elif CORECLR return(client.CreateObjectAsync(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; } }
public object Execute(ExecutorContext context) { var cmdletContext = context as CmdletContext; // create request var request = new Amazon.CloudDirectory.Model.CreateObjectRequest(); if (cmdletContext.DirectoryArn != null) { request.DirectoryArn = cmdletContext.DirectoryArn; } if (cmdletContext.LinkName != null) { request.LinkName = cmdletContext.LinkName; } if (cmdletContext.ObjectAttributeList != null) { request.ObjectAttributeList = cmdletContext.ObjectAttributeList; } // populate ParentReference var requestParentReferenceIsNull = true; request.ParentReference = new Amazon.CloudDirectory.Model.ObjectReference(); System.String requestParentReference_parentReference_Selector = null; if (cmdletContext.ParentReference_Selector != null) { requestParentReference_parentReference_Selector = cmdletContext.ParentReference_Selector; } if (requestParentReference_parentReference_Selector != null) { request.ParentReference.Selector = requestParentReference_parentReference_Selector; requestParentReferenceIsNull = false; } // determine if request.ParentReference should be set to null if (requestParentReferenceIsNull) { request.ParentReference = null; } if (cmdletContext.SchemaFacet != null) { request.SchemaFacets = cmdletContext.SchemaFacet; } 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); }