google-apis-workstations_v1beta 0.8.0 → 0.10.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: 9678559b59dec3a737de9ac01dbf4944c852bbe4a96d75bad4c0d4a24177fc52
4
- data.tar.gz: ded75b8aab5b1c9eed421683d655bc217aa446e7a34ed0552876b3a0a24dbf57
3
+ metadata.gz: f0225db11f33e43cf8c3e3c8025730b6fa137fa0d326369487f978d51ef2f33a
4
+ data.tar.gz: c42bc2801a5f0ec2825a33b9eb3271ffefc2a2d58aac491e4437a6e2ea051a3a
5
5
  SHA512:
6
- metadata.gz: c1bba1bfb4b4ca283aef0b37d8a06ee73fe81113e7a5fafa86ba1dc77f182c3cec432d9f7b2e0199df83fa34cf08ac61d8915fdcca218eb444bd7a53d116b351
7
- data.tar.gz: 8a067534d0e6a1909a23a4af126d32b8c6b0134023a0b4802781fefa4e395147856d093e45d6004241128ed38a23537c42b68e2aa259d8a9406c6d013260d4fe
6
+ metadata.gz: 6ea44df14489741e0668099a65c5ee6d68a2586f71d6bb855f8f17622d2f39e563918150b3630999f371c8683579fc9d3fd4fac746cf651337d3130a80bb19ce
7
+ data.tar.gz: ba007c8ec495fd7250177c49954e2ca4fb79c9ccf150f2963f691ea310a2d75fa096603b8ba9ba6556540b9d2bb442edfeed90942305a3372bd275c9e43263f0
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-workstations_v1beta
2
2
 
3
+ ### v0.10.0 (2023-04-30)
4
+
5
+ * Regenerated from discovery document revision 20230423
6
+
7
+ ### v0.9.0 (2023-04-23)
8
+
9
+ * Regenerated from discovery document revision 20230412
10
+
3
11
  ### v0.8.0 (2023-04-02)
4
12
 
5
13
  * Regenerated from discovery document revision 20230327
@@ -196,13 +196,13 @@ module Google
196
196
  # @return [Array<String>]
197
197
  attr_accessor :command
198
198
 
199
- # Environment variables passed to the container.
199
+ # Environment variables passed to the container's entrypoint.
200
200
  # Corresponds to the JSON property `env`
201
201
  # @return [Hash<String,String>]
202
202
  attr_accessor :env
203
203
 
204
204
  # Docker image defining the container. This image must be accessible by the
205
- # config's service account.
205
+ # service account specified in the workstation configuration.
206
206
  # Corresponds to the JSON property `image`
207
207
  # @return [String]
208
208
  attr_accessor :image
@@ -237,15 +237,15 @@ module Google
237
237
  class CustomerEncryptionKey
238
238
  include Google::Apis::Core::Hashable
239
239
 
240
- # The name of the Google Cloud KMS encryption key. For example, `projects/
241
- # PROJECT_ID/locations/REGION/keyRings/KEY_RING/cryptoKeys/KEY_NAME`.
240
+ # Immutable. The name of the Google Cloud KMS encryption key. For example, `
241
+ # projects/PROJECT_ID/locations/REGION/keyRings/KEY_RING/cryptoKeys/KEY_NAME`.
242
242
  # Corresponds to the JSON property `kmsKey`
243
243
  # @return [String]
244
244
  attr_accessor :kms_key
245
245
 
246
- # The service account to use with the specified KMS key. We recommend that you
247
- # use a separate service account and follow KMS best practices. For more
248
- # information, see [Separation of duties](https://cloud.google.com/kms/docs/
246
+ # Immutable. The service account to use with the specified KMS key. We recommend
247
+ # that you use a separate service account and follow KMS best practices. For
248
+ # more information, see [Separation of duties](https://cloud.google.com/kms/docs/
249
249
  # separation-of-duties) and `gcloud kms keys add-iam-policy-binding` [`--member`]
250
250
  # (https://cloud.google.com/sdk/gcloud/reference/kms/keys/add-iam-policy-binding#
