google-apis-workstations_v1 0.2.0 → 0.4.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: e8dcad0ebacfcd17e15b96b483b8fddc3b99a4f397175551ced5bd18efb15c9d
|
4
|
+
data.tar.gz: 26b2998ea2dd7637631bccb97346da22f75a25dd67739c80e09733a0b20b3ae1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c1a0cf1e81e6990053111de6359cb67919b2531b540526b5efc51ecc5a5b329124bb0c75138242004dbe2876fbd2bb2d2fcce0e07fb26efac51ce91e835a432c
|
7
|
+
data.tar.gz: d86bda9e5d6fda7e14d4a22c01dc1f5f6e7cb3de5b4a215e6a15313d230f14b2be067419896274ed5444cdb19021ebd933d281d0e029ab73eebe4ca7a9461a00
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-workstations_v1
|
2
2
|
|
3
|
+
### v0.4.0 (2023-11-12)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20231101
|
6
|
+
|
7
|
+
### v0.3.0 (2023-10-29)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20231018
|
10
|
+
|
3
11
|
### v0.2.0 (2023-10-15)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20231001
|
@@ -206,9 +206,11 @@ module Google
|
|
206
206
|
# com/workstations/docs/preconfigured-base-images), but you can create your own [
|
207
207
|
# custom container images](https://cloud.google.com/workstations/docs/custom-
|
208
208
|
# container-images). If using a private image, the `host.gceInstance.
|
209
|
-
# serviceAccount` field must be specified in the workstation configuration
|
210
|
-
#
|
211
|
-
#
|
209
|
+
# serviceAccount` field must be specified in the workstation configuration. If
|
210
|
+
# using a custom container image, the service account must have [Artifact
|
211
|
+
# Registry Reader](https://cloud.google.com/artifact-registry/docs/access-
|
212
|
+
# control#roles) permission to pull the specified image. Otherwise, the image
|
213
|
+
# must be publicly accessible.
|
212
214
|
# Corresponds to the JSON property `image`
|
213
215
|
# @return [String]
|
214
216
|
attr_accessor :image
|
@@ -427,13 +429,15 @@ module Google
|
|
427
429
|
# created with this configuration. When specified, be sure that the service
|
428
430
|
# account has `logginglogEntries.create` permission on the project so it can
|
429
431
|
# write logs out to Cloud Logging. If using a custom container image, the
|
430
|
-
# service account must have
|
431
|
-
#
|
432
|
-
#
|
433
|
-
#
|
434
|
-
#
|
435
|
-
#
|
436
|
-
#
|
432
|
+
# service account must have [Artifact Registry Reader](https://cloud.google.com/
|
433
|
+
# artifact-registry/docs/access-control#roles) permission to pull the specified
|
434
|
+
# image. If you as the administrator want to be able to `ssh` into the
|
435
|
+
# underlying VM, you need to set this value to a service account for which you
|
436
|
+
# have the `iam.serviceAccounts.actAs` permission. Conversely, if you don't want
|
437
|
+
# anyone to be able to `ssh` into the underlying VM, use a service account where
|
438
|
+
# no one has that permission. If not set, VMs run with a service account
|
439
|
+
# provided by the Cloud Workstations service, and the image must be publicly
|
440
|
+
# accessible.
|
437
441
|
# Corresponds to the JSON property `serviceAccount`
|
438
442
|
# @return [String]
|
439
443
|
attr_accessor :service_account
|
@@ -1449,6 +1453,12 @@ module Google
|
|
1449
1453
|
# @return [String]
|
1450
1454
|
attr_accessor :display_name
|
1451
1455
|
|
1456
|
+
# Optional. Environment variables passed to the workstation container's
|
1457
|
+
# entrypoint.
|
1458
|
+
# Corresponds to the JSON property `env`
|
1459
|
+
# @return [Hash<String,String>]
|
1460
|
+
attr_accessor :env
|
1461
|
+
|
1452
1462
|
# Optional. Checksum computed by the server. May be sent on update and delete
|
1453
1463
|
# requests to make sure that the client has an up-to-date value before
|
1454
1464
|
# proceeding.
|
@@ -1514,6 +1524,7 @@ module Google
|
|
1514
1524
|
@create_time = args[:create_time] if args.key?(:create_time)
|
1515
1525
|
@delete_time = args[:delete_time] if args.key?(:delete_time)
|
1516
1526
|
@display_name = args[:display_name] if args.key?(:display_name)
|
1527
|
+
@env = args[:env] if args.key?(:env)
|
1517
1528
|
@etag = args[:etag] if args.key?(:etag)
|
1518
1529
|
@host = args[:host] if args.key?(:host)
|
1519
1530
|
@labels = args[:labels] if args.key?(:labels)
|
@@ -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.4.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 = "
|
25
|
+
REVISION = "20231101"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -587,6 +587,7 @@ module Google
|
|
587
587
|
property :create_time, as: 'createTime'
|
588
588
|
property :delete_time, as: 'deleteTime'
|
589
589
|
property :display_name, as: 'displayName'
|
590
|
+
hash :env, as: 'env'
|
590
591
|
property :etag, as: 'etag'
|
591
592
|
property :host, as: 'host'
|
592
593
|
hash :labels, as: 'labels'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.4.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-
|
11
|
+
date: 2023-11-12 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_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-workstations_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-workstations_v1/v0.4.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-workstations_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|