google-apis-workstations_v1 0.30.0 → 0.31.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e8c33397bc67b608a888faf200fb8ad984455077a916333aea68a9936f9066b6
|
|
4
|
+
data.tar.gz: e91772876aeaa714fffe3c3c07dac1dba1f899d95b76dec1b24c342c022c2bf4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a8f3901d7cdd44d25115fc053823094cab0ecb06639818065cd2b129e0ff553bda92f05d9ff93f3da77fc33ed4b4cd1c82e9d383e48a29545004a416f415e60f
|
|
7
|
+
data.tar.gz: f5b2803d9d615672ce86e49740cfb1faa9fc9c737255d833e77ed7bb6a9eb9e6962398ab0dd31bda14389cfa8b322207c6ec50c79507b75b49c9272cbab21407
|
data/CHANGELOG.md
CHANGED
|
@@ -665,6 +665,11 @@ module Google
|
|
|
665
665
|
attr_accessor :enable_nested_virtualization
|
|
666
666
|
alias_method :enable_nested_virtualization?, :enable_nested_virtualization
|
|
667
667
|
|
|
668
|
+
# Optional. Custom metadata to apply to Compute Engine instances.
|
|
669
|
+
# Corresponds to the JSON property `instanceMetadata`
|
|
670
|
+
# @return [Hash<String,String>]
|
|
671
|
+
attr_accessor :instance_metadata
|
|
672
|
+
|
|
668
673
|
# Optional. The type of machine to use for VM instances—for example, `"e2-
|
|
669
674
|
# standard-4"`. For more information about machine types that Cloud Workstations
|
|
670
675
|
# supports, see the list of [available machine types](https://cloud.google.com/
|
|
@@ -720,8 +725,9 @@ module Google
|
|
|
720
725
|
# service account must have [Permission to access the bucket and script file in
|
|
721
726
|
# Cloud Storage](https://cloud.google.com/storage/docs/access-control/iam-
|
|
722
727
|
# permissions). Otherwise, the script must be publicly accessible. Note that the
|
|
723
|
-
# service regularly updates the OS version
|
|
724
|
-
# the user to ensure the script stays compatible with the OS
|
|
728
|
+
# service regularly updates the OS version of the host VM, and it is the
|
|
729
|
+
# responsibility of the user to ensure the script stays compatible with the OS
|
|
730
|
+
# version.
|
|
725
731
|
# Corresponds to the JSON property `startupScriptUri`
|
|
726
732
|
# @return [String]
|
|
727
733
|
attr_accessor :startup_script_uri
|
|
@@ -756,6 +762,7 @@ module Google
|
|
|
756
762
|
@disable_public_ip_addresses = args[:disable_public_ip_addresses] if args.key?(:disable_public_ip_addresses)
|
|
757
763
|
@disable_ssh = args[:disable_ssh] if args.key?(:disable_ssh)
|
|
758
764
|
@enable_nested_virtualization = args[:enable_nested_virtualization] if args.key?(:enable_nested_virtualization)
|
|
765
|
+
@instance_metadata = args[:instance_metadata] if args.key?(:instance_metadata)
|
|
759
766
|
@machine_type = args[:machine_type] if args.key?(:machine_type)
|
|
760
767
|
@pool_size = args[:pool_size] if args.key?(:pool_size)
|
|
761
768
|
@pooled_instances = args[:pooled_instances] if args.key?(:pooled_instances)
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module WorkstationsV1
|
|
18
18
|
# Version of the google-apis-workstations_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.31.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 = "
|
|
25
|
+
REVISION = "20260113"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -447,6 +447,7 @@ module Google
|
|
|
447
447
|
property :disable_public_ip_addresses, as: 'disablePublicIpAddresses'
|
|
448
448
|
property :disable_ssh, as: 'disableSsh'
|
|
449
449
|
property :enable_nested_virtualization, as: 'enableNestedVirtualization'
|
|
450
|
+
hash :instance_metadata, as: 'instanceMetadata'
|
|
450
451
|
property :machine_type, as: 'machineType'
|
|
451
452
|
property :pool_size, as: 'poolSize'
|
|
452
453
|
property :pooled_instances, as: 'pooledInstances'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-workstations_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.31.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_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-workstations_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-workstations_v1/v0.31.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-workstations_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|