google-apis-workstations_v1beta 0.45.0 → 0.46.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: b71b4237f01b753ac8bddee3b7455f47a814f085adf389eb42a401bec473ade2
4
+ data.tar.gz: dd5045d1bd382bced0af18805c96a1eafbdb0596613f4b9b2b4e8cd7878bc198
5
5
  SHA512:
6
- metadata.gz: bf1a7b59aeadeea8903334c58756bc9ed2e64b4c5e68549263cbe8098a8948700a83dc494f52f1fe19282c9606db3bed6c99ead7714eb4ee5a50c22159dfe824
7
- data.tar.gz: 496e9e66226d60fecec6f467e7ae4a9cec921b152406ab2ddfb5554c8fe26c48db77e8f283de80dd52c0cce53c95de5fd4789f01c0af996c127f95d97f1a0f87
6
+ metadata.gz: 872430cd2c3daa7326dc31daa35c78037fdb77caf5214bb1bdbb622686381dbfa3ac7ca9a86ffd0fe5082b7e4ac2477e01d98a4f6453f5c0b4d939aed854cb30
7
+ data.tar.gz: d18b15626cc67ccac36ae484a731b1d77409076cfbd6c67d226dc0c308dd775978b2e5c84cbb834d08194312270359b3f25cf04113cc24dc3738f82666683dc3
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-workstations_v1beta
2
2
 
3
+ ### v0.46.0 (2025-12-14)
4
+
5
+ * Regenerated from discovery document revision 20251202
6
+
3
7
  ### v0.45.0 (2025-11-09)
4
8
 
5
9
  * 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,13 @@ 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 used, and it is the responsibility of
742
+ # the user to ensure the script stays compatible with the OS version.
735
743
  # Corresponds to the JSON property `startupScriptUri`
736
744
  # @return [String]
737
745
  attr_accessor :startup_script_uri
@@ -766,6 +774,7 @@ module Google
766
774
  @disable_public_ip_addresses = args[:disable_public_ip_addresses] if args.key?(:disable_public_ip_addresses)
767
775
  @disable_ssh = args[:disable_ssh] if args.key?(:disable_ssh)
768
776
  @enable_nested_virtualization = args[:enable_nested_virtualization] if args.key?(:enable_nested_virtualization)
777
+ @instance_metadata = args[:instance_metadata] if args.key?(:instance_metadata)
769
778
  @machine_type = args[:machine_type] if args.key?(:machine_type)
770
779
  @pool_size = args[:pool_size] if args.key?(:pool_size)
771
780
  @pooled_instances = args[:pooled_instances] if args.key?(:pooled_instances)
@@ -1107,8 +1116,9 @@ module Google
1107
1116
  attr_accessor :operations
1108
1117
 
1109
1118
  # 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.
1119
+ # ListOperationsRequest.return_partial_success` and reads across collections.
1120
+ # For example, when attempting to list all resources across all supported
1121
+ # locations.
1112
1122
  # Corresponds to the JSON property `unreachable`
1113
1123
  # @return [Array<String>]
1114
1124
  attr_accessor :unreachable
@@ -1409,9 +1419,10 @@ module Google
1409
1419
  class PersistentDirectory
1410
1420
  include Google::Apis::Core::Hashable
1411
1421
 
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
1422
+ # A Persistent Directory backed by a Compute Engine [Hyperdisk Balanced High
1423
+ # Availability Disk](https://cloud.google.com/compute/docs/disks/hd-types/
1424
+ # hyperdisk-balanced-ha). This is a high-availability block storage solution
1425
+ # that offers a balance between performance and cost for most general-purpose
1415
1426
  # workloads.
1416
1427
  # Corresponds to the JSON property `gceHd`
1417
1428
  # @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.46.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 = "20251202"
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'
@@ -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.46.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.46.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: