Method: models.export

Full name: projects.locations.models.export

Exports a trained, exportable Model to a location specified by the user. A Model is considered to be exportable if it has at least onesupported export format.

Endpoint

posthttps://{service-endpoint}/v1/{name}:export

Where{service-endpoint} is one of thesupported service endpoints.

Path parameters

namestring

Required. The resource name of the Model to export. The resource name may contain version id or version alias to specify the version, if no version is specified, the default version will be exported.

Request body

The request body contains data with the following structure:

Fields
outputConfigobject (OutputConfig)

Required. The desired output location and configuration.

Response body

If successful, the response body contains an instance ofOperation.

OutputConfig

Output configuration for the Model export.

Fields
exportFormatIdstring

The id of the format in which the Model must be exported. Each Model lists theexport formats it supports. If no value is provided here, then the first from the list of the Model's supported formats is used by default.

artifactDestinationobject (GcsDestination)

The Cloud Storage location where the Model artifact is to be written to. Under the directory given as the destination a new one with name "model-export-<model-display-name>-<timestamp-of-export-call>", where timestamp is in YYYY-MM-DDThh:mm:ss.sssZ ISO-8601 format, will be created. Inside, the Model and any of its supporting files will be written. This field should only be set when theexportableContent field of the [Model.supported_export_formats] object containsARTIFACT.

imageDestinationobject (ContainerRegistryDestination)

The Google Artifact Registry uri where the Model container image will be copied to. This field should only be set when theexportableContent field of the [Model.supported_export_formats] object containsIMAGE.

JSON representation
{"exportFormatId":string,"artifactDestination":{object (GcsDestination)},"imageDestination":{object (ContainerRegistryDestination)}}

ContainerRegistryDestination

The Artifact Registry location for the container image.

Fields
outputUristring

Required. Artifact Registry URI of a container image. Only Google Artifact Registry are supported now. Accepted forms:

  • Google Artifact Registry path. For example:gcr.io/projectId/imageName:tag.

  • Artifact Registry path. For example:us-central1-docker.pkg.dev/projectId/repoName/imageName:tag.

If a tag is not specified, "latest" will be used as the default tag.

JSON representation
{"outputUri":string}

Except as otherwise noted, the content of this page is licensed under theCreative Commons Attribution 4.0 License, and code samples are licensed under theApache 2.0 License. For details, see theGoogle Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2025-07-02 UTC.