google-apis-notebooks_v2 0.14.0 → 0.15.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: 88c75e39eb3dca0423368ce05c3e5918bc6fd0bae4a239bc3bc71d4a9920c9d0
4
- data.tar.gz: 28b9ad4361229bbe4c2d9d2452a48ad4372c60e8247b801e5e2ddd12e9f448b4
3
+ metadata.gz: 48349f408a707342dad6492aa9f6f461c11ad28bc40af5ca459cae18a8bc49ce
4
+ data.tar.gz: 446322ebcb392653c12c2d3548ce6690dfc1ff5618e9de503614775a9b103cfd
5
5
  SHA512:
6
- metadata.gz: 7443101985f10aa6ae5fee2e1551e338cda5e24986e2f10ff5ee2b257e9ef790c9b2a83fc7db9575d03ffe658d4ce527afe2818133ebca4adc53ffac3b8e8f0e
7
- data.tar.gz: 9e350693edfd335a1bf36fbb7008fa49c1126fb661db707ad35df6d8cb92af63d6118ca0f422540a6988f9028481cf35c9007feb4f602822abf116b296b2b711
6
+ metadata.gz: 80698f32efdd2888c22470e665492a2229ac4e975d3d8fd722e002e7d02286f8f529ded63f1e5f5460476113bfd913dab1616bb2f30b5ef85787917d8dfa362e
7
+ data.tar.gz: eb326b69e34d7afb1f53aa04d3dc48dd64cf6acdc71fdbd7e788c350364e187828bb7e9df7d0eb7352fdc48121b932cc72e14e7baeae067d42c2b396a28eca78
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-notebooks_v2
2
2
 
3
+ ### v0.15.0 (2024-08-11)
4
+
5
+ * Regenerated from discovery document revision 20240731
6
+ * Regenerated using generator version 0.15.1
7
+
3
8
  ### v0.14.0 (2024-06-09)
4
9
 
5
10
  * Regenerated from discovery document revision 20240530
@@ -662,6 +662,13 @@ module Google
662
662
  # @return [Hash<String,String>]
663
663
  attr_accessor :metadata
664
664
 
665
+ # Optional. The minimum CPU platform to use for this instance. The list of valid
666
+ # values can be found in https://cloud.google.com/compute/docs/instances/specify-
667
+ # min-cpu-platform#availablezones
668
+ # Corresponds to the JSON property `minCpuPlatform`
669
+ # @return [String]
670
+ attr_accessor :min_cpu_platform
671
+
665
672
  # Optional. The network interfaces for the VM. Supports only one interface.
666
673
  # Corresponds to the JSON property `networkInterfaces`
667
674
  # @return [Array<Google::Apis::NotebooksV2::NetworkInterface>]
@@ -707,6 +714,7 @@ module Google
707
714
  @gpu_driver_config = args[:gpu_driver_config] if args.key?(:gpu_driver_config)
708
715
  @machine_type = args[:machine_type] if args.key?(:machine_type)
709
716
  @metadata = args[:metadata] if args.key?(:metadata)
717
+ @min_cpu_platform = args[:min_cpu_platform] if args.key?(:min_cpu_platform)
710
718
  @network_interfaces = args[:network_interfaces] if args.key?(:network_interfaces)
711
719
  @service_accounts = args[:service_accounts] if args.key?(:service_accounts)
712
720
  @shielded_instance_config = args[:shielded_instance_config] if args.key?(:shielded_instance_config)
@@ -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.14.0"
19
+ GEM_VERSION = "0.15.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.15.0"
22
+ GENERATOR_VERSION = "0.15.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240530"
25
+ REVISION = "20240731"
26
26
  end
27
27
  end
28
28
  end
@@ -444,6 +444,7 @@ module Google
444
444
 
445
445
  property :machine_type, as: 'machineType'
446
446
  hash :metadata, as: 'metadata'
447
+ property :min_cpu_platform, as: 'minCpuPlatform'
447
448
  collection :network_interfaces, as: 'networkInterfaces', class: Google::Apis::NotebooksV2::NetworkInterface, decorator: Google::Apis::NotebooksV2::NetworkInterface::Representation
448
449
 
449
450
  collection :service_accounts, as: 'serviceAccounts', class: Google::Apis::NotebooksV2::ServiceAccount, decorator: Google::Apis::NotebooksV2::ServiceAccount::Representation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-notebooks_v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.14.0
4
+ version: 0.15.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: 2024-06-09 00:00:00.000000000 Z
11
+ date: 2024-08-11 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_v2/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-notebooks_v2/v0.14.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-notebooks_v2/v0.15.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-notebooks_v2
63
63
  post_install_message:
64
64
  rdoc_options: []