AI-generated Key Takeaways
-
The webpage content describes how to move an Earth Engine asset using an HTTP POST request.
-
The request URL uses gRPC Transcoding syntax and includes the source name of the asset in the path parameters.
-
The
sourceNameparameter is a string representing the name of the asset to move, following a specific format that includes the project. -
The request body requires a
destinationNamefield, which is a string representing the target location for the asset, also following a specific format. -
Authorization for moving an asset requires specific IAM permissions on both the source and destination resources.
Moves an asset.
HTTP request
POST https://earthengine.googleapis.com/v1beta/{sourceName=projects/*/assets/**}:move
The URL uses gRPC Transcoding syntax.
Path parameters
| Parameters | |
|---|---|
sourceName |
The name of the asset to move. Authorization requires the following IAM permission on the specified resource
|
Request body
The request body contains data with the following structure:
| JSON representation |
|---|
{ "destinationName": string } |
| Fields | |
|---|---|
destinationName |
The destination name to which to move the asset. Authorization requires the following IAM permission on the specified resource
|
Response body
If successful, the response body contains an instance of EarthEngineAsset.
Authorization scopes
Requires one of the following OAuth scopes:
https://www.googleapis.com/auth/earthenginehttps://www.googleapis.com/auth/cloud-platform
For more information, see the OAuth 2.0 Overview.