251
251
  # --member).
@@ -363,15 +363,21 @@ module Google
363
363
  # @return [String]
364
364
  attr_accessor :machine_type
365
365
 
366
- # Number of instances to pool for faster workstation starup.
366
+ # Number of instances to pool for faster workstation startup.
367
367
  # Corresponds to the JSON property `poolSize`
368
368
  # @return [Fixnum]
369
369
  attr_accessor :pool_size
370
370
 
371
- # Email address of the service account that will be used on VM instances used to
372
- # support this config. If not set, VMs will run with a Google-managed service
373
- # account. This service account must have permission to pull the specified
374
- # container image, otherwise the image must be publicly accessible.
371
+ # Output only. Number of instances currently available in the pool for faster
372
+ # workstation startup.
373
+ # Corresponds to the JSON property `pooledInstances`
374
+ # @return [Fixnum]
375
+ attr_accessor :pooled_instances
376
+
377
+ # Email address of the service account used on VM instances used to support this
378
+ # configuration. If not set, VMs run with a Google-managed service account. This
379
+ # service account must have permission to pull the specified container image;
380
+ # otherwise, the image must be publicly accessible.
375
381
  # Corresponds to the JSON property `serviceAccount`
376
382
  # @return [String]
377
383
  attr_accessor :service_account
@@ -397,6 +403,7 @@ module Google
397
403
  @disable_public_ip_addresses = args[:disable_public_ip_addresses] if args.key?(:disable_public_ip_addresses)
398
404
  @machine_type = args[:machine_type] if args.key?(:machine_type)
399
405
  @pool_size = args[:pool_size] if args.key?(:pool_size)
406
+ @pooled_instances = args[:pooled_instances] if args.key?(:pooled_instances)
400
407
  @service_account = args[:service_account] if args.key?(:service_account)
401
408
  @shielded_instance_config = args[:shielded_instance_config] if args.key?(:shielded_instance_config)
402
409
  @tags = args[:tags] if args.key?(:tags)
@@ -520,7 +527,7 @@ module Google
520
527
 
521
528
  # The generated bearer access token. To use this token, include it in an
522
529
  # Authorization header of an HTTP request sent to the associated workstation's
523
- # hostname, for example, `Authorization: Bearer `.
530
+ # hostnamefor example, `Authorization: Bearer `.
524
531
  # Corresponds to the JSON property `accessToken`
525
532
  # @return [String]
526
533
  attr_accessor :access_token
@@ -1047,6 +1054,31 @@ module Google
1047
1054
  end
1048
1055
  end
1049
1056
 
1057
+ # A readiness check to be performed on a workstation.
1058
+ class ReadinessCheck
1059
+ include Google::Apis::Core::Hashable
1060
+
1061
+ # Path to which the request should be sent.
1062
+ # Corresponds to the JSON property `path`
1063
+ # @return [String]
1064
+ attr_accessor :path
1065
+
1066
+ # Port to which the request should be sent.
1067
+ # Corresponds to the JSON property `port`
1068
+ # @return [Fixnum]
1069
+ attr_accessor :port
1070
+
1071
+ def initialize(**args)
1072
+ update!(**args)
1073
+ end
1074
+
1075
+ # Update properties of this object
1076
+ def update!(**args)
1077
+ @path = args[:path] if args.key?(:path)
1078
+ @port = args[:port] if args.key?(:port)
1079
+ end
1080
+ end
1081
+
1050
1082
  # Request message for `SetIamPolicy` method.
1051
1083
  class SetIamPolicyRequest
1052
1084
  include Google::Apis::Core::Hashable
@@ -1105,7 +1137,7 @@ module Google
1105
1137
  include Google::Apis::Core::Hashable
1106
1138
 
1107
1139
  # If set, the request will be rejected if the latest version of the workstation
1108
- # on the server does not have this etag.
1140
+ # on the server does not have this ETag.
1109
1141
  # Corresponds to the JSON property `etag`
1110
1142
  # @return [String]
1111
1143
  attr_accessor :etag
