google-apis-workstations_v1beta 0.16.0 → 0.18.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d98a1220a39047eac56f52ce971accd537970ea95dfc8704df51be47bdb9ea88
4
- data.tar.gz: 4d5050aa6e5f54ed0a2ff44a8751f9456621c56e2e3281edc59202b2492a2a12
3
+ metadata.gz: 1c2d0f0810202ac65a70595dcc7caf29010711bf944762cb458e320e426b8ce7
4
+ data.tar.gz: 6d6e61874fc4bca10da6e4235afb17e385017640713f5d66888c66f5e1084498
5
5
  SHA512:
6
- metadata.gz: 4939257eef8fbf907f7cdd906fc170f6d9a520cc14614708f5622a3b3819458acf7fc6ed2c328ebfdab3d22a4439e0329ed81d7cc64a13c97dba28371c4a40a9
7
- data.tar.gz: c2af7a16f960db76e1bc6b2980b677ee7431a0ce644a4dc16ba8be3f67e81369c2718d070c866009feb21610421e7502811ebc524f054e9df64eb62b98f3c12e
6
+ metadata.gz: 4c8be937e8d3ad9e3245ab278ae12114a560cfc3db859a5b14ab0b60bb0db91752046ceacd5057e28013491929908efda401ec7200be8a5fdeb2f60127c36630
7
+ data.tar.gz: eec444c17e088863cc6f54a7fcda0174e5f98e67c74f605a9c6b8ac9e29fe653df3c9604e82800289c4dc238ec2f4cb889e517ff83b3981ca77ed2543e455ab6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-workstations_v1beta
2
2
 
3
+ ### v0.18.0 (2023-10-22)
4
+
5
+ * Regenerated from discovery document revision 20231011
6
+
7
+ ### v0.17.0 (2023-10-15)
8
+
9
+ * Regenerated from discovery document revision 20231001
10
+
3
11
  ### v0.16.0 (2023-09-10)
4
12
 
5
13
  * Regenerated from discovery document revision 20230904
@@ -300,6 +300,25 @@ module Google
300
300
  end
301
301
  end
302
302
 
303
+ # Configuration options for a custom domain.
304
+ class DomainConfig
305
+ include Google::Apis::Core::Hashable
306
+
307
+ # Immutable. Domain used by Workstations for HTTP ingress.
308
+ # Corresponds to the JSON property `domain`
309
+ # @return [String]
310
+ attr_accessor :domain
311
+
312
+ def initialize(**args)
313
+ update!(**args)
314
+ end
315
+
316
+ # Update properties of this object
317
+ def update!(**args)
318
+ @domain = args[:domain] if args.key?(:domain)
319
+ end
320
+ end
321
+
303
322
  # An ephemeral directory which won't persist across workstation sessions. It is
304
323
  # freshly created on every workstation start operation.
305
324
  class EphemeralDirectory
@@ -564,9 +583,9 @@ module Google
564
583
  attr_accessor :source_image
565
584
 
566
585
  # Optional. Name of the snapshot to use as the source for the disk. Must be
567
- # empty if source_image is set. Updating source_snapshot will update content in
568
- # the ephemeral directory after the workstation is restarted. This field is
569
- # mutable.
586
+ # empty if source_image is set. Must be empty if read_only is false. Updating
587
+ # source_snapshot will update content in the ephemeral directory after the
588
+ # workstation is restarted. This field is mutable.
570
589
  # Corresponds to the JSON property `sourceSnapshot`
571
590
  # @return [String]
572
591
  attr_accessor :source_snapshot
@@ -1509,7 +1528,7 @@ module Google
1509
1528
  # @return [Hash<String,String>]
1510
1529
  attr_accessor :labels
1511
1530
 
1512
- # Full name of this workstation.
1531
+ # Identifier. Full name of this workstation.
1513
1532
  # Corresponds to the JSON property `name`
1514
1533
  # @return [String]
1515
1534
  attr_accessor :name
@@ -1612,6 +1631,11 @@ module Google
1612
1631
  # @return [String]
1613
1632
  attr_accessor :display_name
1614
1633
 
1634
+ # Configuration options for a custom domain.
1635
+ # Corresponds to the JSON property `domainConfig`
1636
+ # @return [Google::Apis::WorkstationsV1beta::DomainConfig]
1637
+ attr_accessor :domain_config
1638
+
1615
1639
  # Optional. Checksum computed by the server. May be sent on update and delete
1616
1640
  # requests to make sure that the client has an up-to-date value before
1617
1641
  # proceeding.
@@ -1626,7 +1650,7 @@ module Google
1626
1650
  # @return [Hash<String,String>]
1627
1651
  attr_accessor :labels
1628
1652
 
1629
- # Full name of this workstation cluster.
1653
+ # Identifier. Full name of this workstation cluster.
1630
1654
  # Corresponds to the JSON property `name`
1631
1655
  # @return [String]
1632
1656
  attr_accessor :name
@@ -1679,6 +1703,7 @@ module Google
1679
1703
  @degraded = args[:degraded] if args.key?(:degraded)
1680
1704
  @delete_time = args[:delete_time] if args.key?(:delete_time)
1681
1705
  @display_name = args[:display_name] if args.key?(:display_name)
1706
+ @domain_config = args[:domain_config] if args.key?(:domain_config)
1682
1707
  @etag = args[:etag] if args.key?(:etag)
1683
1708
  @labels = args[:labels] if args.key?(:labels)
1684
1709
  @name = args[:name] if args.key?(:name)
@@ -1792,7 +1817,7 @@ module Google
1792
1817
  # @return [Hash<String,String>]
1793
1818
  attr_accessor :labels
1794
1819
 
1795
- # Full name of this workstation configuration.
1820
+ # Identifier. Full name of this workstation configuration.
1796
1821
  # Corresponds to the JSON property `name`
1797
1822
  # @return [String]
1798
1823
  attr_accessor :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.16.0"
19
+ GEM_VERSION = "0.18.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 = "20230904"
25
+ REVISION = "20231011"
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'
@@ -344,7 +344,7 @@ module Google
344
344
 
345
345
  # Updates an existing workstation cluster.
346
346
  # @param [String] name
347
- # Full name of this workstation cluster.
347
+ # Identifier. Full name of this workstation cluster.
348
348
  # @param [Google::Apis::WorkstationsV1beta::WorkstationCluster] workstation_cluster_object
349
349
  # @param [Boolean] allow_missing
350
350
  # Optional. If set, and the workstation cluster is not found, a new workstation
@@ -620,7 +620,7 @@ module Google
620
620
 
621
621
  # Updates an existing workstation configuration.
622
622
  # @param [String] name
623
- # Full name of this workstation configuration.
623
+ # Identifier. Full name of this workstation configuration.
624
624
  # @param [Google::Apis::WorkstationsV1beta::WorkstationConfig] workstation_config_object
625
625
  # @param [Boolean] allow_missing
626
626
  # Optional. If set and the workstation configuration is not found, a new
@@ -1003,7 +1003,7 @@ module Google
1003
1003
 
1004
1004
  # Updates an existing workstation.
1005
1005
  # @param [String] name
1006
- # Full name of this workstation.
1006
+ # Identifier. Full name of this workstation.
1007
1007
  # @param [Google::Apis::WorkstationsV1beta::Workstation] workstation_object
1008
1008
  # @param [Boolean] allow_missing
1009
1009
  # Optional. If set and the workstation configuration is not found, a new
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.16.0
4
+ version: 0.18.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-09-10 00:00:00.000000000 Z
11
+ date: 2023-10-22 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.16.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-workstations_v1beta/v0.18.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: []