google-apis-notebooks_v1 0.19.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: 2564fe0ba2be0b1e5b0fde75c78ec90186ab50e17f5c43e8510c24816976b4de
4
- data.tar.gz: a3442d864320d3345bca3a95cd9a8db39d6d5ca730a75f035052a17be58aa9c3
3
+ metadata.gz: 78716f41dec7011d979df7f10faa46cd70b584338bb6c72decac3d0f8ff2cd42
4
+ data.tar.gz: d4f3a38a0d61aaffbeec750d0bc0218412c1a95374ddd3e7e25678950de37d54
5
5
  SHA512:
6
- metadata.gz: 3067d3b60aaf3bd26851b0b479ea971809b69a4b649b072e500e0a4b4ec680d8e5159c6e45c4228df40780c5a88549a2d89c73fcd3b17103984100f1e1130b81
7
- data.tar.gz: 5cd71540e35daf387111b843dd76fa9de0299b8824f4d1b5e9d40a1a37dfbf96683567b69bd14c3f723a2ef54a3a32de80f209e485f32f7d1370be462c85a180
6
+ metadata.gz: c03b24fb94472cb1834da8fd68f5bbca342520fcbfe50e9dd32f834dbd24689cb8a695a9b34bd9896048eaf16640f38c4f6c67bd155e0260df672fa73d71d48b
7
+ data.tar.gz: d5a1c3fe62e350a6a889f16f7f4cde6800fac50bcafd178670aa24cc140625ccc3c825efb9746c1e140748e9d7ad7cd39d17a655eeaf589ff870481344807fee
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-notebooks_v1
2
2
 
3
+ ### v0.20.0 (2022-01-31)
4
+
5
+ * Regenerated from discovery document revision 20220125
6
+ * Regenerated using generator version 0.4.1
7
+
3
8
  ### v0.19.0 (2022-01-09)
4
9
 
5
10
  * Regenerated from discovery document revision 20220104
@@ -1872,7 +1872,7 @@ module Google
1872
1872
  # Specifies the selection and configuration of software inside the runtime. The
1873
1873
  # properties to set on runtime. Properties keys are specified in `key:value`
1874
1874
  # format, for example: * `idle_shutdown: true` * `idle_shutdown_timeout: 180` * `
1875
- # report-system-health: true`
1875
+ # enable_health_monitoring: true`
1876
1876
  # Corresponds to the JSON property `softwareConfig`
1877
1877
  # @return [Google::Apis::NotebooksV1::RuntimeSoftwareConfig]
1878
1878
  attr_accessor :software_config
@@ -2064,7 +2064,7 @@ module Google
2064
2064
  # Specifies the selection and configuration of software inside the runtime. The
2065
2065
  # properties to set on runtime. Properties keys are specified in `key:value`
2066
2066
  # format, for example: * `idle_shutdown: true` * `idle_shutdown_timeout: 180` * `
2067
- # report-system-health: true`
2067
+ # enable_health_monitoring: true`
2068
2068
  class RuntimeSoftwareConfig
2069
2069
  include Google::Apis::Core::Hashable
2070
2070
 
@@ -2097,6 +2097,12 @@ module Google
2097
2097
  attr_accessor :install_gpu_driver
2098
2098
  alias_method :install_gpu_driver?, :install_gpu_driver
2099
2099
 
2100
+ # Optional. Use a list of container images to use as Kernels in the notebook
2101
+ # instance.
2102
+ # Corresponds to the JSON property `kernels`
2103
+ # @return [Array<Google::Apis::NotebooksV1::ContainerImage>]
2104
+ attr_accessor :kernels
2105
+
2100
2106
  # Cron expression in UTC timezone, used to schedule instance auto upgrade.
2101
2107
  # Please follow the [cron format](https://en.wikipedia.org/wiki/Cron).
2102
2108
  # Corresponds to the JSON property `notebookUpgradeSchedule`
@@ -2121,6 +2127,7 @@ module Google
2121
2127
  @idle_shutdown = args[:idle_shutdown] if args.key?(:idle_shutdown)
2122
2128
  @idle_shutdown_timeout = args[:idle_shutdown_timeout] if args.key?(:idle_shutdown_timeout)
2123
2129
  @install_gpu_driver = args[:install_gpu_driver] if args.key?(:install_gpu_driver)
2130
+ @kernels = args[:kernels] if args.key?(:kernels)
2124
2131
  @notebook_upgrade_schedule = args[:notebook_upgrade_schedule] if args.key?(:notebook_upgrade_schedule)
2125
2132
  @post_startup_script = args[:post_startup_script] if args.key?(:post_startup_script)
2126
2133
  end
@@ -2841,7 +2848,8 @@ module Google
2841
2848
  # @return [Google::Apis::NotebooksV1::RuntimeAcceleratorConfig]
2842
2849
  attr_accessor :accelerator_config
2843
2850
 
2844
- # Optional. Use a list of container images to start the notebook instance.
2851
+ # Optional. Use a list of container images to use as Kernels in the notebook
2852
+ # instance.
2845
2853
  # Corresponds to the JSON property `containerImages`
2846
2854
  # @return [Array<Google::Apis::NotebooksV1::ContainerImage>]
2847
2855
  attr_accessor :container_images
@@ -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.0"
19
+ GEM_VERSION = "0.20.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.4.0"
22
+ GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220104"
25
+ REVISION = "20220125"
26
26
  end
27
27
  end
28
28
  end
@@ -942,6 +942,8 @@ module Google
942
942
  property :idle_shutdown, as: 'idleShutdown'
943
943
  property :idle_shutdown_timeout, as: 'idleShutdownTimeout'
944
944
  property :install_gpu_driver, as: 'installGpuDriver'
945
+ collection :kernels, as: 'kernels', class: Google::Apis::NotebooksV1::ContainerImage, decorator: Google::Apis::NotebooksV1::ContainerImage::Representation
946
+
945
947
  property :notebook_upgrade_schedule, as: 'notebookUpgradeSchedule'
946
948
  property :post_startup_script, as: 'postStartupScript'
947
949
  end
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.19.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: 2022-01-10 00:00:00.000000000 Z
11
+ date: 2022-02-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.19.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-notebooks_v1/v0.20.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: []
@@ -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.3.4
78
+ rubygems_version: 3.3.5
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Notebooks API V1