google-apis-notebooks_v2 0.19.0 → 0.21.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: 33b9211c50052a606a4c6e3884c5712e07f348c20590d4109a7b1db8b3b8c07c
|
4
|
+
data.tar.gz: 807f10104a5eb9ff4c39e3e0fedcf11f7eb930244cb095cce6ad9a6dd7fa4ca4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ebc005afff691c5cc187608b4da791ac017ea678b3281cf4623e2435f2cdee654a85ece1f0f22389330c2c17bc904e3ee48d5376b491e78543dd9fde10cf47d9
|
7
|
+
data.tar.gz: 3d0c8e50e23fa31568d8fd6555de95161a4c71207bd202f221c16321b5efe243fedbeff5e2bac257495d37b1264a87152de03ca9180731e0b88c1d6238dd105d
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-notebooks_v2
|
2
2
|
|
3
|
+
### v0.21.0 (2025-03-23)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250224
|
6
|
+
* Regenerated using generator version 0.16.0
|
7
|
+
|
8
|
+
### v0.20.0 (2024-12-15)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20241204
|
11
|
+
|
3
12
|
### v0.19.0 (2024-11-17)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20241106
|
@@ -285,6 +285,13 @@ module Google
|
|
285
285
|
# @return [Google::Apis::NotebooksV2::DefaultValues]
|
286
286
|
attr_accessor :default_values
|
287
287
|
|
288
|
+
# Output only. Flag to disable the creation of legacy Workbench notebooks (User-
|
289
|
+
# managed notebooks and Google-managed notebooks).
|
290
|
+
# Corresponds to the JSON property `disableWorkbenchLegacyCreation`
|
291
|
+
# @return [Boolean]
|
292
|
+
attr_accessor :disable_workbench_legacy_creation
|
293
|
+
alias_method :disable_workbench_legacy_creation?, :disable_workbench_legacy_creation
|
294
|
+
|
288
295
|
# SupportedValues represents the values supported by the configuration.
|
289
296
|
# Corresponds to the JSON property `supportedValues`
|
290
297
|
# @return [Google::Apis::NotebooksV2::SupportedValues]
|
@@ -298,6 +305,7 @@ module Google
|
|
298
305
|
def update!(**args)
|
299
306
|
@available_images = args[:available_images] if args.key?(:available_images)
|
300
307
|
@default_values = args[:default_values] if args.key?(:default_values)
|
308
|
+
@disable_workbench_legacy_creation = args[:disable_workbench_legacy_creation] if args.key?(:disable_workbench_legacy_creation)
|
301
309
|
@supported_values = args[:supported_values] if args.key?(:supported_values)
|
302
310
|
end
|
303
311
|
end
|
@@ -768,6 +776,13 @@ module Google
|
|
768
776
|
attr_accessor :disable_proxy_access
|
769
777
|
alias_method :disable_proxy_access?, :disable_proxy_access
|
770
778
|
|
779
|
+
# Optional. Flag that specifies that a notebook can be accessed with third party
|
780
|
+
# identity provider.
|
781
|
+
# Corresponds to the JSON property `enableThirdPartyIdentity`
|
782
|
+
# @return [Boolean]
|
783
|
+
attr_accessor :enable_third_party_identity
|
784
|
+
alias_method :enable_third_party_identity?, :enable_third_party_identity
|
785
|
+
|
771
786
|
# The definition of how to configure a VM instance outside of Resources and
|
772
787
|
# Identity.
|
773
788
|
# Corresponds to the JSON property `gceSetup`
|
@@ -859,6 +874,7 @@ module Google
|
|
859
874
|
@create_time = args[:create_time] if args.key?(:create_time)
|
860
875
|
@creator = args[:creator] if args.key?(:creator)
|
861
876
|
@disable_proxy_access = args[:disable_proxy_access] if args.key?(:disable_proxy_access)
|
877
|
+
@enable_third_party_identity = args[:enable_third_party_identity] if args.key?(:enable_third_party_identity)
|
862
878
|
@gce_setup = args[:gce_setup] if args.key?(:gce_setup)
|
863
879
|
@health_info = args[:health_info] if args.key?(:health_info)
|
864
880
|
@health_state = args[:health_state] if args.key?(:health_state)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module NotebooksV2
|
18
18
|
# Version of the google-apis-notebooks_v2 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.21.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250224"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -356,6 +356,7 @@ module Google
|
|
356
356
|
|
357
357
|
property :default_values, as: 'defaultValues', class: Google::Apis::NotebooksV2::DefaultValues, decorator: Google::Apis::NotebooksV2::DefaultValues::Representation
|
358
358
|
|
359
|
+
property :disable_workbench_legacy_creation, as: 'disableWorkbenchLegacyCreation'
|
359
360
|
property :supported_values, as: 'supportedValues', class: Google::Apis::NotebooksV2::SupportedValues, decorator: Google::Apis::NotebooksV2::SupportedValues::Representation
|
360
361
|
|
361
362
|
end
|
@@ -483,6 +484,7 @@ module Google
|
|
483
484
|
property :create_time, as: 'createTime'
|
484
485
|
property :creator, as: 'creator'
|
485
486
|
property :disable_proxy_access, as: 'disableProxyAccess'
|
487
|
+
property :enable_third_party_identity, as: 'enableThirdPartyIdentity'
|
486
488
|
property :gce_setup, as: 'gceSetup', class: Google::Apis::NotebooksV2::GceSetup, decorator: Google::Apis::NotebooksV2::GceSetup::Representation
|
487
489
|
|
488
490
|
hash :health_info, as: 'healthInfo'
|
@@ -846,8 +846,8 @@ module Google
|
|
846
846
|
# Clients can use Operations.GetOperation or other methods to check whether the
|
847
847
|
# cancellation succeeded or whether the operation completed despite cancellation.
|
848
848
|
# On successful cancellation, the operation is not deleted; instead, it becomes
|
849
|
-
# an operation with an Operation.error value with a google.rpc.Status.code of 1
|
850
|
-
# corresponding to `Code.CANCELLED`.
|
849
|
+
# an operation with an Operation.error value with a google.rpc.Status.code of `1`
|
850
|
+
# , corresponding to `Code.CANCELLED`.
|
851
851
|
# @param [String] name
|
852
852
|
# The name of the operation resource to be cancelled.
|
853
853
|
# @param [Google::Apis::NotebooksV2::CancelOperationRequest] cancel_operation_request_object
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-notebooks_v2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.21.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-03-23 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: google-apis-core
|
@@ -58,9 +57,8 @@ licenses:
|
|
58
57
|
metadata:
|
59
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-notebooks_v2/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-notebooks_v2/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-notebooks_v2/v0.21.0
|
62
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-notebooks_v2
|
63
|
-
post_install_message:
|
64
62
|
rdoc_options: []
|
65
63
|
require_paths:
|
66
64
|
- lib
|
@@ -75,8 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
73
|
- !ruby/object:Gem::Version
|
76
74
|
version: '0'
|
77
75
|
requirements: []
|
78
|
-
rubygems_version: 3.5
|
79
|
-
signing_key:
|
76
|
+
rubygems_version: 3.6.5
|
80
77
|
specification_version: 4
|
81
78
|
summary: Simple REST client for Notebooks API V2
|
82
79
|
test_files: []
|