Skip to content

Commit

Permalink
GRPC clients version 9.11.2
Browse files Browse the repository at this point in the history
  • Loading branch information
clarifai-prod committed Dec 13, 2023
1 parent de8f087 commit cf4ad9d
Show file tree
Hide file tree
Showing 8 changed files with 222 additions and 110 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
9.11.1
9.11.2
235 changes: 160 additions & 75 deletions src/Clarifai/Api/AppDuplication.php

Large diffs are not rendered by default.

44 changes: 24 additions & 20 deletions src/Clarifai/Api/AppDuplicationFilters.php

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions src/Clarifai/Api/GetAppDuplicationRequest.php

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 8 additions & 1 deletion src/Clarifai/Api/ListAppDuplicationsRequest.php

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 8 additions & 1 deletion src/Clarifai/Api/PostAppDuplicationsRequest.php

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 13 additions & 4 deletions src/Clarifai/Api/V2Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -2313,8 +2313,17 @@ public function ListCollaborations(\Clarifai\Api\ListCollaborationsRequest $argu
}

/**
* start to duplicate an app which copies all the inputs, annotations, models, concepts etc. to a new app.
* this is an async process, you should use ListAppDuplications or GetAppDuplication to check the status.
* PostAppDuplications starts async app duplication jobs which copy resources
* (inputs, annotations, models etc) from one application to another. It can
* also create the destination application if it does not exist, with fields
* (description, metadata etc) copied from the source application.
*
* A duplication job can be started by any user that can read from the source
* application (the target of this call) and can create and write to the
* destination application. The duplication is associated with the user that
* created it, so in order to read the status and progress of the job, that
* user's ID has to be used in the call to GetAppDuplication, which might be
* different to the source application owner ID in this call.
* @param \Clarifai\Api\PostAppDuplicationsRequest $argument input argument
* @param array $metadata metadata
* @param array $options call options
Expand All @@ -2329,7 +2338,7 @@ public function PostAppDuplications(\Clarifai\Api\PostAppDuplicationsRequest $ar
}

/**
* list all the app duplications user triggers
* ListAppDuplications lists all app duplication jobs created by the user.
* @param \Clarifai\Api\ListAppDuplicationsRequest $argument input argument
* @param array $metadata metadata
* @param array $options call options
Expand All @@ -2344,7 +2353,7 @@ public function ListAppDuplications(\Clarifai\Api\ListAppDuplicationsRequest $ar
}

/**
* get the app duplication status
* GetAppDuplication returns an app duplication job created by the user.
* @param \Clarifai\Api\GetAppDuplicationRequest $argument input argument
* @param array $metadata metadata
* @param array $options call options
Expand Down
Binary file modified src/GPBMetadata/Proto/Clarifai/Api/Resources.php
Binary file not shown.

0 comments on commit cf4ad9d

Please sign in to comment.