google-apis-notebooks_v1 0.42.0 → 0.44.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: 52363817fe3d32cce00be66aa081d36414c8ae5b9ddcd7c25e65dc6eeb0dbc1c
4
- data.tar.gz: 116b219920c6491aa0bd83e2fee1b9e259fe1879803d07ddc68d3ab0d73356af
3
+ metadata.gz: f23ef9f4d639305466e9834d5a3a7fe77045ff5f200e8de4c3a7d743f693b59c
4
+ data.tar.gz: 29ced55d25a9dc25bd5015575046d602bd1700dfc609e0ae9e7262085a8e2b72
5
5
  SHA512:
6
- metadata.gz: fba2b8a6097dc907cbbef534a8203e229b8f7013a3e5b06c390f15527ddc692789e24b015eb7ccca4d05d209ae56f110d6f34987da6f141cc85d50f9ed8edac9
7
- data.tar.gz: 3cae39e5638f025657cd662bff32393cfae5dfb23066707c62a6fa22ec90636b143e5d10e65247b0daf0001e0446bfa9e033558f49dfa235cde8f0e4fa18c40f
6
+ metadata.gz: 1c4d007f749d08dfce002fe5a93161550d87ae6d2fe4e7c0d027cbd58e23d574d212d636ac30d649248a4fd2e38f3b469a2c749332d39e8adeb78bf410eee78d
7
+ data.tar.gz: dd99eaf0ca4fe1dd3dd56fd7dc652c1e043199ef8d2f694c4fef78b1aeb09d547dc0f6de36d3fbf37ca43ef7aade8475f236ab6d513fe2eb957d8255d170b6b3
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-notebooks_v1
2
2
 
3
+ ### v0.44.0 (2023-07-16)
4
+
5
+ * Regenerated from discovery document revision 20230710
6
+
7
+ ### v0.43.0 (2023-07-09)
8
+
9
+ * Regenerated from discovery document revision 20230627
10
+
3
11
  ### v0.42.0 (2023-06-18)
4
12
 
5
13
  * Regenerated from discovery document revision 20230606
@@ -960,6 +960,13 @@ module Google
960
960
  # @return [Hash<String,String>]
961
961
  attr_accessor :metadata
962
962
 
963
+ # Output only. Bool indicating whether this notebook has been migrated to a
964
+ # Workbench Instance
965
+ # Corresponds to the JSON property `migrated`
966
+ # @return [Boolean]
967
+ attr_accessor :migrated
968
+ alias_method :migrated?, :migrated
969
+
963
970
  # Output only. The name of this notebook instance. Format: `projects/`project_id`
964
971
  # /locations/`location`/instances/`instance_id``
965
972
  # Corresponds to the JSON property `name`
@@ -1102,6 +1109,7 @@ module Google
1102
1109
  @labels = args[:labels] if args.key?(:labels)
1103
1110
  @machine_type = args[:machine_type] if args.key?(:machine_type)
1104
1111
  @metadata = args[:metadata] if args.key?(:metadata)
1112
+ @migrated = args[:migrated] if args.key?(:migrated)
1105
1113
  @name = args[:name] if args.key?(:name)
1106
1114
  @network = args[:network] if args.key?(:network)
1107
1115
  @nic_type = args[:nic_type] if args.key?(:nic_type)
@@ -2123,6 +2131,13 @@ module Google
2123
2131
  # @return [Google::Apis::NotebooksV1::RuntimeMetrics]
2124
2132
  attr_accessor :metrics
2125
2133
 
2134
+ # Output only. Bool indicating whether this notebook has been migrated to a
2135
+ # Workbench Instance
2136
+ # Corresponds to the JSON property `migrated`
2137
+ # @return [Boolean]
2138
+ attr_accessor :migrated
2139
+ alias_method :migrated?, :migrated
2140
+
2126
2141
  # Output only. The resource name of the runtime. Format: `projects/`project`/
2127
2142
  # locations/`location`/runtimes/`runtimeId``
2128
2143
  # Corresponds to the JSON property `name`
@@ -2163,6 +2178,7 @@ module Google
2163
2178
  @health_state = args[:health_state] if args.key?(:health_state)
2164
2179
  @labels = args[:labels] if args.key?(:labels)
2165
2180
  @metrics = args[:metrics] if args.key?(:metrics)
2181
+ @migrated = args[:migrated] if args.key?(:migrated)
2166
2182
  @name = args[:name] if args.key?(:name)
2167
2183
  @software_config = args[:software_config] if args.key?(:software_config)
2168
2184
  @state = args[:state] if args.key?(:state)
@@ -2171,12 +2187,11 @@ module Google
2171
2187
  end
2172
2188
  end
2173
2189
 
