google-cloud-notebooks-v1 0.1.0 → 0.3.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.
Files changed (28) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +10 -5
  3. data/lib/google/cloud/notebooks/v1/environment_pb.rb +2 -1
  4. data/lib/google/cloud/notebooks/v1/event_pb.rb +7 -1
  5. data/lib/google/cloud/notebooks/v1/execution_pb.rb +11 -1
  6. data/lib/google/cloud/notebooks/v1/instance_pb.rb +7 -1
  7. data/lib/google/cloud/notebooks/v1/managed_notebook_service/client.rb +115 -6
  8. data/lib/google/cloud/notebooks/v1/managed_notebook_service/operations.rb +3 -0
  9. data/lib/google/cloud/notebooks/v1/managed_service_pb.rb +19 -1
  10. data/lib/google/cloud/notebooks/v1/managed_service_services_pb.rb +3 -0
  11. data/lib/google/cloud/notebooks/v1/notebook_service/client.rb +108 -4
  12. data/lib/google/cloud/notebooks/v1/notebook_service/operations.rb +3 -0
  13. data/lib/google/cloud/notebooks/v1/notebook_service/paths.rb +19 -0
  14. data/lib/google/cloud/notebooks/v1/runtime_pb.rb +13 -1
  15. data/lib/google/cloud/notebooks/v1/schedule_pb.rb +2 -1
  16. data/lib/google/cloud/notebooks/v1/service_pb.rb +22 -1
  17. data/lib/google/cloud/notebooks/v1/service_services_pb.rb +3 -1
  18. data/lib/google/cloud/notebooks/v1/version.rb +1 -1
  19. data/proto_docs/google/cloud/notebooks/v1/environment.rb +1 -1
  20. data/proto_docs/google/cloud/notebooks/v1/event.rb +28 -1
  21. data/proto_docs/google/cloud/notebooks/v1/execution.rb +58 -24
  22. data/proto_docs/google/cloud/notebooks/v1/instance.rb +18 -2
  23. data/proto_docs/google/cloud/notebooks/v1/managed_service.rb +45 -1
  24. data/proto_docs/google/cloud/notebooks/v1/runtime.rb +55 -4
  25. data/proto_docs/google/cloud/notebooks/v1/schedule.rb +2 -2
  26. data/proto_docs/google/cloud/notebooks/v1/service.rb +72 -1
  27. data/proto_docs/google/protobuf/any.rb +3 -3
  28. metadata +12 -12
@@ -204,6 +204,13 @@ module Google
204
204
  # the specified [Zonal Compute
205
205
  # Reservation](https://cloud.google.com/compute/docs/instances/reserving-zonal-resources)
206
206
  # to this notebook instance.
207
+ # @!attribute [r] creator
208
+ # @return [::String]
209
+ # Output only. Email address of entity that sent original CreateInstance request.
210
+ # @!attribute [rw] can_ip_forward
211
+ # @return [::Boolean]
212
+ # Optional. Flag to enable ip forwarding or not, default false/off.
213
+ # https://cloud.google.com/vpc/docs/using-routes#canipforward
207
214
  # @!attribute [r] create_time
208
215
  # @return [::Google::Protobuf::Timestamp]
209
216
  # Output only. Instance creation time.
@@ -446,7 +453,7 @@ module Google
446
453
  # Accelerator type is Nvidia Tesla V100.
447
454
  NVIDIA_TESLA_V100 = 3
448
455
 
449
- # Accelerator type is Nvidia Tesla P4 GPU.
456
+ # Accelerator type is Nvidia Tesla P4.
450
457
  NVIDIA_TESLA_P4 = 4
451
458
 
452
459
  # Accelerator type is Nvidia Tesla T4.
@@ -461,7 +468,7 @@ module Google
461
468
  # Accelerator type is NVIDIA Tesla P100 Virtual Workstations.
462
469
  NVIDIA_TESLA_P100_VWS = 9
463
470
 
464
- # Accelerator type is Nvidia Tesla P4 GPU Virtual Workstations.
471
+ # Accelerator type is NVIDIA Tesla P4 Virtual Workstations.
465
472
  NVIDIA_TESLA_P4_VWS = 10
466
473
 
467
474
  # (Coming soon) Accelerator type is TPU V2.
@@ -503,6 +510,12 @@ module Google
503
510
 
504
511
  # The instance is getting registered.
505
512
  REGISTERING = 9
513
+
514
+ # The instance is suspending.
515
+ SUSPENDING = 10
516
+
517
+ # The instance is suspended.
518
+ SUSPENDED = 11
506
519
  end
507
520
 
508
521
  # Possible disk types for notebook instances.
@@ -518,6 +531,9 @@ module Google
518
531
 
519
532
  # Balanced persistent disk type.
520
533
  PD_BALANCED = 3
534
+
535
+ # Extreme persistent disk type.
536
+ PD_EXTREME = 4
521
537
  end
522
538
 
523
539
  # Definition of the disk encryption options.
@@ -77,6 +77,9 @@ module Google
77
77
  # @!attribute [rw] runtime
78
78
  # @return [::Google::Cloud::Notebooks::V1::Runtime]
79
79
  # Required. The Runtime to be created.
80
+ # @!attribute [rw] request_id
81
+ # @return [::String]
82
+ # Idempotent request UUID.
80
83
  class CreateRuntimeRequest
81
84
  include ::Google::Protobuf::MessageExts
82
85
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -87,6 +90,9 @@ module Google
87
90
  # @return [::String]
88
91
  # Required. Format:
89
92
  # `projects/{project_id}/locations/{location}/runtimes/{runtime_id}`
93
+ # @!attribute [rw] request_id
94
+ # @return [::String]
95
+ # Idempotent request UUID.
90
96
  class DeleteRuntimeRequest
91
97
  include ::Google::Protobuf::MessageExts
92
98
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -97,6 +103,9 @@ module Google
97
103
  # @return [::String]
98
104
  # Required. Format:
99
105
  # `projects/{project_id}/locations/{location}/runtimes/{runtime_id}`
106
+ # @!attribute [rw] request_id
107
+ # @return [::String]
108
+ # Idempotent request UUID.
100
109
  class StartRuntimeRequest
101
110
  include ::Google::Protobuf::MessageExts
102
111
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -107,6 +116,9 @@ module Google
107
116
  # @return [::String]
108
117
  # Required. Format:
109
118
  # `projects/{project_id}/locations/{location}/runtimes/{runtime_id}`
119
+ # @!attribute [rw] request_id
120
+ # @return [::String]
121
+ # Idempotent request UUID.
110
122
  class StopRuntimeRequest
111
123
  include ::Google::Protobuf::MessageExts
112
124
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -123,16 +135,22 @@ module Google
123
135
  # @!attribute [rw] accelerator_config
124
136
  # @return [::Google::Cloud::Notebooks::V1::RuntimeAcceleratorConfig]
125
137
  # accelerator config.
138
+ # @!attribute [rw] request_id
139
+ # @return [::String]
140
+ # Idempotent request UUID.
126
141
  class SwitchRuntimeRequest
127
142
  include ::Google::Protobuf::MessageExts
128
143
  extend ::Google::Protobuf::MessageExts::ClassMethods
129
144
  end
130
145
 
131
- # Request for reseting a Managed Notebook Runtime.
146
+ # Request for resetting a Managed Notebook Runtime.
132
147
  # @!attribute [rw] name
133
148
  # @return [::String]
134
149
  # Required. Format:
135
150
  # `projects/{project_id}/locations/{location}/runtimes/{runtime_id}`
151
+ # @!attribute [rw] request_id
152
+ # @return [::String]
153
+ # Idempotent request UUID.
136
154
  class ResetRuntimeRequest
137
155
  include ::Google::Protobuf::MessageExts
138
156
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -154,6 +172,32 @@ module Google
154
172
  include ::Google::Protobuf::MessageExts
155
173
  extend ::Google::Protobuf::MessageExts::ClassMethods
156
174
  end
