in azext_iot/sdk/digitaltwins/dataplane/operations/digital_twin_models_operations.py [0:0]
def add(
self, models_to_add=None, digital_twin_models_add_options=None, custom_headers=None, raw=False, **operation_config):
"""Uploads one or more models. When any error occurs, no models are
uploaded.
Status codes:
* 201 Created
* 400 Bad Request
* DTDLParserError - The models provided are not valid DTDL.
* InvalidArgument - The model id is invalid.
* LimitExceeded - The maximum number of model ids allowed in
'dependenciesFor' has been reached.
* ModelVersionNotSupported - The version of DTDL used is not supported.
* 409 Conflict
* ModelAlreadyExists - The model provided already exists.
:param models: An array of models to add.
:type models: list[object]
:param digital_twin_models_add_options: Additional parameters for the
operation
:type digital_twin_models_add_options:
~dataplane.models.DigitalTwinModelsAddOptions
:param dict custom_headers: headers that will be added to the request
:param bool raw: returns the direct response alongside the
deserialized response
:param operation_config: :ref:`Operation configuration
overrides<msrest:optionsforoperations>`.
:return: list or ClientRawResponse if raw=true
:rtype: list[~dataplane.models.DigitalTwinsModelData] or
~msrest.pipeline.ClientRawResponse
:raises:
:class:`ErrorResponseException<dataplane.models.ErrorResponseException>`
"""
traceparent = None
if digital_twin_models_add_options is not None:
traceparent = digital_twin_models_add_options.traceparent
tracestate = None
if digital_twin_models_add_options is not None:
tracestate = digital_twin_models_add_options.tracestate
# Construct URL
url = self.add.metadata['url']
# Construct parameters
query_parameters = {}
query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str', min_length=1)
# Construct headers
header_parameters = {}
header_parameters['Content-Type'] = 'application/json; charset=utf-8'
if self.config.generate_client_request_id:
header_parameters['x-ms-client-request-id'] = str(uuid.uuid1())
if custom_headers:
header_parameters.update(custom_headers)
if self.config.accept_language is not None:
header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str')
if traceparent is not None:
header_parameters['traceparent'] = self._serialize.header("traceparent", traceparent, 'str')
if tracestate is not None:
header_parameters['tracestate'] = self._serialize.header("tracestate", tracestate, 'str')
# @vilit - when regenerating the sdk, models the parameter should be changed so it does not conflict
# with the imported models.
# Construct body
if models_to_add is not None:
body_content = self._serialize.body(models_to_add, '[object]')
else:
body_content = None
# Construct and send request
request = self._client.post(url, query_parameters)
response = self._client.send(
request, header_parameters, body_content, stream=False, **operation_config)
# @vilit - update the generated sdk to support both 200 and 201. Custom error message for 403.
if response.status_code not in [200, 201]:
raise models.ErrorResponseException(self._deserialize, response)
deserialized = None
header_dict = {}
if response.status_code in [200, 201]:
deserialized = self._deserialize('[DigitalTwinsModelData]', response)
header_dict = {
'x-ms-error-code': 'str',
}
if raw:
client_raw_response = ClientRawResponse(deserialized, response)
client_raw_response.add_headers(header_dict)
return client_raw_response
return deserialized