google-apis-workstations_v1beta 0.45.0 → 0.47.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 636b0c8d9d51594664d58fd324258ea6af41f1b769cddf41122536942b0df651
4
- data.tar.gz: 8d34f440905e43074c0d7c83637db3dbd08ffe7382a16ce13579f4e358089010
3
+ metadata.gz: efc570c74613b9b370cebd7188c5e5c28424ff65bfda1e242f6e4a5d31f44ecc
4
+ data.tar.gz: 9454f9b98801643da12f391263117b1469e6df5b51ec053addbe7a644498e86d
5
5
  SHA512:
6
- metadata.gz: bf1a7b59aeadeea8903334c58756bc9ed2e64b4c5e68549263cbe8098a8948700a83dc494f52f1fe19282c9606db3bed6c99ead7714eb4ee5a50c22159dfe824
7
- data.tar.gz: 496e9e66226d60fecec6f467e7ae4a9cec921b152406ab2ddfb5554c8fe26c48db77e8f283de80dd52c0cce53c95de5fd4789f01c0af996c127f95d97f1a0f87
6
+ metadata.gz: 67faf8d84c53361ac1693a5bcf400b8171efb1e90e88021c11858ef33b9b92ef5a98da57496e09400f557b4a4f86ae78927e61ec6afebb5ea03bcb2299de6669
7
+ data.tar.gz: 46d3f3e16f9043b3b604ec082b3854d7868cce5a985fd957e642f6c8f5f671bbbd2e284d07e12eecfdec1c22eb28691d124ce9a2dcde4c7e6da42f6de0f51c34
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-workstations_v1beta
2
2
 
3
+ ### v0.47.0 (2026-01-25)
4
+
5
+ * Regenerated from discovery document revision 20260113
6
+
7
+ ### v0.46.0 (2025-12-14)
8
+
9
+ * Regenerated from discovery document revision 20251202
10
+
3
11
  ### v0.45.0 (2025-11-09)
4
12
 
5
13
  * Regenerated from discovery document revision 20251022
@@ -553,9 +553,10 @@ module Google
553
553
  end
554
554
  end
555
555
 
556
- # A Persistent Directory backed by a Compute Engine Hyperdisk Balanced High
557
- # Availability Disk. This is a high-availability block storage solution that
558
- # offers a balance between performance and cost for most general-purpose
556
+ # A Persistent Directory backed by a Compute Engine [Hyperdisk Balanced High
557
+ # Availability Disk](https://cloud.google.com/compute/docs/disks/hd-types/
558
+ # hyperdisk-balanced-ha). This is a high-availability block storage solution
559
+ # that offers a balance between performance and cost for most general-purpose
559
560
  # workloads.
560
561
  class GceHyperdiskBalancedHighAvailability
561
562
  include Google::Apis::Core::Hashable
@@ -671,6 +672,11 @@ module Google
671
672
  attr_accessor :enable_nested_virtualization
672
673
  alias_method :enable_nested_virtualization?, :enable_nested_virtualization
673
674
 
675
+ # Optional. Custom metadata to apply to Compute Engine instances.
676
+ # Corresponds to the JSON property `instanceMetadata`
677
+ # @return [Hash<String,String>]
678
+ attr_accessor :instance_metadata
679
+
674
680
  # Optional. The type of machine to use for VM instances—for example, `"e2-
675
681
  # standard-4"`. For more information about machine types that Cloud Workstations
676
682
  # supports, see the list of [available machine types](https://cloud.google.com/
@@ -727,11 +733,14 @@ module Google
727
733
  attr_accessor :shielded_instance_config
728
734
 
729
735
  # Optional. Link to the startup script stored in Cloud Storage. This script will
730
- # be run on the host workstation VM when the VM is created. The uri must be of
736
+ # be run on the host workstation VM when the VM is created. The URI must be of
731
737
  # the form gs://`bucket-name`/`object-name`. If specifying a startup script, the
732
738
  # service account must have [Permission to access the bucket and script file in
733
739
  # Cloud Storage](https://cloud.google.com/storage/docs/access-control/iam-
734
- # permissions). Otherwise, the script must be publicly accessible.
740
+ # permissions). Otherwise, the script must be publicly accessible. Note that the
741
+ # service regularly updates the OS version of the host VM, and it is the
742
+ # responsibility of the user to ensure the script stays compatible with the OS
743
+ # version.
735
744
  # Corresponds to the JSON property `startupScriptUri`
736
745
  # @return [String]
737
746
  attr_accessor :startup_script_uri
@@ -766,6 +775,7 @@ module Google
766
775
  @disable_public_ip_addresses = args[:disable_public_ip_addresses] if args.key?(:disable_public_ip_addresses)
767
776
  @disable_ssh = args[:disable_ssh] if args.key?(:disable_ssh)
768
777
  @enable_nested_virtualization = args[:enable_nested_virtualization] if args.key?(:enable_nested_virtualization)
778
+ @instance_metadata = args[:instance_metadata] if args.key?(:instance_metadata)
769
779
  @machine_type = args[:machine_type] if args.key?(:machine_type)
770
780
  @pool_size = args[:pool_size] if args.key?(:pool_size)
771
781
  @pooled_instances = args[:pooled_instances] if args.key?(:pooled_instances)
@@ -872,6 +882,15 @@ module Google
872
882
  class GceRegionalPersistentDisk
