google-apis-notebooks_v1 0.22.0 → 0.23.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: 5789618c2e7b882452883e91d2abeb6f950e2e49cf21c5827661bab1924784e6
|
4
|
+
data.tar.gz: 5b87b930313d78530685575c6cdef4f96861b75493e612045f339a5380b8d2c5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d49a94015cf3f0d91ffa7c795ad2667c48824a7290039beeeb39ce51ef25a6c7546a82e89325bdb95a9091e3c175a657a49562a1574cd9694c20a5f6f6a28578
|
7
|
+
data.tar.gz: 535b1a4e4dd4ad227b0e2c707bc8999a18a1b2f8f7826f165222546571b5e2a1a97cae5841ee55362b65eae928b393ef7e0da45f8fa26c5edaaafbcd6bc10021
|
data/CHANGELOG.md
CHANGED
@@ -120,6 +120,20 @@ module Google
|
|
120
120
|
end
|
121
121
|
end
|
122
122
|
|
123
|
+
# Definition of the boot image used by the Runtime. Used to facilitate runtime
|
124
|
+
# upgradeability.
|
125
|
+
class BootImage
|
126
|
+
include Google::Apis::Core::Hashable
|
127
|
+
|
128
|
+
def initialize(**args)
|
129
|
+
update!(**args)
|
130
|
+
end
|
131
|
+
|
132
|
+
# Update properties of this object
|
133
|
+
def update!(**args)
|
134
|
+
end
|
135
|
+
end
|
136
|
+
|
123
137
|
# The request message for Operations.CancelOperation.
|
124
138
|
class CancelOperationRequest
|
125
139
|
include Google::Apis::Core::Hashable
|
@@ -755,6 +769,13 @@ module Google
|
|
755
769
|
# @return [String]
|
756
770
|
attr_accessor :boot_disk_type
|
757
771
|
|
772
|
+
# Optional. Flag to enable ip forwarding or not, default false/off. https://
|
773
|
+
# cloud.google.com/vpc/docs/using-routes#canipforward
|
774
|
+
# Corresponds to the JSON property `canIpForward`
|
775
|
+
# @return [Boolean]
|
776
|
+
attr_accessor :can_ip_forward
|
777
|
+
alias_method :can_ip_forward?, :can_ip_forward
|
778
|
+
|
758
779
|
# Definition of a container image for starting a notebook instance with the
|
759
780
|
# environment installed in a container.
|
760
781
|
# Corresponds to the JSON property `containerImage`
|
@@ -962,6 +983,7 @@ module Google
|
|
962
983
|
@accelerator_config = args[:accelerator_config] if args.key?(:accelerator_config)
|
963
984
|
@boot_disk_size_gb = args[:boot_disk_size_gb] if args.key?(:boot_disk_size_gb)
|
964
985
|
@boot_disk_type = args[:boot_disk_type] if args.key?(:boot_disk_type)
|
986
|
+
@can_ip_forward = args[:can_ip_forward] if args.key?(:can_ip_forward)
|
965
987
|
@container_image = args[:container_image] if args.key?(:container_image)
|
966
988
|
@create_time = args[:create_time] if args.key?(:create_time)
|
967
989
|
@creator = args[:creator] if args.key?(:creator)
|
@@ -2876,6 +2898,12 @@ module Google
|
|
2876
2898
|
# @return [Google::Apis::NotebooksV1::RuntimeAcceleratorConfig]
|
2877
2899
|
attr_accessor :accelerator_config
|
2878
2900
|
|
2901
|
+
# Definition of the boot image used by the Runtime. Used to facilitate runtime
|
2902
|
+
# upgradeability.
|
2903
|
+
# Corresponds to the JSON property `bootImage`
|
2904
|
+
# @return [Google::Apis::NotebooksV1::BootImage]
|
2905
|
+
attr_accessor :boot_image
|
2906
|
+
|
2879
2907
|
# Optional. Use a list of container images to use as Kernels in the notebook
|
2880
2908
|
# instance.
|
2881
2909
|
# Corresponds to the JSON property `containerImages`
|
@@ -3000,6 +3028,7 @@ module Google
|
|
3000
3028
|
# Update properties of this object
|
3001
3029
|
def update!(**args)
|
3002
3030
|
@accelerator_config = args[:accelerator_config] if args.key?(:accelerator_config)
|
3031
|
+
@boot_image = args[:boot_image] if args.key?(:boot_image)
|
3003
3032
|
@container_images = args[:container_images] if args.key?(:container_images)
|
3004
3033
|
@data_disk = args[:data_disk] if args.key?(:data_disk)
|
3005
3034
|
@encryption_config = args[:encryption_config] if args.key?(:encryption_config)
|
@@ -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.23.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220224"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -34,6 +34,12 @@ module Google
|
|
34
34
|
include Google::Apis::Core::JsonObjectSupport
|
35
35
|
end
|
36
36
|
|
37
|
+
class BootImage
|
38
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
39
|
+
|
40
|
+
include Google::Apis::Core::JsonObjectSupport
|
41
|
+
end
|
42
|
+
|
37
43
|
class CancelOperationRequest
|
38
44
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
39
45
|
|
@@ -472,6 +478,12 @@ module Google
|
|
472
478
|
end
|
473
479
|
end
|
474
480
|
|
481
|
+
class BootImage
|
482
|
+
# @private
|
483
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
484
|
+
end
|
485
|
+
end
|
486
|
+
|
475
487
|
class CancelOperationRequest
|
476
488
|
# @private
|
477
489
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -621,6 +633,7 @@ module Google
|
|
621
633
|
|
622
634
|
property :boot_disk_size_gb, :numeric_string => true, as: 'bootDiskSizeGb'
|
623
635
|
property :boot_disk_type, as: 'bootDiskType'
|
636
|
+
property :can_ip_forward, as: 'canIpForward'
|
624
637
|
property :container_image, as: 'containerImage', class: Google::Apis::NotebooksV1::ContainerImage, decorator: Google::Apis::NotebooksV1::ContainerImage::Representation
|
625
638
|
|
626
639
|
property :create_time, as: 'createTime'
|
@@ -1164,6 +1177,8 @@ module Google
|
|
1164
1177
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1165
1178
|
property :accelerator_config, as: 'acceleratorConfig', class: Google::Apis::NotebooksV1::RuntimeAcceleratorConfig, decorator: Google::Apis::NotebooksV1::RuntimeAcceleratorConfig::Representation
|
1166
1179
|
|
1180
|
+
property :boot_image, as: 'bootImage', class: Google::Apis::NotebooksV1::BootImage, decorator: Google::Apis::NotebooksV1::BootImage::Representation
|
1181
|
+
|
1167
1182
|
collection :container_images, as: 'containerImages', class: Google::Apis::NotebooksV1::ContainerImage, decorator: Google::Apis::NotebooksV1::ContainerImage::Representation
|
1168
1183
|
|
1169
1184
|
property :data_disk, as: 'dataDisk', class: Google::Apis::NotebooksV1::LocalDisk, decorator: Google::Apis::NotebooksV1::LocalDisk::Representation
|
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.23.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: 2022-
|
11
|
+
date: 2022-03-07 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.23.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: []
|