google-apis-workstations_v1beta 0.17.0 → 0.19.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: 688b937b921bbde472410a0553ae42c86957c54dc84aa2f0cdff1f31c2d4ba32
4
- data.tar.gz: 14cc41e2deecd0825df7b98094d7a42d6b5b5d1103d484e8fa0c9a8279bea78c
3
+ metadata.gz: 402d7f24b6e127c551058cb1fa17a37821ec874eff1c6f89719ab0de14b5424e
4
+ data.tar.gz: 7890ade08c54136ef8896374d32cc3ff2a982efb87a78b069d539d49eaac7afc
5
5
  SHA512:
6
- metadata.gz: e5fbc1a5fcc0b5c2d38964d0e97ca5cdb052637b8c975c9a489aa23db642a8f5daac976f4459a9d0a97cb16365d488a1d6e749aba21e04d2042e0f962002b873
7
- data.tar.gz: 234bd6bd4d45914c52c49ed42bb0fee61d29623d9c46aa866108edab1d504a361338cf81cfb7e8bc7e2d4a4b8051a2b50d4b6fe6523ceecb5f3e300f6c3643a5
6
+ metadata.gz: e2e1714229ba77a590889a99afe72c5a3359fc3b42d2c654297f9545724717877703fd5722812f50b060c3fb84f22e6acb0570f8009ac2d5cf121560bdf9a0e8
7
+ data.tar.gz: 10e9e5d58c9f14209a6d387acb6bf4b81323e618afa487c8433797fc1ab7ce3af2ce2ea3f830cf6f5efc8210fa24279b00b503b9ce69404048eda680ae6d2c2d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-workstations_v1beta
2
2
 
3
+ ### v0.19.0 (2023-10-29)
4
+
5
+ * Regenerated from discovery document revision 20231018
6
+
7
+ ### v0.18.0 (2023-10-22)
8
+
9
+ * Regenerated from discovery document revision 20231011
10
+
3
11
  ### v0.17.0 (2023-10-15)
4
12
 
5
13
  * Regenerated from discovery document revision 20231001
@@ -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 and
236
- # must have permission to pull the specified image. Otherwise, the image must be
237
- # publicly accessible.
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
@@ -300,6 +302,25 @@ module Google
300
302
  end
301
303
  end
302
304
 
305
+ # Configuration options for a custom domain.
306
+ class DomainConfig
307
+ include Google::Apis::Core::Hashable
308
+
309
+ # Immutable. Domain used by Workstations for HTTP ingress.
310
+ # Corresponds to the JSON property `domain`
311
+ # @return [String]
312
+ attr_accessor :domain
313
+
314
+ def initialize(**args)
315
+ update!(**args)
316
+ end
317
+
318
+ # Update properties of this object
319
+ def update!(**args)
320
+ @domain = args[:domain] if args.key?(:domain)
321
+ end
322
+ end
323
+
303
324
  # An ephemeral directory which won't persist across workstation sessions. It is
304
325
  # freshly created on every workstation start operation.
305
326
  class EphemeralDirectory
@@ -485,13 +506,15 @@ module Google
485
506
  # created with this configuration. When specified, be sure that the service
486
507
  # account has `logginglogEntries.create` permission on the project so it can
487
508
  # write logs out to Cloud Logging. If using a custom container image, the
488
- # service account must have permissions to pull the specified image. If you as
489
- # the administrator want to be able to `ssh` into the underlying VM, you need to
490
- # set this value to a service account for which you have the `iam.
491
- # serviceAccounts.actAs` permission. Conversely, if you don't want anyone to be
492
- # able to `ssh` into the underlying VM, use a service account where no one has
493
- # that permission. If not set, VMs run with a service account provided by the
494
- # Cloud Workstations service, and the image must be publicly accessible.
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.
495
518
  # Corresponds to the JSON property `serviceAccount`
496
519
  # @return [String]
497
520
  attr_accessor :service_account
@@ -1612,6 +1635,11 @@ module Google
1612
1635
  # @return [String]
1613
1636
  attr_accessor :display_name
1614
1637
 
1638
+ # Configuration options for a custom domain.
1639
+ # Corresponds to the JSON property `domainConfig`
1640
+ # @return [Google::Apis::WorkstationsV1beta::DomainConfig]
1641
+ attr_accessor :domain_config
1642
+
1615
1643
  # Optional. Checksum computed by the server. May be sent on update and delete
1616
1644
  # requests to make sure that the client has an up-to-date value before
1617
1645
  # proceeding.
@@ -1679,6 +1707,7 @@ module Google
1679
1707
  @degraded = args[:degraded] if args.key?(:degraded)
1680
1708
  @delete_time = args[:delete_time] if args.key?(:delete_time)
1681
1709
  @display_name = args[:display_name] if args.key?(:display_name)
1710
+ @domain_config = args[:domain_config] if args.key?(:domain_config)
1682
1711
  @etag = args[:etag] if args.key?(:etag)
1683
1712
  @labels = args[:labels] if args.key?(:labels)
1684
1713
  @name = args[:name] if args.key?(:name)
@@ -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.17.0"
19
+ GEM_VERSION = "0.19.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 = "20231001"
25
+ REVISION = "20231018"
26
26
  end
27
27
  end
28
28
  end
@@ -64,6 +64,12 @@ module Google
64
64
  include Google::Apis::Core::JsonObjectSupport
65
65
  end
66
66
 
67
+ class DomainConfig
68
+ class Representation < Google::Apis::Core::JsonRepresentation; end
69
+
70
+ include Google::Apis::Core::JsonObjectSupport
71
+ end
72
+
67
73
  class EphemeralDirectory
68
74
  class Representation < Google::Apis::Core::JsonRepresentation; end
69
75
 
@@ -317,6 +323,13 @@ module Google
317
323
  end
318
324
  end
319
325
 
326
+ class DomainConfig
327
+ # @private
328
+ class Representation < Google::Apis::Core::JsonRepresentation
329
+ property :domain, as: 'domain'
330
+ end
331
+ end
332
+
320
333
  class EphemeralDirectory
321
334
  # @private
322
335
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -626,6 +639,8 @@ module Google
626
639
  property :degraded, as: 'degraded'
627
640
  property :delete_time, as: 'deleteTime'
628
641
  property :display_name, as: 'displayName'
642
+ property :domain_config, as: 'domainConfig', class: Google::Apis::WorkstationsV1beta::DomainConfig, decorator: Google::Apis::WorkstationsV1beta::DomainConfig::Representation
643
+
629
644
  property :etag, as: 'etag'
630
645
  hash :labels, as: 'labels'
631
646
  property :name, as: 'name'
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.17.0
4
+ version: 0.19.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-15 00:00:00.000000000 Z
11
+ date: 2023-10-29 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.17.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-workstations_v1beta/v0.19.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: []