google-apis-workstations_v1beta 0.18.0 → 0.20.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: 3414fb62a41992428a5132a7c2d74e77a061adb63ac089979f619f99c9ef8a8f
|
4
|
+
data.tar.gz: e450d50ba660753bf8ad552afcef4a656a90b33b8f55dba52c24388ca729803a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 81a5ca5c3d5e0fd2502d57206d48d362a75e5a7486849b26723bf1cfe94773e23ab23af3c181d2d5ce819cf131c61b34f0679c3ea9c505f7c1abcc86287affec
|
7
|
+
data.tar.gz: 7470e6952c3104f072ce1dcefc58c59aec53de3db8b713451677efee6331669439ebc2a2888b76638c7f83bfe80ade63553ba2f5318972b6e4a07477d90db66b
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-workstations_v1beta
|
2
2
|
|
3
|
+
### v0.20.0 (2023-11-12)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20231101
|
6
|
+
|
7
|
+
### v0.19.0 (2023-10-29)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20231018
|
10
|
+
|
3
11
|
### v0.18.0 (2023-10-22)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20231011
|
@@ -232,9 +232,11 @@ module Google
|
|
232
232
|
# com/workstations/docs/preconfigured-base-images), but you can create your own [
|
233
233
|
# custom container images](https://cloud.google.com/workstations/docs/custom-
|
234
234
|
# container-images). If using a private image, the `host.gceInstance.
|
235
|
-
# serviceAccount` field must be specified in the workstation configuration
|
236
|
-
#
|
237
|
-
#
|
235
|
+
# serviceAccount` field must be specified in the workstation configuration. If
|
236
|
+
# using a custom container image, the service account must have [Artifact
|
237
|
+
# Registry Reader](https://cloud.google.com/artifact-registry/docs/access-
|
238
|
+
# control#roles) permission to pull the specified image. Otherwise, the image
|
239
|
+
# must be publicly accessible.
|
238
240
|
# Corresponds to the JSON property `image`
|
239
241
|
# @return [String]
|
240
242
|
attr_accessor :image
|
@@ -504,13 +506,15 @@ module Google
|
|
504
506
|
# created with this configuration. When specified, be sure that the service
|
505
507
|
# account has `logginglogEntries.create` permission on the project so it can
|
506
508
|
# write logs out to Cloud Logging. If using a custom container image, the
|
507
|
-
# service account must have
|
508
|
-
#
|
509
|
-
#
|
510
|
-
#
|
511
|
-
#
|
512
|
-
#
|
513
|
-
#
|
509
|
+
# service account must have [Artifact Registry Reader](https://cloud.google.com/
|
510
|
+
# artifact-registry/docs/access-control#roles) permission to pull the specified
|
511
|
+
# image. If you as the administrator want to be able to `ssh` into the
|
512
|
+
# underlying VM, you need to set this value to a service account for which you
|
513
|
+
# have the `iam.serviceAccounts.actAs` permission. Conversely, if you don't want
|
514
|
+
# anyone to be able to `ssh` into the underlying VM, use a service account where
|
515
|
+
# no one has that permission. If not set, VMs run with a service account
|
516
|
+
# provided by the Cloud Workstations service, and the image must be publicly
|
517
|
+
# accessible.
|
514
518
|
# Corresponds to the JSON property `serviceAccount`
|
515
519
|
# @return [String]
|
516
520
|
attr_accessor :service_account
|
@@ -1758,6 +1762,16 @@ module Google
|
|
1758
1762
|
# @return [String]
|
1759
1763
|
attr_accessor :delete_time
|
1760
1764
|
|
1765
|
+
# Optional. Disables support for plain TCP connections in the workstation. By
|
1766
|
+
# default the service supports TCP connections via a websocket relay. Setting
|
1767
|
+
# this option to true disables that relay, which prevents the usage of services
|
1768
|
+
# that require plain tcp connections, such as ssh. When enabled, all
|
1769
|
+
# communication must occur over https or wss.
|
1770
|
+
# Corresponds to the JSON property `disableTcpConnections`
|
1771
|
+
# @return [Boolean]
|
1772
|
+
attr_accessor :disable_tcp_connections
|
1773
|
+
alias_method :disable_tcp_connections?, :disable_tcp_connections
|
1774
|
+
|
1761
1775
|
# Optional. Human-readable name for this workstation configuration.
|
1762
1776
|
# Corresponds to the JSON property `displayName`
|
1763
1777
|
# @return [String]
|
@@ -1891,6 +1905,7 @@ module Google
|
|
1891
1905
|
@create_time = args[:create_time] if args.key?(:create_time)
|
1892
1906
|
@degraded = args[:degraded] if args.key?(:degraded)
|
1893
1907
|
@delete_time = args[:delete_time] if args.key?(:delete_time)
|
1908
|
+
@disable_tcp_connections = args[:disable_tcp_connections] if args.key?(:disable_tcp_connections)
|
1894
1909
|
@display_name = args[:display_name] if args.key?(:display_name)
|
1895
1910
|
@enable_audit_agent = args[:enable_audit_agent] if args.key?(:enable_audit_agent)
|
1896
1911
|
@encryption_key = args[:encryption_key] if args.key?(:encryption_key)
|
@@ -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.20.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
|
@@ -665,6 +665,7 @@ module Google
|
|
665
665
|
property :create_time, as: 'createTime'
|
666
666
|
property :degraded, as: 'degraded'
|
667
667
|
property :delete_time, as: 'deleteTime'
|
668
|
+
property :disable_tcp_connections, as: 'disableTcpConnections'
|
668
669
|
property :display_name, as: 'displayName'
|
669
670
|
property :enable_audit_agent, as: 'enableAuditAgent'
|
670
671
|
property :encryption_key, as: 'encryptionKey', class: Google::Apis::WorkstationsV1beta::CustomerEncryptionKey, decorator: Google::Apis::WorkstationsV1beta::CustomerEncryptionKey::Representation
|
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.20.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_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.20.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: []
|