175
+
176
+ # Request for getting a new access token.
177
+ # @!attribute [rw] name
178
+ # @return [::String]
179
+ # Required. Format:
180
+ # `projects/{project_id}/locations/{location}/runtimes/{runtime_id}`
181
+ # @!attribute [rw] vm_id
182
+ # @return [::String]
183
+ # Required. The VM hardware token for authenticating the VM.
184
+ # https://cloud.google.com/compute/docs/instances/verifying-instance-identity
185
+ class RefreshRuntimeTokenInternalRequest
186
+ include ::Google::Protobuf::MessageExts
187
+ extend ::Google::Protobuf::MessageExts::ClassMethods
188
+ end
189
+
190
+ # Response with a new access token.
191
+ # @!attribute [rw] access_token
192
+ # @return [::String]
193
+ # The OAuth 2.0 access token.
194
+ # @!attribute [r] expire_time
195
+ # @return [::Google::Protobuf::Timestamp]
196
+ # Output only. Token expiration time.
197
+ class RefreshRuntimeTokenInternalResponse
198
+ include ::Google::Protobuf::MessageExts
199
+ extend ::Google::Protobuf::MessageExts::ClassMethods
200
+ end
157
201
  end
158
202
  end
159
203
  end
@@ -101,6 +101,14 @@ module Google
101
101
  # (for example, critical daemons are not running)
102
102
  # Applies to ACTIVE state.
103
103
  UNHEALTHY = 2
104
+
105
+ # The runtime has not installed health monitoring agent.
106
+ # Applies to ACTIVE state.
107
+ AGENT_NOT_INSTALLED = 3
108
+
109
+ # The runtime health monitoring agent is not running.
110
+ # Applies to ACTIVE state.
111
+ AGENT_NOT_RUNNING = 4
104
112
  end
105
113
  end
106
114
 
@@ -113,6 +121,7 @@ module Google
113
121
  # * `nvidia-tesla-k80`
114
122
  # * `nvidia-tesla-p100`
115
123
  # * `nvidia-tesla-v100`
124
+ # * `nvidia-tesla-p4`
116
125
  # * `nvidia-tesla-t4`
117
126
  # * `nvidia-tesla-a100`
118
127
  # @!attribute [rw] type
@@ -139,7 +148,7 @@ module Google
139
148
  # Accelerator type is Nvidia Tesla V100.
140
149
  NVIDIA_TESLA_V100 = 3
141
150
 
142
- # Accelerator type is Nvidia Tesla P4 GPU.
151
+ # Accelerator type is Nvidia Tesla P4.
143
152
  NVIDIA_TESLA_P4 = 4
144
153
 
145
154
  # Accelerator type is Nvidia Tesla T4.
@@ -160,7 +169,7 @@ module Google
160
169
  # Accelerator type is NVIDIA Tesla P100 Virtual Workstations.
161
170
  NVIDIA_TESLA_P100_VWS = 10
162
171
 
163
- # Accelerator type is Nvidia Tesla P.4 GPU Virtual Workstations.
172
+ # Accelerator type is NVIDIA Tesla P4 Virtual Workstations.
164
173
  NVIDIA_TESLA_P4_VWS = 11
165
174
  end
166
175
  end
@@ -335,6 +344,9 @@ module Google
335
344
 
336
345
  # Balanced persistent disk type.
337
346
  PD_BALANCED = 3
347
+
348
+ # Extreme persistent disk type.
349
+ PD_EXTREME = 4
338
350
  end
339
351
  end
340
352
 
@@ -361,6 +373,12 @@ module Google
361
373
 
362
374
  # Single user login.
363
375
  SINGLE_USER = 1
376
+
377
+ # Service Account mode.
378
+ # In Service Account mode, Runtime creator will specify a SA that exists
379
+ # in the consumer project. Using Runtime Service Account field.
380
+ # Users accessing the Runtime need ActAs (Service Account User) permission.
381
+ SERVICE_ACCOUNT = 2
364
382
  end
365
383
  end
366
384
 
@@ -370,7 +388,7 @@ module Google
370
388
  #
371
389
  # * `idle_shutdown: true`
372
390
  # * `idle_shutdown_timeout: 180`
373
- # * `report-system-health: true`
391
+ # * `enable_health_monitoring: true`
374
392
  # @!attribute [rw] notebook_upgrade_schedule
375
393
  # @return [::String]
376
394
  # Cron expression in UTC timezone, used to schedule instance auto upgrade.
@@ -389,6 +407,7 @@ module Google
389
407
  # @!attribute [rw] install_gpu_driver
390
408
  # @return [::Boolean]
391
409
  # Install Nvidia Driver automatically.
410
+ # Default: True
392
411
  # @!attribute [rw] custom_gpu_driver_path
393
412
  # @return [::String]
