You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@Dynamic(label = "Update artifact version content", description = "When selected, users are permitted to update the content of artifact versions (only when in the DRAFT state).")
// Put updates the content of a single version of an artifact.NOTE: the artifact must be in `DRAFT` status.Both the `artifactId` and the unique `version` number must be provided to identifythe version to update.This operation can fail for the following reasons:* No artifact with this `artifactId` exists (HTTP error `404`)* No version with this `version` exists (HTTP error `404`)* Artifact version not in `DRAFT` status (HTTP error `409`)* A server error occurred (HTTP error `500`)
82
82
// returns a ProblemDetails error when the service returns a 404 status code
83
+
// returns a ProblemDetails error when the service returns a 405 status code
83
84
// returns a ProblemDetails error when the service returns a 409 status code
84
85
// returns a ProblemDetails error when the service returns a 500 status code
85
86
func (m*ItemArtifactsItemVersionsItemContentRequestBuilder) Put(ctx context.Context, body i00eb2e63d156923d00d8e86fe16b5d74daf30e363c9f185a8165cb42aa2f2c71.VersionContentable, requestConfiguration*ItemArtifactsItemVersionsItemContentRequestBuilderPutRequestConfiguration) error {
// Delete deletes an artifact completely, resulting in all versions of the artifact also beingdeleted. This may fail for one of the following reasons:* No artifact with the `artifactId` exists (HTTP error `404`)* A server error occurred (HTTP error `500`)
60
60
// returns a ProblemDetails error when the service returns a 404 status code
61
+
// returns a ProblemDetails error when the service returns a 405 status code
61
62
// returns a ProblemDetails error when the service returns a 500 status code
// Delete deletes a group by identifier. This operation also deletes all artifacts withinthe group, so should be used very carefully.This operation can fail for the following reasons:* A server error occurred (HTTP error `500`)* The group does not exist (HTTP error `404`)
60
60
// returns a ProblemDetails error when the service returns a 404 status code
61
+
// returns a ProblemDetails error when the service returns a 405 status code
61
62
// returns a ProblemDetails error when the service returns a 500 status code
0 commit comments