google-apis-notebooks_v1 0.43.0 → 0.45.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: 8565c56f8e5d4edb63218b5751be315c817026702cf86b7968b0d8fcb13dedba
4
- data.tar.gz: 03a6a079127f4e9addd7e617b8071c8c8b7da9b7a264a1af95b7aced37f74799
3
+ metadata.gz: 1be9229aac64f714e8d730c218ad3eddfa088fa0c72e24441dbaa4cd29a38d02
4
+ data.tar.gz: f81988ae021cd18845f774b914e891ed42e7cdf90053a0c9714c2dbea0fb39c6
5
5
  SHA512:
6
- metadata.gz: 3680b0465413f7f947db3b0e46db76fbaf6de20a19700ff8192131fff504c587b9c01d5da81f9de9e877e076688d9aab09e7e7ab7c8aecfefc6984563b2e4b22
7
- data.tar.gz: fba61288a943723f5e0f1951e6789eb20711d2fb7290cac113061636c170831fabe6bbb0f3d001a5a839824ac67035386b1347d36a686f4784652b9439a16fba
6
+ metadata.gz: 635355e5c692fce5fb1139a0c7416b1a7d3877d007857256a68a45e36cffd83c9c15ac0f7bdfff5dfc2f2f8aaf52fc8d801646e0fdd78d5e212852dce79a376d
7
+ data.tar.gz: f1e30a641a546e7a0fda7cbde555acb2b337da9de9e62deec1888ca49f0a0e7376bc6f8c49e338dfc05bdabed1e8919756fd466845ba696da008b0f127d4a256
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-notebooks_v1
2
2
 
3
+ ### v0.45.0 (2023-08-03)
4
+
5
+ * Regenerated from discovery document revision 20230720
6
+
7
+ ### v0.44.0 (2023-07-16)
8
+
9
+ * Regenerated from discovery document revision 20230710
10
+
3
11
  ### v0.43.0 (2023-07-09)
4
12
 
5
13
  * Regenerated from discovery document revision 20230627
@@ -210,6 +210,11 @@ module Google
210
210
  # @return [Google::Apis::NotebooksV1::DiagnosticConfig]
211
211
  attr_accessor :diagnostic_config
212
212
 
213
+ # Optional. Maxmium amount of time in minutes before the operation times out.
214
+ # Corresponds to the JSON property `timeoutMinutes`
215
+ # @return [Fixnum]
216
+ attr_accessor :timeout_minutes
217
+
213
218
  def initialize(**args)
214
219
  update!(**args)
215
220
  end
@@ -217,6 +222,7 @@ module Google
217
222
  # Update properties of this object
218
223
  def update!(**args)
219
224
  @diagnostic_config = args[:diagnostic_config] if args.key?(:diagnostic_config)
225
+ @timeout_minutes = args[:timeout_minutes] if args.key?(:timeout_minutes)
220
226
  end
221
227
  end
222
228
 
@@ -229,6 +235,11 @@ module Google
229
235
  # @return [Google::Apis::NotebooksV1::DiagnosticConfig]
230
236
  attr_accessor :diagnostic_config
231
237
 
238
+ # Optional. Maxmium amount of time in minutes before the operation times out.
239
+ # Corresponds to the JSON property `timeoutMinutes`
240
+ # @return [Fixnum]
241
+ attr_accessor :timeout_minutes
242
+
232
243
  def initialize(**args)
233
244
  update!(**args)
234
245
  end
@@ -236,6 +247,7 @@ module Google
236
247
  # Update properties of this object
237
248
  def update!(**args)
238
249
  @diagnostic_config = args[:diagnostic_config] if args.key?(:diagnostic_config)
250
+ @timeout_minutes = args[:timeout_minutes] if args.key?(:timeout_minutes)
239
251
  end
240
252
  end
241
253
 
@@ -960,6 +972,13 @@ module Google
960
972
  # @return [Hash<String,String>]
961
973
  attr_accessor :metadata
962
974
 
975
+ # Output only. Bool indicating whether this notebook has been migrated to a
976
+ # Workbench Instance
977
+ # Corresponds to the JSON property `migrated`
978
+ # @return [Boolean]
979
+ attr_accessor :migrated
980
+ alias_method :migrated?, :migrated
981
+
963
982
  # Output only. The name of this notebook instance. Format: `projects/`project_id`