394
413
  # Specify a custom Cloud Storage path where the GPU driver is stored.
@@ -398,6 +417,12 @@ module Google
398
417
  # Path to a Bash script that automatically runs after a notebook instance
399
418
  # fully boots up. The path must be a URL or
400
419
  # Cloud Storage path (`gs://path-to-file/file-name`).
420
+ # @!attribute [rw] kernels
421
+ # @return [::Array<::Google::Cloud::Notebooks::V1::ContainerImage>]
422
+ # Optional. Use a list of container images to use as Kernels in the notebook instance.
423
+ # @!attribute [r] upgradeable
424
+ # @return [::Boolean]
425
+ # Output only. Bool indicating whether an newer image is available in an image family.
401
426
  class RuntimeSoftwareConfig
402
427
  include ::Google::Protobuf::MessageExts
403
428
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -479,7 +504,7 @@ module Google
479
504
  # * `e2-standard-8`
480
505
  # @!attribute [rw] container_images
481
506
  # @return [::Array<::Google::Cloud::Notebooks::V1::ContainerImage>]
482
- # Optional. Use a list of container images to start the notebook instance.
507
+ # Optional. Use a list of container images to use as Kernels in the notebook instance.
483
508
  # @!attribute [rw] data_disk
484
509
  # @return [::Google::Cloud::Notebooks::V1::LocalDisk]
485
510
  # Required. Data disk option configuration settings.
@@ -557,10 +582,36 @@ module Google
557
582
  # @return [::Google::Cloud::Notebooks::V1::VirtualMachineConfig::NicType]
558
583
  # Optional. The type of vNIC to be used on this interface. This may be gVNIC or
559
584
  # VirtioNet.
585
+ # @!attribute [rw] reserved_ip_range
586
+ # @return [::String]
587
+ # Optional. Reserved IP Range name is used for VPC Peering.
588
+ # The subnetwork allocation will use the range *name* if it's assigned.
589
+ #
590
+ # Example: managed-notebooks-range-c
591
+ # PEERING_RANGE_NAME_3=managed-notebooks-range-c
592
+ # gcloud compute addresses create $PEERING_RANGE_NAME_3 \
593
+ # --global \
594
+ # --prefix-length=24 \
595
+ # --description="Google Cloud Managed Notebooks Range 24 c" \
596
+ # --network=$NETWORK \
597
+ # --addresses=192.168.0.0 \
598
+ # --purpose=VPC_PEERING
599
+ #
600
+ # Field value will be: `managed-notebooks-range-c`
601
+ # @!attribute [rw] boot_image
602
+ # @return [::Google::Cloud::Notebooks::V1::VirtualMachineConfig::BootImage]
603
+ # Optional. Boot image metadata used for runtime upgradeability.
560
604
  class VirtualMachineConfig
561
605
  include ::Google::Protobuf::MessageExts
562
606
  extend ::Google::Protobuf::MessageExts::ClassMethods
563
607
 
608
+ # Definition of the boot image used by the Runtime.
609
+ # Used to facilitate runtime upgradeability.
610
+ class BootImage
611
+ include ::Google::Protobuf::MessageExts
612
+ extend ::Google::Protobuf::MessageExts::ClassMethods
613
+ end
614
+
564
615
  # @!attribute [rw] key
565
616
  # @return [::String]
566
617
  # @!attribute [rw] value
@@ -38,8 +38,8 @@ module Google
38
38
  # @return [::Google::Cloud::Notebooks::V1::Schedule::State]
39
39
  # @!attribute [rw] cron_schedule
40
40
  # @return [::String]
41
- # Cron-tab formatted schedule by which the job will execute
42
- # Format: minute, hour, day of month, month, day of week
41
+ # Cron-tab formatted schedule by which the job will execute.
42
+ # Format: minute, hour, day of month, month, day of week,
43
43
  # e.g. 0 0 * * WED = every Wednesday
44
44
  # More examples: https://crontab.guru/examples.html
45
45
  # @!attribute [rw] time_zone
@@ -200,6 +200,46 @@ module Google
200
200
  end
201
201
  end
202
202
 
