google-apis-notebooks_v2 0.18.0 → 0.20.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: 7112690e9c61f8a45878a7f151ac1d0d831d9f30bac104ceb382bd7547e206c3
|
4
|
+
data.tar.gz: 1f0e8f312ea00bbfd01a850c09a609f74d5512537951af7733ee51f37668bf84
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ea1c36b1fa6e64c50d6825121985f51ffe65561e1990f2e8386d505fd480d1500ad7e5844a9ebfc577aadc5f7c179886e79d5beb49327f1c62399aa5972ccd81
|
7
|
+
data.tar.gz: 39ead989f9b88ec252ab0a1fd10c59b55577b17b18a2eda42a99cd9c1b9c3d3887099187d96c50c6658078d60b9acd0dac8fcd9735c351d45d9a2ebe86d324ee
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-notebooks_v2
|
2
2
|
|
3
|
+
### v0.20.0 (2024-12-15)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20241204
|
6
|
+
|
7
|
+
### v0.19.0 (2024-11-17)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20241106
|
10
|
+
|
3
11
|
### v0.18.0 (2024-10-27)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20241016
|
@@ -768,6 +768,13 @@ module Google
|
|
768
768
|
attr_accessor :disable_proxy_access
|
769
769
|
alias_method :disable_proxy_access?, :disable_proxy_access
|
770
770
|
|
771
|
+
# Optional. Flag that specifies that a notebook can be accessed with third party
|
772
|
+
# identity provider.
|
773
|
+
# Corresponds to the JSON property `enableThirdPartyIdentity`
|
774
|
+
# @return [Boolean]
|
775
|
+
attr_accessor :enable_third_party_identity
|
776
|
+
alias_method :enable_third_party_identity?, :enable_third_party_identity
|
777
|
+
|
771
778
|
# The definition of how to configure a VM instance outside of Resources and
|
772
779
|
# Identity.
|
773
780
|
# Corresponds to the JSON property `gceSetup`
|
@@ -859,6 +866,7 @@ module Google
|
|
859
866
|
@create_time = args[:create_time] if args.key?(:create_time)
|
860
867
|
@creator = args[:creator] if args.key?(:creator)
|
861
868
|
@disable_proxy_access = args[:disable_proxy_access] if args.key?(:disable_proxy_access)
|
869
|
+
@enable_third_party_identity = args[:enable_third_party_identity] if args.key?(:enable_third_party_identity)
|
862
870
|
@gce_setup = args[:gce_setup] if args.key?(:gce_setup)
|
863
871
|
@health_info = args[:health_info] if args.key?(:health_info)
|
864
872
|
@health_state = args[:health_state] if args.key?(:health_state)
|
@@ -1137,8 +1145,9 @@ module Google
|
|
1137
1145
|
attr_accessor :endpoint
|
1138
1146
|
|
1139
1147
|
# Identifies whether the user has requested cancellation of the operation.
|
1140
|
-
# Operations that have successfully been cancelled have
|
1141
|
-
# with a google.rpc.Status.code of 1
|
1148
|
+
# Operations that have successfully been cancelled have google.longrunning.
|
1149
|
+
# Operation.error value with a google.rpc.Status.code of `1`, corresponding to `
|
1150
|
+
# Code.CANCELLED`.
|
1142
1151
|
# Corresponds to the JSON property `requestedCancellation`
|
1143
1152
|
# @return [Boolean]
|
1144
1153
|
attr_accessor :requested_cancellation
|
@@ -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.20.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20241204"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -483,6 +483,7 @@ module Google
|
|
483
483
|
property :create_time, as: 'createTime'
|
484
484
|
property :creator, as: 'creator'
|
485
485
|
property :disable_proxy_access, as: 'disableProxyAccess'
|
486
|
+
property :enable_third_party_identity, as: 'enableThirdPartyIdentity'
|
486
487
|
property :gce_setup, as: 'gceSetup', class: Google::Apis::NotebooksV2::GceSetup, decorator: Google::Apis::NotebooksV2::GceSetup::Representation
|
487
488
|
|
488
489
|
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,14 @@
|
|
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.20.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: 2024-
|
11
|
+
date: 2024-12-15 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_v2/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-notebooks_v2/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-notebooks_v2/v0.20.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-notebooks_v2
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.5.
|
78
|
+
rubygems_version: 3.5.23
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Notebooks API V2
|