873
883
  include Google::Apis::Core::Hashable
874
884
 
885
+ # Optional. Number of seconds to wait after initially creating or subsequently
886
+ # shutting down the workstation before converting its disk into a snapshot. This
887
+ # generally saves costs at the expense of greater startup time on next
888
+ # workstation start, as the service will need to create a disk from the archival
889
+ # snapshot. A value of `"0s"` indicates that the disk will never be archived.
890
+ # Corresponds to the JSON property `archiveTimeout`
891
+ # @return [String]
892
+ attr_accessor :archive_timeout
893
+
875
894
  # Optional. The [type of the persistent disk](https://cloud.google.com/compute/
876
895
  # docs/disks#disk-types) for the home directory. Defaults to `"pd-standard"`.
877
896
  # Corresponds to the JSON property `diskType`
@@ -912,6 +931,7 @@ module Google
912
931
 
913
932
  # Update properties of this object
914
933
  def update!(**args)
934
+ @archive_timeout = args[:archive_timeout] if args.key?(:archive_timeout)
915
935
  @disk_type = args[:disk_type] if args.key?(:disk_type)
916
936
  @fs_type = args[:fs_type] if args.key?(:fs_type)
917
937
  @reclaim_policy = args[:reclaim_policy] if args.key?(:reclaim_policy)
@@ -1107,8 +1127,9 @@ module Google
1107
1127
  attr_accessor :operations
1108
1128
 
1109
1129
  # Unordered list. Unreachable resources. Populated when the request sets `
1110
- # ListOperationsRequest.return_partial_success` and reads across collections e.g.
1111
- # when attempting to list all resources across all supported locations.
1130
+ # ListOperationsRequest.return_partial_success` and reads across collections.
1131
+ # For example, when attempting to list all resources across all supported
1132
+ # locations.
1112
1133
  # Corresponds to the JSON property `unreachable`
1113
1134
  # @return [Array<String>]
1114
1135
  attr_accessor :unreachable
@@ -1409,9 +1430,10 @@ module Google
1409
1430
  class PersistentDirectory
1410
1431
  include Google::Apis::Core::Hashable
1411
1432
 
1412
- # A Persistent Directory backed by a Compute Engine Hyperdisk Balanced High
1413
- # Availability Disk. This is a high-availability block storage solution that
1414
- # offers a balance between performance and cost for most general-purpose
1433
+ # A Persistent Directory backed by a Compute Engine [Hyperdisk Balanced High
1434
+ # Availability Disk](https://cloud.google.com/compute/docs/disks/hd-types/
1435
+ # hyperdisk-balanced-ha). This is a high-availability block storage solution
1436
+ # that offers a balance between performance and cost for most general-purpose
1415
1437
  # workloads.
1416
1438
  # Corresponds to the JSON property `gceHd`
1417
1439
  # @return [Google::Apis::WorkstationsV1beta::GceHyperdiskBalancedHighAvailability]
@@ -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.45.0"
19
+ GEM_VERSION = "0.47.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20251022"
25
+ REVISION = "20260113"
26
26
  end
27
27
  end
28
28
  end
@@ -455,6 +455,7 @@ module Google
455
455
  property :disable_public_ip_addresses, as: 'disablePublicIpAddresses'
456
456
  property :disable_ssh, as: 'disableSsh'
457
457
  property :enable_nested_virtualization, as: 'enableNestedVirtualization'
458
+ hash :instance_metadata, as: 'instanceMetadata'
458
459
  property :machine_type, as: 'machineType'
459
460
  property :pool_size, as: 'poolSize'
460
461
  property :pooled_instances, as: 'pooledInstances'
@@ -492,6 +493,7 @@ module Google
492
493
  class GceRegionalPersistentDisk
493
494
  # @private
494
495
  class Representation < Google::Apis::Core::JsonRepresentation
496
+ property :archive_timeout, as: 'archiveTimeout'
495
497
  property :disk_type, as: 'diskType'
496
498
  property :fs_type, as: 'fsType'
497
499
  property :reclaim_policy, as: 'reclaimPolicy'
@@ -167,11 +167,12 @@ module Google
167
167
  # The standard list page token.
168
168
  # @param [Boolean] return_partial_success
169
169
  # When set to `true`, operations that are reachable are returned as normal, and
170
- # those that are unreachable are returned in the [ListOperationsResponse.
171
- # unreachable] field. This can only be `true` when reading across collections e.
172
- # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
173
- # by default supported and will result in an `UNIMPLEMENTED` error if set unless
174
- # explicitly documented otherwise in service or product specific documentation.
170
+ # those that are unreachable are returned in the ListOperationsResponse.
171
+ # unreachable field. This can only be `true` when reading across collections.
172
+ # For example, when `parent` is set to `"projects/example/locations/-"`. This
173
+ # field is not supported by default and will result in an `UNIMPLEMENTED` error
174
+ # if set unless explicitly documented otherwise in service or product specific
175
+ # documentation.
175
176
  # @param [String] fields
176
177
  # Selector specifying which fields to include in a partial response.
177
178
  # @param [String] quota_user
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-workstations_v1beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.45.0
4
+ version: 0.47.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-workstations_v1beta/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-workstations_v1beta/v0.45.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-workstations_v1beta/v0.47.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-workstations_v1beta
62
62
  rdoc_options: []
63
63
  require_paths: