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
class DeleteEvaluationExperimentOperation(_common.BaseModel):
4185
+
"""Operation for deleting an evaluation experiment."""
4186
+
4187
+
name: Optional[str] = Field(
4188
+
default=None,
4189
+
description="""The server-assigned name, which is only unique within the same service that originally returns it. If you use the default HTTP mapping, the `name` should be a resource name ending with `operations/{unique_id}`.""",
4190
+
)
4191
+
metadata: Optional[dict[str, Any]] = Field(
4192
+
default=None,
4193
+
description="""Service-specific metadata associated with the operation. It typically contains progress information and common metadata such as create time. Some services might not provide such metadata. Any method that returns a long-running operation should document the metadata type, if any.""",
4194
+
)
4195
+
done: Optional[bool] = Field(
4196
+
default=None,
4197
+
description="""If the value is `false`, it means the operation is still in progress. If `true`, the operation is completed, and either `error` or `response` is available.""",
4198
+
)
4199
+
error: Optional[dict[str, Any]] = Field(
4200
+
default=None,
4201
+
description="""The error result of the operation in case of failure or cancellation.""",
4202
+
)
4203
+
4204
+
4205
+
class DeleteEvaluationExperimentOperationDict(TypedDict, total=False):
4206
+
"""Operation for deleting an evaluation experiment."""
4207
+
4208
+
name: Optional[str]
4209
+
"""The server-assigned name, which is only unique within the same service that originally returns it. If you use the default HTTP mapping, the `name` should be a resource name ending with `operations/{unique_id}`."""
4210
+
4211
+
metadata: Optional[dict[str, Any]]
4212
+
"""Service-specific metadata associated with the operation. It typically contains progress information and common metadata such as create time. Some services might not provide such metadata. Any method that returns a long-running operation should document the metadata type, if any."""
4213
+
4214
+
done: Optional[bool]
4215
+
"""If the value is `false`, it means the operation is still in progress. If `true`, the operation is completed, and either `error` or `response` is available."""
4216
+
4217
+
error: Optional[dict[str, Any]]
4218
+
"""The error result of the operation in case of failure or cancellation."""
0 commit comments