Skip to content

Commit d05061c

Browse files
feat: Automated regeneration of notebooks v2 client (googleapis#26815)
Auto-created at 2026-06-14 11:42:25 +0000 using the toys pull request generator.
1 parent ba8b897 commit d05061c

7 files changed

Lines changed: 27 additions & 5 deletions

File tree

api_names_out.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -338954,6 +338954,8 @@
338954338954
"/notebooks:v2/GenerateAccessTokenResponse/scope": scope
338955338955
"/notebooks:v2/GenerateAccessTokenResponse/token_type": token_type
338956338956
"/notebooks:v2/ImageRelease": image_release
338957+
"/notebooks:v2/ImageRelease/description": description
338958+
"/notebooks:v2/ImageRelease/imageFamily": image_family
338957338959
"/notebooks:v2/ImageRelease/imageName": image_name
338958338960
"/notebooks:v2/ImageRelease/releaseName": release_name
338959338961
"/notebooks:v2/Instance": instance

generated/google-apis-notebooks_v2/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Release history for google-apis-notebooks_v2
22

3+
### v0.34.0 (2026-06-14)
4+
5+
* Regenerated from discovery document revision 20260528
6+
* Regenerated using generator version 0.19.0
7+
38
### v0.33.0 (2026-05-24)
49

510
* Regenerated from discovery document revision 20260521

generated/google-apis-notebooks_v2/OVERVIEW.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ The [product documentation](https://cloud.google.com/notebooks/docs/) may provid
8383

8484
## Supported Ruby versions
8585

86-
This library is supported on Ruby 3.1+.
86+
This library is supported on Ruby 3.2+.
8787

8888
Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
8989

generated/google-apis-notebooks_v2/google-apis-notebooks_v2.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ Gem::Specification.new do |gem|
2828
gem.files = Dir.glob("lib/**/*.rb") + Dir.glob("*.md") + [".yardopts"]
2929
gem.require_paths = ["lib"]
3030

31-
gem.required_ruby_version = '>= 3.1'
31+
gem.required_ruby_version = '>= 3.2'
3232
gem.add_runtime_dependency "google-apis-core", ">= 0.15.0", "< 2.a"
3333
end

generated/google-apis-notebooks_v2/lib/google/apis/notebooks_v2/classes.rb

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -892,6 +892,17 @@ def update!(**args)
892892
class ImageRelease
893893
include Google::Apis::Core::Hashable
894894

895+
# Output only. The description of the image.
896+
# Corresponds to the JSON property `description`
897+
# @return [String]
898+
attr_accessor :description
899+
900+
# Output only. The image family of the image. (ex: workbench-instances or
901+
# workbench-2603)
902+
# Corresponds to the JSON property `imageFamily`
903+
# @return [String]
904+
attr_accessor :image_family
905+
895906
# Output only. The name of the image of the form workbench-instances-vYYYYmmdd--
896907
# Corresponds to the JSON property `imageName`
897908
# @return [String]
@@ -908,6 +919,8 @@ def initialize(**args)
908919

909920
# Update properties of this object
910921
def update!(**args)
922+
@description = args[:description] if args.key?(:description)
923+
@image_family = args[:image_family] if args.key?(:image_family)
911924
@image_name = args[:image_name] if args.key?(:image_name)
912925
@release_name = args[:release_name] if args.key?(:release_name)
913926
end

generated/google-apis-notebooks_v2/lib/google/apis/notebooks_v2/gem_version.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ module Google
1616
module Apis
1717
module NotebooksV2
1818
# Version of the google-apis-notebooks_v2 gem
19-
GEM_VERSION = "0.33.0"
19+
GEM_VERSION = "0.34.0"
2020

2121
# Version of the code generator used to generate this client
22-
GENERATOR_VERSION = "0.18.0"
22+
GENERATOR_VERSION = "0.19.0"
2323

2424
# Revision of the discovery document this client was generated from
25-
REVISION = "20260521"
25+
REVISION = "20260528"
2626
end
2727
end
2828
end

generated/google-apis-notebooks_v2/lib/google/apis/notebooks_v2/representations.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -555,6 +555,8 @@ class Representation < Google::Apis::Core::JsonRepresentation
555555
class ImageRelease
556556
# @private
557557
class Representation < Google::Apis::Core::JsonRepresentation
558+
property :description, as: 'description'
559+
property :image_family, as: 'imageFamily'
558560
property :image_name, as: 'imageName'
559561
property :release_name, as: 'releaseName'
560562
end

0 commit comments

Comments
 (0)