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
Copy file name to clipboardExpand all lines: docs/dyn/notebooks_v1.projects.locations.instances.html
+12
Original file line number
Diff line number
Diff line change
@@ -229,6 +229,10 @@ <h3>Method Details</h3>
229
229
"noPublicIp": True or False, # If true, no external IP will be assigned to this instance.
230
230
"noRemoveDataDisk": True or False, # Input only. If true, the data disk will not be auto deleted when deleting the instance.
231
231
"postStartupScript": "A String", # Path to a Bash script that automatically runs after a notebook instance fully boots up. The path must be a URL or Cloud Storage path (`gs://path-to-file/file-name`).
232
+
"preMigrationCheck": { # PreMigrationCheck checks how feasible a migration from UmN is. # Output only. Check how possible a migration from UmN to WbI is.
233
+
"message": "A String", # Message provides a summary or workaround.
234
+
"result": "A String", # Result returns the result of the check.
235
+
},
232
236
"proxyUri": "A String", # Output only. The proxy endpoint that is used to access the Jupyter notebook.
233
237
"reservationAffinity": { # Reservation Affinity for consuming Zonal reservation. # Optional. The optional reservation affinity. Setting this field will apply the specified [Zonal Compute Reservation](https://cloud.google.com/compute/docs/instances/reserving-zonal-resources) to this notebook instance.
234
238
"consumeReservationType": "A String", # Optional. Type of reservation to consume
@@ -459,6 +463,10 @@ <h3>Method Details</h3>
459
463
"noPublicIp": True or False, # If true, no external IP will be assigned to this instance.
460
464
"noRemoveDataDisk": True or False, # Input only. If true, the data disk will not be auto deleted when deleting the instance.
461
465
"postStartupScript": "A String", # Path to a Bash script that automatically runs after a notebook instance fully boots up. The path must be a URL or Cloud Storage path (`gs://path-to-file/file-name`).
466
+
"preMigrationCheck": { # PreMigrationCheck checks how feasible a migration from UmN is. # Output only. Check how possible a migration from UmN to WbI is.
467
+
"message": "A String", # Message provides a summary or workaround.
468
+
"result": "A String", # Result returns the result of the check.
469
+
},
462
470
"proxyUri": "A String", # Output only. The proxy endpoint that is used to access the Jupyter notebook.
463
471
"reservationAffinity": { # Reservation Affinity for consuming Zonal reservation. # Optional. The optional reservation affinity. Setting this field will apply the specified [Zonal Compute Reservation](https://cloud.google.com/compute/docs/instances/reserving-zonal-resources) to this notebook instance.
464
472
"consumeReservationType": "A String", # Optional. Type of reservation to consume
@@ -667,6 +675,10 @@ <h3>Method Details</h3>
667
675
"noPublicIp": True or False, # If true, no external IP will be assigned to this instance.
668
676
"noRemoveDataDisk": True or False, # Input only. If true, the data disk will not be auto deleted when deleting the instance.
669
677
"postStartupScript": "A String", # Path to a Bash script that automatically runs after a notebook instance fully boots up. The path must be a URL or Cloud Storage path (`gs://path-to-file/file-name`).
678
+
"preMigrationCheck": { # PreMigrationCheck checks how feasible a migration from UmN is. # Output only. Check how possible a migration from UmN to WbI is.
679
+
"message": "A String", # Message provides a summary or workaround.
680
+
"result": "A String", # Result returns the result of the check.
681
+
},
670
682
"proxyUri": "A String", # Output only. The proxy endpoint that is used to access the Jupyter notebook.
671
683
"reservationAffinity": { # Reservation Affinity for consuming Zonal reservation. # Optional. The optional reservation affinity. Setting this field will apply the specified [Zonal Compute Reservation](https://cloud.google.com/compute/docs/instances/reserving-zonal-resources) to this notebook instance.
672
684
"consumeReservationType": "A String", # Optional. Type of reservation to consume
Copy file name to clipboardExpand all lines: googleapiclient/discovery_cache/documents/notebooks.v1.json
+33-1
Original file line number
Diff line number
Diff line change
@@ -1932,7 +1932,7 @@
1932
1932
}
1933
1933
}
1934
1934
},
1935
-
"revision": "20230604",
1935
+
"revision": "20230606",
1936
1936
"rootUrl": "https://notebooks.googleapis.com/",
1937
1937
"schemas": {
1938
1938
"AcceleratorConfig": {
@@ -2655,6 +2655,11 @@
2655
2655
"description": "Path to a Bash script that automatically runs after a notebook instance fully boots up. The path must be a URL or Cloud Storage path (`gs://path-to-file/file-name`).",
2656
2656
"type": "string"
2657
2657
},
2658
+
"preMigrationCheck": {
2659
+
"$ref": "PreMigrationCheck",
2660
+
"description": "Output only. Check how possible a migration from UmN to WbI is.",
2661
+
"readOnly": true
2662
+
},
2658
2663
"proxyUri": {
2659
2664
"description": "Output only. The proxy endpoint that is used to access the Jupyter notebook.",
2660
2665
"readOnly": true,
@@ -3190,6 +3195,33 @@
3190
3195
},
3191
3196
"type": "object"
3192
3197
},
3198
+
"PreMigrationCheck": {
3199
+
"description": "PreMigrationCheck checks how feasible a migration from UmN is.",
3200
+
"id": "PreMigrationCheck",
3201
+
"properties": {
3202
+
"message": {
3203
+
"description": "Message provides a summary or workaround.",
3204
+
"type": "string"
3205
+
},
3206
+
"result": {
3207
+
"description": "Result returns the result of the check.",
3208
+
"enum": [
3209
+
"RESULT_UNSPECIFIED",
3210
+
"IDENTICAL",
3211
+
"PARTIAL",
3212
+
"NOT_RECOMMENDED"
3213
+
],
3214
+
"enumDescriptions": [
3215
+
"Default type.",
3216
+
"UmN can be migrated to WbI as is minus non-relevant parts.",
3217
+
"Part of the UmN won't be ported. The migration might default some values.",
3218
+
"UmN has too many unsupported options for a migration to WbI."
3219
+
],
3220
+
"type": "string"
3221
+
}
3222
+
},
3223
+
"type": "object"
3224
+
},
3193
3225
"RefreshRuntimeTokenInternalRequest": {
3194
3226
"description": "Request for getting a new access token.",
0 commit comments