google-apis-notebooks_v1 0.36.0 → 0.37.0
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: 69f225f52d27ea2444ba0b442e490540a2c2a20e9b52ecd40dafacfb946ac030
|
|
4
|
+
data.tar.gz: 8f58a35cb3f9e6033eab2de844aba4081fe0d5a5797f5f7a5a764b510453ee43
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cd7299194a4055407dd84d8b09d3880000c9aa24f6cefbc1eb29c5b0aeb64dc7c5fd4ab6f5cf979b988cb0923d56bb2fb27f2790d97022c901c204e153386842
|
|
7
|
+
data.tar.gz: 2e003c58e4a3f6b8d9c954850e343b3d7aebb70de2b96c7451994c3862b770c871cfbd9fa100986d34172ec26b630015b31dff707227926ebd5e1c8188727dfc
|
data/CHANGELOG.md
CHANGED
|
@@ -248,13 +248,13 @@ module Google
|
|
|
248
248
|
attr_accessor :copy_home_files_flag_enabled
|
|
249
249
|
alias_method :copy_home_files_flag_enabled?, :copy_home_files_flag_enabled
|
|
250
250
|
|
|
251
|
-
# Required. User Cloud Storage bucket location (REQUIRED)
|
|
252
|
-
# with path prefix (gs://$GCS_BUCKET) Permissions: User Managed Notebooks: -
|
|
251
|
+
# Required. User Cloud Storage bucket location (REQUIRED). Must be formatted
|
|
252
|
+
# with path prefix (`gs://$GCS_BUCKET`). Permissions: User Managed Notebooks: -
|
|
253
253
|
# storage.buckets.writer: Must be given to the project's service account
|
|
254
254
|
# attached to VM. Google Managed Notebooks: - storage.buckets.writer: Must be
|
|
255
|
-
# given to the project's service account or
|
|
255
|
+
# given to the project's service account or user credentials attached to VM
|
|
256
256
|
# depending on authentication mode. Cloud Storage bucket Log file will be
|
|
257
|
-
# written to gs://$GCS_BUCKET/$RELATIVE_PATH/$VM_DATE_$TIME.tar.gz
|
|
257
|
+
# written to `gs://$GCS_BUCKET/$RELATIVE_PATH/$VM_DATE_$TIME.tar.gz`
|
|
258
258
|
# Corresponds to the JSON property `gcsBucket`
|
|
259
259
|
# @return [String]
|
|
260
260
|
attr_accessor :gcs_bucket
|
|
@@ -267,8 +267,8 @@ module Google
|
|
|
267
267
|
|
|
268
268
|
# Optional. Defines the relative storage path in the Cloud Storage bucket where
|
|
269
269
|
# the diagnostic logs will be written: Default path will be the root directory
|
|
270
|
-
# of the Cloud Storage bucket (gs://$GCS_BUCKET/$DATE_$TIME.tar.gz) Example of
|
|
271
|
-
# full path where Log file will be written: gs://$GCS_BUCKET/$RELATIVE_PATH
|
|
270
|
+
# of the Cloud Storage bucket (`gs://$GCS_BUCKET/$DATE_$TIME.tar.gz`) Example of
|
|
271
|
+
# full path where Log file will be written: `gs://$GCS_BUCKET/$RELATIVE_PATH/`
|
|
272
272
|
# Corresponds to the JSON property `relativePath`
|
|
273
273
|
# @return [String]
|
|
274
274
|
attr_accessor :relative_path
|
|
@@ -2325,6 +2325,12 @@ module Google
|
|
|
2325
2325
|
attr_accessor :upgradeable
|
|
2326
2326
|
alias_method :upgradeable?, :upgradeable
|
|
2327
2327
|
|
|
2328
|
+
# Output only. version of boot image such as M100, from release label of the
|
|
2329
|
+
# image.
|
|
2330
|
+
# Corresponds to the JSON property `version`
|
|
2331
|
+
# @return [String]
|
|
2332
|
+
attr_accessor :version
|
|
2333
|
+
|
|
2328
2334
|
def initialize(**args)
|
|
2329
2335
|
update!(**args)
|
|
2330
2336
|
end
|
|
@@ -2342,6 +2348,7 @@ module Google
|
|
|
2342
2348
|
@post_startup_script = args[:post_startup_script] if args.key?(:post_startup_script)
|
|
2343
2349
|
@post_startup_script_behavior = args[:post_startup_script_behavior] if args.key?(:post_startup_script_behavior)
|
|
2344
2350
|
@upgradeable = args[:upgradeable] if args.key?(:upgradeable)
|
|
2351
|
+
@version = args[:version] if args.key?(:version)
|
|
2345
2352
|
end
|
|
2346
2353
|
end
|
|
2347
2354
|
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module NotebooksV1
|
|
18
18
|
# Version of the google-apis-notebooks_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.37.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.11.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20221213"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1044,6 +1044,7 @@ module Google
|
|
|
1044
1044
|
property :post_startup_script, as: 'postStartupScript'
|
|
1045
1045
|
property :post_startup_script_behavior, as: 'postStartupScriptBehavior'
|
|
1046
1046
|
property :upgradeable, as: 'upgradeable'
|
|
1047
|
+
property :version, as: 'version'
|
|
1047
1048
|
end
|
|
1048
1049
|
end
|
|
1049
1050
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-notebooks_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.37.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2023-01-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-apis-core
|
|
@@ -58,7 +58,7 @@ licenses:
|
|
|
58
58
|
metadata:
|
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-notebooks_v1/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-notebooks_v1/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-notebooks_v1/v0.37.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-notebooks_v1
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|