google-apis-notebooks_v2 0.34.0 → 0.36.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: 6e7fc186374192aba2de59e1859bf1b81369604ab7f85c62a22062ae5a662126
4
- data.tar.gz: acd418d588501175f11ff37b4a30731669d6772925638173ba08ae80b3ac6774
3
+ metadata.gz: 3a7b95dee9ef39b48b17e6d5810c1d60e46eb47fde32d097c6bb5d669097b514
4
+ data.tar.gz: 8545eb230f128c1001cc2a3c0c64adbf9712086105b1cb31cdaae8a488842550
5
5
  SHA512:
6
- metadata.gz: 556d02609aa5e8a0b596010d150db450c7c31c0de41a0b55b8099677e3364ad48159f337624f5e089ab0447a2f1d1638b9cff582fae6f59beb87299d2be5bf25
7
- data.tar.gz: ecbb7a7d76ad3f2a898560a42f669240be69f944a918d0e2abf1bbeb49f2829be66e5d0568b59c12aeaf17158b2f24bbe4e764e5ea595b86e46693a1ba453c5e
6
+ metadata.gz: dc5043e23b2a85d2c813c390720cff1404d3c1c81c4449a8ab695c3647e9b0ac92f1673aaedb47d66d6e888a3a9419f33fcab3dd26630975d9e284620880ca25
7
+ data.tar.gz: 6d37a68ec569c059fb6233e8ec888a8249fbcdea3ef10b59b48ca4844c0a9b41de44d23c1b8f0b3f8f0600b56e3f898084448b9cfb5e10cbad1fe1b00a540d52
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-notebooks_v2
2
2
 
3
+ ### v0.36.0 (2026-08-02)
4
+
5
+ * Regenerated from discovery document revision 20260722
6
+
7
+ ### v0.35.0 (2026-06-28)
8
+
9
+ * Regenerated from discovery document revision 20260610
10
+
3
11
  ### v0.34.0 (2026-06-14)
4
12
 
5
13
  * Regenerated from discovery document revision 20260528
@@ -54,11 +54,11 @@ module Google
54
54
  class AccessConfig
55
55
  include Google::Apis::Core::Hashable
56
56
 
57
- # An external IP address associated with this instance. Specify an unused static
58
- # external IP address available to the project or leave this field undefined to
59
- # use an IP from a shared ephemeral IP address pool. If you specify a static
60
- # external IP address, it must live in the same region as the zone of the
61
- # instance.
57
+ # Optional. An external IP address associated with this instance. Specify an
58
+ # unused static external IP address available to the project or leave this field
59
+ # undefined to use an IP from a shared ephemeral IP address pool. If you specify
60
+ # a static external IP address, it must live in the same region as the zone of
61
+ # the instance.
62
62
  # Corresponds to the JSON property `externalIp`
63
63
  # @return [String]
64
64
  attr_accessor :external_ip
@@ -178,8 +178,8 @@ module Google
178
178
  class BootDisk
179
179
  include Google::Apis::Core::Hashable
180
180
 
181
- # Optional. Input only. Disk encryption method used on the boot and data disks,
182
- # defaults to GMEK.
181
+ # Optional. Disk encryption method used on the boot and data disks, defaults to
182
+ # GMEK.
183
183
  # Corresponds to the JSON property `diskEncryption`
184
184
  # @return [String]
185
185
  attr_accessor :disk_encryption
@@ -196,9 +196,9 @@ module Google
196
196
  # @return [String]
197
197
  attr_accessor :disk_type
198
198
 
199
- # Optional. Input only. The KMS key used to encrypt the disks, only applicable
200
- # if disk_encryption is CMEK. Format: `projects/`project_id`/locations/`location`
201
- # /keyRings/`key_ring_id`/cryptoKeys/`key_id`` Learn more about using your own
199
+ # Optional. The KMS key used to encrypt the disks, only applicable if
200
+ # disk_encryption is CMEK. Format: `projects/`project_id`/locations/`location`/
201
+ # keyRings/`key_ring_id`/cryptoKeys/`key_id`` Learn more about using your own
202
202
  # encryption keys.
203
203
  # Corresponds to the JSON property `kmsKey`
204
204
  # @return [String]
@@ -415,8 +415,8 @@ module Google
415
415
  class DataDisk
416
416
  include Google::Apis::Core::Hashable
417
417
 
418
- # Optional. Input only. Disk encryption method used on the boot and data disks,
419
- # defaults to GMEK.
418
+ # Optional. Disk encryption method used on the boot and data disks, defaults to
419
+ # GMEK.
420
420
  # Corresponds to the JSON property `diskEncryption`
421
421
  # @return [String]
422
422
  attr_accessor :disk_encryption
@@ -427,14 +427,14 @@ module Google
427
427
  # @return [Fixnum]
428
428
  attr_accessor :disk_size_gb
429
429
 
430
- # Optional. Input only. Indicates the type of the disk.
430
+ # Optional. Indicates the type of the disk.
431
431
  # Corresponds to the JSON property `diskType`
432
432
  # @return [String]
433
433
  attr_accessor :disk_type
434
434
 
435
- # Optional. Input only. The KMS key used to encrypt the disks, only applicable
436
- # if disk_encryption is CMEK. Format: `projects/`project_id`/locations/`location`
437
- # /keyRings/`key_ring_id`/cryptoKeys/`key_id`` Learn more about using your own
435
+ # Optional. The KMS key used to encrypt the disks, only applicable if
436
+ # disk_encryption is CMEK. Format: `projects/`project_id`/locations/`location`/
437
+ # keyRings/`key_ring_id`/cryptoKeys/`key_id`` Learn more about using your own
438
438
  # encryption keys.
439
439
  # Corresponds to the JSON property `kmsKey`
440
440
  # @return [String]
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module NotebooksV2
18
18
  # Version of the google-apis-notebooks_v2 gem
19
- GEM_VERSION = "0.34.0"
19
+ GEM_VERSION = "0.36.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.19.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260528"
25
+ REVISION = "20260722"
26
26
  end
27
27
  end
28
28
  end
@@ -518,7 +518,11 @@ module Google
518
518
  # reservation_affinity.key` * `gce_setup.reservation_affinity.values` * `
519
519
  # gce_setup.tags` * `gce_setup.container_image` * `gce_setup.container_image.
520
520
  # repository` * `gce_setup.container_image.tag` * `gce_setup.disable_public_ip` *
521
- # `disable_proxy_access`
521
+ # `disable_proxy_access` Note: `gce_setup.disable_public_ip` and `
522
+ # disable_proxy_access` are one-way on update -- they can only be used to *
523
+ # disable* the feature (set the field to `true`). Requests that set either field
524
+ # back to `false` (re-enabling the external IP or proxy access) are rejected
525
+ # with `INVALID_ARGUMENT`.
522
526
  # @param [String] fields
523
527
  # Selector specifying which fields to include in a partial response.
524
528
  # @param [String] quota_user
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-notebooks_v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.34.0
4
+ version: 0.36.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-notebooks_v2/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-notebooks_v2/v0.34.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-notebooks_v2/v0.36.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-notebooks_v2
62
62
  rdoc_options: []
63
63
  require_paths: