作业 ID 在 Google Cloud ML API 中包含过滤器
Job ID contains filter in Google Cloud ML API
我指的是 Google Cloud ML Engine API,特别是这个方法:
https://developers.google.com/apis-explorer/#search/ml/m/ml/v1/ml.projects.jobs.list
根据 UI,'Job ID Contains' 过滤器应该使用什么过滤器语法?
我可以将状态过滤器用作:
state:"RUNNING" OR state:"FAILED"
但 none 以下工作:
job id contains:"mytext"
'job id contains':"mytext"
'JobIDContains':"mytext"
原来超级简单:
jobId:mytext
以下是过滤器的一些详细信息:
https://cloud.google.com/sdk/gcloud/reference/topic/filters 以上是
的例子
key : simple-pattern
我指的是 Google Cloud ML Engine API,特别是这个方法: https://developers.google.com/apis-explorer/#search/ml/m/ml/v1/ml.projects.jobs.list
根据 UI,'Job ID Contains' 过滤器应该使用什么过滤器语法?
我可以将状态过滤器用作:
state:"RUNNING" OR state:"FAILED"
但 none 以下工作:
job id contains:"mytext"
'job id contains':"mytext"
'JobIDContains':"mytext"
原来超级简单:
jobId:mytext
以下是过滤器的一些详细信息: https://cloud.google.com/sdk/gcloud/reference/topic/filters 以上是
的例子key : simple-pattern