google-cloud-notebooks-v1 0.4.0 → 0.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3d4ee3e61545feb3914c66453e7f9b75d7125ff5ba193db4031783d4c835d380
|
|
4
|
+
data.tar.gz: 18337a4c34add0c1ed20e18dd1be34f447df5cbc7cf35c4a4476043175dec668
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 60ae359568c21c2b4503442d31762b43d3a9ecd51d371a705da5c8ead245c1ba015735c458b83514c88ef477a40d729f269a5e2efbbe91096b88317b4dca9e72
|
|
7
|
+
data.tar.gz: 836407b41b59b805fd5a0ed0cde569283a0e5e882a1b050569d03139da18282bb7de479ebd9822872df0ce8bd1355f371fae5eb519591620e90f489d1d39f4c1
|
data/README.md
CHANGED
|
@@ -46,7 +46,7 @@ for general usage information.
|
|
|
46
46
|
## Enabling Logging
|
|
47
47
|
|
|
48
48
|
To enable logging for this library, set the logger for the underlying [gRPC](https://github.com/grpc/grpc/tree/master/src/ruby) library.
|
|
49
|
-
The logger that you set may be a Ruby stdlib [`Logger`](https://ruby-doc.org/
|
|
49
|
+
The logger that you set may be a Ruby stdlib [`Logger`](https://ruby-doc.org/current/stdlibs/logger/Logger.html) as shown below,
|
|
50
50
|
or a [`Google::Cloud::Logging::Logger`](https://googleapis.dev/ruby/google-cloud-logging/latest)
|
|
51
51
|
that will write logs to [Cloud Logging](https://cloud.google.com/logging/). See [grpc/logconfig.rb](https://github.com/grpc/grpc/blob/master/src/ruby/lib/grpc/logconfig.rb)
|
|
52
52
|
and the gRPC [spec_helper.rb](https://github.com/grpc/grpc/blob/master/src/ruby/spec/spec_helper.rb) for additional information.
|
|
@@ -24,25 +24,27 @@ module Google
|
|
|
24
24
|
# Defines flags that are used to run the diagnostic tool
|
|
25
25
|
# @!attribute [rw] gcs_bucket
|
|
26
26
|
# @return [::String]
|
|
27
|
-
# Required. User Cloud Storage bucket location (REQUIRED)
|
|
28
|
-
#
|
|
27
|
+
# Required. User Cloud Storage bucket location (REQUIRED).
|
|
28
|
+
# Must be formatted with path prefix (`gs://$GCS_BUCKET`).
|
|
29
29
|
#
|
|
30
30
|
# Permissions:
|
|
31
31
|
# User Managed Notebooks:
|
|
32
32
|
# - storage.buckets.writer: Must be given to the project's service account
|
|
33
|
-
#
|
|
33
|
+
# attached to VM.
|
|
34
34
|
# Google Managed Notebooks:
|
|
35
35
|
# - storage.buckets.writer: Must be given to the project's service account or
|
|
36
|
-
#
|
|
36
|
+
# user credentials attached to VM depending on authentication mode.
|
|
37
37
|
#
|
|
38
38
|
# Cloud Storage bucket Log file will be written to
|
|
39
|
-
# gs://$GCS_BUCKET/$RELATIVE_PATH/$VM_DATE_$TIME.tar.gz
|
|
39
|
+
# `gs://$GCS_BUCKET/$RELATIVE_PATH/$VM_DATE_$TIME.tar.gz`
|
|
40
40
|
# @!attribute [rw] relative_path
|
|
41
41
|
# @return [::String]
|
|
42
|
-
# Optional. Defines the relative storage path in the Cloud Storage bucket
|
|
43
|
-
# diagnostic logs will be written: Default path will be the root
|
|
44
|
-
# the Cloud Storage bucket
|
|
45
|
-
#
|
|
42
|
+
# Optional. Defines the relative storage path in the Cloud Storage bucket
|
|
43
|
+
# where the diagnostic logs will be written: Default path will be the root
|
|
44
|
+
# directory of the Cloud Storage bucket
|
|
45
|
+
# (`gs://$GCS_BUCKET/$DATE_$TIME.tar.gz`)
|
|
46
|
+
# Example of full path where Log file will be written:
|
|
47
|
+
# `gs://$GCS_BUCKET/$RELATIVE_PATH/`
|
|
46
48
|
# @!attribute [rw] repair_flag_enabled
|
|
47
49
|
# @return [::Boolean]
|
|
48
50
|
# Optional. Enables flag to repair service for instance
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-cloud-notebooks-v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-
|
|
11
|
+
date: 2022-12-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: gapic-common
|