google-apis-workstations_v1beta 0.19.0 → 0.21.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: 402d7f24b6e127c551058cb1fa17a37821ec874eff1c6f89719ab0de14b5424e
4
- data.tar.gz: 7890ade08c54136ef8896374d32cc3ff2a982efb87a78b069d539d49eaac7afc
3
+ metadata.gz: 33abe46489cb01f6658cb40faaf0eb3a6da2a1687208e4f56e2225635f7016d9
4
+ data.tar.gz: 58eb4ebd6035a8016ede837ea17c1d8e0843e8714b44c4cc94eaa267a9ee0eac
5
5
  SHA512:
6
- metadata.gz: e2e1714229ba77a590889a99afe72c5a3359fc3b42d2c654297f9545724717877703fd5722812f50b060c3fb84f22e6acb0570f8009ac2d5cf121560bdf9a0e8
7
- data.tar.gz: 10e9e5d58c9f14209a6d387acb6bf4b81323e618afa487c8433797fc1ab7ce3af2ce2ea3f830cf6f5efc8210fa24279b00b503b9ce69404048eda680ae6d2c2d
6
+ metadata.gz: ca003dd0a16744abd167eb18aa7394ed6b19c7638aa3b86a4d6c1a476e626f9d537371494b9164257ec82200365301641db6c57dd8ae5b4d7cd13ebaa559ae46
7
+ data.tar.gz: 42adc8f82c71d24db91f059d8cddb456ab52b7a7f7ffe02bc6ff2ea83092d7bcacc65e791d7c0398ba496f19745e1d0dc89df96999ac268d4cc958172345a2c7
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-workstations_v1beta
2
2
 
3
+ ### v0.21.0 (2023-12-17)
4
+
5
+ * Regenerated from discovery document revision 20231129
6
+
7
+ ### v0.20.0 (2023-11-12)
8
+
9
+ * Regenerated from discovery document revision 20231101
10
+
3
11
  ### v0.19.0 (2023-10-29)
4
12
 
5
13
  * Regenerated from discovery document revision 20231018
@@ -1525,6 +1525,13 @@ module Google
1525
1525
  # @return [String]
1526
1526
  attr_accessor :host
1527
1527
 
1528
+ # Output only. The name of the Google Cloud KMS encryption key used to encrypt
1529
+ # this workstation. The KMS key can only be configured in the WorkstationConfig.
1530
+ # The expected format is `projects/*/locations/*/keyRings/*/cryptoKeys/*`.
1531
+ # Corresponds to the JSON property `kmsKey`
1532
+ # @return [String]
1533
+ attr_accessor :kms_key
1534
+
1528
1535
  # Optional. [Labels](https://cloud.google.com/workstations/docs/label-resources)
1529
1536
  # that are applied to the workstation and that are also propagated to the
1530
1537
  # underlying Compute Engine resources.
@@ -1578,6 +1585,7 @@ module Google
1578
1585
  @env = args[:env] if args.key?(:env)
1579
1586
  @etag = args[:etag] if args.key?(:etag)
1580
1587
  @host = args[:host] if args.key?(:host)
1588
+ @kms_key = args[:kms_key] if args.key?(:kms_key)
1581
1589
  @labels = args[:labels] if args.key?(:labels)
1582
1590
  @name = args[:name] if args.key?(:name)
1583
1591
  @reconciling = args[:reconciling] if args.key?(:reconciling)
@@ -1762,6 +1770,16 @@ module Google
1762
1770
  # @return [String]
1763
1771
  attr_accessor :delete_time
1764
1772
 
1773
+ # Optional. Disables support for plain TCP connections in the workstation. By
1774
+ # default the service supports TCP connections via a websocket relay. Setting
1775
+ # this option to true disables that relay, which prevents the usage of services
1776
+ # that require plain tcp connections, such as ssh. When enabled, all
1777
+ # communication must occur over https or wss.
1778
+ # Corresponds to the JSON property `disableTcpConnections`
1779
+ # @return [Boolean]
1780
+ attr_accessor :disable_tcp_connections
1781
+ alias_method :disable_tcp_connections?, :disable_tcp_connections
1782
+
1765
1783
  # Optional. Human-readable name for this workstation configuration.
1766
1784
  # Corresponds to the JSON property `displayName`
1767
1785
  # @return [String]
@@ -1895,6 +1913,7 @@ module Google
1895
1913
  @create_time = args[:create_time] if args.key?(:create_time)
1896
1914
  @degraded = args[:degraded] if args.key?(:degraded)
1897
1915
  @delete_time = args[:delete_time] if args.key?(:delete_time)
1916
+ @disable_tcp_connections = args[:disable_tcp_connections] if args.key?(:disable_tcp_connections)
1898
1917
  @display_name = args[:display_name] if args.key?(:display_name)
1899
1918
  @enable_audit_agent = args[:enable_audit_agent] if args.key?(:enable_audit_agent)
1900
1919
  @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.0"
19
+ GEM_VERSION = "0.21.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 = "20231018"
25
+ REVISION = "20231129"
26
26
  end
27
27
  end
28
28
  end
@@ -618,6 +618,7 @@ module Google
618
618
  hash :env, as: 'env'
619
619
  property :etag, as: 'etag'
620
620
  property :host, as: 'host'
621
+ property :kms_key, as: 'kmsKey'
621
622
  hash :labels, as: 'labels'
622
623
  property :name, as: 'name'
623
624
  property :reconciling, as: 'reconciling'
@@ -665,6 +666,7 @@ module Google
665
666
  property :create_time, as: 'createTime'
666
667
  property :degraded, as: 'degraded'
667
668
  property :delete_time, as: 'deleteTime'
669
+ property :disable_tcp_connections, as: 'disableTcpConnections'
668
670
  property :display_name, as: 'displayName'
669
671
  property :enable_audit_agent, as: 'enableAuditAgent'
670
672
  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.19.0
4
+ version: 0.21.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-10-29 00:00:00.000000000 Z
11
+ date: 2023-12-17 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.19.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-workstations_v1beta/v0.21.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: []