Skip to content

Commit

Permalink
feat(notebooks): update the api
Browse files Browse the repository at this point in the history
#### notebooks:v1

The following keys were added:
- schemas.DiagnoseInstanceRequest.properties.timeoutMinutes (Total Keys: 2)
- schemas.DiagnoseRuntimeRequest.properties.timeoutMinutes (Total Keys: 2)

#### notebooks:v2

The following keys were added:
- schemas.DiagnoseInstanceRequest.properties.timeoutMinutes (Total Keys: 2)
  • Loading branch information
yoshi-automation committed Aug 4, 2023
1 parent 7236ed5 commit 0b6e2a9
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 2 deletions.
1 change: 1 addition & 0 deletions docs/dyn/notebooks_v1.projects.locations.instances.html
Expand Up @@ -360,6 +360,7 @@ <h3>Method Details</h3>
&quot;relativePath&quot;: &quot;A String&quot;, # Optional. Defines the relative storage path in the Cloud Storage bucket where the diagnostic logs will be written: Default path will be the root directory of the Cloud Storage bucket (`gs://$GCS_BUCKET/$DATE_$TIME.tar.gz`) Example of full path where Log file will be written: `gs://$GCS_BUCKET/$RELATIVE_PATH/`
&quot;repairFlagEnabled&quot;: True or False, # Optional. Enables flag to repair service for instance
},
&quot;timeoutMinutes&quot;: 42, # Optional. Maxmium amount of time in minutes before the operation times out.
}

x__xgafv: string, V1 error format.
Expand Down
1 change: 1 addition & 0 deletions docs/dyn/notebooks_v1.projects.locations.runtimes.html
Expand Up @@ -342,6 +342,7 @@ <h3>Method Details</h3>
&quot;relativePath&quot;: &quot;A String&quot;, # Optional. Defines the relative storage path in the Cloud Storage bucket where the diagnostic logs will be written: Default path will be the root directory of the Cloud Storage bucket (`gs://$GCS_BUCKET/$DATE_$TIME.tar.gz`) Example of full path where Log file will be written: `gs://$GCS_BUCKET/$RELATIVE_PATH/`
&quot;repairFlagEnabled&quot;: True or False, # Optional. Enables flag to repair service for instance
},
&quot;timeoutMinutes&quot;: 42, # Optional. Maxmium amount of time in minutes before the operation times out.
}

x__xgafv: string, V1 error format.
Expand Down
1 change: 1 addition & 0 deletions docs/dyn/notebooks_v2.projects.locations.instances.html
Expand Up @@ -350,6 +350,7 @@ <h3>Method Details</h3>
&quot;gcsBucket&quot;: &quot;A String&quot;, # Required. User Cloud Storage bucket location (REQUIRED). Must be formatted with path prefix (`gs://$GCS_BUCKET`). Permissions: User Managed Notebooks: - storage.buckets.writer: Must be given to the project&#x27;s service account attached to VM. Google Managed Notebooks: - storage.buckets.writer: Must be given to the project&#x27;s service account or user credentials attached to VM depending on authentication mode. Cloud Storage bucket Log file will be written to `gs://$GCS_BUCKET/$RELATIVE_PATH/$VM_DATE_$TIME.tar.gz`
&quot;relativePath&quot;: &quot;A String&quot;, # Optional. Defines the relative storage path in the Cloud Storage bucket where the diagnostic logs will be written: Default path will be the root directory of the Cloud Storage bucket (`gs://$GCS_BUCKET/$DATE_$TIME.tar.gz`) Example of full path where Log file will be written: `gs://$GCS_BUCKET/$RELATIVE_PATH/`
},
&quot;timeoutMinutes&quot;: 42, # Optional. Maxmium amount of time in minutes before the operation times out.
}

x__xgafv: string, V1 error format.
Expand Down
12 changes: 11 additions & 1 deletion googleapiclient/discovery_cache/documents/notebooks.v1.json
Expand Up @@ -1932,7 +1932,7 @@
}
}
},
"revision": "20230710",
"revision": "20230720",
"rootUrl": "https://notebooks.googleapis.com/",
"schemas": {
"AcceleratorConfig": {
Expand Down Expand Up @@ -2046,6 +2046,11 @@
"diagnosticConfig": {
"$ref": "DiagnosticConfig",
"description": "Required. Defines flags that are used to run the diagnostic tool"
},
"timeoutMinutes": {
"description": "Optional. Maxmium amount of time in minutes before the operation times out.",
"format": "int32",
"type": "integer"
}
},
"type": "object"
Expand All @@ -2057,6 +2062,11 @@
"diagnosticConfig": {
"$ref": "DiagnosticConfig",
"description": "Required. Defines flags that are used to run the diagnostic tool"
},
"timeoutMinutes": {
"description": "Optional. Maxmium amount of time in minutes before the operation times out.",
"format": "int32",
"type": "integer"
}
},
"type": "object"
Expand Down
7 changes: 6 additions & 1 deletion googleapiclient/discovery_cache/documents/notebooks.v2.json
Expand Up @@ -813,7 +813,7 @@
}
}
},
"revision": "20230710",
"revision": "20230720",
"rootUrl": "https://notebooks.googleapis.com/",
"schemas": {
"AcceleratorConfig": {
Expand Down Expand Up @@ -1027,6 +1027,11 @@
"diagnosticConfig": {
"$ref": "DiagnosticConfig",
"description": "Required. Defines flags that are used to run the diagnostic tool"
},
"timeoutMinutes": {
"description": "Optional. Maxmium amount of time in minutes before the operation times out.",
"format": "int32",
"type": "integer"
}
},
"type": "object"
Expand Down

0 comments on commit 0b6e2a9

Please sign in to comment.