private Amazon.IoT.Model.CreateThingTypeResponse CallAWSServiceOperation(IAmazonIoT client, Amazon.IoT.Model.CreateThingTypeRequest request) { Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "AWS IoT", "CreateThingType"); try { #if DESKTOP return(client.CreateThingType(request)); #elif CORECLR return(client.CreateThingTypeAsync(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.IoT.Model.CreateThingTypeRequest(); if (cmdletContext.Tag != null) { request.Tags = cmdletContext.Tag; } if (cmdletContext.ThingTypeName != null) { request.ThingTypeName = cmdletContext.ThingTypeName; } // populate ThingTypeProperties var requestThingTypePropertiesIsNull = true; request.ThingTypeProperties = new Amazon.IoT.Model.ThingTypeProperties(); List <System.String> requestThingTypeProperties_thingTypeProperties_SearchableAttribute = null; if (cmdletContext.ThingTypeProperties_SearchableAttribute != null) { requestThingTypeProperties_thingTypeProperties_SearchableAttribute = cmdletContext.ThingTypeProperties_SearchableAttribute; } if (requestThingTypeProperties_thingTypeProperties_SearchableAttribute != null) { request.ThingTypeProperties.SearchableAttributes = requestThingTypeProperties_thingTypeProperties_SearchableAttribute; requestThingTypePropertiesIsNull = false; } System.String requestThingTypeProperties_thingTypeProperties_ThingTypeDescription = null; if (cmdletContext.ThingTypeProperties_ThingTypeDescription != null) { requestThingTypeProperties_thingTypeProperties_ThingTypeDescription = cmdletContext.ThingTypeProperties_ThingTypeDescription; } if (requestThingTypeProperties_thingTypeProperties_ThingTypeDescription != null) { request.ThingTypeProperties.ThingTypeDescription = requestThingTypeProperties_thingTypeProperties_ThingTypeDescription; requestThingTypePropertiesIsNull = false; } // determine if request.ThingTypeProperties should be set to null if (requestThingTypePropertiesIsNull) { request.ThingTypeProperties = 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); }
/// <summary> /// Creates a new thing type. /// </summary> /// <param name="request">Container for the necessary parameters to execute the CreateThingType service method.</param> /// /// <returns>The response from the CreateThingType service method, as returned by IoT.</returns> /// <exception cref="Amazon.IoT.Model.InternalFailureException"> /// An unexpected error has occurred. /// </exception> /// <exception cref="Amazon.IoT.Model.InvalidRequestException"> /// The request is not valid. /// </exception> /// <exception cref="Amazon.IoT.Model.ResourceAlreadyExistsException"> /// The resource already exists. /// </exception> /// <exception cref="Amazon.IoT.Model.ServiceUnavailableException"> /// The service is temporarily unavailable. /// </exception> /// <exception cref="Amazon.IoT.Model.ThrottlingException"> /// The rate exceeds the limit. /// </exception> /// <exception cref="Amazon.IoT.Model.UnauthorizedException"> /// You are not authorized to perform this operation. /// </exception> public CreateThingTypeResponse CreateThingType(CreateThingTypeRequest request) { var marshaller = new CreateThingTypeRequestMarshaller(); var unmarshaller = CreateThingTypeResponseUnmarshaller.Instance; return Invoke<CreateThingTypeRequest,CreateThingTypeResponse>(request, marshaller, unmarshaller); }
/// <summary> /// Initiates the asynchronous execution of the CreateThingType operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the CreateThingType operation on AmazonIoTClient.</param> /// <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param> /// <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property.</param> /// /// <returns>An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndCreateThingType /// operation.</returns> public IAsyncResult BeginCreateThingType(CreateThingTypeRequest request, AsyncCallback callback, object state) { var marshaller = new CreateThingTypeRequestMarshaller(); var unmarshaller = CreateThingTypeResponseUnmarshaller.Instance; return BeginInvoke<CreateThingTypeRequest>(request, marshaller, unmarshaller, callback, state); }
/// <summary> /// Initiates the asynchronous execution of the CreateThingType operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the CreateThingType operation.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// <returns>The task object representing the asynchronous operation.</returns> public Task<CreateThingTypeResponse> CreateThingTypeAsync(CreateThingTypeRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var marshaller = new CreateThingTypeRequestMarshaller(); var unmarshaller = CreateThingTypeResponseUnmarshaller.Instance; return InvokeAsync<CreateThingTypeRequest,CreateThingTypeResponse>(request, marshaller, unmarshaller, cancellationToken); }