@@ -1172,7 +1204,7 @@ module Google
1172
1204
  include Google::Apis::Core::Hashable
1173
1205
 
1174
1206
  # If set, the request will be rejected if the latest version of the workstation
1175
- # on the server does not have this etag.
1207
+ # on the server does not have this ETag.
1176
1208
  # Corresponds to the JSON property `etag`
1177
1209
  # @return [String]
1178
1210
  attr_accessor :etag
@@ -1259,8 +1291,13 @@ module Google
1259
1291
  # @return [String]
1260
1292
  attr_accessor :display_name
1261
1293
 
1294
+ # Environment variables passed to the workstation container's entrypoint.
1295
+ # Corresponds to the JSON property `env`
1296
+ # @return [Hash<String,String>]
1297
+ attr_accessor :env
1298
+
1262
1299
  # Checksum computed by the server. May be sent on update and delete requests to
1263
- # ensure that the client has an up-to-date value before proceeding.
1300
+ # make sure that the client has an up-to-date value before proceeding.
1264
1301
  # Corresponds to the JSON property `etag`
1265
1302
  # @return [String]
1266
1303
  attr_accessor :etag
@@ -1316,6 +1353,7 @@ module Google
1316
1353
  @create_time = args[:create_time] if args.key?(:create_time)
1317
1354
  @delete_time = args[:delete_time] if args.key?(:delete_time)
1318
1355
  @display_name = args[:display_name] if args.key?(:display_name)
1356
+ @env = args[:env] if args.key?(:env)
1319
1357
  @etag = args[:etag] if args.key?(:etag)
1320
1358
  @host = args[:host] if args.key?(:host)
1321
1359
  @labels = args[:labels] if args.key?(:labels)
@@ -1342,6 +1380,14 @@ module Google
1342
1380
  # @return [Array<Google::Apis::WorkstationsV1beta::Status>]
1343
1381
  attr_accessor :conditions
1344
1382
 
1383
+ # Output only. The private IP address of the control plane for this cluster.
1384
+ # Workstation VMs need access to this IP address to work with the service, so
1385
+ # make sure that your firewall rules allow egress from the workstation VMs to
1386
+ # this address.
1387
+ # Corresponds to the JSON property `controlPlaneIp`
1388
+ # @return [String]
1389
+ attr_accessor :control_plane_ip
1390
+
1345
1391
  # Output only. Time when this resource was created.
1346
1392
  # Corresponds to the JSON property `createTime`
1347
1393
  # @return [String]
@@ -1366,7 +1412,7 @@ module Google
1366
1412
  attr_accessor :display_name
1367
1413
 
1368
1414
  # Checksum computed by the server. May be sent on update and delete requests to
1369
- # ensure that the client has an up-to-date value before proceeding.
1415
+ # make sure that the client has an up-to-date value before proceeding.
1370
1416
  # Corresponds to the JSON property `etag`
1371
1417
  # @return [String]
1372
1418
  attr_accessor :etag
@@ -1425,6 +1471,7 @@ module Google
1425
1471
  def update!(**args)
1426
1472
  @annotations = args[:annotations] if args.key?(:annotations)
1427
1473
  @conditions = args[:conditions] if args.key?(:conditions)
1474
+ @control_plane_ip = args[:control_plane_ip] if args.key?(:control_plane_ip)
1428
1475
  @create_time = args[:create_time] if args.key?(:create_time)
1429
1476
  @degraded = args[:degraded] if args.key?(:degraded)
1430
1477
  @delete_time = args[:delete_time] if args.key?(:delete_time)
@@ -1485,6 +1532,15 @@ module Google
1485
1532
  # @return [String]
1486
1533
  attr_accessor :display_name
1487
1534
 
1535
+ # Whether to enable linux auditd logging on the workstation. When enabled, a
1536
+ # service account must also be specified that has logging.buckets.write
1537
+ # permission on the project. Operating system audit logging is distinct from [
1538
+ # Cloud Audit Logs](https://cloud.google.com/workstations/docs/audit-logging).
1539
+ # Corresponds to the JSON property `enableAuditAgent`
1540
+ # @return [Boolean]
1541
+ attr_accessor :enable_audit_agent
1542
+ alias_method :enable_audit_agent?, :enable_audit_agent
1543
+
1488
1544
  # A customer-managed encryption key for the Compute Engine resources of this
