google-apis-notebooks_v1 0.38.0 → 0.39.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b8fcd9be2457f87b1482c47077f51fa55df6b1a1fca804bd8021cc5a7e7d3b24
4
- data.tar.gz: d1feba1d9d7c1c8aa2f9781dd0624a34e52767cd018178c74bdc5acbc67b5faf
3
+ metadata.gz: 05c6b0c8cadbc85dd435af49ae51e1a6dda184390d49a03a0da047b498a0797a
4
+ data.tar.gz: a194807a4d56224ffe4bdadc65d2f71b04a3ef4a0d8b25f319496326c86bf062
5
5
  SHA512:
6
- metadata.gz: 533db26dc21f9a11f9512ea02b28f53c452d11f3fc40731d75e4269bb9cb1ad9555f03499f2007c11303d34355ffb23899a49f96acf9815675b97f9b9f2699da
7
- data.tar.gz: 64b178302030ba7055105be41d43516c407fcce8fbad4b6651598147f79a96c31442cf7c69bc22c8c5f6009003aaba6e6cb24f2398d1ba9df803d84a039bb3ca
6
+ metadata.gz: 6169f4c7430256620e19ed6af3371810fa330d1d5f71aa919d44e4fae466822f6bd93e09a3f82b5ae8130bec672218ecbe721c90c32e98e6f20e44ed777ebe56
7
+ data.tar.gz: 85459e375e7e1f14b26f109e9edc318cbf3e5725c6daca1c1ac9d4dcbd6a4a70e552fcd4888b90ab7d86d786d8fff36ff39a7b87a700b96e8c0b90c6779ad17f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-notebooks_v1
2
2
 
3
+ ### v0.39.0 (2023-03-19)
4
+
5
+ * Regenerated from discovery document revision 20230307
6
+ * Regenerated using generator version 0.12.0
7
+
3
8
  ### v0.38.0 (2023-01-29)
4
9
 
5
10
  * Regenerated from discovery document revision 20230124
@@ -2341,6 +2341,12 @@ module Google
2341
2341
  # @return [Array<Google::Apis::NotebooksV1::ContainerImage>]
2342
2342
  attr_accessor :kernels
2343
2343
 
2344
+ # Bool indicating whether mixer client should be disabled. Default: False
2345
+ # Corresponds to the JSON property `mixerDisabled`
2346
+ # @return [Boolean]
2347
+ attr_accessor :mixer_disabled
2348
+ alias_method :mixer_disabled?, :mixer_disabled
2349
+
2344
2350
  # Cron expression in UTC timezone, used to schedule instance auto upgrade.
2345
2351
  # Please follow the [cron format](https://en.wikipedia.org/wiki/Cron).
2346
2352
  # Corresponds to the JSON property `notebookUpgradeSchedule`
@@ -2385,6 +2391,7 @@ module Google
2385
2391
  @idle_shutdown_timeout = args[:idle_shutdown_timeout] if args.key?(:idle_shutdown_timeout)
2386
2392
  @install_gpu_driver = args[:install_gpu_driver] if args.key?(:install_gpu_driver)
2387
2393
  @kernels = args[:kernels] if args.key?(:kernels)
2394
+ @mixer_disabled = args[:mixer_disabled] if args.key?(:mixer_disabled)
2388
2395
  @notebook_upgrade_schedule = args[:notebook_upgrade_schedule] if args.key?(:notebook_upgrade_schedule)
2389
2396
  @post_startup_script = args[:post_startup_script] if args.key?(:post_startup_script)
2390
2397
  @post_startup_script_behavior = args[:post_startup_script_behavior] if args.key?(:post_startup_script_behavior)
@@ -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.38.0"
19
+ GEM_VERSION = "0.39.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.11.1"
22
+ GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230124"
25
+ REVISION = "20230307"
26
26
  end
27
27
  end
28
28
  end
@@ -1056,6 +1056,7 @@ module Google
1056
1056
  property :install_gpu_driver, as: 'installGpuDriver'
1057
1057
  collection :kernels, as: 'kernels', class: Google::Apis::NotebooksV1::ContainerImage, decorator: Google::Apis::NotebooksV1::ContainerImage::Representation
1058
1058
 
1059
+ property :mixer_disabled, as: 'mixerDisabled'
1059
1060
  property :notebook_upgrade_schedule, as: 'notebookUpgradeSchedule'
1060
1061
  property :post_startup_script, as: 'postStartupScript'
1061
1062
  property :post_startup_script_behavior, as: 'postStartupScriptBehavior'
@@ -1378,13 +1378,7 @@ module Google
1378
1378
  end
1379
1379
 
1380
1380
  # Lists operations that match the specified filter in the request. If the server
1381
- # doesn't support this method, it returns `UNIMPLEMENTED`. NOTE: the `name`
1382
- # binding allows API services to override the binding to use different resource
1383
- # name schemes, such as `users/*/operations`. To override the binding, API
1384
- # services can add a binding such as `"/v1/`name=users/*`/operations"` to their
1385
- # service configuration. For backwards compatibility, the default name includes
1386
- # the operations collection id, however overriding users must ensure the name
1387
- # binding is the parent resource, without the operations collection id.
1381
+ # doesn't support this method, it returns `UNIMPLEMENTED`.
1388
1382
  # @param [String] name
1389
1383
  # The name of the operation's parent resource.
1390
1384
  # @param [String] filter
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.38.0
4
+ version: 0.39.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: 2023-01-29 00:00:00.000000000 Z
11
+ date: 2023-03-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.9.1
19
+ version: 0.11.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.9.1
29
+ version: 0.11.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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.38.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-notebooks_v1/v0.39.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: []