Data Designer Resource#

This page documents the Data Designer resource classes from the nemo_microservices package.

class nemo_microservices.resources.beta.data_designer.DataDesignerResource(client: NeMoMicroservices)#

Bases: SyncAPIResource

property jobs: JobsResource#
property with_raw_response: DataDesignerResourceWithRawResponse#

This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content.

For more information, see https://docs.nvidia.com/nemo/microservices/latest/pysdk/index.html#accessing-raw-response-data-e-g-headers

property with_streaming_response: DataDesignerResourceWithStreamingResponse#

An alternative to .with_raw_response that doesn’t eagerly read the response body.

For more information, see https://docs.nvidia.com/nemo/microservices/latest/pysdk/index.html#with_streaming_response

preview(
*,
config: DataDesignerConfigParam,
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
) JSONLDecoder[DataDesignerPreviewResponse]#

Generate preview Data Designer

Parameters:
  • config – Configuration for NeMo Data Designer.

  • extra_headers – Send extra headers

  • extra_query – Add additional query parameters to the request

  • extra_body – Add additional JSON properties to the request

  • timeout – Override the client-level default timeout for this request, in seconds

create_from_dict(
data: dict[str, object],
) object#
class nemo_microservices.resources.beta.data_designer.AsyncDataDesignerResource(client: AsyncNeMoMicroservices)#

Bases: AsyncAPIResource

property jobs: AsyncJobsResource#
property with_raw_response: AsyncDataDesignerResourceWithRawResponse#

This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content.

For more information, see https://docs.nvidia.com/nemo/microservices/latest/pysdk/index.html#accessing-raw-response-data-e-g-headers

property with_streaming_response: AsyncDataDesignerResourceWithStreamingResponse#

An alternative to .with_raw_response that doesn’t eagerly read the response body.

For more information, see https://docs.nvidia.com/nemo/microservices/latest/pysdk/index.html#with_streaming_response

async preview(
*,
config: DataDesignerConfigParam,
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
) AsyncJSONLDecoder[DataDesignerPreviewResponse]#

Generate preview Data Designer

Parameters:
  • config – Configuration for NeMo Data Designer.

  • extra_headers – Send extra headers

  • extra_query – Add additional query parameters to the request

  • extra_body – Add additional JSON properties to the request

  • timeout – Override the client-level default timeout for this request, in seconds

create_from_dict(
data: dict[str, object],
) object#