google-apis-notebooks_v1 0.41.0 → 0.42.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: 52363817fe3d32cce00be66aa081d36414c8ae5b9ddcd7c25e65dc6eeb0dbc1c
|
4
|
+
data.tar.gz: 116b219920c6491aa0bd83e2fee1b9e259fe1879803d07ddc68d3ab0d73356af
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fba2b8a6097dc907cbbef534a8203e229b8f7013a3e5b06c390f15527ddc692789e24b015eb7ccca4d05d209ae56f110d6f34987da6f141cc85d50f9ed8edac9
|
7
|
+
data.tar.gz: 3cae39e5638f025657cd662bff32393cfae5dfb23066707c62a6fa22ec90636b143e5d10e65247b0daf0001e0446bfa9e033558f49dfa235cde8f0e4fa18c40f
|
data/CHANGELOG.md
CHANGED
@@ -1004,6 +1004,11 @@ module Google
|
|
1004
1004
|
# @return [String]
|
1005
1005
|
attr_accessor :post_startup_script
|
1006
1006
|
|
1007
|
+
# PreMigrationCheck checks how feasible a migration from UmN is.
|
1008
|
+
# Corresponds to the JSON property `preMigrationCheck`
|
1009
|
+
# @return [Google::Apis::NotebooksV1::PreMigrationCheck]
|
1010
|
+
attr_accessor :pre_migration_check
|
1011
|
+
|
1007
1012
|
# Output only. The proxy endpoint that is used to access the Jupyter notebook.
|
1008
1013
|
# Corresponds to the JSON property `proxyUri`
|
1009
1014
|
# @return [String]
|
@@ -1104,6 +1109,7 @@ module Google
|
|
1104
1109
|
@no_public_ip = args[:no_public_ip] if args.key?(:no_public_ip)
|
1105
1110
|
@no_remove_data_disk = args[:no_remove_data_disk] if args.key?(:no_remove_data_disk)
|
1106
1111
|
@post_startup_script = args[:post_startup_script] if args.key?(:post_startup_script)
|
1112
|
+
@pre_migration_check = args[:pre_migration_check] if args.key?(:pre_migration_check)
|
1107
1113
|
@proxy_uri = args[:proxy_uri] if args.key?(:proxy_uri)
|
1108
1114
|
@reservation_affinity = args[:reservation_affinity] if args.key?(:reservation_affinity)
|
1109
1115
|
@service_account = args[:service_account] if args.key?(:service_account)
|
@@ -1829,6 +1835,31 @@ module Google
|
|
1829
1835
|
end
|
1830
1836
|
end
|
1831
1837
|
|
1838
|
+
# PreMigrationCheck checks how feasible a migration from UmN is.
|
1839
|
+
class PreMigrationCheck
|
1840
|
+
include Google::Apis::Core::Hashable
|
1841
|
+
|
1842
|
+
# Message provides a summary or workaround.
|
1843
|
+
# Corresponds to the JSON property `message`
|
1844
|
+
# @return [String]
|
1845
|
+
attr_accessor :message
|
1846
|
+
|
1847
|
+
# Result returns the result of the check.
|
1848
|
+
# Corresponds to the JSON property `result`
|
1849
|
+
# @return [String]
|
1850
|
+
attr_accessor :result
|
1851
|
+
|
1852
|
+
def initialize(**args)
|
1853
|
+
update!(**args)
|
1854
|
+
end
|
1855
|
+
|
1856
|
+
# Update properties of this object
|
1857
|
+
def update!(**args)
|
1858
|
+
@message = args[:message] if args.key?(:message)
|
1859
|
+
@result = args[:result] if args.key?(:result)
|
1860
|
+
end
|
1861
|
+
end
|
1862
|
+
|
1832
1863
|
# Request for getting a new access token.
|
1833
1864
|
class RefreshRuntimeTokenInternalRequest
|
1834
1865
|
include Google::Apis::Core::Hashable
|
@@ -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.42.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230606"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -232,6 +232,12 @@ module Google
|
|
232
232
|
include Google::Apis::Core::JsonObjectSupport
|
233
233
|
end
|
234
234
|
|
235
|
+
class PreMigrationCheck
|
236
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
237
|
+
|
238
|
+
include Google::Apis::Core::JsonObjectSupport
|
239
|
+
end
|
240
|
+
|
235
241
|
class RefreshRuntimeTokenInternalRequest
|
236
242
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
237
243
|
|
@@ -726,6 +732,8 @@ module Google
|
|
726
732
|
property :no_public_ip, as: 'noPublicIp'
|
727
733
|
property :no_remove_data_disk, as: 'noRemoveDataDisk'
|
728
734
|
property :post_startup_script, as: 'postStartupScript'
|
735
|
+
property :pre_migration_check, as: 'preMigrationCheck', class: Google::Apis::NotebooksV1::PreMigrationCheck, decorator: Google::Apis::NotebooksV1::PreMigrationCheck::Representation
|
736
|
+
|
729
737
|
property :proxy_uri, as: 'proxyUri'
|
730
738
|
property :reservation_affinity, as: 'reservationAffinity', class: Google::Apis::NotebooksV1::ReservationAffinity, decorator: Google::Apis::NotebooksV1::ReservationAffinity::Representation
|
731
739
|
|
@@ -908,6 +916,14 @@ module Google
|
|
908
916
|
end
|
909
917
|
end
|
910
918
|
|
919
|
+
class PreMigrationCheck
|
920
|
+
# @private
|
921
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
922
|
+
property :message, as: 'message'
|
923
|
+
property :result, as: 'result'
|
924
|
+
end
|
925
|
+
end
|
926
|
+
|
911
927
|
class RefreshRuntimeTokenInternalRequest
|
912
928
|
# @private
|
913
929
|
class Representation < Google::Apis::Core::JsonRepresentation
|
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.42.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: 2023-06-
|
11
|
+
date: 2023-06-25 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.42.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: []
|