203
+ # Request for adding/changing metadata items for an instance.
204
+ # @!attribute [rw] name
205
+ # @return [::String]
206
+ # Required. Format:
207
+ # `projects/{project_id}/locations/{location}/instances/{instance_id}`
208
+ # @!attribute [rw] items
209
+ # @return [::Google::Protobuf::Map{::String => ::String}]
210
+ # Metadata items to add/update for the instance.
211
+ class UpdateInstanceMetadataItemsRequest
212
+ include ::Google::Protobuf::MessageExts
213
+ extend ::Google::Protobuf::MessageExts::ClassMethods
214
+
215
+ # @!attribute [rw] key
216
+ # @return [::String]
217
+ # @!attribute [rw] value
218
+ # @return [::String]
219
+ class ItemsEntry
220
+ include ::Google::Protobuf::MessageExts
221
+ extend ::Google::Protobuf::MessageExts::ClassMethods
222
+ end
223
+ end
224
+
225
+ # Response for adding/changing metadata items for an instance.
226
+ # @!attribute [rw] items
227
+ # @return [::Google::Protobuf::Map{::String => ::String}]
228
+ # Map of items that were added/updated to/in the metadata.
229
+ class UpdateInstanceMetadataItemsResponse
230
+ include ::Google::Protobuf::MessageExts
231
+ extend ::Google::Protobuf::MessageExts::ClassMethods
232
+
233
+ # @!attribute [rw] key
234
+ # @return [::String]
235
+ # @!attribute [rw] value
236
+ # @return [::String]
237
+ class ItemsEntry
238
+ include ::Google::Protobuf::MessageExts
239
+ extend ::Google::Protobuf::MessageExts::ClassMethods
240
+ end
241
+ end
242
+
203
243
  # Request for updating the Shielded Instance config for a notebook instance.
204
244
  # You can only use this method on a stopped instance
205
245
  # @!attribute [rw] name
@@ -244,7 +284,7 @@ module Google
244
284
  extend ::Google::Protobuf::MessageExts::ClassMethods
245
285
  end
246
286
 
247
- # Request for reseting a notebook instance
287
+ # Request for resetting a notebook instance
248
288
  # @!attribute [rw] name
249
289
  # @return [::String]
250
290
  # Required. Format:
@@ -286,6 +326,10 @@ module Google
286
326
  # @return [::String]
287
327
  # Required. Format:
288
328
  # `projects/{project_id}/locations/{location}/instances/{instance_id}`
329
+ # @!attribute [rw] type
330
+ # @return [::Google::Cloud::Notebooks::V1::UpgradeType]
331
+ # Optional. The optional UpgradeType. Setting this field will search for additional
332
+ # compute images to upgrade this instance.
289
333
  class IsInstanceUpgradeableRequest
290
334
  include ::Google::Protobuf::MessageExts
291
335
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -380,6 +424,10 @@ module Google
380
424
  # @return [::String]
381
425
  # Required. Format:
382
426
  # `projects/{project_id}/locations/{location}/instances/{instance_id}`
427
+ # @!attribute [rw] type
428
+ # @return [::Google::Cloud::Notebooks::V1::UpgradeType]
429
+ # Optional. The optional UpgradeType. Setting this field will search for additional
430
+ # compute images to upgrade this instance.
383
431
  class UpgradeInstanceRequest
384
432
  include ::Google::Protobuf::MessageExts
385
433
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -408,6 +456,10 @@ module Google
408
456
  # @return [::String]
409
457
  # Required. The VM hardware token for authenticating the VM.
410
458
  # https://cloud.google.com/compute/docs/instances/verifying-instance-identity
459
+ # @!attribute [rw] type
460
+ # @return [::Google::Cloud::Notebooks::V1::UpgradeType]
461
+ # Optional. The optional UpgradeType. Setting this field will search for additional
462
+ # compute images to upgrade this instance.
411
463
  class UpgradeInstanceInternalRequest
412
464
  include ::Google::Protobuf::MessageExts
413
465
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -650,6 +702,25 @@ module Google
650
702
  include ::Google::Protobuf::MessageExts
651
703
  extend ::Google::Protobuf::MessageExts::ClassMethods
652
704
  end
