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
<pclass="firstline">Returns permissions that a caller has on the specified resource. If the resource does not exist, this will return an empty set of permissions, not a `NOT_FOUND` error. Note: This operation is designed to be used for building permission-aware UIs and command-line tools, not for authorization checking. This operation may "fail open" without warning.</p>
"config": { # Notebook instance configurations that can be updated. # The instance configurations to be updated.
1124
+
"enableHealthMonitoring": True or False, # Verifies core internal services are running. More info: go/notebooks-health
1125
+
"notebookUpgradeSchedule": "A String", # Cron expression in UTC timezone, used to schedule instance auto upgrade. Please follow the [cron format](https://en.wikipedia.org/wiki/Cron).
1126
+
},
1127
+
}
1128
+
1129
+
x__xgafv: string, V1 error format.
1130
+
Allowed values
1131
+
1 - v1 error format
1132
+
2 - v2 error format
1133
+
1134
+
Returns:
1135
+
An object of the form:
1136
+
1137
+
{ # This resource represents a long-running operation that is the result of a network API call.
1138
+
"done": True or False, # 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.
1139
+
"error": { # The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). # The error result of the operation in case of failure or cancellation.
1140
+
"code": 42, # The status code, which should be an enum value of google.rpc.Code.
1141
+
"details": [ # A list of messages that carry the error details. There is a common set of message types for APIs to use.
1142
+
{
1143
+
"a_key": "", # Properties of the object. Contains field @type with type URL.
1144
+
},
1145
+
],
1146
+
"message": "A String", # A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
1147
+
},
1148
+
"metadata": { # 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.
1149
+
"a_key": "", # Properties of the object. Contains field @type with type URL.
1150
+
},
1151
+
"name": "A String", # 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}`.
1152
+
"response": { # The normal response of the operation in case of success. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`.
1153
+
"a_key": "", # Properties of the object. Contains field @type with type URL.
"The job failed. `error_message` should contain the details of the failure.",
1815
1844
"The job is being cancelled. `error_message` should describe the reason for the cancellation.",
1816
-
"The job has been cancelled. `error_message` should describe the reason for the cancellation."
1845
+
"The job has been cancelled. `error_message` should describe the reason for the cancellation.",
1846
+
"The jobs has become expired (added for uCAIP jobs) https://cloud.google.com/vertex-ai/docs/reference/rest/v1/JobState"
1817
1847
],
1818
1848
"readOnly": true,
1819
1849
"type": "string"
@@ -2201,6 +2231,21 @@
2201
2231
},
2202
2232
"type": "object"
2203
2233
},
2234
+
"InstanceConfig": {
2235
+
"description": "Notebook instance configurations that can be updated.",
2236
+
"id": "InstanceConfig",
2237
+
"properties": {
2238
+
"enableHealthMonitoring": {
2239
+
"description": "Verifies core internal services are running. More info: go/notebooks-health",
2240
+
"type": "boolean"
2241
+
},
2242
+
"notebookUpgradeSchedule": {
2243
+
"description": "Cron expression in UTC timezone, used to schedule instance auto upgrade. Please follow the [cron format](https://en.wikipedia.org/wiki/Cron).",
2244
+
"type": "string"
2245
+
}
2246
+
},
2247
+
"type": "object"
2248
+
},
2204
2249
"IsInstanceUpgradeableResponse": {
2205
2250
"description": "Response for checking if a notebook instance is upgradeable.",
2206
2251
"id": "IsInstanceUpgradeableResponse",
@@ -3224,6 +3269,17 @@
3224
3269
"properties": {},
3225
3270
"type": "object"
3226
3271
},
3272
+
"UpdateInstanceConfigRequest": {
3273
+
"description": "Request for updating instance configurations.",
3274
+
"id": "UpdateInstanceConfigRequest",
3275
+
"properties": {
3276
+
"config": {
3277
+
"$ref": "InstanceConfig",
3278
+
"description": "The instance configurations to be updated."
3279
+
}
3280
+
},
3281
+
"type": "object"
3282
+
},
3227
3283
"UpdateShieldedInstanceConfigRequest": {
3228
3284
"description": "Request for updating the Shielded Instance config for a notebook instance. You can only use this method on a stopped instance",
0 commit comments