google-apis-workstations_v1beta 0.25.0 → 0.27.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1ef364d56fab21079bc3148fcd78b9c0bf2c96b282294a7594ab4ed147345f9a
|
4
|
+
data.tar.gz: f639d8a52da82ad956b8899d99116e3e899cf0f25d5866ed1b0eabd06f6ed158
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1852e6148710c12eb02459714a310c62d03556074befa4cd9c68280e2116fa615122584a7b69e070d5a8b2c3f841ee17dcc359fc2c77dd55ae7b37a1a3bacaa2
|
7
|
+
data.tar.gz: e746a92f2c9dd4e70aafa6cff54c4b9c5be056cd0e99c09dc5e81e53c2cc74f095b76e21a5f63933d3a284a8562a01b72008dd486bc5f0d0745bc64af0b01423
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-workstations_v1beta
|
2
2
|
|
3
|
+
### v0.27.0 (2024-05-05)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240424
|
6
|
+
|
7
|
+
### v0.26.0 (2024-03-31)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240318
|
10
|
+
|
3
11
|
### v0.25.0 (2024-03-10)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20240221
|
@@ -584,23 +584,22 @@ module Google
|
|
584
584
|
|
585
585
|
# Optional. The email address of the service account for Cloud Workstations VMs
|
586
586
|
# created with this configuration. When specified, be sure that the service
|
587
|
-
# account has `
|
588
|
-
# write logs out to Cloud Logging. If using
|
589
|
-
# service account must have [Artifact Registry
|
590
|
-
# artifact-registry/docs/access-control#roles)
|
591
|
-
# image. If you as the administrator want to be
|
592
|
-
# underlying VM, you need to set this value to a service
|
593
|
-
# have the `iam.serviceAccounts.actAs` permission.
|
594
|
-
# anyone to be able to `ssh` into the underlying
|
595
|
-
# no one has that permission. If not set, VMs
|
596
|
-
# provided by the Cloud Workstations service, and the
|
597
|
-
# accessible.
|
587
|
+
# account has `logging.logEntries.create` and `monitoring.timeSeries.create`
|
588
|
+
# permissions on the project so it can write logs out to Cloud Logging. If using
|
589
|
+
# a custom container image, the service account must have [Artifact Registry
|
590
|
+
# Reader](https://cloud.google.com/artifact-registry/docs/access-control#roles)
|
591
|
+
# permission to pull the specified image. If you as the administrator want to be
|
592
|
+
# able to `ssh` into the underlying VM, you need to set this value to a service
|
593
|
+
# account for which you have the `iam.serviceAccounts.actAs` permission.
|
594
|
+
# Conversely, if you don't want anyone to be able to `ssh` into the underlying
|
595
|
+
# VM, use a service account where no one has that permission. If not set, VMs
|
596
|
+
# run with a service account provided by the Cloud Workstations service, and the
|
597
|
+
# image must be publicly accessible.
|
598
598
|
# Corresponds to the JSON property `serviceAccount`
|
599
599
|
# @return [String]
|
600
600
|
attr_accessor :service_account
|
601
601
|
|
602
|
-
# Optional. Scopes to grant to the service_account.
|
603
|
-
# automatically added based on feature usage. When specified, users of
|
602
|
+
# Optional. Scopes to grant to the service_account. When specified, users of
|
604
603
|
# workstations under this configuration must have `iam.serviceAccounts.actAs` on
|
605
604
|
# the service account.
|
606
605
|
# Corresponds to the JSON property `serviceAccountScopes`
|
@@ -621,6 +620,14 @@ module Google
|
|
621
620
|
# @return [Array<String>]
|
622
621
|
attr_accessor :tags
|
623
622
|
|
623
|
+
# Optional. Resource manager tags to be bound to this instance. Tag keys and
|
624
|
+
# values have the same definition as https://cloud.google.com/resource-manager/
|
625
|
+
# docs/tags/tags-overview Keys must be in the format `tagKeys/`tag_key_id``, and
|
626
|
+
# values are in the format `tagValues/456`.
|
627
|
+
# Corresponds to the JSON property `vmTags`
|
628
|
+
# @return [Hash<String,String>]
|
629
|
+
attr_accessor :vm_tags
|
630
|
+
|
624
631
|
def initialize(**args)
|
625
632
|
update!(**args)
|
626
633
|
end
|
@@ -641,6 +648,7 @@ module Google
|
|
641
648
|
@service_account_scopes = args[:service_account_scopes] if args.key?(:service_account_scopes)
|
642
649
|
@shielded_instance_config = args[:shielded_instance_config] if args.key?(:shielded_instance_config)
|
643
650
|
@tags = args[:tags] if args.key?(:tags)
|
651
|
+
@vm_tags = args[:vm_tags] if args.key?(:vm_tags)
|
644
652
|
end
|
645
653
|
end
|
646
654
|
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.27.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.14.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240424"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -394,6 +394,7 @@ module Google
|
|
394
394
|
property :shielded_instance_config, as: 'shieldedInstanceConfig', class: Google::Apis::WorkstationsV1beta::GceShieldedInstanceConfig, decorator: Google::Apis::WorkstationsV1beta::GceShieldedInstanceConfig::Representation
|
395
395
|
|
396
396
|
collection :tags, as: 'tags'
|
397
|
+
hash :vm_tags, as: 'vmTags'
|
397
398
|
end
|
398
399
|
end
|
399
400
|
|
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.
|
4
|
+
version: 0.27.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: 2024-
|
11
|
+
date: 2024-05-05 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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-workstations_v1beta/v0.27.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: []
|