1489
1545
  # workstation configuration.
1490
1546
  # Corresponds to the JSON property `encryptionKey`
@@ -1492,7 +1548,7 @@ module Google
1492
1548
  attr_accessor :encryption_key
1493
1549
 
1494
1550
  # Checksum computed by the server. May be sent on update and delete requests to
1495
- # ensure that the client has an up-to-date value before proceeding.
1551
+ # make sure that the client has an up-to-date value before proceeding.
1496
1552
  # Corresponds to the JSON property `etag`
1497
1553
  # @return [String]
1498
1554
  attr_accessor :etag
@@ -1525,6 +1581,13 @@ module Google
1525
1581
  # @return [Array<Google::Apis::WorkstationsV1beta::PersistentDirectory>]
1526
1582
  attr_accessor :persistent_directories
1527
1583
 
1584
+ # Readiness checks to perform when starting a workstation using this workstation
1585
+ # configuration. Mark a workstation as running only after all specified
1586
+ # readiness checks return 200 status codes.
1587
+ # Corresponds to the JSON property `readinessChecks`
1588
+ # @return [Array<Google::Apis::WorkstationsV1beta::ReadinessCheck>]
1589
+ attr_accessor :readiness_checks
1590
+
1528
1591
  # Output only. Indicates whether this resource is currently being updated to
1529
1592
  # match its intended state.
1530
1593
  # Corresponds to the JSON property `reconciling`
@@ -1563,6 +1626,7 @@ module Google
1563
1626
  @degraded = args[:degraded] if args.key?(:degraded)
1564
1627
  @delete_time = args[:delete_time] if args.key?(:delete_time)
1565
1628
  @display_name = args[:display_name] if args.key?(:display_name)
1629
+ @enable_audit_agent = args[:enable_audit_agent] if args.key?(:enable_audit_agent)
1566
1630
  @encryption_key = args[:encryption_key] if args.key?(:encryption_key)
1567
1631
  @etag = args[:etag] if args.key?(:etag)
1568
1632
  @host = args[:host] if args.key?(:host)
@@ -1570,6 +1634,7 @@ module Google
1570
1634
  @labels = args[:labels] if args.key?(:labels)
1571
1635
  @name = args[:name] if args.key?(:name)
1572
1636
  @persistent_directories = args[:persistent_directories] if args.key?(:persistent_directories)
1637
+ @readiness_checks = args[:readiness_checks] if args.key?(:readiness_checks)
1573
1638
  @reconciling = args[:reconciling] if args.key?(:reconciling)
1574
1639
  @running_timeout = args[:running_timeout] if args.key?(:running_timeout)
1575
1640
  @uid = args[:uid] if args.key?(:uid)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module WorkstationsV1beta
18
18
  # Version of the google-apis-workstations_v1beta gem
19
- GEM_VERSION = "0.8.0"
19
+ GEM_VERSION = "0.10.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 = "20230327"
25
+ REVISION = "20230423"
26
26
  end
27
27
  end
28
28
  end
@@ -178,6 +178,12 @@ module Google
178
178
  include Google::Apis::Core::JsonObjectSupport
179
179
  end
180
180
 
181
+ class ReadinessCheck
182
+ class Representation < Google::Apis::Core::JsonRepresentation; end
183
+
184
+ include Google::Apis::Core::JsonObjectSupport
185
+ end
186
+
181
187
  class SetIamPolicyRequest
182
188
  class Representation < Google::Apis::Core::JsonRepresentation; end
183
189
 
@@ -311,6 +317,7 @@ module Google
311
317
  property :disable_public_ip_addresses, as: 'disablePublicIpAddresses'
312
318
  property :machine_type, as: 'machineType'
313
319
  property :pool_size, as: 'poolSize'
320
+ property :pooled_instances, as: 'pooledInstances'
314
321
  property :service_account, as: 'serviceAccount'
315
322
  property :shielded_instance_config, as: 'shieldedInstanceConfig', class: Google::Apis::WorkstationsV1beta::GceShieldedInstanceConfig, decorator: Google::Apis::WorkstationsV1beta::GceShieldedInstanceConfig::Representation
316
323
 
@@ -483,6 +490,14 @@ module Google
483
490
  end
484
491
  end
485
492
 
493
+ class ReadinessCheck
494
+ # @private
495
+ class Representation < Google::Apis::Core::JsonRepresentation
496
+ property :path, as: 'path'
497
+ property :port, as: 'port'
498
+ end
499
+ end
500
+
486
501
  class SetIamPolicyRequest
487
502
  # @private
488
503
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -538,6 +553,7 @@ module Google
538
553
  property :create_time, as: 'createTime'
539
554
  property :delete_time, as: 'deleteTime'
540
555
  property :display_name, as: 'displayName'
556
+ hash :env, as: 'env'
541
557
  property :etag, as: 'etag'
542
558
  property :host, as: 'host'
543
559
  hash :labels, as: 'labels'
@@ -555,6 +571,7 @@ module Google
555
571
  hash :annotations, as: 'annotations'
556
572
  collection :conditions, as: 'conditions', class: Google::Apis::WorkstationsV1beta::Status, decorator: Google::Apis::WorkstationsV1beta::Status::Representation
557
573
 
574
+ property :control_plane_ip, as: 'controlPlaneIp'
558
575
  property :create_time, as: 'createTime'
559
576
  property :degraded, as: 'degraded'
560
577
  property :delete_time, as: 'deleteTime'
@@ -584,6 +601,7 @@ module Google
584
601
  property :degraded, as: 'degraded'
585
602
  property :delete_time, as: 'deleteTime'
586
603
  property :display_name, as: 'displayName'
604
+ property :enable_audit_agent, as: 'enableAuditAgent'
587
605
  property :encryption_key, as: 'encryptionKey', class: Google::Apis::WorkstationsV1beta::CustomerEncryptionKey, decorator: Google::Apis::WorkstationsV1beta::CustomerEncryptionKey::Representation
588
606
 
589
607
  property :etag, as: 'etag'
@@ -594,6 +612,8 @@ module Google
594
612
  property :name, as: 'name'
595
613
  collection :persistent_directories, as: 'persistentDirectories', class: Google::Apis::WorkstationsV1beta::PersistentDirectory, decorator: Google::Apis::WorkstationsV1beta::PersistentDirectory::Representation
596
614
 
615
+ collection :readiness_checks, as: 'readinessChecks', class: Google::Apis::WorkstationsV1beta::ReadinessCheck, decorator: Google::Apis::WorkstationsV1beta::ReadinessCheck::Representation
616
+
597
617
  property :reconciling, as: 'reconciling'
598
618
  property :running_timeout, as: 'runningTimeout'
599
619
  property :uid, as: 'uid'
@@ -238,7 +238,7 @@ module Google
238
238
  # Required. Name of the workstation cluster to delete.
239
239
  # @param [String] etag
240
240
  # If set, the request will be rejected if the latest version of the workstation
241
- # cluster on the server does not have this etag.
241
+ # cluster on the server does not have this ETag.
242
242
  # @param [Boolean] force
243
243
  # If set, any workstation configurations and workstations in the workstation
244
244
  # cluster are also deleted. Otherwise, the request only works if the workstation
@@ -394,7 +394,7 @@ module Google
394
394
  # If set, validate the request and preview the review, but do not actually apply
395
395
  # it.
396
396
  # @param [String] workstation_config_id
397
- # Required. ID to use for the config.
397
+ # Required. ID to use for the workstation configuration.
398
398
  # @param [String] fields
399
399
  # Selector specifying which fields to include in a partial response.
400
400
  # @param [String] quota_user
@@ -428,13 +428,14 @@ module Google
428
428
 
429
429
  # Deletes the specified workstation configuration.
430
430
  # @param [String] name
431
- # Required. Name of the config to delete.
431
+ # Required. Name of the workstation configuration to delete.
432
432
  # @param [String] etag
433
- # If set, the request will be rejected if the latest version of the config on
434
- # the server does not have this etag.
433
+ # If set, the request is rejected if the latest version of the workstation
434
+ # configuration on the server does not have this ETag.
435
435
  # @param [Boolean] force
436
- # If set, any Workstations in the config will also be deleted. Otherwise, the
437
- # request will work only if the config has no workstations.
436
+ # If set, any workstations in the workstation configuration are also deleted.
437
+ # Otherwise, the request works only if the workstation configuration has no
438
+ # workstations.
438
439
  # @param [Boolean] validate_only
439
440
  # If set, validate the request and preview the review, but do not actually apply
440
441
  # it.
@@ -621,10 +622,11 @@ module Google
621
622
  # Full name of this resource.
622
623
  # @param [Google::Apis::WorkstationsV1beta::WorkstationConfig] workstation_config_object
623
624
  # @param [Boolean] allow_missing
624
- # If set, and the config is not found, a new config will be created. In this
625
- # situation, update_mask is ignored.
625
+ # If set and the workstation configuration is not found, a new workstation
626
+ # configuration will be created. In this situation, update_mask is ignored.
626
627
  # @param [String] update_mask
627
- # Required. Mask specifying which fields in the config should be updated.
628
+ # Required. Mask specifying which fields in the workstation configuration should
629
+ # be updated.
628
630
  # @param [Boolean] validate_only
629
631
  # If set, validate the request and preview the review, but do not actually apply
630
632
  # it.
@@ -781,7 +783,7 @@ module Google
781
783
  # Required. Name of the workstation to delete.
782
784
  # @param [String] etag
783
785
  # If set, the request will be rejected if the latest version of the workstation
784
- # on the server does not have this etag.
786
+ # on the server does not have this ETag.
785
787
  # @param [Boolean] validate_only
786
788
  # If set, validate the request and preview the review, but do not actually apply
787
789
  # it.
@@ -924,7 +926,7 @@ module Google
924
926
  execute_or_queue_command(command, &block)
925
927
  end
926
928
 
927
- # Returns all Workstations using the specified config.
929
+ # Returns all Workstations using the specified workstation configuration.
928
930
  # @param [String] parent
929
931
  # Required. Parent resource name.
930
932
  # @param [Fixnum] page_size
@@ -960,8 +962,8 @@ module Google
960
962
  execute_or_queue_command(command, &block)
961
963
  end
962
964
 
963
- # Returns all Workstations using the specified config on which the caller has
964
- # the "workstations.workstations.use" permission.
965
+ # Returns all workstations using the specified workstation configuration on
966
+ # which the caller has the "workstations.workstations.use" permission.
965
967
  # @param [String] parent
966
968
  # Required. Parent resource name.
967
969
  # @param [Fixnum] page_size
@@ -1002,10 +1004,11 @@ module Google
1002
1004
  # Full name of this resource.
1003
1005
  # @param [Google::Apis::WorkstationsV1beta::Workstation] workstation_object
1004
1006
  # @param [Boolean] allow_missing
1005
- # If set, and the config is not found, a new config will be created. In this
1006
- # situation, update_mask is ignored.
1007
+ # If set and the workstation configuration is not found, a new workstation
1008
+ # configuration is created. In this situation, update_mask is ignored.
1007
1009
  # @param [String] update_mask
1008
- # Required. Mask specifying which fields in the config should be updated.
1010
+ # Required. Mask specifying which fields in the workstation configuration should
1011
+ # be updated.
1009
1012
  # @param [Boolean] validate_only
1010
1013
  # If set, validate the request and preview the review, but do not actually apply
1011
1014
  # it.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-workstations_v1beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0
4
+ version: 0.10.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-04-02 00:00:00.000000000 Z
11
+ date: 2023-04-30 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-workstations_v1beta/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-workstations_v1beta/v0.8.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-workstations_v1beta/v0.10.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-workstations_v1beta
63
63
  post_install_message:
64
64
  rdoc_options: []