964
983
  # /locations/`location`/instances/`instance_id``
965
984
  # Corresponds to the JSON property `name`
@@ -1102,6 +1121,7 @@ module Google
1102
1121
  @labels = args[:labels] if args.key?(:labels)
1103
1122
  @machine_type = args[:machine_type] if args.key?(:machine_type)
1104
1123
  @metadata = args[:metadata] if args.key?(:metadata)
1124
+ @migrated = args[:migrated] if args.key?(:migrated)
1105
1125
  @name = args[:name] if args.key?(:name)
1106
1126
  @network = args[:network] if args.key?(:network)
1107
1127
  @nic_type = args[:nic_type] if args.key?(:nic_type)
@@ -2123,6 +2143,13 @@ module Google
2123
2143
  # @return [Google::Apis::NotebooksV1::RuntimeMetrics]
2124
2144
  attr_accessor :metrics
2125
2145
 
2146
+ # Output only. Bool indicating whether this notebook has been migrated to a
2147
+ # Workbench Instance
2148
+ # Corresponds to the JSON property `migrated`
2149
+ # @return [Boolean]
2150
+ attr_accessor :migrated
2151
+ alias_method :migrated?, :migrated
2152
+
2126
2153
  # Output only. The resource name of the runtime. Format: `projects/`project`/
2127
2154
  # locations/`location`/runtimes/`runtimeId``
2128
2155
  # Corresponds to the JSON property `name`
@@ -2163,6 +2190,7 @@ module Google
2163
2190
  @health_state = args[:health_state] if args.key?(:health_state)
2164
2191
  @labels = args[:labels] if args.key?(:labels)
2165
2192
  @metrics = args[:metrics] if args.key?(:metrics)
2193
+ @migrated = args[:migrated] if args.key?(:migrated)
2166
2194
  @name = args[:name] if args.key?(:name)
2167
2195
  @software_config = args[:software_config] if args.key?(:software_config)
2168
2196
  @state = args[:state] if args.key?(:state)
@@ -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.43.0"
19
+ GEM_VERSION = "0.45.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 = "20230627"
25
+ REVISION = "20230720"
26
26
  end
27
27
  end
28
28
  end
@@ -558,6 +558,7 @@ module Google
558
558
  class Representation < Google::Apis::Core::JsonRepresentation
559
559
  property :diagnostic_config, as: 'diagnosticConfig', class: Google::Apis::NotebooksV1::DiagnosticConfig, decorator: Google::Apis::NotebooksV1::DiagnosticConfig::Representation
560
560
 
561
+ property :timeout_minutes, as: 'timeoutMinutes'
561
562
  end
562
563
  end
563
564
 
@@ -566,6 +567,7 @@ module Google
566
567
  class Representation < Google::Apis::Core::JsonRepresentation
567
568
  property :diagnostic_config, as: 'diagnosticConfig', class: Google::Apis::NotebooksV1::DiagnosticConfig, decorator: Google::Apis::NotebooksV1::DiagnosticConfig::Representation
568
569
 
570
+ property :timeout_minutes, as: 'timeoutMinutes'
569
571
  end
570
572
  end
571
573
 
@@ -725,6 +727,7 @@ module Google
725
727
  hash :labels, as: 'labels'
726
728
  property :machine_type, as: 'machineType'
727
729
  hash :metadata, as: 'metadata'
730
+ property :migrated, as: 'migrated'
728
731
  property :name, as: 'name'
729
732
  property :network, as: 'network'
730
733
  property :nic_type, as: 'nicType'
@@ -1011,6 +1014,7 @@ module Google
1011
1014
  hash :labels, as: 'labels'
1012
1015
  property :metrics, as: 'metrics', class: Google::Apis::NotebooksV1::RuntimeMetrics, decorator: Google::Apis::NotebooksV1::RuntimeMetrics::Representation
1013
1016
 
1017
+ property :migrated, as: 'migrated'
1014
1018
  property :name, as: 'name'
1015
1019
  property :software_config, as: 'softwareConfig', class: Google::Apis::NotebooksV1::RuntimeSoftwareConfig, decorator: Google::Apis::NotebooksV1::RuntimeSoftwareConfig::Representation
1016
1020
 
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.43.0
4
+ version: 0.45.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-07-09 00:00:00.000000000 Z
11
+ date: 2023-08-06 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.43.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-notebooks_v1/v0.45.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: []