2174
- # Definition of the types of hardware accelerators that can be used. Definition
2175
- # of the types of hardware accelerators that can be used. See [Compute Engine
2176
- # AcceleratorTypes](https://cloud.google.com/compute/docs/reference/beta/
2177
- # acceleratorTypes). Examples: * `nvidia-tesla-k80` * `nvidia-tesla-p100` * `
2178
- # nvidia-tesla-v100` * `nvidia-tesla-p4` * `nvidia-tesla-t4` * `nvidia-tesla-
2179
- # a100`
2190
+ # Definition of the types of hardware accelerators that can be used. See [
2191
+ # Compute Engine AcceleratorTypes](https://cloud.google.com/compute/docs/
2192
+ # reference/beta/acceleratorTypes). Examples: * `nvidia-tesla-k80` * `nvidia-
2193
+ # tesla-p100` * `nvidia-tesla-v100` * `nvidia-tesla-p4` * `nvidia-tesla-t4` * `
2194
+ # nvidia-tesla-a100`
2180
2195
  class RuntimeAcceleratorConfig
2181
2196
  include Google::Apis::Core::Hashable
2182
2197
 
@@ -2803,12 +2818,11 @@ module Google
2803
2818
  class SwitchRuntimeRequest
2804
2819
  include Google::Apis::Core::Hashable
2805
2820
 
2806
- # Definition of the types of hardware accelerators that can be used. Definition
2807
- # of the types of hardware accelerators that can be used. See [Compute Engine
2808
- # AcceleratorTypes](https://cloud.google.com/compute/docs/reference/beta/
2809
- # acceleratorTypes). Examples: * `nvidia-tesla-k80` * `nvidia-tesla-p100` * `
2810
- # nvidia-tesla-v100` * `nvidia-tesla-p4` * `nvidia-tesla-t4` * `nvidia-tesla-
2811
- # a100`
2821
+ # Definition of the types of hardware accelerators that can be used. See [
2822
+ # Compute Engine AcceleratorTypes](https://cloud.google.com/compute/docs/
2823
+ # reference/beta/acceleratorTypes). Examples: * `nvidia-tesla-k80` * `nvidia-
2824
+ # tesla-p100` * `nvidia-tesla-v100` * `nvidia-tesla-p4` * `nvidia-tesla-t4` * `
2825
+ # nvidia-tesla-a100`
2812
2826
  # Corresponds to the JSON property `acceleratorConfig`
2813
2827
  # @return [Google::Apis::NotebooksV1::RuntimeAcceleratorConfig]
2814
2828
  attr_accessor :accelerator_config
@@ -3175,12 +3189,11 @@ module Google
3175
3189
  class VirtualMachineConfig
3176
3190
  include Google::Apis::Core::Hashable
3177
3191
 
3178
- # Definition of the types of hardware accelerators that can be used. Definition
3179
- # of the types of hardware accelerators that can be used. See [Compute Engine
3180
- # AcceleratorTypes](https://cloud.google.com/compute/docs/reference/beta/
3181
- # acceleratorTypes). Examples: * `nvidia-tesla-k80` * `nvidia-tesla-p100` * `
3182
- # nvidia-tesla-v100` * `nvidia-tesla-p4` * `nvidia-tesla-t4` * `nvidia-tesla-
3183
- # a100`
3192
+ # Definition of the types of hardware accelerators that can be used. See [
3193
+ # Compute Engine AcceleratorTypes](https://cloud.google.com/compute/docs/
3194
+ # reference/beta/acceleratorTypes). Examples: * `nvidia-tesla-k80` * `nvidia-
3195
+ # tesla-p100` * `nvidia-tesla-v100` * `nvidia-tesla-p4` * `nvidia-tesla-t4` * `
3196
+ # nvidia-tesla-a100`
3184
3197
  # Corresponds to the JSON property `acceleratorConfig`
3185
3198
  # @return [Google::Apis::NotebooksV1::RuntimeAcceleratorConfig]
3186
3199
  attr_accessor :accelerator_config
@@ -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.42.0"
19
+ GEM_VERSION = "0.44.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230606"
25
+ REVISION = "20230710"
26
26
  end
27
27
  end
28
28
  end
@@ -725,6 +725,7 @@ module Google
725
725
  hash :labels, as: 'labels'
726
726
  property :machine_type, as: 'machineType'
727
727
  hash :metadata, as: 'metadata'
728
+ property :migrated, as: 'migrated'
728
729
  property :name, as: 'name'
729
730
  property :network, as: 'network'
730
731
  property :nic_type, as: 'nicType'
@@ -1011,6 +1012,7 @@ module Google
1011
1012
  hash :labels, as: 'labels'
1012
1013
  property :metrics, as: 'metrics', class: Google::Apis::NotebooksV1::RuntimeMetrics, decorator: Google::Apis::NotebooksV1::RuntimeMetrics::Representation
1013
1014
 
1015
+ property :migrated, as: 'migrated'
1014
1016
  property :name, as: 'name'
1015
1017
  property :software_config, as: 'softwareConfig', class: Google::Apis::NotebooksV1::RuntimeSoftwareConfig, decorator: Google::Apis::NotebooksV1::RuntimeSoftwareConfig::Representation
1016
1018
 
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.42.0
4
+ version: 0.44.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-06-25 00:00:00.000000000 Z
11
+ date: 2023-07-16 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.42.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-notebooks_v1/v0.44.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: []