705
+
706
+ # Definition of the types of upgrade that can be used on this
707
+ # instance.
708
+ module UpgradeType
709
+ # Upgrade type is not specified.
710
+ UPGRADE_TYPE_UNSPECIFIED = 0
711
+
712
+ # Upgrade ML framework.
713
+ UPGRADE_FRAMEWORK = 1
714
+
715
+ # Upgrade Operating System.
716
+ UPGRADE_OS = 2
717
+
718
+ # Upgrade CUDA.
719
+ UPGRADE_CUDA = 3
720
+
721
+ # Upgrade All (OS, Framework and CUDA).
722
+ UPGRADE_ALL = 4
723
+ end
653
724
  end
654
725
  end
655
726
  end
@@ -44,7 +44,7 @@ module Google
44
44
  # foo = any.unpack(Foo.class);
45
45
  # }
46
46
  #
47
- # Example 3: Pack and unpack a message in Python.
47
+ # Example 3: Pack and unpack a message in Python.
48
48
  #
49
49
  # foo = Foo(...)
50
50
  # any = Any()
@@ -54,7 +54,7 @@ module Google
54
54
  # any.Unpack(foo)
55
55
  # ...
56
56
  #
57
- # Example 4: Pack and unpack a message in Go
57
+ # Example 4: Pack and unpack a message in Go
58
58
  #
59
59
  # foo := &pb.Foo{...}
60
60
  # any, err := anypb.New(foo)
@@ -75,7 +75,7 @@ module Google
75
75
  #
76
76
  #
77
77
  # JSON
78
- # ====
78
+ #
79
79
  # The JSON representation of an `Any` value uses the regular
80
80
  # representation of the deserialized, embedded message, with an
81
81
  # additional field `@type` which contains the type URL. Example:
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-notebooks-v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.3.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: 2022-04-01 00:00:00.000000000 Z
11
+ date: 2022-07-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.7'
19
+ version: '0.10'
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: '0.7'
29
+ version: '0.10'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -50,28 +50,28 @@ dependencies:
50
50
  requirements:
51
51
  - - "~>"
52
52
  - !ruby/object:Gem::Version
53
- version: 1.25.1
53
+ version: 1.26.1
54
54
  type: :development
55
55
  prerelease: false
56
56
  version_requirements: !ruby/object:Gem::Requirement
57
57
  requirements:
58
58
  - - "~>"
59
59
  - !ruby/object:Gem::Version
60
- version: 1.25.1
60
+ version: 1.26.1
61
61
  - !ruby/object:Gem::Dependency
62
62
  name: minitest
63
63
  requirement: !ruby/object:Gem::Requirement
64
64
  requirements:
65
65
  - - "~>"
66
66
  - !ruby/object:Gem::Version
67
- version: '5.14'
67
+ version: '5.16'
68
68
  type: :development
69
69
  prerelease: false
70
70
  version_requirements: !ruby/object:Gem::Requirement
71
71
  requirements:
72
72
  - - "~>"
73
73
  - !ruby/object:Gem::Version
74
- version: '5.14'
74
+ version: '5.16'
75
75
  - !ruby/object:Gem::Dependency
76
76
  name: minitest-focus
77
77
  requirement: !ruby/object:Gem::Requirement
@@ -106,14 +106,14 @@ dependencies:
106
106
  requirements:
107
107
  - - ">="
108
108
  - !ruby/object:Gem::Version
109
- version: '12.0'
109
+ version: '13.0'
110
110
  type: :development
111
111
  prerelease: false
112
112
  version_requirements: !ruby/object:Gem::Requirement
113
113
  requirements:
114
114
  - - ">="
115
115
  - !ruby/object:Gem::Version
116
- version: '12.0'
116
+ version: '13.0'
117
117
  - !ruby/object:Gem::Dependency
118
118
  name: redcarpet
119
119
  requirement: !ruby/object:Gem::Requirement
@@ -225,14 +225,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
225
225
  requirements:
226
226
  - - ">="
227
227
  - !ruby/object:Gem::Version
228
- version: '2.5'
228
+ version: '2.6'
229
229
  required_rubygems_version: !ruby/object:Gem::Requirement
230
230
  requirements:
231
231
  - - ">="
232
232
  - !ruby/object:Gem::Version
233
233
  version: '0'
234
234
  requirements: []
235
- rubygems_version: 3.3.5
235
+ rubygems_version: 3.3.14
236
236
  signing_key:
237
237
  specification_version: 4
238
238
  summary: API Client library for the AI Platform Notebooks V1 API