google-apis-notebooks_v1 0.20.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: c3d45a90a8df6e11e28aefbcdad4ffe0bd7e55de8a7ad74759c85d7a47f22666
|
4
|
+
data.tar.gz: 2ca96d8a91d0cec809f9ef78f2c758e494680715207f471f0810422c122c4fef
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b30f88160ffc7532935f7de16e17dd93c5d9b479479e6573b52ae22e50bad55daaf8f0ec9e571f69e79c7e04986690b97a8067240ee465cb882f99758a29e06b
|
7
|
+
data.tar.gz: 0d72d9bbdfdfa6066bad32c05de835e006f9117f493547a298a4bb657b3fb93465ef7db29553c5586f3a150dad538196ebb67d25ff7e1ce1c7857d3e8838ecc8
|
data/CHANGELOG.md
CHANGED
@@ -392,6 +392,11 @@ module Google
|
|
392
392
|
class Event
|
393
393
|
include Google::Apis::Core::Hashable
|
394
394
|
|
395
|
+
# Optional. Event details. This field is used to pass event information.
|
396
|
+
# Corresponds to the JSON property `details`
|
397
|
+
# @return [Hash<String,String>]
|
398
|
+
attr_accessor :details
|
399
|
+
|
395
400
|
# Event report time.
|
396
401
|
# Corresponds to the JSON property `reportTime`
|
397
402
|
# @return [String]
|
@@ -408,6 +413,7 @@ module Google
|
|
408
413
|
|
409
414
|
# Update properties of this object
|
410
415
|
def update!(**args)
|
416
|
+
@details = args[:details] if args.key?(:details)
|
411
417
|
@report_time = args[:report_time] if args.key?(:report_time)
|
412
418
|
@type = args[:type] if args.key?(:type)
|
413
419
|
end
|
@@ -752,6 +758,11 @@ module Google
|
|
752
758
|
# @return [String]
|
753
759
|
attr_accessor :create_time
|
754
760
|
|
761
|
+
# Output only. Email address of entity that sent original CreateInstance request.
|
762
|
+
# Corresponds to the JSON property `creator`
|
763
|
+
# @return [String]
|
764
|
+
attr_accessor :creator
|
765
|
+
|
755
766
|
# Specify a custom Cloud Storage path where the GPU driver is stored. If not
|
756
767
|
# specified, we'll automatically choose from official GPU drivers.
|
757
768
|
# Corresponds to the JSON property `customGpuDriverPath`
|
@@ -945,6 +956,7 @@ module Google
|
|
945
956
|
@boot_disk_type = args[:boot_disk_type] if args.key?(:boot_disk_type)
|
946
957
|
@container_image = args[:container_image] if args.key?(:container_image)
|
947
958
|
@create_time = args[:create_time] if args.key?(:create_time)
|
959
|
+
@creator = args[:creator] if args.key?(:creator)
|
948
960
|
@custom_gpu_driver_path = args[:custom_gpu_driver_path] if args.key?(:custom_gpu_driver_path)
|
949
961
|
@data_disk_size_gb = args[:data_disk_size_gb] if args.key?(:data_disk_size_gb)
|
950
962
|
@data_disk_type = args[:data_disk_type] if args.key?(:data_disk_type)
|
@@ -1793,7 +1805,7 @@ module Google
|
|
1793
1805
|
end
|
1794
1806
|
end
|
1795
1807
|
|
1796
|
-
# Request for
|
1808
|
+
# Request for resetting a notebook instance
|
1797
1809
|
class ResetInstanceRequest
|
1798
1810
|
include Google::Apis::Core::Hashable
|
1799
1811
|
|
@@ -1806,7 +1818,7 @@ module Google
|
|
1806
1818
|
end
|
1807
1819
|
end
|
1808
1820
|
|
1809
|
-
# Request for
|
1821
|
+
# Request for resetting a Managed Notebook Runtime.
|
1810
1822
|
class ResetRuntimeRequest
|
1811
1823
|
include Google::Apis::Core::Hashable
|
1812
1824
|
|
@@ -2116,6 +2128,13 @@ module Google
|
|
2116
2128
|
# @return [String]
|
2117
2129
|
attr_accessor :post_startup_script
|
2118
2130
|
|
2131
|
+
# Output only. Bool indicating whether an newer image is available in an image
|
2132
|
+
# family.
|
2133
|
+
# Corresponds to the JSON property `upgradeable`
|
2134
|
+
# @return [Boolean]
|
2135
|
+
attr_accessor :upgradeable
|
2136
|
+
alias_method :upgradeable?, :upgradeable
|
2137
|
+
|
2119
2138
|
def initialize(**args)
|
2120
2139
|
update!(**args)
|
2121
2140
|
end
|
@@ -2130,6 +2149,7 @@ module Google
|
|
2130
2149
|
@kernels = args[:kernels] if args.key?(:kernels)
|
2131
2150
|
@notebook_upgrade_schedule = args[:notebook_upgrade_schedule] if args.key?(:notebook_upgrade_schedule)
|
2132
2151
|
@post_startup_script = args[:post_startup_script] if args.key?(:post_startup_script)
|
2152
|
+
@upgradeable = args[:upgradeable] if args.key?(:upgradeable)
|
2133
2153
|
end
|
2134
2154
|
end
|
2135
2155
|
|
@@ -2924,6 +2944,17 @@ module Google
|
|
2924
2944
|
# @return [String]
|
2925
2945
|
attr_accessor :nic_type
|
2926
2946
|
|
2947
|
+
# Optional. Reserved IP Range name is used for VPC Peering. The subnetwork
|
2948
|
+
# allocation will use the range *name* if it's assigned. Example: managed-
|
2949
|
+
# notebooks-range-c PEERING_RANGE_NAME_3=managed-notebooks-range-c gcloud
|
2950
|
+
# compute addresses create $PEERING_RANGE_NAME_3 \ --global \ --prefix-length=24
|
2951
|
+
# \ --description="Google Cloud Managed Notebooks Range 24 c" \ --network=$
|
2952
|
+
# NETWORK \ --addresses=192.168.0.0 \ --purpose=VPC_PEERING Field value will be:
|
2953
|
+
# `managed-notebooks-range-c`
|
2954
|
+
# Corresponds to the JSON property `reservedIpRange`
|
2955
|
+
# @return [String]
|
2956
|
+
attr_accessor :reserved_ip_range
|
2957
|
+
|
2927
2958
|
# A set of Shielded Instance options. Check [Images using supported Shielded VM
|
2928
2959
|
# features](https://cloud.google.com/compute/docs/instances/modifying-shielded-
|
2929
2960
|
# vm). Not all combinations are valid.
|
@@ -2971,6 +3002,7 @@ module Google
|
|
2971
3002
|
@metadata = args[:metadata] if args.key?(:metadata)
|
2972
3003
|
@network = args[:network] if args.key?(:network)
|
2973
3004
|
@nic_type = args[:nic_type] if args.key?(:nic_type)
|
3005
|
+
@reserved_ip_range = args[:reserved_ip_range] if args.key?(:reserved_ip_range)
|
2974
3006
|
@shielded_instance_config = args[:shielded_instance_config] if args.key?(:shielded_instance_config)
|
2975
3007
|
@subnet = args[:subnet] if args.key?(:subnet)
|
2976
3008
|
@tags = args[:tags] if args.key?(:tags)
|
@@ -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.21.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 = "20220205"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -543,6 +543,7 @@ module Google
|
|
543
543
|
class Event
|
544
544
|
# @private
|
545
545
|
class Representation < Google::Apis::Core::JsonRepresentation
|
546
|
+
hash :details, as: 'details'
|
546
547
|
property :report_time, as: 'reportTime'
|
547
548
|
property :type, as: 'type'
|
548
549
|
end
|
@@ -622,6 +623,7 @@ module Google
|
|
622
623
|
property :container_image, as: 'containerImage', class: Google::Apis::NotebooksV1::ContainerImage, decorator: Google::Apis::NotebooksV1::ContainerImage::Representation
|
623
624
|
|
624
625
|
property :create_time, as: 'createTime'
|
626
|
+
property :creator, as: 'creator'
|
625
627
|
property :custom_gpu_driver_path, as: 'customGpuDriverPath'
|
626
628
|
property :data_disk_size_gb, :numeric_string => true, as: 'dataDiskSizeGb'
|
627
629
|
property :data_disk_type, as: 'dataDiskType'
|
@@ -946,6 +948,7 @@ module Google
|
|
946
948
|
|
947
949
|
property :notebook_upgrade_schedule, as: 'notebookUpgradeSchedule'
|
948
950
|
property :post_startup_script, as: 'postStartupScript'
|
951
|
+
property :upgradeable, as: 'upgradeable'
|
949
952
|
end
|
950
953
|
end
|
951
954
|
|
@@ -1173,6 +1176,7 @@ module Google
|
|
1173
1176
|
hash :metadata, as: 'metadata'
|
1174
1177
|
property :network, as: 'network'
|
1175
1178
|
property :nic_type, as: 'nicType'
|
1179
|
+
property :reserved_ip_range, as: 'reservedIpRange'
|
1176
1180
|
property :shielded_instance_config, as: 'shieldedInstanceConfig', class: Google::Apis::NotebooksV1::RuntimeShieldedInstanceConfig, decorator: Google::Apis::NotebooksV1::RuntimeShieldedInstanceConfig::Representation
|
1177
1181
|
|
1178
1182
|
property :subnet, as: 'subnet'
|
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.21.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-02-
|
11
|
+
date: 2022-02-14 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.21.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: []
|